Merge branch 'main' into feature/partial-view-editor
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
{
|
||||
"cssVariables.lookupFiles": ["node_modules/@umbraco-ui/uui-css/dist/custom-properties.css"],
|
||||
"cSpell.words": [
|
||||
"backoffice",
|
||||
"Backoffice",
|
||||
"combobox",
|
||||
"Elementable",
|
||||
"templating",
|
||||
|
||||
@@ -40,6 +40,7 @@ export type { CreateScriptRequestModel } from './models/CreateScriptRequestModel
|
||||
export type { CreateStylesheetRequestModel } from './models/CreateStylesheetRequestModel';
|
||||
export type { CreateTemplateRequestModel } from './models/CreateTemplateRequestModel';
|
||||
export type { CreateTextFileViewModelBaseModel } from './models/CreateTextFileViewModelBaseModel';
|
||||
export type { CreateUserGroupRequestModel } from './models/CreateUserGroupRequestModel';
|
||||
export type { CreateUserRequestModel } from './models/CreateUserRequestModel';
|
||||
export type { CreateUserResponseModel } from './models/CreateUserResponseModel';
|
||||
export type { CultureReponseModel } from './models/CultureReponseModel';
|
||||
@@ -173,7 +174,7 @@ export type { PagedSnippetItemResponseModel } from './models/PagedSnippetItemRes
|
||||
export type { PagedStylesheetOverviewResponseModel } from './models/PagedStylesheetOverviewResponseModel';
|
||||
export type { PagedTagResponseModel } from './models/PagedTagResponseModel';
|
||||
export type { PagedTelemetryResponseModel } from './models/PagedTelemetryResponseModel';
|
||||
export type { PagedUserGroupPresentationModel } from './models/PagedUserGroupPresentationModel';
|
||||
export type { PagedUserGroupResponseModel } from './models/PagedUserGroupResponseModel';
|
||||
export type { PagedUserResponseModel } from './models/PagedUserResponseModel';
|
||||
export type { PartialViewItemResponseModel } from './models/PartialViewItemResponseModel';
|
||||
export type { PartialViewResponseModel } from './models/PartialViewResponseModel';
|
||||
@@ -203,7 +204,6 @@ export { RuntimeLevelModel } from './models/RuntimeLevelModel';
|
||||
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 { ScriptItemResponseModel } from './models/ScriptItemResponseModel';
|
||||
export type { ScriptResponseModel } from './models/ScriptResponseModel';
|
||||
export type { ScriptUpdateModel } from './models/ScriptUpdateModel';
|
||||
@@ -266,7 +266,7 @@ export type { UpdateUserRequestModel } from './models/UpdateUserRequestModel';
|
||||
export type { UpgradeSettingsResponseModel } from './models/UpgradeSettingsResponseModel';
|
||||
export type { UserGroupBaseModel } from './models/UserGroupBaseModel';
|
||||
export type { UserGroupItemResponseModel } from './models/UserGroupItemResponseModel';
|
||||
export type { UserGroupPresentationModel } from './models/UserGroupPresentationModel';
|
||||
export type { UserGroupResponseModel } from './models/UserGroupResponseModel';
|
||||
export type { UserInstallResponseModel } from './models/UserInstallResponseModel';
|
||||
export type { UserItemResponseModel } from './models/UserItemResponseModel';
|
||||
export { UserOrderModel } from './models/UserOrderModel';
|
||||
|
||||
@@ -13,3 +13,4 @@ export type AuditLogBaseModel = {
|
||||
comment?: string | null;
|
||||
parameters?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { AuditLogBaseModel } from './AuditLogBaseModel';
|
||||
|
||||
export type AuditLogResponseModel = AuditLogBaseModel;
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { AuditLogBaseModel } from './AuditLogBaseModel';
|
||||
|
||||
export type AuditLogWithUsernameResponseModel = (AuditLogBaseModel & {
|
||||
userName?: string | null;
|
||||
userAvatars?: Array<string> | null;
|
||||
userName?: string | null;
|
||||
userAvatars?: Array<string> | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type ChangePasswordUserRequestModel = {
|
||||
newPassword?: string;
|
||||
oldPassword?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type ConsentLevelPresentationModel = {
|
||||
level?: TelemetryLevelModel;
|
||||
description?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -11,3 +11,4 @@ export type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseMod
|
||||
id?: string;
|
||||
contentTypeId?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type ContentTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
noAccess?: boolean;
|
||||
isTrashed?: boolean;
|
||||
$type: string;
|
||||
noAccess?: boolean;
|
||||
isTrashed?: boolean;
|
||||
});
|
||||
|
||||
|
||||
@@ -7,3 +7,4 @@ export type ContentTypeCleanupModel = {
|
||||
keepAllVersionsNewerThanDays?: number | null;
|
||||
keepLatestVersionPerDayForDays?: number | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type ContentTypeCompositionModel = {
|
||||
id?: string;
|
||||
compositionType?: ContentTypeCompositionTypeModel;
|
||||
};
|
||||
|
||||
|
||||
@@ -22,3 +22,4 @@ export type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDoc
|
||||
allowedContentTypes?: Array<ContentTypeSortModel>;
|
||||
compositions?: Array<ContentTypeCompositionModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -22,3 +22,4 @@ export type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaT
|
||||
allowedContentTypes?: Array<ContentTypeSortModel>;
|
||||
compositions?: Array<ContentTypeCompositionModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type ContentTypeSortModel = {
|
||||
id?: string;
|
||||
sortOrder?: number;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type ContentUrlInfoModel = {
|
||||
culture?: string | null;
|
||||
url?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type CopyDataTypeRequestModel = {
|
||||
targetId?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -7,3 +7,4 @@ export type CopyDocumentRequestModel = {
|
||||
relateToOriginal?: boolean;
|
||||
includeDescendants?: boolean;
|
||||
};
|
||||
|
||||
|
||||
@@ -10,3 +10,4 @@ export type CreateContentRequestModelBaseDocumentValueModelDocumentVariantReques
|
||||
variants?: Array<DocumentVariantRequestModel>;
|
||||
parentId?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -10,3 +10,4 @@ export type CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel
|
||||
variants?: Array<MediaVariantRequestModel>;
|
||||
parentId?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { DataTypeModelBaseModel } from './DataTypeModelBaseModel';
|
||||
|
||||
export type CreateDataTypeRequestModel = (DataTypeModelBaseModel & {
|
||||
id?: string | null;
|
||||
parentId?: string | null;
|
||||
id?: string | null;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
|
||||
|
||||
export type CreateDictionaryItemRequestModel = (DictionaryItemModelBaseModel & {
|
||||
parentId?: string | null;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel } from './CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel';
|
||||
|
||||
export type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
|
||||
contentTypeId?: string;
|
||||
templateId?: string | null;
|
||||
contentTypeId?: string;
|
||||
templateId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { FolderModelBaseModel } from './FolderModelBaseModel';
|
||||
|
||||
export type CreateFolderRequestModel = (FolderModelBaseModel & {
|
||||
id?: string | null;
|
||||
parentId?: string | null;
|
||||
id?: string | null;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
|
||||
|
||||
export type CreateLanguageRequestModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
isoCode?: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel } from './CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel';
|
||||
|
||||
export type CreateMediaRequestModel = (CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel & {
|
||||
contentTypeId?: string;
|
||||
contentTypeId?: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { PackageModelBaseModel } from './PackageModelBaseModel';
|
||||
|
||||
export type CreatePackageRequestModel = PackageModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
|
||||
|
||||
export type CreatePartialViewRequestModel = CreateTextFileViewModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { PathFolderModelBaseModel } from './PathFolderModelBaseModel';
|
||||
|
||||
export type CreatePathFolderRequestModel = (PathFolderModelBaseModel & {
|
||||
parentPath?: string | null;
|
||||
parentPath?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { RelationTypeBaseModel } from './RelationTypeBaseModel';
|
||||
|
||||
export type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
|
||||
id?: string | null;
|
||||
id?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
|
||||
|
||||
export type CreateScriptRequestModel = CreateTextFileViewModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
|
||||
|
||||
export type CreateStylesheetRequestModel = CreateTextFileViewModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { TemplateModelBaseModel } from './TemplateModelBaseModel';
|
||||
|
||||
export type CreateTemplateRequestModel = TemplateModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { TextFileViewModelBaseModel } from './TextFileViewModelBaseModel';
|
||||
|
||||
export type CreateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
|
||||
parentPath?: string | null;
|
||||
parentPath?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -4,4 +4,5 @@
|
||||
|
||||
import type { UserGroupBaseModel } from './UserGroupBaseModel';
|
||||
|
||||
export type SaveUserGroupRequestModel = UserGroupBaseModel;
|
||||
export type CreateUserGroupRequestModel = UserGroupBaseModel;
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { UserPresentationBaseModel } from './UserPresentationBaseModel';
|
||||
|
||||
export type CreateUserRequestModel = UserPresentationBaseModel;
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type CreateUserResponseModel = {
|
||||
userId?: string;
|
||||
initialPassword?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type CultureReponseModel = {
|
||||
name?: string;
|
||||
englishName?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
|
||||
|
||||
export type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
||||
icon?: string | null;
|
||||
icon?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -10,3 +10,4 @@ export type DataTypeModelBaseModel = {
|
||||
propertyEditorUiAlias?: string | null;
|
||||
values?: Array<DataTypePropertyPresentationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type DataTypePropertyPresentationModel = {
|
||||
alias?: string;
|
||||
value?: any;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type DataTypePropertyReferenceModel = {
|
||||
name?: string;
|
||||
alias?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -9,3 +9,4 @@ export type DataTypeReferenceResponseModel = {
|
||||
type?: string;
|
||||
properties?: Array<DataTypePropertyReferenceModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
import type { DataTypeModelBaseModel } from './DataTypeModelBaseModel';
|
||||
|
||||
export type DataTypeResponseModel = (DataTypeModelBaseModel & {
|
||||
$type: string;
|
||||
id?: string;
|
||||
parentId?: string | null;
|
||||
$type: string;
|
||||
id?: string;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -12,3 +12,4 @@ export type DatabaseInstallResponseModel = {
|
||||
useIntegratedAuthentication?: boolean;
|
||||
connectionString?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -15,3 +15,4 @@ export type DatabaseSettingsPresentationModel = {
|
||||
supportsIntegratedAuthentication?: boolean;
|
||||
requiresConnectionTest?: boolean;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
|
||||
|
||||
export type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type DictionaryItemModelBaseModel = {
|
||||
name?: string;
|
||||
translations?: Array<DictionaryItemTranslationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
|
||||
|
||||
export type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
|
||||
$type: string;
|
||||
id?: string;
|
||||
$type: string;
|
||||
id?: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type DictionaryItemTranslationModel = {
|
||||
isoCode?: string;
|
||||
translation?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type DictionaryOverviewResponseModel = {
|
||||
parentId?: string | null;
|
||||
translatedIsoCodes?: Array<string>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type DisableUserRequestModel = {
|
||||
userIds?: Array<string>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
|
||||
|
||||
export type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,8 +5,9 @@
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type DocumentBlueprintTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
documentTypeId?: string;
|
||||
documentTypeAlias?: string;
|
||||
documentTypeName?: string | null;
|
||||
$type: string;
|
||||
documentTypeId?: string;
|
||||
documentTypeAlias?: string;
|
||||
documentTypeName?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
|
||||
|
||||
export type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
|
||||
icon?: string | null;
|
||||
icon?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type DocumentNotificationResponseModel = {
|
||||
actionId?: string;
|
||||
subscribed?: boolean;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ import type { ContentResponseModelBaseDocumentValueModelDocumentVariantResponseM
|
||||
import type { ContentUrlInfoModel } from './ContentUrlInfoModel';
|
||||
|
||||
export type DocumentResponseModel = (ContentResponseModelBaseDocumentValueModelDocumentVariantResponseModel & {
|
||||
urls?: Array<ContentUrlInfoModel>;
|
||||
templateId?: string | null;
|
||||
urls?: Array<ContentUrlInfoModel>;
|
||||
templateId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,8 +5,9 @@
|
||||
import type { ContentTreeItemResponseModel } from './ContentTreeItemResponseModel';
|
||||
|
||||
export type DocumentTreeItemResponseModel = (ContentTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isProtected?: boolean;
|
||||
isPublished?: boolean;
|
||||
isEdited?: boolean;
|
||||
$type: string;
|
||||
isProtected?: boolean;
|
||||
isPublished?: boolean;
|
||||
isEdited?: boolean;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
|
||||
|
||||
export type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
|
||||
isElement?: boolean;
|
||||
icon?: string | null;
|
||||
isElement?: boolean;
|
||||
icon?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { PropertyTypeContainerResponseModelBaseModel } from './PropertyTypeContainerResponseModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponseModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { PropertyTypeResponseModelBaseModel } from './PropertyTypeResponseModelBaseModel';
|
||||
|
||||
export type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;
|
||||
|
||||
|
||||
@@ -6,7 +6,8 @@ import type { ContentTypeCleanupModel } from './ContentTypeCleanupModel';
|
||||
import type { ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel } from './ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel';
|
||||
|
||||
export type DocumentTypeResponseModel = (ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDocumentTypePropertyTypeContainerResponseModel & {
|
||||
allowedTemplateIds?: Array<string>;
|
||||
defaultTemplateId?: string | null;
|
||||
cleanup?: ContentTypeCleanupModel;
|
||||
allowedTemplateIds?: Array<string>;
|
||||
defaultTemplateId?: string | null;
|
||||
cleanup?: ContentTypeCleanupModel;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { FolderTreeItemResponseModel } from './FolderTreeItemResponseModel';
|
||||
|
||||
export type DocumentTypeTreeItemResponseModel = (FolderTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isElement?: boolean;
|
||||
$type: string;
|
||||
isElement?: boolean;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { ValueModelBaseModel } from './ValueModelBaseModel';
|
||||
|
||||
export type DocumentValueModel = (ValueModelBaseModel & {
|
||||
$type: string;
|
||||
$type: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { VariantModelBaseModel } from './VariantModelBaseModel';
|
||||
|
||||
export type DocumentVariantRequestModel = (VariantModelBaseModel & {
|
||||
$type: string;
|
||||
$type: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,7 +6,8 @@ import type { ContentStateModel } from './ContentStateModel';
|
||||
import type { VariantResponseModelBaseModel } from './VariantResponseModelBaseModel';
|
||||
|
||||
export type DocumentVariantResponseModel = (VariantResponseModelBaseModel & {
|
||||
$type: string;
|
||||
state?: ContentStateModel;
|
||||
publishDate?: string | null;
|
||||
$type: string;
|
||||
state?: ContentStateModel;
|
||||
publishDate?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type DomainPresentationModel = {
|
||||
domainName?: string;
|
||||
isoCode?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type DomainsPresentationModelBaseModel = {
|
||||
defaultIsoCode?: string | null;
|
||||
domains?: Array<DomainPresentationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { DomainsPresentationModelBaseModel } from './DomainsPresentationModelBaseModel';
|
||||
|
||||
export type DomainsResponseModel = DomainsPresentationModelBaseModel;
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type EnableUserRequestModel = {
|
||||
userIds?: Array<string>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,8 +5,9 @@
|
||||
import type { TreeItemPresentationModel } from './TreeItemPresentationModel';
|
||||
|
||||
export type EntityTreeItemResponseModel = (TreeItemPresentationModel & {
|
||||
$type: string;
|
||||
id?: string;
|
||||
isContainer?: boolean;
|
||||
parentId?: string | null;
|
||||
$type: string;
|
||||
id?: string;
|
||||
isContainer?: boolean;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type ExtractRichTextStylesheetRulesRequestModel = {
|
||||
content?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { RichTextStylesheetRulesResponseModel } from './RichTextStylesheetRulesResponseModel';
|
||||
|
||||
export type ExtractRichTextStylesheetRulesResponseModel = RichTextStylesheetRulesResponseModel;
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type FieldPresentationModel = {
|
||||
name?: string;
|
||||
values?: Array<string>;
|
||||
};
|
||||
|
||||
|
||||
@@ -7,3 +7,4 @@ export type FileItemResponseModelBaseModel = {
|
||||
path?: string;
|
||||
icon?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { TreeItemPresentationModel } from './TreeItemPresentationModel';
|
||||
|
||||
export type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
|
||||
path?: string;
|
||||
isFolder?: boolean;
|
||||
path?: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type FolderModelBaseModel = {
|
||||
name?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
import type { FolderModelBaseModel } from './FolderModelBaseModel';
|
||||
|
||||
export type FolderReponseModel = (FolderModelBaseModel & {
|
||||
$type: string;
|
||||
id?: string;
|
||||
parentId?: string | null;
|
||||
$type: string;
|
||||
id?: string;
|
||||
parentId?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
|
||||
|
||||
export type FolderTreeItemResponseModel = (EntityTreeItemResponseModel & {
|
||||
$type: string;
|
||||
isFolder?: boolean;
|
||||
$type: string;
|
||||
isFolder?: boolean;
|
||||
});
|
||||
|
||||
|
||||
@@ -12,3 +12,4 @@ export type HealthCheckActionRequestModel = {
|
||||
providedValueValidation?: string | null;
|
||||
providedValueValidationRegex?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type HealthCheckGroupPresentationBaseModel = {
|
||||
name?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,5 +6,6 @@ import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPr
|
||||
import type { HealthCheckModel } from './HealthCheckModel';
|
||||
|
||||
export type HealthCheckGroupPresentationModel = (HealthCheckGroupPresentationBaseModel & {
|
||||
checks?: Array<HealthCheckModel>;
|
||||
checks?: Array<HealthCheckModel>;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPresentationBaseModel';
|
||||
|
||||
export type HealthCheckGroupResponseModel = HealthCheckGroupPresentationBaseModel;
|
||||
|
||||
|
||||
@@ -7,3 +7,4 @@ import type { HealthCheckWithResultPresentationModel } from './HealthCheckWithRe
|
||||
export type HealthCheckGroupWithResultResponseModel = {
|
||||
checks?: Array<HealthCheckWithResultPresentationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
|
||||
|
||||
export type HealthCheckModel = (HealthCheckModelBaseModel & {
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type HealthCheckModelBaseModel = {
|
||||
id?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -11,3 +11,4 @@ export type HealthCheckResultResponseModel = {
|
||||
actions?: Array<HealthCheckActionRequestModel> | null;
|
||||
readMoreLink?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,5 +6,6 @@ import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
|
||||
import type { HealthCheckResultResponseModel } from './HealthCheckResultResponseModel';
|
||||
|
||||
export type HealthCheckWithResultPresentationModel = (HealthCheckModelBaseModel & {
|
||||
results?: Array<HealthCheckResultResponseModel> | null;
|
||||
results?: Array<HealthCheckResultResponseModel> | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type HelpPageResponseModel = {
|
||||
url?: string | null;
|
||||
type?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type ImportDictionaryRequestModel = {
|
||||
temporaryFileId?: string;
|
||||
parentId?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -13,3 +13,4 @@ export type IndexResponseModel = {
|
||||
fieldCount: number;
|
||||
providerProperties?: Record<string, any> | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -9,3 +9,4 @@ export type InstallSettingsResponseModel = {
|
||||
user?: UserSettingsModel;
|
||||
databases?: Array<DatabaseSettingsPresentationModel>;
|
||||
};
|
||||
|
||||
|
||||
@@ -11,3 +11,4 @@ export type InstallVResponseModel = {
|
||||
database: DatabaseInstallResponseModel;
|
||||
telemetryLevel?: TelemetryLevelModel;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type InterpolateRichTextStylesheetRequestModel = {
|
||||
content?: string | null;
|
||||
rules?: Array<RichTextRuleModel> | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@
|
||||
export type InterpolateRichTextStylesheetResponseModel = {
|
||||
content?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { CreateUserRequestModel } from './CreateUserRequestModel';
|
||||
|
||||
export type InviteUserRequestModel = (CreateUserRequestModel & {
|
||||
message?: string | null;
|
||||
message?: string | null;
|
||||
});
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type ItemResponseModelBaseModel = {
|
||||
name?: string;
|
||||
id?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ export type LanguageItemResponseModel = {
|
||||
name?: string;
|
||||
isoCode?: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ export type LanguageModelBaseModel = {
|
||||
isMandatory?: boolean;
|
||||
fallbackIsoCode?: string | null;
|
||||
};
|
||||
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
|
||||
|
||||
export type LanguageResponseModel = (LanguageModelBaseModel & {
|
||||
isoCode?: string;
|
||||
isoCode?: string;
|
||||
});
|
||||
|
||||
|
||||
@@ -9,3 +9,4 @@ export type LogLevelCountsReponseModel = {
|
||||
error?: number;
|
||||
fatal?: number;
|
||||
};
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user