@halo-dev/api-client 0.0.61 → 0.0.63-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -132,51 +132,21 @@ declare class BaseAPI {
132
132
  /**
133
133
  *
134
134
  * @export
135
- * @interface AttachmentSpec
135
+ * @interface GroupKind
136
136
  */
137
- interface AttachmentSpec {
138
- /**
139
- * Display name of attachment
140
- * @type {string}
141
- * @memberof AttachmentSpec
142
- */
143
- displayName?: string;
144
- /**
145
- * Group name
146
- * @type {string}
147
- * @memberof AttachmentSpec
148
- */
149
- groupName?: string;
150
- /**
151
- * Policy name
152
- * @type {string}
153
- * @memberof AttachmentSpec
154
- */
155
- policyName?: string;
137
+ interface GroupKind {
156
138
  /**
157
- * Name of User who uploads the attachment
139
+ *
158
140
  * @type {string}
159
- * @memberof AttachmentSpec
141
+ * @memberof GroupKind
160
142
  */
161
- ownerName?: string;
143
+ group?: string;
162
144
  /**
163
- * Media type of attachment
145
+ *
164
146
  * @type {string}
165
- * @memberof AttachmentSpec
166
- */
167
- mediaType?: string;
168
- /**
169
- * Size of attachment. Unit is Byte
170
- * @type {number}
171
- * @memberof AttachmentSpec
172
- */
173
- size?: number;
174
- /**
175
- * Tags of attachment
176
- * @type {Array<string>}
177
- * @memberof AttachmentSpec
147
+ * @memberof GroupKind
178
148
  */
179
- tags?: Array<string>;
149
+ kind?: string;
180
150
  }
181
151
 
182
152
  /**
@@ -190,18 +160,25 @@ interface AttachmentSpec {
190
160
  * https://openapi-generator.tech
191
161
  * Do not edit the class manually.
192
162
  */
163
+
193
164
  /**
194
165
  *
195
166
  * @export
196
- * @interface AttachmentStatus
167
+ * @interface AnnotationSettingSpec
197
168
  */
198
- interface AttachmentStatus {
169
+ interface AnnotationSettingSpec {
199
170
  /**
200
- * Permalink of attachment
201
- * @type {string}
202
- * @memberof AttachmentStatus
171
+ *
172
+ * @type {GroupKind}
173
+ * @memberof AnnotationSettingSpec
203
174
  */
204
- permalink?: string;
175
+ targetRef?: GroupKind;
176
+ /**
177
+ *
178
+ * @type {Array<object>}
179
+ * @memberof AnnotationSettingSpec
180
+ */
181
+ formSchema?: Array<object>;
205
182
  }
206
183
 
207
184
  /**
@@ -275,6 +252,210 @@ interface Metadata {
275
252
  deletionTimestamp?: string | null;
276
253
  }
277
254
 
255
+ /**
256
+ * Halo Next API
257
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
258
+ *
259
+ * The version of the OpenAPI document: 2.0.0
260
+ *
261
+ *
262
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
263
+ * https://openapi-generator.tech
264
+ * Do not edit the class manually.
265
+ */
266
+
267
+ /**
268
+ *
269
+ * @export
270
+ * @interface AnnotationSetting
271
+ */
272
+ interface AnnotationSetting {
273
+ /**
274
+ *
275
+ * @type {AnnotationSettingSpec}
276
+ * @memberof AnnotationSetting
277
+ */
278
+ spec?: AnnotationSettingSpec;
279
+ /**
280
+ *
281
+ * @type {string}
282
+ * @memberof AnnotationSetting
283
+ */
284
+ apiVersion: string;
285
+ /**
286
+ *
287
+ * @type {string}
288
+ * @memberof AnnotationSetting
289
+ */
290
+ kind: string;
291
+ /**
292
+ *
293
+ * @type {Metadata}
294
+ * @memberof AnnotationSetting
295
+ */
296
+ metadata: Metadata;
297
+ }
298
+
299
+ /**
300
+ * Halo Next API
301
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
302
+ *
303
+ * The version of the OpenAPI document: 2.0.0
304
+ *
305
+ *
306
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
307
+ * https://openapi-generator.tech
308
+ * Do not edit the class manually.
309
+ */
310
+
311
+ /**
312
+ *
313
+ * @export
314
+ * @interface AnnotationSettingList
315
+ */
316
+ interface AnnotationSettingList {
317
+ /**
318
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
319
+ * @type {number}
320
+ * @memberof AnnotationSettingList
321
+ */
322
+ page: number;
323
+ /**
324
+ * Size of each page. If not set or equal to 0, it means no pagination.
325
+ * @type {number}
326
+ * @memberof AnnotationSettingList
327
+ */
328
+ size: number;
329
+ /**
330
+ * Total elements.
331
+ * @type {number}
332
+ * @memberof AnnotationSettingList
333
+ */
334
+ total: number;
335
+ /**
336
+ * A chunk of items.
337
+ * @type {Array<AnnotationSetting>}
338
+ * @memberof AnnotationSettingList
339
+ */
340
+ items: Array<AnnotationSetting>;
341
+ /**
342
+ * Indicates whether current page is the first page.
343
+ * @type {boolean}
344
+ * @memberof AnnotationSettingList
345
+ */
346
+ first: boolean;
347
+ /**
348
+ * Indicates whether current page is the last page.
349
+ * @type {boolean}
350
+ * @memberof AnnotationSettingList
351
+ */
352
+ last: boolean;
353
+ /**
354
+ * Indicates whether current page has previous page.
355
+ * @type {boolean}
356
+ * @memberof AnnotationSettingList
357
+ */
358
+ hasNext: boolean;
359
+ /**
360
+ * Indicates whether current page has previous page.
361
+ * @type {boolean}
362
+ * @memberof AnnotationSettingList
363
+ */
364
+ hasPrevious: boolean;
365
+ /**
366
+ * Indicates total pages.
367
+ * @type {number}
368
+ * @memberof AnnotationSettingList
369
+ */
370
+ totalPages: number;
371
+ }
372
+
373
+ /**
374
+ * Halo Next API
375
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
376
+ *
377
+ * The version of the OpenAPI document: 2.0.0
378
+ *
379
+ *
380
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
381
+ * https://openapi-generator.tech
382
+ * Do not edit the class manually.
383
+ */
384
+ /**
385
+ *
386
+ * @export
387
+ * @interface AttachmentSpec
388
+ */
389
+ interface AttachmentSpec {
390
+ /**
391
+ * Display name of attachment
392
+ * @type {string}
393
+ * @memberof AttachmentSpec
394
+ */
395
+ displayName?: string;
396
+ /**
397
+ * Group name
398
+ * @type {string}
399
+ * @memberof AttachmentSpec
400
+ */
401
+ groupName?: string;
402
+ /**
403
+ * Policy name
404
+ * @type {string}
405
+ * @memberof AttachmentSpec
406
+ */
407
+ policyName?: string;
408
+ /**
409
+ * Name of User who uploads the attachment
410
+ * @type {string}
411
+ * @memberof AttachmentSpec
412
+ */
413
+ ownerName?: string;
414
+ /**
415
+ * Media type of attachment
416
+ * @type {string}
417
+ * @memberof AttachmentSpec
418
+ */
419
+ mediaType?: string;
420
+ /**
421
+ * Size of attachment. Unit is Byte
422
+ * @type {number}
423
+ * @memberof AttachmentSpec
424
+ */
425
+ size?: number;
426
+ /**
427
+ * Tags of attachment
428
+ * @type {Array<string>}
429
+ * @memberof AttachmentSpec
430
+ */
431
+ tags?: Array<string>;
432
+ }
433
+
434
+ /**
435
+ * Halo Next API
436
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
437
+ *
438
+ * The version of the OpenAPI document: 2.0.0
439
+ *
440
+ *
441
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
442
+ * https://openapi-generator.tech
443
+ * Do not edit the class manually.
444
+ */
445
+ /**
446
+ *
447
+ * @export
448
+ * @interface AttachmentStatus
449
+ */
450
+ interface AttachmentStatus {
451
+ /**
452
+ * Permalink of attachment
453
+ * @type {string}
454
+ * @memberof AttachmentStatus
455
+ */
456
+ permalink?: string;
457
+ }
458
+
278
459
  /**
279
460
  * Halo Next API
280
461
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -2022,22 +2203,22 @@ interface Excerpt {
2022
2203
  interface Extension {
2023
2204
  /**
2024
2205
  *
2025
- * @type {string}
2206
+ * @type {Metadata}
2026
2207
  * @memberof Extension
2027
2208
  */
2028
- kind: string;
2209
+ metadata: Metadata;
2029
2210
  /**
2030
2211
  *
2031
- * @type {Metadata}
2212
+ * @type {string}
2032
2213
  * @memberof Extension
2033
2214
  */
2034
- metadata: Metadata;
2215
+ apiVersion: string;
2035
2216
  /**
2036
2217
  *
2037
2218
  * @type {string}
2038
2219
  * @memberof Extension
2039
2220
  */
2040
- apiVersion: string;
2221
+ kind: string;
2041
2222
  }
2042
2223
 
2043
2224
  /**
@@ -7028,17 +7209,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
7028
7209
  * @param {string} [policy] Name of policy
7029
7210
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7030
7211
  * @param {string} [displayName] Display name of attachment
7031
- * @param {string} [group] Name of group
7032
7212
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7033
7213
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7214
+ * @param {string} [group] Name of group
7034
7215
  * @param {number} [size] Size of one page. Zero indicates no limit.
7035
- * @param {number} [page] The page number. Zero indicates no page.
7036
7216
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7037
7217
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7218
+ * @param {number} [page] The page number. Zero indicates no page.
7038
7219
  * @param {*} [options] Override http request option.
7039
7220
  * @throws {RequiredError}
7040
7221
  */
7041
- searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7222
+ searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7042
7223
  /**
7043
7224
  *
7044
7225
  * @param {any} file
@@ -7059,17 +7240,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
7059
7240
  * @param {string} [policy] Name of policy
7060
7241
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7061
7242
  * @param {string} [displayName] Display name of attachment
7062
- * @param {string} [group] Name of group
7063
7243
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7064
7244
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7245
+ * @param {string} [group] Name of group
7065
7246
  * @param {number} [size] Size of one page. Zero indicates no limit.
7066
- * @param {number} [page] The page number. Zero indicates no page.
7067
7247
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7068
7248
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7249
+ * @param {number} [page] The page number. Zero indicates no page.
7069
7250
  * @param {*} [options] Override http request option.
7070
7251
  * @throws {RequiredError}
7071
7252
  */
7072
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7253
+ searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7073
7254
  /**
7074
7255
  *
7075
7256
  * @param {any} file
@@ -7090,17 +7271,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
7090
7271
  * @param {string} [policy] Name of policy
7091
7272
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7092
7273
  * @param {string} [displayName] Display name of attachment
7093
- * @param {string} [group] Name of group
7094
7274
  * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7095
7275
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
7276
+ * @param {string} [group] Name of group
7096
7277
  * @param {number} [size] Size of one page. Zero indicates no limit.
7097
- * @param {number} [page] The page number. Zero indicates no page.
7098
7278
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7099
7279
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7280
+ * @param {number} [page] The page number. Zero indicates no page.
7100
7281
  * @param {*} [options] Override http request option.
7101
7282
  * @throws {RequiredError}
7102
7283
  */
7103
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
7284
+ searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
7104
7285
  /**
7105
7286
  *
7106
7287
  * @param {any} file
@@ -7135,12 +7316,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7135
7316
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7136
7317
  */
7137
7318
  readonly displayName?: string;
7138
- /**
7139
- * Name of group
7140
- * @type {string}
7141
- * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7142
- */
7143
- readonly group?: string;
7144
7319
  /**
7145
7320
  * Filter attachments without group. This parameter will ignore group parameter.
7146
7321
  * @type {boolean}
@@ -7154,17 +7329,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7154
7329
  */
7155
7330
  readonly uploadedBy?: string;
7156
7331
  /**
7157
- * Size of one page. Zero indicates no limit.
7158
- * @type {number}
7332
+ * Name of group
7333
+ * @type {string}
7159
7334
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7160
7335
  */
7161
- readonly size?: number;
7336
+ readonly group?: string;
7162
7337
  /**
7163
- * The page number. Zero indicates no page.
7338
+ * Size of one page. Zero indicates no limit.
7164
7339
  * @type {number}
7165
7340
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7166
7341
  */
7167
- readonly page?: number;
7342
+ readonly size?: number;
7168
7343
  /**
7169
7344
  * Label selector for filtering.
7170
7345
  * @type {Array<string>}
@@ -7177,6 +7352,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7177
7352
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7178
7353
  */
7179
7354
  readonly fieldSelector?: Array<string>;
7355
+ /**
7356
+ * The page number. Zero indicates no page.
7357
+ * @type {number}
7358
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7359
+ */
7360
+ readonly page?: number;
7180
7361
  }
7181
7362
  /**
7182
7363
  * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
@@ -7251,9 +7432,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7251
7432
  /**
7252
7433
  * List comments.
7253
7434
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7254
- * @param {string} [keyword] Comments filtered by keyword.
7255
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7256
- * @param {boolean} [top] Comment top display.
7257
7435
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7258
7436
  * @param {boolean} [approved] Comments approved.
7259
7437
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7261,14 +7439,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7261
7439
  * @param {string} [ownerName] Commenter name.
7262
7440
  * @param {string} [subjectKind] Comment subject kind.
7263
7441
  * @param {string} [subjectName] Comment subject name.
7442
+ * @param {string} [keyword] Comments filtered by keyword.
7443
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7444
+ * @param {boolean} [top] Comment top display.
7264
7445
  * @param {number} [size] Size of one page. Zero indicates no limit.
7265
- * @param {number} [page] The page number. Zero indicates no page.
7266
7446
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7267
7447
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7448
+ * @param {number} [page] The page number. Zero indicates no page.
7268
7449
  * @param {*} [options] Override http request option.
7269
7450
  * @throws {RequiredError}
7270
7451
  */
7271
- listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7452
+ listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7272
7453
  };
7273
7454
  /**
7274
7455
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -7293,9 +7474,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7293
7474
  /**
7294
7475
  * List comments.
7295
7476
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7296
- * @param {string} [keyword] Comments filtered by keyword.
7297
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7298
- * @param {boolean} [top] Comment top display.
7299
7477
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7300
7478
  * @param {boolean} [approved] Comments approved.
7301
7479
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7303,14 +7481,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7303
7481
  * @param {string} [ownerName] Commenter name.
7304
7482
  * @param {string} [subjectKind] Comment subject kind.
7305
7483
  * @param {string} [subjectName] Comment subject name.
7484
+ * @param {string} [keyword] Comments filtered by keyword.
7485
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7486
+ * @param {boolean} [top] Comment top display.
7306
7487
  * @param {number} [size] Size of one page. Zero indicates no limit.
7307
- * @param {number} [page] The page number. Zero indicates no page.
7308
7488
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7309
7489
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7490
+ * @param {number} [page] The page number. Zero indicates no page.
7310
7491
  * @param {*} [options] Override http request option.
7311
7492
  * @throws {RequiredError}
7312
7493
  */
7313
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
7494
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
7314
7495
  };
7315
7496
  /**
7316
7497
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -7335,9 +7516,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7335
7516
  /**
7336
7517
  * List comments.
7337
7518
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7338
- * @param {string} [keyword] Comments filtered by keyword.
7339
- * @param {boolean} [hidden] The comment is hidden from the theme side.
7340
- * @param {boolean} [top] Comment top display.
7341
7519
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7342
7520
  * @param {boolean} [approved] Comments approved.
7343
7521
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -7345,14 +7523,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7345
7523
  * @param {string} [ownerName] Commenter name.
7346
7524
  * @param {string} [subjectKind] Comment subject kind.
7347
7525
  * @param {string} [subjectName] Comment subject name.
7526
+ * @param {string} [keyword] Comments filtered by keyword.
7527
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
7528
+ * @param {boolean} [top] Comment top display.
7348
7529
  * @param {number} [size] Size of one page. Zero indicates no limit.
7349
- * @param {number} [page] The page number. Zero indicates no page.
7350
7530
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7351
7531
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7532
+ * @param {number} [page] The page number. Zero indicates no page.
7352
7533
  * @param {*} [options] Override http request option.
7353
7534
  * @throws {RequiredError}
7354
7535
  */
7355
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
7536
+ listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
7356
7537
  };
7357
7538
  /**
7358
7539
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -7398,24 +7579,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7398
7579
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7399
7580
  */
7400
7581
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
7401
- /**
7402
- * Comments filtered by keyword.
7403
- * @type {string}
7404
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7405
- */
7406
- readonly keyword?: string;
7407
- /**
7408
- * The comment is hidden from the theme side.
7409
- * @type {boolean}
7410
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7411
- */
7412
- readonly hidden?: boolean;
7413
- /**
7414
- * Comment top display.
7415
- * @type {boolean}
7416
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7417
- */
7418
- readonly top?: boolean;
7419
7582
  /**
7420
7583
  * ascending order If it is true; otherwise, it is in descending order.
7421
7584
  * @type {boolean}
@@ -7459,17 +7622,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7459
7622
  */
7460
7623
  readonly subjectName?: string;
7461
7624
  /**
7462
- * Size of one page. Zero indicates no limit.
7463
- * @type {number}
7625
+ * Comments filtered by keyword.
7626
+ * @type {string}
7464
7627
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7465
7628
  */
7466
- readonly size?: number;
7629
+ readonly keyword?: string;
7467
7630
  /**
7468
- * The page number. Zero indicates no page.
7631
+ * The comment is hidden from the theme side.
7632
+ * @type {boolean}
7633
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7634
+ */
7635
+ readonly hidden?: boolean;
7636
+ /**
7637
+ * Comment top display.
7638
+ * @type {boolean}
7639
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7640
+ */
7641
+ readonly top?: boolean;
7642
+ /**
7643
+ * Size of one page. Zero indicates no limit.
7469
7644
  * @type {number}
7470
7645
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7471
7646
  */
7472
- readonly page?: number;
7647
+ readonly size?: number;
7473
7648
  /**
7474
7649
  * Label selector for filtering.
7475
7650
  * @type {Array<string>}
@@ -7482,6 +7657,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7482
7657
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7483
7658
  */
7484
7659
  readonly fieldSelector?: Array<string>;
7660
+ /**
7661
+ * The page number. Zero indicates no page.
7662
+ * @type {number}
7663
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7664
+ */
7665
+ readonly page?: number;
7485
7666
  }
7486
7667
  /**
7487
7668
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -7748,20 +7929,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7748
7929
  * @param {boolean} [enabled] Whether the plugin is enabled
7749
7930
  * @param {string} [keyword] Keyword of plugin name or description
7750
7931
  * @param {number} [size] Size of one page. Zero indicates no limit.
7751
- * @param {number} [page] The page number. Zero indicates no page.
7752
7932
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7753
7933
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7934
+ * @param {number} [page] The page number. Zero indicates no page.
7754
7935
  * @param {*} [options] Override http request option.
7755
7936
  * @throws {RequiredError}
7756
7937
  */
7757
- listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7938
+ listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7758
7939
  /**
7759
- * Reset plugin setting configMap.
7940
+ * Reset the configMap of plugin setting.
7760
7941
  * @param {string} name
7761
7942
  * @param {*} [options] Override http request option.
7762
7943
  * @throws {RequiredError}
7763
7944
  */
7764
- resetPluginSettingConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7945
+ resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7765
7946
  /**
7766
7947
  * Upgrade a plugin by uploading a Jar file
7767
7948
  * @param {string} name
@@ -7789,20 +7970,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7789
7970
  * @param {boolean} [enabled] Whether the plugin is enabled
7790
7971
  * @param {string} [keyword] Keyword of plugin name or description
7791
7972
  * @param {number} [size] Size of one page. Zero indicates no limit.
7792
- * @param {number} [page] The page number. Zero indicates no page.
7793
7973
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7794
7974
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7975
+ * @param {number} [page] The page number. Zero indicates no page.
7795
7976
  * @param {*} [options] Override http request option.
7796
7977
  * @throws {RequiredError}
7797
7978
  */
7798
- listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7979
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7799
7980
  /**
7800
- * Reset plugin setting configMap.
7981
+ * Reset the configMap of plugin setting.
7801
7982
  * @param {string} name
7802
7983
  * @param {*} [options] Override http request option.
7803
7984
  * @throws {RequiredError}
7804
7985
  */
7805
- resetPluginSettingConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
7986
+ resetPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
7806
7987
  /**
7807
7988
  * Upgrade a plugin by uploading a Jar file
7808
7989
  * @param {string} name
@@ -7830,20 +8011,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7830
8011
  * @param {boolean} [enabled] Whether the plugin is enabled
7831
8012
  * @param {string} [keyword] Keyword of plugin name or description
7832
8013
  * @param {number} [size] Size of one page. Zero indicates no limit.
7833
- * @param {number} [page] The page number. Zero indicates no page.
7834
8014
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7835
8015
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8016
+ * @param {number} [page] The page number. Zero indicates no page.
7836
8017
  * @param {*} [options] Override http request option.
7837
8018
  * @throws {RequiredError}
7838
8019
  */
7839
- listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
8020
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
7840
8021
  /**
7841
- * Reset plugin setting configMap.
8022
+ * Reset the configMap of plugin setting.
7842
8023
  * @param {string} name
7843
8024
  * @param {*} [options] Override http request option.
7844
8025
  * @throws {RequiredError}
7845
8026
  */
7846
- resetPluginSettingConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
8027
+ resetPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
7847
8028
  /**
7848
8029
  * Upgrade a plugin by uploading a Jar file
7849
8030
  * @param {string} name
@@ -7896,12 +8077,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7896
8077
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7897
8078
  */
7898
8079
  readonly size?: number;
7899
- /**
7900
- * The page number. Zero indicates no page.
7901
- * @type {number}
7902
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7903
- */
7904
- readonly page?: number;
7905
8080
  /**
7906
8081
  * Label selector for filtering.
7907
8082
  * @type {Array<string>}
@@ -7914,17 +8089,23 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7914
8089
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7915
8090
  */
7916
8091
  readonly fieldSelector?: Array<string>;
8092
+ /**
8093
+ * The page number. Zero indicates no page.
8094
+ * @type {number}
8095
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
8096
+ */
8097
+ readonly page?: number;
7917
8098
  }
7918
8099
  /**
7919
- * Request parameters for resetPluginSettingConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
8100
+ * Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
7920
8101
  * @export
7921
- * @interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest
8102
+ * @interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest
7922
8103
  */
7923
- interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest {
8104
+ interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest {
7924
8105
  /**
7925
8106
  *
7926
8107
  * @type {string}
7927
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfig
8108
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfig
7928
8109
  */
7929
8110
  readonly name: string;
7930
8111
  }
@@ -7971,13 +8152,13 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
7971
8152
  */
7972
8153
  listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
7973
8154
  /**
7974
- * Reset plugin setting configMap.
7975
- * @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest} requestParameters Request parameters.
8155
+ * Reset the configMap of plugin setting.
8156
+ * @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest} requestParameters Request parameters.
7976
8157
  * @param {*} [options] Override http request option.
7977
8158
  * @throws {RequiredError}
7978
8159
  * @memberof ApiConsoleHaloRunV1alpha1PluginApi
7979
8160
  */
7980
- resetPluginSettingConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
8161
+ resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
7981
8162
  /**
7982
8163
  * Upgrade a plugin by uploading a Jar file
7983
8164
  * @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
@@ -8003,21 +8184,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
8003
8184
  /**
8004
8185
  * List posts.
8005
8186
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8006
- * @param {Array<string>} [tag]
8007
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8008
- * @param {string} [keyword] Posts filtered by keyword.
8009
8187
  * @param {Array<string>} [contributor]
8010
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8011
8188
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8012
8189
  * @param {Array<string>} [category]
8190
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8191
+ * @param {Array<string>} [tag]
8192
+ * @param {string} [keyword] Posts filtered by keyword.
8193
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8013
8194
  * @param {number} [size] Size of one page. Zero indicates no limit.
8014
- * @param {number} [page] The page number. Zero indicates no page.
8015
8195
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8016
8196
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8197
+ * @param {number} [page] The page number. Zero indicates no page.
8017
8198
  * @param {*} [options] Override http request option.
8018
8199
  * @throws {RequiredError}
8019
8200
  */
8020
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8201
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8021
8202
  /**
8022
8203
  * Publish a post.
8023
8204
  * @param {string} name
@@ -8072,21 +8253,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8072
8253
  /**
8073
8254
  * List posts.
8074
8255
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8075
- * @param {Array<string>} [tag]
8076
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8077
- * @param {string} [keyword] Posts filtered by keyword.
8078
8256
  * @param {Array<string>} [contributor]
8079
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8080
8257
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8081
8258
  * @param {Array<string>} [category]
8259
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8260
+ * @param {Array<string>} [tag]
8261
+ * @param {string} [keyword] Posts filtered by keyword.
8262
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8082
8263
  * @param {number} [size] Size of one page. Zero indicates no limit.
8083
- * @param {number} [page] The page number. Zero indicates no page.
8084
8264
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8085
8265
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8266
+ * @param {number} [page] The page number. Zero indicates no page.
8086
8267
  * @param {*} [options] Override http request option.
8087
8268
  * @throws {RequiredError}
8088
8269
  */
8089
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8270
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8090
8271
  /**
8091
8272
  * Publish a post.
8092
8273
  * @param {string} name
@@ -8141,21 +8322,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8141
8322
  /**
8142
8323
  * List posts.
8143
8324
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8144
- * @param {Array<string>} [tag]
8145
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8146
- * @param {string} [keyword] Posts filtered by keyword.
8147
8325
  * @param {Array<string>} [contributor]
8148
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8149
8326
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8150
8327
  * @param {Array<string>} [category]
8328
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8329
+ * @param {Array<string>} [tag]
8330
+ * @param {string} [keyword] Posts filtered by keyword.
8331
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8151
8332
  * @param {number} [size] Size of one page. Zero indicates no limit.
8152
- * @param {number} [page] The page number. Zero indicates no page.
8153
8333
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8154
8334
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8335
+ * @param {number} [page] The page number. Zero indicates no page.
8155
8336
  * @param {*} [options] Override http request option.
8156
8337
  * @throws {RequiredError}
8157
8338
  */
8158
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8339
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
8159
8340
  /**
8160
8341
  * Publish a post.
8161
8342
  * @param {string} name
@@ -8225,25 +8406,19 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8225
8406
  * @type {Array<string>}
8226
8407
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8227
8408
  */
8228
- readonly tag?: Array<string>;
8409
+ readonly contributor?: Array<string>;
8229
8410
  /**
8230
8411
  *
8231
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8232
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8233
- */
8234
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8235
- /**
8236
- * Posts filtered by keyword.
8237
- * @type {string}
8412
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8238
8413
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8239
8414
  */
8240
- readonly keyword?: string;
8415
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8241
8416
  /**
8242
8417
  *
8243
8418
  * @type {Array<string>}
8244
8419
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8245
8420
  */
8246
- readonly contributor?: Array<string>;
8421
+ readonly category?: Array<string>;
8247
8422
  /**
8248
8423
  * ascending order If it is true; otherwise, it is in descending order.
8249
8424
  * @type {boolean}
@@ -8252,28 +8427,28 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8252
8427
  readonly sortOrder?: boolean;
8253
8428
  /**
8254
8429
  *
8255
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8430
+ * @type {Array<string>}
8256
8431
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8257
8432
  */
8258
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8433
+ readonly tag?: Array<string>;
8259
8434
  /**
8260
- *
8261
- * @type {Array<string>}
8435
+ * Posts filtered by keyword.
8436
+ * @type {string}
8262
8437
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8263
8438
  */
8264
- readonly category?: Array<string>;
8439
+ readonly keyword?: string;
8265
8440
  /**
8266
- * Size of one page. Zero indicates no limit.
8267
- * @type {number}
8441
+ *
8442
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8268
8443
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8269
8444
  */
8270
- readonly size?: number;
8445
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8271
8446
  /**
8272
- * The page number. Zero indicates no page.
8447
+ * Size of one page. Zero indicates no limit.
8273
8448
  * @type {number}
8274
8449
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8275
8450
  */
8276
- readonly page?: number;
8451
+ readonly size?: number;
8277
8452
  /**
8278
8453
  * Label selector for filtering.
8279
8454
  * @type {Array<string>}
@@ -8286,6 +8461,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8286
8461
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8287
8462
  */
8288
8463
  readonly fieldSelector?: Array<string>;
8464
+ /**
8465
+ * The page number. Zero indicates no page.
8466
+ * @type {number}
8467
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8468
+ */
8469
+ readonly page?: number;
8289
8470
  }
8290
8471
  /**
8291
8472
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -8444,13 +8625,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
8444
8625
  * List replies.
8445
8626
  * @param {string} [commentName] Replies filtered by commentName.
8446
8627
  * @param {number} [size] Size of one page. Zero indicates no limit.
8447
- * @param {number} [page] The page number. Zero indicates no page.
8448
8628
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8449
8629
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8630
+ * @param {number} [page] The page number. Zero indicates no page.
8450
8631
  * @param {*} [options] Override http request option.
8451
8632
  * @throws {RequiredError}
8452
8633
  */
8453
- listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8634
+ listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8454
8635
  };
8455
8636
  /**
8456
8637
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -8461,13 +8642,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
8461
8642
  * List replies.
8462
8643
  * @param {string} [commentName] Replies filtered by commentName.
8463
8644
  * @param {number} [size] Size of one page. Zero indicates no limit.
8464
- * @param {number} [page] The page number. Zero indicates no page.
8465
8645
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8466
8646
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8647
+ * @param {number} [page] The page number. Zero indicates no page.
8467
8648
  * @param {*} [options] Override http request option.
8468
8649
  * @throws {RequiredError}
8469
8650
  */
8470
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8651
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8471
8652
  };
8472
8653
  /**
8473
8654
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -8478,13 +8659,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
8478
8659
  * List replies.
8479
8660
  * @param {string} [commentName] Replies filtered by commentName.
8480
8661
  * @param {number} [size] Size of one page. Zero indicates no limit.
8481
- * @param {number} [page] The page number. Zero indicates no page.
8482
8662
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8483
8663
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8664
+ * @param {number} [page] The page number. Zero indicates no page.
8484
8665
  * @param {*} [options] Override http request option.
8485
8666
  * @throws {RequiredError}
8486
8667
  */
8487
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
8668
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
8488
8669
  };
8489
8670
  /**
8490
8671
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -8504,12 +8685,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8504
8685
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8505
8686
  */
8506
8687
  readonly size?: number;
8507
- /**
8508
- * The page number. Zero indicates no page.
8509
- * @type {number}
8510
- * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8511
- */
8512
- readonly page?: number;
8513
8688
  /**
8514
8689
  * Label selector for filtering.
8515
8690
  * @type {Array<string>}
@@ -8522,6 +8697,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8522
8697
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8523
8698
  */
8524
8699
  readonly fieldSelector?: Array<string>;
8700
+ /**
8701
+ * The page number. Zero indicates no page.
8702
+ * @type {number}
8703
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8704
+ */
8705
+ readonly page?: number;
8525
8706
  }
8526
8707
  /**
8527
8708
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -8555,19 +8736,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8555
8736
  /**
8556
8737
  * List single pages.
8557
8738
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8558
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8559
- * @param {string} [keyword] SinglePages filtered by keyword.
8560
8739
  * @param {Array<string>} [contributor]
8561
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8562
8740
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8741
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8742
+ * @param {string} [keyword] SinglePages filtered by keyword.
8743
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8563
8744
  * @param {number} [size] Size of one page. Zero indicates no limit.
8564
- * @param {number} [page] The page number. Zero indicates no page.
8565
8745
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8566
8746
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8747
+ * @param {number} [page] The page number. Zero indicates no page.
8567
8748
  * @param {*} [options] Override http request option.
8568
8749
  * @throws {RequiredError}
8569
8750
  */
8570
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8751
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8571
8752
  /**
8572
8753
  * Publish a single page.
8573
8754
  * @param {string} name
@@ -8607,19 +8788,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8607
8788
  /**
8608
8789
  * List single pages.
8609
8790
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8610
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8611
- * @param {string} [keyword] SinglePages filtered by keyword.
8612
8791
  * @param {Array<string>} [contributor]
8613
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8614
8792
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8793
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8794
+ * @param {string} [keyword] SinglePages filtered by keyword.
8795
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8615
8796
  * @param {number} [size] Size of one page. Zero indicates no limit.
8616
- * @param {number} [page] The page number. Zero indicates no page.
8617
8797
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8618
8798
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8799
+ * @param {number} [page] The page number. Zero indicates no page.
8619
8800
  * @param {*} [options] Override http request option.
8620
8801
  * @throws {RequiredError}
8621
8802
  */
8622
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8803
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8623
8804
  /**
8624
8805
  * Publish a single page.
8625
8806
  * @param {string} name
@@ -8659,19 +8840,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8659
8840
  /**
8660
8841
  * List single pages.
8661
8842
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8662
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8663
- * @param {string} [keyword] SinglePages filtered by keyword.
8664
8843
  * @param {Array<string>} [contributor]
8665
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8666
8844
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8845
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8846
+ * @param {string} [keyword] SinglePages filtered by keyword.
8847
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8667
8848
  * @param {number} [size] Size of one page. Zero indicates no limit.
8668
- * @param {number} [page] The page number. Zero indicates no page.
8669
8849
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8670
8850
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8851
+ * @param {number} [page] The page number. Zero indicates no page.
8671
8852
  * @param {*} [options] Override http request option.
8672
8853
  * @throws {RequiredError}
8673
8854
  */
8674
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
8855
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
8675
8856
  /**
8676
8857
  * Publish a single page.
8677
8858
  * @param {string} name
@@ -8723,22 +8904,16 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8723
8904
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8724
8905
  /**
8725
8906
  *
8726
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8727
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8728
- */
8729
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8730
- /**
8731
- * SinglePages filtered by keyword.
8732
- * @type {string}
8907
+ * @type {Array<string>}
8733
8908
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8734
8909
  */
8735
- readonly keyword?: string;
8910
+ readonly contributor?: Array<string>;
8736
8911
  /**
8737
8912
  *
8738
- * @type {Array<string>}
8913
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8739
8914
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8740
8915
  */
8741
- readonly contributor?: Array<string>;
8916
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8742
8917
  /**
8743
8918
  * ascending order If it is true; otherwise, it is in descending order.
8744
8919
  * @type {boolean}
@@ -8746,23 +8921,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8746
8921
  */
8747
8922
  readonly sortOrder?: boolean;
8748
8923
  /**
8749
- *
8750
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
8924
+ * SinglePages filtered by keyword.
8925
+ * @type {string}
8751
8926
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8752
8927
  */
8753
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8928
+ readonly keyword?: string;
8754
8929
  /**
8755
- * Size of one page. Zero indicates no limit.
8756
- * @type {number}
8930
+ *
8931
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8757
8932
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8758
8933
  */
8759
- readonly size?: number;
8934
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8760
8935
  /**
8761
- * The page number. Zero indicates no page.
8936
+ * Size of one page. Zero indicates no limit.
8762
8937
  * @type {number}
8763
8938
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8764
8939
  */
8765
- readonly page?: number;
8940
+ readonly size?: number;
8766
8941
  /**
8767
8942
  * Label selector for filtering.
8768
8943
  * @type {Array<string>}
@@ -8775,6 +8950,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8775
8950
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8776
8951
  */
8777
8952
  readonly fieldSelector?: Array<string>;
8953
+ /**
8954
+ * The page number. Zero indicates no page.
8955
+ * @type {number}
8956
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8957
+ */
8958
+ readonly page?: number;
8778
8959
  }
8779
8960
  /**
8780
8961
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -8944,13 +9125,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
8944
9125
  * List themes.
8945
9126
  * @param {boolean} uninstalled
8946
9127
  * @param {number} [size] Size of one page. Zero indicates no limit.
8947
- * @param {number} [page] The page number. Zero indicates no page.
8948
9128
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8949
9129
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9130
+ * @param {number} [page] The page number. Zero indicates no page.
8950
9131
  * @param {*} [options] Override http request option.
8951
9132
  * @throws {RequiredError}
8952
9133
  */
8953
- listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9134
+ listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8954
9135
  /**
8955
9136
  * Reload theme setting.
8956
9137
  * @param {string} name
@@ -8959,12 +9140,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
8959
9140
  */
8960
9141
  reload: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8961
9142
  /**
8962
- * Reset theme setting configMap.
9143
+ * Reset the configMap of theme setting.
8963
9144
  * @param {string} name
8964
9145
  * @param {*} [options] Override http request option.
8965
9146
  * @throws {RequiredError}
8966
9147
  */
8967
- resetThemeSettingConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9148
+ resetThemeConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8968
9149
  /**
8969
9150
  * Upgrade theme
8970
9151
  * @param {string} name
@@ -8990,13 +9171,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8990
9171
  * List themes.
8991
9172
  * @param {boolean} uninstalled
8992
9173
  * @param {number} [size] Size of one page. Zero indicates no limit.
8993
- * @param {number} [page] The page number. Zero indicates no page.
8994
9174
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8995
9175
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9176
+ * @param {number} [page] The page number. Zero indicates no page.
8996
9177
  * @param {*} [options] Override http request option.
8997
9178
  * @throws {RequiredError}
8998
9179
  */
8999
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
9180
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
9000
9181
  /**
9001
9182
  * Reload theme setting.
9002
9183
  * @param {string} name
@@ -9005,12 +9186,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
9005
9186
  */
9006
9187
  reload(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
9007
9188
  /**
9008
- * Reset theme setting configMap.
9189
+ * Reset the configMap of theme setting.
9009
9190
  * @param {string} name
9010
9191
  * @param {*} [options] Override http request option.
9011
9192
  * @throws {RequiredError}
9012
9193
  */
9013
- resetThemeSettingConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
9194
+ resetThemeConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
9014
9195
  /**
9015
9196
  * Upgrade theme
9016
9197
  * @param {string} name
@@ -9036,13 +9217,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
9036
9217
  * List themes.
9037
9218
  * @param {boolean} uninstalled
9038
9219
  * @param {number} [size] Size of one page. Zero indicates no limit.
9039
- * @param {number} [page] The page number. Zero indicates no page.
9040
9220
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9041
9221
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9222
+ * @param {number} [page] The page number. Zero indicates no page.
9042
9223
  * @param {*} [options] Override http request option.
9043
9224
  * @throws {RequiredError}
9044
9225
  */
9045
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
9226
+ listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
9046
9227
  /**
9047
9228
  * Reload theme setting.
9048
9229
  * @param {string} name
@@ -9051,12 +9232,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
9051
9232
  */
9052
9233
  reload(name: string, options?: any): AxiosPromise<Theme>;
9053
9234
  /**
9054
- * Reset theme setting configMap.
9235
+ * Reset the configMap of theme setting.
9055
9236
  * @param {string} name
9056
9237
  * @param {*} [options] Override http request option.
9057
9238
  * @throws {RequiredError}
9058
9239
  */
9059
- resetThemeSettingConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
9240
+ resetThemeConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
9060
9241
  /**
9061
9242
  * Upgrade theme
9062
9243
  * @param {string} name
@@ -9097,12 +9278,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9097
9278
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9098
9279
  */
9099
9280
  readonly size?: number;
9100
- /**
9101
- * The page number. Zero indicates no page.
9102
- * @type {number}
9103
- * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9104
- */
9105
- readonly page?: number;
9106
9281
  /**
9107
9282
  * Label selector for filtering.
9108
9283
  * @type {Array<string>}
@@ -9115,6 +9290,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9115
9290
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9116
9291
  */
9117
9292
  readonly fieldSelector?: Array<string>;
9293
+ /**
9294
+ * The page number. Zero indicates no page.
9295
+ * @type {number}
9296
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9297
+ */
9298
+ readonly page?: number;
9118
9299
  }
9119
9300
  /**
9120
9301
  * Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
@@ -9130,15 +9311,15 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest {
9130
9311
  readonly name: string;
9131
9312
  }
9132
9313
  /**
9133
- * Request parameters for resetThemeSettingConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
9314
+ * Request parameters for resetThemeConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
9134
9315
  * @export
9135
- * @interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest
9316
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest
9136
9317
  */
9137
- interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest {
9318
+ interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest {
9138
9319
  /**
9139
9320
  *
9140
9321
  * @type {string}
9141
- * @memberof ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfig
9322
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfig
9142
9323
  */
9143
9324
  readonly name: string;
9144
9325
  }
@@ -9193,13 +9374,13 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
9193
9374
  */
9194
9375
  reload(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
9195
9376
  /**
9196
- * Reset theme setting configMap.
9197
- * @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest} requestParameters Request parameters.
9377
+ * Reset the configMap of theme setting.
9378
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest} requestParameters Request parameters.
9198
9379
  * @param {*} [options] Override http request option.
9199
9380
  * @throws {RequiredError}
9200
9381
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
9201
9382
  */
9202
- resetThemeSettingConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
9383
+ resetThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
9203
9384
  /**
9204
9385
  * Upgrade theme
9205
9386
  * @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
@@ -9723,13 +9904,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
9723
9904
  /**
9724
9905
  * Search posts with fuzzy query
9725
9906
  * @param {string} keyword
9726
- * @param {number} [limit]
9727
9907
  * @param {string} [highlightPreTag]
9728
9908
  * @param {string} [highlightPostTag]
9909
+ * @param {number} [limit]
9729
9910
  * @param {*} [options] Override http request option.
9730
9911
  * @throws {RequiredError}
9731
9912
  */
9732
- searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9913
+ searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9733
9914
  };
9734
9915
  /**
9735
9916
  * ApiHaloRunV1alpha1PostApi - functional programming interface
@@ -9739,13 +9920,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
9739
9920
  /**
9740
9921
  * Search posts with fuzzy query
9741
9922
  * @param {string} keyword
9742
- * @param {number} [limit]
9743
9923
  * @param {string} [highlightPreTag]
9744
9924
  * @param {string} [highlightPostTag]
9925
+ * @param {number} [limit]
9745
9926
  * @param {*} [options] Override http request option.
9746
9927
  * @throws {RequiredError}
9747
9928
  */
9748
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
9929
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
9749
9930
  };
9750
9931
  /**
9751
9932
  * ApiHaloRunV1alpha1PostApi - factory interface
@@ -9755,13 +9936,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
9755
9936
  /**
9756
9937
  * Search posts with fuzzy query
9757
9938
  * @param {string} keyword
9758
- * @param {number} [limit]
9759
9939
  * @param {string} [highlightPreTag]
9760
9940
  * @param {string} [highlightPostTag]
9941
+ * @param {number} [limit]
9761
9942
  * @param {*} [options] Override http request option.
9762
9943
  * @throws {RequiredError}
9763
9944
  */
9764
- searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
9945
+ searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
9765
9946
  };
9766
9947
  /**
9767
9948
  * Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
@@ -9777,22 +9958,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
9777
9958
  readonly keyword: string;
9778
9959
  /**
9779
9960
  *
9780
- * @type {number}
9961
+ * @type {string}
9781
9962
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9782
9963
  */
9783
- readonly limit?: number;
9964
+ readonly highlightPreTag?: string;
9784
9965
  /**
9785
9966
  *
9786
9967
  * @type {string}
9787
9968
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9788
9969
  */
9789
- readonly highlightPreTag?: string;
9970
+ readonly highlightPostTag?: string;
9790
9971
  /**
9791
9972
  *
9792
- * @type {string}
9973
+ * @type {number}
9793
9974
  * @memberof ApiHaloRunV1alpha1PostApiSearchPost
9794
9975
  */
9795
- readonly highlightPostTag?: string;
9976
+ readonly limit?: number;
9796
9977
  }
9797
9978
  /**
9798
9979
  * ApiHaloRunV1alpha1PostApi - object-oriented interface
@@ -14332,6 +14513,279 @@ declare class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
14332
14513
  updatethemeHaloRunV1alpha1Theme(requestParameters: ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
14333
14514
  }
14334
14515
 
14516
+ /**
14517
+ * V1alpha1AnnotationSettingApi - axios parameter creator
14518
+ * @export
14519
+ */
14520
+ declare const V1alpha1AnnotationSettingApiAxiosParamCreator: (configuration?: Configuration) => {
14521
+ /**
14522
+ * Create v1alpha1/AnnotationSetting
14523
+ * @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
14524
+ * @param {*} [options] Override http request option.
14525
+ * @throws {RequiredError}
14526
+ */
14527
+ createv1alpha1AnnotationSetting: (annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14528
+ /**
14529
+ * Delete v1alpha1/AnnotationSetting
14530
+ * @param {string} name Name of annotationsetting
14531
+ * @param {*} [options] Override http request option.
14532
+ * @throws {RequiredError}
14533
+ */
14534
+ deletev1alpha1AnnotationSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14535
+ /**
14536
+ * Get v1alpha1/AnnotationSetting
14537
+ * @param {string} name Name of annotationsetting
14538
+ * @param {*} [options] Override http request option.
14539
+ * @throws {RequiredError}
14540
+ */
14541
+ getv1alpha1AnnotationSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14542
+ /**
14543
+ * List v1alpha1/AnnotationSetting
14544
+ * @param {number} [page] The page number. Zero indicates no page.
14545
+ * @param {number} [size] Size of one page. Zero indicates no limit.
14546
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
14547
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
14548
+ * @param {*} [options] Override http request option.
14549
+ * @throws {RequiredError}
14550
+ */
14551
+ listv1alpha1AnnotationSetting: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14552
+ /**
14553
+ * Update v1alpha1/AnnotationSetting
14554
+ * @param {string} name Name of annotationsetting
14555
+ * @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
14556
+ * @param {*} [options] Override http request option.
14557
+ * @throws {RequiredError}
14558
+ */
14559
+ updatev1alpha1AnnotationSetting: (name: string, annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14560
+ };
14561
+ /**
14562
+ * V1alpha1AnnotationSettingApi - functional programming interface
14563
+ * @export
14564
+ */
14565
+ declare const V1alpha1AnnotationSettingApiFp: (configuration?: Configuration) => {
14566
+ /**
14567
+ * Create v1alpha1/AnnotationSetting
14568
+ * @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
14569
+ * @param {*} [options] Override http request option.
14570
+ * @throws {RequiredError}
14571
+ */
14572
+ createv1alpha1AnnotationSetting(annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
14573
+ /**
14574
+ * Delete v1alpha1/AnnotationSetting
14575
+ * @param {string} name Name of annotationsetting
14576
+ * @param {*} [options] Override http request option.
14577
+ * @throws {RequiredError}
14578
+ */
14579
+ deletev1alpha1AnnotationSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
14580
+ /**
14581
+ * Get v1alpha1/AnnotationSetting
14582
+ * @param {string} name Name of annotationsetting
14583
+ * @param {*} [options] Override http request option.
14584
+ * @throws {RequiredError}
14585
+ */
14586
+ getv1alpha1AnnotationSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
14587
+ /**
14588
+ * List v1alpha1/AnnotationSetting
14589
+ * @param {number} [page] The page number. Zero indicates no page.
14590
+ * @param {number} [size] Size of one page. Zero indicates no limit.
14591
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
14592
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
14593
+ * @param {*} [options] Override http request option.
14594
+ * @throws {RequiredError}
14595
+ */
14596
+ listv1alpha1AnnotationSetting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSettingList>>;
14597
+ /**
14598
+ * Update v1alpha1/AnnotationSetting
14599
+ * @param {string} name Name of annotationsetting
14600
+ * @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
14601
+ * @param {*} [options] Override http request option.
14602
+ * @throws {RequiredError}
14603
+ */
14604
+ updatev1alpha1AnnotationSetting(name: string, annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
14605
+ };
14606
+ /**
14607
+ * V1alpha1AnnotationSettingApi - factory interface
14608
+ * @export
14609
+ */
14610
+ declare const V1alpha1AnnotationSettingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14611
+ /**
14612
+ * Create v1alpha1/AnnotationSetting
14613
+ * @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
14614
+ * @param {*} [options] Override http request option.
14615
+ * @throws {RequiredError}
14616
+ */
14617
+ createv1alpha1AnnotationSetting(annotationSetting?: AnnotationSetting, options?: any): AxiosPromise<AnnotationSetting>;
14618
+ /**
14619
+ * Delete v1alpha1/AnnotationSetting
14620
+ * @param {string} name Name of annotationsetting
14621
+ * @param {*} [options] Override http request option.
14622
+ * @throws {RequiredError}
14623
+ */
14624
+ deletev1alpha1AnnotationSetting(name: string, options?: any): AxiosPromise<void>;
14625
+ /**
14626
+ * Get v1alpha1/AnnotationSetting
14627
+ * @param {string} name Name of annotationsetting
14628
+ * @param {*} [options] Override http request option.
14629
+ * @throws {RequiredError}
14630
+ */
14631
+ getv1alpha1AnnotationSetting(name: string, options?: any): AxiosPromise<AnnotationSetting>;
14632
+ /**
14633
+ * List v1alpha1/AnnotationSetting
14634
+ * @param {number} [page] The page number. Zero indicates no page.
14635
+ * @param {number} [size] Size of one page. Zero indicates no limit.
14636
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
14637
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
14638
+ * @param {*} [options] Override http request option.
14639
+ * @throws {RequiredError}
14640
+ */
14641
+ listv1alpha1AnnotationSetting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AnnotationSettingList>;
14642
+ /**
14643
+ * Update v1alpha1/AnnotationSetting
14644
+ * @param {string} name Name of annotationsetting
14645
+ * @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
14646
+ * @param {*} [options] Override http request option.
14647
+ * @throws {RequiredError}
14648
+ */
14649
+ updatev1alpha1AnnotationSetting(name: string, annotationSetting?: AnnotationSetting, options?: any): AxiosPromise<AnnotationSetting>;
14650
+ };
14651
+ /**
14652
+ * Request parameters for createv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
14653
+ * @export
14654
+ * @interface V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest
14655
+ */
14656
+ interface V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest {
14657
+ /**
14658
+ * Fresh annotationsetting
14659
+ * @type {AnnotationSetting}
14660
+ * @memberof V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSetting
14661
+ */
14662
+ readonly annotationSetting?: AnnotationSetting;
14663
+ }
14664
+ /**
14665
+ * Request parameters for deletev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
14666
+ * @export
14667
+ * @interface V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest
14668
+ */
14669
+ interface V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest {
14670
+ /**
14671
+ * Name of annotationsetting
14672
+ * @type {string}
14673
+ * @memberof V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSetting
14674
+ */
14675
+ readonly name: string;
14676
+ }
14677
+ /**
14678
+ * Request parameters for getv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
14679
+ * @export
14680
+ * @interface V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest
14681
+ */
14682
+ interface V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest {
14683
+ /**
14684
+ * Name of annotationsetting
14685
+ * @type {string}
14686
+ * @memberof V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSetting
14687
+ */
14688
+ readonly name: string;
14689
+ }
14690
+ /**
14691
+ * Request parameters for listv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
14692
+ * @export
14693
+ * @interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest
14694
+ */
14695
+ interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest {
14696
+ /**
14697
+ * The page number. Zero indicates no page.
14698
+ * @type {number}
14699
+ * @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
14700
+ */
14701
+ readonly page?: number;
14702
+ /**
14703
+ * Size of one page. Zero indicates no limit.
14704
+ * @type {number}
14705
+ * @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
14706
+ */
14707
+ readonly size?: number;
14708
+ /**
14709
+ * Label selector for filtering.
14710
+ * @type {Array<string>}
14711
+ * @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
14712
+ */
14713
+ readonly labelSelector?: Array<string>;
14714
+ /**
14715
+ * Field selector for filtering.
14716
+ * @type {Array<string>}
14717
+ * @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
14718
+ */
14719
+ readonly fieldSelector?: Array<string>;
14720
+ }
14721
+ /**
14722
+ * Request parameters for updatev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
14723
+ * @export
14724
+ * @interface V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest
14725
+ */
14726
+ interface V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest {
14727
+ /**
14728
+ * Name of annotationsetting
14729
+ * @type {string}
14730
+ * @memberof V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSetting
14731
+ */
14732
+ readonly name: string;
14733
+ /**
14734
+ * Updated annotationsetting
14735
+ * @type {AnnotationSetting}
14736
+ * @memberof V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSetting
14737
+ */
14738
+ readonly annotationSetting?: AnnotationSetting;
14739
+ }
14740
+ /**
14741
+ * V1alpha1AnnotationSettingApi - object-oriented interface
14742
+ * @export
14743
+ * @class V1alpha1AnnotationSettingApi
14744
+ * @extends {BaseAPI}
14745
+ */
14746
+ declare class V1alpha1AnnotationSettingApi extends BaseAPI {
14747
+ /**
14748
+ * Create v1alpha1/AnnotationSetting
14749
+ * @param {V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
14750
+ * @param {*} [options] Override http request option.
14751
+ * @throws {RequiredError}
14752
+ * @memberof V1alpha1AnnotationSettingApi
14753
+ */
14754
+ createv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
14755
+ /**
14756
+ * Delete v1alpha1/AnnotationSetting
14757
+ * @param {V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
14758
+ * @param {*} [options] Override http request option.
14759
+ * @throws {RequiredError}
14760
+ * @memberof V1alpha1AnnotationSettingApi
14761
+ */
14762
+ deletev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
14763
+ /**
14764
+ * Get v1alpha1/AnnotationSetting
14765
+ * @param {V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
14766
+ * @param {*} [options] Override http request option.
14767
+ * @throws {RequiredError}
14768
+ * @memberof V1alpha1AnnotationSettingApi
14769
+ */
14770
+ getv1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
14771
+ /**
14772
+ * List v1alpha1/AnnotationSetting
14773
+ * @param {V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
14774
+ * @param {*} [options] Override http request option.
14775
+ * @throws {RequiredError}
14776
+ * @memberof V1alpha1AnnotationSettingApi
14777
+ */
14778
+ listv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSettingList, any>>;
14779
+ /**
14780
+ * Update v1alpha1/AnnotationSetting
14781
+ * @param {V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
14782
+ * @param {*} [options] Override http request option.
14783
+ * @throws {RequiredError}
14784
+ * @memberof V1alpha1AnnotationSettingApi
14785
+ */
14786
+ updatev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
14787
+ }
14788
+
14335
14789
  /**
14336
14790
  * V1alpha1ConfigMapApi - axios parameter creator
14337
14791
  * @export
@@ -16516,4 +16970,4 @@ declare class V1alpha1UserApi extends BaseAPI {
16516
16970
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
16517
16971
  }
16518
16972
 
16519
- export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
16973
+ export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };