@halo-dev/api-client 0.0.67 → 0.0.69
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 +248 -118
- package/dist/index.d.ts +379 -193
- package/dist/index.mjs +248 -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
|
|
@@ -7941,6 +7941,20 @@ declare class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
|
|
|
7941
7941
|
* @export
|
|
7942
7942
|
*/
|
|
7943
7943
|
declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7944
|
+
/**
|
|
7945
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
7946
|
+
* @param {string} name
|
|
7947
|
+
* @param {*} [options] Override http request option.
|
|
7948
|
+
* @throws {RequiredError}
|
|
7949
|
+
*/
|
|
7950
|
+
fetchPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7951
|
+
/**
|
|
7952
|
+
* Fetch setting of plugin.
|
|
7953
|
+
* @param {string} name
|
|
7954
|
+
* @param {*} [options] Override http request option.
|
|
7955
|
+
* @throws {RequiredError}
|
|
7956
|
+
*/
|
|
7957
|
+
fetchPluginSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7944
7958
|
/**
|
|
7945
7959
|
* Install a plugin by uploading a Jar file.
|
|
7946
7960
|
* @param {any} file
|
|
@@ -7951,16 +7965,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7951
7965
|
/**
|
|
7952
7966
|
* List plugins using query criteria and sort params
|
|
7953
7967
|
* @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
7968
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7969
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7956
7970
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7971
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7957
7972
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7958
7973
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7959
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7960
7974
|
* @param {*} [options] Override http request option.
|
|
7961
7975
|
* @throws {RequiredError}
|
|
7962
7976
|
*/
|
|
7963
|
-
listPlugins: (sort?: Array<string>, keyword?: string,
|
|
7977
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7964
7978
|
/**
|
|
7965
7979
|
* Reset the configMap of plugin setting.
|
|
7966
7980
|
* @param {string} name
|
|
@@ -7968,6 +7982,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7968
7982
|
* @throws {RequiredError}
|
|
7969
7983
|
*/
|
|
7970
7984
|
resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7985
|
+
/**
|
|
7986
|
+
* Update the configMap of plugin setting.
|
|
7987
|
+
* @param {string} name
|
|
7988
|
+
* @param {ConfigMap} configMap
|
|
7989
|
+
* @param {*} [options] Override http request option.
|
|
7990
|
+
* @throws {RequiredError}
|
|
7991
|
+
*/
|
|
7992
|
+
updatePluginConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7971
7993
|
/**
|
|
7972
7994
|
* Upgrade a plugin by uploading a Jar file
|
|
7973
7995
|
* @param {string} name
|
|
@@ -7982,6 +8004,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7982
8004
|
* @export
|
|
7983
8005
|
*/
|
|
7984
8006
|
declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
8007
|
+
/**
|
|
8008
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8009
|
+
* @param {string} name
|
|
8010
|
+
* @param {*} [options] Override http request option.
|
|
8011
|
+
* @throws {RequiredError}
|
|
8012
|
+
*/
|
|
8013
|
+
fetchPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8014
|
+
/**
|
|
8015
|
+
* Fetch setting of plugin.
|
|
8016
|
+
* @param {string} name
|
|
8017
|
+
* @param {*} [options] Override http request option.
|
|
8018
|
+
* @throws {RequiredError}
|
|
8019
|
+
*/
|
|
8020
|
+
fetchPluginSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
7985
8021
|
/**
|
|
7986
8022
|
* Install a plugin by uploading a Jar file.
|
|
7987
8023
|
* @param {any} file
|
|
@@ -7992,16 +8028,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7992
8028
|
/**
|
|
7993
8029
|
* List plugins using query criteria and sort params
|
|
7994
8030
|
* @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
8031
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8032
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7997
8033
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8034
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7998
8035
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7999
8036
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8000
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8001
8037
|
* @param {*} [options] Override http request option.
|
|
8002
8038
|
* @throws {RequiredError}
|
|
8003
8039
|
*/
|
|
8004
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
8040
|
+
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
8041
|
/**
|
|
8006
8042
|
* Reset the configMap of plugin setting.
|
|
8007
8043
|
* @param {string} name
|
|
@@ -8009,6 +8045,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
8009
8045
|
* @throws {RequiredError}
|
|
8010
8046
|
*/
|
|
8011
8047
|
resetPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8048
|
+
/**
|
|
8049
|
+
* Update the configMap of plugin setting.
|
|
8050
|
+
* @param {string} name
|
|
8051
|
+
* @param {ConfigMap} configMap
|
|
8052
|
+
* @param {*} [options] Override http request option.
|
|
8053
|
+
* @throws {RequiredError}
|
|
8054
|
+
*/
|
|
8055
|
+
updatePluginConfig(name: string, configMap: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8012
8056
|
/**
|
|
8013
8057
|
* Upgrade a plugin by uploading a Jar file
|
|
8014
8058
|
* @param {string} name
|
|
@@ -8023,6 +8067,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
8023
8067
|
* @export
|
|
8024
8068
|
*/
|
|
8025
8069
|
declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8070
|
+
/**
|
|
8071
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8072
|
+
* @param {string} name
|
|
8073
|
+
* @param {*} [options] Override http request option.
|
|
8074
|
+
* @throws {RequiredError}
|
|
8075
|
+
*/
|
|
8076
|
+
fetchPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
8077
|
+
/**
|
|
8078
|
+
* Fetch setting of plugin.
|
|
8079
|
+
* @param {string} name
|
|
8080
|
+
* @param {*} [options] Override http request option.
|
|
8081
|
+
* @throws {RequiredError}
|
|
8082
|
+
*/
|
|
8083
|
+
fetchPluginSetting(name: string, options?: any): AxiosPromise<Setting>;
|
|
8026
8084
|
/**
|
|
8027
8085
|
* Install a plugin by uploading a Jar file.
|
|
8028
8086
|
* @param {any} file
|
|
@@ -8033,16 +8091,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8033
8091
|
/**
|
|
8034
8092
|
* List plugins using query criteria and sort params
|
|
8035
8093
|
* @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
8094
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8095
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
8038
8096
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8097
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8039
8098
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8040
8099
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8041
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8042
8100
|
* @param {*} [options] Override http request option.
|
|
8043
8101
|
* @throws {RequiredError}
|
|
8044
8102
|
*/
|
|
8045
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
8103
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
8046
8104
|
/**
|
|
8047
8105
|
* Reset the configMap of plugin setting.
|
|
8048
8106
|
* @param {string} name
|
|
@@ -8050,6 +8108,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8050
8108
|
* @throws {RequiredError}
|
|
8051
8109
|
*/
|
|
8052
8110
|
resetPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
8111
|
+
/**
|
|
8112
|
+
* Update the configMap of plugin setting.
|
|
8113
|
+
* @param {string} name
|
|
8114
|
+
* @param {ConfigMap} configMap
|
|
8115
|
+
* @param {*} [options] Override http request option.
|
|
8116
|
+
* @throws {RequiredError}
|
|
8117
|
+
*/
|
|
8118
|
+
updatePluginConfig(name: string, configMap: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
|
|
8053
8119
|
/**
|
|
8054
8120
|
* Upgrade a plugin by uploading a Jar file
|
|
8055
8121
|
* @param {string} name
|
|
@@ -8059,6 +8125,32 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8059
8125
|
*/
|
|
8060
8126
|
upgradePlugin(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
8061
8127
|
};
|
|
8128
|
+
/**
|
|
8129
|
+
* Request parameters for fetchPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8130
|
+
* @export
|
|
8131
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest
|
|
8132
|
+
*/
|
|
8133
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest {
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @type {string}
|
|
8137
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfig
|
|
8138
|
+
*/
|
|
8139
|
+
readonly name: string;
|
|
8140
|
+
}
|
|
8141
|
+
/**
|
|
8142
|
+
* Request parameters for fetchPluginSetting operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8143
|
+
* @export
|
|
8144
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest
|
|
8145
|
+
*/
|
|
8146
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest {
|
|
8147
|
+
/**
|
|
8148
|
+
*
|
|
8149
|
+
* @type {string}
|
|
8150
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSetting
|
|
8151
|
+
*/
|
|
8152
|
+
readonly name: string;
|
|
8153
|
+
}
|
|
8062
8154
|
/**
|
|
8063
8155
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8064
8156
|
* @export
|
|
@@ -8084,6 +8176,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8084
8176
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8085
8177
|
*/
|
|
8086
8178
|
readonly sort?: Array<string>;
|
|
8179
|
+
/**
|
|
8180
|
+
* Whether the plugin is enabled
|
|
8181
|
+
* @type {boolean}
|
|
8182
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8183
|
+
*/
|
|
8184
|
+
readonly enabled?: boolean;
|
|
8087
8185
|
/**
|
|
8088
8186
|
* Keyword of plugin name or description
|
|
8089
8187
|
* @type {string}
|
|
@@ -8091,17 +8189,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8091
8189
|
*/
|
|
8092
8190
|
readonly keyword?: string;
|
|
8093
8191
|
/**
|
|
8094
|
-
*
|
|
8095
|
-
* @type {
|
|
8192
|
+
* Size of one page. Zero indicates no limit.
|
|
8193
|
+
* @type {number}
|
|
8096
8194
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8097
8195
|
*/
|
|
8098
|
-
readonly
|
|
8196
|
+
readonly size?: number;
|
|
8099
8197
|
/**
|
|
8100
|
-
*
|
|
8198
|
+
* The page number. Zero indicates no page.
|
|
8101
8199
|
* @type {number}
|
|
8102
8200
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8103
8201
|
*/
|
|
8104
|
-
readonly
|
|
8202
|
+
readonly page?: number;
|
|
8105
8203
|
/**
|
|
8106
8204
|
* Label selector for filtering.
|
|
8107
8205
|
* @type {Array<string>}
|
|
@@ -8114,12 +8212,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8114
8212
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8115
8213
|
*/
|
|
8116
8214
|
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
8215
|
}
|
|
8124
8216
|
/**
|
|
8125
8217
|
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -8134,6 +8226,25 @@ interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest {
|
|
|
8134
8226
|
*/
|
|
8135
8227
|
readonly name: string;
|
|
8136
8228
|
}
|
|
8229
|
+
/**
|
|
8230
|
+
* Request parameters for updatePluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8231
|
+
* @export
|
|
8232
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest
|
|
8233
|
+
*/
|
|
8234
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest {
|
|
8235
|
+
/**
|
|
8236
|
+
*
|
|
8237
|
+
* @type {string}
|
|
8238
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfig
|
|
8239
|
+
*/
|
|
8240
|
+
readonly name: string;
|
|
8241
|
+
/**
|
|
8242
|
+
*
|
|
8243
|
+
* @type {ConfigMap}
|
|
8244
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfig
|
|
8245
|
+
*/
|
|
8246
|
+
readonly configMap: ConfigMap;
|
|
8247
|
+
}
|
|
8137
8248
|
/**
|
|
8138
8249
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8139
8250
|
* @export
|
|
@@ -8160,6 +8271,22 @@ interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest {
|
|
|
8160
8271
|
* @extends {BaseAPI}
|
|
8161
8272
|
*/
|
|
8162
8273
|
declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
8274
|
+
/**
|
|
8275
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8276
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest} requestParameters Request parameters.
|
|
8277
|
+
* @param {*} [options] Override http request option.
|
|
8278
|
+
* @throws {RequiredError}
|
|
8279
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8280
|
+
*/
|
|
8281
|
+
fetchPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8282
|
+
/**
|
|
8283
|
+
* Fetch setting of plugin.
|
|
8284
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest} requestParameters Request parameters.
|
|
8285
|
+
* @param {*} [options] Override http request option.
|
|
8286
|
+
* @throws {RequiredError}
|
|
8287
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8288
|
+
*/
|
|
8289
|
+
fetchPluginSetting(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
8163
8290
|
/**
|
|
8164
8291
|
* Install a plugin by uploading a Jar file.
|
|
8165
8292
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
|
|
@@ -8184,6 +8311,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
8184
8311
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8185
8312
|
*/
|
|
8186
8313
|
resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8314
|
+
/**
|
|
8315
|
+
* Update the configMap of plugin setting.
|
|
8316
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest} requestParameters Request parameters.
|
|
8317
|
+
* @param {*} [options] Override http request option.
|
|
8318
|
+
* @throws {RequiredError}
|
|
8319
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8320
|
+
*/
|
|
8321
|
+
updatePluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8187
8322
|
/**
|
|
8188
8323
|
* Upgrade a plugin by uploading a Jar file
|
|
8189
8324
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
@@ -8209,21 +8344,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8209
8344
|
/**
|
|
8210
8345
|
* List posts.
|
|
8211
8346
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8212
|
-
* @param {
|
|
8347
|
+
* @param {Array<string>} [tag]
|
|
8348
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8349
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8213
8350
|
* @param {Array<string>} [contributor]
|
|
8351
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8214
8352
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8215
8353
|
* @param {Array<string>} [category]
|
|
8216
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8217
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8218
|
-
* @param {Array<string>} [tag]
|
|
8219
8354
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8355
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8220
8356
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8221
8357
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8222
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8223
8358
|
* @param {*} [options] Override http request option.
|
|
8224
8359
|
* @throws {RequiredError}
|
|
8225
8360
|
*/
|
|
8226
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8361
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8362
|
/**
|
|
8228
8363
|
* Publish a post.
|
|
8229
8364
|
* @param {string} name
|
|
@@ -8278,21 +8413,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8278
8413
|
/**
|
|
8279
8414
|
* List posts.
|
|
8280
8415
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8281
|
-
* @param {
|
|
8416
|
+
* @param {Array<string>} [tag]
|
|
8417
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8418
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8282
8419
|
* @param {Array<string>} [contributor]
|
|
8420
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8283
8421
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8284
8422
|
* @param {Array<string>} [category]
|
|
8285
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8286
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8287
|
-
* @param {Array<string>} [tag]
|
|
8288
8423
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8424
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8289
8425
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8290
8426
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8291
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8292
8427
|
* @param {*} [options] Override http request option.
|
|
8293
8428
|
* @throws {RequiredError}
|
|
8294
8429
|
*/
|
|
8295
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8430
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8431
|
/**
|
|
8297
8432
|
* Publish a post.
|
|
8298
8433
|
* @param {string} name
|
|
@@ -8347,21 +8482,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8347
8482
|
/**
|
|
8348
8483
|
* List posts.
|
|
8349
8484
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8350
|
-
* @param {
|
|
8485
|
+
* @param {Array<string>} [tag]
|
|
8486
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8487
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8351
8488
|
* @param {Array<string>} [contributor]
|
|
8489
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8352
8490
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8353
8491
|
* @param {Array<string>} [category]
|
|
8354
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8355
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8356
|
-
* @param {Array<string>} [tag]
|
|
8357
8492
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8493
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8358
8494
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8359
8495
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8360
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8361
8496
|
* @param {*} [options] Override http request option.
|
|
8362
8497
|
* @throws {RequiredError}
|
|
8363
8498
|
*/
|
|
8364
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8499
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8500
|
/**
|
|
8366
8501
|
* Publish a post.
|
|
8367
8502
|
* @param {string} name
|
|
@@ -8427,53 +8562,59 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8427
8562
|
*/
|
|
8428
8563
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8429
8564
|
/**
|
|
8430
|
-
*
|
|
8431
|
-
* @type {
|
|
8565
|
+
*
|
|
8566
|
+
* @type {Array<string>}
|
|
8432
8567
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8433
8568
|
*/
|
|
8434
|
-
readonly
|
|
8569
|
+
readonly tag?: Array<string>;
|
|
8435
8570
|
/**
|
|
8436
|
-
*
|
|
8437
|
-
* @type {
|
|
8571
|
+
* Posts filtered by keyword.
|
|
8572
|
+
* @type {string}
|
|
8438
8573
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8439
8574
|
*/
|
|
8440
|
-
readonly
|
|
8575
|
+
readonly keyword?: string;
|
|
8441
8576
|
/**
|
|
8442
8577
|
*
|
|
8443
|
-
* @type {'
|
|
8578
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8444
8579
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8445
8580
|
*/
|
|
8446
|
-
readonly
|
|
8581
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8447
8582
|
/**
|
|
8448
8583
|
*
|
|
8449
8584
|
* @type {Array<string>}
|
|
8450
8585
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8451
8586
|
*/
|
|
8452
|
-
readonly
|
|
8587
|
+
readonly contributor?: Array<string>;
|
|
8453
8588
|
/**
|
|
8454
|
-
*
|
|
8455
|
-
* @type {
|
|
8589
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8590
|
+
* @type {boolean}
|
|
8456
8591
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8457
8592
|
*/
|
|
8458
|
-
readonly
|
|
8593
|
+
readonly sortOrder?: boolean;
|
|
8459
8594
|
/**
|
|
8460
|
-
*
|
|
8461
|
-
* @type {
|
|
8595
|
+
*
|
|
8596
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8462
8597
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8463
8598
|
*/
|
|
8464
|
-
readonly
|
|
8599
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8465
8600
|
/**
|
|
8466
8601
|
*
|
|
8467
8602
|
* @type {Array<string>}
|
|
8468
8603
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8469
8604
|
*/
|
|
8470
|
-
readonly
|
|
8605
|
+
readonly category?: Array<string>;
|
|
8471
8606
|
/**
|
|
8472
8607
|
* Size of one page. Zero indicates no limit.
|
|
8473
8608
|
* @type {number}
|
|
8474
8609
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8475
8610
|
*/
|
|
8476
8611
|
readonly size?: number;
|
|
8612
|
+
/**
|
|
8613
|
+
* The page number. Zero indicates no page.
|
|
8614
|
+
* @type {number}
|
|
8615
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8616
|
+
*/
|
|
8617
|
+
readonly page?: number;
|
|
8477
8618
|
/**
|
|
8478
8619
|
* Label selector for filtering.
|
|
8479
8620
|
* @type {Array<string>}
|
|
@@ -8486,12 +8627,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8486
8627
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8487
8628
|
*/
|
|
8488
8629
|
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
8630
|
}
|
|
8496
8631
|
/**
|
|
8497
8632
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8650,13 +8785,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8650
8785
|
* List replies.
|
|
8651
8786
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8652
8787
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8788
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8653
8789
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8654
8790
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8655
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8656
8791
|
* @param {*} [options] Override http request option.
|
|
8657
8792
|
* @throws {RequiredError}
|
|
8658
8793
|
*/
|
|
8659
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8794
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8660
8795
|
};
|
|
8661
8796
|
/**
|
|
8662
8797
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8667,13 +8802,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8667
8802
|
* List replies.
|
|
8668
8803
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8669
8804
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8805
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8670
8806
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8671
8807
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8672
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8673
8808
|
* @param {*} [options] Override http request option.
|
|
8674
8809
|
* @throws {RequiredError}
|
|
8675
8810
|
*/
|
|
8676
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8811
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8677
8812
|
};
|
|
8678
8813
|
/**
|
|
8679
8814
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8684,13 +8819,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8684
8819
|
* List replies.
|
|
8685
8820
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8686
8821
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8822
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8687
8823
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8688
8824
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8689
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8690
8825
|
* @param {*} [options] Override http request option.
|
|
8691
8826
|
* @throws {RequiredError}
|
|
8692
8827
|
*/
|
|
8693
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8828
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
8694
8829
|
};
|
|
8695
8830
|
/**
|
|
8696
8831
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8710,6 +8845,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8710
8845
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8711
8846
|
*/
|
|
8712
8847
|
readonly size?: number;
|
|
8848
|
+
/**
|
|
8849
|
+
* The page number. Zero indicates no page.
|
|
8850
|
+
* @type {number}
|
|
8851
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8852
|
+
*/
|
|
8853
|
+
readonly page?: number;
|
|
8713
8854
|
/**
|
|
8714
8855
|
* Label selector for filtering.
|
|
8715
8856
|
* @type {Array<string>}
|
|
@@ -8722,12 +8863,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8722
8863
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8723
8864
|
*/
|
|
8724
8865
|
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
8866
|
}
|
|
8732
8867
|
/**
|
|
8733
8868
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8761,19 +8896,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8761
8896
|
/**
|
|
8762
8897
|
* List single pages.
|
|
8763
8898
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8764
|
-
* @param {
|
|
8899
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8900
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8765
8901
|
* @param {Array<string>} [contributor]
|
|
8902
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8766
8903
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8767
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8768
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8769
8904
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8905
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8770
8906
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8771
8907
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8772
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8773
8908
|
* @param {*} [options] Override http request option.
|
|
8774
8909
|
* @throws {RequiredError}
|
|
8775
8910
|
*/
|
|
8776
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8911
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8912
|
/**
|
|
8778
8913
|
* Publish a single page.
|
|
8779
8914
|
* @param {string} name
|
|
@@ -8813,19 +8948,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8813
8948
|
/**
|
|
8814
8949
|
* List single pages.
|
|
8815
8950
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8816
|
-
* @param {
|
|
8951
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8952
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8817
8953
|
* @param {Array<string>} [contributor]
|
|
8954
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8818
8955
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8819
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8820
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8821
8956
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8957
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8822
8958
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8823
8959
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8824
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8825
8960
|
* @param {*} [options] Override http request option.
|
|
8826
8961
|
* @throws {RequiredError}
|
|
8827
8962
|
*/
|
|
8828
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8963
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8964
|
/**
|
|
8830
8965
|
* Publish a single page.
|
|
8831
8966
|
* @param {string} name
|
|
@@ -8865,19 +9000,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8865
9000
|
/**
|
|
8866
9001
|
* List single pages.
|
|
8867
9002
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8868
|
-
* @param {
|
|
9003
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
9004
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8869
9005
|
* @param {Array<string>} [contributor]
|
|
9006
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8870
9007
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8871
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8872
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8873
9008
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9009
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8874
9010
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8875
9011
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8876
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8877
9012
|
* @param {*} [options] Override http request option.
|
|
8878
9013
|
* @throws {RequiredError}
|
|
8879
9014
|
*/
|
|
8880
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
9015
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
9016
|
/**
|
|
8882
9017
|
* Publish a single page.
|
|
8883
9018
|
* @param {string} name
|
|
@@ -8928,41 +9063,47 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8928
9063
|
*/
|
|
8929
9064
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8930
9065
|
/**
|
|
8931
|
-
*
|
|
8932
|
-
* @type {
|
|
9066
|
+
* SinglePages filtered by keyword.
|
|
9067
|
+
* @type {string}
|
|
8933
9068
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8934
9069
|
*/
|
|
8935
|
-
readonly
|
|
9070
|
+
readonly keyword?: string;
|
|
8936
9071
|
/**
|
|
8937
9072
|
*
|
|
8938
|
-
* @type {
|
|
9073
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8939
9074
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8940
9075
|
*/
|
|
8941
|
-
readonly
|
|
9076
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8942
9077
|
/**
|
|
8943
9078
|
*
|
|
8944
|
-
* @type {
|
|
9079
|
+
* @type {Array<string>}
|
|
8945
9080
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8946
9081
|
*/
|
|
8947
|
-
readonly
|
|
9082
|
+
readonly contributor?: Array<string>;
|
|
8948
9083
|
/**
|
|
8949
|
-
*
|
|
8950
|
-
* @type {
|
|
9084
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
9085
|
+
* @type {boolean}
|
|
8951
9086
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8952
9087
|
*/
|
|
8953
|
-
readonly
|
|
9088
|
+
readonly sortOrder?: boolean;
|
|
8954
9089
|
/**
|
|
8955
|
-
*
|
|
8956
|
-
* @type {
|
|
9090
|
+
*
|
|
9091
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8957
9092
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8958
9093
|
*/
|
|
8959
|
-
readonly
|
|
9094
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8960
9095
|
/**
|
|
8961
9096
|
* Size of one page. Zero indicates no limit.
|
|
8962
9097
|
* @type {number}
|
|
8963
9098
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8964
9099
|
*/
|
|
8965
9100
|
readonly size?: number;
|
|
9101
|
+
/**
|
|
9102
|
+
* The page number. Zero indicates no page.
|
|
9103
|
+
* @type {number}
|
|
9104
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9105
|
+
*/
|
|
9106
|
+
readonly page?: number;
|
|
8966
9107
|
/**
|
|
8967
9108
|
* Label selector for filtering.
|
|
8968
9109
|
* @type {Array<string>}
|
|
@@ -8975,12 +9116,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8975
9116
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8976
9117
|
*/
|
|
8977
9118
|
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
9119
|
}
|
|
8985
9120
|
/**
|
|
8986
9121
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9139,6 +9274,13 @@ declare class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
|
|
|
9139
9274
|
* @export
|
|
9140
9275
|
*/
|
|
9141
9276
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9277
|
+
/**
|
|
9278
|
+
* Activate a theme by name.
|
|
9279
|
+
* @param {string} name
|
|
9280
|
+
* @param {*} [options] Override http request option.
|
|
9281
|
+
* @throws {RequiredError}
|
|
9282
|
+
*/
|
|
9283
|
+
activateTheme: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9142
9284
|
/**
|
|
9143
9285
|
* Fetch the activated theme.
|
|
9144
9286
|
* @param {*} [options] Override http request option.
|
|
@@ -9170,13 +9312,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9170
9312
|
* List themes.
|
|
9171
9313
|
* @param {boolean} uninstalled
|
|
9172
9314
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9315
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9173
9316
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9174
9317
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9175
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9176
9318
|
* @param {*} [options] Override http request option.
|
|
9177
9319
|
* @throws {RequiredError}
|
|
9178
9320
|
*/
|
|
9179
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9321
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9180
9322
|
/**
|
|
9181
9323
|
* Reload theme setting.
|
|
9182
9324
|
* @param {string} name
|
|
@@ -9194,10 +9336,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9194
9336
|
/**
|
|
9195
9337
|
* Update the configMap of theme setting.
|
|
9196
9338
|
* @param {string} name
|
|
9339
|
+
* @param {ConfigMap} configMap
|
|
9197
9340
|
* @param {*} [options] Override http request option.
|
|
9198
9341
|
* @throws {RequiredError}
|
|
9199
9342
|
*/
|
|
9200
|
-
updateThemeConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9343
|
+
updateThemeConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9201
9344
|
/**
|
|
9202
9345
|
* Upgrade theme
|
|
9203
9346
|
* @param {string} name
|
|
@@ -9212,6 +9355,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9212
9355
|
* @export
|
|
9213
9356
|
*/
|
|
9214
9357
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
9358
|
+
/**
|
|
9359
|
+
* Activate a theme by name.
|
|
9360
|
+
* @param {string} name
|
|
9361
|
+
* @param {*} [options] Override http request option.
|
|
9362
|
+
* @throws {RequiredError}
|
|
9363
|
+
*/
|
|
9364
|
+
activateTheme(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
9215
9365
|
/**
|
|
9216
9366
|
* Fetch the activated theme.
|
|
9217
9367
|
* @param {*} [options] Override http request option.
|
|
@@ -9243,13 +9393,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9243
9393
|
* List themes.
|
|
9244
9394
|
* @param {boolean} uninstalled
|
|
9245
9395
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9396
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9246
9397
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9247
9398
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9248
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9249
9399
|
* @param {*} [options] Override http request option.
|
|
9250
9400
|
* @throws {RequiredError}
|
|
9251
9401
|
*/
|
|
9252
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9402
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
9253
9403
|
/**
|
|
9254
9404
|
* Reload theme setting.
|
|
9255
9405
|
* @param {string} name
|
|
@@ -9267,10 +9417,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9267
9417
|
/**
|
|
9268
9418
|
* Update the configMap of theme setting.
|
|
9269
9419
|
* @param {string} name
|
|
9420
|
+
* @param {ConfigMap} configMap
|
|
9270
9421
|
* @param {*} [options] Override http request option.
|
|
9271
9422
|
* @throws {RequiredError}
|
|
9272
9423
|
*/
|
|
9273
|
-
updateThemeConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
9424
|
+
updateThemeConfig(name: string, configMap: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
9274
9425
|
/**
|
|
9275
9426
|
* Upgrade theme
|
|
9276
9427
|
* @param {string} name
|
|
@@ -9285,6 +9436,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9285
9436
|
* @export
|
|
9286
9437
|
*/
|
|
9287
9438
|
declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9439
|
+
/**
|
|
9440
|
+
* Activate a theme by name.
|
|
9441
|
+
* @param {string} name
|
|
9442
|
+
* @param {*} [options] Override http request option.
|
|
9443
|
+
* @throws {RequiredError}
|
|
9444
|
+
*/
|
|
9445
|
+
activateTheme(name: string, options?: any): AxiosPromise<Theme>;
|
|
9288
9446
|
/**
|
|
9289
9447
|
* Fetch the activated theme.
|
|
9290
9448
|
* @param {*} [options] Override http request option.
|
|
@@ -9316,13 +9474,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9316
9474
|
* List themes.
|
|
9317
9475
|
* @param {boolean} uninstalled
|
|
9318
9476
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9477
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9319
9478
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9320
9479
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9321
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9322
9480
|
* @param {*} [options] Override http request option.
|
|
9323
9481
|
* @throws {RequiredError}
|
|
9324
9482
|
*/
|
|
9325
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9483
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
9326
9484
|
/**
|
|
9327
9485
|
* Reload theme setting.
|
|
9328
9486
|
* @param {string} name
|
|
@@ -9340,10 +9498,11 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9340
9498
|
/**
|
|
9341
9499
|
* Update the configMap of theme setting.
|
|
9342
9500
|
* @param {string} name
|
|
9501
|
+
* @param {ConfigMap} configMap
|
|
9343
9502
|
* @param {*} [options] Override http request option.
|
|
9344
9503
|
* @throws {RequiredError}
|
|
9345
9504
|
*/
|
|
9346
|
-
updateThemeConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
9505
|
+
updateThemeConfig(name: string, configMap: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
|
|
9347
9506
|
/**
|
|
9348
9507
|
* Upgrade theme
|
|
9349
9508
|
* @param {string} name
|
|
@@ -9353,6 +9512,19 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9353
9512
|
*/
|
|
9354
9513
|
upgradeTheme(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
9355
9514
|
};
|
|
9515
|
+
/**
|
|
9516
|
+
* Request parameters for activateTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9517
|
+
* @export
|
|
9518
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest
|
|
9519
|
+
*/
|
|
9520
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest {
|
|
9521
|
+
/**
|
|
9522
|
+
*
|
|
9523
|
+
* @type {string}
|
|
9524
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiActivateTheme
|
|
9525
|
+
*/
|
|
9526
|
+
readonly name: string;
|
|
9527
|
+
}
|
|
9356
9528
|
/**
|
|
9357
9529
|
* Request parameters for fetchThemeConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9358
9530
|
* @export
|
|
@@ -9410,6 +9582,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9410
9582
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9411
9583
|
*/
|
|
9412
9584
|
readonly size?: number;
|
|
9585
|
+
/**
|
|
9586
|
+
* The page number. Zero indicates no page.
|
|
9587
|
+
* @type {number}
|
|
9588
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9589
|
+
*/
|
|
9590
|
+
readonly page?: number;
|
|
9413
9591
|
/**
|
|
9414
9592
|
* Label selector for filtering.
|
|
9415
9593
|
* @type {Array<string>}
|
|
@@ -9422,12 +9600,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9422
9600
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9423
9601
|
*/
|
|
9424
9602
|
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
9603
|
}
|
|
9432
9604
|
/**
|
|
9433
9605
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9467,6 +9639,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest {
|
|
|
9467
9639
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfig
|
|
9468
9640
|
*/
|
|
9469
9641
|
readonly name: string;
|
|
9642
|
+
/**
|
|
9643
|
+
*
|
|
9644
|
+
* @type {ConfigMap}
|
|
9645
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfig
|
|
9646
|
+
*/
|
|
9647
|
+
readonly configMap: ConfigMap;
|
|
9470
9648
|
}
|
|
9471
9649
|
/**
|
|
9472
9650
|
* Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9494,6 +9672,14 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
|
|
|
9494
9672
|
* @extends {BaseAPI}
|
|
9495
9673
|
*/
|
|
9496
9674
|
declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
9675
|
+
/**
|
|
9676
|
+
* Activate a theme by name.
|
|
9677
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest} requestParameters Request parameters.
|
|
9678
|
+
* @param {*} [options] Override http request option.
|
|
9679
|
+
* @throws {RequiredError}
|
|
9680
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
9681
|
+
*/
|
|
9682
|
+
activateTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
9497
9683
|
/**
|
|
9498
9684
|
* Fetch the activated theme.
|
|
9499
9685
|
* @param {*} [options] Override http request option.
|
|
@@ -10122,13 +10308,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
10122
10308
|
/**
|
|
10123
10309
|
* Search posts with fuzzy query
|
|
10124
10310
|
* @param {string} keyword
|
|
10311
|
+
* @param {number} [limit]
|
|
10125
10312
|
* @param {string} [highlightPreTag]
|
|
10126
10313
|
* @param {string} [highlightPostTag]
|
|
10127
|
-
* @param {number} [limit]
|
|
10128
10314
|
* @param {*} [options] Override http request option.
|
|
10129
10315
|
* @throws {RequiredError}
|
|
10130
10316
|
*/
|
|
10131
|
-
searchPost: (keyword: string,
|
|
10317
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10132
10318
|
};
|
|
10133
10319
|
/**
|
|
10134
10320
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -10138,13 +10324,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
10138
10324
|
/**
|
|
10139
10325
|
* Search posts with fuzzy query
|
|
10140
10326
|
* @param {string} keyword
|
|
10327
|
+
* @param {number} [limit]
|
|
10141
10328
|
* @param {string} [highlightPreTag]
|
|
10142
10329
|
* @param {string} [highlightPostTag]
|
|
10143
|
-
* @param {number} [limit]
|
|
10144
10330
|
* @param {*} [options] Override http request option.
|
|
10145
10331
|
* @throws {RequiredError}
|
|
10146
10332
|
*/
|
|
10147
|
-
searchPost(keyword: string,
|
|
10333
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
10148
10334
|
};
|
|
10149
10335
|
/**
|
|
10150
10336
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -10154,13 +10340,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
10154
10340
|
/**
|
|
10155
10341
|
* Search posts with fuzzy query
|
|
10156
10342
|
* @param {string} keyword
|
|
10343
|
+
* @param {number} [limit]
|
|
10157
10344
|
* @param {string} [highlightPreTag]
|
|
10158
10345
|
* @param {string} [highlightPostTag]
|
|
10159
|
-
* @param {number} [limit]
|
|
10160
10346
|
* @param {*} [options] Override http request option.
|
|
10161
10347
|
* @throws {RequiredError}
|
|
10162
10348
|
*/
|
|
10163
|
-
searchPost(keyword: string,
|
|
10349
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
|
|
10164
10350
|
};
|
|
10165
10351
|
/**
|
|
10166
10352
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -10176,22 +10362,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
10176
10362
|
readonly keyword: string;
|
|
10177
10363
|
/**
|
|
10178
10364
|
*
|
|
10179
|
-
* @type {
|
|
10365
|
+
* @type {number}
|
|
10180
10366
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10181
10367
|
*/
|
|
10182
|
-
readonly
|
|
10368
|
+
readonly limit?: number;
|
|
10183
10369
|
/**
|
|
10184
10370
|
*
|
|
10185
10371
|
* @type {string}
|
|
10186
10372
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10187
10373
|
*/
|
|
10188
|
-
readonly
|
|
10374
|
+
readonly highlightPreTag?: string;
|
|
10189
10375
|
/**
|
|
10190
10376
|
*
|
|
10191
|
-
* @type {
|
|
10377
|
+
* @type {string}
|
|
10192
10378
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
10193
10379
|
*/
|
|
10194
|
-
readonly
|
|
10380
|
+
readonly highlightPostTag?: string;
|
|
10195
10381
|
}
|
|
10196
10382
|
/**
|
|
10197
10383
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -17257,4 +17443,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
17257
17443
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
17258
17444
|
}
|
|
17259
17445
|
|
|
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 };
|
|
17446
|
+
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, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, 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 };
|