Merge branch 'main' into feature/partial-view-editor

This commit is contained in:
Julia Gru
2023-05-09 11:17:13 +02:00
368 changed files with 1818 additions and 1411 deletions

View File

@@ -1,6 +1,8 @@
{
"cssVariables.lookupFiles": ["node_modules/@umbraco-ui/uui-css/dist/custom-properties.css"],
"cSpell.words": [
"backoffice",
"Backoffice",
"combobox",
"Elementable",
"templating",

View File

@@ -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';

View File

@@ -13,3 +13,4 @@ export type AuditLogBaseModel = {
comment?: string | null;
parameters?: string | null;
};

View File

@@ -5,3 +5,4 @@
import type { AuditLogBaseModel } from './AuditLogBaseModel';
export type AuditLogResponseModel = AuditLogBaseModel;

View File

@@ -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;
});

View File

@@ -6,3 +6,4 @@ export type ChangePasswordUserRequestModel = {
newPassword?: string;
oldPassword?: string | null;
};

View File

@@ -8,3 +8,4 @@ export type ConsentLevelPresentationModel = {
level?: TelemetryLevelModel;
description?: string;
};

View File

@@ -11,3 +11,4 @@ export type ContentResponseModelBaseDocumentValueModelDocumentVariantResponseMod
id?: string;
contentTypeId?: string;
};

View File

@@ -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;
});

View File

@@ -7,3 +7,4 @@ export type ContentTypeCleanupModel = {
keepAllVersionsNewerThanDays?: number | null;
keepLatestVersionPerDayForDays?: number | null;
};

View File

@@ -8,3 +8,4 @@ export type ContentTypeCompositionModel = {
id?: string;
compositionType?: ContentTypeCompositionTypeModel;
};

View File

@@ -22,3 +22,4 @@ export type ContentTypeResponseModelBaseDocumentTypePropertyTypeResponseModelDoc
allowedContentTypes?: Array<ContentTypeSortModel>;
compositions?: Array<ContentTypeCompositionModel>;
};

View File

@@ -22,3 +22,4 @@ export type ContentTypeResponseModelBaseMediaTypePropertyTypeResponseModelMediaT
allowedContentTypes?: Array<ContentTypeSortModel>;
compositions?: Array<ContentTypeCompositionModel>;
};

View File

@@ -6,3 +6,4 @@ export type ContentTypeSortModel = {
id?: string;
sortOrder?: number;
};

View File

@@ -6,3 +6,4 @@ export type ContentUrlInfoModel = {
culture?: string | null;
url?: string;
};

View File

@@ -5,3 +5,4 @@
export type CopyDataTypeRequestModel = {
targetId?: string | null;
};

View File

@@ -7,3 +7,4 @@ export type CopyDocumentRequestModel = {
relateToOriginal?: boolean;
includeDescendants?: boolean;
};

View File

@@ -10,3 +10,4 @@ export type CreateContentRequestModelBaseDocumentValueModelDocumentVariantReques
variants?: Array<DocumentVariantRequestModel>;
parentId?: string | null;
};

View File

@@ -10,3 +10,4 @@ export type CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel
variants?: Array<MediaVariantRequestModel>;
parentId?: string | null;
};

View File

@@ -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;
});

View File

@@ -5,5 +5,6 @@
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
export type CreateDictionaryItemRequestModel = (DictionaryItemModelBaseModel & {
parentId?: string | null;
parentId?: string | null;
});

View File

@@ -5,6 +5,7 @@
import type { CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel } from './CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel';
export type CreateDocumentRequestModel = (CreateContentRequestModelBaseDocumentValueModelDocumentVariantRequestModel & {
contentTypeId?: string;
templateId?: string | null;
contentTypeId?: string;
templateId?: string | null;
});

View File

@@ -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;
});

View File

@@ -5,5 +5,6 @@
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
export type CreateLanguageRequestModel = (LanguageModelBaseModel & {
isoCode?: string;
isoCode?: string;
});

View File

@@ -5,5 +5,6 @@
import type { CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel } from './CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel';
export type CreateMediaRequestModel = (CreateContentRequestModelBaseMediaValueModelMediaVariantRequestModel & {
contentTypeId?: string;
contentTypeId?: string;
});

View File

@@ -5,3 +5,4 @@
import type { PackageModelBaseModel } from './PackageModelBaseModel';
export type CreatePackageRequestModel = PackageModelBaseModel;

View File

@@ -5,3 +5,4 @@
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
export type CreatePartialViewRequestModel = CreateTextFileViewModelBaseModel;

View File

@@ -5,5 +5,6 @@
import type { PathFolderModelBaseModel } from './PathFolderModelBaseModel';
export type CreatePathFolderRequestModel = (PathFolderModelBaseModel & {
parentPath?: string | null;
parentPath?: string | null;
});

View File

@@ -5,5 +5,6 @@
import type { RelationTypeBaseModel } from './RelationTypeBaseModel';
export type CreateRelationTypeRequestModel = (RelationTypeBaseModel & {
id?: string | null;
id?: string | null;
});

View File

@@ -5,3 +5,4 @@
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
export type CreateScriptRequestModel = CreateTextFileViewModelBaseModel;

View File

@@ -5,3 +5,4 @@
import type { CreateTextFileViewModelBaseModel } from './CreateTextFileViewModelBaseModel';
export type CreateStylesheetRequestModel = CreateTextFileViewModelBaseModel;

View File

@@ -5,3 +5,4 @@
import type { TemplateModelBaseModel } from './TemplateModelBaseModel';
export type CreateTemplateRequestModel = TemplateModelBaseModel;

View File

@@ -5,5 +5,6 @@
import type { TextFileViewModelBaseModel } from './TextFileViewModelBaseModel';
export type CreateTextFileViewModelBaseModel = (TextFileViewModelBaseModel & {
parentPath?: string | null;
parentPath?: string | null;
});

View File

@@ -4,4 +4,5 @@
import type { UserGroupBaseModel } from './UserGroupBaseModel';
export type SaveUserGroupRequestModel = UserGroupBaseModel;
export type CreateUserGroupRequestModel = UserGroupBaseModel;

View File

@@ -5,3 +5,4 @@
import type { UserPresentationBaseModel } from './UserPresentationBaseModel';
export type CreateUserRequestModel = UserPresentationBaseModel;

View File

@@ -6,3 +6,4 @@ export type CreateUserResponseModel = {
userId?: string;
initialPassword?: string | null;
};

View File

@@ -6,3 +6,4 @@ export type CultureReponseModel = {
name?: string;
englishName?: string;
};

View File

@@ -5,5 +5,6 @@
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
export type DataTypeItemResponseModel = (ItemResponseModelBaseModel & {
icon?: string | null;
icon?: string | null;
});

View File

@@ -10,3 +10,4 @@ export type DataTypeModelBaseModel = {
propertyEditorUiAlias?: string | null;
values?: Array<DataTypePropertyPresentationModel>;
};

View File

@@ -6,3 +6,4 @@ export type DataTypePropertyPresentationModel = {
alias?: string;
value?: any;
};

View File

@@ -6,3 +6,4 @@ export type DataTypePropertyReferenceModel = {
name?: string;
alias?: string;
};

View File

@@ -9,3 +9,4 @@ export type DataTypeReferenceResponseModel = {
type?: string;
properties?: Array<DataTypePropertyReferenceModel>;
};

View File

@@ -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;
});

View File

@@ -12,3 +12,4 @@ export type DatabaseInstallResponseModel = {
useIntegratedAuthentication?: boolean;
connectionString?: string | null;
};

View File

@@ -15,3 +15,4 @@ export type DatabaseSettingsPresentationModel = {
supportsIntegratedAuthentication?: boolean;
requiresConnectionTest?: boolean;
};

View File

@@ -5,3 +5,4 @@
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
export type DictionaryItemItemResponseModel = ItemResponseModelBaseModel;

View File

@@ -8,3 +8,4 @@ export type DictionaryItemModelBaseModel = {
name?: string;
translations?: Array<DictionaryItemTranslationModel>;
};

View File

@@ -5,6 +5,7 @@
import type { DictionaryItemModelBaseModel } from './DictionaryItemModelBaseModel';
export type DictionaryItemResponseModel = (DictionaryItemModelBaseModel & {
$type: string;
id?: string;
$type: string;
id?: string;
});

View File

@@ -6,3 +6,4 @@ export type DictionaryItemTranslationModel = {
isoCode?: string;
translation?: string;
};

View File

@@ -8,3 +8,4 @@ export type DictionaryOverviewResponseModel = {
parentId?: string | null;
translatedIsoCodes?: Array<string>;
};

View File

@@ -5,3 +5,4 @@
export type DisableUserRequestModel = {
userIds?: Array<string>;
};

View File

@@ -5,3 +5,4 @@
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
export type DocumentBlueprintResponseModel = ItemResponseModelBaseModel;

View File

@@ -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;
});

View File

@@ -5,5 +5,6 @@
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
export type DocumentItemResponseModel = (ItemResponseModelBaseModel & {
icon?: string | null;
icon?: string | null;
});

View File

@@ -6,3 +6,4 @@ export type DocumentNotificationResponseModel = {
actionId?: string;
subscribed?: boolean;
};

View File

@@ -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;
});

View File

@@ -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;
});

View File

@@ -5,6 +5,7 @@
import type { ItemResponseModelBaseModel } from './ItemResponseModelBaseModel';
export type DocumentTypeItemResponseModel = (ItemResponseModelBaseModel & {
isElement?: boolean;
icon?: string | null;
isElement?: boolean;
icon?: string | null;
});

View File

@@ -5,3 +5,4 @@
import type { PropertyTypeContainerResponseModelBaseModel } from './PropertyTypeContainerResponseModelBaseModel';
export type DocumentTypePropertyTypeContainerResponseModel = PropertyTypeContainerResponseModelBaseModel;

View File

@@ -5,3 +5,4 @@
import type { PropertyTypeResponseModelBaseModel } from './PropertyTypeResponseModelBaseModel';
export type DocumentTypePropertyTypeResponseModel = PropertyTypeResponseModelBaseModel;

View File

@@ -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;
});

View File

@@ -5,6 +5,7 @@
import type { FolderTreeItemResponseModel } from './FolderTreeItemResponseModel';
export type DocumentTypeTreeItemResponseModel = (FolderTreeItemResponseModel & {
$type: string;
isElement?: boolean;
$type: string;
isElement?: boolean;
});

View File

@@ -5,5 +5,6 @@
import type { ValueModelBaseModel } from './ValueModelBaseModel';
export type DocumentValueModel = (ValueModelBaseModel & {
$type: string;
$type: string;
});

View File

@@ -5,5 +5,6 @@
import type { VariantModelBaseModel } from './VariantModelBaseModel';
export type DocumentVariantRequestModel = (VariantModelBaseModel & {
$type: string;
$type: string;
});

View File

@@ -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;
});

View File

@@ -6,3 +6,4 @@ export type DomainPresentationModel = {
domainName?: string;
isoCode?: string;
};

View File

@@ -8,3 +8,4 @@ export type DomainsPresentationModelBaseModel = {
defaultIsoCode?: string | null;
domains?: Array<DomainPresentationModel>;
};

View File

@@ -5,3 +5,4 @@
import type { DomainsPresentationModelBaseModel } from './DomainsPresentationModelBaseModel';
export type DomainsResponseModel = DomainsPresentationModelBaseModel;

View File

@@ -5,3 +5,4 @@
export type EnableUserRequestModel = {
userIds?: Array<string>;
};

View File

@@ -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;
});

View File

@@ -5,3 +5,4 @@
export type ExtractRichTextStylesheetRulesRequestModel = {
content?: string;
};

View File

@@ -5,3 +5,4 @@
import type { RichTextStylesheetRulesResponseModel } from './RichTextStylesheetRulesResponseModel';
export type ExtractRichTextStylesheetRulesResponseModel = RichTextStylesheetRulesResponseModel;

View File

@@ -6,3 +6,4 @@ export type FieldPresentationModel = {
name?: string;
values?: Array<string>;
};

View File

@@ -7,3 +7,4 @@ export type FileItemResponseModelBaseModel = {
path?: string;
icon?: string;
};

View File

@@ -5,6 +5,7 @@
import type { TreeItemPresentationModel } from './TreeItemPresentationModel';
export type FileSystemTreeItemPresentationModel = (TreeItemPresentationModel & {
path?: string;
isFolder?: boolean;
path?: string;
isFolder?: boolean;
});

View File

@@ -5,3 +5,4 @@
export type FolderModelBaseModel = {
name?: string;
};

View File

@@ -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;
});

View File

@@ -5,6 +5,7 @@
import type { EntityTreeItemResponseModel } from './EntityTreeItemResponseModel';
export type FolderTreeItemResponseModel = (EntityTreeItemResponseModel & {
$type: string;
isFolder?: boolean;
$type: string;
isFolder?: boolean;
});

View File

@@ -12,3 +12,4 @@ export type HealthCheckActionRequestModel = {
providedValueValidation?: string | null;
providedValueValidationRegex?: string | null;
};

View File

@@ -5,3 +5,4 @@
export type HealthCheckGroupPresentationBaseModel = {
name?: string;
};

View File

@@ -6,5 +6,6 @@ import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPr
import type { HealthCheckModel } from './HealthCheckModel';
export type HealthCheckGroupPresentationModel = (HealthCheckGroupPresentationBaseModel & {
checks?: Array<HealthCheckModel>;
checks?: Array<HealthCheckModel>;
});

View File

@@ -5,3 +5,4 @@
import type { HealthCheckGroupPresentationBaseModel } from './HealthCheckGroupPresentationBaseModel';
export type HealthCheckGroupResponseModel = HealthCheckGroupPresentationBaseModel;

View File

@@ -7,3 +7,4 @@ import type { HealthCheckWithResultPresentationModel } from './HealthCheckWithRe
export type HealthCheckGroupWithResultResponseModel = {
checks?: Array<HealthCheckWithResultPresentationModel>;
};

View File

@@ -5,6 +5,7 @@
import type { HealthCheckModelBaseModel } from './HealthCheckModelBaseModel';
export type HealthCheckModel = (HealthCheckModelBaseModel & {
name?: string;
description?: string | null;
name?: string;
description?: string | null;
});

View File

@@ -5,3 +5,4 @@
export type HealthCheckModelBaseModel = {
id?: string;
};

View File

@@ -11,3 +11,4 @@ export type HealthCheckResultResponseModel = {
actions?: Array<HealthCheckActionRequestModel> | null;
readMoreLink?: string | null;
};

View File

@@ -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;
});

View File

@@ -8,3 +8,4 @@ export type HelpPageResponseModel = {
url?: string | null;
type?: string | null;
};

View File

@@ -6,3 +6,4 @@ export type ImportDictionaryRequestModel = {
temporaryFileId?: string;
parentId?: string | null;
};

View File

@@ -13,3 +13,4 @@ export type IndexResponseModel = {
fieldCount: number;
providerProperties?: Record<string, any> | null;
};

View File

@@ -9,3 +9,4 @@ export type InstallSettingsResponseModel = {
user?: UserSettingsModel;
databases?: Array<DatabaseSettingsPresentationModel>;
};

View File

@@ -11,3 +11,4 @@ export type InstallVResponseModel = {
database: DatabaseInstallResponseModel;
telemetryLevel?: TelemetryLevelModel;
};

View File

@@ -8,3 +8,4 @@ export type InterpolateRichTextStylesheetRequestModel = {
content?: string | null;
rules?: Array<RichTextRuleModel> | null;
};

View File

@@ -5,3 +5,4 @@
export type InterpolateRichTextStylesheetResponseModel = {
content?: string;
};

View File

@@ -5,5 +5,6 @@
import type { CreateUserRequestModel } from './CreateUserRequestModel';
export type InviteUserRequestModel = (CreateUserRequestModel & {
message?: string | null;
message?: string | null;
});

View File

@@ -6,3 +6,4 @@ export type ItemResponseModelBaseModel = {
name?: string;
id?: string;
};

View File

@@ -6,3 +6,4 @@ export type LanguageItemResponseModel = {
name?: string;
isoCode?: string;
};

View File

@@ -8,3 +8,4 @@ export type LanguageModelBaseModel = {
isMandatory?: boolean;
fallbackIsoCode?: string | null;
};

View File

@@ -5,5 +5,6 @@
import type { LanguageModelBaseModel } from './LanguageModelBaseModel';
export type LanguageResponseModel = (LanguageModelBaseModel & {
isoCode?: string;
isoCode?: string;
});

View File

@@ -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