umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
48 lines (47 loc) • 1.95 kB
TypeScript
/**
* 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
*/
export declare const AuditTypeModel: {
readonly New: "New";
readonly Save: "Save";
readonly SaveVariant: "SaveVariant";
readonly Open: "Open";
readonly Delete: "Delete";
readonly Publish: "Publish";
readonly PublishVariant: "PublishVariant";
readonly SendToPublish: "SendToPublish";
readonly SendToPublishVariant: "SendToPublishVariant";
readonly Unpublish: "Unpublish";
readonly UnpublishVariant: "UnpublishVariant";
readonly Move: "Move";
readonly Copy: "Copy";
readonly AssignDomain: "AssignDomain";
readonly PublicAccess: "PublicAccess";
readonly Sort: "Sort";
readonly Notify: "Notify";
readonly System: "System";
readonly RollBack: "RollBack";
readonly PackagerInstall: "PackagerInstall";
readonly PackagerUninstall: "PackagerUninstall";
readonly Custom: "Custom";
readonly ContentVersionPreventCleanup: "ContentVersionPreventCleanup";
readonly ContentVersionEnableCleanup: "ContentVersionEnableCleanup";
};
export type AuditTypeModel = typeof AuditTypeModel[keyof typeof AuditTypeModel];
export declare function instanceOfAuditTypeModel(value: any): boolean;
export declare function AuditTypeModelFromJSON(json: any): AuditTypeModel;
export declare function AuditTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuditTypeModel;
export declare function AuditTypeModelToJSON(value?: AuditTypeModel | null): any;
export declare function AuditTypeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): AuditTypeModel;