@halo-dev/api-client 0.0.64 → 0.0.66
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.cjs +209 -110
- package/dist/index.d.ts +313 -189
- package/dist/index.mjs +205 -111
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -172,13 +172,13 @@ interface AnnotationSettingSpec {
|
|
|
172
172
|
* @type {GroupKind}
|
|
173
173
|
* @memberof AnnotationSettingSpec
|
|
174
174
|
*/
|
|
175
|
-
targetRef
|
|
175
|
+
targetRef: GroupKind;
|
|
176
176
|
/**
|
|
177
177
|
*
|
|
178
178
|
* @type {Array<object>}
|
|
179
179
|
* @memberof AnnotationSettingSpec
|
|
180
180
|
*/
|
|
181
|
-
formSchema
|
|
181
|
+
formSchema: Array<object>;
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
/**
|
|
@@ -275,7 +275,7 @@ interface AnnotationSetting {
|
|
|
275
275
|
* @type {AnnotationSettingSpec}
|
|
276
276
|
* @memberof AnnotationSetting
|
|
277
277
|
*/
|
|
278
|
-
spec
|
|
278
|
+
spec: AnnotationSettingSpec;
|
|
279
279
|
/**
|
|
280
280
|
*
|
|
281
281
|
* @type {string}
|
|
@@ -2203,22 +2203,22 @@ interface Excerpt {
|
|
|
2203
2203
|
interface Extension {
|
|
2204
2204
|
/**
|
|
2205
2205
|
*
|
|
2206
|
-
* @type {
|
|
2206
|
+
* @type {Metadata}
|
|
2207
2207
|
* @memberof Extension
|
|
2208
2208
|
*/
|
|
2209
|
-
|
|
2209
|
+
metadata: Metadata;
|
|
2210
2210
|
/**
|
|
2211
2211
|
*
|
|
2212
|
-
* @type {
|
|
2212
|
+
* @type {string}
|
|
2213
2213
|
* @memberof Extension
|
|
2214
2214
|
*/
|
|
2215
|
-
|
|
2215
|
+
apiVersion: string;
|
|
2216
2216
|
/**
|
|
2217
2217
|
*
|
|
2218
2218
|
* @type {string}
|
|
2219
2219
|
* @memberof Extension
|
|
2220
2220
|
*/
|
|
2221
|
-
|
|
2221
|
+
kind: string;
|
|
2222
2222
|
}
|
|
2223
2223
|
|
|
2224
2224
|
/**
|
|
@@ -3919,6 +3919,12 @@ interface MenuItemSpec {
|
|
|
3919
3919
|
* @memberof MenuItemSpec
|
|
3920
3920
|
*/
|
|
3921
3921
|
href?: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* The <a> target attribute of this menu item.
|
|
3924
|
+
* @type {string}
|
|
3925
|
+
* @memberof MenuItemSpec
|
|
3926
|
+
*/
|
|
3927
|
+
target?: MenuItemSpecTargetEnum;
|
|
3922
3928
|
/**
|
|
3923
3929
|
* The priority is for ordering.
|
|
3924
3930
|
* @type {number}
|
|
@@ -3938,6 +3944,13 @@ interface MenuItemSpec {
|
|
|
3938
3944
|
*/
|
|
3939
3945
|
targetRef?: Ref;
|
|
3940
3946
|
}
|
|
3947
|
+
declare const MenuItemSpecTargetEnum: {
|
|
3948
|
+
readonly Blank: "_blank";
|
|
3949
|
+
readonly Self: "_self";
|
|
3950
|
+
readonly Parent: "_parent";
|
|
3951
|
+
readonly Top: "_top";
|
|
3952
|
+
};
|
|
3953
|
+
declare type MenuItemSpecTargetEnum = typeof MenuItemSpecTargetEnum[keyof typeof MenuItemSpecTargetEnum];
|
|
3941
3954
|
|
|
3942
3955
|
/**
|
|
3943
3956
|
* Halo Next API
|
|
@@ -7209,17 +7222,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7209
7222
|
* @param {string} [policy] Name of policy
|
|
7210
7223
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7211
7224
|
* @param {string} [displayName] Display name of attachment
|
|
7212
|
-
* @param {string} [group] Name of group
|
|
7213
7225
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7214
7226
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7227
|
+
* @param {string} [group] Name of group
|
|
7215
7228
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7216
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7217
7229
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7218
7230
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7231
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7219
7232
|
* @param {*} [options] Override http request option.
|
|
7220
7233
|
* @throws {RequiredError}
|
|
7221
7234
|
*/
|
|
7222
|
-
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string,
|
|
7235
|
+
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>;
|
|
7223
7236
|
/**
|
|
7224
7237
|
*
|
|
7225
7238
|
* @param {any} file
|
|
@@ -7240,17 +7253,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7240
7253
|
* @param {string} [policy] Name of policy
|
|
7241
7254
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7242
7255
|
* @param {string} [displayName] Display name of attachment
|
|
7243
|
-
* @param {string} [group] Name of group
|
|
7244
7256
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7245
7257
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7258
|
+
* @param {string} [group] Name of group
|
|
7246
7259
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7247
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7248
7260
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7249
7261
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7262
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7250
7263
|
* @param {*} [options] Override http request option.
|
|
7251
7264
|
* @throws {RequiredError}
|
|
7252
7265
|
*/
|
|
7253
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string,
|
|
7266
|
+
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>>;
|
|
7254
7267
|
/**
|
|
7255
7268
|
*
|
|
7256
7269
|
* @param {any} file
|
|
@@ -7271,17 +7284,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7271
7284
|
* @param {string} [policy] Name of policy
|
|
7272
7285
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7273
7286
|
* @param {string} [displayName] Display name of attachment
|
|
7274
|
-
* @param {string} [group] Name of group
|
|
7275
7287
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7276
7288
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7289
|
+
* @param {string} [group] Name of group
|
|
7277
7290
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7278
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7279
7291
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7280
7292
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7293
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7281
7294
|
* @param {*} [options] Override http request option.
|
|
7282
7295
|
* @throws {RequiredError}
|
|
7283
7296
|
*/
|
|
7284
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string,
|
|
7297
|
+
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>;
|
|
7285
7298
|
/**
|
|
7286
7299
|
*
|
|
7287
7300
|
* @param {any} file
|
|
@@ -7316,12 +7329,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7316
7329
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7317
7330
|
*/
|
|
7318
7331
|
readonly displayName?: string;
|
|
7319
|
-
/**
|
|
7320
|
-
* Name of group
|
|
7321
|
-
* @type {string}
|
|
7322
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7323
|
-
*/
|
|
7324
|
-
readonly group?: string;
|
|
7325
7332
|
/**
|
|
7326
7333
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7327
7334
|
* @type {boolean}
|
|
@@ -7335,17 +7342,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7335
7342
|
*/
|
|
7336
7343
|
readonly uploadedBy?: string;
|
|
7337
7344
|
/**
|
|
7338
|
-
*
|
|
7339
|
-
* @type {
|
|
7345
|
+
* Name of group
|
|
7346
|
+
* @type {string}
|
|
7340
7347
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7341
7348
|
*/
|
|
7342
|
-
readonly
|
|
7349
|
+
readonly group?: string;
|
|
7343
7350
|
/**
|
|
7344
|
-
*
|
|
7351
|
+
* Size of one page. Zero indicates no limit.
|
|
7345
7352
|
* @type {number}
|
|
7346
7353
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7347
7354
|
*/
|
|
7348
|
-
readonly
|
|
7355
|
+
readonly size?: number;
|
|
7349
7356
|
/**
|
|
7350
7357
|
* Label selector for filtering.
|
|
7351
7358
|
* @type {Array<string>}
|
|
@@ -7358,6 +7365,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7358
7365
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7359
7366
|
*/
|
|
7360
7367
|
readonly fieldSelector?: Array<string>;
|
|
7368
|
+
/**
|
|
7369
|
+
* The page number. Zero indicates no page.
|
|
7370
|
+
* @type {number}
|
|
7371
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7372
|
+
*/
|
|
7373
|
+
readonly page?: number;
|
|
7361
7374
|
}
|
|
7362
7375
|
/**
|
|
7363
7376
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7432,9 +7445,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7432
7445
|
/**
|
|
7433
7446
|
* List comments.
|
|
7434
7447
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7435
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7436
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7437
|
-
* @param {boolean} [top] Comment top display.
|
|
7438
7448
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7439
7449
|
* @param {boolean} [approved] Comments approved.
|
|
7440
7450
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7442,14 +7452,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7442
7452
|
* @param {string} [ownerName] Commenter name.
|
|
7443
7453
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7444
7454
|
* @param {string} [subjectName] Comment subject name.
|
|
7455
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7456
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7457
|
+
* @param {boolean} [top] Comment top display.
|
|
7445
7458
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7446
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7447
7459
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7448
7460
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7461
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7449
7462
|
* @param {*} [options] Override http request option.
|
|
7450
7463
|
* @throws {RequiredError}
|
|
7451
7464
|
*/
|
|
7452
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7465
|
+
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>;
|
|
7453
7466
|
};
|
|
7454
7467
|
/**
|
|
7455
7468
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7474,9 +7487,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7474
7487
|
/**
|
|
7475
7488
|
* List comments.
|
|
7476
7489
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7477
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7478
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7479
|
-
* @param {boolean} [top] Comment top display.
|
|
7480
7490
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7481
7491
|
* @param {boolean} [approved] Comments approved.
|
|
7482
7492
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7484,14 +7494,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7484
7494
|
* @param {string} [ownerName] Commenter name.
|
|
7485
7495
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7486
7496
|
* @param {string} [subjectName] Comment subject name.
|
|
7497
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7498
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7499
|
+
* @param {boolean} [top] Comment top display.
|
|
7487
7500
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7488
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7489
7501
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7490
7502
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7503
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7491
7504
|
* @param {*} [options] Override http request option.
|
|
7492
7505
|
* @throws {RequiredError}
|
|
7493
7506
|
*/
|
|
7494
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7507
|
+
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>>;
|
|
7495
7508
|
};
|
|
7496
7509
|
/**
|
|
7497
7510
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7516,9 +7529,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7516
7529
|
/**
|
|
7517
7530
|
* List comments.
|
|
7518
7531
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7519
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7520
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7521
|
-
* @param {boolean} [top] Comment top display.
|
|
7522
7532
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7523
7533
|
* @param {boolean} [approved] Comments approved.
|
|
7524
7534
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7526,14 +7536,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7526
7536
|
* @param {string} [ownerName] Commenter name.
|
|
7527
7537
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7528
7538
|
* @param {string} [subjectName] Comment subject name.
|
|
7539
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7540
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7541
|
+
* @param {boolean} [top] Comment top display.
|
|
7529
7542
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7530
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7531
7543
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7532
7544
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7545
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7533
7546
|
* @param {*} [options] Override http request option.
|
|
7534
7547
|
* @throws {RequiredError}
|
|
7535
7548
|
*/
|
|
7536
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7549
|
+
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>;
|
|
7537
7550
|
};
|
|
7538
7551
|
/**
|
|
7539
7552
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7579,24 +7592,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7579
7592
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7580
7593
|
*/
|
|
7581
7594
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7582
|
-
/**
|
|
7583
|
-
* Comments filtered by keyword.
|
|
7584
|
-
* @type {string}
|
|
7585
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7586
|
-
*/
|
|
7587
|
-
readonly keyword?: string;
|
|
7588
|
-
/**
|
|
7589
|
-
* The comment is hidden from the theme side.
|
|
7590
|
-
* @type {boolean}
|
|
7591
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7592
|
-
*/
|
|
7593
|
-
readonly hidden?: boolean;
|
|
7594
|
-
/**
|
|
7595
|
-
* Comment top display.
|
|
7596
|
-
* @type {boolean}
|
|
7597
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7598
|
-
*/
|
|
7599
|
-
readonly top?: boolean;
|
|
7600
7595
|
/**
|
|
7601
7596
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7602
7597
|
* @type {boolean}
|
|
@@ -7640,17 +7635,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7640
7635
|
*/
|
|
7641
7636
|
readonly subjectName?: string;
|
|
7642
7637
|
/**
|
|
7643
|
-
*
|
|
7644
|
-
* @type {
|
|
7638
|
+
* Comments filtered by keyword.
|
|
7639
|
+
* @type {string}
|
|
7645
7640
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7646
7641
|
*/
|
|
7647
|
-
readonly
|
|
7642
|
+
readonly keyword?: string;
|
|
7648
7643
|
/**
|
|
7649
|
-
* The
|
|
7644
|
+
* The comment is hidden from the theme side.
|
|
7645
|
+
* @type {boolean}
|
|
7646
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7647
|
+
*/
|
|
7648
|
+
readonly hidden?: boolean;
|
|
7649
|
+
/**
|
|
7650
|
+
* Comment top display.
|
|
7651
|
+
* @type {boolean}
|
|
7652
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7653
|
+
*/
|
|
7654
|
+
readonly top?: boolean;
|
|
7655
|
+
/**
|
|
7656
|
+
* Size of one page. Zero indicates no limit.
|
|
7650
7657
|
* @type {number}
|
|
7651
7658
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7652
7659
|
*/
|
|
7653
|
-
readonly
|
|
7660
|
+
readonly size?: number;
|
|
7654
7661
|
/**
|
|
7655
7662
|
* Label selector for filtering.
|
|
7656
7663
|
* @type {Array<string>}
|
|
@@ -7663,6 +7670,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7663
7670
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7664
7671
|
*/
|
|
7665
7672
|
readonly fieldSelector?: Array<string>;
|
|
7673
|
+
/**
|
|
7674
|
+
* The page number. Zero indicates no page.
|
|
7675
|
+
* @type {number}
|
|
7676
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7677
|
+
*/
|
|
7678
|
+
readonly page?: number;
|
|
7666
7679
|
}
|
|
7667
7680
|
/**
|
|
7668
7681
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7926,16 +7939,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7926
7939
|
/**
|
|
7927
7940
|
* List plugins using query criteria and sort params
|
|
7928
7941
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7929
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7930
7942
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7943
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7931
7944
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7932
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7933
7945
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7934
7946
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7947
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7935
7948
|
* @param {*} [options] Override http request option.
|
|
7936
7949
|
* @throws {RequiredError}
|
|
7937
7950
|
*/
|
|
7938
|
-
listPlugins: (sort?: Array<string>,
|
|
7951
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7939
7952
|
/**
|
|
7940
7953
|
* Reset the configMap of plugin setting.
|
|
7941
7954
|
* @param {string} name
|
|
@@ -7967,16 +7980,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7967
7980
|
/**
|
|
7968
7981
|
* List plugins using query criteria and sort params
|
|
7969
7982
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7970
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7971
7983
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7984
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7972
7985
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7973
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7974
7986
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7975
7987
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7988
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7976
7989
|
* @param {*} [options] Override http request option.
|
|
7977
7990
|
* @throws {RequiredError}
|
|
7978
7991
|
*/
|
|
7979
|
-
listPlugins(sort?: Array<string>,
|
|
7992
|
+
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>>;
|
|
7980
7993
|
/**
|
|
7981
7994
|
* Reset the configMap of plugin setting.
|
|
7982
7995
|
* @param {string} name
|
|
@@ -8008,16 +8021,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8008
8021
|
/**
|
|
8009
8022
|
* List plugins using query criteria and sort params
|
|
8010
8023
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
8011
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
8012
8024
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8025
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
8013
8026
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8014
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8015
8027
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8016
8028
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8029
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8017
8030
|
* @param {*} [options] Override http request option.
|
|
8018
8031
|
* @throws {RequiredError}
|
|
8019
8032
|
*/
|
|
8020
|
-
listPlugins(sort?: Array<string>,
|
|
8033
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
8021
8034
|
/**
|
|
8022
8035
|
* Reset the configMap of plugin setting.
|
|
8023
8036
|
* @param {string} name
|
|
@@ -8059,12 +8072,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8059
8072
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8060
8073
|
*/
|
|
8061
8074
|
readonly sort?: Array<string>;
|
|
8062
|
-
/**
|
|
8063
|
-
* Keyword of plugin name or description
|
|
8064
|
-
* @type {string}
|
|
8065
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8066
|
-
*/
|
|
8067
|
-
readonly keyword?: string;
|
|
8068
8075
|
/**
|
|
8069
8076
|
* Whether the plugin is enabled
|
|
8070
8077
|
* @type {boolean}
|
|
@@ -8072,17 +8079,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8072
8079
|
*/
|
|
8073
8080
|
readonly enabled?: boolean;
|
|
8074
8081
|
/**
|
|
8075
|
-
*
|
|
8076
|
-
* @type {
|
|
8082
|
+
* Keyword of plugin name or description
|
|
8083
|
+
* @type {string}
|
|
8077
8084
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8078
8085
|
*/
|
|
8079
|
-
readonly
|
|
8086
|
+
readonly keyword?: string;
|
|
8080
8087
|
/**
|
|
8081
|
-
*
|
|
8088
|
+
* Size of one page. Zero indicates no limit.
|
|
8082
8089
|
* @type {number}
|
|
8083
8090
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8084
8091
|
*/
|
|
8085
|
-
readonly
|
|
8092
|
+
readonly size?: number;
|
|
8086
8093
|
/**
|
|
8087
8094
|
* Label selector for filtering.
|
|
8088
8095
|
* @type {Array<string>}
|
|
@@ -8095,6 +8102,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8095
8102
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8096
8103
|
*/
|
|
8097
8104
|
readonly fieldSelector?: Array<string>;
|
|
8105
|
+
/**
|
|
8106
|
+
* The page number. Zero indicates no page.
|
|
8107
|
+
* @type {number}
|
|
8108
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8109
|
+
*/
|
|
8110
|
+
readonly page?: number;
|
|
8098
8111
|
}
|
|
8099
8112
|
/**
|
|
8100
8113
|
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -8184,21 +8197,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8184
8197
|
/**
|
|
8185
8198
|
* List posts.
|
|
8186
8199
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8187
|
-
* @param {
|
|
8188
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8189
|
-
* @param {Array<string>} [tag]
|
|
8200
|
+
* @param {Array<string>} [contributor]
|
|
8190
8201
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8191
8202
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8192
8203
|
* @param {Array<string>} [category]
|
|
8193
|
-
* @param {Array<string>} [
|
|
8204
|
+
* @param {Array<string>} [tag]
|
|
8205
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8206
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8194
8207
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8195
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8196
8208
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8197
8209
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8210
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8198
8211
|
* @param {*} [options] Override http request option.
|
|
8199
8212
|
* @throws {RequiredError}
|
|
8200
8213
|
*/
|
|
8201
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8214
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8202
8215
|
/**
|
|
8203
8216
|
* Publish a post.
|
|
8204
8217
|
* @param {string} name
|
|
@@ -8253,21 +8266,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8253
8266
|
/**
|
|
8254
8267
|
* List posts.
|
|
8255
8268
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8256
|
-
* @param {
|
|
8257
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8258
|
-
* @param {Array<string>} [tag]
|
|
8269
|
+
* @param {Array<string>} [contributor]
|
|
8259
8270
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8260
8271
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8261
8272
|
* @param {Array<string>} [category]
|
|
8262
|
-
* @param {Array<string>} [
|
|
8273
|
+
* @param {Array<string>} [tag]
|
|
8274
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8275
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8263
8276
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8264
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8265
8277
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8266
8278
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8279
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8267
8280
|
* @param {*} [options] Override http request option.
|
|
8268
8281
|
* @throws {RequiredError}
|
|
8269
8282
|
*/
|
|
8270
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8283
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8271
8284
|
/**
|
|
8272
8285
|
* Publish a post.
|
|
8273
8286
|
* @param {string} name
|
|
@@ -8322,21 +8335,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8322
8335
|
/**
|
|
8323
8336
|
* List posts.
|
|
8324
8337
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8325
|
-
* @param {
|
|
8326
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8327
|
-
* @param {Array<string>} [tag]
|
|
8338
|
+
* @param {Array<string>} [contributor]
|
|
8328
8339
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8329
8340
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8330
8341
|
* @param {Array<string>} [category]
|
|
8331
|
-
* @param {Array<string>} [
|
|
8342
|
+
* @param {Array<string>} [tag]
|
|
8343
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8344
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8332
8345
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8333
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8334
8346
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8335
8347
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8348
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8336
8349
|
* @param {*} [options] Override http request option.
|
|
8337
8350
|
* @throws {RequiredError}
|
|
8338
8351
|
*/
|
|
8339
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8352
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
8340
8353
|
/**
|
|
8341
8354
|
* Publish a post.
|
|
8342
8355
|
* @param {string} name
|
|
@@ -8401,24 +8414,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8401
8414
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8402
8415
|
*/
|
|
8403
8416
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8404
|
-
/**
|
|
8405
|
-
*
|
|
8406
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8407
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8408
|
-
*/
|
|
8409
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8410
|
-
/**
|
|
8411
|
-
* Posts filtered by keyword.
|
|
8412
|
-
* @type {string}
|
|
8413
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8414
|
-
*/
|
|
8415
|
-
readonly keyword?: string;
|
|
8416
8417
|
/**
|
|
8417
8418
|
*
|
|
8418
8419
|
* @type {Array<string>}
|
|
8419
8420
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8420
8421
|
*/
|
|
8421
|
-
readonly
|
|
8422
|
+
readonly contributor?: Array<string>;
|
|
8422
8423
|
/**
|
|
8423
8424
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8424
8425
|
* @type {boolean}
|
|
@@ -8442,19 +8443,25 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8442
8443
|
* @type {Array<string>}
|
|
8443
8444
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8444
8445
|
*/
|
|
8445
|
-
readonly
|
|
8446
|
+
readonly tag?: Array<string>;
|
|
8446
8447
|
/**
|
|
8447
|
-
*
|
|
8448
|
-
* @type {
|
|
8448
|
+
*
|
|
8449
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8449
8450
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8450
8451
|
*/
|
|
8451
|
-
readonly
|
|
8452
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8452
8453
|
/**
|
|
8453
|
-
*
|
|
8454
|
+
* Posts filtered by keyword.
|
|
8455
|
+
* @type {string}
|
|
8456
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8457
|
+
*/
|
|
8458
|
+
readonly keyword?: string;
|
|
8459
|
+
/**
|
|
8460
|
+
* Size of one page. Zero indicates no limit.
|
|
8454
8461
|
* @type {number}
|
|
8455
8462
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8456
8463
|
*/
|
|
8457
|
-
readonly
|
|
8464
|
+
readonly size?: number;
|
|
8458
8465
|
/**
|
|
8459
8466
|
* Label selector for filtering.
|
|
8460
8467
|
* @type {Array<string>}
|
|
@@ -8467,6 +8474,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8467
8474
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8468
8475
|
*/
|
|
8469
8476
|
readonly fieldSelector?: Array<string>;
|
|
8477
|
+
/**
|
|
8478
|
+
* The page number. Zero indicates no page.
|
|
8479
|
+
* @type {number}
|
|
8480
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8481
|
+
*/
|
|
8482
|
+
readonly page?: number;
|
|
8470
8483
|
}
|
|
8471
8484
|
/**
|
|
8472
8485
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8625,13 +8638,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8625
8638
|
* List replies.
|
|
8626
8639
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8627
8640
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8628
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8629
8641
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8630
8642
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8643
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8631
8644
|
* @param {*} [options] Override http request option.
|
|
8632
8645
|
* @throws {RequiredError}
|
|
8633
8646
|
*/
|
|
8634
|
-
listReplies: (commentName?: string, size?: number,
|
|
8647
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8635
8648
|
};
|
|
8636
8649
|
/**
|
|
8637
8650
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8642,13 +8655,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8642
8655
|
* List replies.
|
|
8643
8656
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8644
8657
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8645
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8646
8658
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8647
8659
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8660
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8648
8661
|
* @param {*} [options] Override http request option.
|
|
8649
8662
|
* @throws {RequiredError}
|
|
8650
8663
|
*/
|
|
8651
|
-
listReplies(commentName?: string, size?: number,
|
|
8664
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8652
8665
|
};
|
|
8653
8666
|
/**
|
|
8654
8667
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8659,13 +8672,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8659
8672
|
* List replies.
|
|
8660
8673
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8661
8674
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8662
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8663
8675
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8664
8676
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8677
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8665
8678
|
* @param {*} [options] Override http request option.
|
|
8666
8679
|
* @throws {RequiredError}
|
|
8667
8680
|
*/
|
|
8668
|
-
listReplies(commentName?: string, size?: number,
|
|
8681
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
8669
8682
|
};
|
|
8670
8683
|
/**
|
|
8671
8684
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8685,12 +8698,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8685
8698
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8686
8699
|
*/
|
|
8687
8700
|
readonly size?: number;
|
|
8688
|
-
/**
|
|
8689
|
-
* The page number. Zero indicates no page.
|
|
8690
|
-
* @type {number}
|
|
8691
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8692
|
-
*/
|
|
8693
|
-
readonly page?: number;
|
|
8694
8701
|
/**
|
|
8695
8702
|
* Label selector for filtering.
|
|
8696
8703
|
* @type {Array<string>}
|
|
@@ -8703,6 +8710,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8703
8710
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8704
8711
|
*/
|
|
8705
8712
|
readonly fieldSelector?: Array<string>;
|
|
8713
|
+
/**
|
|
8714
|
+
* The page number. Zero indicates no page.
|
|
8715
|
+
* @type {number}
|
|
8716
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8717
|
+
*/
|
|
8718
|
+
readonly page?: number;
|
|
8706
8719
|
}
|
|
8707
8720
|
/**
|
|
8708
8721
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8736,19 +8749,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8736
8749
|
/**
|
|
8737
8750
|
* List single pages.
|
|
8738
8751
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8739
|
-
* @param {
|
|
8740
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8752
|
+
* @param {Array<string>} [contributor]
|
|
8741
8753
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8742
8754
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8743
|
-
* @param {
|
|
8755
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8756
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8744
8757
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8745
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8746
8758
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8747
8759
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8760
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8748
8761
|
* @param {*} [options] Override http request option.
|
|
8749
8762
|
* @throws {RequiredError}
|
|
8750
8763
|
*/
|
|
8751
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8764
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8752
8765
|
/**
|
|
8753
8766
|
* Publish a single page.
|
|
8754
8767
|
* @param {string} name
|
|
@@ -8788,19 +8801,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8788
8801
|
/**
|
|
8789
8802
|
* List single pages.
|
|
8790
8803
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8791
|
-
* @param {
|
|
8792
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8804
|
+
* @param {Array<string>} [contributor]
|
|
8793
8805
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8794
8806
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8795
|
-
* @param {
|
|
8807
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8808
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8796
8809
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8797
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8798
8810
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8799
8811
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8812
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8800
8813
|
* @param {*} [options] Override http request option.
|
|
8801
8814
|
* @throws {RequiredError}
|
|
8802
8815
|
*/
|
|
8803
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8816
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8804
8817
|
/**
|
|
8805
8818
|
* Publish a single page.
|
|
8806
8819
|
* @param {string} name
|
|
@@ -8840,19 +8853,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8840
8853
|
/**
|
|
8841
8854
|
* List single pages.
|
|
8842
8855
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8843
|
-
* @param {
|
|
8844
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8856
|
+
* @param {Array<string>} [contributor]
|
|
8845
8857
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8846
8858
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8847
|
-
* @param {
|
|
8859
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8860
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8848
8861
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8849
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8850
8862
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8851
8863
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8864
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8852
8865
|
* @param {*} [options] Override http request option.
|
|
8853
8866
|
* @throws {RequiredError}
|
|
8854
8867
|
*/
|
|
8855
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8868
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8856
8869
|
/**
|
|
8857
8870
|
* Publish a single page.
|
|
8858
8871
|
* @param {string} name
|
|
@@ -8904,16 +8917,10 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8904
8917
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8905
8918
|
/**
|
|
8906
8919
|
*
|
|
8907
|
-
* @type {
|
|
8908
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8909
|
-
*/
|
|
8910
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8911
|
-
/**
|
|
8912
|
-
* SinglePages filtered by keyword.
|
|
8913
|
-
* @type {string}
|
|
8920
|
+
* @type {Array<string>}
|
|
8914
8921
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8915
8922
|
*/
|
|
8916
|
-
readonly
|
|
8923
|
+
readonly contributor?: Array<string>;
|
|
8917
8924
|
/**
|
|
8918
8925
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8919
8926
|
* @type {boolean}
|
|
@@ -8928,22 +8935,22 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8928
8935
|
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8929
8936
|
/**
|
|
8930
8937
|
*
|
|
8931
|
-
* @type {
|
|
8938
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8932
8939
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8933
8940
|
*/
|
|
8934
|
-
readonly
|
|
8941
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8935
8942
|
/**
|
|
8936
|
-
*
|
|
8937
|
-
* @type {
|
|
8943
|
+
* SinglePages filtered by keyword.
|
|
8944
|
+
* @type {string}
|
|
8938
8945
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8939
8946
|
*/
|
|
8940
|
-
readonly
|
|
8947
|
+
readonly keyword?: string;
|
|
8941
8948
|
/**
|
|
8942
|
-
*
|
|
8949
|
+
* Size of one page. Zero indicates no limit.
|
|
8943
8950
|
* @type {number}
|
|
8944
8951
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8945
8952
|
*/
|
|
8946
|
-
readonly
|
|
8953
|
+
readonly size?: number;
|
|
8947
8954
|
/**
|
|
8948
8955
|
* Label selector for filtering.
|
|
8949
8956
|
* @type {Array<string>}
|
|
@@ -8956,6 +8963,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8956
8963
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8957
8964
|
*/
|
|
8958
8965
|
readonly fieldSelector?: Array<string>;
|
|
8966
|
+
/**
|
|
8967
|
+
* The page number. Zero indicates no page.
|
|
8968
|
+
* @type {number}
|
|
8969
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8970
|
+
*/
|
|
8971
|
+
readonly page?: number;
|
|
8959
8972
|
}
|
|
8960
8973
|
/**
|
|
8961
8974
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9125,13 +9138,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9125
9138
|
* List themes.
|
|
9126
9139
|
* @param {boolean} uninstalled
|
|
9127
9140
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9128
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9129
9141
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9130
9142
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9143
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9131
9144
|
* @param {*} [options] Override http request option.
|
|
9132
9145
|
* @throws {RequiredError}
|
|
9133
9146
|
*/
|
|
9134
|
-
listThemes: (uninstalled: boolean, size?: number,
|
|
9147
|
+
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9135
9148
|
/**
|
|
9136
9149
|
* Reload theme setting.
|
|
9137
9150
|
* @param {string} name
|
|
@@ -9171,13 +9184,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9171
9184
|
* List themes.
|
|
9172
9185
|
* @param {boolean} uninstalled
|
|
9173
9186
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9174
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9175
9187
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9176
9188
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9189
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9177
9190
|
* @param {*} [options] Override http request option.
|
|
9178
9191
|
* @throws {RequiredError}
|
|
9179
9192
|
*/
|
|
9180
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
9193
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
9181
9194
|
/**
|
|
9182
9195
|
* Reload theme setting.
|
|
9183
9196
|
* @param {string} name
|
|
@@ -9217,13 +9230,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9217
9230
|
* List themes.
|
|
9218
9231
|
* @param {boolean} uninstalled
|
|
9219
9232
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9220
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9221
9233
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9222
9234
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9235
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9223
9236
|
* @param {*} [options] Override http request option.
|
|
9224
9237
|
* @throws {RequiredError}
|
|
9225
9238
|
*/
|
|
9226
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
9239
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
|
|
9227
9240
|
/**
|
|
9228
9241
|
* Reload theme setting.
|
|
9229
9242
|
* @param {string} name
|
|
@@ -9278,12 +9291,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9278
9291
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9279
9292
|
*/
|
|
9280
9293
|
readonly size?: number;
|
|
9281
|
-
/**
|
|
9282
|
-
* The page number. Zero indicates no page.
|
|
9283
|
-
* @type {number}
|
|
9284
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9285
|
-
*/
|
|
9286
|
-
readonly page?: number;
|
|
9287
9294
|
/**
|
|
9288
9295
|
* Label selector for filtering.
|
|
9289
9296
|
* @type {Array<string>}
|
|
@@ -9296,6 +9303,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9296
9303
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9297
9304
|
*/
|
|
9298
9305
|
readonly fieldSelector?: Array<string>;
|
|
9306
|
+
/**
|
|
9307
|
+
* The page number. Zero indicates no page.
|
|
9308
|
+
* @type {number}
|
|
9309
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9310
|
+
*/
|
|
9311
|
+
readonly page?: number;
|
|
9299
9312
|
}
|
|
9300
9313
|
/**
|
|
9301
9314
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9425,6 +9438,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
9425
9438
|
* @throws {RequiredError}
|
|
9426
9439
|
*/
|
|
9427
9440
|
grantPermission: (name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9441
|
+
/**
|
|
9442
|
+
* Update current user profile, but password.
|
|
9443
|
+
* @param {User} user
|
|
9444
|
+
* @param {*} [options] Override http request option.
|
|
9445
|
+
* @throws {RequiredError}
|
|
9446
|
+
*/
|
|
9447
|
+
updateCurrentUser: (user: User, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9428
9448
|
};
|
|
9429
9449
|
/**
|
|
9430
9450
|
* ApiConsoleHaloRunV1alpha1UserApi - functional programming interface
|
|
@@ -9460,6 +9480,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
9460
9480
|
* @throws {RequiredError}
|
|
9461
9481
|
*/
|
|
9462
9482
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
9483
|
+
/**
|
|
9484
|
+
* Update current user profile, but password.
|
|
9485
|
+
* @param {User} user
|
|
9486
|
+
* @param {*} [options] Override http request option.
|
|
9487
|
+
* @throws {RequiredError}
|
|
9488
|
+
*/
|
|
9489
|
+
updateCurrentUser(user: User, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
9463
9490
|
};
|
|
9464
9491
|
/**
|
|
9465
9492
|
* ApiConsoleHaloRunV1alpha1UserApi - factory interface
|
|
@@ -9495,6 +9522,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
|
|
|
9495
9522
|
* @throws {RequiredError}
|
|
9496
9523
|
*/
|
|
9497
9524
|
grantPermission(name: string, grantRequest: GrantRequest, options?: any): AxiosPromise<User>;
|
|
9525
|
+
/**
|
|
9526
|
+
* Update current user profile, but password.
|
|
9527
|
+
* @param {User} user
|
|
9528
|
+
* @param {*} [options] Override http request option.
|
|
9529
|
+
* @throws {RequiredError}
|
|
9530
|
+
*/
|
|
9531
|
+
updateCurrentUser(user: User, options?: any): AxiosPromise<User>;
|
|
9498
9532
|
};
|
|
9499
9533
|
/**
|
|
9500
9534
|
* Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
@@ -9547,6 +9581,19 @@ interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest {
|
|
|
9547
9581
|
*/
|
|
9548
9582
|
readonly grantRequest: GrantRequest;
|
|
9549
9583
|
}
|
|
9584
|
+
/**
|
|
9585
|
+
* Request parameters for updateCurrentUser operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
9586
|
+
* @export
|
|
9587
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest
|
|
9588
|
+
*/
|
|
9589
|
+
interface ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest {
|
|
9590
|
+
/**
|
|
9591
|
+
*
|
|
9592
|
+
* @type {User}
|
|
9593
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUser
|
|
9594
|
+
*/
|
|
9595
|
+
readonly user: User;
|
|
9596
|
+
}
|
|
9550
9597
|
/**
|
|
9551
9598
|
* ApiConsoleHaloRunV1alpha1UserApi - object-oriented interface
|
|
9552
9599
|
* @export
|
|
@@ -9585,6 +9632,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
9585
9632
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
9586
9633
|
*/
|
|
9587
9634
|
grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
9635
|
+
/**
|
|
9636
|
+
* Update current user profile, but password.
|
|
9637
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest} requestParameters Request parameters.
|
|
9638
|
+
* @param {*} [options] Override http request option.
|
|
9639
|
+
* @throws {RequiredError}
|
|
9640
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
9641
|
+
*/
|
|
9642
|
+
updateCurrentUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
9588
9643
|
}
|
|
9589
9644
|
|
|
9590
9645
|
/**
|
|
@@ -9904,13 +9959,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9904
9959
|
/**
|
|
9905
9960
|
* Search posts with fuzzy query
|
|
9906
9961
|
* @param {string} keyword
|
|
9907
|
-
* @param {number} [limit]
|
|
9908
9962
|
* @param {string} [highlightPreTag]
|
|
9909
9963
|
* @param {string} [highlightPostTag]
|
|
9964
|
+
* @param {number} [limit]
|
|
9910
9965
|
* @param {*} [options] Override http request option.
|
|
9911
9966
|
* @throws {RequiredError}
|
|
9912
9967
|
*/
|
|
9913
|
-
searchPost: (keyword: string,
|
|
9968
|
+
searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9914
9969
|
};
|
|
9915
9970
|
/**
|
|
9916
9971
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9920,13 +9975,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9920
9975
|
/**
|
|
9921
9976
|
* Search posts with fuzzy query
|
|
9922
9977
|
* @param {string} keyword
|
|
9923
|
-
* @param {number} [limit]
|
|
9924
9978
|
* @param {string} [highlightPreTag]
|
|
9925
9979
|
* @param {string} [highlightPostTag]
|
|
9980
|
+
* @param {number} [limit]
|
|
9926
9981
|
* @param {*} [options] Override http request option.
|
|
9927
9982
|
* @throws {RequiredError}
|
|
9928
9983
|
*/
|
|
9929
|
-
searchPost(keyword: string,
|
|
9984
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9930
9985
|
};
|
|
9931
9986
|
/**
|
|
9932
9987
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9936,13 +9991,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9936
9991
|
/**
|
|
9937
9992
|
* Search posts with fuzzy query
|
|
9938
9993
|
* @param {string} keyword
|
|
9939
|
-
* @param {number} [limit]
|
|
9940
9994
|
* @param {string} [highlightPreTag]
|
|
9941
9995
|
* @param {string} [highlightPostTag]
|
|
9996
|
+
* @param {number} [limit]
|
|
9942
9997
|
* @param {*} [options] Override http request option.
|
|
9943
9998
|
* @throws {RequiredError}
|
|
9944
9999
|
*/
|
|
9945
|
-
searchPost(keyword: string,
|
|
10000
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
|
|
9946
10001
|
};
|
|
9947
10002
|
/**
|
|
9948
10003
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9958,22 +10013,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9958
10013
|
readonly keyword: string;
|
|
9959
10014
|
/**
|
|
9960
10015
|
*
|
|
9961
|
-
* @type {
|
|
10016
|
+
* @type {string}
|
|
9962
10017
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9963
10018
|
*/
|
|
9964
|
-
readonly
|
|
10019
|
+
readonly highlightPreTag?: string;
|
|
9965
10020
|
/**
|
|
9966
10021
|
*
|
|
9967
10022
|
* @type {string}
|
|
9968
10023
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9969
10024
|
*/
|
|
9970
|
-
readonly
|
|
10025
|
+
readonly highlightPostTag?: string;
|
|
9971
10026
|
/**
|
|
9972
10027
|
*
|
|
9973
|
-
* @type {
|
|
10028
|
+
* @type {number}
|
|
9974
10029
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9975
10030
|
*/
|
|
9976
|
-
readonly
|
|
10031
|
+
readonly limit?: number;
|
|
9977
10032
|
}
|
|
9978
10033
|
/**
|
|
9979
10034
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -12329,6 +12384,75 @@ declare class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
|
12329
12384
|
updatemetricsHaloRunV1alpha1Counter(requestParameters: MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Counter, any>>;
|
|
12330
12385
|
}
|
|
12331
12386
|
|
|
12387
|
+
/**
|
|
12388
|
+
* MigrationControllerApi - axios parameter creator
|
|
12389
|
+
* @export
|
|
12390
|
+
*/
|
|
12391
|
+
declare const MigrationControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12392
|
+
/**
|
|
12393
|
+
* Import migration data file.
|
|
12394
|
+
* @param {any} file
|
|
12395
|
+
* @param {*} [options] Override http request option.
|
|
12396
|
+
* @throws {RequiredError}
|
|
12397
|
+
*/
|
|
12398
|
+
importMigrationData: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12399
|
+
};
|
|
12400
|
+
/**
|
|
12401
|
+
* MigrationControllerApi - functional programming interface
|
|
12402
|
+
* @export
|
|
12403
|
+
*/
|
|
12404
|
+
declare const MigrationControllerApiFp: (configuration?: Configuration) => {
|
|
12405
|
+
/**
|
|
12406
|
+
* Import migration data file.
|
|
12407
|
+
* @param {any} file
|
|
12408
|
+
* @param {*} [options] Override http request option.
|
|
12409
|
+
* @throws {RequiredError}
|
|
12410
|
+
*/
|
|
12411
|
+
importMigrationData(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
12412
|
+
};
|
|
12413
|
+
/**
|
|
12414
|
+
* MigrationControllerApi - factory interface
|
|
12415
|
+
* @export
|
|
12416
|
+
*/
|
|
12417
|
+
declare const MigrationControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12418
|
+
/**
|
|
12419
|
+
* Import migration data file.
|
|
12420
|
+
* @param {any} file
|
|
12421
|
+
* @param {*} [options] Override http request option.
|
|
12422
|
+
* @throws {RequiredError}
|
|
12423
|
+
*/
|
|
12424
|
+
importMigrationData(file: any, options?: any): AxiosPromise<object>;
|
|
12425
|
+
};
|
|
12426
|
+
/**
|
|
12427
|
+
* Request parameters for importMigrationData operation in MigrationControllerApi.
|
|
12428
|
+
* @export
|
|
12429
|
+
* @interface MigrationControllerApiImportMigrationDataRequest
|
|
12430
|
+
*/
|
|
12431
|
+
interface MigrationControllerApiImportMigrationDataRequest {
|
|
12432
|
+
/**
|
|
12433
|
+
*
|
|
12434
|
+
* @type {any}
|
|
12435
|
+
* @memberof MigrationControllerApiImportMigrationData
|
|
12436
|
+
*/
|
|
12437
|
+
readonly file: any;
|
|
12438
|
+
}
|
|
12439
|
+
/**
|
|
12440
|
+
* MigrationControllerApi - object-oriented interface
|
|
12441
|
+
* @export
|
|
12442
|
+
* @class MigrationControllerApi
|
|
12443
|
+
* @extends {BaseAPI}
|
|
12444
|
+
*/
|
|
12445
|
+
declare class MigrationControllerApi extends BaseAPI {
|
|
12446
|
+
/**
|
|
12447
|
+
* Import migration data file.
|
|
12448
|
+
* @param {MigrationControllerApiImportMigrationDataRequest} requestParameters Request parameters.
|
|
12449
|
+
* @param {*} [options] Override http request option.
|
|
12450
|
+
* @throws {RequiredError}
|
|
12451
|
+
* @memberof MigrationControllerApi
|
|
12452
|
+
*/
|
|
12453
|
+
importMigrationData(requestParameters: MigrationControllerApiImportMigrationDataRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
12454
|
+
}
|
|
12455
|
+
|
|
12332
12456
|
/**
|
|
12333
12457
|
* PluginHaloRunV1alpha1PluginApi - axios parameter creator
|
|
12334
12458
|
* @export
|
|
@@ -16970,4 +17094,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
16970
17094
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
16971
17095
|
}
|
|
16972
17096
|
|
|
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 };
|
|
17097
|
+
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, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, 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, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, MigrationControllerApi, MigrationControllerApiAxiosParamCreator, MigrationControllerApiFactory, MigrationControllerApiFp, MigrationControllerApiImportMigrationDataRequest, 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 };
|