@halo-dev/api-client 0.0.32 → 0.0.33
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 +82 -67
- package/dist/index.d.ts +202 -126
- package/dist/index.mjs +82 -67
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1673,22 +1673,22 @@ interface Excerpt {
|
|
|
1673
1673
|
interface Extension {
|
|
1674
1674
|
/**
|
|
1675
1675
|
*
|
|
1676
|
-
* @type {
|
|
1676
|
+
* @type {Metadata}
|
|
1677
1677
|
* @memberof Extension
|
|
1678
1678
|
*/
|
|
1679
|
-
|
|
1679
|
+
metadata: Metadata;
|
|
1680
1680
|
/**
|
|
1681
1681
|
*
|
|
1682
|
-
* @type {
|
|
1682
|
+
* @type {string}
|
|
1683
1683
|
* @memberof Extension
|
|
1684
1684
|
*/
|
|
1685
|
-
|
|
1685
|
+
apiVersion: string;
|
|
1686
1686
|
/**
|
|
1687
1687
|
*
|
|
1688
1688
|
* @type {string}
|
|
1689
1689
|
* @memberof Extension
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
kind: string;
|
|
1692
1692
|
}
|
|
1693
1693
|
|
|
1694
1694
|
/**
|
|
@@ -5907,6 +5907,31 @@ interface ThemeSpec {
|
|
|
5907
5907
|
configMapName?: string;
|
|
5908
5908
|
}
|
|
5909
5909
|
|
|
5910
|
+
/**
|
|
5911
|
+
* Halo Next API
|
|
5912
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5913
|
+
*
|
|
5914
|
+
* The version of the OpenAPI document: 2.0.0
|
|
5915
|
+
*
|
|
5916
|
+
*
|
|
5917
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5918
|
+
* https://openapi-generator.tech
|
|
5919
|
+
* Do not edit the class manually.
|
|
5920
|
+
*/
|
|
5921
|
+
/**
|
|
5922
|
+
*
|
|
5923
|
+
* @export
|
|
5924
|
+
* @interface ThemeStatus
|
|
5925
|
+
*/
|
|
5926
|
+
interface ThemeStatus {
|
|
5927
|
+
/**
|
|
5928
|
+
*
|
|
5929
|
+
* @type {string}
|
|
5930
|
+
* @memberof ThemeStatus
|
|
5931
|
+
*/
|
|
5932
|
+
location?: string;
|
|
5933
|
+
}
|
|
5934
|
+
|
|
5910
5935
|
/**
|
|
5911
5936
|
* Halo Next API
|
|
5912
5937
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5931,6 +5956,12 @@ interface Theme {
|
|
|
5931
5956
|
* @memberof Theme
|
|
5932
5957
|
*/
|
|
5933
5958
|
spec: ThemeSpec;
|
|
5959
|
+
/**
|
|
5960
|
+
*
|
|
5961
|
+
* @type {ThemeStatus}
|
|
5962
|
+
* @memberof Theme
|
|
5963
|
+
*/
|
|
5964
|
+
status?: ThemeStatus;
|
|
5934
5965
|
/**
|
|
5935
5966
|
*
|
|
5936
5967
|
* @type {string}
|
|
@@ -6303,9 +6334,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6303
6334
|
/**
|
|
6304
6335
|
* List comments.
|
|
6305
6336
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6306
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6307
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6308
|
-
* @param {boolean} [top] Comment top display.
|
|
6309
6337
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6310
6338
|
* @param {boolean} [approved] Comments approved.
|
|
6311
6339
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6313,14 +6341,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6313
6341
|
* @param {string} [ownerName] Commenter name.
|
|
6314
6342
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6315
6343
|
* @param {string} [subjectName] Comment subject name.
|
|
6344
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6345
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6346
|
+
* @param {boolean} [top] Comment top display.
|
|
6316
6347
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6317
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6318
6348
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6319
6349
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6350
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6320
6351
|
* @param {*} [options] Override http request option.
|
|
6321
6352
|
* @throws {RequiredError}
|
|
6322
6353
|
*/
|
|
6323
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6354
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6324
6355
|
};
|
|
6325
6356
|
/**
|
|
6326
6357
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -6345,9 +6376,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6345
6376
|
/**
|
|
6346
6377
|
* List comments.
|
|
6347
6378
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6348
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6349
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6350
|
-
* @param {boolean} [top] Comment top display.
|
|
6351
6379
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6352
6380
|
* @param {boolean} [approved] Comments approved.
|
|
6353
6381
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6355,14 +6383,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6355
6383
|
* @param {string} [ownerName] Commenter name.
|
|
6356
6384
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6357
6385
|
* @param {string} [subjectName] Comment subject name.
|
|
6386
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6387
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6388
|
+
* @param {boolean} [top] Comment top display.
|
|
6358
6389
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6359
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6360
6390
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6361
6391
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6392
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6362
6393
|
* @param {*} [options] Override http request option.
|
|
6363
6394
|
* @throws {RequiredError}
|
|
6364
6395
|
*/
|
|
6365
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6396
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
6366
6397
|
};
|
|
6367
6398
|
/**
|
|
6368
6399
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6387,9 +6418,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6387
6418
|
/**
|
|
6388
6419
|
* List comments.
|
|
6389
6420
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6390
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6391
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6392
|
-
* @param {boolean} [top] Comment top display.
|
|
6393
6421
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6394
6422
|
* @param {boolean} [approved] Comments approved.
|
|
6395
6423
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6397,14 +6425,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6397
6425
|
* @param {string} [ownerName] Commenter name.
|
|
6398
6426
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6399
6427
|
* @param {string} [subjectName] Comment subject name.
|
|
6428
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6429
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6430
|
+
* @param {boolean} [top] Comment top display.
|
|
6400
6431
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6401
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6402
6432
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6403
6433
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6434
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6404
6435
|
* @param {*} [options] Override http request option.
|
|
6405
6436
|
* @throws {RequiredError}
|
|
6406
6437
|
*/
|
|
6407
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6438
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
|
|
6408
6439
|
};
|
|
6409
6440
|
/**
|
|
6410
6441
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6450,24 +6481,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6450
6481
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6451
6482
|
*/
|
|
6452
6483
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
6453
|
-
/**
|
|
6454
|
-
* Comments filtered by keyword.
|
|
6455
|
-
* @type {string}
|
|
6456
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6457
|
-
*/
|
|
6458
|
-
readonly keyword?: string;
|
|
6459
|
-
/**
|
|
6460
|
-
* The comment is hidden from the theme side.
|
|
6461
|
-
* @type {boolean}
|
|
6462
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6463
|
-
*/
|
|
6464
|
-
readonly hidden?: boolean;
|
|
6465
|
-
/**
|
|
6466
|
-
* Comment top display.
|
|
6467
|
-
* @type {boolean}
|
|
6468
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6469
|
-
*/
|
|
6470
|
-
readonly top?: boolean;
|
|
6471
6484
|
/**
|
|
6472
6485
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6473
6486
|
* @type {boolean}
|
|
@@ -6511,17 +6524,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6511
6524
|
*/
|
|
6512
6525
|
readonly subjectName?: string;
|
|
6513
6526
|
/**
|
|
6514
|
-
*
|
|
6515
|
-
* @type {
|
|
6527
|
+
* Comments filtered by keyword.
|
|
6528
|
+
* @type {string}
|
|
6516
6529
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6517
6530
|
*/
|
|
6518
|
-
readonly
|
|
6531
|
+
readonly keyword?: string;
|
|
6519
6532
|
/**
|
|
6520
|
-
* The
|
|
6533
|
+
* The comment is hidden from the theme side.
|
|
6534
|
+
* @type {boolean}
|
|
6535
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6536
|
+
*/
|
|
6537
|
+
readonly hidden?: boolean;
|
|
6538
|
+
/**
|
|
6539
|
+
* Comment top display.
|
|
6540
|
+
* @type {boolean}
|
|
6541
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6542
|
+
*/
|
|
6543
|
+
readonly top?: boolean;
|
|
6544
|
+
/**
|
|
6545
|
+
* Size of one page. Zero indicates no limit.
|
|
6521
6546
|
* @type {number}
|
|
6522
6547
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6523
6548
|
*/
|
|
6524
|
-
readonly
|
|
6549
|
+
readonly size?: number;
|
|
6525
6550
|
/**
|
|
6526
6551
|
* Label selector for filtering.
|
|
6527
6552
|
* @type {Array<string>}
|
|
@@ -6534,6 +6559,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6534
6559
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6535
6560
|
*/
|
|
6536
6561
|
readonly fieldSelector?: Array<string>;
|
|
6562
|
+
/**
|
|
6563
|
+
* The page number. Zero indicates no page.
|
|
6564
|
+
* @type {number}
|
|
6565
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6566
|
+
*/
|
|
6567
|
+
readonly page?: number;
|
|
6537
6568
|
}
|
|
6538
6569
|
/**
|
|
6539
6570
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6865,21 +6896,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6865
6896
|
/**
|
|
6866
6897
|
* List posts.
|
|
6867
6898
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6868
|
-
* @param {Array<string>} [tag]
|
|
6869
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6870
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6871
6899
|
* @param {Array<string>} [contributor]
|
|
6900
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6872
6901
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6873
6902
|
* @param {Array<string>} [category]
|
|
6874
|
-
* @param {
|
|
6903
|
+
* @param {Array<string>} [tag]
|
|
6904
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6905
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6875
6906
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6876
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6877
6907
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6878
6908
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6909
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6879
6910
|
* @param {*} [options] Override http request option.
|
|
6880
6911
|
* @throws {RequiredError}
|
|
6881
6912
|
*/
|
|
6882
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6913
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6883
6914
|
/**
|
|
6884
6915
|
* Publish a post.
|
|
6885
6916
|
* @param {string} name
|
|
@@ -6911,21 +6942,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6911
6942
|
/**
|
|
6912
6943
|
* List posts.
|
|
6913
6944
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6914
|
-
* @param {Array<string>} [tag]
|
|
6915
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6916
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6917
6945
|
* @param {Array<string>} [contributor]
|
|
6946
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6918
6947
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6919
6948
|
* @param {Array<string>} [category]
|
|
6920
|
-
* @param {
|
|
6949
|
+
* @param {Array<string>} [tag]
|
|
6950
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6951
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6921
6952
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6922
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6923
6953
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6924
6954
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6955
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6925
6956
|
* @param {*} [options] Override http request option.
|
|
6926
6957
|
* @throws {RequiredError}
|
|
6927
6958
|
*/
|
|
6928
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6959
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6929
6960
|
/**
|
|
6930
6961
|
* Publish a post.
|
|
6931
6962
|
* @param {string} name
|
|
@@ -6957,21 +6988,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6957
6988
|
/**
|
|
6958
6989
|
* List posts.
|
|
6959
6990
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6960
|
-
* @param {Array<string>} [tag]
|
|
6961
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6962
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6963
6991
|
* @param {Array<string>} [contributor]
|
|
6992
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6964
6993
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6965
6994
|
* @param {Array<string>} [category]
|
|
6966
|
-
* @param {
|
|
6995
|
+
* @param {Array<string>} [tag]
|
|
6996
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6997
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6967
6998
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6968
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6969
6999
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6970
7000
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7001
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6971
7002
|
* @param {*} [options] Override http request option.
|
|
6972
7003
|
* @throws {RequiredError}
|
|
6973
7004
|
*/
|
|
6974
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7005
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6975
7006
|
/**
|
|
6976
7007
|
* Publish a post.
|
|
6977
7008
|
* @param {string} name
|
|
@@ -7018,55 +7049,49 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7018
7049
|
* @type {Array<string>}
|
|
7019
7050
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7020
7051
|
*/
|
|
7021
|
-
readonly
|
|
7052
|
+
readonly contributor?: Array<string>;
|
|
7022
7053
|
/**
|
|
7023
|
-
*
|
|
7024
|
-
* @type {
|
|
7054
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7055
|
+
* @type {boolean}
|
|
7025
7056
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7026
7057
|
*/
|
|
7027
|
-
readonly
|
|
7058
|
+
readonly sortOrder?: boolean;
|
|
7028
7059
|
/**
|
|
7029
|
-
*
|
|
7030
|
-
* @type {
|
|
7060
|
+
*
|
|
7061
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7031
7062
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7032
7063
|
*/
|
|
7033
|
-
readonly
|
|
7064
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7034
7065
|
/**
|
|
7035
7066
|
*
|
|
7036
7067
|
* @type {Array<string>}
|
|
7037
7068
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7038
7069
|
*/
|
|
7039
|
-
readonly
|
|
7070
|
+
readonly category?: Array<string>;
|
|
7040
7071
|
/**
|
|
7041
7072
|
*
|
|
7042
|
-
* @type {
|
|
7073
|
+
* @type {Array<string>}
|
|
7043
7074
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7044
7075
|
*/
|
|
7045
|
-
readonly
|
|
7076
|
+
readonly tag?: Array<string>;
|
|
7046
7077
|
/**
|
|
7047
|
-
*
|
|
7048
|
-
* @type {
|
|
7078
|
+
* Posts filtered by keyword.
|
|
7079
|
+
* @type {string}
|
|
7049
7080
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7050
7081
|
*/
|
|
7051
|
-
readonly
|
|
7082
|
+
readonly keyword?: string;
|
|
7052
7083
|
/**
|
|
7053
|
-
*
|
|
7054
|
-
* @type {
|
|
7084
|
+
*
|
|
7085
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7055
7086
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7056
7087
|
*/
|
|
7057
|
-
readonly
|
|
7088
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7058
7089
|
/**
|
|
7059
7090
|
* Size of one page. Zero indicates no limit.
|
|
7060
7091
|
* @type {number}
|
|
7061
7092
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7062
7093
|
*/
|
|
7063
7094
|
readonly size?: number;
|
|
7064
|
-
/**
|
|
7065
|
-
* The page number. Zero indicates no page.
|
|
7066
|
-
* @type {number}
|
|
7067
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7068
|
-
*/
|
|
7069
|
-
readonly page?: number;
|
|
7070
7095
|
/**
|
|
7071
7096
|
* Label selector for filtering.
|
|
7072
7097
|
* @type {Array<string>}
|
|
@@ -7079,6 +7104,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7079
7104
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7080
7105
|
*/
|
|
7081
7106
|
readonly fieldSelector?: Array<string>;
|
|
7107
|
+
/**
|
|
7108
|
+
* The page number. Zero indicates no page.
|
|
7109
|
+
* @type {number}
|
|
7110
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7111
|
+
*/
|
|
7112
|
+
readonly page?: number;
|
|
7082
7113
|
}
|
|
7083
7114
|
/**
|
|
7084
7115
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -7162,13 +7193,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
7162
7193
|
* List replies.
|
|
7163
7194
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7164
7195
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7165
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7166
7196
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7167
7197
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7198
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7168
7199
|
* @param {*} [options] Override http request option.
|
|
7169
7200
|
* @throws {RequiredError}
|
|
7170
7201
|
*/
|
|
7171
|
-
listReplies: (commentName?: string, size?: number,
|
|
7202
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7172
7203
|
};
|
|
7173
7204
|
/**
|
|
7174
7205
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -7179,13 +7210,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
7179
7210
|
* List replies.
|
|
7180
7211
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7181
7212
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7182
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7183
7213
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7184
7214
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7215
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7185
7216
|
* @param {*} [options] Override http request option.
|
|
7186
7217
|
* @throws {RequiredError}
|
|
7187
7218
|
*/
|
|
7188
|
-
listReplies(commentName?: string, size?: number,
|
|
7219
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
7189
7220
|
};
|
|
7190
7221
|
/**
|
|
7191
7222
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -7196,13 +7227,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
7196
7227
|
* List replies.
|
|
7197
7228
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7198
7229
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7199
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7200
7230
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7201
7231
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7232
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7202
7233
|
* @param {*} [options] Override http request option.
|
|
7203
7234
|
* @throws {RequiredError}
|
|
7204
7235
|
*/
|
|
7205
|
-
listReplies(commentName?: string, size?: number,
|
|
7236
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
7206
7237
|
};
|
|
7207
7238
|
/**
|
|
7208
7239
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -7222,12 +7253,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7222
7253
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7223
7254
|
*/
|
|
7224
7255
|
readonly size?: number;
|
|
7225
|
-
/**
|
|
7226
|
-
* The page number. Zero indicates no page.
|
|
7227
|
-
* @type {number}
|
|
7228
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7229
|
-
*/
|
|
7230
|
-
readonly page?: number;
|
|
7231
7256
|
/**
|
|
7232
7257
|
* Label selector for filtering.
|
|
7233
7258
|
* @type {Array<string>}
|
|
@@ -7240,6 +7265,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7240
7265
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7241
7266
|
*/
|
|
7242
7267
|
readonly fieldSelector?: Array<string>;
|
|
7268
|
+
/**
|
|
7269
|
+
* The page number. Zero indicates no page.
|
|
7270
|
+
* @type {number}
|
|
7271
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7272
|
+
*/
|
|
7273
|
+
readonly page?: number;
|
|
7243
7274
|
}
|
|
7244
7275
|
/**
|
|
7245
7276
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -7272,15 +7303,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7272
7303
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7273
7304
|
/**
|
|
7274
7305
|
* List single pages.
|
|
7275
|
-
* @param {
|
|
7306
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7307
|
+
* @param {Array<string>} [contributor]
|
|
7308
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7309
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7310
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7311
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7276
7312
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7277
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7278
7313
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7279
7314
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7315
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7280
7316
|
* @param {*} [options] Override http request option.
|
|
7281
7317
|
* @throws {RequiredError}
|
|
7282
7318
|
*/
|
|
7283
|
-
listSinglePages: (
|
|
7319
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7284
7320
|
/**
|
|
7285
7321
|
* Publish a single page.
|
|
7286
7322
|
* @param {string} name
|
|
@@ -7311,15 +7347,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7311
7347
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
7312
7348
|
/**
|
|
7313
7349
|
* List single pages.
|
|
7314
|
-
* @param {
|
|
7350
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7351
|
+
* @param {Array<string>} [contributor]
|
|
7352
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7353
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7354
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7355
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7315
7356
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7316
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7317
7357
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7318
7358
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7359
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7319
7360
|
* @param {*} [options] Override http request option.
|
|
7320
7361
|
* @throws {RequiredError}
|
|
7321
7362
|
*/
|
|
7322
|
-
listSinglePages(
|
|
7363
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7323
7364
|
/**
|
|
7324
7365
|
* Publish a single page.
|
|
7325
7366
|
* @param {string} name
|
|
@@ -7350,15 +7391,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7350
7391
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
7351
7392
|
/**
|
|
7352
7393
|
* List single pages.
|
|
7353
|
-
* @param {
|
|
7394
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7395
|
+
* @param {Array<string>} [contributor]
|
|
7396
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7397
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7398
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7399
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7354
7400
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7355
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7356
7401
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7357
7402
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7403
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7358
7404
|
* @param {*} [options] Override http request option.
|
|
7359
7405
|
* @throws {RequiredError}
|
|
7360
7406
|
*/
|
|
7361
|
-
listSinglePages(
|
|
7407
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7362
7408
|
/**
|
|
7363
7409
|
* Publish a single page.
|
|
7364
7410
|
* @param {string} name
|
|
@@ -7394,24 +7440,48 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
7394
7440
|
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
7395
7441
|
*/
|
|
7396
7442
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
7443
|
+
/**
|
|
7444
|
+
* SinglePage collation.
|
|
7445
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
7446
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7447
|
+
*/
|
|
7448
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7397
7449
|
/**
|
|
7398
7450
|
*
|
|
7399
7451
|
* @type {Array<string>}
|
|
7400
7452
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7401
7453
|
*/
|
|
7402
|
-
readonly
|
|
7454
|
+
readonly contributor?: Array<string>;
|
|
7455
|
+
/**
|
|
7456
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7457
|
+
* @type {boolean}
|
|
7458
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7459
|
+
*/
|
|
7460
|
+
readonly sortOrder?: boolean;
|
|
7403
7461
|
/**
|
|
7404
|
-
*
|
|
7405
|
-
* @type {
|
|
7462
|
+
*
|
|
7463
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7406
7464
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7407
7465
|
*/
|
|
7408
|
-
readonly
|
|
7466
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7409
7467
|
/**
|
|
7410
|
-
*
|
|
7468
|
+
* SinglePages filtered by keyword.
|
|
7469
|
+
* @type {string}
|
|
7470
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7471
|
+
*/
|
|
7472
|
+
readonly keyword?: string;
|
|
7473
|
+
/**
|
|
7474
|
+
*
|
|
7475
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7476
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7477
|
+
*/
|
|
7478
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7479
|
+
/**
|
|
7480
|
+
* Size of one page. Zero indicates no limit.
|
|
7411
7481
|
* @type {number}
|
|
7412
7482
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7413
7483
|
*/
|
|
7414
|
-
readonly
|
|
7484
|
+
readonly size?: number;
|
|
7415
7485
|
/**
|
|
7416
7486
|
* Label selector for filtering.
|
|
7417
7487
|
* @type {Array<string>}
|
|
@@ -7424,6 +7494,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7424
7494
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7425
7495
|
*/
|
|
7426
7496
|
readonly fieldSelector?: Array<string>;
|
|
7497
|
+
/**
|
|
7498
|
+
* The page number. Zero indicates no page.
|
|
7499
|
+
* @type {number}
|
|
7500
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7501
|
+
*/
|
|
7502
|
+
readonly page?: number;
|
|
7427
7503
|
}
|
|
7428
7504
|
/**
|
|
7429
7505
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -7536,7 +7612,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
7536
7612
|
* @param {*} [options] Override http request option.
|
|
7537
7613
|
* @throws {RequiredError}
|
|
7538
7614
|
*/
|
|
7539
|
-
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7615
|
+
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
7540
7616
|
};
|
|
7541
7617
|
/**
|
|
7542
7618
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -7556,7 +7632,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
7556
7632
|
* @param {*} [options] Override http request option.
|
|
7557
7633
|
* @throws {RequiredError}
|
|
7558
7634
|
*/
|
|
7559
|
-
reloadThemeSetting(name: string, options?: any): AxiosPromise<
|
|
7635
|
+
reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
|
|
7560
7636
|
};
|
|
7561
7637
|
/**
|
|
7562
7638
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -7606,7 +7682,7 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
7606
7682
|
* @throws {RequiredError}
|
|
7607
7683
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7608
7684
|
*/
|
|
7609
|
-
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7685
|
+
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
7610
7686
|
}
|
|
7611
7687
|
|
|
7612
7688
|
/**
|
|
@@ -11160,13 +11236,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
11160
11236
|
* @param {string} [group] Name of group
|
|
11161
11237
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11162
11238
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11163
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11164
11239
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11165
11240
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11241
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11166
11242
|
* @param {*} [options] Override http request option.
|
|
11167
11243
|
* @throws {RequiredError}
|
|
11168
11244
|
*/
|
|
11169
|
-
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11245
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11170
11246
|
/**
|
|
11171
11247
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11172
11248
|
* @param {string} name Name of attachment
|
|
@@ -11228,13 +11304,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
11228
11304
|
* @param {string} [group] Name of group
|
|
11229
11305
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11230
11306
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11231
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11232
11307
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11233
11308
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11309
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11234
11310
|
* @param {*} [options] Override http request option.
|
|
11235
11311
|
* @throws {RequiredError}
|
|
11236
11312
|
*/
|
|
11237
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11313
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
11238
11314
|
/**
|
|
11239
11315
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11240
11316
|
* @param {string} name Name of attachment
|
|
@@ -11296,13 +11372,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
11296
11372
|
* @param {string} [group] Name of group
|
|
11297
11373
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11298
11374
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11299
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11300
11375
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11301
11376
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11377
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11302
11378
|
* @param {*} [options] Override http request option.
|
|
11303
11379
|
* @throws {RequiredError}
|
|
11304
11380
|
*/
|
|
11305
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11381
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
11306
11382
|
/**
|
|
11307
11383
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11308
11384
|
* @param {string} name Name of attachment
|
|
@@ -11427,12 +11503,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11427
11503
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11428
11504
|
*/
|
|
11429
11505
|
readonly size?: number;
|
|
11430
|
-
/**
|
|
11431
|
-
* The page number. Zero indicates no page.
|
|
11432
|
-
* @type {number}
|
|
11433
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11434
|
-
*/
|
|
11435
|
-
readonly page?: number;
|
|
11436
11506
|
/**
|
|
11437
11507
|
* Label selector for filtering.
|
|
11438
11508
|
* @type {Array<string>}
|
|
@@ -11445,6 +11515,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11445
11515
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11446
11516
|
*/
|
|
11447
11517
|
readonly fieldSelector?: Array<string>;
|
|
11518
|
+
/**
|
|
11519
|
+
* The page number. Zero indicates no page.
|
|
11520
|
+
* @type {number}
|
|
11521
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11522
|
+
*/
|
|
11523
|
+
readonly page?: number;
|
|
11448
11524
|
}
|
|
11449
11525
|
/**
|
|
11450
11526
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -14831,4 +14907,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14831
14907
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14832
14908
|
}
|
|
14833
14909
|
|
|
14834
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, 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, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|
|
14910
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, 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, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|