@halo-dev/api-client 0.0.35 → 0.0.37

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
@@ -260,11 +260,17 @@ interface AttachmentStatus {
260
260
  * Do not edit the class manually.
261
261
  */
262
262
  /**
263
- *
263
+ * Metadata information
264
264
  * @export
265
265
  * @interface Metadata
266
266
  */
267
267
  interface Metadata {
268
+ /**
269
+ * The name field will be generated automatically according to the given generateName field
270
+ * @type {string}
271
+ * @memberof Metadata
272
+ */
273
+ generateName?: string;
268
274
  /**
269
275
  *
270
276
  * @type {Array<string>}
@@ -272,11 +278,11 @@ interface Metadata {
272
278
  */
273
279
  finalizers?: Array<string> | null;
274
280
  /**
275
- *
281
+ * Metadata name
276
282
  * @type {string}
277
283
  * @memberof Metadata
278
284
  */
279
- name: string;
285
+ name?: string;
280
286
  /**
281
287
  *
282
288
  * @type {{ [key: string]: string; }}
@@ -1652,6 +1658,12 @@ interface Counter {
1652
1658
  * @memberof Counter
1653
1659
  */
1654
1660
  upvote?: number;
1661
+ /**
1662
+ *
1663
+ * @type {number}
1664
+ * @memberof Counter
1665
+ */
1666
+ downvote?: number;
1655
1667
  /**
1656
1668
  *
1657
1669
  * @type {number}
@@ -1864,22 +1876,22 @@ interface Excerpt {
1864
1876
  interface Extension {
1865
1877
  /**
1866
1878
  *
1867
- * @type {Metadata}
1879
+ * @type {string}
1868
1880
  * @memberof Extension
1869
1881
  */
1870
- metadata: Metadata;
1882
+ kind: string;
1871
1883
  /**
1872
1884
  *
1873
- * @type {string}
1885
+ * @type {Metadata}
1874
1886
  * @memberof Extension
1875
1887
  */
1876
- apiVersion: string;
1888
+ metadata: Metadata;
1877
1889
  /**
1878
1890
  *
1879
1891
  * @type {string}
1880
1892
  * @memberof Extension
1881
1893
  */
1882
- kind: string;
1894
+ apiVersion: string;
1883
1895
  }
1884
1896
 
1885
1897
  /**
@@ -6569,6 +6581,235 @@ interface UserPermission {
6569
6581
  uiPermissions: Array<string>;
6570
6582
  }
6571
6583
 
6584
+ /**
6585
+ * Halo Next API
6586
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6587
+ *
6588
+ * The version of the OpenAPI document: 2.0.0
6589
+ *
6590
+ *
6591
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6592
+ * https://openapi-generator.tech
6593
+ * Do not edit the class manually.
6594
+ */
6595
+ /**
6596
+ *
6597
+ * @export
6598
+ * @interface VoteRequest
6599
+ */
6600
+ interface VoteRequest {
6601
+ /**
6602
+ *
6603
+ * @type {string}
6604
+ * @memberof VoteRequest
6605
+ */
6606
+ group?: string;
6607
+ /**
6608
+ *
6609
+ * @type {string}
6610
+ * @memberof VoteRequest
6611
+ */
6612
+ plural?: string;
6613
+ /**
6614
+ *
6615
+ * @type {string}
6616
+ * @memberof VoteRequest
6617
+ */
6618
+ name?: string;
6619
+ }
6620
+
6621
+ /**
6622
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - axios parameter creator
6623
+ * @export
6624
+ */
6625
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configuration?: Configuration) => {
6626
+ /**
6627
+ *
6628
+ * @param {string} [policy] Name of policy
6629
+ * @param {string} [displayName] Display name of attachment
6630
+ * @param {string} [group] Name of group
6631
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6632
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6633
+ * @param {number} [page] The page number. Zero indicates no page.
6634
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6635
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6636
+ * @param {*} [options] Override http request option.
6637
+ * @throws {RequiredError}
6638
+ */
6639
+ searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6640
+ /**
6641
+ *
6642
+ * @param {any} file
6643
+ * @param {string} policyName Storage policy name
6644
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6645
+ * @param {*} [options] Override http request option.
6646
+ * @throws {RequiredError}
6647
+ */
6648
+ uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6649
+ };
6650
+ /**
6651
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - functional programming interface
6652
+ * @export
6653
+ */
6654
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configuration) => {
6655
+ /**
6656
+ *
6657
+ * @param {string} [policy] Name of policy
6658
+ * @param {string} [displayName] Display name of attachment
6659
+ * @param {string} [group] Name of group
6660
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6661
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6662
+ * @param {number} [page] The page number. Zero indicates no page.
6663
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6664
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6665
+ * @param {*} [options] Override http request option.
6666
+ * @throws {RequiredError}
6667
+ */
6668
+ 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>>;
6669
+ /**
6670
+ *
6671
+ * @param {any} file
6672
+ * @param {string} policyName Storage policy name
6673
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6674
+ * @param {*} [options] Override http request option.
6675
+ * @throws {RequiredError}
6676
+ */
6677
+ uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
6678
+ };
6679
+ /**
6680
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - factory interface
6681
+ * @export
6682
+ */
6683
+ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6684
+ /**
6685
+ *
6686
+ * @param {string} [policy] Name of policy
6687
+ * @param {string} [displayName] Display name of attachment
6688
+ * @param {string} [group] Name of group
6689
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
6690
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6691
+ * @param {number} [page] The page number. Zero indicates no page.
6692
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6693
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6694
+ * @param {*} [options] Override http request option.
6695
+ * @throws {RequiredError}
6696
+ */
6697
+ searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
6698
+ /**
6699
+ *
6700
+ * @param {any} file
6701
+ * @param {string} policyName Storage policy name
6702
+ * @param {string} [groupName] The name of the group to which the attachment belongs
6703
+ * @param {*} [options] Override http request option.
6704
+ * @throws {RequiredError}
6705
+ */
6706
+ uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
6707
+ };
6708
+ /**
6709
+ * Request parameters for searchAttachments operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
6710
+ * @export
6711
+ * @interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest
6712
+ */
6713
+ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
6714
+ /**
6715
+ * Name of policy
6716
+ * @type {string}
6717
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6718
+ */
6719
+ readonly policy?: string;
6720
+ /**
6721
+ * Display name of attachment
6722
+ * @type {string}
6723
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6724
+ */
6725
+ readonly displayName?: string;
6726
+ /**
6727
+ * Name of group
6728
+ * @type {string}
6729
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6730
+ */
6731
+ readonly group?: string;
6732
+ /**
6733
+ * Name of user who uploaded the attachment
6734
+ * @type {string}
6735
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6736
+ */
6737
+ readonly uploadedBy?: string;
6738
+ /**
6739
+ * Size of one page. Zero indicates no limit.
6740
+ * @type {number}
6741
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6742
+ */
6743
+ readonly size?: number;
6744
+ /**
6745
+ * The page number. Zero indicates no page.
6746
+ * @type {number}
6747
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6748
+ */
6749
+ readonly page?: number;
6750
+ /**
6751
+ * Label selector for filtering.
6752
+ * @type {Array<string>}
6753
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6754
+ */
6755
+ readonly labelSelector?: Array<string>;
6756
+ /**
6757
+ * Field selector for filtering.
6758
+ * @type {Array<string>}
6759
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
6760
+ */
6761
+ readonly fieldSelector?: Array<string>;
6762
+ }
6763
+ /**
6764
+ * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
6765
+ * @export
6766
+ * @interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
6767
+ */
6768
+ interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
6769
+ /**
6770
+ *
6771
+ * @type {any}
6772
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6773
+ */
6774
+ readonly file: any;
6775
+ /**
6776
+ * Storage policy name
6777
+ * @type {string}
6778
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6779
+ */
6780
+ readonly policyName: string;
6781
+ /**
6782
+ * The name of the group to which the attachment belongs
6783
+ * @type {string}
6784
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
6785
+ */
6786
+ readonly groupName?: string;
6787
+ }
6788
+ /**
6789
+ * ApiConsoleHaloRunV1alpha1AttachmentApi - object-oriented interface
6790
+ * @export
6791
+ * @class ApiConsoleHaloRunV1alpha1AttachmentApi
6792
+ * @extends {BaseAPI}
6793
+ */
6794
+ declare class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
6795
+ /**
6796
+ *
6797
+ * @param {ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest} requestParameters Request parameters.
6798
+ * @param {*} [options] Override http request option.
6799
+ * @throws {RequiredError}
6800
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApi
6801
+ */
6802
+ searchAttachments(requestParameters?: ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
6803
+ /**
6804
+ *
6805
+ * @param {ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest} requestParameters Request parameters.
6806
+ * @param {*} [options] Override http request option.
6807
+ * @throws {RequiredError}
6808
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApi
6809
+ */
6810
+ uploadAttachment(requestParameters: ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
6811
+ }
6812
+
6572
6813
  /**
6573
6814
  * ApiConsoleHaloRunV1alpha1CommentApi - axios parameter creator
6574
6815
  * @export
@@ -6592,6 +6833,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
6592
6833
  /**
6593
6834
  * List comments.
6594
6835
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6836
+ * @param {string} [keyword] Comments filtered by keyword.
6837
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6838
+ * @param {boolean} [top] Comment top display.
6595
6839
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6596
6840
  * @param {boolean} [approved] Comments approved.
6597
6841
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6599,17 +6843,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
6599
6843
  * @param {string} [ownerName] Commenter name.
6600
6844
  * @param {string} [subjectKind] Comment subject kind.
6601
6845
  * @param {string} [subjectName] Comment subject name.
6602
- * @param {string} [keyword] Comments filtered by keyword.
6603
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6604
- * @param {boolean} [top] Comment top display.
6605
6846
  * @param {number} [size] Size of one page. Zero indicates no limit.
6847
+ * @param {number} [page] The page number. Zero indicates no page.
6606
6848
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6607
6849
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6608
- * @param {number} [page] The page number. Zero indicates no page.
6609
6850
  * @param {*} [options] Override http request option.
6610
6851
  * @throws {RequiredError}
6611
6852
  */
6612
- 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>;
6853
+ 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>;
6613
6854
  };
6614
6855
  /**
6615
6856
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -6634,6 +6875,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6634
6875
  /**
6635
6876
  * List comments.
6636
6877
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6878
+ * @param {string} [keyword] Comments filtered by keyword.
6879
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6880
+ * @param {boolean} [top] Comment top display.
6637
6881
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6638
6882
  * @param {boolean} [approved] Comments approved.
6639
6883
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6641,17 +6885,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
6641
6885
  * @param {string} [ownerName] Commenter name.
6642
6886
  * @param {string} [subjectKind] Comment subject kind.
6643
6887
  * @param {string} [subjectName] Comment subject name.
6644
- * @param {string} [keyword] Comments filtered by keyword.
6645
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6646
- * @param {boolean} [top] Comment top display.
6647
6888
  * @param {number} [size] Size of one page. Zero indicates no limit.
6889
+ * @param {number} [page] The page number. Zero indicates no page.
6648
6890
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6649
6891
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6650
- * @param {number} [page] The page number. Zero indicates no page.
6651
6892
  * @param {*} [options] Override http request option.
6652
6893
  * @throws {RequiredError}
6653
6894
  */
6654
- 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>>;
6895
+ 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>>;
6655
6896
  };
6656
6897
  /**
6657
6898
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -6676,6 +6917,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6676
6917
  /**
6677
6918
  * List comments.
6678
6919
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
6920
+ * @param {string} [keyword] Comments filtered by keyword.
6921
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6922
+ * @param {boolean} [top] Comment top display.
6679
6923
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6680
6924
  * @param {boolean} [approved] Comments approved.
6681
6925
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -6683,17 +6927,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
6683
6927
  * @param {string} [ownerName] Commenter name.
6684
6928
  * @param {string} [subjectKind] Comment subject kind.
6685
6929
  * @param {string} [subjectName] Comment subject name.
6686
- * @param {string} [keyword] Comments filtered by keyword.
6687
- * @param {boolean} [hidden] The comment is hidden from the theme side.
6688
- * @param {boolean} [top] Comment top display.
6689
6930
  * @param {number} [size] Size of one page. Zero indicates no limit.
6931
+ * @param {number} [page] The page number. Zero indicates no page.
6690
6932
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6691
6933
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6692
- * @param {number} [page] The page number. Zero indicates no page.
6693
6934
  * @param {*} [options] Override http request option.
6694
6935
  * @throws {RequiredError}
6695
6936
  */
6696
- 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>;
6937
+ 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>;
6697
6938
  };
6698
6939
  /**
6699
6940
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -6739,6 +6980,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6739
6980
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6740
6981
  */
6741
6982
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
6983
+ /**
6984
+ * Comments filtered by keyword.
6985
+ * @type {string}
6986
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6987
+ */
6988
+ readonly keyword?: string;
6989
+ /**
6990
+ * The comment is hidden from the theme side.
6991
+ * @type {boolean}
6992
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6993
+ */
6994
+ readonly hidden?: boolean;
6995
+ /**
6996
+ * Comment top display.
6997
+ * @type {boolean}
6998
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6999
+ */
7000
+ readonly top?: boolean;
6742
7001
  /**
6743
7002
  * ascending order If it is true; otherwise, it is in descending order.
6744
7003
  * @type {boolean}
@@ -6782,29 +7041,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6782
7041
  */
6783
7042
  readonly subjectName?: string;
6784
7043
  /**
6785
- * Comments filtered by keyword.
6786
- * @type {string}
6787
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6788
- */
6789
- readonly keyword?: string;
6790
- /**
6791
- * The comment is hidden from the theme side.
6792
- * @type {boolean}
6793
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6794
- */
6795
- readonly hidden?: boolean;
6796
- /**
6797
- * Comment top display.
6798
- * @type {boolean}
7044
+ * Size of one page. Zero indicates no limit.
7045
+ * @type {number}
6799
7046
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6800
7047
  */
6801
- readonly top?: boolean;
7048
+ readonly size?: number;
6802
7049
  /**
6803
- * Size of one page. Zero indicates no limit.
7050
+ * The page number. Zero indicates no page.
6804
7051
  * @type {number}
6805
7052
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6806
7053
  */
6807
- readonly size?: number;
7054
+ readonly page?: number;
6808
7055
  /**
6809
7056
  * Label selector for filtering.
6810
7057
  * @type {Array<string>}
@@ -6817,12 +7064,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6817
7064
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6818
7065
  */
6819
7066
  readonly fieldSelector?: Array<string>;
6820
- /**
6821
- * The page number. Zero indicates no page.
6822
- * @type {number}
6823
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6824
- */
6825
- readonly page?: number;
6826
7067
  }
6827
7068
  /**
6828
7069
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -7085,16 +7326,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7085
7326
  /**
7086
7327
  * List plugins using query criteria and sort params
7087
7328
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7088
- * @param {string} [keyword] Keyword of plugin name or description
7089
7329
  * @param {boolean} [enabled] Whether the plugin is enabled
7330
+ * @param {string} [keyword] Keyword of plugin name or description
7090
7331
  * @param {number} [size] Size of one page. Zero indicates no limit.
7332
+ * @param {number} [page] The page number. Zero indicates no page.
7091
7333
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7092
7334
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7093
- * @param {number} [page] The page number. Zero indicates no page.
7094
7335
  * @param {*} [options] Override http request option.
7095
7336
  * @throws {RequiredError}
7096
7337
  */
7097
- listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7338
+ listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7098
7339
  };
7099
7340
  /**
7100
7341
  * ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
@@ -7111,16 +7352,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7111
7352
  /**
7112
7353
  * List plugins using query criteria and sort params
7113
7354
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7114
- * @param {string} [keyword] Keyword of plugin name or description
7115
7355
  * @param {boolean} [enabled] Whether the plugin is enabled
7356
+ * @param {string} [keyword] Keyword of plugin name or description
7116
7357
  * @param {number} [size] Size of one page. Zero indicates no limit.
7358
+ * @param {number} [page] The page number. Zero indicates no page.
7117
7359
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7118
7360
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7119
- * @param {number} [page] The page number. Zero indicates no page.
7120
7361
  * @param {*} [options] Override http request option.
7121
7362
  * @throws {RequiredError}
7122
7363
  */
7123
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7364
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7124
7365
  };
7125
7366
  /**
7126
7367
  * ApiConsoleHaloRunV1alpha1PluginApi - factory interface
@@ -7137,16 +7378,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7137
7378
  /**
7138
7379
  * List plugins using query criteria and sort params
7139
7380
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7140
- * @param {string} [keyword] Keyword of plugin name or description
7141
7381
  * @param {boolean} [enabled] Whether the plugin is enabled
7382
+ * @param {string} [keyword] Keyword of plugin name or description
7142
7383
  * @param {number} [size] Size of one page. Zero indicates no limit.
7384
+ * @param {number} [page] The page number. Zero indicates no page.
7143
7385
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7144
7386
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7145
- * @param {number} [page] The page number. Zero indicates no page.
7146
7387
  * @param {*} [options] Override http request option.
7147
7388
  * @throws {RequiredError}
7148
7389
  */
7149
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
7390
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7150
7391
  };
7151
7392
  /**
7152
7393
  * Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
@@ -7173,6 +7414,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7173
7414
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7174
7415
  */
7175
7416
  readonly sort?: Array<string>;
7417
+ /**
7418
+ * Whether the plugin is enabled
7419
+ * @type {boolean}
7420
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7421
+ */
7422
+ readonly enabled?: boolean;
7176
7423
  /**
7177
7424
  * Keyword of plugin name or description
7178
7425
  * @type {string}
@@ -7180,17 +7427,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7180
7427
  */
7181
7428
  readonly keyword?: string;
7182
7429
  /**
7183
- * Whether the plugin is enabled
7184
- * @type {boolean}
7430
+ * Size of one page. Zero indicates no limit.
7431
+ * @type {number}
7185
7432
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7186
7433
  */
7187
- readonly enabled?: boolean;
7434
+ readonly size?: number;
7188
7435
  /**
7189
- * Size of one page. Zero indicates no limit.
7436
+ * The page number. Zero indicates no page.
7190
7437
  * @type {number}
7191
7438
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7192
7439
  */
7193
- readonly size?: number;
7440
+ readonly page?: number;
7194
7441
  /**
7195
7442
  * Label selector for filtering.
7196
7443
  * @type {Array<string>}
@@ -7203,12 +7450,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7203
7450
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7204
7451
  */
7205
7452
  readonly fieldSelector?: Array<string>;
7206
- /**
7207
- * The page number. Zero indicates no page.
7208
- * @type {number}
7209
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7210
- */
7211
- readonly page?: number;
7212
7453
  }
7213
7454
  /**
7214
7455
  * ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
@@ -7250,21 +7491,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
7250
7491
  /**
7251
7492
  * List posts.
7252
7493
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7494
+ * @param {Array<string>} [tag]
7495
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7496
+ * @param {string} [keyword] Posts filtered by keyword.
7497
+ * @param {Array<string>} [contributor]
7253
7498
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7254
7499
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7255
7500
  * @param {Array<string>} [category]
7256
- * @param {Array<string>} [contributor]
7257
- * @param {string} [keyword] Posts filtered by keyword.
7258
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7259
- * @param {Array<string>} [tag]
7260
7501
  * @param {number} [size] Size of one page. Zero indicates no limit.
7502
+ * @param {number} [page] The page number. Zero indicates no page.
7261
7503
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7262
7504
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7263
- * @param {number} [page] The page number. Zero indicates no page.
7264
7505
  * @param {*} [options] Override http request option.
7265
7506
  * @throws {RequiredError}
7266
7507
  */
7267
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7508
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7268
7509
  /**
7269
7510
  * Publish a post.
7270
7511
  * @param {string} name
@@ -7296,21 +7537,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
7296
7537
  /**
7297
7538
  * List posts.
7298
7539
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7540
+ * @param {Array<string>} [tag]
7541
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7542
+ * @param {string} [keyword] Posts filtered by keyword.
7543
+ * @param {Array<string>} [contributor]
7299
7544
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7300
7545
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7301
7546
  * @param {Array<string>} [category]
7302
- * @param {Array<string>} [contributor]
7303
- * @param {string} [keyword] Posts filtered by keyword.
7304
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7305
- * @param {Array<string>} [tag]
7306
7547
  * @param {number} [size] Size of one page. Zero indicates no limit.
7548
+ * @param {number} [page] The page number. Zero indicates no page.
7307
7549
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7308
7550
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7309
- * @param {number} [page] The page number. Zero indicates no page.
7310
7551
  * @param {*} [options] Override http request option.
7311
7552
  * @throws {RequiredError}
7312
7553
  */
7313
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
7554
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
7314
7555
  /**
7315
7556
  * Publish a post.
7316
7557
  * @param {string} name
@@ -7342,21 +7583,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
7342
7583
  /**
7343
7584
  * List posts.
7344
7585
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7586
+ * @param {Array<string>} [tag]
7587
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7588
+ * @param {string} [keyword] Posts filtered by keyword.
7589
+ * @param {Array<string>} [contributor]
7345
7590
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7346
7591
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7347
7592
  * @param {Array<string>} [category]
7348
- * @param {Array<string>} [contributor]
7349
- * @param {string} [keyword] Posts filtered by keyword.
7350
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7351
- * @param {Array<string>} [tag]
7352
7593
  * @param {number} [size] Size of one page. Zero indicates no limit.
7594
+ * @param {number} [page] The page number. Zero indicates no page.
7353
7595
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7354
7596
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7355
- * @param {number} [page] The page number. Zero indicates no page.
7356
7597
  * @param {*} [options] Override http request option.
7357
7598
  * @throws {RequiredError}
7358
7599
  */
7359
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
7600
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
7360
7601
  /**
7361
7602
  * Publish a post.
7362
7603
  * @param {string} name
@@ -7399,23 +7640,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7399
7640
  */
7400
7641
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7401
7642
  /**
7402
- * ascending order If it is true; otherwise, it is in descending order.
7403
- * @type {boolean}
7643
+ *
7644
+ * @type {Array<string>}
7404
7645
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7405
7646
  */
7406
- readonly sortOrder?: boolean;
7647
+ readonly tag?: Array<string>;
7407
7648
  /**
7408
7649
  *
7409
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7650
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7410
7651
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7411
7652
  */
7412
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7653
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7413
7654
  /**
7414
- *
7415
- * @type {Array<string>}
7655
+ * Posts filtered by keyword.
7656
+ * @type {string}
7416
7657
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7417
7658
  */
7418
- readonly category?: Array<string>;
7659
+ readonly keyword?: string;
7419
7660
  /**
7420
7661
  *
7421
7662
  * @type {Array<string>}
@@ -7423,29 +7664,35 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7423
7664
  */
7424
7665
  readonly contributor?: Array<string>;
7425
7666
  /**
7426
- * Posts filtered by keyword.
7427
- * @type {string}
7667
+ * ascending order If it is true; otherwise, it is in descending order.
7668
+ * @type {boolean}
7428
7669
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7429
7670
  */
7430
- readonly keyword?: string;
7671
+ readonly sortOrder?: boolean;
7431
7672
  /**
7432
7673
  *
7433
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7674
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7434
7675
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7435
7676
  */
7436
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7677
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7437
7678
  /**
7438
7679
  *
7439
7680
  * @type {Array<string>}
7440
7681
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7441
7682
  */
7442
- readonly tag?: Array<string>;
7683
+ readonly category?: Array<string>;
7443
7684
  /**
7444
7685
  * Size of one page. Zero indicates no limit.
7445
7686
  * @type {number}
7446
7687
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7447
7688
  */
7448
7689
  readonly size?: number;
7690
+ /**
7691
+ * The page number. Zero indicates no page.
7692
+ * @type {number}
7693
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7694
+ */
7695
+ readonly page?: number;
7449
7696
  /**
7450
7697
  * Label selector for filtering.
7451
7698
  * @type {Array<string>}
@@ -7458,12 +7705,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
7458
7705
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7459
7706
  */
7460
7707
  readonly fieldSelector?: Array<string>;
7461
- /**
7462
- * The page number. Zero indicates no page.
7463
- * @type {number}
7464
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
7465
- */
7466
- readonly page?: number;
7467
7708
  }
7468
7709
  /**
7469
7710
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -7547,13 +7788,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
7547
7788
  * List replies.
7548
7789
  * @param {string} [commentName] Replies filtered by commentName.
7549
7790
  * @param {number} [size] Size of one page. Zero indicates no limit.
7791
+ * @param {number} [page] The page number. Zero indicates no page.
7550
7792
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7551
7793
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7552
- * @param {number} [page] The page number. Zero indicates no page.
7553
7794
  * @param {*} [options] Override http request option.
7554
7795
  * @throws {RequiredError}
7555
7796
  */
7556
- listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7797
+ listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7557
7798
  };
7558
7799
  /**
7559
7800
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -7564,13 +7805,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
7564
7805
  * List replies.
7565
7806
  * @param {string} [commentName] Replies filtered by commentName.
7566
7807
  * @param {number} [size] Size of one page. Zero indicates no limit.
7808
+ * @param {number} [page] The page number. Zero indicates no page.
7567
7809
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7568
7810
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7569
- * @param {number} [page] The page number. Zero indicates no page.
7570
7811
  * @param {*} [options] Override http request option.
7571
7812
  * @throws {RequiredError}
7572
7813
  */
7573
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7814
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
7574
7815
  };
7575
7816
  /**
7576
7817
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -7581,13 +7822,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
7581
7822
  * List replies.
7582
7823
  * @param {string} [commentName] Replies filtered by commentName.
7583
7824
  * @param {number} [size] Size of one page. Zero indicates no limit.
7825
+ * @param {number} [page] The page number. Zero indicates no page.
7584
7826
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7585
7827
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7586
- * @param {number} [page] The page number. Zero indicates no page.
7587
7828
  * @param {*} [options] Override http request option.
7588
7829
  * @throws {RequiredError}
7589
7830
  */
7590
- listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
7831
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
7591
7832
  };
7592
7833
  /**
7593
7834
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -7607,6 +7848,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7607
7848
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7608
7849
  */
7609
7850
  readonly size?: number;
7851
+ /**
7852
+ * The page number. Zero indicates no page.
7853
+ * @type {number}
7854
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7855
+ */
7856
+ readonly page?: number;
7610
7857
  /**
7611
7858
  * Label selector for filtering.
7612
7859
  * @type {Array<string>}
@@ -7619,12 +7866,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
7619
7866
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7620
7867
  */
7621
7868
  readonly fieldSelector?: Array<string>;
7622
- /**
7623
- * The page number. Zero indicates no page.
7624
- * @type {number}
7625
- * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
7626
- */
7627
- readonly page?: number;
7628
7869
  }
7629
7870
  /**
7630
7871
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -7658,19 +7899,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
7658
7899
  /**
7659
7900
  * List single pages.
7660
7901
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7902
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7903
+ * @param {string} [keyword] SinglePages filtered by keyword.
7904
+ * @param {Array<string>} [contributor]
7661
7905
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7662
7906
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7663
- * @param {Array<string>} [contributor]
7664
- * @param {string} [keyword] SinglePages filtered by keyword.
7665
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7666
7907
  * @param {number} [size] Size of one page. Zero indicates no limit.
7908
+ * @param {number} [page] The page number. Zero indicates no page.
7667
7909
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7668
7910
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7669
- * @param {number} [page] The page number. Zero indicates no page.
7670
7911
  * @param {*} [options] Override http request option.
7671
7912
  * @throws {RequiredError}
7672
7913
  */
7673
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7914
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7674
7915
  /**
7675
7916
  * Publish a single page.
7676
7917
  * @param {string} name
@@ -7702,19 +7943,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
7702
7943
  /**
7703
7944
  * List single pages.
7704
7945
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7946
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7947
+ * @param {string} [keyword] SinglePages filtered by keyword.
7948
+ * @param {Array<string>} [contributor]
7705
7949
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7706
7950
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7707
- * @param {Array<string>} [contributor]
7708
- * @param {string} [keyword] SinglePages filtered by keyword.
7709
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7710
7951
  * @param {number} [size] Size of one page. Zero indicates no limit.
7952
+ * @param {number} [page] The page number. Zero indicates no page.
7711
7953
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7712
7954
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7713
- * @param {number} [page] The page number. Zero indicates no page.
7714
7955
  * @param {*} [options] Override http request option.
7715
7956
  * @throws {RequiredError}
7716
7957
  */
7717
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: 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<ListedSinglePageList>>;
7958
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
7718
7959
  /**
7719
7960
  * Publish a single page.
7720
7961
  * @param {string} name
@@ -7746,19 +7987,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
7746
7987
  /**
7747
7988
  * List single pages.
7748
7989
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
7990
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7991
+ * @param {string} [keyword] SinglePages filtered by keyword.
7992
+ * @param {Array<string>} [contributor]
7749
7993
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7750
7994
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
7751
- * @param {Array<string>} [contributor]
7752
- * @param {string} [keyword] SinglePages filtered by keyword.
7753
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7754
7995
  * @param {number} [size] Size of one page. Zero indicates no limit.
7996
+ * @param {number} [page] The page number. Zero indicates no page.
7755
7997
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7756
7998
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7757
- * @param {number} [page] The page number. Zero indicates no page.
7758
7999
  * @param {*} [options] Override http request option.
7759
8000
  * @throws {RequiredError}
7760
8001
  */
7761
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
8002
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
7762
8003
  /**
7763
8004
  * Publish a single page.
7764
8005
  * @param {string} name
@@ -7801,17 +8042,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7801
8042
  */
7802
8043
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
7803
8044
  /**
7804
- * ascending order If it is true; otherwise, it is in descending order.
7805
- * @type {boolean}
8045
+ *
8046
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
7806
8047
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7807
8048
  */
7808
- readonly sortOrder?: boolean;
8049
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
7809
8050
  /**
7810
- *
7811
- * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
8051
+ * SinglePages filtered by keyword.
8052
+ * @type {string}
7812
8053
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7813
8054
  */
7814
- readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
8055
+ readonly keyword?: string;
7815
8056
  /**
7816
8057
  *
7817
8058
  * @type {Array<string>}
@@ -7819,23 +8060,29 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7819
8060
  */
7820
8061
  readonly contributor?: Array<string>;
7821
8062
  /**
7822
- * SinglePages filtered by keyword.
7823
- * @type {string}
8063
+ * ascending order If it is true; otherwise, it is in descending order.
8064
+ * @type {boolean}
7824
8065
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7825
8066
  */
7826
- readonly keyword?: string;
8067
+ readonly sortOrder?: boolean;
7827
8068
  /**
7828
8069
  *
7829
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8070
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
7830
8071
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7831
8072
  */
7832
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8073
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
7833
8074
  /**
7834
8075
  * Size of one page. Zero indicates no limit.
7835
8076
  * @type {number}
7836
8077
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7837
8078
  */
7838
8079
  readonly size?: number;
8080
+ /**
8081
+ * The page number. Zero indicates no page.
8082
+ * @type {number}
8083
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8084
+ */
8085
+ readonly page?: number;
7839
8086
  /**
7840
8087
  * Label selector for filtering.
7841
8088
  * @type {Array<string>}
@@ -7848,12 +8095,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7848
8095
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7849
8096
  */
7850
8097
  readonly fieldSelector?: Array<string>;
7851
- /**
7852
- * The page number. Zero indicates no page.
7853
- * @type {number}
7854
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7855
- */
7856
- readonly page?: number;
7857
8098
  }
7858
8099
  /**
7859
8100
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -7992,6 +8233,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
7992
8233
  * @throws {RequiredError}
7993
8234
  */
7994
8235
  installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8236
+ /**
8237
+ * List themes.
8238
+ * @param {boolean} uninstalled
8239
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8240
+ * @param {number} [page] The page number. Zero indicates no page.
8241
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8242
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8243
+ * @param {*} [options] Override http request option.
8244
+ * @throws {RequiredError}
8245
+ */
8246
+ listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7995
8247
  /**
7996
8248
  * Reload theme setting.
7997
8249
  * @param {string} name
@@ -7999,6 +8251,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
7999
8251
  * @throws {RequiredError}
8000
8252
  */
8001
8253
  reloadThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8254
+ /**
8255
+ * Upgrade theme
8256
+ * @param {string} name
8257
+ * @param {any} file
8258
+ * @param {*} [options] Override http request option.
8259
+ * @throws {RequiredError}
8260
+ */
8261
+ upgradeTheme: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8002
8262
  };
8003
8263
  /**
8004
8264
  * ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
@@ -8012,6 +8272,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8012
8272
  * @throws {RequiredError}
8013
8273
  */
8014
8274
  installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
8275
+ /**
8276
+ * List themes.
8277
+ * @param {boolean} uninstalled
8278
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8279
+ * @param {number} [page] The page number. Zero indicates no page.
8280
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8281
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8282
+ * @param {*} [options] Override http request option.
8283
+ * @throws {RequiredError}
8284
+ */
8285
+ listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
8015
8286
  /**
8016
8287
  * Reload theme setting.
8017
8288
  * @param {string} name
@@ -8019,6 +8290,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8019
8290
  * @throws {RequiredError}
8020
8291
  */
8021
8292
  reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
8293
+ /**
8294
+ * Upgrade theme
8295
+ * @param {string} name
8296
+ * @param {any} file
8297
+ * @param {*} [options] Override http request option.
8298
+ * @throws {RequiredError}
8299
+ */
8300
+ upgradeTheme(name: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8022
8301
  };
8023
8302
  /**
8024
8303
  * ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
@@ -8032,6 +8311,17 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
8032
8311
  * @throws {RequiredError}
8033
8312
  */
8034
8313
  installTheme(file: any, options?: any): AxiosPromise<Theme>;
8314
+ /**
8315
+ * List themes.
8316
+ * @param {boolean} uninstalled
8317
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8318
+ * @param {number} [page] The page number. Zero indicates no page.
8319
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
8320
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
8321
+ * @param {*} [options] Override http request option.
8322
+ * @throws {RequiredError}
8323
+ */
8324
+ listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
8035
8325
  /**
8036
8326
  * Reload theme setting.
8037
8327
  * @param {string} name
@@ -8039,6 +8329,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
8039
8329
  * @throws {RequiredError}
8040
8330
  */
8041
8331
  reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
8332
+ /**
8333
+ * Upgrade theme
8334
+ * @param {string} name
8335
+ * @param {any} file
8336
+ * @param {*} [options] Override http request option.
8337
+ * @throws {RequiredError}
8338
+ */
8339
+ upgradeTheme(name: string, file: any, options?: any): AxiosPromise<void>;
8042
8340
  };
8043
8341
  /**
8044
8342
  * Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
@@ -8053,6 +8351,43 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
8053
8351
  */
8054
8352
  readonly file: any;
8055
8353
  }
8354
+ /**
8355
+ * Request parameters for listThemes operation in ApiConsoleHaloRunV1alpha1ThemeApi.
8356
+ * @export
8357
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest
8358
+ */
8359
+ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
8360
+ /**
8361
+ *
8362
+ * @type {boolean}
8363
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8364
+ */
8365
+ readonly uninstalled: boolean;
8366
+ /**
8367
+ * Size of one page. Zero indicates no limit.
8368
+ * @type {number}
8369
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8370
+ */
8371
+ readonly size?: number;
8372
+ /**
8373
+ * The page number. Zero indicates no page.
8374
+ * @type {number}
8375
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8376
+ */
8377
+ readonly page?: number;
8378
+ /**
8379
+ * Label selector for filtering.
8380
+ * @type {Array<string>}
8381
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8382
+ */
8383
+ readonly labelSelector?: Array<string>;
8384
+ /**
8385
+ * Field selector for filtering.
8386
+ * @type {Array<string>}
8387
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
8388
+ */
8389
+ readonly fieldSelector?: Array<string>;
8390
+ }
8056
8391
  /**
8057
8392
  * Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
8058
8393
  * @export
@@ -8066,6 +8401,25 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest {
8066
8401
  */
8067
8402
  readonly name: string;
8068
8403
  }
8404
+ /**
8405
+ * Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
8406
+ * @export
8407
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest
8408
+ */
8409
+ interface ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest {
8410
+ /**
8411
+ *
8412
+ * @type {string}
8413
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
8414
+ */
8415
+ readonly name: string;
8416
+ /**
8417
+ *
8418
+ * @type {any}
8419
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiUpgradeTheme
8420
+ */
8421
+ readonly file: any;
8422
+ }
8069
8423
  /**
8070
8424
  * ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
8071
8425
  * @export
@@ -8081,6 +8435,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
8081
8435
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
8082
8436
  */
8083
8437
  installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
8438
+ /**
8439
+ * List themes.
8440
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest} requestParameters Request parameters.
8441
+ * @param {*} [options] Override http request option.
8442
+ * @throws {RequiredError}
8443
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
8444
+ */
8445
+ listThemes(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ThemeList, any>>;
8084
8446
  /**
8085
8447
  * Reload theme setting.
8086
8448
  * @param {ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest} requestParameters Request parameters.
@@ -8089,6 +8451,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
8089
8451
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
8090
8452
  */
8091
8453
  reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
8454
+ /**
8455
+ * Upgrade theme
8456
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
8457
+ * @param {*} [options] Override http request option.
8458
+ * @throws {RequiredError}
8459
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
8460
+ */
8461
+ upgradeTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
8092
8462
  }
8093
8463
 
8094
8464
  /**
@@ -8608,6 +8978,20 @@ declare const ApiHaloRunV1alpha1TrackerApiAxiosParamCreator: (configuration?: Co
8608
8978
  * @throws {RequiredError}
8609
8979
  */
8610
8980
  count: (counterRequest: CounterRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8981
+ /**
8982
+ * Downvote an extension resource.
8983
+ * @param {VoteRequest} voteRequest
8984
+ * @param {*} [options] Override http request option.
8985
+ * @throws {RequiredError}
8986
+ */
8987
+ downvote: (voteRequest: VoteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8988
+ /**
8989
+ * Upvote an extension resource.
8990
+ * @param {VoteRequest} voteRequest
8991
+ * @param {*} [options] Override http request option.
8992
+ * @throws {RequiredError}
8993
+ */
8994
+ upvote: (voteRequest: VoteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8611
8995
  };
8612
8996
  /**
8613
8997
  * ApiHaloRunV1alpha1TrackerApi - functional programming interface
@@ -8621,6 +9005,20 @@ declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) =>
8621
9005
  * @throws {RequiredError}
8622
9006
  */
8623
9007
  count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
9008
+ /**
9009
+ * Downvote an extension resource.
9010
+ * @param {VoteRequest} voteRequest
9011
+ * @param {*} [options] Override http request option.
9012
+ * @throws {RequiredError}
9013
+ */
9014
+ downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
9015
+ /**
9016
+ * Upvote an extension resource.
9017
+ * @param {VoteRequest} voteRequest
9018
+ * @param {*} [options] Override http request option.
9019
+ * @throws {RequiredError}
9020
+ */
9021
+ upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
8624
9022
  };
8625
9023
  /**
8626
9024
  * ApiHaloRunV1alpha1TrackerApi - factory interface
@@ -8634,6 +9032,20 @@ declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuratio
8634
9032
  * @throws {RequiredError}
8635
9033
  */
8636
9034
  count(counterRequest: CounterRequest, options?: any): AxiosPromise<number>;
9035
+ /**
9036
+ * Downvote an extension resource.
9037
+ * @param {VoteRequest} voteRequest
9038
+ * @param {*} [options] Override http request option.
9039
+ * @throws {RequiredError}
9040
+ */
9041
+ downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
9042
+ /**
9043
+ * Upvote an extension resource.
9044
+ * @param {VoteRequest} voteRequest
9045
+ * @param {*} [options] Override http request option.
9046
+ * @throws {RequiredError}
9047
+ */
9048
+ upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
8637
9049
  };
8638
9050
  /**
8639
9051
  * Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
@@ -8648,6 +9060,32 @@ interface ApiHaloRunV1alpha1TrackerApiCountRequest {
8648
9060
  */
8649
9061
  readonly counterRequest: CounterRequest;
8650
9062
  }
9063
+ /**
9064
+ * Request parameters for downvote operation in ApiHaloRunV1alpha1TrackerApi.
9065
+ * @export
9066
+ * @interface ApiHaloRunV1alpha1TrackerApiDownvoteRequest
9067
+ */
9068
+ interface ApiHaloRunV1alpha1TrackerApiDownvoteRequest {
9069
+ /**
9070
+ *
9071
+ * @type {VoteRequest}
9072
+ * @memberof ApiHaloRunV1alpha1TrackerApiDownvote
9073
+ */
9074
+ readonly voteRequest: VoteRequest;
9075
+ }
9076
+ /**
9077
+ * Request parameters for upvote operation in ApiHaloRunV1alpha1TrackerApi.
9078
+ * @export
9079
+ * @interface ApiHaloRunV1alpha1TrackerApiUpvoteRequest
9080
+ */
9081
+ interface ApiHaloRunV1alpha1TrackerApiUpvoteRequest {
9082
+ /**
9083
+ *
9084
+ * @type {VoteRequest}
9085
+ * @memberof ApiHaloRunV1alpha1TrackerApiUpvote
9086
+ */
9087
+ readonly voteRequest: VoteRequest;
9088
+ }
8651
9089
  /**
8652
9090
  * ApiHaloRunV1alpha1TrackerApi - object-oriented interface
8653
9091
  * @export
@@ -8663,6 +9101,22 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
8663
9101
  * @memberof ApiHaloRunV1alpha1TrackerApi
8664
9102
  */
8665
9103
  count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
9104
+ /**
9105
+ * Downvote an extension resource.
9106
+ * @param {ApiHaloRunV1alpha1TrackerApiDownvoteRequest} requestParameters Request parameters.
9107
+ * @param {*} [options] Override http request option.
9108
+ * @throws {RequiredError}
9109
+ * @memberof ApiHaloRunV1alpha1TrackerApi
9110
+ */
9111
+ downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
9112
+ /**
9113
+ * Upvote an extension resource.
9114
+ * @param {ApiHaloRunV1alpha1TrackerApiUpvoteRequest} requestParameters Request parameters.
9115
+ * @param {*} [options] Override http request option.
9116
+ * @throws {RequiredError}
9117
+ * @memberof ApiHaloRunV1alpha1TrackerApi
9118
+ */
9119
+ upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
8666
9120
  }
8667
9121
 
8668
9122
  /**
@@ -11977,20 +12431,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
11977
12431
  * @throws {RequiredError}
11978
12432
  */
11979
12433
  liststorageHaloRunV1alpha1Attachment: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11980
- /**
11981
- *
11982
- * @param {string} [policy] Name of policy
11983
- * @param {string} [displayName] Display name of attachment
11984
- * @param {string} [group] Name of group
11985
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
11986
- * @param {number} [size] Size of one page. Zero indicates no limit.
11987
- * @param {Array<string>} [labelSelector] Label selector for filtering.
11988
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
11989
- * @param {number} [page] The page number. Zero indicates no page.
11990
- * @param {*} [options] Override http request option.
11991
- * @throws {RequiredError}
11992
- */
11993
- searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11994
12434
  /**
11995
12435
  * Update storage.halo.run/v1alpha1/Attachment
11996
12436
  * @param {string} name Name of attachment
@@ -11999,15 +12439,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
11999
12439
  * @throws {RequiredError}
12000
12440
  */
12001
12441
  updatestorageHaloRunV1alpha1Attachment: (name: string, attachment?: Attachment, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12002
- /**
12003
- *
12004
- * @param {any} file
12005
- * @param {string} policyName Storage policy name
12006
- * @param {string} [groupName] The name of the group to which the attachment belongs
12007
- * @param {*} [options] Override http request option.
12008
- * @throws {RequiredError}
12009
- */
12010
- uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12011
12442
  };
12012
12443
  /**
12013
12444
  * StorageHaloRunV1alpha1AttachmentApi - functional programming interface
@@ -12045,20 +12476,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
12045
12476
  * @throws {RequiredError}
12046
12477
  */
12047
12478
  liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
12048
- /**
12049
- *
12050
- * @param {string} [policy] Name of policy
12051
- * @param {string} [displayName] Display name of attachment
12052
- * @param {string} [group] Name of group
12053
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
12054
- * @param {number} [size] Size of one page. Zero indicates no limit.
12055
- * @param {Array<string>} [labelSelector] Label selector for filtering.
12056
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
12057
- * @param {number} [page] The page number. Zero indicates no page.
12058
- * @param {*} [options] Override http request option.
12059
- * @throws {RequiredError}
12060
- */
12061
- 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>>;
12062
12479
  /**
12063
12480
  * Update storage.halo.run/v1alpha1/Attachment
12064
12481
  * @param {string} name Name of attachment
@@ -12067,15 +12484,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
12067
12484
  * @throws {RequiredError}
12068
12485
  */
12069
12486
  updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
12070
- /**
12071
- *
12072
- * @param {any} file
12073
- * @param {string} policyName Storage policy name
12074
- * @param {string} [groupName] The name of the group to which the attachment belongs
12075
- * @param {*} [options] Override http request option.
12076
- * @throws {RequiredError}
12077
- */
12078
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
12079
12487
  };
12080
12488
  /**
12081
12489
  * StorageHaloRunV1alpha1AttachmentApi - factory interface
@@ -12113,20 +12521,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
12113
12521
  * @throws {RequiredError}
12114
12522
  */
12115
12523
  liststorageHaloRunV1alpha1Attachment(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
12116
- /**
12117
- *
12118
- * @param {string} [policy] Name of policy
12119
- * @param {string} [displayName] Display name of attachment
12120
- * @param {string} [group] Name of group
12121
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
12122
- * @param {number} [size] Size of one page. Zero indicates no limit.
12123
- * @param {Array<string>} [labelSelector] Label selector for filtering.
12124
- * @param {Array<string>} [fieldSelector] Field selector for filtering.
12125
- * @param {number} [page] The page number. Zero indicates no page.
12126
- * @param {*} [options] Override http request option.
12127
- * @throws {RequiredError}
12128
- */
12129
- searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
12130
12524
  /**
12131
12525
  * Update storage.halo.run/v1alpha1/Attachment
12132
12526
  * @param {string} name Name of attachment
@@ -12135,15 +12529,6 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
12135
12529
  * @throws {RequiredError}
12136
12530
  */
12137
12531
  updatestorageHaloRunV1alpha1Attachment(name: string, attachment?: Attachment, options?: any): AxiosPromise<Attachment>;
12138
- /**
12139
- *
12140
- * @param {any} file
12141
- * @param {string} policyName Storage policy name
12142
- * @param {string} [groupName] The name of the group to which the attachment belongs
12143
- * @param {*} [options] Override http request option.
12144
- * @throws {RequiredError}
12145
- */
12146
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
12147
12532
  };
12148
12533
  /**
12149
12534
  * Request parameters for createstorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -12215,61 +12600,6 @@ interface StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1Attachmen
12215
12600
  */
12216
12601
  readonly fieldSelector?: Array<string>;
12217
12602
  }
12218
- /**
12219
- * Request parameters for searchAttachments operation in StorageHaloRunV1alpha1AttachmentApi.
12220
- * @export
12221
- * @interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest
12222
- */
12223
- interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
12224
- /**
12225
- * Name of policy
12226
- * @type {string}
12227
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12228
- */
12229
- readonly policy?: string;
12230
- /**
12231
- * Display name of attachment
12232
- * @type {string}
12233
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12234
- */
12235
- readonly displayName?: string;
12236
- /**
12237
- * Name of group
12238
- * @type {string}
12239
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12240
- */
12241
- readonly group?: string;
12242
- /**
12243
- * Name of user who uploaded the attachment
12244
- * @type {string}
12245
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12246
- */
12247
- readonly uploadedBy?: string;
12248
- /**
12249
- * Size of one page. Zero indicates no limit.
12250
- * @type {number}
12251
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12252
- */
12253
- readonly size?: number;
12254
- /**
12255
- * Label selector for filtering.
12256
- * @type {Array<string>}
12257
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12258
- */
12259
- readonly labelSelector?: Array<string>;
12260
- /**
12261
- * Field selector for filtering.
12262
- * @type {Array<string>}
12263
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12264
- */
12265
- readonly fieldSelector?: Array<string>;
12266
- /**
12267
- * The page number. Zero indicates no page.
12268
- * @type {number}
12269
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
12270
- */
12271
- readonly page?: number;
12272
- }
12273
12603
  /**
12274
12604
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
12275
12605
  * @export
@@ -12289,31 +12619,6 @@ interface StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1Attachm
12289
12619
  */
12290
12620
  readonly attachment?: Attachment;
12291
12621
  }
12292
- /**
12293
- * Request parameters for uploadAttachment operation in StorageHaloRunV1alpha1AttachmentApi.
12294
- * @export
12295
- * @interface StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
12296
- */
12297
- interface StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
12298
- /**
12299
- *
12300
- * @type {any}
12301
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
12302
- */
12303
- readonly file: any;
12304
- /**
12305
- * Storage policy name
12306
- * @type {string}
12307
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
12308
- */
12309
- readonly policyName: string;
12310
- /**
12311
- * The name of the group to which the attachment belongs
12312
- * @type {string}
12313
- * @memberof StorageHaloRunV1alpha1AttachmentApiUploadAttachment
12314
- */
12315
- readonly groupName?: string;
12316
- }
12317
12622
  /**
12318
12623
  * StorageHaloRunV1alpha1AttachmentApi - object-oriented interface
12319
12624
  * @export
@@ -12353,14 +12658,6 @@ declare class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
12353
12658
  * @memberof StorageHaloRunV1alpha1AttachmentApi
12354
12659
  */
12355
12660
  liststorageHaloRunV1alpha1Attachment(requestParameters?: StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
12356
- /**
12357
- *
12358
- * @param {StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest} requestParameters Request parameters.
12359
- * @param {*} [options] Override http request option.
12360
- * @throws {RequiredError}
12361
- * @memberof StorageHaloRunV1alpha1AttachmentApi
12362
- */
12363
- searchAttachments(requestParameters?: StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AttachmentList, any>>;
12364
12661
  /**
12365
12662
  * Update storage.halo.run/v1alpha1/Attachment
12366
12663
  * @param {StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest} requestParameters Request parameters.
@@ -12369,14 +12666,6 @@ declare class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
12369
12666
  * @memberof StorageHaloRunV1alpha1AttachmentApi
12370
12667
  */
12371
12668
  updatestorageHaloRunV1alpha1Attachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
12372
- /**
12373
- *
12374
- * @param {StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest} requestParameters Request parameters.
12375
- * @param {*} [options] Override http request option.
12376
- * @throws {RequiredError}
12377
- * @memberof StorageHaloRunV1alpha1AttachmentApi
12378
- */
12379
- uploadAttachment(requestParameters: StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Attachment, any>>;
12380
12669
  }
12381
12670
 
12382
12671
  /**
@@ -15655,4 +15944,4 @@ declare class V1alpha1UserApi extends BaseAPI {
15655
15944
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
15656
15945
  }
15657
15946
 
15658
- export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, 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, Counter, CounterList, CounterRequest, 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, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, 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, Stats, 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 };
15947
+ export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, 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, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, 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, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, 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, VoteRequest };