@halo-dev/api-client 0.0.67 → 0.0.68
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 +152 -118
- package/dist/index.d.ts +244 -193
- package/dist/index.mjs +152 -118
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2206,7 +2206,7 @@ interface Extension {
|
|
|
2206
2206
|
* @type {string}
|
|
2207
2207
|
* @memberof Extension
|
|
2208
2208
|
*/
|
|
2209
|
-
|
|
2209
|
+
kind: string;
|
|
2210
2210
|
/**
|
|
2211
2211
|
*
|
|
2212
2212
|
* @type {Metadata}
|
|
@@ -2218,7 +2218,7 @@ interface Extension {
|
|
|
2218
2218
|
* @type {string}
|
|
2219
2219
|
* @memberof Extension
|
|
2220
2220
|
*/
|
|
2221
|
-
|
|
2221
|
+
apiVersion: string;
|
|
2222
2222
|
}
|
|
2223
2223
|
|
|
2224
2224
|
/**
|
|
@@ -7234,17 +7234,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7234
7234
|
* @param {string} [policy] Name of policy
|
|
7235
7235
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7236
7236
|
* @param {string} [displayName] Display name of attachment
|
|
7237
|
+
* @param {string} [group] Name of group
|
|
7237
7238
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7238
7239
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7239
|
-
* @param {string} [group] Name of group
|
|
7240
7240
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7241
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7241
7242
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7242
7243
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7243
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7244
7244
|
* @param {*} [options] Override http request option.
|
|
7245
7245
|
* @throws {RequiredError}
|
|
7246
7246
|
*/
|
|
7247
|
-
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7247
|
+
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7248
7248
|
/**
|
|
7249
7249
|
*
|
|
7250
7250
|
* @param {any} file
|
|
@@ -7265,17 +7265,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7265
7265
|
* @param {string} [policy] Name of policy
|
|
7266
7266
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7267
7267
|
* @param {string} [displayName] Display name of attachment
|
|
7268
|
+
* @param {string} [group] Name of group
|
|
7268
7269
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7269
7270
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7270
|
-
* @param {string} [group] Name of group
|
|
7271
7271
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7272
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7272
7273
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7273
7274
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7274
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7275
7275
|
* @param {*} [options] Override http request option.
|
|
7276
7276
|
* @throws {RequiredError}
|
|
7277
7277
|
*/
|
|
7278
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7278
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7279
7279
|
/**
|
|
7280
7280
|
*
|
|
7281
7281
|
* @param {any} file
|
|
@@ -7296,17 +7296,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7296
7296
|
* @param {string} [policy] Name of policy
|
|
7297
7297
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7298
7298
|
* @param {string} [displayName] Display name of attachment
|
|
7299
|
+
* @param {string} [group] Name of group
|
|
7299
7300
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7300
7301
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7301
|
-
* @param {string} [group] Name of group
|
|
7302
7302
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7303
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7303
7304
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7304
7305
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7305
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7306
7306
|
* @param {*} [options] Override http request option.
|
|
7307
7307
|
* @throws {RequiredError}
|
|
7308
7308
|
*/
|
|
7309
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7309
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
7310
7310
|
/**
|
|
7311
7311
|
*
|
|
7312
7312
|
* @param {any} file
|
|
@@ -7341,6 +7341,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7341
7341
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7342
7342
|
*/
|
|
7343
7343
|
readonly displayName?: string;
|
|
7344
|
+
/**
|
|
7345
|
+
* Name of group
|
|
7346
|
+
* @type {string}
|
|
7347
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7348
|
+
*/
|
|
7349
|
+
readonly group?: string;
|
|
7344
7350
|
/**
|
|
7345
7351
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7346
7352
|
* @type {boolean}
|
|
@@ -7354,17 +7360,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7354
7360
|
*/
|
|
7355
7361
|
readonly uploadedBy?: string;
|
|
7356
7362
|
/**
|
|
7357
|
-
*
|
|
7358
|
-
* @type {
|
|
7363
|
+
* Size of one page. Zero indicates no limit.
|
|
7364
|
+
* @type {number}
|
|
7359
7365
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7360
7366
|
*/
|
|
7361
|
-
readonly
|
|
7367
|
+
readonly size?: number;
|
|
7362
7368
|
/**
|
|
7363
|
-
*
|
|
7369
|
+
* The page number. Zero indicates no page.
|
|
7364
7370
|
* @type {number}
|
|
7365
7371
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7366
7372
|
*/
|
|
7367
|
-
readonly
|
|
7373
|
+
readonly page?: number;
|
|
7368
7374
|
/**
|
|
7369
7375
|
* Label selector for filtering.
|
|
7370
7376
|
* @type {Array<string>}
|
|
@@ -7377,12 +7383,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7377
7383
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7378
7384
|
*/
|
|
7379
7385
|
readonly fieldSelector?: Array<string>;
|
|
7380
|
-
/**
|
|
7381
|
-
* The page number. Zero indicates no page.
|
|
7382
|
-
* @type {number}
|
|
7383
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7384
|
-
*/
|
|
7385
|
-
readonly page?: number;
|
|
7386
7386
|
}
|
|
7387
7387
|
/**
|
|
7388
7388
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7457,6 +7457,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7457
7457
|
/**
|
|
7458
7458
|
* List comments.
|
|
7459
7459
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7460
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7461
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7462
|
+
* @param {boolean} [top] Comment top display.
|
|
7460
7463
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7461
7464
|
* @param {boolean} [approved] Comments approved.
|
|
7462
7465
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7464,17 +7467,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7464
7467
|
* @param {string} [ownerName] Commenter name.
|
|
7465
7468
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7466
7469
|
* @param {string} [subjectName] Comment subject name.
|
|
7467
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7468
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7469
|
-
* @param {boolean} [top] Comment top display.
|
|
7470
7470
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7471
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7471
7472
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7472
7473
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7473
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7474
7474
|
* @param {*} [options] Override http request option.
|
|
7475
7475
|
* @throws {RequiredError}
|
|
7476
7476
|
*/
|
|
7477
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7477
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7478
7478
|
};
|
|
7479
7479
|
/**
|
|
7480
7480
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7499,6 +7499,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7499
7499
|
/**
|
|
7500
7500
|
* List comments.
|
|
7501
7501
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7502
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7503
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7504
|
+
* @param {boolean} [top] Comment top display.
|
|
7502
7505
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7503
7506
|
* @param {boolean} [approved] Comments approved.
|
|
7504
7507
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7506,17 +7509,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7506
7509
|
* @param {string} [ownerName] Commenter name.
|
|
7507
7510
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7508
7511
|
* @param {string} [subjectName] Comment subject name.
|
|
7509
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7510
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7511
|
-
* @param {boolean} [top] Comment top display.
|
|
7512
7512
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7513
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7513
7514
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7514
7515
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7515
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7516
7516
|
* @param {*} [options] Override http request option.
|
|
7517
7517
|
* @throws {RequiredError}
|
|
7518
7518
|
*/
|
|
7519
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7519
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7520
7520
|
};
|
|
7521
7521
|
/**
|
|
7522
7522
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7541,6 +7541,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7541
7541
|
/**
|
|
7542
7542
|
* List comments.
|
|
7543
7543
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7544
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7545
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7546
|
+
* @param {boolean} [top] Comment top display.
|
|
7544
7547
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7545
7548
|
* @param {boolean} [approved] Comments approved.
|
|
7546
7549
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7548,17 +7551,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7548
7551
|
* @param {string} [ownerName] Commenter name.
|
|
7549
7552
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7550
7553
|
* @param {string} [subjectName] Comment subject name.
|
|
7551
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7552
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7553
|
-
* @param {boolean} [top] Comment top display.
|
|
7554
7554
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7555
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7555
7556
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7556
7557
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7557
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7558
7558
|
* @param {*} [options] Override http request option.
|
|
7559
7559
|
* @throws {RequiredError}
|
|
7560
7560
|
*/
|
|
7561
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7561
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
|
|
7562
7562
|
};
|
|
7563
7563
|
/**
|
|
7564
7564
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7604,6 +7604,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7604
7604
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7605
7605
|
*/
|
|
7606
7606
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7607
|
+
/**
|
|
7608
|
+
* Comments filtered by keyword.
|
|
7609
|
+
* @type {string}
|
|
7610
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7611
|
+
*/
|
|
7612
|
+
readonly keyword?: string;
|
|
7613
|
+
/**
|
|
7614
|
+
* The comment is hidden from the theme side.
|
|
7615
|
+
* @type {boolean}
|
|
7616
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7617
|
+
*/
|
|
7618
|
+
readonly hidden?: boolean;
|
|
7619
|
+
/**
|
|
7620
|
+
* Comment top display.
|
|
7621
|
+
* @type {boolean}
|
|
7622
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7623
|
+
*/
|
|
7624
|
+
readonly top?: boolean;
|
|
7607
7625
|
/**
|
|
7608
7626
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7609
7627
|
* @type {boolean}
|
|
@@ -7647,29 +7665,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7647
7665
|
*/
|
|
7648
7666
|
readonly subjectName?: string;
|
|
7649
7667
|
/**
|
|
7650
|
-
*
|
|
7651
|
-
* @type {
|
|
7652
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7653
|
-
*/
|
|
7654
|
-
readonly keyword?: string;
|
|
7655
|
-
/**
|
|
7656
|
-
* The comment is hidden from the theme side.
|
|
7657
|
-
* @type {boolean}
|
|
7658
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7659
|
-
*/
|
|
7660
|
-
readonly hidden?: boolean;
|
|
7661
|
-
/**
|
|
7662
|
-
* Comment top display.
|
|
7663
|
-
* @type {boolean}
|
|
7668
|
+
* Size of one page. Zero indicates no limit.
|
|
7669
|
+
* @type {number}
|
|
7664
7670
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7665
7671
|
*/
|
|
7666
|
-
readonly
|
|
7672
|
+
readonly size?: number;
|
|
7667
7673
|
/**
|
|
7668
|
-
*
|
|
7674
|
+
* The page number. Zero indicates no page.
|
|
7669
7675
|
* @type {number}
|
|
7670
7676
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7671
7677
|
*/
|
|
7672
|
-
readonly
|
|
7678
|
+
readonly page?: number;
|
|
7673
7679
|
/**
|
|
7674
7680
|
* Label selector for filtering.
|
|
7675
7681
|
* @type {Array<string>}
|
|
@@ -7682,12 +7688,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7682
7688
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7683
7689
|
*/
|
|
7684
7690
|
readonly fieldSelector?: Array<string>;
|
|
7685
|
-
/**
|
|
7686
|
-
* The page number. Zero indicates no page.
|
|
7687
|
-
* @type {number}
|
|
7688
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7689
|
-
*/
|
|
7690
|
-
readonly page?: number;
|
|
7691
7691
|
}
|
|
7692
7692
|
/**
|
|
7693
7693
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7951,16 +7951,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7951
7951
|
/**
|
|
7952
7952
|
* List plugins using query criteria and sort params
|
|
7953
7953
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7954
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7955
7954
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7955
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7956
7956
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7957
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7957
7958
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7958
7959
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7959
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7960
7960
|
* @param {*} [options] Override http request option.
|
|
7961
7961
|
* @throws {RequiredError}
|
|
7962
7962
|
*/
|
|
7963
|
-
listPlugins: (sort?: Array<string>, keyword?: string,
|
|
7963
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7964
7964
|
/**
|
|
7965
7965
|
* Reset the configMap of plugin setting.
|
|
7966
7966
|
* @param {string} name
|
|
@@ -7992,16 +7992,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7992
7992
|
/**
|
|
7993
7993
|
* List plugins using query criteria and sort params
|
|
7994
7994
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7995
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7996
7995
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7996
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7997
7997
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7998
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7998
7999
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7999
8000
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8000
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8001
8001
|
* @param {*} [options] Override http request option.
|
|
8002
8002
|
* @throws {RequiredError}
|
|
8003
8003
|
*/
|
|
8004
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
8004
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
8005
8005
|
/**
|
|
8006
8006
|
* Reset the configMap of plugin setting.
|
|
8007
8007
|
* @param {string} name
|
|
@@ -8033,16 +8033,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8033
8033
|
/**
|
|
8034
8034
|
* List plugins using query criteria and sort params
|
|
8035
8035
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
8036
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
8037
8036
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8037
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
8038
8038
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8039
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8039
8040
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8040
8041
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8041
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8042
8042
|
* @param {*} [options] Override http request option.
|
|
8043
8043
|
* @throws {RequiredError}
|
|
8044
8044
|
*/
|
|
8045
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
8045
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
8046
8046
|
/**
|
|
8047
8047
|
* Reset the configMap of plugin setting.
|
|
8048
8048
|
* @param {string} name
|
|
@@ -8084,6 +8084,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8084
8084
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8085
8085
|
*/
|
|
8086
8086
|
readonly sort?: Array<string>;
|
|
8087
|
+
/**
|
|
8088
|
+
* Whether the plugin is enabled
|
|
8089
|
+
* @type {boolean}
|
|
8090
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8091
|
+
*/
|
|
8092
|
+
readonly enabled?: boolean;
|
|
8087
8093
|
/**
|
|
8088
8094
|
* Keyword of plugin name or description
|
|
8089
8095
|
* @type {string}
|
|
@@ -8091,17 +8097,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8091
8097
|
*/
|
|
8092
8098
|
readonly keyword?: string;
|
|
8093
8099
|
/**
|
|
8094
|
-
*
|
|
8095
|
-
* @type {
|
|
8100
|
+
* Size of one page. Zero indicates no limit.
|
|
8101
|
+
* @type {number}
|
|
8096
8102
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8097
8103
|
*/
|
|
8098
|
-
readonly
|
|
8104
|
+
readonly size?: number;
|
|
8099
8105
|
/**
|
|
8100
|
-
*
|
|
8106
|
+
* The page number. Zero indicates no page.
|
|
8101
8107
|
* @type {number}
|
|
8102
8108
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8103
8109
|
*/
|
|
8104
|
-
readonly
|
|
8110
|
+
readonly page?: number;
|
|
8105
8111
|
/**
|
|
8106
8112
|
* Label selector for filtering.
|
|
8107
8113
|
* @type {Array<string>}
|
|
@@ -8114,12 +8120,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8114
8120
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8115
8121
|
*/
|
|
8116
8122
|
readonly fieldSelector?: Array<string>;
|
|
8117
|
-
/**
|
|
8118
|
-
* The page number. Zero indicates no page.
|
|
8119
|
-
* @type {number}
|
|
8120
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8121
|
-
*/
|
|
8122
|
-
readonly page?: number;
|
|
8123
8123
|
}
|
|
8124
8124
|
/**
|
|
8125
8125
|
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -8209,21 +8209,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8209
8209
|
/**
|
|
8210
8210
|
* List posts.
|
|
8211
8211
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8212
|
-
* @param {
|
|
8212
|
+
* @param {Array<string>} [tag]
|
|
8213
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8214
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8213
8215
|
* @param {Array<string>} [contributor]
|
|
8216
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8214
8217
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8215
8218
|
* @param {Array<string>} [category]
|
|
8216
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8217
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8218
|
-
* @param {Array<string>} [tag]
|
|
8219
8219
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8220
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8220
8221
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8221
8222
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8222
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8223
8223
|
* @param {*} [options] Override http request option.
|
|
8224
8224
|
* @throws {RequiredError}
|
|
8225
8225
|
*/
|
|
8226
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8226
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8227
8227
|
/**
|
|
8228
8228
|
* Publish a post.
|
|
8229
8229
|
* @param {string} name
|
|
@@ -8278,21 +8278,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8278
8278
|
/**
|
|
8279
8279
|
* List posts.
|
|
8280
8280
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8281
|
-
* @param {
|
|
8281
|
+
* @param {Array<string>} [tag]
|
|
8282
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8283
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8282
8284
|
* @param {Array<string>} [contributor]
|
|
8285
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8283
8286
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8284
8287
|
* @param {Array<string>} [category]
|
|
8285
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8286
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8287
|
-
* @param {Array<string>} [tag]
|
|
8288
8288
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8289
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8289
8290
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8290
8291
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8291
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8292
8292
|
* @param {*} [options] Override http request option.
|
|
8293
8293
|
* @throws {RequiredError}
|
|
8294
8294
|
*/
|
|
8295
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8295
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8296
8296
|
/**
|
|
8297
8297
|
* Publish a post.
|
|
8298
8298
|
* @param {string} name
|
|
@@ -8347,21 +8347,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8347
8347
|
/**
|
|
8348
8348
|
* List posts.
|
|
8349
8349
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8350
|
-
* @param {
|
|
8350
|
+
* @param {Array<string>} [tag]
|
|
8351
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8352
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8351
8353
|
* @param {Array<string>} [contributor]
|
|
8354
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8352
8355
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8353
8356
|
* @param {Array<string>} [category]
|
|
8354
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8355
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8356
|
-
* @param {Array<string>} [tag]
|
|
8357
8357
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8358
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8358
8359
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8359
8360
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8360
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8361
8361
|
* @param {*} [options] Override http request option.
|
|
8362
8362
|
* @throws {RequiredError}
|
|
8363
8363
|
*/
|
|
8364
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8364
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
8365
8365
|
/**
|
|
8366
8366
|
* Publish a post.
|
|
8367
8367
|
* @param {string} name
|
|
@@ -8427,53 +8427,59 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8427
8427
|
*/
|
|
8428
8428
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8429
8429
|
/**
|
|
8430
|
-
*
|
|
8431
|
-
* @type {
|
|
8430
|
+
*
|
|
8431
|
+
* @type {Array<string>}
|
|
8432
8432
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8433
8433
|
*/
|
|
8434
|
-
readonly
|
|
8434
|
+
readonly tag?: Array<string>;
|
|
8435
8435
|
/**
|
|
8436
8436
|
*
|
|
8437
|
-
* @type {
|
|
8437
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8438
8438
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8439
8439
|
*/
|
|
8440
|
-
readonly
|
|
8440
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8441
8441
|
/**
|
|
8442
|
-
*
|
|
8443
|
-
* @type {
|
|
8442
|
+
* Posts filtered by keyword.
|
|
8443
|
+
* @type {string}
|
|
8444
8444
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8445
8445
|
*/
|
|
8446
|
-
readonly
|
|
8446
|
+
readonly keyword?: string;
|
|
8447
8447
|
/**
|
|
8448
8448
|
*
|
|
8449
8449
|
* @type {Array<string>}
|
|
8450
8450
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8451
8451
|
*/
|
|
8452
|
-
readonly
|
|
8452
|
+
readonly contributor?: Array<string>;
|
|
8453
8453
|
/**
|
|
8454
|
-
*
|
|
8455
|
-
* @type {
|
|
8454
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8455
|
+
* @type {boolean}
|
|
8456
8456
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8457
8457
|
*/
|
|
8458
|
-
readonly
|
|
8458
|
+
readonly sortOrder?: boolean;
|
|
8459
8459
|
/**
|
|
8460
|
-
*
|
|
8461
|
-
* @type {
|
|
8460
|
+
*
|
|
8461
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8462
8462
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8463
8463
|
*/
|
|
8464
|
-
readonly
|
|
8464
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8465
8465
|
/**
|
|
8466
8466
|
*
|
|
8467
8467
|
* @type {Array<string>}
|
|
8468
8468
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8469
8469
|
*/
|
|
8470
|
-
readonly
|
|
8470
|
+
readonly category?: Array<string>;
|
|
8471
8471
|
/**
|
|
8472
8472
|
* Size of one page. Zero indicates no limit.
|
|
8473
8473
|
* @type {number}
|
|
8474
8474
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8475
8475
|
*/
|
|
8476
8476
|
readonly size?: number;
|
|
8477
|
+
/**
|
|
8478
|
+
* The page number. Zero indicates no page.
|
|
8479
|
+
* @type {number}
|
|
8480
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8481
|
+
*/
|
|
8482
|
+
readonly page?: number;
|
|
8477
8483
|
/**
|
|
8478
8484
|
* Label selector for filtering.
|
|
8479
8485
|
* @type {Array<string>}
|
|
@@ -8486,12 +8492,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8486
8492
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8487
8493
|
*/
|
|
8488
8494
|
readonly fieldSelector?: Array<string>;
|
|
8489
|
-
/**
|
|
8490
|
-
* The page number. Zero indicates no page.
|
|
8491
|
-
* @type {number}
|
|
8492
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8493
|
-
*/
|
|
8494
|
-
readonly page?: number;
|
|
8495
8495
|
}
|
|
8496
8496
|
/**
|
|
8497
8497
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8650,13 +8650,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8650
8650
|
* List replies.
|
|
8651
8651
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8652
8652
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8653
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8653
8654
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8654
8655
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8655
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8656
8656
|
* @param {*} [options] Override http request option.
|
|
8657
8657
|
* @throws {RequiredError}
|
|
8658
8658
|
*/
|
|
8659
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8659
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8660
8660
|
};
|
|
8661
8661
|
/**
|
|
8662
8662
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8667,13 +8667,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8667
8667
|
* List replies.
|
|
8668
8668
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8669
8669
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8670
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8670
8671
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8671
8672
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8672
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8673
8673
|
* @param {*} [options] Override http request option.
|
|
8674
8674
|
* @throws {RequiredError}
|
|
8675
8675
|
*/
|
|
8676
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8676
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8677
8677
|
};
|
|
8678
8678
|
/**
|
|
8679
8679
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8684,13 +8684,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8684
8684
|
* List replies.
|
|
8685
8685
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8686
8686
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8687
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8687
8688
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8688
8689
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8689
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8690
8690
|
* @param {*} [options] Override http request option.
|
|
8691
8691
|
* @throws {RequiredError}
|
|
8692
8692
|
*/
|
|
8693
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8693
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
8694
8694
|
};
|
|
8695
8695
|
/**
|
|
8696
8696
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8710,6 +8710,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8710
8710
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8711
8711
|
*/
|
|
8712
8712
|
readonly size?: number;
|
|
8713
|
+
/**
|
|
8714
|
+
* The page number. Zero indicates no page.
|
|
8715
|
+
* @type {number}
|
|
8716
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8717
|
+
*/
|
|
8718
|
+
readonly page?: number;
|
|
8713
8719
|
/**
|
|
8714
8720
|
* Label selector for filtering.
|
|
8715
8721
|
* @type {Array<string>}
|
|
@@ -8722,12 +8728,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8722
8728
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8723
8729
|
*/
|
|
8724
8730
|
readonly fieldSelector?: Array<string>;
|
|
8725
|
-
/**
|
|
8726
|
-
* The page number. Zero indicates no page.
|
|
8727
|
-
* @type {number}
|
|
8728
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8729
|
-
*/
|
|
8730
|
-
readonly page?: number;
|
|
8731
8731
|
}
|
|
8732
8732
|
/**
|
|
8733
8733
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8761,19 +8761,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8761
8761
|
/**
|
|
8762
8762
|
* List single pages.
|
|
8763
8763
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8764
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8765
|
-
* @param {Array<string>} [contributor]
|
|
8766
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8767
8764
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8768
8765
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8766
|
+
* @param {Array<string>} [contributor]
|
|
8767
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8768
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8769
8769
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8770
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8770
8771
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8771
8772
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8772
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8773
8773
|
* @param {*} [options] Override http request option.
|
|
8774
8774
|
* @throws {RequiredError}
|
|
8775
8775
|
*/
|
|
8776
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8776
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8777
8777
|
/**
|
|
8778
8778
|
* Publish a single page.
|
|
8779
8779
|
* @param {string} name
|
|
@@ -8813,19 +8813,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8813
8813
|
/**
|
|
8814
8814
|
* List single pages.
|
|
8815
8815
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8816
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8817
|
-
* @param {Array<string>} [contributor]
|
|
8818
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8819
8816
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8820
8817
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8818
|
+
* @param {Array<string>} [contributor]
|
|
8819
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8820
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8821
8821
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8822
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8822
8823
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8823
8824
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8824
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8825
8825
|
* @param {*} [options] Override http request option.
|
|
8826
8826
|
* @throws {RequiredError}
|
|
8827
8827
|
*/
|
|
8828
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8828
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8829
8829
|
/**
|
|
8830
8830
|
* Publish a single page.
|
|
8831
8831
|
* @param {string} name
|
|
@@ -8865,19 +8865,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8865
8865
|
/**
|
|
8866
8866
|
* List single pages.
|
|
8867
8867
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8868
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8869
|
-
* @param {Array<string>} [contributor]
|
|
8870
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8871
8868
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8872
8869
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8870
|
+
* @param {Array<string>} [contributor]
|
|
8871
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8872
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8873
8873
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8874
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8874
8875
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8875
8876
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8876
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8877
8877
|
* @param {*} [options] Override http request option.
|
|
8878
8878
|
* @throws {RequiredError}
|
|
8879
8879
|
*/
|
|
8880
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8880
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8881
8881
|
/**
|
|
8882
8882
|
* Publish a single page.
|
|
8883
8883
|
* @param {string} name
|
|
@@ -8928,11 +8928,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8928
8928
|
*/
|
|
8929
8929
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8930
8930
|
/**
|
|
8931
|
-
*
|
|
8932
|
-
* @type {
|
|
8931
|
+
*
|
|
8932
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8933
8933
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8934
8934
|
*/
|
|
8935
|
-
readonly
|
|
8935
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8936
|
+
/**
|
|
8937
|
+
* SinglePages filtered by keyword.
|
|
8938
|
+
* @type {string}
|
|
8939
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8940
|
+
*/
|
|
8941
|
+
readonly keyword?: string;
|
|
8936
8942
|
/**
|
|
8937
8943
|
*
|
|
8938
8944
|
* @type {Array<string>}
|
|
@@ -8940,29 +8946,29 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8940
8946
|
*/
|
|
8941
8947
|
readonly contributor?: Array<string>;
|
|
8942
8948
|
/**
|
|
8943
|
-
*
|
|
8944
|
-
* @type {
|
|
8949
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8950
|
+
* @type {boolean}
|
|
8945
8951
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8946
8952
|
*/
|
|
8947
|
-
readonly
|
|
8953
|
+
readonly sortOrder?: boolean;
|
|
8948
8954
|
/**
|
|
8949
8955
|
*
|
|
8950
|
-
* @type {'
|
|
8956
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8951
8957
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8952
8958
|
*/
|
|
8953
|
-
readonly
|
|
8959
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8954
8960
|
/**
|
|
8955
|
-
*
|
|
8956
|
-
* @type {
|
|
8961
|
+
* Size of one page. Zero indicates no limit.
|
|
8962
|
+
* @type {number}
|
|
8957
8963
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8958
8964
|
*/
|
|
8959
|
-
readonly
|
|
8965
|
+
readonly size?: number;
|
|
8960
8966
|
/**
|
|
8961
|
-
*
|
|
8967
|
+
* The page number. Zero indicates no page.
|
|
8962
8968
|
* @type {number}
|
|
8963
8969
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8964
8970
|
*/
|
|
8965
|
-
readonly
|
|
8971
|
+
readonly page?: number;
|
|
8966
8972
|
/**
|
|
8967
8973
|
* Label selector for filtering.
|
|
8968
8974
|
* @type {Array<string>}
|
|
@@ -8975,12 +8981,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8975
8981
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8976
8982
|
*/
|
|
8977
8983
|
readonly fieldSelector?: Array<string>;
|
|
8978
|
-
/**
|
|
8979
|
-
* The page number. Zero indicates no page.
|
|
8980
|
-
* @type {number}
|
|
8981
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8982
|
-
*/
|
|
8983
|
-
readonly page?: number;
|
|
8984
8984
|
}
|
|
8985
8985
|
/**
|
|
8986
8986
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9139,6 +9139,13 @@ declare class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
|
|
|
9139
9139
|
* @export
|
|
9140
9140
|
*/
|
|
9141
9141
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9142
|
+
/**
|
|
9143
|
+
* Activate a theme by name.
|
|
9144
|
+
* @param {string} name
|
|
9145
|
+
* @param {*} [options] Override http request option.
|
|
9146
|
+
* @throws {RequiredError}
|
|
9147
|
+
*/
|
|
9148
|
+
activateTheme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9142
9149
|
/**
|
|
9143
9150
|
* Fetch the activated theme.
|
|
9144
9151
|
* @param {*} [options] Override http request option.
|
|
@@ -9170,13 +9177,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9170
9177
|
* List themes.
|
|
9171
9178
|
* @param {boolean} uninstalled
|
|
9172
9179
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9180
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9173
9181
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9174
9182
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9175
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9176
9183
|
* @param {*} [options] Override http request option.
|
|
9177
9184
|
* @throws {RequiredError}
|
|
9178
9185
|
*/
|
|
9179
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9186
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9180
9187
|
/**
|
|
9181
9188
|
* Reload theme setting.
|
|
9182
9189
|
* @param {string} name
|
|
@@ -9194,10 +9201,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9194
9201
|
/**
|
|
9195
9202
|
* Update the configMap of theme setting.
|
|
9196
9203
|
* @param {string} name
|
|
9204
|
+
* @param {ConfigMap} configMap
|
|
9197
9205
|
* @param {*} [options] Override http request option.
|
|
9198
9206
|
* @throws {RequiredError}
|
|
9199
9207
|
*/
|
|
9200
|
-
updateThemeConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9208
|
+
updateThemeConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9201
9209
|
/**
|
|
9202
9210
|
* Upgrade theme
|
|
9203
9211
|
* @param {string} name
|
|
@@ -9212,6 +9220,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9212
9220
|
* @export
|
|
9213
9221
|
*/
|
|
9214
9222
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
9223
|
+
/**
|
|
9224
|
+
* Activate a theme by name.
|
|
9225
|
+
* @param {string} name
|
|
9226
|
+
* @param {*} [options] Override http request option.
|
|
9227
|
+
* @throws {RequiredError}
|
|
9228
|
+
*/
|
|
9229
|
+
activateTheme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
9215
9230
|
/**
|
|
9216
9231
|
* Fetch the activated theme.
|
|
9217
9232
|
* @param {*} [options] Override http request option.
|
|
@@ -9243,13 +9258,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9243
9258
|
* List themes.
|
|
9244
9259
|
* @param {boolean} uninstalled
|
|
9245
9260
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9261
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9246
9262
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9247
9263
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9248
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9249
9264
|
* @param {*} [options] Override http request option.
|
|
9250
9265
|
* @throws {RequiredError}
|
|
9251
9266
|
*/
|
|
9252
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9267
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
9253
9268
|
/**
|
|
9254
9269
|
* Reload theme setting.
|
|
9255
9270
|
* @param {string} name
|
|
@@ -9267,10 +9282,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9267
9282
|
/**
|
|
9268
9283
|
* Update the configMap of theme setting.
|
|
9269
9284
|
* @param {string} name
|
|
9285
|
+
* @param {ConfigMap} configMap
|
|
9270
9286
|
* @param {*} [options] Override http request option.
|
|
9271
9287
|
* @throws {RequiredError}
|
|
9272
9288
|
*/
|
|
9273
|
-
updateThemeConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
9289
|
+
updateThemeConfig(name: string, configMap: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
9274
9290
|
/**
|
|
9275
9291
|
* Upgrade theme
|
|
9276
9292
|
* @param {string} name
|
|
@@ -9285,6 +9301,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9285
9301
|
* @export
|
|
9286
9302
|
*/
|
|
9287
9303
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9304
|
+
/**
|
|
9305
|
+
* Activate a theme by name.
|
|
9306
|
+
* @param {string} name
|
|
9307
|
+
* @param {*} [options] Override http request option.
|
|
9308
|
+
* @throws {RequiredError}
|
|
9309
|
+
*/
|
|
9310
|
+
activateTheme(name: string, options?: any): AxiosPromise<Theme>;
|
|
9288
9311
|
/**
|
|
9289
9312
|
* Fetch the activated theme.
|
|
9290
9313
|
* @param {*} [options] Override http request option.
|
|
@@ -9316,13 +9339,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9316
9339
|
* List themes.
|
|
9317
9340
|
* @param {boolean} uninstalled
|
|
9318
9341
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9342
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9319
9343
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9320
9344
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9321
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9322
9345
|
* @param {*} [options] Override http request option.
|
|
9323
9346
|
* @throws {RequiredError}
|
|
9324
9347
|
*/
|
|
9325
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9348
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
9326
9349
|
/**
|
|
9327
9350
|
* Reload theme setting.
|
|
9328
9351
|
* @param {string} name
|
|
@@ -9340,10 +9363,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9340
9363
|
/**
|
|
9341
9364
|
* Update the configMap of theme setting.
|
|
9342
9365
|
* @param {string} name
|
|
9366
|
+
* @param {ConfigMap} configMap
|
|
9343
9367
|
* @param {*} [options] Override http request option.
|
|
9344
9368
|
* @throws {RequiredError}
|
|
9345
9369
|
*/
|
|
9346
|
-
updateThemeConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
9370
|
+
updateThemeConfig(name: string, configMap: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
|
|
9347
9371
|
/**
|
|
9348
9372
|
* Upgrade theme
|
|
9349
9373
|
* @param {string} name
|
|
@@ -9353,6 +9377,19 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9353
9377
|
*/
|
|
9354
9378
|
upgradeTheme(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
9355
9379
|
};
|
|
9380
|
+
/**
|
|
9381
|
+
* Request parameters for activateTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9382
|
+
* @export
|
|
9383
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest
|
|
9384
|
+
*/
|
|
9385
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest {
|
|
9386
|
+
/**
|
|
9387
|
+
*
|
|
9388
|
+
* @type {string}
|
|
9389
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiActivateTheme
|
|
9390
|
+
*/
|
|
9391
|
+
readonly name: string;
|
|
9392
|
+
}
|
|
9356
9393
|
/**
|
|
9357
9394
|
* Request parameters for fetchThemeConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9358
9395
|
* @export
|
|
@@ -9410,6 +9447,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9410
9447
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9411
9448
|
*/
|
|
9412
9449
|
readonly size?: number;
|
|
9450
|
+
/**
|
|
9451
|
+
* The page number. Zero indicates no page.
|
|
9452
|
+
* @type {number}
|
|
9453
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9454
|
+
*/
|
|
9455
|
+
readonly page?: number;
|
|
9413
9456
|
/**
|
|
9414
9457
|
* Label selector for filtering.
|
|
9415
9458
|
* @type {Array<string>}
|
|
@@ -9422,12 +9465,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9422
9465
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9423
9466
|
*/
|
|
9424
9467
|
readonly fieldSelector?: Array<string>;
|
|
9425
|
-
/**
|
|
9426
|
-
* The page number. Zero indicates no page.
|
|
9427
|
-
* @type {number}
|
|
9428
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9429
|
-
*/
|
|
9430
|
-
readonly page?: number;
|
|
9431
9468
|
}
|
|
9432
9469
|
/**
|
|
9433
9470
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9467,6 +9504,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest {
|
|
|
9467
9504
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfig
|
|
9468
9505
|
*/
|
|
9469
9506
|
readonly name: string;
|
|
9507
|
+
/**
|
|
9508
|
+
*
|
|
9509
|
+
* @type {ConfigMap}
|
|
9510
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfig
|
|
9511
|
+
*/
|
|
9512
|
+
readonly configMap: ConfigMap;
|
|
9470
9513
|
}
|
|
9471
9514
|
/**
|
|
9472
9515
|
* Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9494,6 +9537,14 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
|
|
|
9494
9537
|
* @extends {BaseAPI}
|
|
9495
9538
|
*/
|
|
9496
9539
|
declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
9540
|
+
/**
|
|
9541
|
+
* Activate a theme by name.
|
|
9542
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest} requestParameters Request parameters.
|
|
9543
|
+
* @param {*} [options] Override http request option.
|
|
9544
|
+
* @throws {RequiredError}
|
|
9545
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
9546
|
+
*/
|
|
9547
|
+
activateTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
9497
9548
|
/**
|
|
9498
9549
|
* Fetch the activated theme.
|
|
9499
9550
|
* @param {*} [options] Override http request option.
|
|
@@ -10122,13 +10173,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
10122
10173
|
/**
|
|
10123
10174
|
* Search posts with fuzzy query
|
|
10124
10175
|
* @param {string} keyword
|
|
10176
|
+
* @param {number} [limit]
|
|
10125
10177
|
* @param {string} [highlightPreTag]
|
|
10126
10178
|
* @param {string} [highlightPostTag]
|
|
10127
|
-
* @param {number} [limit]
|
|
10128
10179
|
* @param {*} [options] Override http request option.
|
|
10129
10180
|
* @throws {RequiredError}
|
|
10130
10181
|
*/
|
|
10131
|
-
searchPost: (keyword: string,
|
|
10182
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10132
10183
|
};
|
|
10133
10184
|
/**
|
|
10134
10185
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -10138,13 +10189,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
10138
10189
|
/**
|
|
10139
10190
|
* Search posts with fuzzy query
|
|
10140
10191
|
* @param {string} keyword
|
|
10192
|
+
* @param {number} [limit]
|
|
10141
10193
|
* @param {string} [highlightPreTag]
|
|
10142
10194
|
* @param {string} [highlightPostTag]
|
|
10143
|
-
* @param {number} [limit]
|
|
10144
10195
|
* @param {*} [options] Override http request option.
|
|
10145
10196
|
* @throws {RequiredError}
|
|
10146
10197
|
*/
|
|
10147
|
-
searchPost(keyword: string,
|
|
10198
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
10148
10199
|
};
|
|
10149
10200
|
/**
|
|
10150
10201
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -10154,13 +10205,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
10154
10205
|
/**
|
|
10155
10206
|
* Search posts with fuzzy query
|
|
10156
10207
|
* @param {string} keyword
|
|
10208
|
+
* @param {number} [limit]
|
|
10157
10209
|
* @param {string} [highlightPreTag]
|
|
10158
10210
|
* @param {string} [highlightPostTag]
|
|
10159
|
-
* @param {number} [limit]
|
|
10160
10211
|
* @param {*} [options] Override http request option.
|
|
10161
10212
|
* @throws {RequiredError}
|
|
10162
10213
|
*/
|
|
10163
|
-
searchPost(keyword: string,
|
|
10214
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
|
|
10164
10215
|
};
|
|
10165
10216
|
/**
|
|
10166
10217
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -10176,22 +10227,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
10176
10227
|
readonly keyword: string;
|
|
10177
10228
|
/**
|
|
10178
10229
|
*
|
|
10179
|
-
* @type {
|
|
10230
|
+
* @type {number}
|
|
10180
10231
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10181
10232
|
*/
|
|
10182
|
-
readonly
|
|
10233
|
+
readonly limit?: number;
|
|
10183
10234
|
/**
|
|
10184
10235
|
*
|
|
10185
10236
|
* @type {string}
|
|
10186
10237
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10187
10238
|
*/
|
|
10188
|
-
readonly
|
|
10239
|
+
readonly highlightPreTag?: string;
|
|
10189
10240
|
/**
|
|
10190
10241
|
*
|
|
10191
|
-
* @type {
|
|
10242
|
+
* @type {string}
|
|
10192
10243
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10193
10244
|
*/
|
|
10194
|
-
readonly
|
|
10245
|
+
readonly highlightPostTag?: string;
|
|
10195
10246
|
}
|
|
10196
10247
|
/**
|
|
10197
10248
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -17257,4 +17308,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
17257
17308
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
17258
17309
|
}
|
|
17259
17310
|
|
|
17260
|
-
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, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, 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 };
|
|
17311
|
+
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, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, 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 };
|