@halo-dev/api-client 0.0.29 → 0.0.31
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 +69 -84
- package/dist/index.d.ts +150 -164
- package/dist/index.mjs +69 -84
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1711,10 +1711,10 @@ interface Excerpt {
|
|
|
1711
1711
|
interface Extension {
|
|
1712
1712
|
/**
|
|
1713
1713
|
*
|
|
1714
|
-
* @type {
|
|
1714
|
+
* @type {string}
|
|
1715
1715
|
* @memberof Extension
|
|
1716
1716
|
*/
|
|
1717
|
-
|
|
1717
|
+
kind: string;
|
|
1718
1718
|
/**
|
|
1719
1719
|
*
|
|
1720
1720
|
* @type {string}
|
|
@@ -1723,10 +1723,10 @@ interface Extension {
|
|
|
1723
1723
|
apiVersion: string;
|
|
1724
1724
|
/**
|
|
1725
1725
|
*
|
|
1726
|
-
* @type {
|
|
1726
|
+
* @type {Metadata}
|
|
1727
1727
|
* @memberof Extension
|
|
1728
1728
|
*/
|
|
1729
|
-
|
|
1729
|
+
metadata: Metadata;
|
|
1730
1730
|
}
|
|
1731
1731
|
|
|
1732
1732
|
/**
|
|
@@ -5940,6 +5940,31 @@ interface ThemeSpec {
|
|
|
5940
5940
|
configMapName?: string;
|
|
5941
5941
|
}
|
|
5942
5942
|
|
|
5943
|
+
/**
|
|
5944
|
+
* Halo Next API
|
|
5945
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5946
|
+
*
|
|
5947
|
+
* The version of the OpenAPI document: 2.0.0
|
|
5948
|
+
*
|
|
5949
|
+
*
|
|
5950
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5951
|
+
* https://openapi-generator.tech
|
|
5952
|
+
* Do not edit the class manually.
|
|
5953
|
+
*/
|
|
5954
|
+
/**
|
|
5955
|
+
*
|
|
5956
|
+
* @export
|
|
5957
|
+
* @interface ThemeStatus
|
|
5958
|
+
*/
|
|
5959
|
+
interface ThemeStatus {
|
|
5960
|
+
/**
|
|
5961
|
+
*
|
|
5962
|
+
* @type {string}
|
|
5963
|
+
* @memberof ThemeStatus
|
|
5964
|
+
*/
|
|
5965
|
+
location?: string;
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5943
5968
|
/**
|
|
5944
5969
|
* Halo Next API
|
|
5945
5970
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5964,6 +5989,12 @@ interface Theme {
|
|
|
5964
5989
|
* @memberof Theme
|
|
5965
5990
|
*/
|
|
5966
5991
|
spec: ThemeSpec;
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
* @type {ThemeStatus}
|
|
5995
|
+
* @memberof Theme
|
|
5996
|
+
*/
|
|
5997
|
+
status?: ThemeStatus;
|
|
5967
5998
|
/**
|
|
5968
5999
|
*
|
|
5969
6000
|
* @type {string}
|
|
@@ -6336,6 +6367,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6336
6367
|
/**
|
|
6337
6368
|
* List comments.
|
|
6338
6369
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6370
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6371
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6372
|
+
* @param {boolean} [top] Comment top display.
|
|
6339
6373
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6340
6374
|
* @param {boolean} [approved] Comments approved.
|
|
6341
6375
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6343,17 +6377,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6343
6377
|
* @param {string} [ownerName] Commenter name.
|
|
6344
6378
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6345
6379
|
* @param {string} [subjectName] Comment subject name.
|
|
6346
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6347
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6348
|
-
* @param {boolean} [top] Comment top display.
|
|
6349
6380
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6381
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6350
6382
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6351
6383
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6352
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6353
6384
|
* @param {*} [options] Override http request option.
|
|
6354
6385
|
* @throws {RequiredError}
|
|
6355
6386
|
*/
|
|
6356
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
6387
|
+
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>;
|
|
6357
6388
|
};
|
|
6358
6389
|
/**
|
|
6359
6390
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -6378,6 +6409,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6378
6409
|
/**
|
|
6379
6410
|
* List comments.
|
|
6380
6411
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6412
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6413
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6414
|
+
* @param {boolean} [top] Comment top display.
|
|
6381
6415
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6382
6416
|
* @param {boolean} [approved] Comments approved.
|
|
6383
6417
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6385,17 +6419,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6385
6419
|
* @param {string} [ownerName] Commenter name.
|
|
6386
6420
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6387
6421
|
* @param {string} [subjectName] Comment subject name.
|
|
6388
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6389
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6390
|
-
* @param {boolean} [top] Comment top display.
|
|
6391
6422
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6423
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6392
6424
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6393
6425
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6394
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6395
6426
|
* @param {*} [options] Override http request option.
|
|
6396
6427
|
* @throws {RequiredError}
|
|
6397
6428
|
*/
|
|
6398
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
6429
|
+
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>>;
|
|
6399
6430
|
};
|
|
6400
6431
|
/**
|
|
6401
6432
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6420,6 +6451,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6420
6451
|
/**
|
|
6421
6452
|
* List comments.
|
|
6422
6453
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6454
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6455
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6456
|
+
* @param {boolean} [top] Comment top display.
|
|
6423
6457
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6424
6458
|
* @param {boolean} [approved] Comments approved.
|
|
6425
6459
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6427,17 +6461,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6427
6461
|
* @param {string} [ownerName] Commenter name.
|
|
6428
6462
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6429
6463
|
* @param {string} [subjectName] Comment subject name.
|
|
6430
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6431
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6432
|
-
* @param {boolean} [top] Comment top display.
|
|
6433
6464
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6465
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6434
6466
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6435
6467
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6436
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6437
6468
|
* @param {*} [options] Override http request option.
|
|
6438
6469
|
* @throws {RequiredError}
|
|
6439
6470
|
*/
|
|
6440
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
6471
|
+
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>;
|
|
6441
6472
|
};
|
|
6442
6473
|
/**
|
|
6443
6474
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6483,6 +6514,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6483
6514
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6484
6515
|
*/
|
|
6485
6516
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
6517
|
+
/**
|
|
6518
|
+
* Comments filtered by keyword.
|
|
6519
|
+
* @type {string}
|
|
6520
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6521
|
+
*/
|
|
6522
|
+
readonly keyword?: string;
|
|
6523
|
+
/**
|
|
6524
|
+
* The comment is hidden from the theme side.
|
|
6525
|
+
* @type {boolean}
|
|
6526
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6527
|
+
*/
|
|
6528
|
+
readonly hidden?: boolean;
|
|
6529
|
+
/**
|
|
6530
|
+
* Comment top display.
|
|
6531
|
+
* @type {boolean}
|
|
6532
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6533
|
+
*/
|
|
6534
|
+
readonly top?: boolean;
|
|
6486
6535
|
/**
|
|
6487
6536
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6488
6537
|
* @type {boolean}
|
|
@@ -6526,29 +6575,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6526
6575
|
*/
|
|
6527
6576
|
readonly subjectName?: string;
|
|
6528
6577
|
/**
|
|
6529
|
-
*
|
|
6530
|
-
* @type {
|
|
6531
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6532
|
-
*/
|
|
6533
|
-
readonly keyword?: string;
|
|
6534
|
-
/**
|
|
6535
|
-
* The comment is hidden from the theme side.
|
|
6536
|
-
* @type {boolean}
|
|
6537
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6538
|
-
*/
|
|
6539
|
-
readonly hidden?: boolean;
|
|
6540
|
-
/**
|
|
6541
|
-
* Comment top display.
|
|
6542
|
-
* @type {boolean}
|
|
6578
|
+
* Size of one page. Zero indicates no limit.
|
|
6579
|
+
* @type {number}
|
|
6543
6580
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6544
6581
|
*/
|
|
6545
|
-
readonly
|
|
6582
|
+
readonly size?: number;
|
|
6546
6583
|
/**
|
|
6547
|
-
*
|
|
6584
|
+
* The page number. Zero indicates no page.
|
|
6548
6585
|
* @type {number}
|
|
6549
6586
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6550
6587
|
*/
|
|
6551
|
-
readonly
|
|
6588
|
+
readonly page?: number;
|
|
6552
6589
|
/**
|
|
6553
6590
|
* Label selector for filtering.
|
|
6554
6591
|
* @type {Array<string>}
|
|
@@ -6561,12 +6598,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6561
6598
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6562
6599
|
*/
|
|
6563
6600
|
readonly fieldSelector?: Array<string>;
|
|
6564
|
-
/**
|
|
6565
|
-
* The page number. Zero indicates no page.
|
|
6566
|
-
* @type {number}
|
|
6567
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6568
|
-
*/
|
|
6569
|
-
readonly page?: number;
|
|
6570
6601
|
}
|
|
6571
6602
|
/**
|
|
6572
6603
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6898,21 +6929,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6898
6929
|
/**
|
|
6899
6930
|
* List posts.
|
|
6900
6931
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6901
|
-
* @param {
|
|
6932
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6933
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6934
|
+
* @param {Array<string>} [tag]
|
|
6902
6935
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6903
6936
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6904
6937
|
* @param {Array<string>} [category]
|
|
6905
|
-
* @param {Array<string>} [
|
|
6906
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6907
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6938
|
+
* @param {Array<string>} [contributor]
|
|
6908
6939
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6940
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6909
6941
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6910
6942
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6911
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6912
6943
|
* @param {*} [options] Override http request option.
|
|
6913
6944
|
* @throws {RequiredError}
|
|
6914
6945
|
*/
|
|
6915
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6946
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6916
6947
|
/**
|
|
6917
6948
|
* Publish a post.
|
|
6918
6949
|
* @param {string} name
|
|
@@ -6944,21 +6975,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6944
6975
|
/**
|
|
6945
6976
|
* List posts.
|
|
6946
6977
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6947
|
-
* @param {
|
|
6978
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6979
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6980
|
+
* @param {Array<string>} [tag]
|
|
6948
6981
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6949
6982
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6950
6983
|
* @param {Array<string>} [category]
|
|
6951
|
-
* @param {Array<string>} [
|
|
6952
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6953
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6984
|
+
* @param {Array<string>} [contributor]
|
|
6954
6985
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6986
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6955
6987
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6956
6988
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6957
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6958
6989
|
* @param {*} [options] Override http request option.
|
|
6959
6990
|
* @throws {RequiredError}
|
|
6960
6991
|
*/
|
|
6961
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6992
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6962
6993
|
/**
|
|
6963
6994
|
* Publish a post.
|
|
6964
6995
|
* @param {string} name
|
|
@@ -6990,21 +7021,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6990
7021
|
/**
|
|
6991
7022
|
* List posts.
|
|
6992
7023
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6993
|
-
* @param {
|
|
7024
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7025
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7026
|
+
* @param {Array<string>} [tag]
|
|
6994
7027
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6995
7028
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6996
7029
|
* @param {Array<string>} [category]
|
|
6997
|
-
* @param {Array<string>} [
|
|
6998
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6999
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7030
|
+
* @param {Array<string>} [contributor]
|
|
7000
7031
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7032
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7001
7033
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7002
7034
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7003
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7004
7035
|
* @param {*} [options] Override http request option.
|
|
7005
7036
|
* @throws {RequiredError}
|
|
7006
7037
|
*/
|
|
7007
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7038
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
7008
7039
|
/**
|
|
7009
7040
|
* Publish a post.
|
|
7010
7041
|
* @param {string} name
|
|
@@ -7046,12 +7077,24 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7046
7077
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7047
7078
|
*/
|
|
7048
7079
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7080
|
+
/**
|
|
7081
|
+
* Posts filtered by keyword.
|
|
7082
|
+
* @type {string}
|
|
7083
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7084
|
+
*/
|
|
7085
|
+
readonly keyword?: string;
|
|
7086
|
+
/**
|
|
7087
|
+
*
|
|
7088
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7089
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7090
|
+
*/
|
|
7091
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7049
7092
|
/**
|
|
7050
7093
|
*
|
|
7051
7094
|
* @type {Array<string>}
|
|
7052
7095
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7053
7096
|
*/
|
|
7054
|
-
readonly
|
|
7097
|
+
readonly tag?: Array<string>;
|
|
7055
7098
|
/**
|
|
7056
7099
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7057
7100
|
* @type {boolean}
|
|
@@ -7075,25 +7118,19 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7075
7118
|
* @type {Array<string>}
|
|
7076
7119
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7077
7120
|
*/
|
|
7078
|
-
readonly
|
|
7079
|
-
/**
|
|
7080
|
-
*
|
|
7081
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7082
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7083
|
-
*/
|
|
7084
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7121
|
+
readonly contributor?: Array<string>;
|
|
7085
7122
|
/**
|
|
7086
|
-
*
|
|
7087
|
-
* @type {
|
|
7123
|
+
* Size of one page. Zero indicates no limit.
|
|
7124
|
+
* @type {number}
|
|
7088
7125
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7089
7126
|
*/
|
|
7090
|
-
readonly
|
|
7127
|
+
readonly size?: number;
|
|
7091
7128
|
/**
|
|
7092
|
-
*
|
|
7129
|
+
* The page number. Zero indicates no page.
|
|
7093
7130
|
* @type {number}
|
|
7094
7131
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7095
7132
|
*/
|
|
7096
|
-
readonly
|
|
7133
|
+
readonly page?: number;
|
|
7097
7134
|
/**
|
|
7098
7135
|
* Label selector for filtering.
|
|
7099
7136
|
* @type {Array<string>}
|
|
@@ -7106,12 +7143,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7106
7143
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7107
7144
|
*/
|
|
7108
7145
|
readonly fieldSelector?: Array<string>;
|
|
7109
|
-
/**
|
|
7110
|
-
* The page number. Zero indicates no page.
|
|
7111
|
-
* @type {number}
|
|
7112
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7113
|
-
*/
|
|
7114
|
-
readonly page?: number;
|
|
7115
7146
|
}
|
|
7116
7147
|
/**
|
|
7117
7148
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -7195,13 +7226,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
7195
7226
|
* List replies.
|
|
7196
7227
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7197
7228
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7229
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7198
7230
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7199
7231
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7200
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7201
7232
|
* @param {*} [options] Override http request option.
|
|
7202
7233
|
* @throws {RequiredError}
|
|
7203
7234
|
*/
|
|
7204
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7235
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7205
7236
|
};
|
|
7206
7237
|
/**
|
|
7207
7238
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -7212,13 +7243,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
7212
7243
|
* List replies.
|
|
7213
7244
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7214
7245
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7246
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7215
7247
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7216
7248
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7217
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7218
7249
|
* @param {*} [options] Override http request option.
|
|
7219
7250
|
* @throws {RequiredError}
|
|
7220
7251
|
*/
|
|
7221
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7252
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
7222
7253
|
};
|
|
7223
7254
|
/**
|
|
7224
7255
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -7229,13 +7260,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
7229
7260
|
* List replies.
|
|
7230
7261
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7231
7262
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7263
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7232
7264
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7233
7265
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7234
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7235
7266
|
* @param {*} [options] Override http request option.
|
|
7236
7267
|
* @throws {RequiredError}
|
|
7237
7268
|
*/
|
|
7238
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7269
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
7239
7270
|
};
|
|
7240
7271
|
/**
|
|
7241
7272
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -7255,6 +7286,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7255
7286
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7256
7287
|
*/
|
|
7257
7288
|
readonly size?: number;
|
|
7289
|
+
/**
|
|
7290
|
+
* The page number. Zero indicates no page.
|
|
7291
|
+
* @type {number}
|
|
7292
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7293
|
+
*/
|
|
7294
|
+
readonly page?: number;
|
|
7258
7295
|
/**
|
|
7259
7296
|
* Label selector for filtering.
|
|
7260
7297
|
* @type {Array<string>}
|
|
@@ -7267,12 +7304,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7267
7304
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7268
7305
|
*/
|
|
7269
7306
|
readonly fieldSelector?: Array<string>;
|
|
7270
|
-
/**
|
|
7271
|
-
* The page number. Zero indicates no page.
|
|
7272
|
-
* @type {number}
|
|
7273
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7274
|
-
*/
|
|
7275
|
-
readonly page?: number;
|
|
7276
7307
|
}
|
|
7277
7308
|
/**
|
|
7278
7309
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -7305,20 +7336,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7305
7336
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7306
7337
|
/**
|
|
7307
7338
|
* List single pages.
|
|
7308
|
-
* @param {
|
|
7309
|
-
* @param {Array<string>} [contributor]
|
|
7310
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7311
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7312
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7313
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7339
|
+
* @param {Array<string>} [contributors]
|
|
7314
7340
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7341
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7315
7342
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7316
7343
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7317
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7318
7344
|
* @param {*} [options] Override http request option.
|
|
7319
7345
|
* @throws {RequiredError}
|
|
7320
7346
|
*/
|
|
7321
|
-
listSinglePages: (
|
|
7347
|
+
listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7322
7348
|
/**
|
|
7323
7349
|
* Publish a single page.
|
|
7324
7350
|
* @param {string} name
|
|
@@ -7349,20 +7375,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7349
7375
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
7350
7376
|
/**
|
|
7351
7377
|
* List single pages.
|
|
7352
|
-
* @param {
|
|
7353
|
-
* @param {Array<string>} [contributor]
|
|
7354
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7355
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7356
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7357
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7378
|
+
* @param {Array<string>} [contributors]
|
|
7358
7379
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7380
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7359
7381
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7360
7382
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7361
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7362
7383
|
* @param {*} [options] Override http request option.
|
|
7363
7384
|
* @throws {RequiredError}
|
|
7364
7385
|
*/
|
|
7365
|
-
listSinglePages(
|
|
7386
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7366
7387
|
/**
|
|
7367
7388
|
* Publish a single page.
|
|
7368
7389
|
* @param {string} name
|
|
@@ -7393,20 +7414,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7393
7414
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
7394
7415
|
/**
|
|
7395
7416
|
* List single pages.
|
|
7396
|
-
* @param {
|
|
7397
|
-
* @param {Array<string>} [contributor]
|
|
7398
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7399
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7400
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7401
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7417
|
+
* @param {Array<string>} [contributors]
|
|
7402
7418
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7419
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7403
7420
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7404
7421
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7405
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7406
7422
|
* @param {*} [options] Override http request option.
|
|
7407
7423
|
* @throws {RequiredError}
|
|
7408
7424
|
*/
|
|
7409
|
-
listSinglePages(
|
|
7425
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7410
7426
|
/**
|
|
7411
7427
|
* Publish a single page.
|
|
7412
7428
|
* @param {string} name
|
|
@@ -7442,48 +7458,24 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
7442
7458
|
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
7443
7459
|
*/
|
|
7444
7460
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
7445
|
-
/**
|
|
7446
|
-
* SinglePage collation.
|
|
7447
|
-
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
7448
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7449
|
-
*/
|
|
7450
|
-
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7451
7461
|
/**
|
|
7452
7462
|
*
|
|
7453
7463
|
* @type {Array<string>}
|
|
7454
7464
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7455
7465
|
*/
|
|
7456
|
-
readonly
|
|
7457
|
-
/**
|
|
7458
|
-
* ascending order If it is true; otherwise, it is in descending order.
|
|
7459
|
-
* @type {boolean}
|
|
7460
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7461
|
-
*/
|
|
7462
|
-
readonly sortOrder?: boolean;
|
|
7463
|
-
/**
|
|
7464
|
-
*
|
|
7465
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7466
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7467
|
-
*/
|
|
7468
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7469
|
-
/**
|
|
7470
|
-
*
|
|
7471
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7472
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7473
|
-
*/
|
|
7474
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7466
|
+
readonly contributors?: Array<string>;
|
|
7475
7467
|
/**
|
|
7476
|
-
*
|
|
7477
|
-
* @type {
|
|
7468
|
+
* Size of one page. Zero indicates no limit.
|
|
7469
|
+
* @type {number}
|
|
7478
7470
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7479
7471
|
*/
|
|
7480
|
-
readonly
|
|
7472
|
+
readonly size?: number;
|
|
7481
7473
|
/**
|
|
7482
|
-
*
|
|
7474
|
+
* The page number. Zero indicates no page.
|
|
7483
7475
|
* @type {number}
|
|
7484
7476
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7485
7477
|
*/
|
|
7486
|
-
readonly
|
|
7478
|
+
readonly page?: number;
|
|
7487
7479
|
/**
|
|
7488
7480
|
* Label selector for filtering.
|
|
7489
7481
|
* @type {Array<string>}
|
|
@@ -7496,12 +7488,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7496
7488
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7497
7489
|
*/
|
|
7498
7490
|
readonly fieldSelector?: Array<string>;
|
|
7499
|
-
/**
|
|
7500
|
-
* The page number. Zero indicates no page.
|
|
7501
|
-
* @type {number}
|
|
7502
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7503
|
-
*/
|
|
7504
|
-
readonly page?: number;
|
|
7505
7491
|
}
|
|
7506
7492
|
/**
|
|
7507
7493
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -11238,13 +11224,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
11238
11224
|
* @param {string} [group] Name of group
|
|
11239
11225
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11240
11226
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11227
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11241
11228
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11242
11229
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11243
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11244
11230
|
* @param {*} [options] Override http request option.
|
|
11245
11231
|
* @throws {RequiredError}
|
|
11246
11232
|
*/
|
|
11247
|
-
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
11233
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11248
11234
|
/**
|
|
11249
11235
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11250
11236
|
* @param {string} name Name of attachment
|
|
@@ -11306,13 +11292,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
11306
11292
|
* @param {string} [group] Name of group
|
|
11307
11293
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11308
11294
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11295
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11309
11296
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11310
11297
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11311
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11312
11298
|
* @param {*} [options] Override http request option.
|
|
11313
11299
|
* @throws {RequiredError}
|
|
11314
11300
|
*/
|
|
11315
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
11301
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
11316
11302
|
/**
|
|
11317
11303
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11318
11304
|
* @param {string} name Name of attachment
|
|
@@ -11374,13 +11360,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
11374
11360
|
* @param {string} [group] Name of group
|
|
11375
11361
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11376
11362
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11363
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11377
11364
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11378
11365
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11379
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11380
11366
|
* @param {*} [options] Override http request option.
|
|
11381
11367
|
* @throws {RequiredError}
|
|
11382
11368
|
*/
|
|
11383
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
11369
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
11384
11370
|
/**
|
|
11385
11371
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11386
11372
|
* @param {string} name Name of attachment
|
|
@@ -11505,6 +11491,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11505
11491
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11506
11492
|
*/
|
|
11507
11493
|
readonly size?: number;
|
|
11494
|
+
/**
|
|
11495
|
+
* The page number. Zero indicates no page.
|
|
11496
|
+
* @type {number}
|
|
11497
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11498
|
+
*/
|
|
11499
|
+
readonly page?: number;
|
|
11508
11500
|
/**
|
|
11509
11501
|
* Label selector for filtering.
|
|
11510
11502
|
* @type {Array<string>}
|
|
@@ -11517,12 +11509,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11517
11509
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11518
11510
|
*/
|
|
11519
11511
|
readonly fieldSelector?: Array<string>;
|
|
11520
|
-
/**
|
|
11521
|
-
* The page number. Zero indicates no page.
|
|
11522
|
-
* @type {number}
|
|
11523
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11524
|
-
*/
|
|
11525
|
-
readonly page?: number;
|
|
11526
11512
|
}
|
|
11527
11513
|
/**
|
|
11528
11514
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -14909,4 +14895,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14909
14895
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14910
14896
|
}
|
|
14911
14897
|
|
|
14912
|
-
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, CompactPost, CompactPostVisibleEnum, 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 };
|
|
14898
|
+
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, CompactPost, CompactPostVisibleEnum, 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 };
|