@halo-dev/api-client 0.0.30 → 0.0.32

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.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 {Array<CompactPost>}
551
+ * @type {number}
552
+ * @memberof CategoryStatus
553
+ */
554
+ postCount?: number;
555
+ /**
556
+ *
557
+ * @type {number}
596
558
  * @memberof CategoryStatus
597
559
  */
598
- posts?: Array<CompactPost>;
560
+ visiblePostCount?: number;
599
561
  }
600
562
 
601
563
  /**
@@ -1711,22 +1673,22 @@ interface Excerpt {
1711
1673
  interface Extension {
1712
1674
  /**
1713
1675
  *
1714
- * @type {Metadata}
1676
+ * @type {string}
1715
1677
  * @memberof Extension
1716
1678
  */
1717
- metadata: Metadata;
1679
+ kind: string;
1718
1680
  /**
1719
1681
  *
1720
- * @type {string}
1682
+ * @type {Metadata}
1721
1683
  * @memberof Extension
1722
1684
  */
1723
- apiVersion: string;
1685
+ metadata: Metadata;
1724
1686
  /**
1725
1687
  *
1726
1688
  * @type {string}
1727
1689
  * @memberof Extension
1728
1690
  */
1729
- kind: string;
1691
+ apiVersion: 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 {Array<CompactPost>}
2563
+ * @type {number}
2603
2564
  * @memberof TagStatus
2604
2565
  */
2605
- posts?: Array<CompactPost>;
2566
+ visiblePostCount?: number;
2567
+ /**
2568
+ *
2569
+ * @type {number}
2570
+ * @memberof TagStatus
2571
+ */
2572
+ postCount?: number;
2606
2573
  }
2607
2574
 
2608
2575
  /**
@@ -6336,6 +6303,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
6336
6303
  /**
6337
6304
  * List comments.
6338
6305
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6306
+ * @param {string} [keyword] Comments filtered by keyword.
6307
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6308
+ * @param {boolean} [top] Comment top display.
6339
6309
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6340
6310
  * @param {boolean} [approved] Comments approved.
6341
6311
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6343,17 +6313,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
6343
6313
  * @param {string} [ownerName] Commenter name.
6344
6314
  * @param {string} [subjectKind] Comment subject kind.
6345
6315
  * @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
6316
  * @param {number} [size] Size of one page. Zero indicates no limit.
6317
+ * @param {number} [page] The page number. Zero indicates no page.
6350
6318
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6351
6319
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6352
- * @param {number} [page] The page number. Zero indicates no page.
6353
6320
  * @param {*} [options] Override http request option.
6354
6321
  * @throws {RequiredError}
6355
6322
  */
6356
- 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>;
6323
+ 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
6324
  };
6358
6325
  /**
6359
6326
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -6378,6 +6345,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6378
6345
  /**
6379
6346
  * List comments.
6380
6347
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6348
+ * @param {string} [keyword] Comments filtered by keyword.
6349
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6350
+ * @param {boolean} [top] Comment top display.
6381
6351
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6382
6352
  * @param {boolean} [approved] Comments approved.
6383
6353
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6385,17 +6355,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6385
6355
  * @param {string} [ownerName] Commenter name.
6386
6356
  * @param {string} [subjectKind] Comment subject kind.
6387
6357
  * @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
6358
  * @param {number} [size] Size of one page. Zero indicates no limit.
6359
+ * @param {number} [page] The page number. Zero indicates no page.
6392
6360
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6393
6361
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6394
- * @param {number} [page] The page number. Zero indicates no page.
6395
6362
  * @param {*} [options] Override http request option.
6396
6363
  * @throws {RequiredError}
6397
6364
  */
6398
- 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>>;
6365
+ 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
6366
  };
6400
6367
  /**
6401
6368
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -6420,6 +6387,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6420
6387
  /**
6421
6388
  * List comments.
6422
6389
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6390
+ * @param {string} [keyword] Comments filtered by keyword.
6391
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6392
+ * @param {boolean} [top] Comment top display.
6423
6393
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6424
6394
  * @param {boolean} [approved] Comments approved.
6425
6395
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6427,17 +6397,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6427
6397
  * @param {string} [ownerName] Commenter name.
6428
6398
  * @param {string} [subjectKind] Comment subject kind.
6429
6399
  * @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
6400
  * @param {number} [size] Size of one page. Zero indicates no limit.
6401
+ * @param {number} [page] The page number. Zero indicates no page.
6434
6402
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6435
6403
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6436
- * @param {number} [page] The page number. Zero indicates no page.
6437
6404
  * @param {*} [options] Override http request option.
6438
6405
  * @throws {RequiredError}
6439
6406
  */
6440
- 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>;
6407
+ 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
6408
  };
6442
6409
  /**
6443
6410
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -6483,6 +6450,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6483
6450
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6484
6451
  */
6485
6452
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
6453
+ /**
6454
+ * Comments filtered by keyword.
6455
+ * @type {string}
6456
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6457
+ */
6458
+ readonly keyword?: string;
6459
+ /**
6460
+ * The comment is hidden from the theme side.
6461
+ * @type {boolean}
6462
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6463
+ */
6464
+ readonly hidden?: boolean;
6465
+ /**
6466
+ * Comment top display.
6467
+ * @type {boolean}
6468
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6469
+ */
6470
+ readonly top?: boolean;
6486
6471
  /**
6487
6472
  * ascending order If it is true; otherwise, it is in descending order.
6488
6473
  * @type {boolean}
@@ -6526,29 +6511,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6526
6511
  */
6527
6512
  readonly subjectName?: string;
6528
6513
  /**
6529
- * Comments filtered by keyword.
6530
- * @type {string}
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}
6514
+ * Size of one page. Zero indicates no limit.
6515
+ * @type {number}
6543
6516
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6544
6517
  */
6545
- readonly top?: boolean;
6518
+ readonly size?: number;
6546
6519
  /**
6547
- * Size of one page. Zero indicates no limit.
6520
+ * The page number. Zero indicates no page.
6548
6521
  * @type {number}
6549
6522
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6550
6523
  */
6551
- readonly size?: number;
6524
+ readonly page?: number;
6552
6525
  /**
6553
6526
  * Label selector for filtering.
6554
6527
  * @type {Array<string>}
@@ -6561,12 +6534,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6561
6534
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6562
6535
  */
6563
6536
  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
6537
  }
6571
6538
  /**
6572
6539
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -6898,21 +6865,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
6898
6865
  /**
6899
6866
  * List posts.
6900
6867
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6901
- * @param {Array<string>} [contributor]
6902
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6903
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6904
- * @param {Array<string>} [category]
6905
6868
  * @param {Array<string>} [tag]
6906
6869
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6907
6870
  * @param {string} [keyword] Posts filtered by keyword.
6871
+ * @param {Array<string>} [contributor]
6872
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6873
+ * @param {Array<string>} [category]
6874
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6908
6875
  * @param {number} [size] Size of one page. Zero indicates no limit.
6876
+ * @param {number} [page] The page number. Zero indicates no page.
6909
6877
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6910
6878
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6911
- * @param {number} [page] The page number. Zero indicates no page.
6912
6879
  * @param {*} [options] Override http request option.
6913
6880
  * @throws {RequiredError}
6914
6881
  */
6915
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6882
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6916
6883
  /**
6917
6884
  * Publish a post.
6918
6885
  * @param {string} name
@@ -6944,21 +6911,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
6944
6911
  /**
6945
6912
  * List posts.
6946
6913
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6947
- * @param {Array<string>} [contributor]
6948
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6949
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6950
- * @param {Array<string>} [category]
6951
6914
  * @param {Array<string>} [tag]
6952
6915
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6953
6916
  * @param {string} [keyword] Posts filtered by keyword.
6917
+ * @param {Array<string>} [contributor]
6918
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6919
+ * @param {Array<string>} [category]
6920
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6954
6921
  * @param {number} [size] Size of one page. Zero indicates no limit.
6922
+ * @param {number} [page] The page number. Zero indicates no page.
6955
6923
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6956
6924
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6957
- * @param {number} [page] The page number. Zero indicates no page.
6958
6925
  * @param {*} [options] Override http request option.
6959
6926
  * @throws {RequiredError}
6960
6927
  */
6961
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6928
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6962
6929
  /**
6963
6930
  * Publish a post.
6964
6931
  * @param {string} name
@@ -6990,21 +6957,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
6990
6957
  /**
6991
6958
  * List posts.
6992
6959
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6993
- * @param {Array<string>} [contributor]
6994
- * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6995
- * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6996
- * @param {Array<string>} [category]
6997
6960
  * @param {Array<string>} [tag]
6998
6961
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6999
6962
  * @param {string} [keyword] Posts filtered by keyword.
6963
+ * @param {Array<string>} [contributor]
6964
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6965
+ * @param {Array<string>} [category]
6966
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7000
6967
  * @param {number} [size] Size of one page. Zero indicates no limit.
6968
+ * @param {number} [page] The page number. Zero indicates no page.
7001
6969
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7002
6970
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7003
- * @param {number} [page] The page number. Zero indicates no page.
7004
6971
  * @param {*} [options] Override http request option.
7005
6972
  * @throws {RequiredError}
7006
6973
  */
7007
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
6974
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
7008
6975
  /**
7009
6976
  * Publish a post.
7010
6977
  * @param {string} name
@@ -7051,49 +7018,55 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7051
7018
  * @type {Array<string>}
7052
7019
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7053
7020
  */
7054
- readonly contributor?: Array<string>;
7021
+ readonly tag?: Array<string>;
7055
7022
  /**
7056
- * ascending order If it is true; otherwise, it is in descending order.
7057
- * @type {boolean}
7023
+ *
7024
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7058
7025
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7059
7026
  */
7060
- readonly sortOrder?: boolean;
7027
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7061
7028
  /**
7062
- *
7063
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7029
+ * Posts filtered by keyword.
7030
+ * @type {string}
7064
7031
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7065
7032
  */
7066
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7033
+ readonly keyword?: string;
7067
7034
  /**
7068
7035
  *
7069
7036
  * @type {Array<string>}
7070
7037
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7071
7038
  */
7072
- readonly category?: Array<string>;
7039
+ readonly contributor?: Array<string>;
7073
7040
  /**
7074
7041
  *
7075
- * @type {Array<string>}
7042
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7076
7043
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7077
7044
  */
7078
- readonly tag?: Array<string>;
7045
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7079
7046
  /**
7080
7047
  *
7081
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7048
+ * @type {Array<string>}
7082
7049
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7083
7050
  */
7084
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7051
+ readonly category?: Array<string>;
7085
7052
  /**
7086
- * Posts filtered by keyword.
7087
- * @type {string}
7053
+ * ascending order If it is true; otherwise, it is in descending order.
7054
+ * @type {boolean}
7088
7055
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7089
7056
  */
7090
- readonly keyword?: string;
7057
+ readonly sortOrder?: boolean;
7091
7058
  /**
7092
7059
  * Size of one page. Zero indicates no limit.
7093
7060
  * @type {number}
7094
7061
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7095
7062
  */
7096
7063
  readonly size?: number;
7064
+ /**
7065
+ * The page number. Zero indicates no page.
7066
+ * @type {number}
7067
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7068
+ */
7069
+ readonly page?: number;
7097
7070
  /**
7098
7071
  * Label selector for filtering.
7099
7072
  * @type {Array<string>}
@@ -7106,12 +7079,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7106
7079
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7107
7080
  */
7108
7081
  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
7082
  }
7116
7083
  /**
7117
7084
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -7195,13 +7162,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
7195
7162
  * List replies.
7196
7163
  * @param {string} [commentName] Replies filtered by commentName.
7197
7164
  * @param {number} [size] Size of one page. Zero indicates no limit.
7165
+ * @param {number} [page] The page number. Zero indicates no page.
7198
7166
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7199
7167
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7200
- * @param {number} [page] The page number. Zero indicates no page.
7201
7168
  * @param {*} [options] Override http request option.
7202
7169
  * @throws {RequiredError}
7203
7170
  */
7204
- listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7171
+ listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7205
7172
  };
7206
7173
  /**
7207
7174
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -7212,13 +7179,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
7212
7179
  * List replies.
7213
7180
  * @param {string} [commentName] Replies filtered by commentName.
7214
7181
  * @param {number} [size] Size of one page. Zero indicates no limit.
7182
+ * @param {number} [page] The page number. Zero indicates no page.
7215
7183
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7216
7184
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7217
- * @param {number} [page] The page number. Zero indicates no page.
7218
7185
  * @param {*} [options] Override http request option.
7219
7186
  * @throws {RequiredError}
7220
7187
  */
7221
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7188
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7222
7189
  };
7223
7190
  /**
7224
7191
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -7229,13 +7196,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
7229
7196
  * List replies.
7230
7197
  * @param {string} [commentName] Replies filtered by commentName.
7231
7198
  * @param {number} [size] Size of one page. Zero indicates no limit.
7199
+ * @param {number} [page] The page number. Zero indicates no page.
7232
7200
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7233
7201
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7234
- * @param {number} [page] The page number. Zero indicates no page.
7235
7202
  * @param {*} [options] Override http request option.
7236
7203
  * @throws {RequiredError}
7237
7204
  */
7238
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
7205
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
7239
7206
  };
7240
7207
  /**
7241
7208
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -7255,6 +7222,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7255
7222
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7256
7223
  */
7257
7224
  readonly size?: number;
7225
+ /**
7226
+ * The page number. Zero indicates no page.
7227
+ * @type {number}
7228
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7229
+ */
7230
+ readonly page?: number;
7258
7231
  /**
7259
7232
  * Label selector for filtering.
7260
7233
  * @type {Array<string>}
@@ -7267,12 +7240,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7267
7240
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7268
7241
  */
7269
7242
  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
7243
  }
7277
7244
  /**
7278
7245
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -7305,20 +7272,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
7305
7272
  draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7306
7273
  /**
7307
7274
  * List single pages.
7308
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
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.
7275
+ * @param {Array<string>} [contributors]
7314
7276
  * @param {number} [size] Size of one page. Zero indicates no limit.
7277
+ * @param {number} [page] The page number. Zero indicates no page.
7315
7278
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7316
7279
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7317
- * @param {number} [page] The page number. Zero indicates no page.
7318
7280
  * @param {*} [options] Override http request option.
7319
7281
  * @throws {RequiredError}
7320
7282
  */
7321
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7283
+ listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7322
7284
  /**
7323
7285
  * Publish a single page.
7324
7286
  * @param {string} name
@@ -7349,20 +7311,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
7349
7311
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
7350
7312
  /**
7351
7313
  * List single pages.
7352
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
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.
7314
+ * @param {Array<string>} [contributors]
7358
7315
  * @param {number} [size] Size of one page. Zero indicates no limit.
7316
+ * @param {number} [page] The page number. Zero indicates no page.
7359
7317
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7360
7318
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7361
- * @param {number} [page] The page number. Zero indicates no page.
7362
7319
  * @param {*} [options] Override http request option.
7363
7320
  * @throws {RequiredError}
7364
7321
  */
7365
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
7322
+ listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
7366
7323
  /**
7367
7324
  * Publish a single page.
7368
7325
  * @param {string} name
@@ -7393,20 +7350,15 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
7393
7350
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
7394
7351
  /**
7395
7352
  * List single pages.
7396
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
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.
7353
+ * @param {Array<string>} [contributors]
7402
7354
  * @param {number} [size] Size of one page. Zero indicates no limit.
7355
+ * @param {number} [page] The page number. Zero indicates no page.
7403
7356
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7404
7357
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7405
- * @param {number} [page] The page number. Zero indicates no page.
7406
7358
  * @param {*} [options] Override http request option.
7407
7359
  * @throws {RequiredError}
7408
7360
  */
7409
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
7361
+ listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
7410
7362
  /**
7411
7363
  * Publish a single page.
7412
7364
  * @param {string} name
@@ -7442,48 +7394,24 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
7442
7394
  * @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
7443
7395
  */
7444
7396
  interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7445
- /**
7446
- * SinglePage collation.
7447
- * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
7448
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7449
- */
7450
- readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7451
7397
  /**
7452
7398
  *
7453
7399
  * @type {Array<string>}
7454
7400
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7455
7401
  */
7456
- readonly contributor?: Array<string>;
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';
7402
+ readonly contributors?: Array<string>;
7469
7403
  /**
7470
- *
7471
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7472
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7473
- */
7474
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7475
- /**
7476
- * SinglePages filtered by keyword.
7477
- * @type {string}
7404
+ * Size of one page. Zero indicates no limit.
7405
+ * @type {number}
7478
7406
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7479
7407
  */
7480
- readonly keyword?: string;
7408
+ readonly size?: number;
7481
7409
  /**
7482
- * Size of one page. Zero indicates no limit.
7410
+ * The page number. Zero indicates no page.
7483
7411
  * @type {number}
7484
7412
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7485
7413
  */
7486
- readonly size?: number;
7414
+ readonly page?: number;
7487
7415
  /**
7488
7416
  * Label selector for filtering.
7489
7417
  * @type {Array<string>}
@@ -7496,12 +7424,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7496
7424
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7497
7425
  */
7498
7426
  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
7427
  }
7506
7428
  /**
7507
7429
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -11238,13 +11160,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
11238
11160
  * @param {string} [group] Name of group
11239
11161
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
11240
11162
  * @param {number} [size] Size of one page. Zero indicates no limit.
11163
+ * @param {number} [page] The page number. Zero indicates no page.
11241
11164
  * @param {Array<string>} [labelSelector] Label selector for filtering.
11242
11165
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
11243
- * @param {number} [page] The page number. Zero indicates no page.
11244
11166
  * @param {*} [options] Override http request option.
11245
11167
  * @throws {RequiredError}
11246
11168
  */
11247
- searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11169
+ searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11248
11170
  /**
11249
11171
  * Update storage.halo.run/v1alpha1/Attachment
11250
11172
  * @param {string} name Name of attachment
@@ -11306,13 +11228,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
11306
11228
  * @param {string} [group] Name of group
11307
11229
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
11308
11230
  * @param {number} [size] Size of one page. Zero indicates no limit.
11231
+ * @param {number} [page] The page number. Zero indicates no page.
11309
11232
  * @param {Array<string>} [labelSelector] Label selector for filtering.
11310
11233
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
11311
- * @param {number} [page] The page number. Zero indicates no page.
11312
11234
  * @param {*} [options] Override http request option.
11313
11235
  * @throws {RequiredError}
11314
11236
  */
11315
- 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>>;
11237
+ 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
11238
  /**
11317
11239
  * Update storage.halo.run/v1alpha1/Attachment
11318
11240
  * @param {string} name Name of attachment
@@ -11374,13 +11296,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
11374
11296
  * @param {string} [group] Name of group
11375
11297
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
11376
11298
  * @param {number} [size] Size of one page. Zero indicates no limit.
11299
+ * @param {number} [page] The page number. Zero indicates no page.
11377
11300
  * @param {Array<string>} [labelSelector] Label selector for filtering.
11378
11301
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
11379
- * @param {number} [page] The page number. Zero indicates no page.
11380
11302
  * @param {*} [options] Override http request option.
11381
11303
  * @throws {RequiredError}
11382
11304
  */
11383
- searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
11305
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
11384
11306
  /**
11385
11307
  * Update storage.halo.run/v1alpha1/Attachment
11386
11308
  * @param {string} name Name of attachment
@@ -11505,6 +11427,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
11505
11427
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11506
11428
  */
11507
11429
  readonly size?: number;
11430
+ /**
11431
+ * The page number. Zero indicates no page.
11432
+ * @type {number}
11433
+ * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11434
+ */
11435
+ readonly page?: number;
11508
11436
  /**
11509
11437
  * Label selector for filtering.
11510
11438
  * @type {Array<string>}
@@ -11517,12 +11445,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
11517
11445
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
11518
11446
  */
11519
11447
  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
11448
  }
11527
11449
  /**
11528
11450
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -14909,4 +14831,4 @@ declare class V1alpha1UserApi extends BaseAPI {
14909
14831
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
14910
14832
  }
14911
14833
 
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 };
14834
+ export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };