generate server models

This commit is contained in:
Mads Rasmussen
2024-05-03 08:54:50 +02:00
parent 0ca1b6a906
commit f7b98b8d8b

View File

@@ -333,6 +333,7 @@ stylesheets: Array<string>
scripts: Array<string>
languages: Array<string>
dictionaryItems: Array<string>
id?: string | null
};
export type CreatePartialViewFolderRequestModel = {
@@ -1813,6 +1814,11 @@ export type PagedUserResponseModel = {
items: Array<UserResponseModel>
};
export type PagedWebhookEventModel = {
total: number
items: Array<WebhookEventModel>
};
export type PagedWebhookResponseModel = {
total: number
items: Array<WebhookResponseModel>
@@ -2580,7 +2586,8 @@ mediaRootAccess: boolean
fallbackPermissions: Array<string>
permissions: Array<DocumentPermissionPresentationModel | UnknownTypePermissionPresentationModel>
id: string
isSystemGroup: boolean
isDeletable: boolean
aliasCanBeChanged: boolean
};
export type UserInstallRequestModel = {
@@ -2681,6 +2688,12 @@ export type VerifyResetPasswordTokenRequestModel = {
resetCode: string
};
export type WebhookEventModel = {
eventName: string
eventType: string
alias: string
};
export type WebhookEventResponseModel = {
eventName: string
eventType: string
@@ -5242,7 +5255,7 @@ take?: number
,GetWebhookById: WebhookResponseModel
,PutWebhookById: string
,DeleteWebhookById: string
,GetWebhookEvents: PagedWebhookResponseModel
,GetWebhookEvents: PagedWebhookEventModel
}