diff --git a/api-docs/openapi/v3_0/aggregated.json b/api-docs/openapi/v3_0/aggregated.json index 6f32df6425..42db116284 100644 --- a/api-docs/openapi/v3_0/aggregated.json +++ b/api-docs/openapi/v3_0/aggregated.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Halo", - "version": "2.20.9-SNAPSHOT" + "version": "2.20.10-SNAPSHOT" }, "servers": [ { @@ -19391,10 +19391,10 @@ "menuItems": { "uniqueItems": true, "type": "array", - "description": "Names of menu children below this menu.", + "description": "Menu items of this menu.", "items": { "type": "string", - "description": "Names of menu children below this menu." + "description": "Name of menu item." } } }, diff --git a/api-docs/openapi/v3_0/apis_console.api_v1alpha1.json b/api-docs/openapi/v3_0/apis_console.api_v1alpha1.json index 4229833e4c..f82b8e60f3 100644 --- a/api-docs/openapi/v3_0/apis_console.api_v1alpha1.json +++ b/api-docs/openapi/v3_0/apis_console.api_v1alpha1.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Halo", - "version": "2.20.9-SNAPSHOT" + "version": "2.20.10-SNAPSHOT" }, "servers": [ { diff --git a/api-docs/openapi/v3_0/apis_extension.api_v1alpha1.json b/api-docs/openapi/v3_0/apis_extension.api_v1alpha1.json index b2b3cf0b80..6f96e42cb8 100644 --- a/api-docs/openapi/v3_0/apis_extension.api_v1alpha1.json +++ b/api-docs/openapi/v3_0/apis_extension.api_v1alpha1.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Halo", - "version": "2.20.9-SNAPSHOT" + "version": "2.20.10-SNAPSHOT" }, "servers": [ { @@ -11912,10 +11912,10 @@ "menuItems": { "uniqueItems": true, "type": "array", - "description": "Names of menu children below this menu.", + "description": "Menu items of this menu.", "items": { "type": "string", - "description": "Names of menu children below this menu." + "description": "Name of menu item." } } }, diff --git a/api-docs/openapi/v3_0/apis_public.api_v1alpha1.json b/api-docs/openapi/v3_0/apis_public.api_v1alpha1.json index b6d05d9bfd..aa6105911d 100644 --- a/api-docs/openapi/v3_0/apis_public.api_v1alpha1.json +++ b/api-docs/openapi/v3_0/apis_public.api_v1alpha1.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Halo", - "version": "2.20.9-SNAPSHOT" + "version": "2.20.10-SNAPSHOT" }, "servers": [ { @@ -642,7 +642,7 @@ "/apis/api.halo.run/v1alpha1/comments": { "get": { "description": "List comments.", - "operationId": "ListComments", + "operationId": "ListComments_1", "parameters": [ { "description": "Page number. Default is 0.", @@ -744,7 +744,7 @@ }, "post": { "description": "Create a comment.", - "operationId": "CreateComment", + "operationId": "CreateComment_1", "requestBody": { "content": { "application/json": { @@ -853,7 +853,7 @@ }, "post": { "description": "Create a reply.", - "operationId": "CreateReply", + "operationId": "CreateReply_1", "parameters": [ { "in": "path", @@ -2375,10 +2375,10 @@ "menuItems": { "uniqueItems": true, "type": "array", - "description": "Names of menu children below this menu.", + "description": "Menu items of this menu.", "items": { "type": "string", - "description": "Names of menu children below this menu." + "description": "Name of menu item." } } } diff --git a/api-docs/openapi/v3_0/apis_uc.api_v1alpha1.json b/api-docs/openapi/v3_0/apis_uc.api_v1alpha1.json index c1b74f2ffc..67cc42c32b 100644 --- a/api-docs/openapi/v3_0/apis_uc.api_v1alpha1.json +++ b/api-docs/openapi/v3_0/apis_uc.api_v1alpha1.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Halo", - "version": "2.20.9-SNAPSHOT" + "version": "2.20.10-SNAPSHOT" }, "servers": [ { @@ -1340,7 +1340,7 @@ "/apis/uc.api.storage.halo.run/v1alpha1/attachments/-/upload-from-url": { "post": { "description": "Upload attachment from the given URL.", - "operationId": "ExternalTransferAttachment", + "operationId": "ExternalTransferAttachment_1", "parameters": [ { "description": "Wait for permalink.", diff --git a/api/src/main/java/run/halo/app/core/extension/Menu.java b/api/src/main/java/run/halo/app/core/extension/Menu.java index 02117a41f2..1a7b12b39d 100644 --- a/api/src/main/java/run/halo/app/core/extension/Menu.java +++ b/api/src/main/java/run/halo/app/core/extension/Menu.java @@ -27,8 +27,8 @@ public static class Spec { @Schema(description = "The display name of the menu.", requiredMode = REQUIRED) private String displayName; - @Schema(description = "Names of menu children below this menu.") @ArraySchema( + uniqueItems = true, arraySchema = @Schema(description = "Menu items of this menu."), schema = @Schema(description = "Name of menu item.") ) diff --git a/api/src/main/java/run/halo/app/core/extension/MenuItem.java b/api/src/main/java/run/halo/app/core/extension/MenuItem.java index 51301d0b11..9f707ff832 100644 --- a/api/src/main/java/run/halo/app/core/extension/MenuItem.java +++ b/api/src/main/java/run/halo/app/core/extension/MenuItem.java @@ -62,6 +62,7 @@ public static class MenuItemSpec { private Integer priority; @ArraySchema( + uniqueItems = true, arraySchema = @Schema(description = "Children of this menu item"), schema = @Schema(description = "The name of menu item child")) private LinkedHashSet children; diff --git a/application/src/main/java/run/halo/app/core/endpoint/theme/CommentFinderEndpoint.java b/application/src/main/java/run/halo/app/core/endpoint/theme/CommentFinderEndpoint.java index 2e4169ff1b..30d831acf5 100644 --- a/application/src/main/java/run/halo/app/core/endpoint/theme/CommentFinderEndpoint.java +++ b/application/src/main/java/run/halo/app/core/endpoint/theme/CommentFinderEndpoint.java @@ -76,7 +76,7 @@ public RouterFunction endpoint() { final var tag = "CommentV1alpha1Public"; return SpringdocRouteBuilder.route() .POST("comments", this::createComment, - builder -> builder.operationId("CreateComment") + builder -> builder.operationId("CreateComment_1") .description("Create a comment.") .tag(tag) .requestBody(requestBodyBuilder() @@ -90,7 +90,7 @@ public RouterFunction endpoint() { .implementation(Comment.class)) ) .POST("comments/{name}/reply", this::createReply, - builder -> builder.operationId("CreateReply") + builder -> builder.operationId("CreateReply_1") .description("Create a reply.") .tag(tag) .parameter(parameterBuilder().name("name") @@ -108,7 +108,7 @@ public RouterFunction endpoint() { .implementation(Reply.class)) ) .GET("comments", this::listComments, builder -> { - builder.operationId("ListComments") + builder.operationId("ListComments_1") .description("List comments.") .tag(tag) .response(responseBuilder() diff --git a/application/src/main/java/run/halo/app/core/endpoint/uc/UcAttachmentEndpoint.java b/application/src/main/java/run/halo/app/core/endpoint/uc/UcAttachmentEndpoint.java index 48f5cbdd0c..e3304d89d7 100644 --- a/application/src/main/java/run/halo/app/core/endpoint/uc/UcAttachmentEndpoint.java +++ b/application/src/main/java/run/halo/app/core/endpoint/uc/UcAttachmentEndpoint.java @@ -112,7 +112,7 @@ public RouterFunction endpoint() { .POST("/attachments/-/upload-from-url", contentType(MediaType.APPLICATION_JSON), this::uploadFromUrlForPost, builder -> builder - .operationId("ExternalTransferAttachment") + .operationId("ExternalTransferAttachment_1") .description("Upload attachment from the given URL.") .tag(tag) .parameter(parameterBuilder() diff --git a/gradle.properties b/gradle.properties index 6259a88fb0..a2be495b1b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=2.20.9-SNAPSHOT +version=2.20.10-SNAPSHOT diff --git a/platform/application/build.gradle b/platform/application/build.gradle index 396df394c7..4fa2bdf591 100644 --- a/platform/application/build.gradle +++ b/platform/application/build.gradle @@ -18,7 +18,7 @@ ext { guava = "33.3.1-jre" jsoup = '1.18.1' jsonPatch = "1.13" - springDocOpenAPI = "2.6.0" + springDocOpenAPI = "2.7.0" lucene = "9.12.0" resilience4jVersion = "2.2.0" twoFactorAuth = "1.3" diff --git a/ui/packages/api-client/src/api.ts b/ui/packages/api-client/src/api.ts index a2b1159d2a..d130cc568b 100644 --- a/ui/packages/api-client/src/api.ts +++ b/ui/packages/api-client/src/api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/annotation-setting-v1alpha1-api.ts b/ui/packages/api-client/src/api/annotation-setting-v1alpha1-api.ts index dcfdec0146..aa980bfc90 100644 --- a/ui/packages/api-client/src/api/annotation-setting-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/annotation-setting-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/attachment-v1alpha1-api.ts b/ui/packages/api-client/src/api/attachment-v1alpha1-api.ts index 87e48dac0e..845ee1b33f 100644 --- a/ui/packages/api-client/src/api/attachment-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/attachment-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/attachment-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/attachment-v1alpha1-console-api.ts index d789d94d88..3f589985da 100644 --- a/ui/packages/api-client/src/api/attachment-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/attachment-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/attachment-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/attachment-v1alpha1-uc-api.ts index 26cdda13d3..0ad247a621 100644 --- a/ui/packages/api-client/src/api/attachment-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/attachment-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/auth-provider-v1alpha1-api.ts b/ui/packages/api-client/src/api/auth-provider-v1alpha1-api.ts index b82eb4b1c0..45fa76a022 100644 --- a/ui/packages/api-client/src/api/auth-provider-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/auth-provider-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/auth-provider-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/auth-provider-v1alpha1-console-api.ts index 35da375733..678eb49ded 100644 --- a/ui/packages/api-client/src/api/auth-provider-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/auth-provider-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/backup-v1alpha1-api.ts b/ui/packages/api-client/src/api/backup-v1alpha1-api.ts index 73c9ea9e55..b752944c19 100644 --- a/ui/packages/api-client/src/api/backup-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/backup-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/category-v1alpha1-api.ts b/ui/packages/api-client/src/api/category-v1alpha1-api.ts index b8a297fa8c..8ed9ddbe59 100644 --- a/ui/packages/api-client/src/api/category-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/category-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/category-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/category-v1alpha1-public-api.ts index 5ac227ce24..037d53c432 100644 --- a/ui/packages/api-client/src/api/category-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/category-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/comment-v1alpha1-api.ts b/ui/packages/api-client/src/api/comment-v1alpha1-api.ts index 13c5c8e1c2..9c1f816852 100644 --- a/ui/packages/api-client/src/api/comment-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/comment-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/comment-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/comment-v1alpha1-console-api.ts index 5f73bca47e..3b2508879c 100644 --- a/ui/packages/api-client/src/api/comment-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/comment-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/comment-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/comment-v1alpha1-public-api.ts index fd4ff89115..e22bdacbe1 100644 --- a/ui/packages/api-client/src/api/comment-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/comment-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/config-map-v1alpha1-api.ts b/ui/packages/api-client/src/api/config-map-v1alpha1-api.ts index 033147b754..a2ca46b9f0 100644 --- a/ui/packages/api-client/src/api/config-map-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/config-map-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/counter-v1alpha1-api.ts b/ui/packages/api-client/src/api/counter-v1alpha1-api.ts index e8433e6b33..70317ddb15 100644 --- a/ui/packages/api-client/src/api/counter-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/counter-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/default-api.ts b/ui/packages/api-client/src/api/default-api.ts index 0c7914d1d3..3665a91362 100644 --- a/ui/packages/api-client/src/api/default-api.ts +++ b/ui/packages/api-client/src/api/default-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/device-v1alpha1-api.ts b/ui/packages/api-client/src/api/device-v1alpha1-api.ts index 30709f4bcb..370f6b2b93 100644 --- a/ui/packages/api-client/src/api/device-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/device-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/device-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/device-v1alpha1-uc-api.ts index bf0a425b2e..21103904e3 100644 --- a/ui/packages/api-client/src/api/device-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/device-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/extension-definition-v1alpha1-api.ts b/ui/packages/api-client/src/api/extension-definition-v1alpha1-api.ts index d043391d00..94fcda37c7 100644 --- a/ui/packages/api-client/src/api/extension-definition-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/extension-definition-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/extension-point-definition-v1alpha1-api.ts b/ui/packages/api-client/src/api/extension-point-definition-v1alpha1-api.ts index 46a69ed480..92517c5b6f 100644 --- a/ui/packages/api-client/src/api/extension-point-definition-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/extension-point-definition-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/group-v1alpha1-api.ts b/ui/packages/api-client/src/api/group-v1alpha1-api.ts index c7ae3ef8c6..35f8df9137 100644 --- a/ui/packages/api-client/src/api/group-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/group-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/index-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/index-v1alpha1-public-api.ts index 4d807f12da..49eba736ca 100644 --- a/ui/packages/api-client/src/api/index-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/index-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/indices-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/indices-v1alpha1-console-api.ts index c4f48d4a3a..49cc952229 100644 --- a/ui/packages/api-client/src/api/indices-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/indices-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/local-thumbnail-v1alpha1-api.ts b/ui/packages/api-client/src/api/local-thumbnail-v1alpha1-api.ts index 2b35d87bdd..1e9f86d6b5 100644 --- a/ui/packages/api-client/src/api/local-thumbnail-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/local-thumbnail-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/menu-item-v1alpha1-api.ts b/ui/packages/api-client/src/api/menu-item-v1alpha1-api.ts index 9b13aa3cca..b1d379065c 100644 --- a/ui/packages/api-client/src/api/menu-item-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/menu-item-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/menu-v1alpha1-api.ts b/ui/packages/api-client/src/api/menu-v1alpha1-api.ts index 7e631ebf63..3b3ebe2424 100644 --- a/ui/packages/api-client/src/api/menu-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/menu-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/menu-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/menu-v1alpha1-public-api.ts index 66ddc3b1e2..4142069e9a 100644 --- a/ui/packages/api-client/src/api/menu-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/menu-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/metrics-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/metrics-v1alpha1-public-api.ts index 087c88771e..d3477d9969 100644 --- a/ui/packages/api-client/src/api/metrics-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/metrics-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/migration-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/migration-v1alpha1-console-api.ts index dede413fe9..fed1706b9d 100644 --- a/ui/packages/api-client/src/api/migration-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/migration-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notification-template-v1alpha1-api.ts b/ui/packages/api-client/src/api/notification-template-v1alpha1-api.ts index 965da81cac..48ff5e7d4a 100644 --- a/ui/packages/api-client/src/api/notification-template-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/notification-template-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notification-v1alpha1-api.ts b/ui/packages/api-client/src/api/notification-v1alpha1-api.ts index 3ebb906b39..a8eb7583c9 100644 --- a/ui/packages/api-client/src/api/notification-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/notification-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notification-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/notification-v1alpha1-public-api.ts index 18830ddfac..74cef488ed 100644 --- a/ui/packages/api-client/src/api/notification-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/notification-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notification-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/notification-v1alpha1-uc-api.ts index dcdeb19a85..5536304c8f 100644 --- a/ui/packages/api-client/src/api/notification-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/notification-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notifier-descriptor-v1alpha1-api.ts b/ui/packages/api-client/src/api/notifier-descriptor-v1alpha1-api.ts index efbb3b2cc7..1d2e4e45fd 100644 --- a/ui/packages/api-client/src/api/notifier-descriptor-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/notifier-descriptor-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notifier-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/notifier-v1alpha1-console-api.ts index c795866a05..215f30668a 100644 --- a/ui/packages/api-client/src/api/notifier-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/notifier-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/notifier-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/notifier-v1alpha1-uc-api.ts index 020bc6674a..54879cf10c 100644 --- a/ui/packages/api-client/src/api/notifier-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/notifier-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/personal-access-token-v1alpha1-api.ts b/ui/packages/api-client/src/api/personal-access-token-v1alpha1-api.ts index 40235503cc..24e7b02b31 100644 --- a/ui/packages/api-client/src/api/personal-access-token-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/personal-access-token-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/personal-access-token-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/personal-access-token-v1alpha1-uc-api.ts index 40b3bbb968..f9354ba61a 100644 --- a/ui/packages/api-client/src/api/personal-access-token-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/personal-access-token-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/plugin-v1alpha1-api.ts b/ui/packages/api-client/src/api/plugin-v1alpha1-api.ts index 18e4cc433c..3119a7201d 100644 --- a/ui/packages/api-client/src/api/plugin-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/plugin-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/plugin-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/plugin-v1alpha1-console-api.ts index eed35161d6..6fe481bcdf 100644 --- a/ui/packages/api-client/src/api/plugin-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/plugin-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/plugin-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/plugin-v1alpha1-public-api.ts index d24b8ae9ee..73bf2653f3 100644 --- a/ui/packages/api-client/src/api/plugin-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/plugin-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/policy-template-v1alpha1-api.ts b/ui/packages/api-client/src/api/policy-template-v1alpha1-api.ts index d7e6de580c..8903d1a603 100644 --- a/ui/packages/api-client/src/api/policy-template-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/policy-template-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/policy-v1alpha1-api.ts b/ui/packages/api-client/src/api/policy-v1alpha1-api.ts index 0ccf526fd0..6ea7caad1c 100644 --- a/ui/packages/api-client/src/api/policy-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/policy-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/post-v1alpha1-api.ts b/ui/packages/api-client/src/api/post-v1alpha1-api.ts index 8e7b3e9354..69c168a1ae 100644 --- a/ui/packages/api-client/src/api/post-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/post-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/post-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/post-v1alpha1-console-api.ts index 9e501c4012..f7de169862 100644 --- a/ui/packages/api-client/src/api/post-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/post-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/post-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/post-v1alpha1-public-api.ts index 5886c90e82..d1a2b5e8fd 100644 --- a/ui/packages/api-client/src/api/post-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/post-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/post-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/post-v1alpha1-uc-api.ts index 34733b7f23..7db4bdb3c8 100644 --- a/ui/packages/api-client/src/api/post-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/post-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/reason-type-v1alpha1-api.ts b/ui/packages/api-client/src/api/reason-type-v1alpha1-api.ts index 2f59300f7d..42d2025c46 100644 --- a/ui/packages/api-client/src/api/reason-type-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/reason-type-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/reason-v1alpha1-api.ts b/ui/packages/api-client/src/api/reason-v1alpha1-api.ts index 553ba04c47..e71b0a3683 100644 --- a/ui/packages/api-client/src/api/reason-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/reason-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/remember-me-token-v1alpha1-api.ts b/ui/packages/api-client/src/api/remember-me-token-v1alpha1-api.ts index 192f7830b8..2675ec6dd1 100644 --- a/ui/packages/api-client/src/api/remember-me-token-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/remember-me-token-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/reply-v1alpha1-api.ts b/ui/packages/api-client/src/api/reply-v1alpha1-api.ts index f81ea47e1a..45433bf22f 100644 --- a/ui/packages/api-client/src/api/reply-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/reply-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/reply-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/reply-v1alpha1-console-api.ts index 3411ed97e4..a80317ccf4 100644 --- a/ui/packages/api-client/src/api/reply-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/reply-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/reverse-proxy-v1alpha1-api.ts b/ui/packages/api-client/src/api/reverse-proxy-v1alpha1-api.ts index 647a884cbd..e5521220f4 100644 --- a/ui/packages/api-client/src/api/reverse-proxy-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/reverse-proxy-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/role-binding-v1alpha1-api.ts b/ui/packages/api-client/src/api/role-binding-v1alpha1-api.ts index 60f60a5b7f..fbd86296d0 100644 --- a/ui/packages/api-client/src/api/role-binding-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/role-binding-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/role-v1alpha1-api.ts b/ui/packages/api-client/src/api/role-v1alpha1-api.ts index da4ab29bb4..437d4670cf 100644 --- a/ui/packages/api-client/src/api/role-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/role-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/search-engine-v1alpha1-api.ts b/ui/packages/api-client/src/api/search-engine-v1alpha1-api.ts index 981ba68dc9..28df67d8a2 100644 --- a/ui/packages/api-client/src/api/search-engine-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/search-engine-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/secret-v1alpha1-api.ts b/ui/packages/api-client/src/api/secret-v1alpha1-api.ts index c9f505c747..5acbdd1442 100644 --- a/ui/packages/api-client/src/api/secret-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/secret-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/setting-v1alpha1-api.ts b/ui/packages/api-client/src/api/setting-v1alpha1-api.ts index a2bae067da..f102201f83 100644 --- a/ui/packages/api-client/src/api/setting-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/setting-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/single-page-v1alpha1-api.ts b/ui/packages/api-client/src/api/single-page-v1alpha1-api.ts index 2171e10731..9c52533b49 100644 --- a/ui/packages/api-client/src/api/single-page-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/single-page-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/single-page-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/single-page-v1alpha1-console-api.ts index 57f3c91559..ccfddb7213 100644 --- a/ui/packages/api-client/src/api/single-page-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/single-page-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/single-page-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/single-page-v1alpha1-public-api.ts index c7e954ad2a..5c985b9bbf 100644 --- a/ui/packages/api-client/src/api/single-page-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/single-page-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/snapshot-v1alpha1-api.ts b/ui/packages/api-client/src/api/snapshot-v1alpha1-api.ts index 411c2ccff1..96c20dde0b 100644 --- a/ui/packages/api-client/src/api/snapshot-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/snapshot-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/snapshot-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/snapshot-v1alpha1-uc-api.ts index 929dc7c032..f8d24eabf6 100644 --- a/ui/packages/api-client/src/api/snapshot-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/snapshot-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/subscription-v1alpha1-api.ts b/ui/packages/api-client/src/api/subscription-v1alpha1-api.ts index a1968a2e06..5b450b73a7 100644 --- a/ui/packages/api-client/src/api/subscription-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/subscription-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/system-config-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/system-config-v1alpha1-console-api.ts index edc76f3662..bc63f74aa4 100644 --- a/ui/packages/api-client/src/api/system-config-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/system-config-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/system-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/system-v1alpha1-console-api.ts index b923088d23..3c7f1bf8da 100644 --- a/ui/packages/api-client/src/api/system-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/system-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/system-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/system-v1alpha1-public-api.ts index 88b47ab9ca..4d8b79e571 100644 --- a/ui/packages/api-client/src/api/system-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/system-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/tag-v1alpha1-api.ts b/ui/packages/api-client/src/api/tag-v1alpha1-api.ts index 43dc9b6667..a88a01d00b 100644 --- a/ui/packages/api-client/src/api/tag-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/tag-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/tag-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/tag-v1alpha1-console-api.ts index efc94f47be..082529c617 100644 --- a/ui/packages/api-client/src/api/tag-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/tag-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/tag-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/tag-v1alpha1-public-api.ts index 22f93f30d9..33ab0105a2 100644 --- a/ui/packages/api-client/src/api/tag-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/tag-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/theme-v1alpha1-api.ts b/ui/packages/api-client/src/api/theme-v1alpha1-api.ts index bc4b94212f..61fbba2786 100644 --- a/ui/packages/api-client/src/api/theme-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/theme-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/theme-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/theme-v1alpha1-console-api.ts index 08cc168ec2..4456158846 100644 --- a/ui/packages/api-client/src/api/theme-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/theme-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/thumbnail-v1alpha1-api.ts b/ui/packages/api-client/src/api/thumbnail-v1alpha1-api.ts index 4c1ecb264c..a81bad25aa 100644 --- a/ui/packages/api-client/src/api/thumbnail-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/thumbnail-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/thumbnail-v1alpha1-public-api.ts b/ui/packages/api-client/src/api/thumbnail-v1alpha1-public-api.ts index b2b8344182..db6630e5d3 100644 --- a/ui/packages/api-client/src/api/thumbnail-v1alpha1-public-api.ts +++ b/ui/packages/api-client/src/api/thumbnail-v1alpha1-public-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/two-factor-auth-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/two-factor-auth-v1alpha1-uc-api.ts index 3004f77ecb..2729d3df81 100644 --- a/ui/packages/api-client/src/api/two-factor-auth-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/two-factor-auth-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/user-connection-v1alpha1-api.ts b/ui/packages/api-client/src/api/user-connection-v1alpha1-api.ts index b1f884a2a3..6fd68fcb65 100644 --- a/ui/packages/api-client/src/api/user-connection-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/user-connection-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/user-connection-v1alpha1-uc-api.ts b/ui/packages/api-client/src/api/user-connection-v1alpha1-uc-api.ts index 635be3a93f..8c0008cab0 100644 --- a/ui/packages/api-client/src/api/user-connection-v1alpha1-uc-api.ts +++ b/ui/packages/api-client/src/api/user-connection-v1alpha1-uc-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/user-v1alpha1-api.ts b/ui/packages/api-client/src/api/user-v1alpha1-api.ts index a4d8dbc145..95734625a6 100644 --- a/ui/packages/api-client/src/api/user-v1alpha1-api.ts +++ b/ui/packages/api-client/src/api/user-v1alpha1-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/api/user-v1alpha1-console-api.ts b/ui/packages/api-client/src/api/user-v1alpha1-console-api.ts index 087a7a5b88..7628d50a22 100644 --- a/ui/packages/api-client/src/api/user-v1alpha1-console-api.ts +++ b/ui/packages/api-client/src/api/user-v1alpha1-console-api.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/base.ts b/ui/packages/api-client/src/base.ts index 3a6353b744..4f142f7c11 100644 --- a/ui/packages/api-client/src/base.ts +++ b/ui/packages/api-client/src/base.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/common.ts b/ui/packages/api-client/src/common.ts index 194b330e43..9416f25b04 100644 --- a/ui/packages/api-client/src/common.ts +++ b/ui/packages/api-client/src/common.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/configuration.ts b/ui/packages/api-client/src/configuration.ts index a6e9e98c64..6c55390c15 100644 --- a/ui/packages/api-client/src/configuration.ts +++ b/ui/packages/api-client/src/configuration.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/index.ts b/ui/packages/api-client/src/index.ts index 84d5c88bef..a5f201e560 100644 --- a/ui/packages/api-client/src/index.ts +++ b/ui/packages/api-client/src/index.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/add-operation.ts b/ui/packages/api-client/src/models/add-operation.ts index 476162e165..e491c70613 100644 --- a/ui/packages/api-client/src/models/add-operation.ts +++ b/ui/packages/api-client/src/models/add-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/annotation-setting-list.ts b/ui/packages/api-client/src/models/annotation-setting-list.ts index 8a3aae0dc3..faebf30a2f 100644 --- a/ui/packages/api-client/src/models/annotation-setting-list.ts +++ b/ui/packages/api-client/src/models/annotation-setting-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/annotation-setting-spec.ts b/ui/packages/api-client/src/models/annotation-setting-spec.ts index 890e4e55df..74476778a2 100644 --- a/ui/packages/api-client/src/models/annotation-setting-spec.ts +++ b/ui/packages/api-client/src/models/annotation-setting-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/annotation-setting.ts b/ui/packages/api-client/src/models/annotation-setting.ts index 25a8fbc97b..20e356c690 100644 --- a/ui/packages/api-client/src/models/annotation-setting.ts +++ b/ui/packages/api-client/src/models/annotation-setting.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/attachment-list.ts b/ui/packages/api-client/src/models/attachment-list.ts index 55c00ceab3..d177a55b58 100644 --- a/ui/packages/api-client/src/models/attachment-list.ts +++ b/ui/packages/api-client/src/models/attachment-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/attachment-spec.ts b/ui/packages/api-client/src/models/attachment-spec.ts index d9cca04670..32f2481480 100644 --- a/ui/packages/api-client/src/models/attachment-spec.ts +++ b/ui/packages/api-client/src/models/attachment-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/attachment-status.ts b/ui/packages/api-client/src/models/attachment-status.ts index 1d1c7eae45..2cc3843115 100644 --- a/ui/packages/api-client/src/models/attachment-status.ts +++ b/ui/packages/api-client/src/models/attachment-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/attachment.ts b/ui/packages/api-client/src/models/attachment.ts index f87f8fd525..1aaebf330c 100644 --- a/ui/packages/api-client/src/models/attachment.ts +++ b/ui/packages/api-client/src/models/attachment.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/auth-provider-list.ts b/ui/packages/api-client/src/models/auth-provider-list.ts index f44b27a25d..dbe198e01a 100644 --- a/ui/packages/api-client/src/models/auth-provider-list.ts +++ b/ui/packages/api-client/src/models/auth-provider-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/auth-provider-spec.ts b/ui/packages/api-client/src/models/auth-provider-spec.ts index 6a83cb797b..aae7807b99 100644 --- a/ui/packages/api-client/src/models/auth-provider-spec.ts +++ b/ui/packages/api-client/src/models/auth-provider-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/auth-provider.ts b/ui/packages/api-client/src/models/auth-provider.ts index e0715375b4..6ec42acf65 100644 --- a/ui/packages/api-client/src/models/auth-provider.ts +++ b/ui/packages/api-client/src/models/auth-provider.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/author.ts b/ui/packages/api-client/src/models/author.ts index bab671a6e7..be9f3b68ee 100644 --- a/ui/packages/api-client/src/models/author.ts +++ b/ui/packages/api-client/src/models/author.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/backup-file.ts b/ui/packages/api-client/src/models/backup-file.ts index c07424a3a2..ca358b0747 100644 --- a/ui/packages/api-client/src/models/backup-file.ts +++ b/ui/packages/api-client/src/models/backup-file.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/backup-list.ts b/ui/packages/api-client/src/models/backup-list.ts index f43a058242..f851c9e1b9 100644 --- a/ui/packages/api-client/src/models/backup-list.ts +++ b/ui/packages/api-client/src/models/backup-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/backup-spec.ts b/ui/packages/api-client/src/models/backup-spec.ts index 1d72d576f6..ddf7fad261 100644 --- a/ui/packages/api-client/src/models/backup-spec.ts +++ b/ui/packages/api-client/src/models/backup-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/backup-status.ts b/ui/packages/api-client/src/models/backup-status.ts index 393aad572f..9898e94fba 100644 --- a/ui/packages/api-client/src/models/backup-status.ts +++ b/ui/packages/api-client/src/models/backup-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/backup.ts b/ui/packages/api-client/src/models/backup.ts index ba516c67c5..b687fcd1f7 100644 --- a/ui/packages/api-client/src/models/backup.ts +++ b/ui/packages/api-client/src/models/backup.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category-list.ts b/ui/packages/api-client/src/models/category-list.ts index 30a9a593d0..11a923ba5e 100644 --- a/ui/packages/api-client/src/models/category-list.ts +++ b/ui/packages/api-client/src/models/category-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category-spec.ts b/ui/packages/api-client/src/models/category-spec.ts index 31b2b32694..5625db4b23 100644 --- a/ui/packages/api-client/src/models/category-spec.ts +++ b/ui/packages/api-client/src/models/category-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category-status.ts b/ui/packages/api-client/src/models/category-status.ts index 746c67fece..fce6609bb2 100644 --- a/ui/packages/api-client/src/models/category-status.ts +++ b/ui/packages/api-client/src/models/category-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category-vo-list.ts b/ui/packages/api-client/src/models/category-vo-list.ts index a4847dcfd1..1daa288ca9 100644 --- a/ui/packages/api-client/src/models/category-vo-list.ts +++ b/ui/packages/api-client/src/models/category-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category-vo.ts b/ui/packages/api-client/src/models/category-vo.ts index cbad9505c4..223e4d7b9f 100644 --- a/ui/packages/api-client/src/models/category-vo.ts +++ b/ui/packages/api-client/src/models/category-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/category.ts b/ui/packages/api-client/src/models/category.ts index 911b9ee180..05179c339c 100644 --- a/ui/packages/api-client/src/models/category.ts +++ b/ui/packages/api-client/src/models/category.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/change-own-password-request.ts b/ui/packages/api-client/src/models/change-own-password-request.ts index 0fb1d8f01c..db17d96056 100644 --- a/ui/packages/api-client/src/models/change-own-password-request.ts +++ b/ui/packages/api-client/src/models/change-own-password-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/change-password-request.ts b/ui/packages/api-client/src/models/change-password-request.ts index 6939117458..87a57ce303 100644 --- a/ui/packages/api-client/src/models/change-password-request.ts +++ b/ui/packages/api-client/src/models/change-password-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-email-owner.ts b/ui/packages/api-client/src/models/comment-email-owner.ts index 88590745db..e51387fd17 100644 --- a/ui/packages/api-client/src/models/comment-email-owner.ts +++ b/ui/packages/api-client/src/models/comment-email-owner.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-list.ts b/ui/packages/api-client/src/models/comment-list.ts index fd526c2ee2..32c26be301 100644 --- a/ui/packages/api-client/src/models/comment-list.ts +++ b/ui/packages/api-client/src/models/comment-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-owner.ts b/ui/packages/api-client/src/models/comment-owner.ts index 6f0b455775..f2fe2a5dfd 100644 --- a/ui/packages/api-client/src/models/comment-owner.ts +++ b/ui/packages/api-client/src/models/comment-owner.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-request.ts b/ui/packages/api-client/src/models/comment-request.ts index 18191035c9..cfba1d3f1a 100644 --- a/ui/packages/api-client/src/models/comment-request.ts +++ b/ui/packages/api-client/src/models/comment-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-spec.ts b/ui/packages/api-client/src/models/comment-spec.ts index f30dce5d24..6cd1b1913c 100644 --- a/ui/packages/api-client/src/models/comment-spec.ts +++ b/ui/packages/api-client/src/models/comment-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-stats-vo.ts b/ui/packages/api-client/src/models/comment-stats-vo.ts index 014c590ec1..fd8a6eaeb8 100644 --- a/ui/packages/api-client/src/models/comment-stats-vo.ts +++ b/ui/packages/api-client/src/models/comment-stats-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-stats.ts b/ui/packages/api-client/src/models/comment-stats.ts index d4c0efeb16..872678ac23 100644 --- a/ui/packages/api-client/src/models/comment-stats.ts +++ b/ui/packages/api-client/src/models/comment-stats.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-status.ts b/ui/packages/api-client/src/models/comment-status.ts index 60d7575798..ec1280e9b2 100644 --- a/ui/packages/api-client/src/models/comment-status.ts +++ b/ui/packages/api-client/src/models/comment-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-vo-list.ts b/ui/packages/api-client/src/models/comment-vo-list.ts index c19c0025f9..dc9c9fb842 100644 --- a/ui/packages/api-client/src/models/comment-vo-list.ts +++ b/ui/packages/api-client/src/models/comment-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-vo.ts b/ui/packages/api-client/src/models/comment-vo.ts index b4a325f800..8362d56302 100644 --- a/ui/packages/api-client/src/models/comment-vo.ts +++ b/ui/packages/api-client/src/models/comment-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-with-reply-vo-list.ts b/ui/packages/api-client/src/models/comment-with-reply-vo-list.ts index 91dec27397..1e893fd059 100644 --- a/ui/packages/api-client/src/models/comment-with-reply-vo-list.ts +++ b/ui/packages/api-client/src/models/comment-with-reply-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment-with-reply-vo.ts b/ui/packages/api-client/src/models/comment-with-reply-vo.ts index ff96f4209e..d0dfbc07e9 100644 --- a/ui/packages/api-client/src/models/comment-with-reply-vo.ts +++ b/ui/packages/api-client/src/models/comment-with-reply-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/comment.ts b/ui/packages/api-client/src/models/comment.ts index db443b8afc..80693410a8 100644 --- a/ui/packages/api-client/src/models/comment.ts +++ b/ui/packages/api-client/src/models/comment.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/condition.ts b/ui/packages/api-client/src/models/condition.ts index 556c8e6b69..5e2bdace6d 100644 --- a/ui/packages/api-client/src/models/condition.ts +++ b/ui/packages/api-client/src/models/condition.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/config-map-list.ts b/ui/packages/api-client/src/models/config-map-list.ts index b1f7cc0c53..68a0205c95 100644 --- a/ui/packages/api-client/src/models/config-map-list.ts +++ b/ui/packages/api-client/src/models/config-map-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/config-map-ref.ts b/ui/packages/api-client/src/models/config-map-ref.ts index aff275536b..523796a506 100644 --- a/ui/packages/api-client/src/models/config-map-ref.ts +++ b/ui/packages/api-client/src/models/config-map-ref.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/config-map.ts b/ui/packages/api-client/src/models/config-map.ts index 73e91be153..8cf3f341a0 100644 --- a/ui/packages/api-client/src/models/config-map.ts +++ b/ui/packages/api-client/src/models/config-map.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/content-update-param.ts b/ui/packages/api-client/src/models/content-update-param.ts index b1f289b078..82416e8ffe 100644 --- a/ui/packages/api-client/src/models/content-update-param.ts +++ b/ui/packages/api-client/src/models/content-update-param.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/content-vo.ts b/ui/packages/api-client/src/models/content-vo.ts index e96248b971..34f8aa304e 100644 --- a/ui/packages/api-client/src/models/content-vo.ts +++ b/ui/packages/api-client/src/models/content-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/content-wrapper.ts b/ui/packages/api-client/src/models/content-wrapper.ts index 19ba3d0b6a..b0737b93b4 100644 --- a/ui/packages/api-client/src/models/content-wrapper.ts +++ b/ui/packages/api-client/src/models/content-wrapper.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/content.ts b/ui/packages/api-client/src/models/content.ts index 439cdcdba8..8832d16248 100644 --- a/ui/packages/api-client/src/models/content.ts +++ b/ui/packages/api-client/src/models/content.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/contributor-vo.ts b/ui/packages/api-client/src/models/contributor-vo.ts index abbdab133b..293aa78fe9 100644 --- a/ui/packages/api-client/src/models/contributor-vo.ts +++ b/ui/packages/api-client/src/models/contributor-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/contributor.ts b/ui/packages/api-client/src/models/contributor.ts index ea45e5af2a..1d71c993c7 100644 --- a/ui/packages/api-client/src/models/contributor.ts +++ b/ui/packages/api-client/src/models/contributor.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/copy-operation.ts b/ui/packages/api-client/src/models/copy-operation.ts index 7b908d49ee..b6f8cb9ea0 100644 --- a/ui/packages/api-client/src/models/copy-operation.ts +++ b/ui/packages/api-client/src/models/copy-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/counter-list.ts b/ui/packages/api-client/src/models/counter-list.ts index 5a293897a2..54b9debe86 100644 --- a/ui/packages/api-client/src/models/counter-list.ts +++ b/ui/packages/api-client/src/models/counter-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/counter-request.ts b/ui/packages/api-client/src/models/counter-request.ts index d6da29b770..8432cba6af 100644 --- a/ui/packages/api-client/src/models/counter-request.ts +++ b/ui/packages/api-client/src/models/counter-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/counter.ts b/ui/packages/api-client/src/models/counter.ts index 88e82c83d5..d978d40826 100644 --- a/ui/packages/api-client/src/models/counter.ts +++ b/ui/packages/api-client/src/models/counter.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/create-user-request.ts b/ui/packages/api-client/src/models/create-user-request.ts index 4a930ebfb2..1bf8edf2b7 100644 --- a/ui/packages/api-client/src/models/create-user-request.ts +++ b/ui/packages/api-client/src/models/create-user-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/custom-templates.ts b/ui/packages/api-client/src/models/custom-templates.ts index 461027994d..c66b9c764e 100644 --- a/ui/packages/api-client/src/models/custom-templates.ts +++ b/ui/packages/api-client/src/models/custom-templates.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/dashboard-stats.ts b/ui/packages/api-client/src/models/dashboard-stats.ts index df7d56c05c..0e0282a2e0 100644 --- a/ui/packages/api-client/src/models/dashboard-stats.ts +++ b/ui/packages/api-client/src/models/dashboard-stats.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/detailed-user.ts b/ui/packages/api-client/src/models/detailed-user.ts index 7413755d8a..8473818e74 100644 --- a/ui/packages/api-client/src/models/detailed-user.ts +++ b/ui/packages/api-client/src/models/detailed-user.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/device-list.ts b/ui/packages/api-client/src/models/device-list.ts index 896da3f081..03fbfba523 100644 --- a/ui/packages/api-client/src/models/device-list.ts +++ b/ui/packages/api-client/src/models/device-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/device-spec.ts b/ui/packages/api-client/src/models/device-spec.ts index 22d6a0c909..212f829ac1 100644 --- a/ui/packages/api-client/src/models/device-spec.ts +++ b/ui/packages/api-client/src/models/device-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/device-status.ts b/ui/packages/api-client/src/models/device-status.ts index 8aea236f98..648f631c80 100644 --- a/ui/packages/api-client/src/models/device-status.ts +++ b/ui/packages/api-client/src/models/device-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/device.ts b/ui/packages/api-client/src/models/device.ts index 97fcc46aa0..52534a9416 100644 --- a/ui/packages/api-client/src/models/device.ts +++ b/ui/packages/api-client/src/models/device.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/email-config-validation-request.ts b/ui/packages/api-client/src/models/email-config-validation-request.ts index 95ba565ed7..ad7a260bcd 100644 --- a/ui/packages/api-client/src/models/email-config-validation-request.ts +++ b/ui/packages/api-client/src/models/email-config-validation-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/email-verify-request.ts b/ui/packages/api-client/src/models/email-verify-request.ts index 55463c5ff8..4aa2a52a37 100644 --- a/ui/packages/api-client/src/models/email-verify-request.ts +++ b/ui/packages/api-client/src/models/email-verify-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/excerpt.ts b/ui/packages/api-client/src/models/excerpt.ts index 0502d59098..c0ce7182b0 100644 --- a/ui/packages/api-client/src/models/excerpt.ts +++ b/ui/packages/api-client/src/models/excerpt.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-definition-list.ts b/ui/packages/api-client/src/models/extension-definition-list.ts index 2f33a40c5f..add8cebca5 100644 --- a/ui/packages/api-client/src/models/extension-definition-list.ts +++ b/ui/packages/api-client/src/models/extension-definition-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-definition.ts b/ui/packages/api-client/src/models/extension-definition.ts index c865996e65..d19339734b 100644 --- a/ui/packages/api-client/src/models/extension-definition.ts +++ b/ui/packages/api-client/src/models/extension-definition.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-point-definition-list.ts b/ui/packages/api-client/src/models/extension-point-definition-list.ts index 2b74e3d9f5..09719f7e3a 100644 --- a/ui/packages/api-client/src/models/extension-point-definition-list.ts +++ b/ui/packages/api-client/src/models/extension-point-definition-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-point-definition.ts b/ui/packages/api-client/src/models/extension-point-definition.ts index 25b17b7763..fc180cefdc 100644 --- a/ui/packages/api-client/src/models/extension-point-definition.ts +++ b/ui/packages/api-client/src/models/extension-point-definition.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-point-spec.ts b/ui/packages/api-client/src/models/extension-point-spec.ts index a624c29ffa..9ff1c726e1 100644 --- a/ui/packages/api-client/src/models/extension-point-spec.ts +++ b/ui/packages/api-client/src/models/extension-point-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension-spec.ts b/ui/packages/api-client/src/models/extension-spec.ts index 1271bee10c..d509c519b3 100644 --- a/ui/packages/api-client/src/models/extension-spec.ts +++ b/ui/packages/api-client/src/models/extension-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/extension.ts b/ui/packages/api-client/src/models/extension.ts index a6717c0399..5e81c8d072 100644 --- a/ui/packages/api-client/src/models/extension.ts +++ b/ui/packages/api-client/src/models/extension.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/file-reverse-proxy-provider.ts b/ui/packages/api-client/src/models/file-reverse-proxy-provider.ts index 8aea86a433..8dbc123a4a 100644 --- a/ui/packages/api-client/src/models/file-reverse-proxy-provider.ts +++ b/ui/packages/api-client/src/models/file-reverse-proxy-provider.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/grant-request.ts b/ui/packages/api-client/src/models/grant-request.ts index 59f6bb5ba9..1bc7a060b3 100644 --- a/ui/packages/api-client/src/models/grant-request.ts +++ b/ui/packages/api-client/src/models/grant-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/group-kind.ts b/ui/packages/api-client/src/models/group-kind.ts index 93c1590c7a..1c84b72027 100644 --- a/ui/packages/api-client/src/models/group-kind.ts +++ b/ui/packages/api-client/src/models/group-kind.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/group-list.ts b/ui/packages/api-client/src/models/group-list.ts index 1e0584745f..2d8d80e5c9 100644 --- a/ui/packages/api-client/src/models/group-list.ts +++ b/ui/packages/api-client/src/models/group-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/group-spec.ts b/ui/packages/api-client/src/models/group-spec.ts index c123d697c7..b2b9a0e17a 100644 --- a/ui/packages/api-client/src/models/group-spec.ts +++ b/ui/packages/api-client/src/models/group-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/group-status.ts b/ui/packages/api-client/src/models/group-status.ts index 802ddd8ceb..0527de8046 100644 --- a/ui/packages/api-client/src/models/group-status.ts +++ b/ui/packages/api-client/src/models/group-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/group.ts b/ui/packages/api-client/src/models/group.ts index 2d63f5982b..3e787f1a47 100644 --- a/ui/packages/api-client/src/models/group.ts +++ b/ui/packages/api-client/src/models/group.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/halo-document.ts b/ui/packages/api-client/src/models/halo-document.ts index 0e63af16e8..6f5b87dc99 100644 --- a/ui/packages/api-client/src/models/halo-document.ts +++ b/ui/packages/api-client/src/models/halo-document.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/install-from-uri-request.ts b/ui/packages/api-client/src/models/install-from-uri-request.ts index 73853821e5..0345fd4f25 100644 --- a/ui/packages/api-client/src/models/install-from-uri-request.ts +++ b/ui/packages/api-client/src/models/install-from-uri-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/interest-reason-subject.ts b/ui/packages/api-client/src/models/interest-reason-subject.ts index 6eaef714ea..178bc8970a 100644 --- a/ui/packages/api-client/src/models/interest-reason-subject.ts +++ b/ui/packages/api-client/src/models/interest-reason-subject.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/interest-reason.ts b/ui/packages/api-client/src/models/interest-reason.ts index f49a9509ec..ed0b53b1c3 100644 --- a/ui/packages/api-client/src/models/interest-reason.ts +++ b/ui/packages/api-client/src/models/interest-reason.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/json-patch-inner.ts b/ui/packages/api-client/src/models/json-patch-inner.ts index 55b7f0185b..db134cf274 100644 --- a/ui/packages/api-client/src/models/json-patch-inner.ts +++ b/ui/packages/api-client/src/models/json-patch-inner.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/license.ts b/ui/packages/api-client/src/models/license.ts index 60a331df2a..f5ffa4973f 100644 --- a/ui/packages/api-client/src/models/license.ts +++ b/ui/packages/api-client/src/models/license.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/list-result-reply-vo.ts b/ui/packages/api-client/src/models/list-result-reply-vo.ts index f0e5a38cb0..06ec04d176 100644 --- a/ui/packages/api-client/src/models/list-result-reply-vo.ts +++ b/ui/packages/api-client/src/models/list-result-reply-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-auth-provider.ts b/ui/packages/api-client/src/models/listed-auth-provider.ts index 4cc81669ed..3012e87bc9 100644 --- a/ui/packages/api-client/src/models/listed-auth-provider.ts +++ b/ui/packages/api-client/src/models/listed-auth-provider.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-comment-list.ts b/ui/packages/api-client/src/models/listed-comment-list.ts index f9be33078f..e89ae4bb85 100644 --- a/ui/packages/api-client/src/models/listed-comment-list.ts +++ b/ui/packages/api-client/src/models/listed-comment-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-comment.ts b/ui/packages/api-client/src/models/listed-comment.ts index ffbac03d69..4d9460f0e1 100644 --- a/ui/packages/api-client/src/models/listed-comment.ts +++ b/ui/packages/api-client/src/models/listed-comment.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-post-list.ts b/ui/packages/api-client/src/models/listed-post-list.ts index 28bbaf633f..b674109a7b 100644 --- a/ui/packages/api-client/src/models/listed-post-list.ts +++ b/ui/packages/api-client/src/models/listed-post-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-post-vo-list.ts b/ui/packages/api-client/src/models/listed-post-vo-list.ts index 1c4196d13e..81ff92199b 100644 --- a/ui/packages/api-client/src/models/listed-post-vo-list.ts +++ b/ui/packages/api-client/src/models/listed-post-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-post-vo.ts b/ui/packages/api-client/src/models/listed-post-vo.ts index 476011cb0b..0d28adac33 100644 --- a/ui/packages/api-client/src/models/listed-post-vo.ts +++ b/ui/packages/api-client/src/models/listed-post-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-post.ts b/ui/packages/api-client/src/models/listed-post.ts index 29c43c53d7..66ace8dbad 100644 --- a/ui/packages/api-client/src/models/listed-post.ts +++ b/ui/packages/api-client/src/models/listed-post.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-reply-list.ts b/ui/packages/api-client/src/models/listed-reply-list.ts index a21a4d0639..51c5e632bd 100644 --- a/ui/packages/api-client/src/models/listed-reply-list.ts +++ b/ui/packages/api-client/src/models/listed-reply-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-reply.ts b/ui/packages/api-client/src/models/listed-reply.ts index e996ebeb58..ec86436845 100644 --- a/ui/packages/api-client/src/models/listed-reply.ts +++ b/ui/packages/api-client/src/models/listed-reply.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-single-page-list.ts b/ui/packages/api-client/src/models/listed-single-page-list.ts index 22ad20f389..b560e2c9d8 100644 --- a/ui/packages/api-client/src/models/listed-single-page-list.ts +++ b/ui/packages/api-client/src/models/listed-single-page-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-single-page-vo-list.ts b/ui/packages/api-client/src/models/listed-single-page-vo-list.ts index b9258117c6..0843c71288 100644 --- a/ui/packages/api-client/src/models/listed-single-page-vo-list.ts +++ b/ui/packages/api-client/src/models/listed-single-page-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-single-page-vo.ts b/ui/packages/api-client/src/models/listed-single-page-vo.ts index 303069e047..c434deb570 100644 --- a/ui/packages/api-client/src/models/listed-single-page-vo.ts +++ b/ui/packages/api-client/src/models/listed-single-page-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-single-page.ts b/ui/packages/api-client/src/models/listed-single-page.ts index 560ddf04bc..e821e9431a 100644 --- a/ui/packages/api-client/src/models/listed-single-page.ts +++ b/ui/packages/api-client/src/models/listed-single-page.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-snapshot-dto.ts b/ui/packages/api-client/src/models/listed-snapshot-dto.ts index baab002ca4..2a40411c40 100644 --- a/ui/packages/api-client/src/models/listed-snapshot-dto.ts +++ b/ui/packages/api-client/src/models/listed-snapshot-dto.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-snapshot-spec.ts b/ui/packages/api-client/src/models/listed-snapshot-spec.ts index a5bcb2668c..536f20116d 100644 --- a/ui/packages/api-client/src/models/listed-snapshot-spec.ts +++ b/ui/packages/api-client/src/models/listed-snapshot-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/listed-user.ts b/ui/packages/api-client/src/models/listed-user.ts index 6f1fe1ea08..e226c49050 100644 --- a/ui/packages/api-client/src/models/listed-user.ts +++ b/ui/packages/api-client/src/models/listed-user.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/local-thumbnail-list.ts b/ui/packages/api-client/src/models/local-thumbnail-list.ts index 459181d52a..961555291e 100644 --- a/ui/packages/api-client/src/models/local-thumbnail-list.ts +++ b/ui/packages/api-client/src/models/local-thumbnail-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/local-thumbnail-spec.ts b/ui/packages/api-client/src/models/local-thumbnail-spec.ts index 32fcf91964..901b8f862e 100644 --- a/ui/packages/api-client/src/models/local-thumbnail-spec.ts +++ b/ui/packages/api-client/src/models/local-thumbnail-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/local-thumbnail-status.ts b/ui/packages/api-client/src/models/local-thumbnail-status.ts index acbd77e1e8..9ed65b157b 100644 --- a/ui/packages/api-client/src/models/local-thumbnail-status.ts +++ b/ui/packages/api-client/src/models/local-thumbnail-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/local-thumbnail.ts b/ui/packages/api-client/src/models/local-thumbnail.ts index 144c86531a..301a0461b6 100644 --- a/ui/packages/api-client/src/models/local-thumbnail.ts +++ b/ui/packages/api-client/src/models/local-thumbnail.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/login-history.ts b/ui/packages/api-client/src/models/login-history.ts index 29156a8cfe..e4425902ca 100644 --- a/ui/packages/api-client/src/models/login-history.ts +++ b/ui/packages/api-client/src/models/login-history.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/mark-specified-request.ts b/ui/packages/api-client/src/models/mark-specified-request.ts index 84862792be..26a1b5449c 100644 --- a/ui/packages/api-client/src/models/mark-specified-request.ts +++ b/ui/packages/api-client/src/models/mark-specified-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-item-list.ts b/ui/packages/api-client/src/models/menu-item-list.ts index 87fee92126..c3dbb00ff5 100644 --- a/ui/packages/api-client/src/models/menu-item-list.ts +++ b/ui/packages/api-client/src/models/menu-item-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-item-spec.ts b/ui/packages/api-client/src/models/menu-item-spec.ts index a847673d31..b9bbdec9da 100644 --- a/ui/packages/api-client/src/models/menu-item-spec.ts +++ b/ui/packages/api-client/src/models/menu-item-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-item-status.ts b/ui/packages/api-client/src/models/menu-item-status.ts index b239d73cb7..41ae77d2dd 100644 --- a/ui/packages/api-client/src/models/menu-item-status.ts +++ b/ui/packages/api-client/src/models/menu-item-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-item-vo.ts b/ui/packages/api-client/src/models/menu-item-vo.ts index 0502d81388..e6b8c6823b 100644 --- a/ui/packages/api-client/src/models/menu-item-vo.ts +++ b/ui/packages/api-client/src/models/menu-item-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-item.ts b/ui/packages/api-client/src/models/menu-item.ts index 52774311d8..a6fd63fc52 100644 --- a/ui/packages/api-client/src/models/menu-item.ts +++ b/ui/packages/api-client/src/models/menu-item.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-list.ts b/ui/packages/api-client/src/models/menu-list.ts index d80c9c3478..fd8e1fc55f 100644 --- a/ui/packages/api-client/src/models/menu-list.ts +++ b/ui/packages/api-client/src/models/menu-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu-spec.ts b/ui/packages/api-client/src/models/menu-spec.ts index c065407b06..5c00cada37 100644 --- a/ui/packages/api-client/src/models/menu-spec.ts +++ b/ui/packages/api-client/src/models/menu-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -27,7 +27,7 @@ export interface MenuSpec { */ 'displayName': string; /** - * Names of menu children below this menu. + * Menu items of this menu. * @type {Array} * @memberof MenuSpec */ diff --git a/ui/packages/api-client/src/models/menu-vo.ts b/ui/packages/api-client/src/models/menu-vo.ts index 043e49f4db..a55fb2a8fb 100644 --- a/ui/packages/api-client/src/models/menu-vo.ts +++ b/ui/packages/api-client/src/models/menu-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/menu.ts b/ui/packages/api-client/src/models/menu.ts index 0e0b999e6d..9f4f88d49b 100644 --- a/ui/packages/api-client/src/models/menu.ts +++ b/ui/packages/api-client/src/models/menu.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/metadata.ts b/ui/packages/api-client/src/models/metadata.ts index fd16cd04b0..117be32d4a 100644 --- a/ui/packages/api-client/src/models/metadata.ts +++ b/ui/packages/api-client/src/models/metadata.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/move-operation.ts b/ui/packages/api-client/src/models/move-operation.ts index b6c3219bf2..e75e01fbf2 100644 --- a/ui/packages/api-client/src/models/move-operation.ts +++ b/ui/packages/api-client/src/models/move-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/navigation-post-vo.ts b/ui/packages/api-client/src/models/navigation-post-vo.ts index c314cc0299..22f383107b 100644 --- a/ui/packages/api-client/src/models/navigation-post-vo.ts +++ b/ui/packages/api-client/src/models/navigation-post-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification-list.ts b/ui/packages/api-client/src/models/notification-list.ts index 837997442a..40352592f1 100644 --- a/ui/packages/api-client/src/models/notification-list.ts +++ b/ui/packages/api-client/src/models/notification-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification-spec.ts b/ui/packages/api-client/src/models/notification-spec.ts index 7cfae6318f..188da77381 100644 --- a/ui/packages/api-client/src/models/notification-spec.ts +++ b/ui/packages/api-client/src/models/notification-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification-template-list.ts b/ui/packages/api-client/src/models/notification-template-list.ts index 77b858f70c..208d6e5308 100644 --- a/ui/packages/api-client/src/models/notification-template-list.ts +++ b/ui/packages/api-client/src/models/notification-template-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification-template-spec.ts b/ui/packages/api-client/src/models/notification-template-spec.ts index 6d16e95910..4a6b5f6bea 100644 --- a/ui/packages/api-client/src/models/notification-template-spec.ts +++ b/ui/packages/api-client/src/models/notification-template-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification-template.ts b/ui/packages/api-client/src/models/notification-template.ts index 729f53e9d9..e0aeeccf6f 100644 --- a/ui/packages/api-client/src/models/notification-template.ts +++ b/ui/packages/api-client/src/models/notification-template.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notification.ts b/ui/packages/api-client/src/models/notification.ts index 4dbd0ec2db..16e389e257 100644 --- a/ui/packages/api-client/src/models/notification.ts +++ b/ui/packages/api-client/src/models/notification.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notifier-descriptor-list.ts b/ui/packages/api-client/src/models/notifier-descriptor-list.ts index 605b5970b0..b9a88b7e86 100644 --- a/ui/packages/api-client/src/models/notifier-descriptor-list.ts +++ b/ui/packages/api-client/src/models/notifier-descriptor-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notifier-descriptor-spec.ts b/ui/packages/api-client/src/models/notifier-descriptor-spec.ts index 1a9bf3a388..6dd5a32596 100644 --- a/ui/packages/api-client/src/models/notifier-descriptor-spec.ts +++ b/ui/packages/api-client/src/models/notifier-descriptor-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notifier-descriptor.ts b/ui/packages/api-client/src/models/notifier-descriptor.ts index 5e3a5ae17d..b6829a06a2 100644 --- a/ui/packages/api-client/src/models/notifier-descriptor.ts +++ b/ui/packages/api-client/src/models/notifier-descriptor.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notifier-info.ts b/ui/packages/api-client/src/models/notifier-info.ts index a5c6f6197b..9aafe9acf8 100644 --- a/ui/packages/api-client/src/models/notifier-info.ts +++ b/ui/packages/api-client/src/models/notifier-info.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/notifier-setting-ref.ts b/ui/packages/api-client/src/models/notifier-setting-ref.ts index 34bf937d2d..c3c19eac32 100644 --- a/ui/packages/api-client/src/models/notifier-setting-ref.ts +++ b/ui/packages/api-client/src/models/notifier-setting-ref.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/owner-info.ts b/ui/packages/api-client/src/models/owner-info.ts index 41592673fa..1e84fae905 100644 --- a/ui/packages/api-client/src/models/owner-info.ts +++ b/ui/packages/api-client/src/models/owner-info.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/password-request.ts b/ui/packages/api-client/src/models/password-request.ts index 3fd6937636..7e4e199ebb 100644 --- a/ui/packages/api-client/src/models/password-request.ts +++ b/ui/packages/api-client/src/models/password-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/pat-spec.ts b/ui/packages/api-client/src/models/pat-spec.ts index 801f040308..83cd162c95 100644 --- a/ui/packages/api-client/src/models/pat-spec.ts +++ b/ui/packages/api-client/src/models/pat-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/personal-access-token-list.ts b/ui/packages/api-client/src/models/personal-access-token-list.ts index 362d6d716c..185e4190c8 100644 --- a/ui/packages/api-client/src/models/personal-access-token-list.ts +++ b/ui/packages/api-client/src/models/personal-access-token-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/personal-access-token.ts b/ui/packages/api-client/src/models/personal-access-token.ts index aaa9093162..9bb325a888 100644 --- a/ui/packages/api-client/src/models/personal-access-token.ts +++ b/ui/packages/api-client/src/models/personal-access-token.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin-author.ts b/ui/packages/api-client/src/models/plugin-author.ts index 62b0843b97..488549a473 100644 --- a/ui/packages/api-client/src/models/plugin-author.ts +++ b/ui/packages/api-client/src/models/plugin-author.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin-list.ts b/ui/packages/api-client/src/models/plugin-list.ts index 14e1c3c811..629410023a 100644 --- a/ui/packages/api-client/src/models/plugin-list.ts +++ b/ui/packages/api-client/src/models/plugin-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin-running-state-request.ts b/ui/packages/api-client/src/models/plugin-running-state-request.ts index c6f716e667..5db1188343 100644 --- a/ui/packages/api-client/src/models/plugin-running-state-request.ts +++ b/ui/packages/api-client/src/models/plugin-running-state-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin-spec.ts b/ui/packages/api-client/src/models/plugin-spec.ts index b267fa3524..4c57176687 100644 --- a/ui/packages/api-client/src/models/plugin-spec.ts +++ b/ui/packages/api-client/src/models/plugin-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin-status.ts b/ui/packages/api-client/src/models/plugin-status.ts index f123382941..8c9d48bb62 100644 --- a/ui/packages/api-client/src/models/plugin-status.ts +++ b/ui/packages/api-client/src/models/plugin-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/plugin.ts b/ui/packages/api-client/src/models/plugin.ts index bf1f7cffe9..c8453d9ad8 100644 --- a/ui/packages/api-client/src/models/plugin.ts +++ b/ui/packages/api-client/src/models/plugin.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-list.ts b/ui/packages/api-client/src/models/policy-list.ts index 5acb275e05..d1f2940227 100644 --- a/ui/packages/api-client/src/models/policy-list.ts +++ b/ui/packages/api-client/src/models/policy-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-rule.ts b/ui/packages/api-client/src/models/policy-rule.ts index 3845ae9731..095154e9e2 100644 --- a/ui/packages/api-client/src/models/policy-rule.ts +++ b/ui/packages/api-client/src/models/policy-rule.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-spec.ts b/ui/packages/api-client/src/models/policy-spec.ts index 66923dbe79..bdfbcb1a0c 100644 --- a/ui/packages/api-client/src/models/policy-spec.ts +++ b/ui/packages/api-client/src/models/policy-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-template-list.ts b/ui/packages/api-client/src/models/policy-template-list.ts index 2be03a66d5..258c9e8557 100644 --- a/ui/packages/api-client/src/models/policy-template-list.ts +++ b/ui/packages/api-client/src/models/policy-template-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-template-spec.ts b/ui/packages/api-client/src/models/policy-template-spec.ts index d23530ab55..5ae5959566 100644 --- a/ui/packages/api-client/src/models/policy-template-spec.ts +++ b/ui/packages/api-client/src/models/policy-template-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy-template.ts b/ui/packages/api-client/src/models/policy-template.ts index cc7272cea9..af720d361b 100644 --- a/ui/packages/api-client/src/models/policy-template.ts +++ b/ui/packages/api-client/src/models/policy-template.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/policy.ts b/ui/packages/api-client/src/models/policy.ts index d10b665f38..b52a6bcbd7 100644 --- a/ui/packages/api-client/src/models/policy.ts +++ b/ui/packages/api-client/src/models/policy.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post-list.ts b/ui/packages/api-client/src/models/post-list.ts index fbb27b8b18..e5482644bd 100644 --- a/ui/packages/api-client/src/models/post-list.ts +++ b/ui/packages/api-client/src/models/post-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post-request.ts b/ui/packages/api-client/src/models/post-request.ts index ad5c50896b..f8c6f00439 100644 --- a/ui/packages/api-client/src/models/post-request.ts +++ b/ui/packages/api-client/src/models/post-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post-spec.ts b/ui/packages/api-client/src/models/post-spec.ts index 3599158cef..bdce15415d 100644 --- a/ui/packages/api-client/src/models/post-spec.ts +++ b/ui/packages/api-client/src/models/post-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post-status.ts b/ui/packages/api-client/src/models/post-status.ts index 407f82ff14..8480b0a567 100644 --- a/ui/packages/api-client/src/models/post-status.ts +++ b/ui/packages/api-client/src/models/post-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post-vo.ts b/ui/packages/api-client/src/models/post-vo.ts index 3275c4926f..11d6ca053b 100644 --- a/ui/packages/api-client/src/models/post-vo.ts +++ b/ui/packages/api-client/src/models/post-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/post.ts b/ui/packages/api-client/src/models/post.ts index 695cb0079b..15d7177233 100644 --- a/ui/packages/api-client/src/models/post.ts +++ b/ui/packages/api-client/src/models/post.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-attributes.ts b/ui/packages/api-client/src/models/reason-attributes.ts index 32bed125d1..8f583c3836 100644 --- a/ui/packages/api-client/src/models/reason-attributes.ts +++ b/ui/packages/api-client/src/models/reason-attributes.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-list.ts b/ui/packages/api-client/src/models/reason-list.ts index a110f72d1f..1c456c0f95 100644 --- a/ui/packages/api-client/src/models/reason-list.ts +++ b/ui/packages/api-client/src/models/reason-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-property.ts b/ui/packages/api-client/src/models/reason-property.ts index 2830fd155d..0843eb1603 100644 --- a/ui/packages/api-client/src/models/reason-property.ts +++ b/ui/packages/api-client/src/models/reason-property.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-selector.ts b/ui/packages/api-client/src/models/reason-selector.ts index 324041d49d..12e5948244 100644 --- a/ui/packages/api-client/src/models/reason-selector.ts +++ b/ui/packages/api-client/src/models/reason-selector.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-spec.ts b/ui/packages/api-client/src/models/reason-spec.ts index 25229a3743..46554e95b5 100644 --- a/ui/packages/api-client/src/models/reason-spec.ts +++ b/ui/packages/api-client/src/models/reason-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-subject.ts b/ui/packages/api-client/src/models/reason-subject.ts index 0fb66ee863..c345f9d316 100644 --- a/ui/packages/api-client/src/models/reason-subject.ts +++ b/ui/packages/api-client/src/models/reason-subject.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-info.ts b/ui/packages/api-client/src/models/reason-type-info.ts index 258e6d1188..b78e2ae669 100644 --- a/ui/packages/api-client/src/models/reason-type-info.ts +++ b/ui/packages/api-client/src/models/reason-type-info.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-list.ts b/ui/packages/api-client/src/models/reason-type-list.ts index 30c80dd4cc..800aa20d28 100644 --- a/ui/packages/api-client/src/models/reason-type-list.ts +++ b/ui/packages/api-client/src/models/reason-type-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-notifier-collection-request.ts b/ui/packages/api-client/src/models/reason-type-notifier-collection-request.ts index 67152c2685..65f04d9b2b 100644 --- a/ui/packages/api-client/src/models/reason-type-notifier-collection-request.ts +++ b/ui/packages/api-client/src/models/reason-type-notifier-collection-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-notifier-matrix.ts b/ui/packages/api-client/src/models/reason-type-notifier-matrix.ts index 134d384f3b..694324eb2e 100644 --- a/ui/packages/api-client/src/models/reason-type-notifier-matrix.ts +++ b/ui/packages/api-client/src/models/reason-type-notifier-matrix.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-notifier-request.ts b/ui/packages/api-client/src/models/reason-type-notifier-request.ts index c04e10f7d6..664211f125 100644 --- a/ui/packages/api-client/src/models/reason-type-notifier-request.ts +++ b/ui/packages/api-client/src/models/reason-type-notifier-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type-spec.ts b/ui/packages/api-client/src/models/reason-type-spec.ts index 231fa8f045..6ec6000fdd 100644 --- a/ui/packages/api-client/src/models/reason-type-spec.ts +++ b/ui/packages/api-client/src/models/reason-type-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason-type.ts b/ui/packages/api-client/src/models/reason-type.ts index 0fc6e85075..77984c2dc6 100644 --- a/ui/packages/api-client/src/models/reason-type.ts +++ b/ui/packages/api-client/src/models/reason-type.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reason.ts b/ui/packages/api-client/src/models/reason.ts index 7ecfe59e5c..7bd6ab3624 100644 --- a/ui/packages/api-client/src/models/reason.ts +++ b/ui/packages/api-client/src/models/reason.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/ref.ts b/ui/packages/api-client/src/models/ref.ts index 33d6d08163..1ccc94846b 100644 --- a/ui/packages/api-client/src/models/ref.ts +++ b/ui/packages/api-client/src/models/ref.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/remember-me-token-list.ts b/ui/packages/api-client/src/models/remember-me-token-list.ts index 0b387edafd..fd454e17e8 100644 --- a/ui/packages/api-client/src/models/remember-me-token-list.ts +++ b/ui/packages/api-client/src/models/remember-me-token-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/remember-me-token-spec.ts b/ui/packages/api-client/src/models/remember-me-token-spec.ts index 4cf96dd32d..889207f942 100644 --- a/ui/packages/api-client/src/models/remember-me-token-spec.ts +++ b/ui/packages/api-client/src/models/remember-me-token-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/remember-me-token.ts b/ui/packages/api-client/src/models/remember-me-token.ts index ae0726a8b3..1cb6b46802 100644 --- a/ui/packages/api-client/src/models/remember-me-token.ts +++ b/ui/packages/api-client/src/models/remember-me-token.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/remove-operation.ts b/ui/packages/api-client/src/models/remove-operation.ts index f956b435aa..bf07e5b47f 100644 --- a/ui/packages/api-client/src/models/remove-operation.ts +++ b/ui/packages/api-client/src/models/remove-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/replace-operation.ts b/ui/packages/api-client/src/models/replace-operation.ts index b71ad824c0..7ba5ad4a9a 100644 --- a/ui/packages/api-client/src/models/replace-operation.ts +++ b/ui/packages/api-client/src/models/replace-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-list.ts b/ui/packages/api-client/src/models/reply-list.ts index 67bf3dc6b5..18a06c82c8 100644 --- a/ui/packages/api-client/src/models/reply-list.ts +++ b/ui/packages/api-client/src/models/reply-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-request.ts b/ui/packages/api-client/src/models/reply-request.ts index 91686636f4..d030dd47d3 100644 --- a/ui/packages/api-client/src/models/reply-request.ts +++ b/ui/packages/api-client/src/models/reply-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-spec.ts b/ui/packages/api-client/src/models/reply-spec.ts index 65c7b5a5e2..3e29dce8e0 100644 --- a/ui/packages/api-client/src/models/reply-spec.ts +++ b/ui/packages/api-client/src/models/reply-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-status.ts b/ui/packages/api-client/src/models/reply-status.ts index f84c2858d6..660d4a4c28 100644 --- a/ui/packages/api-client/src/models/reply-status.ts +++ b/ui/packages/api-client/src/models/reply-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-vo-list.ts b/ui/packages/api-client/src/models/reply-vo-list.ts index 1e235ea318..7bf6b6295b 100644 --- a/ui/packages/api-client/src/models/reply-vo-list.ts +++ b/ui/packages/api-client/src/models/reply-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply-vo.ts b/ui/packages/api-client/src/models/reply-vo.ts index 93a1528495..973748c6e3 100644 --- a/ui/packages/api-client/src/models/reply-vo.ts +++ b/ui/packages/api-client/src/models/reply-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reply.ts b/ui/packages/api-client/src/models/reply.ts index b6b0bc01eb..647722b267 100644 --- a/ui/packages/api-client/src/models/reply.ts +++ b/ui/packages/api-client/src/models/reply.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reverse-proxy-list.ts b/ui/packages/api-client/src/models/reverse-proxy-list.ts index 217cb94ff8..26e6a0011b 100644 --- a/ui/packages/api-client/src/models/reverse-proxy-list.ts +++ b/ui/packages/api-client/src/models/reverse-proxy-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reverse-proxy-rule.ts b/ui/packages/api-client/src/models/reverse-proxy-rule.ts index 9994bbcf17..8239c6d006 100644 --- a/ui/packages/api-client/src/models/reverse-proxy-rule.ts +++ b/ui/packages/api-client/src/models/reverse-proxy-rule.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/reverse-proxy.ts b/ui/packages/api-client/src/models/reverse-proxy.ts index ad9e99e617..ad144aae8c 100644 --- a/ui/packages/api-client/src/models/reverse-proxy.ts +++ b/ui/packages/api-client/src/models/reverse-proxy.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/revert-snapshot-for-post-param.ts b/ui/packages/api-client/src/models/revert-snapshot-for-post-param.ts index e3b89bf6db..05dacd5f15 100644 --- a/ui/packages/api-client/src/models/revert-snapshot-for-post-param.ts +++ b/ui/packages/api-client/src/models/revert-snapshot-for-post-param.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/revert-snapshot-for-single-param.ts b/ui/packages/api-client/src/models/revert-snapshot-for-single-param.ts index b0a1270194..d43912e7f0 100644 --- a/ui/packages/api-client/src/models/revert-snapshot-for-single-param.ts +++ b/ui/packages/api-client/src/models/revert-snapshot-for-single-param.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/role-binding-list.ts b/ui/packages/api-client/src/models/role-binding-list.ts index bde3eb9ce6..7f769673f0 100644 --- a/ui/packages/api-client/src/models/role-binding-list.ts +++ b/ui/packages/api-client/src/models/role-binding-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/role-binding.ts b/ui/packages/api-client/src/models/role-binding.ts index dd4ab07133..b74e43e1ac 100644 --- a/ui/packages/api-client/src/models/role-binding.ts +++ b/ui/packages/api-client/src/models/role-binding.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/role-list.ts b/ui/packages/api-client/src/models/role-list.ts index 699dee8e12..5fcafd0f60 100644 --- a/ui/packages/api-client/src/models/role-list.ts +++ b/ui/packages/api-client/src/models/role-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/role-ref.ts b/ui/packages/api-client/src/models/role-ref.ts index baed7ed600..22424ab49f 100644 --- a/ui/packages/api-client/src/models/role-ref.ts +++ b/ui/packages/api-client/src/models/role-ref.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/role.ts b/ui/packages/api-client/src/models/role.ts index 8e8fed1d82..553f52c33d 100644 --- a/ui/packages/api-client/src/models/role.ts +++ b/ui/packages/api-client/src/models/role.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/search-engine-list.ts b/ui/packages/api-client/src/models/search-engine-list.ts index 3a24be8488..3b2de34201 100644 --- a/ui/packages/api-client/src/models/search-engine-list.ts +++ b/ui/packages/api-client/src/models/search-engine-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/search-engine-spec.ts b/ui/packages/api-client/src/models/search-engine-spec.ts index 491811270a..fc3fbbcc5d 100644 --- a/ui/packages/api-client/src/models/search-engine-spec.ts +++ b/ui/packages/api-client/src/models/search-engine-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/search-engine.ts b/ui/packages/api-client/src/models/search-engine.ts index 3bfb84f330..bd81509653 100644 --- a/ui/packages/api-client/src/models/search-engine.ts +++ b/ui/packages/api-client/src/models/search-engine.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/search-option.ts b/ui/packages/api-client/src/models/search-option.ts index a2cc90c527..58be878c78 100644 --- a/ui/packages/api-client/src/models/search-option.ts +++ b/ui/packages/api-client/src/models/search-option.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/search-result.ts b/ui/packages/api-client/src/models/search-result.ts index 963e295b3f..da91f181dc 100644 --- a/ui/packages/api-client/src/models/search-result.ts +++ b/ui/packages/api-client/src/models/search-result.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/secret-list.ts b/ui/packages/api-client/src/models/secret-list.ts index 2b44031633..07a6b28f24 100644 --- a/ui/packages/api-client/src/models/secret-list.ts +++ b/ui/packages/api-client/src/models/secret-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/secret.ts b/ui/packages/api-client/src/models/secret.ts index a84ac4e57d..429d9723ed 100644 --- a/ui/packages/api-client/src/models/secret.ts +++ b/ui/packages/api-client/src/models/secret.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/setting-form.ts b/ui/packages/api-client/src/models/setting-form.ts index ae69fd51b2..94f8b7ed26 100644 --- a/ui/packages/api-client/src/models/setting-form.ts +++ b/ui/packages/api-client/src/models/setting-form.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/setting-list.ts b/ui/packages/api-client/src/models/setting-list.ts index ffcf6786a5..0bc4d516b8 100644 --- a/ui/packages/api-client/src/models/setting-list.ts +++ b/ui/packages/api-client/src/models/setting-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/setting-ref.ts b/ui/packages/api-client/src/models/setting-ref.ts index 62b65d84c9..b627d345b3 100644 --- a/ui/packages/api-client/src/models/setting-ref.ts +++ b/ui/packages/api-client/src/models/setting-ref.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/setting-spec.ts b/ui/packages/api-client/src/models/setting-spec.ts index 2198580661..22a61ab5d0 100644 --- a/ui/packages/api-client/src/models/setting-spec.ts +++ b/ui/packages/api-client/src/models/setting-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/setting.ts b/ui/packages/api-client/src/models/setting.ts index afb4d87c72..c90bd7bf08 100644 --- a/ui/packages/api-client/src/models/setting.ts +++ b/ui/packages/api-client/src/models/setting.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page-list.ts b/ui/packages/api-client/src/models/single-page-list.ts index 3150910033..6839a4a390 100644 --- a/ui/packages/api-client/src/models/single-page-list.ts +++ b/ui/packages/api-client/src/models/single-page-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page-request.ts b/ui/packages/api-client/src/models/single-page-request.ts index 865ec10e15..596edd6fd6 100644 --- a/ui/packages/api-client/src/models/single-page-request.ts +++ b/ui/packages/api-client/src/models/single-page-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page-spec.ts b/ui/packages/api-client/src/models/single-page-spec.ts index af133f4687..6c522f3bd8 100644 --- a/ui/packages/api-client/src/models/single-page-spec.ts +++ b/ui/packages/api-client/src/models/single-page-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page-status.ts b/ui/packages/api-client/src/models/single-page-status.ts index d74e35b6bb..63321face6 100644 --- a/ui/packages/api-client/src/models/single-page-status.ts +++ b/ui/packages/api-client/src/models/single-page-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page-vo.ts b/ui/packages/api-client/src/models/single-page-vo.ts index 0d51b33384..79f6cb32da 100644 --- a/ui/packages/api-client/src/models/single-page-vo.ts +++ b/ui/packages/api-client/src/models/single-page-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/single-page.ts b/ui/packages/api-client/src/models/single-page.ts index b0103c8a9e..e8b9d1e162 100644 --- a/ui/packages/api-client/src/models/single-page.ts +++ b/ui/packages/api-client/src/models/single-page.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/site-stats-vo.ts b/ui/packages/api-client/src/models/site-stats-vo.ts index 3c9e6ba09e..0cbdd98d7e 100644 --- a/ui/packages/api-client/src/models/site-stats-vo.ts +++ b/ui/packages/api-client/src/models/site-stats-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/snap-shot-spec.ts b/ui/packages/api-client/src/models/snap-shot-spec.ts index 4827c964d6..ff83e6766d 100644 --- a/ui/packages/api-client/src/models/snap-shot-spec.ts +++ b/ui/packages/api-client/src/models/snap-shot-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/snapshot-list.ts b/ui/packages/api-client/src/models/snapshot-list.ts index e3a529b260..3ba308970c 100644 --- a/ui/packages/api-client/src/models/snapshot-list.ts +++ b/ui/packages/api-client/src/models/snapshot-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/snapshot.ts b/ui/packages/api-client/src/models/snapshot.ts index 6c4904adde..cec9dccc7e 100644 --- a/ui/packages/api-client/src/models/snapshot.ts +++ b/ui/packages/api-client/src/models/snapshot.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/stats-vo.ts b/ui/packages/api-client/src/models/stats-vo.ts index abcc0e1e80..03fcd641e8 100644 --- a/ui/packages/api-client/src/models/stats-vo.ts +++ b/ui/packages/api-client/src/models/stats-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/stats.ts b/ui/packages/api-client/src/models/stats.ts index 5929c3a303..74e2b2afc3 100644 --- a/ui/packages/api-client/src/models/stats.ts +++ b/ui/packages/api-client/src/models/stats.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/subject.ts b/ui/packages/api-client/src/models/subject.ts index 6ae00195ad..8ebd1e39f0 100644 --- a/ui/packages/api-client/src/models/subject.ts +++ b/ui/packages/api-client/src/models/subject.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/subscription-list.ts b/ui/packages/api-client/src/models/subscription-list.ts index bcf4de0467..47f84fac9a 100644 --- a/ui/packages/api-client/src/models/subscription-list.ts +++ b/ui/packages/api-client/src/models/subscription-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/subscription-spec.ts b/ui/packages/api-client/src/models/subscription-spec.ts index 7f36010d54..e1817e4c40 100644 --- a/ui/packages/api-client/src/models/subscription-spec.ts +++ b/ui/packages/api-client/src/models/subscription-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/subscription-subscriber.ts b/ui/packages/api-client/src/models/subscription-subscriber.ts index 1618ef7d78..0d484a2627 100644 --- a/ui/packages/api-client/src/models/subscription-subscriber.ts +++ b/ui/packages/api-client/src/models/subscription-subscriber.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/subscription.ts b/ui/packages/api-client/src/models/subscription.ts index b2738ce439..2d407ddacf 100644 --- a/ui/packages/api-client/src/models/subscription.ts +++ b/ui/packages/api-client/src/models/subscription.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag-list.ts b/ui/packages/api-client/src/models/tag-list.ts index db7a1c021d..2f7563215b 100644 --- a/ui/packages/api-client/src/models/tag-list.ts +++ b/ui/packages/api-client/src/models/tag-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag-spec.ts b/ui/packages/api-client/src/models/tag-spec.ts index c090d61eb0..8490a5ac3d 100644 --- a/ui/packages/api-client/src/models/tag-spec.ts +++ b/ui/packages/api-client/src/models/tag-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag-status.ts b/ui/packages/api-client/src/models/tag-status.ts index 3f15793fcd..a5c3e4f52e 100644 --- a/ui/packages/api-client/src/models/tag-status.ts +++ b/ui/packages/api-client/src/models/tag-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag-vo-list.ts b/ui/packages/api-client/src/models/tag-vo-list.ts index c78afb37b0..a36e102579 100644 --- a/ui/packages/api-client/src/models/tag-vo-list.ts +++ b/ui/packages/api-client/src/models/tag-vo-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag-vo.ts b/ui/packages/api-client/src/models/tag-vo.ts index 53fa32311f..3c881fcf87 100644 --- a/ui/packages/api-client/src/models/tag-vo.ts +++ b/ui/packages/api-client/src/models/tag-vo.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/tag.ts b/ui/packages/api-client/src/models/tag.ts index 79900f6e83..d46e174cec 100644 --- a/ui/packages/api-client/src/models/tag.ts +++ b/ui/packages/api-client/src/models/tag.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/template-content.ts b/ui/packages/api-client/src/models/template-content.ts index 8b451752bd..19f27f7c44 100644 --- a/ui/packages/api-client/src/models/template-content.ts +++ b/ui/packages/api-client/src/models/template-content.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/template-descriptor.ts b/ui/packages/api-client/src/models/template-descriptor.ts index 950820c4f2..595132397a 100644 --- a/ui/packages/api-client/src/models/template-descriptor.ts +++ b/ui/packages/api-client/src/models/template-descriptor.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/test-operation.ts b/ui/packages/api-client/src/models/test-operation.ts index aff467e841..e6e0d95c59 100644 --- a/ui/packages/api-client/src/models/test-operation.ts +++ b/ui/packages/api-client/src/models/test-operation.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/theme-list.ts b/ui/packages/api-client/src/models/theme-list.ts index 4e7d198d51..6d01f6b4cc 100644 --- a/ui/packages/api-client/src/models/theme-list.ts +++ b/ui/packages/api-client/src/models/theme-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/theme-spec.ts b/ui/packages/api-client/src/models/theme-spec.ts index f85fcb0fdb..e07eaffe34 100644 --- a/ui/packages/api-client/src/models/theme-spec.ts +++ b/ui/packages/api-client/src/models/theme-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/theme-status.ts b/ui/packages/api-client/src/models/theme-status.ts index 4a7984124d..5fa6301bea 100644 --- a/ui/packages/api-client/src/models/theme-status.ts +++ b/ui/packages/api-client/src/models/theme-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/theme.ts b/ui/packages/api-client/src/models/theme.ts index e43ff98434..5eb37061b7 100644 --- a/ui/packages/api-client/src/models/theme.ts +++ b/ui/packages/api-client/src/models/theme.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/thumbnail-list.ts b/ui/packages/api-client/src/models/thumbnail-list.ts index 9c1bd3c9a3..87de85ae43 100644 --- a/ui/packages/api-client/src/models/thumbnail-list.ts +++ b/ui/packages/api-client/src/models/thumbnail-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/thumbnail-spec.ts b/ui/packages/api-client/src/models/thumbnail-spec.ts index 863f99ca96..d5ca1593e3 100644 --- a/ui/packages/api-client/src/models/thumbnail-spec.ts +++ b/ui/packages/api-client/src/models/thumbnail-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/thumbnail.ts b/ui/packages/api-client/src/models/thumbnail.ts index 6b26f942a5..cf22cc3f77 100644 --- a/ui/packages/api-client/src/models/thumbnail.ts +++ b/ui/packages/api-client/src/models/thumbnail.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/totp-auth-link-response.ts b/ui/packages/api-client/src/models/totp-auth-link-response.ts index f7aa619c0a..8e97e8196e 100644 --- a/ui/packages/api-client/src/models/totp-auth-link-response.ts +++ b/ui/packages/api-client/src/models/totp-auth-link-response.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/totp-request.ts b/ui/packages/api-client/src/models/totp-request.ts index b2dac00493..1d84104450 100644 --- a/ui/packages/api-client/src/models/totp-request.ts +++ b/ui/packages/api-client/src/models/totp-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/two-factor-auth-settings.ts b/ui/packages/api-client/src/models/two-factor-auth-settings.ts index 89e2e78de4..a0b3beea85 100644 --- a/ui/packages/api-client/src/models/two-factor-auth-settings.ts +++ b/ui/packages/api-client/src/models/two-factor-auth-settings.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/uc-upload-request-form-data.ts b/ui/packages/api-client/src/models/uc-upload-request-form-data.ts index f04f8734f0..7aa532513a 100644 --- a/ui/packages/api-client/src/models/uc-upload-request-form-data.ts +++ b/ui/packages/api-client/src/models/uc-upload-request-form-data.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/upgrade-from-uri-request.ts b/ui/packages/api-client/src/models/upgrade-from-uri-request.ts index 6ced3175b5..8626a0e1fd 100644 --- a/ui/packages/api-client/src/models/upgrade-from-uri-request.ts +++ b/ui/packages/api-client/src/models/upgrade-from-uri-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/upload-from-url-request.ts b/ui/packages/api-client/src/models/upload-from-url-request.ts index d2ab8119ae..6c77d3ff30 100644 --- a/ui/packages/api-client/src/models/upload-from-url-request.ts +++ b/ui/packages/api-client/src/models/upload-from-url-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-connection-list.ts b/ui/packages/api-client/src/models/user-connection-list.ts index 40bf1ab5b5..e3a9006e96 100644 --- a/ui/packages/api-client/src/models/user-connection-list.ts +++ b/ui/packages/api-client/src/models/user-connection-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-connection-spec.ts b/ui/packages/api-client/src/models/user-connection-spec.ts index 31994c9196..6524dc0321 100644 --- a/ui/packages/api-client/src/models/user-connection-spec.ts +++ b/ui/packages/api-client/src/models/user-connection-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-connection.ts b/ui/packages/api-client/src/models/user-connection.ts index 720cf17666..49e3c15bbf 100644 --- a/ui/packages/api-client/src/models/user-connection.ts +++ b/ui/packages/api-client/src/models/user-connection.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-device.ts b/ui/packages/api-client/src/models/user-device.ts index e05819010e..955772e57a 100644 --- a/ui/packages/api-client/src/models/user-device.ts +++ b/ui/packages/api-client/src/models/user-device.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-endpoint-listed-user-list.ts b/ui/packages/api-client/src/models/user-endpoint-listed-user-list.ts index 847b590dfe..861931d20a 100644 --- a/ui/packages/api-client/src/models/user-endpoint-listed-user-list.ts +++ b/ui/packages/api-client/src/models/user-endpoint-listed-user-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-list.ts b/ui/packages/api-client/src/models/user-list.ts index 817e175806..ab3a822962 100644 --- a/ui/packages/api-client/src/models/user-list.ts +++ b/ui/packages/api-client/src/models/user-list.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-permission.ts b/ui/packages/api-client/src/models/user-permission.ts index b7eb5d3a22..27398e05ab 100644 --- a/ui/packages/api-client/src/models/user-permission.ts +++ b/ui/packages/api-client/src/models/user-permission.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-spec.ts b/ui/packages/api-client/src/models/user-spec.ts index c1180e4b07..ccb0510bd5 100644 --- a/ui/packages/api-client/src/models/user-spec.ts +++ b/ui/packages/api-client/src/models/user-spec.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user-status.ts b/ui/packages/api-client/src/models/user-status.ts index 0b816a7b1b..1cce19fac9 100644 --- a/ui/packages/api-client/src/models/user-status.ts +++ b/ui/packages/api-client/src/models/user-status.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/user.ts b/ui/packages/api-client/src/models/user.ts index f400fca6e9..9523f6d425 100644 --- a/ui/packages/api-client/src/models/user.ts +++ b/ui/packages/api-client/src/models/user.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/verify-code-request.ts b/ui/packages/api-client/src/models/verify-code-request.ts index 5336675935..5741a24c8e 100644 --- a/ui/packages/api-client/src/models/verify-code-request.ts +++ b/ui/packages/api-client/src/models/verify-code-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/ui/packages/api-client/src/models/vote-request.ts b/ui/packages/api-client/src/models/vote-request.ts index 6a63ca7a58..f4af56d609 100644 --- a/ui/packages/api-client/src/models/vote-request.ts +++ b/ui/packages/api-client/src/models/vote-request.ts @@ -4,7 +4,7 @@ * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.20.0-SNAPSHOT + * The version of the OpenAPI document: 2.20.10-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).