@halo-dev/api-client 0.0.31 → 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 +84 -76
- package/dist/index.d.ts +183 -171
- package/dist/index.mjs +85 -76
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -534,50 +534,6 @@ interface CategorySpec {
|
|
|
534
534
|
* https://openapi-generator.tech
|
|
535
535
|
* Do not edit the class manually.
|
|
536
536
|
*/
|
|
537
|
-
/**
|
|
538
|
-
*
|
|
539
|
-
* @export
|
|
540
|
-
* @interface CompactPost
|
|
541
|
-
*/
|
|
542
|
-
interface CompactPost {
|
|
543
|
-
/**
|
|
544
|
-
*
|
|
545
|
-
* @type {string}
|
|
546
|
-
* @memberof CompactPost
|
|
547
|
-
*/
|
|
548
|
-
name?: string;
|
|
549
|
-
/**
|
|
550
|
-
*
|
|
551
|
-
* @type {string}
|
|
552
|
-
* @memberof CompactPost
|
|
553
|
-
*/
|
|
554
|
-
visible?: CompactPostVisibleEnum;
|
|
555
|
-
/**
|
|
556
|
-
*
|
|
557
|
-
* @type {boolean}
|
|
558
|
-
* @memberof CompactPost
|
|
559
|
-
*/
|
|
560
|
-
published?: boolean;
|
|
561
|
-
}
|
|
562
|
-
declare const CompactPostVisibleEnum: {
|
|
563
|
-
readonly Public: "PUBLIC";
|
|
564
|
-
readonly Internal: "INTERNAL";
|
|
565
|
-
readonly Private: "PRIVATE";
|
|
566
|
-
};
|
|
567
|
-
declare type CompactPostVisibleEnum = typeof CompactPostVisibleEnum[keyof typeof CompactPostVisibleEnum];
|
|
568
|
-
|
|
569
|
-
/**
|
|
570
|
-
* Halo Next API
|
|
571
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
572
|
-
*
|
|
573
|
-
* The version of the OpenAPI document: 2.0.0
|
|
574
|
-
*
|
|
575
|
-
*
|
|
576
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
577
|
-
* https://openapi-generator.tech
|
|
578
|
-
* Do not edit the class manually.
|
|
579
|
-
*/
|
|
580
|
-
|
|
581
537
|
/**
|
|
582
538
|
*
|
|
583
539
|
* @export
|
|
@@ -592,10 +548,16 @@ interface CategoryStatus {
|
|
|
592
548
|
permalink?: string;
|
|
593
549
|
/**
|
|
594
550
|
*
|
|
595
|
-
* @type {
|
|
551
|
+
* @type {number}
|
|
552
|
+
* @memberof CategoryStatus
|
|
553
|
+
*/
|
|
554
|
+
postCount?: number;
|
|
555
|
+
/**
|
|
556
|
+
*
|
|
557
|
+
* @type {number}
|
|
596
558
|
* @memberof CategoryStatus
|
|
597
559
|
*/
|
|
598
|
-
|
|
560
|
+
visiblePostCount?: number;
|
|
599
561
|
}
|
|
600
562
|
|
|
601
563
|
/**
|
|
@@ -1711,10 +1673,10 @@ interface Excerpt {
|
|
|
1711
1673
|
interface Extension {
|
|
1712
1674
|
/**
|
|
1713
1675
|
*
|
|
1714
|
-
* @type {
|
|
1676
|
+
* @type {Metadata}
|
|
1715
1677
|
* @memberof Extension
|
|
1716
1678
|
*/
|
|
1717
|
-
|
|
1679
|
+
metadata: Metadata;
|
|
1718
1680
|
/**
|
|
1719
1681
|
*
|
|
1720
1682
|
* @type {string}
|
|
@@ -1723,10 +1685,10 @@ interface Extension {
|
|
|
1723
1685
|
apiVersion: string;
|
|
1724
1686
|
/**
|
|
1725
1687
|
*
|
|
1726
|
-
* @type {
|
|
1688
|
+
* @type {string}
|
|
1727
1689
|
* @memberof Extension
|
|
1728
1690
|
*/
|
|
1729
|
-
|
|
1691
|
+
kind: string;
|
|
1730
1692
|
}
|
|
1731
1693
|
|
|
1732
1694
|
/**
|
|
@@ -2584,7 +2546,6 @@ interface TagSpec {
|
|
|
2584
2546
|
* https://openapi-generator.tech
|
|
2585
2547
|
* Do not edit the class manually.
|
|
2586
2548
|
*/
|
|
2587
|
-
|
|
2588
2549
|
/**
|
|
2589
2550
|
*
|
|
2590
2551
|
* @export
|
|
@@ -2599,10 +2560,16 @@ interface TagStatus {
|
|
|
2599
2560
|
permalink?: string;
|
|
2600
2561
|
/**
|
|
2601
2562
|
*
|
|
2602
|
-
* @type {
|
|
2563
|
+
* @type {number}
|
|
2564
|
+
* @memberof TagStatus
|
|
2565
|
+
*/
|
|
2566
|
+
visiblePostCount?: number;
|
|
2567
|
+
/**
|
|
2568
|
+
*
|
|
2569
|
+
* @type {number}
|
|
2603
2570
|
* @memberof TagStatus
|
|
2604
2571
|
*/
|
|
2605
|
-
|
|
2572
|
+
postCount?: number;
|
|
2606
2573
|
}
|
|
2607
2574
|
|
|
2608
2575
|
/**
|
|
@@ -6367,9 +6334,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6367
6334
|
/**
|
|
6368
6335
|
* List comments.
|
|
6369
6336
|
* @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.
|
|
6373
6337
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6374
6338
|
* @param {boolean} [approved] Comments approved.
|
|
6375
6339
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6377,14 +6341,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6377
6341
|
* @param {string} [ownerName] Commenter name.
|
|
6378
6342
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6379
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.
|
|
6380
6347
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6381
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6382
6348
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6383
6349
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6350
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6384
6351
|
* @param {*} [options] Override http request option.
|
|
6385
6352
|
* @throws {RequiredError}
|
|
6386
6353
|
*/
|
|
6387
|
-
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>;
|
|
6388
6355
|
};
|
|
6389
6356
|
/**
|
|
6390
6357
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -6409,9 +6376,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6409
6376
|
/**
|
|
6410
6377
|
* List comments.
|
|
6411
6378
|
* @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.
|
|
6415
6379
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6416
6380
|
* @param {boolean} [approved] Comments approved.
|
|
6417
6381
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6419,14 +6383,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6419
6383
|
* @param {string} [ownerName] Commenter name.
|
|
6420
6384
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6421
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.
|
|
6422
6389
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6423
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6424
6390
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6425
6391
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6392
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6426
6393
|
* @param {*} [options] Override http request option.
|
|
6427
6394
|
* @throws {RequiredError}
|
|
6428
6395
|
*/
|
|
6429
|
-
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>>;
|
|
6430
6397
|
};
|
|
6431
6398
|
/**
|
|
6432
6399
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6451,9 +6418,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6451
6418
|
/**
|
|
6452
6419
|
* List comments.
|
|
6453
6420
|
* @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.
|
|
6457
6421
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6458
6422
|
* @param {boolean} [approved] Comments approved.
|
|
6459
6423
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6461,14 +6425,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6461
6425
|
* @param {string} [ownerName] Commenter name.
|
|
6462
6426
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6463
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.
|
|
6464
6431
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6465
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6466
6432
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6467
6433
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6434
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6468
6435
|
* @param {*} [options] Override http request option.
|
|
6469
6436
|
* @throws {RequiredError}
|
|
6470
6437
|
*/
|
|
6471
|
-
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>;
|
|
6472
6439
|
};
|
|
6473
6440
|
/**
|
|
6474
6441
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6514,24 +6481,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6514
6481
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6515
6482
|
*/
|
|
6516
6483
|
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;
|
|
6535
6484
|
/**
|
|
6536
6485
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6537
6486
|
* @type {boolean}
|
|
@@ -6575,17 +6524,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6575
6524
|
*/
|
|
6576
6525
|
readonly subjectName?: string;
|
|
6577
6526
|
/**
|
|
6578
|
-
*
|
|
6579
|
-
* @type {
|
|
6527
|
+
* Comments filtered by keyword.
|
|
6528
|
+
* @type {string}
|
|
6580
6529
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6581
6530
|
*/
|
|
6582
|
-
readonly
|
|
6531
|
+
readonly keyword?: string;
|
|
6583
6532
|
/**
|
|
6584
|
-
* 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.
|
|
6585
6546
|
* @type {number}
|
|
6586
6547
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6587
6548
|
*/
|
|
6588
|
-
readonly
|
|
6549
|
+
readonly size?: number;
|
|
6589
6550
|
/**
|
|
6590
6551
|
* Label selector for filtering.
|
|
6591
6552
|
* @type {Array<string>}
|
|
@@ -6598,6 +6559,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6598
6559
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6599
6560
|
*/
|
|
6600
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;
|
|
6601
6568
|
}
|
|
6602
6569
|
/**
|
|
6603
6570
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6929,21 +6896,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6929
6896
|
/**
|
|
6930
6897
|
* List posts.
|
|
6931
6898
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6932
|
-
* @param {string} [
|
|
6933
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6934
|
-
* @param {Array<string>} [tag]
|
|
6899
|
+
* @param {Array<string>} [contributor]
|
|
6935
6900
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6936
6901
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6937
6902
|
* @param {Array<string>} [category]
|
|
6938
|
-
* @param {Array<string>} [
|
|
6903
|
+
* @param {Array<string>} [tag]
|
|
6904
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6905
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6939
6906
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6940
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6941
6907
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6942
6908
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6909
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6943
6910
|
* @param {*} [options] Override http request option.
|
|
6944
6911
|
* @throws {RequiredError}
|
|
6945
6912
|
*/
|
|
6946
|
-
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>;
|
|
6947
6914
|
/**
|
|
6948
6915
|
* Publish a post.
|
|
6949
6916
|
* @param {string} name
|
|
@@ -6975,21 +6942,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6975
6942
|
/**
|
|
6976
6943
|
* List posts.
|
|
6977
6944
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6978
|
-
* @param {string} [
|
|
6979
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6980
|
-
* @param {Array<string>} [tag]
|
|
6945
|
+
* @param {Array<string>} [contributor]
|
|
6981
6946
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6982
6947
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6983
6948
|
* @param {Array<string>} [category]
|
|
6984
|
-
* @param {Array<string>} [
|
|
6949
|
+
* @param {Array<string>} [tag]
|
|
6950
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6951
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6985
6952
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6986
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6987
6953
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6988
6954
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6955
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6989
6956
|
* @param {*} [options] Override http request option.
|
|
6990
6957
|
* @throws {RequiredError}
|
|
6991
6958
|
*/
|
|
6992
|
-
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>>;
|
|
6993
6960
|
/**
|
|
6994
6961
|
* Publish a post.
|
|
6995
6962
|
* @param {string} name
|
|
@@ -7021,21 +6988,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7021
6988
|
/**
|
|
7022
6989
|
* List posts.
|
|
7023
6990
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7024
|
-
* @param {string} [
|
|
7025
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7026
|
-
* @param {Array<string>} [tag]
|
|
6991
|
+
* @param {Array<string>} [contributor]
|
|
7027
6992
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7028
6993
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7029
6994
|
* @param {Array<string>} [category]
|
|
7030
|
-
* @param {Array<string>} [
|
|
6995
|
+
* @param {Array<string>} [tag]
|
|
6996
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6997
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7031
6998
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7032
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7033
6999
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7034
7000
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7001
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7035
7002
|
* @param {*} [options] Override http request option.
|
|
7036
7003
|
* @throws {RequiredError}
|
|
7037
7004
|
*/
|
|
7038
|
-
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>;
|
|
7039
7006
|
/**
|
|
7040
7007
|
* Publish a post.
|
|
7041
7008
|
* @param {string} name
|
|
@@ -7077,24 +7044,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7077
7044
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7078
7045
|
*/
|
|
7079
7046
|
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';
|
|
7092
7047
|
/**
|
|
7093
7048
|
*
|
|
7094
7049
|
* @type {Array<string>}
|
|
7095
7050
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7096
7051
|
*/
|
|
7097
|
-
readonly
|
|
7052
|
+
readonly contributor?: Array<string>;
|
|
7098
7053
|
/**
|
|
7099
7054
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7100
7055
|
* @type {boolean}
|
|
@@ -7118,19 +7073,25 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7118
7073
|
* @type {Array<string>}
|
|
7119
7074
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7120
7075
|
*/
|
|
7121
|
-
readonly
|
|
7076
|
+
readonly tag?: Array<string>;
|
|
7122
7077
|
/**
|
|
7123
|
-
*
|
|
7124
|
-
* @type {
|
|
7078
|
+
* Posts filtered by keyword.
|
|
7079
|
+
* @type {string}
|
|
7125
7080
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7126
7081
|
*/
|
|
7127
|
-
readonly
|
|
7082
|
+
readonly keyword?: string;
|
|
7128
7083
|
/**
|
|
7129
|
-
*
|
|
7084
|
+
*
|
|
7085
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7086
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7087
|
+
*/
|
|
7088
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7089
|
+
/**
|
|
7090
|
+
* Size of one page. Zero indicates no limit.
|
|
7130
7091
|
* @type {number}
|
|
7131
7092
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7132
7093
|
*/
|
|
7133
|
-
readonly
|
|
7094
|
+
readonly size?: number;
|
|
7134
7095
|
/**
|
|
7135
7096
|
* Label selector for filtering.
|
|
7136
7097
|
* @type {Array<string>}
|
|
@@ -7143,6 +7104,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7143
7104
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7144
7105
|
*/
|
|
7145
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;
|
|
7146
7113
|
}
|
|
7147
7114
|
/**
|
|
7148
7115
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -7226,13 +7193,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
7226
7193
|
* List replies.
|
|
7227
7194
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7228
7195
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7229
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7230
7196
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7231
7197
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7198
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7232
7199
|
* @param {*} [options] Override http request option.
|
|
7233
7200
|
* @throws {RequiredError}
|
|
7234
7201
|
*/
|
|
7235
|
-
listReplies: (commentName?: string, size?: number,
|
|
7202
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7236
7203
|
};
|
|
7237
7204
|
/**
|
|
7238
7205
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -7243,13 +7210,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
7243
7210
|
* List replies.
|
|
7244
7211
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7245
7212
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7246
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7247
7213
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7248
7214
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7215
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7249
7216
|
* @param {*} [options] Override http request option.
|
|
7250
7217
|
* @throws {RequiredError}
|
|
7251
7218
|
*/
|
|
7252
|
-
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>>;
|
|
7253
7220
|
};
|
|
7254
7221
|
/**
|
|
7255
7222
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -7260,13 +7227,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
7260
7227
|
* List replies.
|
|
7261
7228
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7262
7229
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7263
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7264
7230
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7265
7231
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7232
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7266
7233
|
* @param {*} [options] Override http request option.
|
|
7267
7234
|
* @throws {RequiredError}
|
|
7268
7235
|
*/
|
|
7269
|
-
listReplies(commentName?: string, size?: number,
|
|
7236
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
7270
7237
|
};
|
|
7271
7238
|
/**
|
|
7272
7239
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -7286,12 +7253,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7286
7253
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7287
7254
|
*/
|
|
7288
7255
|
readonly size?: number;
|
|
7289
|
-
/**
|
|
7290
|
-
* The page number. Zero indicates no page.
|
|
7291
|
-
* @type {number}
|
|
7292
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7293
|
-
*/
|
|
7294
|
-
readonly page?: number;
|
|
7295
7256
|
/**
|
|
7296
7257
|
* Label selector for filtering.
|
|
7297
7258
|
* @type {Array<string>}
|
|
@@ -7304,6 +7265,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7304
7265
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7305
7266
|
*/
|
|
7306
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;
|
|
7307
7274
|
}
|
|
7308
7275
|
/**
|
|
7309
7276
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -7336,15 +7303,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7336
7303
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7337
7304
|
/**
|
|
7338
7305
|
* List single pages.
|
|
7339
|
-
* @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]
|
|
7340
7312
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7341
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7342
7313
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7343
7314
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7315
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7344
7316
|
* @param {*} [options] Override http request option.
|
|
7345
7317
|
* @throws {RequiredError}
|
|
7346
7318
|
*/
|
|
7347
|
-
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>;
|
|
7348
7320
|
/**
|
|
7349
7321
|
* Publish a single page.
|
|
7350
7322
|
* @param {string} name
|
|
@@ -7375,15 +7347,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7375
7347
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
7376
7348
|
/**
|
|
7377
7349
|
* List single pages.
|
|
7378
|
-
* @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]
|
|
7379
7356
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7380
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7381
7357
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7382
7358
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7359
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7383
7360
|
* @param {*} [options] Override http request option.
|
|
7384
7361
|
* @throws {RequiredError}
|
|
7385
7362
|
*/
|
|
7386
|
-
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>>;
|
|
7387
7364
|
/**
|
|
7388
7365
|
* Publish a single page.
|
|
7389
7366
|
* @param {string} name
|
|
@@ -7414,15 +7391,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7414
7391
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
7415
7392
|
/**
|
|
7416
7393
|
* List single pages.
|
|
7417
|
-
* @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]
|
|
7418
7400
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7419
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7420
7401
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7421
7402
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7403
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7422
7404
|
* @param {*} [options] Override http request option.
|
|
7423
7405
|
* @throws {RequiredError}
|
|
7424
7406
|
*/
|
|
7425
|
-
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>;
|
|
7426
7408
|
/**
|
|
7427
7409
|
* Publish a single page.
|
|
7428
7410
|
* @param {string} name
|
|
@@ -7458,24 +7440,48 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
7458
7440
|
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
7459
7441
|
*/
|
|
7460
7442
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
7443
|
+
/**
|
|
7444
|
+
* SinglePage collation.
|
|
7445
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
7446
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7447
|
+
*/
|
|
7448
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7461
7449
|
/**
|
|
7462
7450
|
*
|
|
7463
7451
|
* @type {Array<string>}
|
|
7464
7452
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7465
7453
|
*/
|
|
7466
|
-
readonly
|
|
7454
|
+
readonly contributor?: Array<string>;
|
|
7467
7455
|
/**
|
|
7468
|
-
*
|
|
7469
|
-
* @type {
|
|
7456
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7457
|
+
* @type {boolean}
|
|
7470
7458
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7471
7459
|
*/
|
|
7472
|
-
readonly
|
|
7460
|
+
readonly sortOrder?: boolean;
|
|
7473
7461
|
/**
|
|
7474
|
-
*
|
|
7462
|
+
*
|
|
7463
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7464
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7465
|
+
*/
|
|
7466
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7467
|
+
/**
|
|
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.
|
|
7475
7481
|
* @type {number}
|
|
7476
7482
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7477
7483
|
*/
|
|
7478
|
-
readonly
|
|
7484
|
+
readonly size?: number;
|
|
7479
7485
|
/**
|
|
7480
7486
|
* Label selector for filtering.
|
|
7481
7487
|
* @type {Array<string>}
|
|
@@ -7488,6 +7494,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7488
7494
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7489
7495
|
*/
|
|
7490
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;
|
|
7491
7503
|
}
|
|
7492
7504
|
/**
|
|
7493
7505
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -7600,7 +7612,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
7600
7612
|
* @param {*} [options] Override http request option.
|
|
7601
7613
|
* @throws {RequiredError}
|
|
7602
7614
|
*/
|
|
7603
|
-
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7615
|
+
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
7604
7616
|
};
|
|
7605
7617
|
/**
|
|
7606
7618
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -7620,7 +7632,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
7620
7632
|
* @param {*} [options] Override http request option.
|
|
7621
7633
|
* @throws {RequiredError}
|
|
7622
7634
|
*/
|
|
7623
|
-
reloadThemeSetting(name: string, options?: any): AxiosPromise<
|
|
7635
|
+
reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
|
|
7624
7636
|
};
|
|
7625
7637
|
/**
|
|
7626
7638
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -7670,7 +7682,7 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
7670
7682
|
* @throws {RequiredError}
|
|
7671
7683
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7672
7684
|
*/
|
|
7673
|
-
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7685
|
+
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
7674
7686
|
}
|
|
7675
7687
|
|
|
7676
7688
|
/**
|
|
@@ -11224,13 +11236,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
11224
11236
|
* @param {string} [group] Name of group
|
|
11225
11237
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11226
11238
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11227
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11228
11239
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11229
11240
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11241
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11230
11242
|
* @param {*} [options] Override http request option.
|
|
11231
11243
|
* @throws {RequiredError}
|
|
11232
11244
|
*/
|
|
11233
|
-
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>;
|
|
11234
11246
|
/**
|
|
11235
11247
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11236
11248
|
* @param {string} name Name of attachment
|
|
@@ -11292,13 +11304,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
11292
11304
|
* @param {string} [group] Name of group
|
|
11293
11305
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11294
11306
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11295
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11296
11307
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11297
11308
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11309
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11298
11310
|
* @param {*} [options] Override http request option.
|
|
11299
11311
|
* @throws {RequiredError}
|
|
11300
11312
|
*/
|
|
11301
|
-
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>>;
|
|
11302
11314
|
/**
|
|
11303
11315
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11304
11316
|
* @param {string} name Name of attachment
|
|
@@ -11360,13 +11372,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
11360
11372
|
* @param {string} [group] Name of group
|
|
11361
11373
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11362
11374
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11363
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11364
11375
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11365
11376
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11377
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11366
11378
|
* @param {*} [options] Override http request option.
|
|
11367
11379
|
* @throws {RequiredError}
|
|
11368
11380
|
*/
|
|
11369
|
-
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>;
|
|
11370
11382
|
/**
|
|
11371
11383
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11372
11384
|
* @param {string} name Name of attachment
|
|
@@ -11491,12 +11503,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11491
11503
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11492
11504
|
*/
|
|
11493
11505
|
readonly size?: number;
|
|
11494
|
-
/**
|
|
11495
|
-
* The page number. Zero indicates no page.
|
|
11496
|
-
* @type {number}
|
|
11497
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11498
|
-
*/
|
|
11499
|
-
readonly page?: number;
|
|
11500
11506
|
/**
|
|
11501
11507
|
* Label selector for filtering.
|
|
11502
11508
|
* @type {Array<string>}
|
|
@@ -11509,6 +11515,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11509
11515
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11510
11516
|
*/
|
|
11511
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;
|
|
11512
11524
|
}
|
|
11513
11525
|
/**
|
|
11514
11526
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -14895,4 +14907,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14895
14907
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14896
14908
|
}
|
|
14897
14909
|
|
|
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 };
|
|
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 };
|