Merge remote-tracking branch 'origin/main' into feature/manifest-conditions
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import { rest } from 'msw';
|
||||
|
||||
import { umbracoPath } from '@umbraco-cms/utils';
|
||||
import { ProblemDetailsModel, RuntimeLevelModel, ServerStatusModel } from '@umbraco-cms/backend-api';
|
||||
import { ProblemDetailsModel, RuntimeLevelModel, ServerStatusResponseModel } from '@umbraco-cms/backend-api';
|
||||
import { expect, test } from './test';
|
||||
|
||||
test.describe('installer tests', () => {
|
||||
@@ -12,7 +12,7 @@ test.describe('installer tests', () => {
|
||||
return res(
|
||||
// Respond with a 200 status code
|
||||
ctx.status(200),
|
||||
ctx.json<ServerStatusModel>({
|
||||
ctx.json<ServerStatusResponseModel>({
|
||||
serverStatus: RuntimeLevelModel.INSTALL,
|
||||
})
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { rest } from 'msw';
|
||||
import { umbracoPath } from '@umbraco-cms/utils';
|
||||
import { ProblemDetailsModel, RuntimeLevelModel, ServerStatusModel } from '@umbraco-cms/backend-api';
|
||||
import { ProblemDetailsModel, RuntimeLevelModel, ServerStatusResponseModel } from '@umbraco-cms/backend-api';
|
||||
import { expect, test } from './test';
|
||||
|
||||
test.describe('upgrader tests', () => {
|
||||
@@ -11,7 +11,7 @@ test.describe('upgrader tests', () => {
|
||||
return res(
|
||||
// Respond with a 200 status code
|
||||
ctx.status(200),
|
||||
ctx.json<ServerStatusModel>({
|
||||
ctx.json<ServerStatusResponseModel>({
|
||||
serverStatus: RuntimeLevelModel.UPGRADE,
|
||||
})
|
||||
);
|
||||
|
||||
@@ -2,122 +2,127 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export class CancelError extends Error {
|
||||
constructor(message: string) {
|
||||
super(message);
|
||||
this.name = 'CancelError';
|
||||
}
|
||||
|
||||
public get isCancelled(): boolean {
|
||||
return true;
|
||||
}
|
||||
constructor(message: string) {
|
||||
super(message);
|
||||
this.name = 'CancelError';
|
||||
}
|
||||
|
||||
public get isCancelled(): boolean {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
export interface OnCancel {
|
||||
readonly isResolved: boolean;
|
||||
readonly isRejected: boolean;
|
||||
readonly isCancelled: boolean;
|
||||
readonly isResolved: boolean;
|
||||
readonly isRejected: boolean;
|
||||
readonly isCancelled: boolean;
|
||||
|
||||
(cancelHandler: () => void): void;
|
||||
(cancelHandler: () => void): void;
|
||||
}
|
||||
|
||||
export class CancelablePromise<T> implements Promise<T> {
|
||||
readonly [Symbol.toStringTag]!: string;
|
||||
readonly [Symbol.toStringTag]!: string;
|
||||
|
||||
private _isResolved: boolean;
|
||||
private _isRejected: boolean;
|
||||
private _isCancelled: boolean;
|
||||
private readonly _cancelHandlers: (() => void)[];
|
||||
private readonly _promise: Promise<T>;
|
||||
private _resolve?: (value: T | PromiseLike<T>) => void;
|
||||
private _reject?: (reason?: any) => void;
|
||||
private _isResolved: boolean;
|
||||
private _isRejected: boolean;
|
||||
private _isCancelled: boolean;
|
||||
private readonly _cancelHandlers: (() => void)[];
|
||||
private readonly _promise: Promise<T>;
|
||||
private _resolve?: (value: T | PromiseLike<T>) => void;
|
||||
private _reject?: (reason?: any) => void;
|
||||
|
||||
constructor(
|
||||
executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void, onCancel: OnCancel) => void
|
||||
) {
|
||||
this._isResolved = false;
|
||||
this._isRejected = false;
|
||||
this._isCancelled = false;
|
||||
this._cancelHandlers = [];
|
||||
this._promise = new Promise<T>((resolve, reject) => {
|
||||
this._resolve = resolve;
|
||||
this._reject = reject;
|
||||
constructor(
|
||||
executor: (
|
||||
resolve: (value: T | PromiseLike<T>) => void,
|
||||
reject: (reason?: any) => void,
|
||||
onCancel: OnCancel
|
||||
) => void
|
||||
) {
|
||||
this._isResolved = false;
|
||||
this._isRejected = false;
|
||||
this._isCancelled = false;
|
||||
this._cancelHandlers = [];
|
||||
this._promise = new Promise<T>((resolve, reject) => {
|
||||
this._resolve = resolve;
|
||||
this._reject = reject;
|
||||
|
||||
const onResolve = (value: T | PromiseLike<T>): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isResolved = true;
|
||||
this._resolve?.(value);
|
||||
};
|
||||
const onResolve = (value: T | PromiseLike<T>): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isResolved = true;
|
||||
this._resolve?.(value);
|
||||
};
|
||||
|
||||
const onReject = (reason?: any): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isRejected = true;
|
||||
this._reject?.(reason);
|
||||
};
|
||||
const onReject = (reason?: any): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isRejected = true;
|
||||
this._reject?.(reason);
|
||||
};
|
||||
|
||||
const onCancel = (cancelHandler: () => void): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._cancelHandlers.push(cancelHandler);
|
||||
};
|
||||
const onCancel = (cancelHandler: () => void): void => {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._cancelHandlers.push(cancelHandler);
|
||||
};
|
||||
|
||||
Object.defineProperty(onCancel, 'isResolved', {
|
||||
get: (): boolean => this._isResolved,
|
||||
});
|
||||
Object.defineProperty(onCancel, 'isResolved', {
|
||||
get: (): boolean => this._isResolved,
|
||||
});
|
||||
|
||||
Object.defineProperty(onCancel, 'isRejected', {
|
||||
get: (): boolean => this._isRejected,
|
||||
});
|
||||
Object.defineProperty(onCancel, 'isRejected', {
|
||||
get: (): boolean => this._isRejected,
|
||||
});
|
||||
|
||||
Object.defineProperty(onCancel, 'isCancelled', {
|
||||
get: (): boolean => this._isCancelled,
|
||||
});
|
||||
Object.defineProperty(onCancel, 'isCancelled', {
|
||||
get: (): boolean => this._isCancelled,
|
||||
});
|
||||
|
||||
return executor(onResolve, onReject, onCancel as OnCancel);
|
||||
});
|
||||
}
|
||||
return executor(onResolve, onReject, onCancel as OnCancel);
|
||||
});
|
||||
}
|
||||
|
||||
public then<TResult1 = T, TResult2 = never>(
|
||||
onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null,
|
||||
onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null
|
||||
): Promise<TResult1 | TResult2> {
|
||||
return this._promise.then(onFulfilled, onRejected);
|
||||
}
|
||||
public then<TResult1 = T, TResult2 = never>(
|
||||
onFulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | null,
|
||||
onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null
|
||||
): Promise<TResult1 | TResult2> {
|
||||
return this._promise.then(onFulfilled, onRejected);
|
||||
}
|
||||
|
||||
public catch<TResult = never>(
|
||||
onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null
|
||||
): Promise<T | TResult> {
|
||||
return this._promise.catch(onRejected);
|
||||
}
|
||||
public catch<TResult = never>(
|
||||
onRejected?: ((reason: any) => TResult | PromiseLike<TResult>) | null
|
||||
): Promise<T | TResult> {
|
||||
return this._promise.catch(onRejected);
|
||||
}
|
||||
|
||||
public finally(onFinally?: (() => void) | null): Promise<T> {
|
||||
return this._promise.finally(onFinally);
|
||||
}
|
||||
public finally(onFinally?: (() => void) | null): Promise<T> {
|
||||
return this._promise.finally(onFinally);
|
||||
}
|
||||
|
||||
public cancel(): void {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isCancelled = true;
|
||||
if (this._cancelHandlers.length) {
|
||||
try {
|
||||
for (const cancelHandler of this._cancelHandlers) {
|
||||
cancelHandler();
|
||||
}
|
||||
} catch (error) {
|
||||
console.warn('Cancellation threw an error', error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
this._cancelHandlers.length = 0;
|
||||
this._reject?.(new CancelError('Request aborted'));
|
||||
}
|
||||
public cancel(): void {
|
||||
if (this._isResolved || this._isRejected || this._isCancelled) {
|
||||
return;
|
||||
}
|
||||
this._isCancelled = true;
|
||||
if (this._cancelHandlers.length) {
|
||||
try {
|
||||
for (const cancelHandler of this._cancelHandlers) {
|
||||
cancelHandler();
|
||||
}
|
||||
} catch (error) {
|
||||
console.warn('Cancellation threw an error', error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
this._cancelHandlers.length = 0;
|
||||
this._reject?.(new CancelError('Request aborted'));
|
||||
}
|
||||
|
||||
public get isCancelled(): boolean {
|
||||
return this._isCancelled;
|
||||
}
|
||||
public get isCancelled(): boolean {
|
||||
return this._isCancelled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,165 +10,198 @@ export type { AuditLogBaseModel } from './models/AuditLogBaseModel';
|
||||
export type { AuditLogResponseModel } from './models/AuditLogResponseModel';
|
||||
export type { AuditLogWithUsernameResponseModel } from './models/AuditLogWithUsernameResponseModel';
|
||||
export { AuditTypeModel } from './models/AuditTypeModel';
|
||||
export type { ConsentLevelModel } from './models/ConsentLevelModel';
|
||||
export type { ConsentLevelPresentationModel } from './models/ConsentLevelPresentationModel';
|
||||
export type { ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel } from './models/ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel';
|
||||
export { ContentStateModel } from './models/ContentStateModel';
|
||||
export type { ContentTreeItemModel } from './models/ContentTreeItemModel';
|
||||
export type { ContentTreeItemResponseModel } from './models/ContentTreeItemResponseModel';
|
||||
export type { ContentTypeCleanupModel } from './models/ContentTypeCleanupModel';
|
||||
export type { ContentTypeCompositionModel } from './models/ContentTypeCompositionModel';
|
||||
export { ContentTypeCompositionTypeModel } from './models/ContentTypeCompositionTypeModel';
|
||||
export type { ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel } from './models/ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel';
|
||||
export type { ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel } from './models/ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel';
|
||||
export type { ContentTypeSortModel } from './models/ContentTypeSortModel';
|
||||
export type { ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel } from './models/ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel';
|
||||
export type { ContentUrlInfoModel } from './models/ContentUrlInfoModel';
|
||||
export type { ContentViewModelBaseDocumentValueDocumentVariantModel } from './models/ContentViewModelBaseDocumentValueDocumentVariantModel';
|
||||
export type { CultureModel } from './models/CultureModel';
|
||||
export type { DatabaseInstallModel } from './models/DatabaseInstallModel';
|
||||
export type { DatabaseSettingsModel } from './models/DatabaseSettingsModel';
|
||||
export type { DataTypeCopyModel } from './models/DataTypeCopyModel';
|
||||
export type { DataTypeCreateModel } from './models/DataTypeCreateModel';
|
||||
export type { DataTypeModel } from './models/DataTypeModel';
|
||||
export type { CopyDataTypeRequestModel } from './models/CopyDataTypeRequestModel';
|
||||
export type { CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel } from './models/CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel';
|
||||
export type { CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel } from './models/CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel';
|
||||
export type { CreateDataTypeRequestModel } from './models/CreateDataTypeRequestModel';
|
||||
export type { CreateDictionaryItemRequestModel } from './models/CreateDictionaryItemRequestModel';
|
||||
export type { CreateDocumentRequestModel } from './models/CreateDocumentRequestModel';
|
||||
export type { CreateFolderRequestModel } from './models/CreateFolderRequestModel';
|
||||
export type { CreateLanguageRequestModel } from './models/CreateLanguageRequestModel';
|
||||
export type { CreateMediaRequestModel } from './models/CreateMediaRequestModel';
|
||||
export type { CreatePackageRequestModel } from './models/CreatePackageRequestModel';
|
||||
export type { CreateRelationTypeRequestModel } from './models/CreateRelationTypeRequestModel';
|
||||
export type { CreateTemplateRequestModel } from './models/CreateTemplateRequestModel';
|
||||
export type { CultureReponseModel } from './models/CultureReponseModel';
|
||||
export type { DatabaseInstallResponseModel } from './models/DatabaseInstallResponseModel';
|
||||
export type { DatabaseSettingsPresentationModel } from './models/DatabaseSettingsPresentationModel';
|
||||
export type { DataTypeModelBaseModel } from './models/DataTypeModelBaseModel';
|
||||
export type { DataTypeMoveModel } from './models/DataTypeMoveModel';
|
||||
export type { DataTypePropertyModel } from './models/DataTypePropertyModel';
|
||||
export type { DataTypePropertyPresentationModel } from './models/DataTypePropertyPresentationModel';
|
||||
export type { DataTypePropertyReferenceModel } from './models/DataTypePropertyReferenceModel';
|
||||
export type { DataTypeReferenceModel } from './models/DataTypeReferenceModel';
|
||||
export type { DataTypeUpdateModel } from './models/DataTypeUpdateModel';
|
||||
export type { DictionaryImportModel } from './models/DictionaryImportModel';
|
||||
export type { DictionaryItemCreateModel } from './models/DictionaryItemCreateModel';
|
||||
export type { DictionaryItemModel } from './models/DictionaryItemModel';
|
||||
export type { DataTypeReferenceResponseModel } from './models/DataTypeReferenceResponseModel';
|
||||
export type { DataTypeResponseModel } from './models/DataTypeResponseModel';
|
||||
export type { DictionaryItemModelBaseModel } from './models/DictionaryItemModelBaseModel';
|
||||
export type { DictionaryItemsImportModel } from './models/DictionaryItemsImportModel';
|
||||
export type { DictionaryItemResponseModel } from './models/DictionaryItemResponseModel';
|
||||
export type { DictionaryItemTranslationModel } from './models/DictionaryItemTranslationModel';
|
||||
export type { DictionaryItemUpdateModel } from './models/DictionaryItemUpdateModel';
|
||||
export type { DictionaryMoveModel } from './models/DictionaryMoveModel';
|
||||
export type { DictionaryOverviewModel } from './models/DictionaryOverviewModel';
|
||||
export type { DictionaryUploadModel } from './models/DictionaryUploadModel';
|
||||
export type { DictionaryOverviewResponseModel } from './models/DictionaryOverviewResponseModel';
|
||||
export { DirectionModel } from './models/DirectionModel';
|
||||
export type { DocumentBlueprintTreeItemModel } from './models/DocumentBlueprintTreeItemModel';
|
||||
export type { DocumentModel } from './models/DocumentModel';
|
||||
export type { DocumentTreeItemModel } from './models/DocumentTreeItemModel';
|
||||
export type { DocumentTypeModel } from './models/DocumentTypeModel';
|
||||
export type { DocumentTypePropertyTypeContainerModel } from './models/DocumentTypePropertyTypeContainerModel';
|
||||
export type { DocumentTypePropertyTypeModel } from './models/DocumentTypePropertyTypeModel';
|
||||
export type { DocumentTypeTreeItemModel } from './models/DocumentTypeTreeItemModel';
|
||||
export type { DocumentBlueprintTreeItemResponseModel } from './models/DocumentBlueprintTreeItemResponseModel';
|
||||
export type { DocumentResponseModel } from './models/DocumentResponseModel';
|
||||
export type { DocumentTreeItemResponseModel } from './models/DocumentTreeItemResponseModel';
|
||||
export type { DocumentTypePropertyTypeContainerResponseModel } from './models/DocumentTypePropertyTypeContainerResponseModel';
|
||||
export type { DocumentTypePropertyTypeResponseModel } from './models/DocumentTypePropertyTypeResponseModel';
|
||||
export type { DocumentTypeResponseModel } from './models/DocumentTypeResponseModel';
|
||||
export type { DocumentTypeTreeItemResponseModel } from './models/DocumentTypeTreeItemResponseModel';
|
||||
export type { DocumentValueModel } from './models/DocumentValueModel';
|
||||
export type { DocumentVariantModel } from './models/DocumentVariantModel';
|
||||
export type { EntityTreeItemModel } from './models/EntityTreeItemModel';
|
||||
export type { FieldModel } from './models/FieldModel';
|
||||
export type { FileSystemTreeItemModel } from './models/FileSystemTreeItemModel';
|
||||
export type { FolderCreateModel } from './models/FolderCreateModel';
|
||||
export type { FolderModel } from './models/FolderModel';
|
||||
export type { DocumentVariantRequestModel } from './models/DocumentVariantRequestModel';
|
||||
export type { DocumentVariantResponseModel } from './models/DocumentVariantResponseModel';
|
||||
export type { DomainPresentationModel } from './models/DomainPresentationModel';
|
||||
export type { DomainsPresentationModelBaseModel } from './models/DomainsPresentationModelBaseModel';
|
||||
export type { DomainsResponseModel } from './models/DomainsResponseModel';
|
||||
export type { EntityTreeItemResponseModel } from './models/EntityTreeItemResponseModel';
|
||||
export type { FieldPresentationModel } from './models/FieldPresentationModel';
|
||||
export type { FileSystemTreeItemPresentationModel } from './models/FileSystemTreeItemPresentationModel';
|
||||
export type { FolderModelBaseModel } from './models/FolderModelBaseModel';
|
||||
export type { FolderTreeItemModel } from './models/FolderTreeItemModel';
|
||||
export type { FolderUpdateModel } from './models/FolderUpdateModel';
|
||||
export type { HealthCheckActionModel } from './models/HealthCheckActionModel';
|
||||
export type { HealthCheckGroupModel } from './models/HealthCheckGroupModel';
|
||||
export type { HealthCheckGroupModelBaseModel } from './models/HealthCheckGroupModelBaseModel';
|
||||
export type { HealthCheckGroupWithResultModel } from './models/HealthCheckGroupWithResultModel';
|
||||
export type { FolderReponseModel } from './models/FolderReponseModel';
|
||||
export type { FolderTreeItemResponseModel } from './models/FolderTreeItemResponseModel';
|
||||
export type { HealthCheckActionRequestModel } from './models/HealthCheckActionRequestModel';
|
||||
export type { HealthCheckGroupPresentationBaseModel } from './models/HealthCheckGroupPresentationBaseModel';
|
||||
export type { HealthCheckGroupPresentationModel } from './models/HealthCheckGroupPresentationModel';
|
||||
export type { HealthCheckGroupResponseModel } from './models/HealthCheckGroupResponseModel';
|
||||
export type { HealthCheckGroupWithResultResponseModel } from './models/HealthCheckGroupWithResultResponseModel';
|
||||
export type { HealthCheckModel } from './models/HealthCheckModel';
|
||||
export type { HealthCheckModelBaseModel } from './models/HealthCheckModelBaseModel';
|
||||
export type { HealthCheckResultModel } from './models/HealthCheckResultModel';
|
||||
export type { HealthCheckWithResultModel } from './models/HealthCheckWithResultModel';
|
||||
export type { HealthCheckResultResponseModel } from './models/HealthCheckResultResponseModel';
|
||||
export type { HealthCheckWithResultPresentationModel } from './models/HealthCheckWithResultPresentationModel';
|
||||
export { HealthStatusModel } from './models/HealthStatusModel';
|
||||
export type { HelpPageModel } from './models/HelpPageModel';
|
||||
export type { IndexModel } from './models/IndexModel';
|
||||
export type { InstallModel } from './models/InstallModel';
|
||||
export type { InstallSettingsModel } from './models/InstallSettingsModel';
|
||||
export type { LanguageCreateModel } from './models/LanguageCreateModel';
|
||||
export type { LanguageModel } from './models/LanguageModel';
|
||||
export type { HelpPageResponseModel } from './models/HelpPageResponseModel';
|
||||
export type { ImportDictionaryItemsPresentationModel } from './models/ImportDictionaryItemsPresentationModel';
|
||||
export type { ImportDictionaryRequestModel } from './models/ImportDictionaryRequestModel';
|
||||
export type { IndexResponseModel } from './models/IndexResponseModel';
|
||||
export type { InstallSettingsResponseModel } from './models/InstallSettingsResponseModel';
|
||||
export type { InstallVResponseModel } from './models/InstallVResponseModel';
|
||||
export type { LanguageModelBaseModel } from './models/LanguageModelBaseModel';
|
||||
export type { LanguageUpdateModel } from './models/LanguageUpdateModel';
|
||||
export type { LoggerModel } from './models/LoggerModel';
|
||||
export type { LogLevelCountsModel } from './models/LogLevelCountsModel';
|
||||
export type { LanguageResponseModel } from './models/LanguageResponseModel';
|
||||
export type { LoggerResponseModel } from './models/LoggerResponseModel';
|
||||
export type { LogLevelCountsReponseModel } from './models/LogLevelCountsReponseModel';
|
||||
export { LogLevelModel } from './models/LogLevelModel';
|
||||
export type { LogMessageModel } from './models/LogMessageModel';
|
||||
export type { LogMessagePropertyModel } from './models/LogMessagePropertyModel';
|
||||
export type { LogTemplateModel } from './models/LogTemplateModel';
|
||||
export type { ModelsBuilderModel } from './models/ModelsBuilderModel';
|
||||
export type { LogMessagePropertyPresentationModel } from './models/LogMessagePropertyPresentationModel';
|
||||
export type { LogMessageResponseModel } from './models/LogMessageResponseModel';
|
||||
export type { LogTemplateResponseModel } from './models/LogTemplateResponseModel';
|
||||
export type { MediaTypePropertyTypeContainerResponseModel } from './models/MediaTypePropertyTypeContainerResponseModel';
|
||||
export type { MediaTypePropertyTypeResponseModel } from './models/MediaTypePropertyTypeResponseModel';
|
||||
export type { MediaTypeResponseModel } from './models/MediaTypeResponseModel';
|
||||
export type { MediaValueModel } from './models/MediaValueModel';
|
||||
export type { MediaVariantRequestModel } from './models/MediaVariantRequestModel';
|
||||
export type { MediaVariantResponseModel } from './models/MediaVariantResponseModel';
|
||||
export type { ModelsBuilderResponseModel } from './models/ModelsBuilderResponseModel';
|
||||
export { ModelsModeModel } from './models/ModelsModeModel';
|
||||
export type { MoveDataTypeRequestModel } from './models/MoveDataTypeRequestModel';
|
||||
export type { MoveDictionaryRequestModel } from './models/MoveDictionaryRequestModel';
|
||||
export type { ObjectTypeResponseModel } from './models/ObjectTypeResponseModel';
|
||||
export type { OkResultModel } from './models/OkResultModel';
|
||||
export { OperatorModel } from './models/OperatorModel';
|
||||
export type { OutOfDateStatusModel } from './models/OutOfDateStatusModel';
|
||||
export type { OutOfDateStatusResponseModel } from './models/OutOfDateStatusResponseModel';
|
||||
export { OutOfDateTypeModel } from './models/OutOfDateTypeModel';
|
||||
export type { PackageCreateModel } from './models/PackageCreateModel';
|
||||
export type { PackageDefinitionModel } from './models/PackageDefinitionModel';
|
||||
export type { PackageManifestModel } from './models/PackageManifestModel';
|
||||
export type { PackageMigrationStatusModel } from './models/PackageMigrationStatusModel';
|
||||
export type { PackageDefinitionResponseModel } from './models/PackageDefinitionResponseModel';
|
||||
export type { PackageManifestResponseModel } from './models/PackageManifestResponseModel';
|
||||
export type { PackageMigrationStatusResponseModel } from './models/PackageMigrationStatusResponseModel';
|
||||
export type { PackageModelBaseModel } from './models/PackageModelBaseModel';
|
||||
export type { PackageUpdateModel } from './models/PackageUpdateModel';
|
||||
export type { PagedAuditLogResponseModel } from './models/PagedAuditLogResponseModel';
|
||||
export type { PagedAuditLogWithUsernameResponseModel } from './models/PagedAuditLogWithUsernameResponseModel';
|
||||
export type { PagedContentTreeItemModel } from './models/PagedContentTreeItemModel';
|
||||
export type { PagedCultureModel } from './models/PagedCultureModel';
|
||||
export type { PagedDictionaryOverviewModel } from './models/PagedDictionaryOverviewModel';
|
||||
export type { PagedDocumentBlueprintTreeItemModel } from './models/PagedDocumentBlueprintTreeItemModel';
|
||||
export type { PagedDocumentTreeItemModel } from './models/PagedDocumentTreeItemModel';
|
||||
export type { PagedDocumentTypeTreeItemModel } from './models/PagedDocumentTypeTreeItemModel';
|
||||
export type { PagedEntityTreeItemModel } from './models/PagedEntityTreeItemModel';
|
||||
export type { PagedFileSystemTreeItemModel } from './models/PagedFileSystemTreeItemModel';
|
||||
export type { PagedFolderTreeItemModel } from './models/PagedFolderTreeItemModel';
|
||||
export type { PagedHealthCheckGroupModelBaseModel } from './models/PagedHealthCheckGroupModelBaseModel';
|
||||
export type { PagedHelpPageModel } from './models/PagedHelpPageModel';
|
||||
export type { PagedIndexModel } from './models/PagedIndexModel';
|
||||
export type { PagedLanguageModel } from './models/PagedLanguageModel';
|
||||
export type { PagedLoggerModel } from './models/PagedLoggerModel';
|
||||
export type { PagedLogMessageModel } from './models/PagedLogMessageModel';
|
||||
export type { PagedLogTemplateModel } from './models/PagedLogTemplateModel';
|
||||
export type { PagedPackageDefinitionModel } from './models/PagedPackageDefinitionModel';
|
||||
export type { PagedPackageMigrationStatusModel } from './models/PagedPackageMigrationStatusModel';
|
||||
export type { PagedRecycleBinItemModel } from './models/PagedRecycleBinItemModel';
|
||||
export type { PagedRedirectUrlModel } from './models/PagedRedirectUrlModel';
|
||||
export type { PagedRelationItemModel } from './models/PagedRelationItemModel';
|
||||
export type { PagedRelationModel } from './models/PagedRelationModel';
|
||||
export type { PagedSavedLogSearchModel } from './models/PagedSavedLogSearchModel';
|
||||
export type { PagedSearcherModel } from './models/PagedSearcherModel';
|
||||
export type { PagedSearchResultModel } from './models/PagedSearchResultModel';
|
||||
export type { PagedTelemetryModel } from './models/PagedTelemetryModel';
|
||||
export type { PagedUserGroupModel } from './models/PagedUserGroupModel';
|
||||
export type { PagedContentTreeItemResponseModel } from './models/PagedContentTreeItemResponseModel';
|
||||
export type { PagedCultureReponseModel } from './models/PagedCultureReponseModel';
|
||||
export type { PagedDictionaryOverviewResponseModel } from './models/PagedDictionaryOverviewResponseModel';
|
||||
export type { PagedDocumentBlueprintTreeItemResponseModel } from './models/PagedDocumentBlueprintTreeItemResponseModel';
|
||||
export type { PagedDocumentTreeItemResponseModel } from './models/PagedDocumentTreeItemResponseModel';
|
||||
export type { PagedDocumentTypeTreeItemResponseModel } from './models/PagedDocumentTypeTreeItemResponseModel';
|
||||
export type { PagedEntityTreeItemResponseModel } from './models/PagedEntityTreeItemResponseModel';
|
||||
export type { PagedFileSystemTreeItemPresentationModel } from './models/PagedFileSystemTreeItemPresentationModel';
|
||||
export type { PagedFolderTreeItemResponseModel } from './models/PagedFolderTreeItemResponseModel';
|
||||
export type { PagedHealthCheckGroupResponseModel } from './models/PagedHealthCheckGroupResponseModel';
|
||||
export type { PagedHelpPageResponseModel } from './models/PagedHelpPageResponseModel';
|
||||
export type { PagedIndexResponseModel } from './models/PagedIndexResponseModel';
|
||||
export type { PagedLanguageResponseModel } from './models/PagedLanguageResponseModel';
|
||||
export type { PagedLoggerResponseModel } from './models/PagedLoggerResponseModel';
|
||||
export type { PagedLogMessageResponseModel } from './models/PagedLogMessageResponseModel';
|
||||
export type { PagedLogTemplateResponseModel } from './models/PagedLogTemplateResponseModel';
|
||||
export type { PagedObjectTypeResponseModel } from './models/PagedObjectTypeResponseModel';
|
||||
export type { PagedPackageDefinitionResponseModel } from './models/PagedPackageDefinitionResponseModel';
|
||||
export type { PagedPackageMigrationStatusResponseModel } from './models/PagedPackageMigrationStatusResponseModel';
|
||||
export type { PagedRecycleBinItemResponseModel } from './models/PagedRecycleBinItemResponseModel';
|
||||
export type { PagedRedirectUrlResponseModel } from './models/PagedRedirectUrlResponseModel';
|
||||
export type { PagedRelationItemResponseModel } from './models/PagedRelationItemResponseModel';
|
||||
export type { PagedRelationResponseModel } from './models/PagedRelationResponseModel';
|
||||
export type { PagedSavedLogSearchResponseModel } from './models/PagedSavedLogSearchResponseModel';
|
||||
export type { PagedSearcherResponseModel } from './models/PagedSearcherResponseModel';
|
||||
export type { PagedSearchResultResponseModel } from './models/PagedSearchResultResponseModel';
|
||||
export type { PagedTelemetryResponseModel } from './models/PagedTelemetryResponseModel';
|
||||
export type { PagedUserGroupPresentationModel } from './models/PagedUserGroupPresentationModel';
|
||||
export type { ProblemDetailsModel } from './models/ProblemDetailsModel';
|
||||
export type { ProfilingStatusModel } from './models/ProfilingStatusModel';
|
||||
export type { ProfilingStatusRequestModel } from './models/ProfilingStatusRequestModel';
|
||||
export type { ProfilingStatusResponseModel } from './models/ProfilingStatusResponseModel';
|
||||
export type { PropertyTypeAppearanceModel } from './models/PropertyTypeAppearanceModel';
|
||||
export type { PropertyTypeContainerViewModelBaseModel } from './models/PropertyTypeContainerViewModelBaseModel';
|
||||
export type { PropertyTypeContainerResponseModelBaseModel } from './models/PropertyTypeContainerResponseModelBaseModel';
|
||||
export type { PropertyTypeResponseModelBaseModel } from './models/PropertyTypeResponseModelBaseModel';
|
||||
export type { PropertyTypeValidationModel } from './models/PropertyTypeValidationModel';
|
||||
export type { PropertyTypeViewModelBaseModel } from './models/PropertyTypeViewModelBaseModel';
|
||||
export type { RecycleBinItemModel } from './models/RecycleBinItemModel';
|
||||
export type { RecycleBinItemResponseModel } from './models/RecycleBinItemResponseModel';
|
||||
export { RedirectStatusModel } from './models/RedirectStatusModel';
|
||||
export type { RedirectUrlModel } from './models/RedirectUrlModel';
|
||||
export type { RedirectUrlStatusModel } from './models/RedirectUrlStatusModel';
|
||||
export type { RelationItemModel } from './models/RelationItemModel';
|
||||
export type { RelationModel } from './models/RelationModel';
|
||||
export type { RedirectUrlResponseModel } from './models/RedirectUrlResponseModel';
|
||||
export type { RedirectUrlStatusResponseModel } from './models/RedirectUrlStatusResponseModel';
|
||||
export type { RelationItemResponseModel } from './models/RelationItemResponseModel';
|
||||
export type { RelationResponseModel } from './models/RelationResponseModel';
|
||||
export type { RelationTypeBaseModel } from './models/RelationTypeBaseModel';
|
||||
export type { RelationTypeResponseModel } from './models/RelationTypeResponseModel';
|
||||
export { RuntimeLevelModel } from './models/RuntimeLevelModel';
|
||||
export type { SavedLogSearchModel } from './models/SavedLogSearchModel';
|
||||
export type { SearcherModel } from './models/SearcherModel';
|
||||
export type { SearchResultModel } from './models/SearchResultModel';
|
||||
export type { ServerStatusModel } from './models/ServerStatusModel';
|
||||
export type { SavedLogSearchPresenationBaseModel } from './models/SavedLogSearchPresenationBaseModel';
|
||||
export type { SavedLogSearchRequestModel } from './models/SavedLogSearchRequestModel';
|
||||
export type { SavedLogSearchResponseModel } from './models/SavedLogSearchResponseModel';
|
||||
export type { SaveUserGroupRequestModel } from './models/SaveUserGroupRequestModel';
|
||||
export type { SearcherResponseModel } from './models/SearcherResponseModel';
|
||||
export type { SearchResultResponseModel } from './models/SearchResultResponseModel';
|
||||
export type { ServerStatusResponseModel } from './models/ServerStatusResponseModel';
|
||||
export { StatusResultTypeModel } from './models/StatusResultTypeModel';
|
||||
export { TelemetryLevelModel } from './models/TelemetryLevelModel';
|
||||
export type { TelemetryModel } from './models/TelemetryModel';
|
||||
export type { TemplateCreateModel } from './models/TemplateCreateModel';
|
||||
export type { TemplateModel } from './models/TemplateModel';
|
||||
export type { TelemetryRepresentationBaseModel } from './models/TelemetryRepresentationBaseModel';
|
||||
export type { TelemetryRequestModel } from './models/TelemetryRequestModel';
|
||||
export type { TelemetryResponseModel } from './models/TelemetryResponseModel';
|
||||
export type { TemplateModelBaseModel } from './models/TemplateModelBaseModel';
|
||||
export type { TemplateQueryExecuteFilterModel } from './models/TemplateQueryExecuteFilterModel';
|
||||
export type { TemplateQueryExecuteFilterPresentationModel } from './models/TemplateQueryExecuteFilterPresentationModel';
|
||||
export type { TemplateQueryExecuteModel } from './models/TemplateQueryExecuteModel';
|
||||
export type { TemplateQueryExecuteSortModel } from './models/TemplateQueryExecuteSortModel';
|
||||
export type { TemplateQueryOperatorModel } from './models/TemplateQueryOperatorModel';
|
||||
export type { TemplateQueryPropertyModel } from './models/TemplateQueryPropertyModel';
|
||||
export type { TemplateQueryPropertyPresentationModel } from './models/TemplateQueryPropertyPresentationModel';
|
||||
export { TemplateQueryPropertyTypeModel } from './models/TemplateQueryPropertyTypeModel';
|
||||
export type { TemplateQueryResultItemModel } from './models/TemplateQueryResultItemModel';
|
||||
export type { TemplateQueryResultModel } from './models/TemplateQueryResultModel';
|
||||
export type { TemplateQuerySettingsModel } from './models/TemplateQuerySettingsModel';
|
||||
export type { TemplateScaffoldModel } from './models/TemplateScaffoldModel';
|
||||
export type { TemplateUpdateModel } from './models/TemplateUpdateModel';
|
||||
export type { TreeItemModel } from './models/TreeItemModel';
|
||||
export type { UpgradeSettingsModel } from './models/UpgradeSettingsModel';
|
||||
export type { TemplateQueryResultItemPresentationModel } from './models/TemplateQueryResultItemPresentationModel';
|
||||
export type { TemplateQueryResultResponseModel } from './models/TemplateQueryResultResponseModel';
|
||||
export type { TemplateQuerySettingsResponseModel } from './models/TemplateQuerySettingsResponseModel';
|
||||
export type { TemplateResponseModel } from './models/TemplateResponseModel';
|
||||
export type { TemplateScaffoldResponseModel } from './models/TemplateScaffoldResponseModel';
|
||||
export type { TreeItemPresentationModel } from './models/TreeItemPresentationModel';
|
||||
export type { UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel } from './models/UpdateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel';
|
||||
export type { UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel } from './models/UpdateContentRequestModelBaseMediaValueModelMediaVariantRequestModel';
|
||||
export type { UpdateDataTypeRequestModel } from './models/UpdateDataTypeRequestModel';
|
||||
export type { UpdateDictionaryItemRequestModel } from './models/UpdateDictionaryItemRequestModel';
|
||||
export type { UpdateDocumentRequestModel } from './models/UpdateDocumentRequestModel';
|
||||
export type { UpdateDomainsRequestModel } from './models/UpdateDomainsRequestModel';
|
||||
export type { UpdateFolderReponseModel } from './models/UpdateFolderReponseModel';
|
||||
export type { UpdateLanguageRequestModel } from './models/UpdateLanguageRequestModel';
|
||||
export type { UpdateMediaRequestModel } from './models/UpdateMediaRequestModel';
|
||||
export type { UpdatePackageRequestModel } from './models/UpdatePackageRequestModel';
|
||||
export type { UpdateRelationTypeRequestModel } from './models/UpdateRelationTypeRequestModel';
|
||||
export type { UpdateTemplateRequestModel } from './models/UpdateTemplateRequestModel';
|
||||
export type { UpdateUserGroupRequestModel } from './models/UpdateUserGroupRequestModel';
|
||||
export type { UpgradeSettingsResponseModel } from './models/UpgradeSettingsResponseModel';
|
||||
export type { UploadDictionaryResponseModel } from './models/UploadDictionaryResponseModel';
|
||||
export type { UserGroupBaseModel } from './models/UserGroupBaseModel';
|
||||
export type { UserGroupModel } from './models/UserGroupModel';
|
||||
export type { UserGroupSaveModel } from './models/UserGroupSaveModel';
|
||||
export type { UserGroupUpdateModel } from './models/UserGroupUpdateModel';
|
||||
export type { UserInstallModel } from './models/UserInstallModel';
|
||||
export type { UserGroupPresentationModel } from './models/UserGroupPresentationModel';
|
||||
export type { UserInstallResponseModel } from './models/UserInstallResponseModel';
|
||||
export type { UserSettingsModel } from './models/UserSettingsModel';
|
||||
export type { ValueViewModelBaseModel } from './models/ValueViewModelBaseModel';
|
||||
export type { VariantViewModelBaseModel } from './models/VariantViewModelBaseModel';
|
||||
export type { VersionModel } from './models/VersionModel';
|
||||
export type { ValueModelBaseModel } from './models/ValueModelBaseModel';
|
||||
export type { VariantModelBaseModel } from './models/VariantModelBaseModel';
|
||||
export type { VariantResponseModelBaseModel } from './models/VariantResponseModelBaseModel';
|
||||
export type { VersionResponseModel } from './models/VersionResponseModel';
|
||||
|
||||
export { AuditLogResource } from './services/AuditLogResource';
|
||||
export { CultureResource } from './services/CultureResource';
|
||||
@@ -188,6 +221,7 @@ export { MediaTypeResource } from './services/MediaTypeResource';
|
||||
export { MemberGroupResource } from './services/MemberGroupResource';
|
||||
export { MemberTypeResource } from './services/MemberTypeResource';
|
||||
export { ModelsBuilderResource } from './services/ModelsBuilderResource';
|
||||
export { ObjectTypesResource } from './services/ObjectTypesResource';
|
||||
export { PackageResource } from './services/PackageResource';
|
||||
export { PartialViewResource } from './services/PartialViewResource';
|
||||
export { ProfilingResource } from './services/ProfilingResource';
|
||||
|
||||
@@ -13,4 +13,3 @@ export type AuditLogBaseModel = {
|
||||
comment?: string | null;
|
||||
parameters?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,4 +5,3 @@
|
||||
import type { AuditLogBaseModel } from './AuditLogBaseModel';
|
||||
|
||||
export type AuditLogResponseModel = AuditLogBaseModel;
|
||||
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
import type { AuditLogBaseModel } from './AuditLogBaseModel';
|
||||
|
||||
export type AuditLogWithUsernameResponseModel = (AuditLogBaseModel & {
|
||||
userName?: string | null;
|
||||
userAvatars?: Array<string> | null;
|
||||
userName?: string | null;
|
||||
userAvatars?: Array<string> | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -4,8 +4,7 @@
|
||||
|
||||
import type { TelemetryLevelModel } from './TelemetryLevelModel';
|
||||
|
||||
export type ConsentLevelModel = {
|
||||
export type ConsentLevelPresentationModel = {
|
||||
level?: TelemetryLevelModel;
|
||||
description?: string;
|
||||
};
|
||||
|
||||
@@ -3,12 +3,11 @@
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DocumentValueModel } from './DocumentValueModel';
|
||||
import type { DocumentVariantModel } from './DocumentVariantModel';
|
||||
import type { DocumentVariantResponseModel } from './DocumentVariantResponseModel';
|
||||
|
||||
export type ContentViewModelBaseDocumentValueDocumentVariantModel = {
|
||||
export type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel = {
|
||||
values?: Array<DocumentValueModel>;
|
||||
variants?: Array<DocumentVariantResponseModel>;
|
||||
key?: string;
|
||||
contentTypeKey?: string;
|
||||
values?: Array<DocumentValueModel>;
|
||||
variants?: Array<DocumentVariantModel>;
|
||||
};
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemModel } from './EntityTreeItemModel';
|
||||
|
||||
export type ContentTreeItemModel = (EntityTreeItemModel & {
|
||||
$type: string;
|
||||
noAccess?: boolean;
|
||||
isTrashed?: boolean;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type ContentTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
noAccess?: boolean;
|
||||
isTrashed?: boolean;
|
||||
});
|
||||
@@ -7,4 +7,3 @@ export type ContentTypeCleanupModel = {
|
||||
keepAllVersionsNewerThanDays?: number | null;
|
||||
keepLatestVersionPerDayForDays?: number | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,4 +8,3 @@ export type ContentTypeCompositionModel = {
|
||||
key?: string;
|
||||
compositionType?: ContentTypeCompositionTypeModel;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,13 +2,12 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTypeCleanupModel } from './ContentTypeCleanupModel';
|
||||
import type { ContentTypeCompositionModel } from './ContentTypeCompositionModel';
|
||||
import type { ContentTypeSortModel } from './ContentTypeSortModel';
|
||||
import type { DocumentTypePropertyTypeContainerModel } from './DocumentTypePropertyTypeContainerModel';
|
||||
import type { DocumentTypePropertyTypeModel } from './DocumentTypePropertyTypeModel';
|
||||
import type { DocumentTypePropertyTypeContainerResponseModel } from './DocumentTypePropertyTypeContainerResponseModel';
|
||||
import type { DocumentTypePropertyTypeResponseModel } from './DocumentTypePropertyTypeResponseModel';
|
||||
|
||||
export type ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel = {
|
||||
export type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel = {
|
||||
key?: string;
|
||||
alias?: string;
|
||||
name?: string;
|
||||
@@ -18,10 +17,8 @@ export type ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypeProperty
|
||||
variesByCulture?: boolean;
|
||||
variesBySegment?: boolean;
|
||||
isElement?: boolean;
|
||||
properties?: Array<DocumentTypePropertyTypeModel>;
|
||||
containers?: Array<DocumentTypePropertyTypeContainerModel>;
|
||||
properties?: Array<DocumentTypePropertyTypeResponseModel>;
|
||||
containers?: Array<DocumentTypePropertyTypeContainerResponseModel>;
|
||||
allowedContentTypes?: Array<ContentTypeSortModel>;
|
||||
compositions?: Array<ContentTypeCompositionModel>;
|
||||
cleanup?: ContentTypeCleanupModel;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTypeCompositionModel } from './ContentTypeCompositionModel';
|
||||
import type { ContentTypeSortModel } from './ContentTypeSortModel';
|
||||
import type { MediaTypePropertyTypeContainerResponseModel } from './MediaTypePropertyTypeContainerResponseModel';
|
||||
import type { MediaTypePropertyTypeResponseModel } from './MediaTypePropertyTypeResponseModel';
|
||||
|
||||
export type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaTypePropertyTypeContainerResponseModel = {
|
||||
key?: string;
|
||||
alias?: string;
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
icon?: string;
|
||||
allowedAsRoot?: boolean;
|
||||
variesByCulture?: boolean;
|
||||
variesBySegment?: boolean;
|
||||
isElement?: boolean;
|
||||
properties?: Array<MediaTypePropertyTypeResponseModel>;
|
||||
containers?: Array<MediaTypePropertyTypeContainerResponseModel>;
|
||||
allowedContentTypes?: Array<ContentTypeSortModel>;
|
||||
compositions?: Array<ContentTypeCompositionModel>;
|
||||
};
|
||||
@@ -6,4 +6,3 @@ export type ContentTypeSortModel = {
|
||||
key?: string;
|
||||
sortOrder?: number;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,4 +6,3 @@ export type ContentUrlInfoModel = {
|
||||
culture?: string | null;
|
||||
url?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DictionaryMoveModel = {
|
||||
export type CopyDataTypeRequestModel = {
|
||||
targetKey?: string | null;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DocumentValueModel } from './DocumentValueModel';
|
||||
import type { DocumentVariantRequestModel } from './DocumentVariantRequestModel';
|
||||
|
||||
export type CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel = {
|
||||
values?: Array<DocumentValueModel>;
|
||||
variants?: Array<DocumentVariantRequestModel>;
|
||||
parentKey?: string | null;
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { MediaValueModel } from './MediaValueModel';
|
||||
import type { MediaVariantRequestModel } from './MediaVariantRequestModel';
|
||||
|
||||
export type CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel = {
|
||||
values?: Array<MediaValueModel>;
|
||||
variants?: Array<MediaVariantRequestModel>;
|
||||
parentKey?: string | null;
|
||||
};
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
import type { DataTypeModelBaseModel } from './DataTypeModelBaseModel';
|
||||
|
||||
export type DataTypeCreateModel = (DataTypeModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
export type CreateDataTypeRequestModel = (DataTypeModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
|
||||
|
||||
export type DictionaryItemCreateModel = (DictionaryItemModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
export type CreateDictionaryItemRequestModel = (DictionaryItemModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel } from './CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel';
|
||||
|
||||
export type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
||||
contentTypeKey?: string;
|
||||
templateKey?: string | null;
|
||||
});
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
import type { FolderModelBaseModel } from './FolderModelBaseModel';
|
||||
|
||||
export type FolderCreateModel = (FolderModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
export type CreateFolderRequestModel = (FolderModelBaseModel & {
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
|
||||
|
||||
export type LanguageCreateModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
export type CreateLanguageRequestModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel } from './CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel';
|
||||
|
||||
export type CreateMediaRequestModel = (CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel & {
|
||||
contentTypeKey?: string;
|
||||
});
|
||||
@@ -4,5 +4,4 @@
|
||||
|
||||
import type { PackageModelBaseModel } from './PackageModelBaseModel';
|
||||
|
||||
export type PackageCreateModel = PackageModelBaseModel;
|
||||
|
||||
export type CreatePackageRequestModel = PackageModelBaseModel;
|
||||
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { RelationTypeBaseModel } from './RelationTypeBaseModel';
|
||||
|
||||
export type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
|
||||
key?: string | null;
|
||||
});
|
||||
@@ -4,5 +4,4 @@
|
||||
|
||||
import type { TemplateModelBaseModel } from './TemplateModelBaseModel';
|
||||
|
||||
export type TemplateUpdateModel = TemplateModelBaseModel;
|
||||
|
||||
export type CreateTemplateRequestModel = TemplateModelBaseModel;
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type CultureModel = {
|
||||
export type CultureReponseModel = {
|
||||
name?: string;
|
||||
englishName?: string;
|
||||
};
|
||||
|
||||
@@ -2,12 +2,11 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DataTypePropertyModel } from './DataTypePropertyModel';
|
||||
import type { DataTypePropertyPresentationModel } from './DataTypePropertyPresentationModel';
|
||||
|
||||
export type DataTypeModelBaseModel = {
|
||||
name?: string;
|
||||
propertyEditorAlias?: string;
|
||||
propertyEditorUiAlias?: string | null;
|
||||
data?: Array<DataTypePropertyModel>;
|
||||
values?: Array<DataTypePropertyPresentationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DataTypePropertyModel = {
|
||||
export type DataTypePropertyPresentationModel = {
|
||||
alias?: string;
|
||||
value?: any;
|
||||
};
|
||||
|
||||
@@ -6,4 +6,3 @@ export type DataTypePropertyReferenceModel = {
|
||||
name?: string;
|
||||
alias?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
|
||||
import type { DataTypePropertyReferenceModel } from './DataTypePropertyReferenceModel';
|
||||
|
||||
export type DataTypeReferenceModel = {
|
||||
export type DataTypeReferenceResponseModel = {
|
||||
key?: string;
|
||||
type?: string;
|
||||
properties?: Array<DataTypePropertyReferenceModel>;
|
||||
};
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
|
||||
import type { DataTypeModelBaseModel } from './DataTypeModelBaseModel';
|
||||
|
||||
export type DataTypeModel = (DataTypeModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
parentKey?: string | null;
|
||||
export type DataTypeResponseModel = (DataTypeModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DatabaseInstallModel = {
|
||||
export type DatabaseInstallResponseModel = {
|
||||
id: string;
|
||||
providerName: string;
|
||||
server?: string | null;
|
||||
@@ -12,4 +12,3 @@ export type DatabaseInstallModel = {
|
||||
useIntegratedAuthentication?: boolean;
|
||||
connectionString?: string | null;
|
||||
};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DatabaseSettingsModel = {
|
||||
export type DatabaseSettingsPresentationModel = {
|
||||
id?: string;
|
||||
sortOrder?: number;
|
||||
displayName?: string;
|
||||
@@ -15,4 +15,3 @@ export type DatabaseSettingsModel = {
|
||||
supportsIntegratedAuthentication?: boolean;
|
||||
requiresConnectionTest?: boolean;
|
||||
};
|
||||
|
||||
@@ -8,4 +8,3 @@ export type DictionaryItemModelBaseModel = {
|
||||
name?: string;
|
||||
translations?: Array<DictionaryItemTranslationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -4,8 +4,7 @@
|
||||
|
||||
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
|
||||
|
||||
export type DictionaryItemModel = (DictionaryItemModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
export type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
});
|
||||
|
||||
@@ -6,4 +6,3 @@ export type DictionaryItemTranslationModel = {
|
||||
isoCode?: string;
|
||||
translation?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,10 +2,9 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DictionaryOverviewModel = {
|
||||
export type DictionaryOverviewResponseModel = {
|
||||
name?: string | null;
|
||||
key?: string;
|
||||
parentKey?: string | null;
|
||||
translatedIsoCodes?: Array<string>;
|
||||
};
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DictionaryItemsImportModel } from './DictionaryItemsImportModel';
|
||||
|
||||
export type DictionaryUploadModel = {
|
||||
dictionaryItems?: Array<DictionaryItemsImportModel>;
|
||||
fileName?: string | null;
|
||||
};
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemModel } from './EntityTreeItemModel';
|
||||
|
||||
export type DocumentBlueprintTreeItemModel = (EntityTreeItemModel & {
|
||||
$type: string;
|
||||
documentTypeKey?: string;
|
||||
documentTypeAlias?: string;
|
||||
documentTypeName?: string | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
documentTypeKey?: string;
|
||||
documentTypeAlias?: string;
|
||||
documentTypeName?: string | null;
|
||||
});
|
||||
@@ -1,12 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentUrlInfoModel } from './ContentUrlInfoModel';
|
||||
import type { ContentViewModelBaseDocumentValueDocumentVariantModel } from './ContentViewModelBaseDocumentValueDocumentVariantModel';
|
||||
|
||||
export type DocumentModel = (ContentViewModelBaseDocumentValueDocumentVariantModel & {
|
||||
urls?: Array<ContentUrlInfoModel>;
|
||||
templateKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel } from './ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel';
|
||||
import type { ContentUrlInfoModel } from './ContentUrlInfoModel';
|
||||
|
||||
export type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
|
||||
urls?: Array<ContentUrlInfoModel>;
|
||||
templateKey?: string | null;
|
||||
});
|
||||
@@ -1,13 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTreeItemModel } from './ContentTreeItemModel';
|
||||
|
||||
export type DocumentTreeItemModel = (ContentTreeItemModel & {
|
||||
$type: string;
|
||||
isProtected?: boolean;
|
||||
isPublished?: boolean;
|
||||
isEdited?: boolean;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTreeItemResponseModel } from './ContentTreeItemResponseModel';
|
||||
|
||||
export type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isProtected?: boolean;
|
||||
isPublished?: boolean;
|
||||
isEdited?: boolean;
|
||||
});
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel } from './ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel';
|
||||
|
||||
export type DocumentTypeModel = (ContentTypeViewModelBaseDocumentTypePropertyTypeDocumentTypePropertyTypeContainerModel & {
|
||||
allowedTemplateKeys?: Array<string>;
|
||||
defaultTemplateKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { PropertyTypeContainerViewModelBaseModel } from './PropertyTypeContainerViewModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeContainerModel = PropertyTypeContainerViewModelBaseModel;
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { PropertyTypeContainerResponseModelBaseModel } from './PropertyTypeContainerResponseModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponseModelBaseModel;
|
||||
@@ -1,8 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { PropertyTypeViewModelBaseModel } from './PropertyTypeViewModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeModel = PropertyTypeViewModelBaseModel;
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { PropertyTypeResponseModelBaseModel } from './PropertyTypeResponseModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentTypeCleanupModel } from './ContentTypeCleanupModel';
|
||||
import type { ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel } from './ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel';
|
||||
|
||||
export type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
|
||||
allowedTemplateKeys?: Array<string>;
|
||||
defaultTemplateKey?: string | null;
|
||||
cleanup?: ContentTypeCleanupModel;
|
||||
});
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { FolderTreeItemModel } from './FolderTreeItemModel';
|
||||
|
||||
export type DocumentTypeTreeItemModel = (FolderTreeItemModel & {
|
||||
$type: string;
|
||||
isElement?: boolean;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { FolderTreeItemResponseModel } from './FolderTreeItemResponseModel';
|
||||
|
||||
export type DocumentTypeTreeItemResponseModel = (FolderTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isElement?: boolean;
|
||||
});
|
||||
@@ -2,7 +2,8 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ValueViewModelBaseModel } from './ValueViewModelBaseModel';
|
||||
|
||||
export type DocumentValueModel = ValueViewModelBaseModel;
|
||||
import type { ValueModelBaseModel } from './ValueModelBaseModel';
|
||||
|
||||
export type DocumentValueModel = (ValueModelBaseModel & {
|
||||
$type: string;
|
||||
});
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentStateModel } from './ContentStateModel';
|
||||
import type { VariantViewModelBaseModel } from './VariantViewModelBaseModel';
|
||||
|
||||
export type DocumentVariantModel = (VariantViewModelBaseModel & {
|
||||
state?: ContentStateModel;
|
||||
publishDate?: string | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { VariantModelBaseModel } from './VariantModelBaseModel';
|
||||
|
||||
export type DocumentVariantRequestModel = (VariantModelBaseModel & {
|
||||
$type: string;
|
||||
});
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ContentStateModel } from './ContentStateModel';
|
||||
import type { VariantResponseModelBaseModel } from './VariantResponseModelBaseModel';
|
||||
|
||||
export type DocumentVariantResponseModel = (VariantResponseModelBaseModel & {
|
||||
$type: string;
|
||||
state?: ContentStateModel;
|
||||
publishDate?: string | null;
|
||||
});
|
||||
@@ -0,0 +1,8 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DomainPresentationModel = {
|
||||
domainName?: string;
|
||||
isoCode?: string;
|
||||
};
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DomainPresentationModel } from './DomainPresentationModel';
|
||||
|
||||
export type DomainsPresentationModelBaseModel = {
|
||||
defaultIsoCode?: string | null;
|
||||
domains?: Array<DomainPresentationModel>;
|
||||
};
|
||||
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DomainsPresentationModelBaseModel } from './DomainsPresentationModelBaseModel';
|
||||
|
||||
export type DomainsResponseModel = DomainsPresentationModelBaseModel;
|
||||
@@ -1,13 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { TreeItemModel } from './TreeItemModel';
|
||||
|
||||
export type EntityTreeItemModel = (TreeItemModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
isContainer?: boolean;
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { TreeItemPresentationModel } from './TreeItemPresentationModel';
|
||||
|
||||
export type EntityTreeItemResponseModel = (TreeItemPresentationModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
isContainer?: boolean;
|
||||
parentKey?: string | null;
|
||||
});
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type FieldModel = {
|
||||
export type FieldPresentationModel = {
|
||||
name?: string;
|
||||
values?: Array<string>;
|
||||
};
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { TreeItemModel } from './TreeItemModel';
|
||||
|
||||
export type FileSystemTreeItemModel = (TreeItemModel & {
|
||||
path?: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { TreeItemPresentationModel } from './TreeItemPresentationModel';
|
||||
|
||||
export type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
||||
path?: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
@@ -5,4 +5,3 @@
|
||||
export type FolderModelBaseModel = {
|
||||
name?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
|
||||
import type { FolderModelBaseModel } from './FolderModelBaseModel';
|
||||
|
||||
export type FolderModel = (FolderModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
parentKey?: string | null;
|
||||
export type FolderReponseModel = (FolderModelBaseModel & {
|
||||
$type: string;
|
||||
key?: string;
|
||||
parentKey?: string | null;
|
||||
});
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemModel } from './EntityTreeItemModel';
|
||||
|
||||
export type FolderTreeItemModel = (EntityTreeItemModel & {
|
||||
$type: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type FolderTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
@@ -2,7 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type HealthCheckActionModel = {
|
||||
export type HealthCheckActionRequestModel = {
|
||||
healthCheckKey?: string;
|
||||
alias?: string | null;
|
||||
name?: string | null;
|
||||
@@ -12,4 +12,3 @@ export type HealthCheckActionModel = {
|
||||
providedValueValidation?: string | null;
|
||||
providedValueValidationRegex?: string | null;
|
||||
};
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckGroupModelBaseModel } from './HealthCheckGroupModelBaseModel';
|
||||
import type { HealthCheckModel } from './HealthCheckModel';
|
||||
|
||||
export type HealthCheckGroupModel = (HealthCheckGroupModelBaseModel & {
|
||||
checks?: Array<HealthCheckModel>;
|
||||
});
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type HealthCheckGroupModelBaseModel = {
|
||||
export type HealthCheckGroupPresentationBaseModel = {
|
||||
name?: string;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPresentationBaseModel';
|
||||
import type { HealthCheckModel } from './HealthCheckModel';
|
||||
|
||||
export type HealthCheckGroupPresentationModel = (HealthCheckGroupPresentationBaseModel & {
|
||||
checks?: Array<HealthCheckModel>;
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPresentationBaseModel';
|
||||
|
||||
export type HealthCheckGroupResponseModel = HealthCheckGroupPresentationBaseModel;
|
||||
@@ -1,10 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckWithResultModel } from './HealthCheckWithResultModel';
|
||||
|
||||
export type HealthCheckGroupWithResultModel = {
|
||||
checks?: Array<HealthCheckWithResultModel>;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckWithResultPresentationModel } from './HealthCheckWithResultPresentationModel';
|
||||
|
||||
export type HealthCheckGroupWithResultResponseModel = {
|
||||
checks?: Array<HealthCheckWithResultPresentationModel>;
|
||||
};
|
||||
@@ -5,7 +5,6 @@
|
||||
import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
|
||||
|
||||
export type HealthCheckModel = (HealthCheckModelBaseModel & {
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,4 +5,3 @@
|
||||
export type HealthCheckModelBaseModel = {
|
||||
key?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -2,13 +2,12 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckActionModel } from './HealthCheckActionModel';
|
||||
import type { HealthCheckActionRequestModel } from './HealthCheckActionRequestModel';
|
||||
import type { StatusResultTypeModel } from './StatusResultTypeModel';
|
||||
|
||||
export type HealthCheckResultModel = {
|
||||
export type HealthCheckResultResponseModel = {
|
||||
message?: string;
|
||||
resultType?: StatusResultTypeModel;
|
||||
actions?: Array<HealthCheckActionModel> | null;
|
||||
actions?: Array<HealthCheckActionRequestModel> | null;
|
||||
readMoreLink?: string | null;
|
||||
};
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
|
||||
import type { HealthCheckResultModel } from './HealthCheckResultModel';
|
||||
|
||||
export type HealthCheckWithResultModel = (HealthCheckModelBaseModel & {
|
||||
results?: Array<HealthCheckResultModel> | null;
|
||||
});
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
|
||||
import type { HealthCheckResultResponseModel } from './HealthCheckResultResponseModel';
|
||||
|
||||
export type HealthCheckWithResultPresentationModel = (HealthCheckModelBaseModel & {
|
||||
results?: Array<HealthCheckResultResponseModel> | null;
|
||||
});
|
||||
@@ -2,10 +2,9 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type HelpPageModel = {
|
||||
export type HelpPageResponseModel = {
|
||||
name?: string | null;
|
||||
description?: string | null;
|
||||
url?: string | null;
|
||||
type?: string | null;
|
||||
};
|
||||
|
||||
@@ -2,9 +2,8 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DictionaryItemsImportModel = {
|
||||
export type ImportDictionaryItemsPresentationModel = {
|
||||
key?: string;
|
||||
name?: string | null;
|
||||
parentKey?: string | null;
|
||||
};
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type DictionaryImportModel = {
|
||||
export type ImportDictionaryRequestModel = {
|
||||
fileName?: string;
|
||||
parentKey?: string | null;
|
||||
};
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
import type { HealthStatusModel } from './HealthStatusModel';
|
||||
|
||||
export type IndexModel = {
|
||||
export type IndexResponseModel = {
|
||||
name: string;
|
||||
healthStatus?: HealthStatusModel;
|
||||
canRebuild: boolean;
|
||||
@@ -13,4 +13,3 @@ export type IndexModel = {
|
||||
fieldCount: number;
|
||||
providerProperties?: Record<string, any> | null;
|
||||
};
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DatabaseInstallModel } from './DatabaseInstallModel';
|
||||
import type { TelemetryLevelModel } from './TelemetryLevelModel';
|
||||
import type { UserInstallModel } from './UserInstallModel';
|
||||
|
||||
export type InstallModel = {
|
||||
user: UserInstallModel;
|
||||
database: DatabaseInstallModel;
|
||||
telemetryLevel?: TelemetryLevelModel;
|
||||
};
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DatabaseSettingsModel } from './DatabaseSettingsModel';
|
||||
import type { UserSettingsModel } from './UserSettingsModel';
|
||||
|
||||
export type InstallSettingsModel = {
|
||||
user?: UserSettingsModel;
|
||||
databases?: Array<DatabaseSettingsModel>;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DatabaseSettingsPresentationModel } from './DatabaseSettingsPresentationModel';
|
||||
import type { UserSettingsModel } from './UserSettingsModel';
|
||||
|
||||
export type InstallSettingsResponseModel = {
|
||||
user?: UserSettingsModel;
|
||||
databases?: Array<DatabaseSettingsPresentationModel>;
|
||||
};
|
||||
@@ -0,0 +1,13 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { DatabaseInstallResponseModel } from './DatabaseInstallResponseModel';
|
||||
import type { TelemetryLevelModel } from './TelemetryLevelModel';
|
||||
import type { UserInstallResponseModel } from './UserInstallResponseModel';
|
||||
|
||||
export type InstallVResponseModel = {
|
||||
user: UserInstallResponseModel;
|
||||
database: DatabaseInstallResponseModel;
|
||||
telemetryLevel?: TelemetryLevelModel;
|
||||
};
|
||||
@@ -8,4 +8,3 @@ export type LanguageModelBaseModel = {
|
||||
isMandatory?: boolean;
|
||||
fallbackIsoCode?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
|
||||
|
||||
export type LanguageModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
export type LanguageResponseModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
});
|
||||
|
||||
@@ -2,11 +2,10 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type LogLevelCountsModel = {
|
||||
export type LogLevelCountsReponseModel = {
|
||||
information?: number;
|
||||
debug?: number;
|
||||
warning?: number;
|
||||
error?: number;
|
||||
fatal?: number;
|
||||
};
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type LogMessagePropertyModel = {
|
||||
export type LogMessagePropertyPresentationModel = {
|
||||
name?: string;
|
||||
value?: string | null;
|
||||
};
|
||||
|
||||
@@ -3,14 +3,13 @@
|
||||
/* eslint-disable */
|
||||
|
||||
import type { LogLevelModel } from './LogLevelModel';
|
||||
import type { LogMessagePropertyModel } from './LogMessagePropertyModel';
|
||||
import type { LogMessagePropertyPresentationModel } from './LogMessagePropertyPresentationModel';
|
||||
|
||||
export type LogMessageModel = {
|
||||
export type LogMessageResponseModel = {
|
||||
timestamp?: string;
|
||||
level?: LogLevelModel;
|
||||
messageTemplate?: string | null;
|
||||
renderedMessage?: string | null;
|
||||
properties?: Array<LogMessagePropertyModel>;
|
||||
properties?: Array<LogMessagePropertyPresentationModel>;
|
||||
exception?: string | null;
|
||||
};
|
||||
|
||||
@@ -2,8 +2,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
export type LogTemplateModel = {
|
||||
export type LogTemplateResponseModel = {
|
||||
messageTemplate?: string | null;
|
||||
count?: number;
|
||||
};
|
||||
|
||||
@@ -4,8 +4,7 @@
|
||||
|
||||
import type { LogLevelModel } from './LogLevelModel';
|
||||
|
||||
export type LoggerModel = {
|
||||
export type LoggerResponseModel = {
|
||||
name?: string;
|
||||
level?: LogLevelModel;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { PropertyTypeContainerResponseModelBaseModel } from './PropertyTypeContainerResponseModelBaseModel';
|
||||
|
||||
export type MediaTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponseModelBaseModel;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user