node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
/**
* Used to store user configurations related to releases.
* E.g the default timezone for the release schedule.
*/
import { errors } from '@strapi/utils';
import type { Utils } from '@strapi/types';
export interface Settings {
defaultTimezone: string | null | undefined;
}
/**
* GET /content-releases/settings
*
* Return the stored settings. If not set,
* it will return an object with null values
*/
export declare namespace GetSettings {
interface Request {
query?: {};
}
interface Response {
data: Settings;
}
}
/**
* PUT /content-releases/settings
*
* Update the stored settings
*/
export declare namespace UpdateSettings {
interface Request {
body: Settings;
}
type Response = Utils.OneOf<{
data: Settings;
}, {
error?: errors.ApplicationError | errors.ValidationError;
}>;
}