UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

117 lines (116 loc) 3.04 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UpdatePackageRequestModel */ export interface UpdatePackageRequestModel { /** * * @type {string} * @memberof UpdatePackageRequestModel */ name: string; /** * * @type {string} * @memberof UpdatePackageRequestModel */ contentNodeId?: string | null; /** * * @type {boolean} * @memberof UpdatePackageRequestModel */ contentLoadChildNodes: boolean; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ mediaIds: Array<string>; /** * * @type {boolean} * @memberof UpdatePackageRequestModel */ mediaLoadChildNodes: boolean; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ documentTypes: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ mediaTypes: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ dataTypes: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ templates: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ partialViews: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ stylesheets: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ scripts: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ languages: Array<string>; /** * * @type {Array<string>} * @memberof UpdatePackageRequestModel */ dictionaryItems: Array<string>; /** * * @type {string} * @memberof UpdatePackageRequestModel */ readonly packagePath: string; } /** * Check if a given object implements the UpdatePackageRequestModel interface. */ export declare function instanceOfUpdatePackageRequestModel(value: object): value is UpdatePackageRequestModel; export declare function UpdatePackageRequestModelFromJSON(json: any): UpdatePackageRequestModel; export declare function UpdatePackageRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePackageRequestModel; export declare function UpdatePackageRequestModelToJSON(json: any): UpdatePackageRequestModel; export declare function UpdatePackageRequestModelToJSONTyped(value?: Omit<UpdatePackageRequestModel, 'packagePath'> | null, ignoreDiscriminator?: boolean): any;