@halo-dev/api-client 0.0.22 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -534,6 +534,50 @@ interface CategorySpec {
534
534
  * https://openapi-generator.tech
535
535
  * Do not edit the class manually.
536
536
  */
537
+ /**
538
+ *
539
+ * @export
540
+ * @interface CompactPost
541
+ */
542
+ interface CompactPost {
543
+ /**
544
+ *
545
+ * @type {string}
546
+ * @memberof CompactPost
547
+ */
548
+ name?: string;
549
+ /**
550
+ *
551
+ * @type {string}
552
+ * @memberof CompactPost
553
+ */
554
+ visible?: CompactPostVisibleEnum;
555
+ /**
556
+ *
557
+ * @type {boolean}
558
+ * @memberof CompactPost
559
+ */
560
+ published?: boolean;
561
+ }
562
+ declare const CompactPostVisibleEnum: {
563
+ readonly Public: "PUBLIC";
564
+ readonly Internal: "INTERNAL";
565
+ readonly Private: "PRIVATE";
566
+ };
567
+ declare type CompactPostVisibleEnum = typeof CompactPostVisibleEnum[keyof typeof CompactPostVisibleEnum];
568
+
569
+ /**
570
+ * Halo Next API
571
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
572
+ *
573
+ * The version of the OpenAPI document: 2.0.0
574
+ *
575
+ *
576
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
577
+ * https://openapi-generator.tech
578
+ * Do not edit the class manually.
579
+ */
580
+
537
581
  /**
538
582
  *
539
583
  * @export
@@ -548,10 +592,10 @@ interface CategoryStatus {
548
592
  permalink?: string;
549
593
  /**
550
594
  *
551
- * @type {Array<string>}
595
+ * @type {Array<CompactPost>}
552
596
  * @memberof CategoryStatus
553
597
  */
554
- posts?: Array<string>;
598
+ posts?: Array<CompactPost>;
555
599
  }
556
600
 
557
601
  /**
@@ -1506,22 +1550,22 @@ interface Excerpt {
1506
1550
  interface Extension {
1507
1551
  /**
1508
1552
  *
1509
- * @type {string}
1553
+ * @type {Metadata}
1510
1554
  * @memberof Extension
1511
1555
  */
1512
- kind: string;
1556
+ metadata: Metadata;
1513
1557
  /**
1514
1558
  *
1515
- * @type {Metadata}
1559
+ * @type {string}
1516
1560
  * @memberof Extension
1517
1561
  */
1518
- metadata: Metadata;
1562
+ apiVersion: string;
1519
1563
  /**
1520
1564
  *
1521
1565
  * @type {string}
1522
1566
  * @memberof Extension
1523
1567
  */
1524
- apiVersion: string;
1568
+ kind: string;
1525
1569
  }
1526
1570
 
1527
1571
  /**
@@ -2136,6 +2180,12 @@ interface PostStatus {
2136
2180
  * @memberof PostStatus
2137
2181
  */
2138
2182
  inProgress?: boolean;
2183
+ /**
2184
+ *
2185
+ * @type {number}
2186
+ * @memberof PostStatus
2187
+ */
2188
+ commentsCount?: number;
2139
2189
  /**
2140
2190
  *
2141
2191
  * @type {Array<string>}
@@ -2248,6 +2298,7 @@ interface TagSpec {
2248
2298
  * https://openapi-generator.tech
2249
2299
  * Do not edit the class manually.
2250
2300
  */
2301
+
2251
2302
  /**
2252
2303
  *
2253
2304
  * @export
@@ -2262,10 +2313,10 @@ interface TagStatus {
2262
2313
  permalink?: string;
2263
2314
  /**
2264
2315
  *
2265
- * @type {Array<string>}
2316
+ * @type {Array<CompactPost>}
2266
2317
  * @memberof TagStatus
2267
2318
  */
2268
- posts?: Array<string>;
2319
+ posts?: Array<CompactPost>;
2269
2320
  }
2270
2321
 
2271
2322
  /**
@@ -2850,6 +2901,12 @@ interface SinglePageStatus {
2850
2901
  * @memberof SinglePageStatus
2851
2902
  */
2852
2903
  inProgress?: boolean;
2904
+ /**
2905
+ *
2906
+ * @type {number}
2907
+ * @memberof SinglePageStatus
2908
+ */
2909
+ commentsCount?: number;
2853
2910
  /**
2854
2911
  *
2855
2912
  * @type {Array<string>}
@@ -5839,10 +5896,10 @@ interface UserPermission {
5839
5896
  }
5840
5897
 
5841
5898
  /**
5842
- * ApiHaloRunV1alpha1CommentApi - axios parameter creator
5899
+ * ApiConsoleHaloRunV1alpha1CommentApi - axios parameter creator
5843
5900
  * @export
5844
5901
  */
5845
- declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
5902
+ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
5846
5903
  /**
5847
5904
  * Create a comment.
5848
5905
  * @param {CommentRequest} commentRequest
@@ -5861,9 +5918,6 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
5861
5918
  /**
5862
5919
  * List comments.
5863
5920
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5864
- * @param {string} [keyword] Comments filtered by keyword.
5865
- * @param {boolean} [hidden] The comment is hidden from the theme side.
5866
- * @param {boolean} [top] Comment top display.
5867
5921
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5868
5922
  * @param {boolean} [approved] Comments approved.
5869
5923
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -5871,20 +5925,23 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
5871
5925
  * @param {string} [ownerName] Commenter name.
5872
5926
  * @param {string} [subjectKind] Comment subject kind.
5873
5927
  * @param {string} [subjectName] Comment subject name.
5928
+ * @param {string} [keyword] Comments filtered by keyword.
5929
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
5930
+ * @param {boolean} [top] Comment top display.
5874
5931
  * @param {number} [size] Size of one page. Zero indicates no limit.
5875
- * @param {number} [page] The page number. Zero indicates no page.
5876
5932
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5877
5933
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5934
+ * @param {number} [page] The page number. Zero indicates no page.
5878
5935
  * @param {*} [options] Override http request option.
5879
5936
  * @throws {RequiredError}
5880
5937
  */
5881
- 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>;
5938
+ 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>;
5882
5939
  };
5883
5940
  /**
5884
- * ApiHaloRunV1alpha1CommentApi - functional programming interface
5941
+ * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
5885
5942
  * @export
5886
5943
  */
5887
- declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
5944
+ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
5888
5945
  /**
5889
5946
  * Create a comment.
5890
5947
  * @param {CommentRequest} commentRequest
@@ -5903,9 +5960,6 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
5903
5960
  /**
5904
5961
  * List comments.
5905
5962
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5906
- * @param {string} [keyword] Comments filtered by keyword.
5907
- * @param {boolean} [hidden] The comment is hidden from the theme side.
5908
- * @param {boolean} [top] Comment top display.
5909
5963
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5910
5964
  * @param {boolean} [approved] Comments approved.
5911
5965
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -5913,20 +5967,23 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
5913
5967
  * @param {string} [ownerName] Commenter name.
5914
5968
  * @param {string} [subjectKind] Comment subject kind.
5915
5969
  * @param {string} [subjectName] Comment subject name.
5970
+ * @param {string} [keyword] Comments filtered by keyword.
5971
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
5972
+ * @param {boolean} [top] Comment top display.
5916
5973
  * @param {number} [size] Size of one page. Zero indicates no limit.
5917
- * @param {number} [page] The page number. Zero indicates no page.
5918
5974
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5919
5975
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
5976
+ * @param {number} [page] The page number. Zero indicates no page.
5920
5977
  * @param {*} [options] Override http request option.
5921
5978
  * @throws {RequiredError}
5922
5979
  */
5923
- 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>>;
5980
+ 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>>;
5924
5981
  };
5925
5982
  /**
5926
- * ApiHaloRunV1alpha1CommentApi - factory interface
5983
+ * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
5927
5984
  * @export
5928
5985
  */
5929
- declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5986
+ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5930
5987
  /**
5931
5988
  * Create a comment.
5932
5989
  * @param {CommentRequest} commentRequest
@@ -5945,9 +6002,6 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
5945
6002
  /**
5946
6003
  * List comments.
5947
6004
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5948
- * @param {string} [keyword] Comments filtered by keyword.
5949
- * @param {boolean} [hidden] The comment is hidden from the theme side.
5950
- * @param {boolean} [top] Comment top display.
5951
6005
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
5952
6006
  * @param {boolean} [approved] Comments approved.
5953
6007
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
@@ -5955,182 +6009,185 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
5955
6009
  * @param {string} [ownerName] Commenter name.
5956
6010
  * @param {string} [subjectKind] Comment subject kind.
5957
6011
  * @param {string} [subjectName] Comment subject name.
6012
+ * @param {string} [keyword] Comments filtered by keyword.
6013
+ * @param {boolean} [hidden] The comment is hidden from the theme side.
6014
+ * @param {boolean} [top] Comment top display.
5958
6015
  * @param {number} [size] Size of one page. Zero indicates no limit.
5959
- * @param {number} [page] The page number. Zero indicates no page.
5960
6016
  * @param {Array<string>} [labelSelector] Label selector for filtering.
5961
6017
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6018
+ * @param {number} [page] The page number. Zero indicates no page.
5962
6019
  * @param {*} [options] Override http request option.
5963
6020
  * @throws {RequiredError}
5964
6021
  */
5965
- 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>;
6022
+ 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>;
5966
6023
  };
5967
6024
  /**
5968
- * Request parameters for createComment operation in ApiHaloRunV1alpha1CommentApi.
6025
+ * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
5969
6026
  * @export
5970
- * @interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest
6027
+ * @interface ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest
5971
6028
  */
5972
- interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest {
6029
+ interface ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest {
5973
6030
  /**
5974
6031
  *
5975
6032
  * @type {CommentRequest}
5976
- * @memberof ApiHaloRunV1alpha1CommentApiCreateComment
6033
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateComment
5977
6034
  */
5978
6035
  readonly commentRequest: CommentRequest;
5979
6036
  }
5980
6037
  /**
5981
- * Request parameters for createReply operation in ApiHaloRunV1alpha1CommentApi.
6038
+ * Request parameters for createReply operation in ApiConsoleHaloRunV1alpha1CommentApi.
5982
6039
  * @export
5983
- * @interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest
6040
+ * @interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest
5984
6041
  */
5985
- interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest {
6042
+ interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest {
5986
6043
  /**
5987
6044
  *
5988
6045
  * @type {string}
5989
- * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
6046
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateReply
5990
6047
  */
5991
6048
  readonly name: string;
5992
6049
  /**
5993
6050
  *
5994
6051
  * @type {ReplyRequest}
5995
- * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
6052
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateReply
5996
6053
  */
5997
6054
  readonly replyRequest: ReplyRequest;
5998
6055
  }
5999
6056
  /**
6000
- * Request parameters for listComments operation in ApiHaloRunV1alpha1CommentApi.
6057
+ * Request parameters for listComments operation in ApiConsoleHaloRunV1alpha1CommentApi.
6001
6058
  * @export
6002
- * @interface ApiHaloRunV1alpha1CommentApiListCommentsRequest
6059
+ * @interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest
6003
6060
  */
6004
- interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
6061
+ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
6005
6062
  /**
6006
6063
  * Comment collation.
6007
6064
  * @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
6008
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6065
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6009
6066
  */
6010
6067
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
6011
- /**
6012
- * Comments filtered by keyword.
6013
- * @type {string}
6014
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6015
- */
6016
- readonly keyword?: string;
6017
- /**
6018
- * The comment is hidden from the theme side.
6019
- * @type {boolean}
6020
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6021
- */
6022
- readonly hidden?: boolean;
6023
- /**
6024
- * Comment top display.
6025
- * @type {boolean}
6026
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6027
- */
6028
- readonly top?: boolean;
6029
6068
  /**
6030
6069
  * ascending order If it is true; otherwise, it is in descending order.
6031
6070
  * @type {boolean}
6032
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6071
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6033
6072
  */
6034
6073
  readonly sortOrder?: boolean;
6035
6074
  /**
6036
6075
  * Comments approved.
6037
6076
  * @type {boolean}
6038
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6077
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6039
6078
  */
6040
6079
  readonly approved?: boolean;
6041
6080
  /**
6042
6081
  * Send notifications when there are new replies.
6043
6082
  * @type {boolean}
6044
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6083
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6045
6084
  */
6046
6085
  readonly allowNotification?: boolean;
6047
6086
  /**
6048
6087
  * Commenter kind.
6049
6088
  * @type {string}
6050
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6089
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6051
6090
  */
6052
6091
  readonly ownerKind?: string;
6053
6092
  /**
6054
6093
  * Commenter name.
6055
6094
  * @type {string}
6056
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6095
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6057
6096
  */
6058
6097
  readonly ownerName?: string;
6059
6098
  /**
6060
6099
  * Comment subject kind.
6061
6100
  * @type {string}
6062
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6101
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6063
6102
  */
6064
6103
  readonly subjectKind?: string;
6065
6104
  /**
6066
6105
  * Comment subject name.
6067
6106
  * @type {string}
6068
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6107
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6069
6108
  */
6070
6109
  readonly subjectName?: string;
6071
6110
  /**
6072
- * Size of one page. Zero indicates no limit.
6073
- * @type {number}
6074
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6111
+ * Comments filtered by keyword.
6112
+ * @type {string}
6113
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6075
6114
  */
6076
- readonly size?: number;
6115
+ readonly keyword?: string;
6077
6116
  /**
6078
- * The page number. Zero indicates no page.
6117
+ * The comment is hidden from the theme side.
6118
+ * @type {boolean}
6119
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6120
+ */
6121
+ readonly hidden?: boolean;
6122
+ /**
6123
+ * Comment top display.
6124
+ * @type {boolean}
6125
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6126
+ */
6127
+ readonly top?: boolean;
6128
+ /**
6129
+ * Size of one page. Zero indicates no limit.
6079
6130
  * @type {number}
6080
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6131
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6081
6132
  */
6082
- readonly page?: number;
6133
+ readonly size?: number;
6083
6134
  /**
6084
6135
  * Label selector for filtering.
6085
6136
  * @type {Array<string>}
6086
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6137
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6087
6138
  */
6088
6139
  readonly labelSelector?: Array<string>;
6089
6140
  /**
6090
6141
  * Field selector for filtering.
6091
6142
  * @type {Array<string>}
6092
- * @memberof ApiHaloRunV1alpha1CommentApiListComments
6143
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6093
6144
  */
6094
6145
  readonly fieldSelector?: Array<string>;
6146
+ /**
6147
+ * The page number. Zero indicates no page.
6148
+ * @type {number}
6149
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
6150
+ */
6151
+ readonly page?: number;
6095
6152
  }
6096
6153
  /**
6097
- * ApiHaloRunV1alpha1CommentApi - object-oriented interface
6154
+ * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
6098
6155
  * @export
6099
- * @class ApiHaloRunV1alpha1CommentApi
6156
+ * @class ApiConsoleHaloRunV1alpha1CommentApi
6100
6157
  * @extends {BaseAPI}
6101
6158
  */
6102
- declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
6159
+ declare class ApiConsoleHaloRunV1alpha1CommentApi extends BaseAPI {
6103
6160
  /**
6104
6161
  * Create a comment.
6105
- * @param {ApiHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
6162
+ * @param {ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
6106
6163
  * @param {*} [options] Override http request option.
6107
6164
  * @throws {RequiredError}
6108
- * @memberof ApiHaloRunV1alpha1CommentApi
6165
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApi
6109
6166
  */
6110
- createComment(requestParameters: ApiHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
6167
+ createComment(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
6111
6168
  /**
6112
6169
  * Create a reply.
6113
- * @param {ApiHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
6170
+ * @param {ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
6114
6171
  * @param {*} [options] Override http request option.
6115
6172
  * @throws {RequiredError}
6116
- * @memberof ApiHaloRunV1alpha1CommentApi
6173
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApi
6117
6174
  */
6118
- createReply(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
6175
+ createReply(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
6119
6176
  /**
6120
6177
  * List comments.
6121
- * @param {ApiHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
6178
+ * @param {ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
6122
6179
  * @param {*} [options] Override http request option.
6123
6180
  * @throws {RequiredError}
6124
- * @memberof ApiHaloRunV1alpha1CommentApi
6181
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApi
6125
6182
  */
6126
- listComments(requestParameters?: ApiHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedCommentList, any>>;
6183
+ listComments(requestParameters?: ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedCommentList, any>>;
6127
6184
  }
6128
6185
 
6129
6186
  /**
6130
- * ApiHaloRunV1alpha1ContentApi - axios parameter creator
6187
+ * ApiConsoleHaloRunV1alpha1ContentApi - axios parameter creator
6131
6188
  * @export
6132
6189
  */
6133
- declare const ApiHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Configuration) => {
6190
+ declare const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Configuration) => {
6134
6191
  /**
6135
6192
  * Draft a snapshot content.
6136
6193
  * @param {ContentRequest} contentRequest
@@ -6163,10 +6220,10 @@ declare const ApiHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Co
6163
6220
  updateSnapshotContent: (snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6164
6221
  };
6165
6222
  /**
6166
- * ApiHaloRunV1alpha1ContentApi - functional programming interface
6223
+ * ApiConsoleHaloRunV1alpha1ContentApi - functional programming interface
6167
6224
  * @export
6168
6225
  */
6169
- declare const ApiHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) => {
6226
+ declare const ApiConsoleHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) => {
6170
6227
  /**
6171
6228
  * Draft a snapshot content.
6172
6229
  * @param {ContentRequest} contentRequest
@@ -6199,10 +6256,10 @@ declare const ApiHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) =>
6199
6256
  updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
6200
6257
  };
6201
6258
  /**
6202
- * ApiHaloRunV1alpha1ContentApi - factory interface
6259
+ * ApiConsoleHaloRunV1alpha1ContentApi - factory interface
6203
6260
  * @export
6204
6261
  */
6205
- declare const ApiHaloRunV1alpha1ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6262
+ declare const ApiConsoleHaloRunV1alpha1ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6206
6263
  /**
6207
6264
  * Draft a snapshot content.
6208
6265
  * @param {ContentRequest} contentRequest
@@ -6235,115 +6292,115 @@ declare const ApiHaloRunV1alpha1ContentApiFactory: (configuration?: Configuratio
6235
6292
  updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: any): AxiosPromise<ContentWrapper>;
6236
6293
  };
6237
6294
  /**
6238
- * Request parameters for draftSnapshotContent operation in ApiHaloRunV1alpha1ContentApi.
6295
+ * Request parameters for draftSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
6239
6296
  * @export
6240
- * @interface ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest
6297
+ * @interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest
6241
6298
  */
6242
- interface ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest {
6299
+ interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest {
6243
6300
  /**
6244
6301
  *
6245
6302
  * @type {ContentRequest}
6246
- * @memberof ApiHaloRunV1alpha1ContentApiDraftSnapshotContent
6303
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContent
6247
6304
  */
6248
6305
  readonly contentRequest: ContentRequest;
6249
6306
  }
6250
6307
  /**
6251
- * Request parameters for obtainSnapshotContent operation in ApiHaloRunV1alpha1ContentApi.
6308
+ * Request parameters for obtainSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
6252
6309
  * @export
6253
- * @interface ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest
6310
+ * @interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest
6254
6311
  */
6255
- interface ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest {
6312
+ interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest {
6256
6313
  /**
6257
6314
  *
6258
6315
  * @type {string}
6259
- * @memberof ApiHaloRunV1alpha1ContentApiObtainSnapshotContent
6316
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContent
6260
6317
  */
6261
6318
  readonly snapshotName: string;
6262
6319
  }
6263
6320
  /**
6264
- * Request parameters for publishSnapshotContent operation in ApiHaloRunV1alpha1ContentApi.
6321
+ * Request parameters for publishSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
6265
6322
  * @export
6266
- * @interface ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest
6323
+ * @interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest
6267
6324
  */
6268
- interface ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest {
6325
+ interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest {
6269
6326
  /**
6270
6327
  *
6271
6328
  * @type {string}
6272
- * @memberof ApiHaloRunV1alpha1ContentApiPublishSnapshotContent
6329
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
6273
6330
  */
6274
6331
  readonly snapshotName: string;
6275
6332
  /**
6276
6333
  *
6277
6334
  * @type {SubjectRef}
6278
- * @memberof ApiHaloRunV1alpha1ContentApiPublishSnapshotContent
6335
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
6279
6336
  */
6280
6337
  readonly subjectRef: SubjectRef;
6281
6338
  }
6282
6339
  /**
6283
- * Request parameters for updateSnapshotContent operation in ApiHaloRunV1alpha1ContentApi.
6340
+ * Request parameters for updateSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
6284
6341
  * @export
6285
- * @interface ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest
6342
+ * @interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest
6286
6343
  */
6287
- interface ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest {
6344
+ interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest {
6288
6345
  /**
6289
6346
  *
6290
6347
  * @type {string}
6291
- * @memberof ApiHaloRunV1alpha1ContentApiUpdateSnapshotContent
6348
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
6292
6349
  */
6293
6350
  readonly snapshotName: string;
6294
6351
  /**
6295
6352
  *
6296
6353
  * @type {ContentRequest}
6297
- * @memberof ApiHaloRunV1alpha1ContentApiUpdateSnapshotContent
6354
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
6298
6355
  */
6299
6356
  readonly contentRequest: ContentRequest;
6300
6357
  }
6301
6358
  /**
6302
- * ApiHaloRunV1alpha1ContentApi - object-oriented interface
6359
+ * ApiConsoleHaloRunV1alpha1ContentApi - object-oriented interface
6303
6360
  * @export
6304
- * @class ApiHaloRunV1alpha1ContentApi
6361
+ * @class ApiConsoleHaloRunV1alpha1ContentApi
6305
6362
  * @extends {BaseAPI}
6306
6363
  */
6307
- declare class ApiHaloRunV1alpha1ContentApi extends BaseAPI {
6364
+ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
6308
6365
  /**
6309
6366
  * Draft a snapshot content.
6310
- * @param {ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest} requestParameters Request parameters.
6367
+ * @param {ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest} requestParameters Request parameters.
6311
6368
  * @param {*} [options] Override http request option.
6312
6369
  * @throws {RequiredError}
6313
- * @memberof ApiHaloRunV1alpha1ContentApi
6370
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApi
6314
6371
  */
6315
- draftSnapshotContent(requestParameters: ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6372
+ draftSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6316
6373
  /**
6317
6374
  * Obtain a snapshot content.
6318
- * @param {ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest} requestParameters Request parameters.
6375
+ * @param {ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest} requestParameters Request parameters.
6319
6376
  * @param {*} [options] Override http request option.
6320
6377
  * @throws {RequiredError}
6321
- * @memberof ApiHaloRunV1alpha1ContentApi
6378
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApi
6322
6379
  */
6323
- obtainSnapshotContent(requestParameters: ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6380
+ obtainSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6324
6381
  /**
6325
6382
  * Publish a snapshot content.
6326
- * @param {ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest} requestParameters Request parameters.
6383
+ * @param {ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest} requestParameters Request parameters.
6327
6384
  * @param {*} [options] Override http request option.
6328
6385
  * @throws {RequiredError}
6329
- * @memberof ApiHaloRunV1alpha1ContentApi
6386
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApi
6330
6387
  */
6331
- publishSnapshotContent(requestParameters: ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6388
+ publishSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6332
6389
  /**
6333
6390
  * Update a snapshot content.
6334
- * @param {ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest} requestParameters Request parameters.
6391
+ * @param {ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest} requestParameters Request parameters.
6335
6392
  * @param {*} [options] Override http request option.
6336
6393
  * @throws {RequiredError}
6337
- * @memberof ApiHaloRunV1alpha1ContentApi
6394
+ * @memberof ApiConsoleHaloRunV1alpha1ContentApi
6338
6395
  */
6339
- updateSnapshotContent(requestParameters: ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6396
+ updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
6340
6397
  }
6341
6398
 
6342
6399
  /**
6343
- * ApiHaloRunV1alpha1PluginApi - axios parameter creator
6400
+ * ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
6344
6401
  * @export
6345
6402
  */
6346
- declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
6403
+ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
6347
6404
  /**
6348
6405
  * Install a plugin by uploading a Jar file.
6349
6406
  * @param {any} file
@@ -6353,10 +6410,10 @@ declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Con
6353
6410
  installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6354
6411
  };
6355
6412
  /**
6356
- * ApiHaloRunV1alpha1PluginApi - functional programming interface
6413
+ * ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
6357
6414
  * @export
6358
6415
  */
6359
- declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
6416
+ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
6360
6417
  /**
6361
6418
  * Install a plugin by uploading a Jar file.
6362
6419
  * @param {any} file
@@ -6366,10 +6423,10 @@ declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) =>
6366
6423
  installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
6367
6424
  };
6368
6425
  /**
6369
- * ApiHaloRunV1alpha1PluginApi - factory interface
6426
+ * ApiConsoleHaloRunV1alpha1PluginApi - factory interface
6370
6427
  * @export
6371
6428
  */
6372
- declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6429
+ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6373
6430
  /**
6374
6431
  * Install a plugin by uploading a Jar file.
6375
6432
  * @param {any} file
@@ -6379,40 +6436,40 @@ declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration
6379
6436
  installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
6380
6437
  };
6381
6438
  /**
6382
- * Request parameters for installPlugin operation in ApiHaloRunV1alpha1PluginApi.
6439
+ * Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
6383
6440
  * @export
6384
- * @interface ApiHaloRunV1alpha1PluginApiInstallPluginRequest
6441
+ * @interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest
6385
6442
  */
6386
- interface ApiHaloRunV1alpha1PluginApiInstallPluginRequest {
6443
+ interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
6387
6444
  /**
6388
6445
  *
6389
6446
  * @type {any}
6390
- * @memberof ApiHaloRunV1alpha1PluginApiInstallPlugin
6447
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiInstallPlugin
6391
6448
  */
6392
6449
  readonly file: any;
6393
6450
  }
6394
6451
  /**
6395
- * ApiHaloRunV1alpha1PluginApi - object-oriented interface
6452
+ * ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
6396
6453
  * @export
6397
- * @class ApiHaloRunV1alpha1PluginApi
6454
+ * @class ApiConsoleHaloRunV1alpha1PluginApi
6398
6455
  * @extends {BaseAPI}
6399
6456
  */
6400
- declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
6457
+ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
6401
6458
  /**
6402
6459
  * Install a plugin by uploading a Jar file.
6403
- * @param {ApiHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
6460
+ * @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
6404
6461
  * @param {*} [options] Override http request option.
6405
6462
  * @throws {RequiredError}
6406
- * @memberof ApiHaloRunV1alpha1PluginApi
6463
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApi
6407
6464
  */
6408
- installPlugin(requestParameters: ApiHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
6465
+ installPlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
6409
6466
  }
6410
6467
 
6411
6468
  /**
6412
- * ApiHaloRunV1alpha1PostApi - axios parameter creator
6469
+ * ApiConsoleHaloRunV1alpha1PostApi - axios parameter creator
6413
6470
  * @export
6414
6471
  */
6415
- declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
6472
+ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
6416
6473
  /**
6417
6474
  * Draft a post.
6418
6475
  * @param {PostRequest} postRequest
@@ -6422,17 +6479,22 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
6422
6479
  draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6423
6480
  /**
6424
6481
  * List posts.
6425
- * @param {Array<string>} [tags]
6426
- * @param {Array<string>} [contributors]
6427
- * @param {Array<string>} [categories]
6482
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6483
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6484
+ * @param {Array<string>} [category]
6485
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6486
+ * @param {Array<string>} [contributor]
6487
+ * @param {string} [keyword] Posts filtered by keyword.
6488
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6489
+ * @param {Array<string>} [tag]
6428
6490
  * @param {number} [size] Size of one page. Zero indicates no limit.
6429
- * @param {number} [page] The page number. Zero indicates no page.
6430
6491
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6431
6492
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6493
+ * @param {number} [page] The page number. Zero indicates no page.
6432
6494
  * @param {*} [options] Override http request option.
6433
6495
  * @throws {RequiredError}
6434
6496
  */
6435
- listPosts: (tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6497
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, 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>;
6436
6498
  /**
6437
6499
  * Publish a post.
6438
6500
  * @param {string} name
@@ -6450,10 +6512,10 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
6450
6512
  updateDraftPost: (name: string, postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6451
6513
  };
6452
6514
  /**
6453
- * ApiHaloRunV1alpha1PostApi - functional programming interface
6515
+ * ApiConsoleHaloRunV1alpha1PostApi - functional programming interface
6454
6516
  * @export
6455
6517
  */
6456
- declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6518
+ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6457
6519
  /**
6458
6520
  * Draft a post.
6459
6521
  * @param {PostRequest} postRequest
@@ -6463,17 +6525,22 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6463
6525
  draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
6464
6526
  /**
6465
6527
  * List posts.
6466
- * @param {Array<string>} [tags]
6467
- * @param {Array<string>} [contributors]
6468
- * @param {Array<string>} [categories]
6528
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6529
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6530
+ * @param {Array<string>} [category]
6531
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6532
+ * @param {Array<string>} [contributor]
6533
+ * @param {string} [keyword] Posts filtered by keyword.
6534
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6535
+ * @param {Array<string>} [tag]
6469
6536
  * @param {number} [size] Size of one page. Zero indicates no limit.
6470
- * @param {number} [page] The page number. Zero indicates no page.
6471
6537
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6472
6538
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6539
+ * @param {number} [page] The page number. Zero indicates no page.
6473
6540
  * @param {*} [options] Override http request option.
6474
6541
  * @throws {RequiredError}
6475
6542
  */
6476
- listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6543
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, 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>>;
6477
6544
  /**
6478
6545
  * Publish a post.
6479
6546
  * @param {string} name
@@ -6491,10 +6558,10 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6491
6558
  updateDraftPost(name: string, postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
6492
6559
  };
6493
6560
  /**
6494
- * ApiHaloRunV1alpha1PostApi - factory interface
6561
+ * ApiConsoleHaloRunV1alpha1PostApi - factory interface
6495
6562
  * @export
6496
6563
  */
6497
- declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6564
+ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6498
6565
  /**
6499
6566
  * Draft a post.
6500
6567
  * @param {PostRequest} postRequest
@@ -6504,17 +6571,22 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
6504
6571
  draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
6505
6572
  /**
6506
6573
  * List posts.
6507
- * @param {Array<string>} [tags]
6508
- * @param {Array<string>} [contributors]
6509
- * @param {Array<string>} [categories]
6574
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
6575
+ * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
6576
+ * @param {Array<string>} [category]
6577
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
6578
+ * @param {Array<string>} [contributor]
6579
+ * @param {string} [keyword] Posts filtered by keyword.
6580
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
6581
+ * @param {Array<string>} [tag]
6510
6582
  * @param {number} [size] Size of one page. Zero indicates no limit.
6511
- * @param {number} [page] The page number. Zero indicates no page.
6512
6583
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6513
6584
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6585
+ * @param {number} [page] The page number. Zero indicates no page.
6514
6586
  * @param {*} [options] Override http request option.
6515
6587
  * @throws {RequiredError}
6516
6588
  */
6517
- listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
6589
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, sortOrder?: boolean, 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>;
6518
6590
  /**
6519
6591
  * Publish a post.
6520
6592
  * @param {string} name
@@ -6532,250 +6604,280 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
6532
6604
  updateDraftPost(name: string, postRequest: PostRequest, options?: any): AxiosPromise<Post>;
6533
6605
  };
6534
6606
  /**
6535
- * Request parameters for draftPost operation in ApiHaloRunV1alpha1PostApi.
6607
+ * Request parameters for draftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
6536
6608
  * @export
6537
- * @interface ApiHaloRunV1alpha1PostApiDraftPostRequest
6609
+ * @interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest
6538
6610
  */
6539
- interface ApiHaloRunV1alpha1PostApiDraftPostRequest {
6611
+ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
6540
6612
  /**
6541
6613
  *
6542
6614
  * @type {PostRequest}
6543
- * @memberof ApiHaloRunV1alpha1PostApiDraftPost
6615
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiDraftPost
6544
6616
  */
6545
6617
  readonly postRequest: PostRequest;
6546
6618
  }
6547
6619
  /**
6548
- * Request parameters for listPosts operation in ApiHaloRunV1alpha1PostApi.
6620
+ * Request parameters for listPosts operation in ApiConsoleHaloRunV1alpha1PostApi.
6549
6621
  * @export
6550
- * @interface ApiHaloRunV1alpha1PostApiListPostsRequest
6622
+ * @interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest
6551
6623
  */
6552
- interface ApiHaloRunV1alpha1PostApiListPostsRequest {
6624
+ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
6625
+ /**
6626
+ * Post collation.
6627
+ * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
6628
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6629
+ */
6630
+ readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
6631
+ /**
6632
+ *
6633
+ * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
6634
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6635
+ */
6636
+ readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
6553
6637
  /**
6554
6638
  *
6555
6639
  * @type {Array<string>}
6556
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6640
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6557
6641
  */
6558
- readonly tags?: Array<string>;
6642
+ readonly category?: Array<string>;
6643
+ /**
6644
+ * ascending order If it is true; otherwise, it is in descending order.
6645
+ * @type {boolean}
6646
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6647
+ */
6648
+ readonly sortOrder?: boolean;
6559
6649
  /**
6560
6650
  *
6561
6651
  * @type {Array<string>}
6562
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6652
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6563
6653
  */
6564
- readonly contributors?: Array<string>;
6654
+ readonly contributor?: Array<string>;
6655
+ /**
6656
+ * Posts filtered by keyword.
6657
+ * @type {string}
6658
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6659
+ */
6660
+ readonly keyword?: string;
6661
+ /**
6662
+ *
6663
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
6664
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6665
+ */
6666
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
6565
6667
  /**
6566
6668
  *
6567
6669
  * @type {Array<string>}
6568
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6670
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6569
6671
  */
6570
- readonly categories?: Array<string>;
6672
+ readonly tag?: Array<string>;
6571
6673
  /**
6572
6674
  * Size of one page. Zero indicates no limit.
6573
6675
  * @type {number}
6574
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6676
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6575
6677
  */
6576
6678
  readonly size?: number;
6577
- /**
6578
- * The page number. Zero indicates no page.
6579
- * @type {number}
6580
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6581
- */
6582
- readonly page?: number;
6583
6679
  /**
6584
6680
  * Label selector for filtering.
6585
6681
  * @type {Array<string>}
6586
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6682
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6587
6683
  */
6588
6684
  readonly labelSelector?: Array<string>;
6589
6685
  /**
6590
6686
  * Field selector for filtering.
6591
6687
  * @type {Array<string>}
6592
- * @memberof ApiHaloRunV1alpha1PostApiListPosts
6688
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6593
6689
  */
6594
6690
  readonly fieldSelector?: Array<string>;
6691
+ /**
6692
+ * The page number. Zero indicates no page.
6693
+ * @type {number}
6694
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
6695
+ */
6696
+ readonly page?: number;
6595
6697
  }
6596
6698
  /**
6597
- * Request parameters for publishPost operation in ApiHaloRunV1alpha1PostApi.
6699
+ * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
6598
6700
  * @export
6599
- * @interface ApiHaloRunV1alpha1PostApiPublishPostRequest
6701
+ * @interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest
6600
6702
  */
6601
- interface ApiHaloRunV1alpha1PostApiPublishPostRequest {
6703
+ interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest {
6602
6704
  /**
6603
6705
  *
6604
6706
  * @type {string}
6605
- * @memberof ApiHaloRunV1alpha1PostApiPublishPost
6707
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiPublishPost
6606
6708
  */
6607
6709
  readonly name: string;
6608
6710
  }
6609
6711
  /**
6610
- * Request parameters for updateDraftPost operation in ApiHaloRunV1alpha1PostApi.
6712
+ * Request parameters for updateDraftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
6611
6713
  * @export
6612
- * @interface ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest
6714
+ * @interface ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest
6613
6715
  */
6614
- interface ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest {
6716
+ interface ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest {
6615
6717
  /**
6616
6718
  *
6617
6719
  * @type {string}
6618
- * @memberof ApiHaloRunV1alpha1PostApiUpdateDraftPost
6720
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPost
6619
6721
  */
6620
6722
  readonly name: string;
6621
6723
  /**
6622
6724
  *
6623
6725
  * @type {PostRequest}
6624
- * @memberof ApiHaloRunV1alpha1PostApiUpdateDraftPost
6726
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPost
6625
6727
  */
6626
6728
  readonly postRequest: PostRequest;
6627
6729
  }
6628
6730
  /**
6629
- * ApiHaloRunV1alpha1PostApi - object-oriented interface
6731
+ * ApiConsoleHaloRunV1alpha1PostApi - object-oriented interface
6630
6732
  * @export
6631
- * @class ApiHaloRunV1alpha1PostApi
6733
+ * @class ApiConsoleHaloRunV1alpha1PostApi
6632
6734
  * @extends {BaseAPI}
6633
6735
  */
6634
- declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
6736
+ declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
6635
6737
  /**
6636
6738
  * Draft a post.
6637
- * @param {ApiHaloRunV1alpha1PostApiDraftPostRequest} requestParameters Request parameters.
6739
+ * @param {ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest} requestParameters Request parameters.
6638
6740
  * @param {*} [options] Override http request option.
6639
6741
  * @throws {RequiredError}
6640
- * @memberof ApiHaloRunV1alpha1PostApi
6742
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
6641
6743
  */
6642
- draftPost(requestParameters: ApiHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6744
+ draftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6643
6745
  /**
6644
6746
  * List posts.
6645
- * @param {ApiHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
6747
+ * @param {ApiConsoleHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
6646
6748
  * @param {*} [options] Override http request option.
6647
6749
  * @throws {RequiredError}
6648
- * @memberof ApiHaloRunV1alpha1PostApi
6750
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
6649
6751
  */
6650
- listPosts(requestParameters?: ApiHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedPostList, any>>;
6752
+ listPosts(requestParameters?: ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedPostList, any>>;
6651
6753
  /**
6652
6754
  * Publish a post.
6653
- * @param {ApiHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
6755
+ * @param {ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
6654
6756
  * @param {*} [options] Override http request option.
6655
6757
  * @throws {RequiredError}
6656
- * @memberof ApiHaloRunV1alpha1PostApi
6758
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
6657
6759
  */
6658
- publishPost(requestParameters: ApiHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6760
+ publishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6659
6761
  /**
6660
6762
  * Update a post.
6661
- * @param {ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
6763
+ * @param {ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
6662
6764
  * @param {*} [options] Override http request option.
6663
6765
  * @throws {RequiredError}
6664
- * @memberof ApiHaloRunV1alpha1PostApi
6766
+ * @memberof ApiConsoleHaloRunV1alpha1PostApi
6665
6767
  */
6666
- updateDraftPost(requestParameters: ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6768
+ updateDraftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6667
6769
  }
6668
6770
 
6669
6771
  /**
6670
- * ApiHaloRunV1alpha1ReplyApi - axios parameter creator
6772
+ * ApiConsoleHaloRunV1alpha1ReplyApi - axios parameter creator
6671
6773
  * @export
6672
6774
  */
6673
- declare const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
6775
+ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
6674
6776
  /**
6675
6777
  * List replies.
6676
6778
  * @param {string} [commentName] Replies filtered by commentName.
6677
6779
  * @param {number} [size] Size of one page. Zero indicates no limit.
6678
- * @param {number} [page] The page number. Zero indicates no page.
6679
6780
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6680
6781
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6782
+ * @param {number} [page] The page number. Zero indicates no page.
6681
6783
  * @param {*} [options] Override http request option.
6682
6784
  * @throws {RequiredError}
6683
6785
  */
6684
- listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6786
+ listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6685
6787
  };
6686
6788
  /**
6687
- * ApiHaloRunV1alpha1ReplyApi - functional programming interface
6789
+ * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
6688
6790
  * @export
6689
6791
  */
6690
- declare const ApiHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
6792
+ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
6691
6793
  /**
6692
6794
  * List replies.
6693
6795
  * @param {string} [commentName] Replies filtered by commentName.
6694
6796
  * @param {number} [size] Size of one page. Zero indicates no limit.
6695
- * @param {number} [page] The page number. Zero indicates no page.
6696
6797
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6697
6798
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6799
+ * @param {number} [page] The page number. Zero indicates no page.
6698
6800
  * @param {*} [options] Override http request option.
6699
6801
  * @throws {RequiredError}
6700
6802
  */
6701
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
6803
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
6702
6804
  };
6703
6805
  /**
6704
- * ApiHaloRunV1alpha1ReplyApi - factory interface
6806
+ * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
6705
6807
  * @export
6706
6808
  */
6707
- declare const ApiHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6809
+ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6708
6810
  /**
6709
6811
  * List replies.
6710
6812
  * @param {string} [commentName] Replies filtered by commentName.
6711
6813
  * @param {number} [size] Size of one page. Zero indicates no limit.
6712
- * @param {number} [page] The page number. Zero indicates no page.
6713
6814
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6714
6815
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6816
+ * @param {number} [page] The page number. Zero indicates no page.
6715
6817
  * @param {*} [options] Override http request option.
6716
6818
  * @throws {RequiredError}
6717
6819
  */
6718
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
6820
+ listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
6719
6821
  };
6720
6822
  /**
6721
- * Request parameters for listReplies operation in ApiHaloRunV1alpha1ReplyApi.
6823
+ * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
6722
6824
  * @export
6723
- * @interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest
6825
+ * @interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest
6724
6826
  */
6725
- interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest {
6827
+ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
6726
6828
  /**
6727
6829
  * Replies filtered by commentName.
6728
6830
  * @type {string}
6729
- * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6831
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
6730
6832
  */
6731
6833
  readonly commentName?: string;
6732
6834
  /**
6733
6835
  * Size of one page. Zero indicates no limit.
6734
6836
  * @type {number}
6735
- * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6837
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
6736
6838
  */
6737
6839
  readonly size?: number;
6738
- /**
6739
- * The page number. Zero indicates no page.
6740
- * @type {number}
6741
- * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6742
- */
6743
- readonly page?: number;
6744
6840
  /**
6745
6841
  * Label selector for filtering.
6746
6842
  * @type {Array<string>}
6747
- * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6843
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
6748
6844
  */
6749
6845
  readonly labelSelector?: Array<string>;
6750
6846
  /**
6751
6847
  * Field selector for filtering.
6752
6848
  * @type {Array<string>}
6753
- * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6849
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
6754
6850
  */
6755
6851
  readonly fieldSelector?: Array<string>;
6852
+ /**
6853
+ * The page number. Zero indicates no page.
6854
+ * @type {number}
6855
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
6856
+ */
6857
+ readonly page?: number;
6756
6858
  }
6757
6859
  /**
6758
- * ApiHaloRunV1alpha1ReplyApi - object-oriented interface
6860
+ * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
6759
6861
  * @export
6760
- * @class ApiHaloRunV1alpha1ReplyApi
6862
+ * @class ApiConsoleHaloRunV1alpha1ReplyApi
6761
6863
  * @extends {BaseAPI}
6762
6864
  */
6763
- declare class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
6865
+ declare class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
6764
6866
  /**
6765
6867
  * List replies.
6766
- * @param {ApiHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
6868
+ * @param {ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
6767
6869
  * @param {*} [options] Override http request option.
6768
6870
  * @throws {RequiredError}
6769
- * @memberof ApiHaloRunV1alpha1ReplyApi
6871
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApi
6770
6872
  */
6771
- listReplies(requestParameters?: ApiHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedReplyList, any>>;
6873
+ listReplies(requestParameters?: ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedReplyList, any>>;
6772
6874
  }
6773
6875
 
6774
6876
  /**
6775
- * ApiHaloRunV1alpha1SinglePageApi - axios parameter creator
6877
+ * ApiConsoleHaloRunV1alpha1SinglePageApi - axios parameter creator
6776
6878
  * @export
6777
6879
  */
6778
- declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
6880
+ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
6779
6881
  /**
6780
6882
  * Draft a single page.
6781
6883
  * @param {SinglePageRequest} singlePageRequest
@@ -6787,13 +6889,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
6787
6889
  * List single pages.
6788
6890
  * @param {Array<string>} [contributors]
6789
6891
  * @param {number} [size] Size of one page. Zero indicates no limit.
6790
- * @param {number} [page] The page number. Zero indicates no page.
6791
6892
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6792
6893
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6894
+ * @param {number} [page] The page number. Zero indicates no page.
6793
6895
  * @param {*} [options] Override http request option.
6794
6896
  * @throws {RequiredError}
6795
6897
  */
6796
- listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6898
+ listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6797
6899
  /**
6798
6900
  * Publish a single page.
6799
6901
  * @param {string} name
@@ -6811,10 +6913,10 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
6811
6913
  updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6812
6914
  };
6813
6915
  /**
6814
- * ApiHaloRunV1alpha1SinglePageApi - functional programming interface
6916
+ * ApiConsoleHaloRunV1alpha1SinglePageApi - functional programming interface
6815
6917
  * @export
6816
6918
  */
6817
- declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
6919
+ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
6818
6920
  /**
6819
6921
  * Draft a single page.
6820
6922
  * @param {SinglePageRequest} singlePageRequest
@@ -6826,13 +6928,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
6826
6928
  * List single pages.
6827
6929
  * @param {Array<string>} [contributors]
6828
6930
  * @param {number} [size] Size of one page. Zero indicates no limit.
6829
- * @param {number} [page] The page number. Zero indicates no page.
6830
6931
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6831
6932
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6933
+ * @param {number} [page] The page number. Zero indicates no page.
6832
6934
  * @param {*} [options] Override http request option.
6833
6935
  * @throws {RequiredError}
6834
6936
  */
6835
- listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
6937
+ listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
6836
6938
  /**
6837
6939
  * Publish a single page.
6838
6940
  * @param {string} name
@@ -6850,10 +6952,10 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
6850
6952
  updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
6851
6953
  };
6852
6954
  /**
6853
- * ApiHaloRunV1alpha1SinglePageApi - factory interface
6955
+ * ApiConsoleHaloRunV1alpha1SinglePageApi - factory interface
6854
6956
  * @export
6855
6957
  */
6856
- declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6958
+ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6857
6959
  /**
6858
6960
  * Draft a single page.
6859
6961
  * @param {SinglePageRequest} singlePageRequest
@@ -6865,13 +6967,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
6865
6967
  * List single pages.
6866
6968
  * @param {Array<string>} [contributors]
6867
6969
  * @param {number} [size] Size of one page. Zero indicates no limit.
6868
- * @param {number} [page] The page number. Zero indicates no page.
6869
6970
  * @param {Array<string>} [labelSelector] Label selector for filtering.
6870
6971
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
6972
+ * @param {number} [page] The page number. Zero indicates no page.
6871
6973
  * @param {*} [options] Override http request option.
6872
6974
  * @throws {RequiredError}
6873
6975
  */
6874
- listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
6976
+ listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
6875
6977
  /**
6876
6978
  * Publish a single page.
6877
6979
  * @param {string} name
@@ -6889,133 +6991,133 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
6889
6991
  updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
6890
6992
  };
6891
6993
  /**
6892
- * Request parameters for draftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
6994
+ * Request parameters for draftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
6893
6995
  * @export
6894
- * @interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest
6996
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest
6895
6997
  */
6896
- interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
6998
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
6897
6999
  /**
6898
7000
  *
6899
7001
  * @type {SinglePageRequest}
6900
- * @memberof ApiHaloRunV1alpha1SinglePageApiDraftSinglePage
7002
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePage
6901
7003
  */
6902
7004
  readonly singlePageRequest: SinglePageRequest;
6903
7005
  }
6904
7006
  /**
6905
- * Request parameters for listSinglePages operation in ApiHaloRunV1alpha1SinglePageApi.
7007
+ * Request parameters for listSinglePages operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
6906
7008
  * @export
6907
- * @interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest
7009
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
6908
7010
  */
6909
- interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
7011
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
6910
7012
  /**
6911
7013
  *
6912
7014
  * @type {Array<string>}
6913
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
7015
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
6914
7016
  */
6915
7017
  readonly contributors?: Array<string>;
6916
7018
  /**
6917
7019
  * Size of one page. Zero indicates no limit.
6918
7020
  * @type {number}
6919
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
7021
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
6920
7022
  */
6921
7023
  readonly size?: number;
6922
- /**
6923
- * The page number. Zero indicates no page.
6924
- * @type {number}
6925
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
6926
- */
6927
- readonly page?: number;
6928
7024
  /**
6929
7025
  * Label selector for filtering.
6930
7026
  * @type {Array<string>}
6931
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
7027
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
6932
7028
  */
6933
7029
  readonly labelSelector?: Array<string>;
6934
7030
  /**
6935
7031
  * Field selector for filtering.
6936
7032
  * @type {Array<string>}
6937
- * @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
7033
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
6938
7034
  */
6939
7035
  readonly fieldSelector?: Array<string>;
7036
+ /**
7037
+ * The page number. Zero indicates no page.
7038
+ * @type {number}
7039
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
7040
+ */
7041
+ readonly page?: number;
6940
7042
  }
6941
7043
  /**
6942
- * Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
7044
+ * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
6943
7045
  * @export
6944
- * @interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest
7046
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest
6945
7047
  */
6946
- interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest {
7048
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest {
6947
7049
  /**
6948
7050
  *
6949
7051
  * @type {string}
6950
- * @memberof ApiHaloRunV1alpha1SinglePageApiPublishSinglePage
7052
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePage
6951
7053
  */
6952
7054
  readonly name: string;
6953
7055
  }
6954
7056
  /**
6955
- * Request parameters for updateDraftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
7057
+ * Request parameters for updateDraftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
6956
7058
  * @export
6957
- * @interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest
7059
+ * @interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest
6958
7060
  */
6959
- interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
7061
+ interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
6960
7062
  /**
6961
7063
  *
6962
7064
  * @type {string}
6963
- * @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
7065
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
6964
7066
  */
6965
7067
  readonly name: string;
6966
7068
  /**
6967
7069
  *
6968
7070
  * @type {SinglePageRequest}
6969
- * @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
7071
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
6970
7072
  */
6971
7073
  readonly singlePageRequest: SinglePageRequest;
6972
7074
  }
6973
7075
  /**
6974
- * ApiHaloRunV1alpha1SinglePageApi - object-oriented interface
7076
+ * ApiConsoleHaloRunV1alpha1SinglePageApi - object-oriented interface
6975
7077
  * @export
6976
- * @class ApiHaloRunV1alpha1SinglePageApi
7078
+ * @class ApiConsoleHaloRunV1alpha1SinglePageApi
6977
7079
  * @extends {BaseAPI}
6978
7080
  */
6979
- declare class ApiHaloRunV1alpha1SinglePageApi extends BaseAPI {
7081
+ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
6980
7082
  /**
6981
7083
  * Draft a single page.
6982
- * @param {ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
7084
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
6983
7085
  * @param {*} [options] Override http request option.
6984
7086
  * @throws {RequiredError}
6985
- * @memberof ApiHaloRunV1alpha1SinglePageApi
7087
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
6986
7088
  */
6987
- draftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7089
+ draftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
6988
7090
  /**
6989
7091
  * List single pages.
6990
- * @param {ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
7092
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
6991
7093
  * @param {*} [options] Override http request option.
6992
7094
  * @throws {RequiredError}
6993
- * @memberof ApiHaloRunV1alpha1SinglePageApi
7095
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
6994
7096
  */
6995
- listSinglePages(requestParameters?: ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedSinglePageList, any>>;
7097
+ listSinglePages(requestParameters?: ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedSinglePageList, any>>;
6996
7098
  /**
6997
7099
  * Publish a single page.
6998
- * @param {ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
7100
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
6999
7101
  * @param {*} [options] Override http request option.
7000
7102
  * @throws {RequiredError}
7001
- * @memberof ApiHaloRunV1alpha1SinglePageApi
7103
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
7002
7104
  */
7003
- publishSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7105
+ publishSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7004
7106
  /**
7005
7107
  * Update a single page.
7006
- * @param {ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
7108
+ * @param {ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
7007
7109
  * @param {*} [options] Override http request option.
7008
7110
  * @throws {RequiredError}
7009
- * @memberof ApiHaloRunV1alpha1SinglePageApi
7111
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
7010
7112
  */
7011
- updateDraftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7113
+ updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
7012
7114
  }
7013
7115
 
7014
7116
  /**
7015
- * ApiHaloRunV1alpha1ThemeApi - axios parameter creator
7117
+ * ApiConsoleHaloRunV1alpha1ThemeApi - axios parameter creator
7016
7118
  * @export
7017
7119
  */
7018
- declare const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
7120
+ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
7019
7121
  /**
7020
7122
  * Install a theme by uploading a zip file.
7021
7123
  * @param {any} file
@@ -7025,10 +7127,10 @@ declare const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Conf
7025
7127
  installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7026
7128
  };
7027
7129
  /**
7028
- * ApiHaloRunV1alpha1ThemeApi - functional programming interface
7130
+ * ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
7029
7131
  * @export
7030
7132
  */
7031
- declare const ApiHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
7133
+ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
7032
7134
  /**
7033
7135
  * Install a theme by uploading a zip file.
7034
7136
  * @param {any} file
@@ -7038,10 +7140,10 @@ declare const ApiHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
7038
7140
  installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
7039
7141
  };
7040
7142
  /**
7041
- * ApiHaloRunV1alpha1ThemeApi - factory interface
7143
+ * ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
7042
7144
  * @export
7043
7145
  */
7044
- declare const ApiHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7146
+ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7045
7147
  /**
7046
7148
  * Install a theme by uploading a zip file.
7047
7149
  * @param {any} file
@@ -7051,40 +7153,40 @@ declare const ApiHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration,
7051
7153
  installTheme(file: any, options?: any): AxiosPromise<Theme>;
7052
7154
  };
7053
7155
  /**
7054
- * Request parameters for installTheme operation in ApiHaloRunV1alpha1ThemeApi.
7156
+ * Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
7055
7157
  * @export
7056
- * @interface ApiHaloRunV1alpha1ThemeApiInstallThemeRequest
7158
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest
7057
7159
  */
7058
- interface ApiHaloRunV1alpha1ThemeApiInstallThemeRequest {
7160
+ interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
7059
7161
  /**
7060
7162
  *
7061
7163
  * @type {any}
7062
- * @memberof ApiHaloRunV1alpha1ThemeApiInstallTheme
7164
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiInstallTheme
7063
7165
  */
7064
7166
  readonly file: any;
7065
7167
  }
7066
7168
  /**
7067
- * ApiHaloRunV1alpha1ThemeApi - object-oriented interface
7169
+ * ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
7068
7170
  * @export
7069
- * @class ApiHaloRunV1alpha1ThemeApi
7171
+ * @class ApiConsoleHaloRunV1alpha1ThemeApi
7070
7172
  * @extends {BaseAPI}
7071
7173
  */
7072
- declare class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
7174
+ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
7073
7175
  /**
7074
7176
  * Install a theme by uploading a zip file.
7075
- * @param {ApiHaloRunV1alpha1ThemeApiInstallThemeRequest} requestParameters Request parameters.
7177
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest} requestParameters Request parameters.
7076
7178
  * @param {*} [options] Override http request option.
7077
7179
  * @throws {RequiredError}
7078
- * @memberof ApiHaloRunV1alpha1ThemeApi
7180
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
7079
7181
  */
7080
- installTheme(requestParameters: ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
7182
+ installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
7081
7183
  }
7082
7184
 
7083
7185
  /**
7084
- * ApiHaloRunV1alpha1UserApi - axios parameter creator
7186
+ * ApiConsoleHaloRunV1alpha1UserApi - axios parameter creator
7085
7187
  * @export
7086
7188
  */
7087
- declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
7189
+ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
7088
7190
  /**
7089
7191
  * Change password of user.
7090
7192
  * @param {string} name Name of user. If the name is equal to \&#39;-\&#39;, it will change the password of current user.
@@ -7116,10 +7218,10 @@ declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Confi
7116
7218
  grantPermission: (name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7117
7219
  };
7118
7220
  /**
7119
- * ApiHaloRunV1alpha1UserApi - functional programming interface
7221
+ * ApiConsoleHaloRunV1alpha1UserApi - functional programming interface
7120
7222
  * @export
7121
7223
  */
7122
- declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
7224
+ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
7123
7225
  /**
7124
7226
  * Change password of user.
7125
7227
  * @param {string} name Name of user. If the name is equal to \&#39;-\&#39;, it will change the password of current user.
@@ -7151,10 +7253,10 @@ declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
7151
7253
  grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
7152
7254
  };
7153
7255
  /**
7154
- * ApiHaloRunV1alpha1UserApi - factory interface
7256
+ * ApiConsoleHaloRunV1alpha1UserApi - factory interface
7155
7257
  * @export
7156
7258
  */
7157
- declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7259
+ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7158
7260
  /**
7159
7261
  * Change password of user.
7160
7262
  * @param {string} name Name of user. If the name is equal to \&#39;-\&#39;, it will change the password of current user.
@@ -7186,94 +7288,94 @@ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration,
7186
7288
  grantPermission(name: string, grantRequest: GrantRequest, options?: any): AxiosPromise<User>;
7187
7289
  };
7188
7290
  /**
7189
- * Request parameters for changePassword operation in ApiHaloRunV1alpha1UserApi.
7291
+ * Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
7190
7292
  * @export
7191
- * @interface ApiHaloRunV1alpha1UserApiChangePasswordRequest
7293
+ * @interface ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest
7192
7294
  */
7193
- interface ApiHaloRunV1alpha1UserApiChangePasswordRequest {
7295
+ interface ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest {
7194
7296
  /**
7195
7297
  * Name of user. If the name is equal to \&#39;-\&#39;, it will change the password of current user.
7196
7298
  * @type {string}
7197
- * @memberof ApiHaloRunV1alpha1UserApiChangePassword
7299
+ * @memberof ApiConsoleHaloRunV1alpha1UserApiChangePassword
7198
7300
  */
7199
7301
  readonly name: string;
7200
7302
  /**
7201
7303
  *
7202
7304
  * @type {ChangePasswordRequest}
7203
- * @memberof ApiHaloRunV1alpha1UserApiChangePassword
7305
+ * @memberof ApiConsoleHaloRunV1alpha1UserApiChangePassword
7204
7306
  */
7205
7307
  readonly changePasswordRequest: ChangePasswordRequest;
7206
7308
  }
7207
7309
  /**
7208
- * Request parameters for getPermissions operation in ApiHaloRunV1alpha1UserApi.
7310
+ * Request parameters for getPermissions operation in ApiConsoleHaloRunV1alpha1UserApi.
7209
7311
  * @export
7210
- * @interface ApiHaloRunV1alpha1UserApiGetPermissionsRequest
7312
+ * @interface ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest
7211
7313
  */
7212
- interface ApiHaloRunV1alpha1UserApiGetPermissionsRequest {
7314
+ interface ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest {
7213
7315
  /**
7214
7316
  * User name
7215
7317
  * @type {string}
7216
- * @memberof ApiHaloRunV1alpha1UserApiGetPermissions
7318
+ * @memberof ApiConsoleHaloRunV1alpha1UserApiGetPermissions
7217
7319
  */
7218
7320
  readonly name: string;
7219
7321
  }
7220
7322
  /**
7221
- * Request parameters for grantPermission operation in ApiHaloRunV1alpha1UserApi.
7323
+ * Request parameters for grantPermission operation in ApiConsoleHaloRunV1alpha1UserApi.
7222
7324
  * @export
7223
- * @interface ApiHaloRunV1alpha1UserApiGrantPermissionRequest
7325
+ * @interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest
7224
7326
  */
7225
- interface ApiHaloRunV1alpha1UserApiGrantPermissionRequest {
7327
+ interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest {
7226
7328
  /**
7227
7329
  * User name
7228
7330
  * @type {string}
7229
- * @memberof ApiHaloRunV1alpha1UserApiGrantPermission
7331
+ * @memberof ApiConsoleHaloRunV1alpha1UserApiGrantPermission
7230
7332
  */
7231
7333
  readonly name: string;
7232
7334
  /**
7233
7335
  *
7234
7336
  * @type {GrantRequest}
7235
- * @memberof ApiHaloRunV1alpha1UserApiGrantPermission
7337
+ * @memberof ApiConsoleHaloRunV1alpha1UserApiGrantPermission
7236
7338
  */
7237
7339
  readonly grantRequest: GrantRequest;
7238
7340
  }
7239
7341
  /**
7240
- * ApiHaloRunV1alpha1UserApi - object-oriented interface
7342
+ * ApiConsoleHaloRunV1alpha1UserApi - object-oriented interface
7241
7343
  * @export
7242
- * @class ApiHaloRunV1alpha1UserApi
7344
+ * @class ApiConsoleHaloRunV1alpha1UserApi
7243
7345
  * @extends {BaseAPI}
7244
7346
  */
7245
- declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
7347
+ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
7246
7348
  /**
7247
7349
  * Change password of user.
7248
- * @param {ApiHaloRunV1alpha1UserApiChangePasswordRequest} requestParameters Request parameters.
7350
+ * @param {ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest} requestParameters Request parameters.
7249
7351
  * @param {*} [options] Override http request option.
7250
7352
  * @throws {RequiredError}
7251
- * @memberof ApiHaloRunV1alpha1UserApi
7353
+ * @memberof ApiConsoleHaloRunV1alpha1UserApi
7252
7354
  */
7253
- changePassword(requestParameters: ApiHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
7355
+ changePassword(requestParameters: ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
7254
7356
  /**
7255
7357
  * Get current user detail
7256
7358
  * @param {*} [options] Override http request option.
7257
7359
  * @throws {RequiredError}
7258
- * @memberof ApiHaloRunV1alpha1UserApi
7360
+ * @memberof ApiConsoleHaloRunV1alpha1UserApi
7259
7361
  */
7260
7362
  getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
7261
7363
  /**
7262
7364
  * Get permissions of user
7263
- * @param {ApiHaloRunV1alpha1UserApiGetPermissionsRequest} requestParameters Request parameters.
7365
+ * @param {ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest} requestParameters Request parameters.
7264
7366
  * @param {*} [options] Override http request option.
7265
7367
  * @throws {RequiredError}
7266
- * @memberof ApiHaloRunV1alpha1UserApi
7368
+ * @memberof ApiConsoleHaloRunV1alpha1UserApi
7267
7369
  */
7268
- getPermissions(requestParameters: ApiHaloRunV1alpha1UserApiGetPermissionsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserPermission, any>>;
7370
+ getPermissions(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserPermission, any>>;
7269
7371
  /**
7270
7372
  * Grant permissions to user
7271
- * @param {ApiHaloRunV1alpha1UserApiGrantPermissionRequest} requestParameters Request parameters.
7373
+ * @param {ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest} requestParameters Request parameters.
7272
7374
  * @param {*} [options] Override http request option.
7273
7375
  * @throws {RequiredError}
7274
- * @memberof ApiHaloRunV1alpha1UserApi
7376
+ * @memberof ApiConsoleHaloRunV1alpha1UserApi
7275
7377
  */
7276
- grantPermission(requestParameters: ApiHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
7378
+ grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
7277
7379
  }
7278
7380
 
7279
7381
  /**
@@ -9773,16 +9875,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
9773
9875
  *
9774
9876
  * @param {string} [policy] Name of policy
9775
9877
  * @param {string} [displayName] Display name of attachment
9776
- * @param {string} [group] Name of group
9777
9878
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
9879
+ * @param {string} [group] Name of group
9778
9880
  * @param {number} [size] Size of one page. Zero indicates no limit.
9779
- * @param {number} [page] The page number. Zero indicates no page.
9780
9881
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9781
9882
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9883
+ * @param {number} [page] The page number. Zero indicates no page.
9782
9884
  * @param {*} [options] Override http request option.
9783
9885
  * @throws {RequiredError}
9784
9886
  */
9785
- searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9887
+ searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9786
9888
  /**
9787
9889
  * Update storage.halo.run/v1alpha1/Attachment
9788
9890
  * @param {string} name Name of attachment
@@ -9841,16 +9943,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
9841
9943
  *
9842
9944
  * @param {string} [policy] Name of policy
9843
9945
  * @param {string} [displayName] Display name of attachment
9844
- * @param {string} [group] Name of group
9845
9946
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
9947
+ * @param {string} [group] Name of group
9846
9948
  * @param {number} [size] Size of one page. Zero indicates no limit.
9847
- * @param {number} [page] The page number. Zero indicates no page.
9848
9949
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9849
9950
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
9951
+ * @param {number} [page] The page number. Zero indicates no page.
9850
9952
  * @param {*} [options] Override http request option.
9851
9953
  * @throws {RequiredError}
9852
9954
  */
9853
- 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>>;
9955
+ searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
9854
9956
  /**
9855
9957
  * Update storage.halo.run/v1alpha1/Attachment
9856
9958
  * @param {string} name Name of attachment
@@ -9909,16 +10011,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
9909
10011
  *
9910
10012
  * @param {string} [policy] Name of policy
9911
10013
  * @param {string} [displayName] Display name of attachment
9912
- * @param {string} [group] Name of group
9913
10014
  * @param {string} [uploadedBy] Name of user who uploaded the attachment
10015
+ * @param {string} [group] Name of group
9914
10016
  * @param {number} [size] Size of one page. Zero indicates no limit.
9915
- * @param {number} [page] The page number. Zero indicates no page.
9916
10017
  * @param {Array<string>} [labelSelector] Label selector for filtering.
9917
10018
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
10019
+ * @param {number} [page] The page number. Zero indicates no page.
9918
10020
  * @param {*} [options] Override http request option.
9919
10021
  * @throws {RequiredError}
9920
10022
  */
9921
- searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
10023
+ searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
9922
10024
  /**
9923
10025
  * Update storage.halo.run/v1alpha1/Attachment
9924
10026
  * @param {string} name Name of attachment
@@ -10026,29 +10128,23 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
10026
10128
  */
10027
10129
  readonly displayName?: string;
10028
10130
  /**
10029
- * Name of group
10131
+ * Name of user who uploaded the attachment
10030
10132
  * @type {string}
10031
10133
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10032
10134
  */
10033
- readonly group?: string;
10135
+ readonly uploadedBy?: string;
10034
10136
  /**
10035
- * Name of user who uploaded the attachment
10137
+ * Name of group
10036
10138
  * @type {string}
10037
10139
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10038
10140
  */
10039
- readonly uploadedBy?: string;
10141
+ readonly group?: string;
10040
10142
  /**
10041
10143
  * Size of one page. Zero indicates no limit.
10042
10144
  * @type {number}
10043
10145
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10044
10146
  */
10045
10147
  readonly size?: number;
10046
- /**
10047
- * The page number. Zero indicates no page.
10048
- * @type {number}
10049
- * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10050
- */
10051
- readonly page?: number;
10052
10148
  /**
10053
10149
  * Label selector for filtering.
10054
10150
  * @type {Array<string>}
@@ -10061,6 +10157,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
10061
10157
  * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10062
10158
  */
10063
10159
  readonly fieldSelector?: Array<string>;
10160
+ /**
10161
+ * The page number. Zero indicates no page.
10162
+ * @type {number}
10163
+ * @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
10164
+ */
10165
+ readonly page?: number;
10064
10166
  }
10065
10167
  /**
10066
10168
  * Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
@@ -13447,4 +13549,4 @@ declare class V1alpha1UserApi extends BaseAPI {
13447
13549
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
13448
13550
  }
13449
13551
 
13450
- export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateCommentRequest, ApiHaloRunV1alpha1CommentApiCreateReplyRequest, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1ReplyApi, ApiHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiHaloRunV1alpha1ReplyApiFactory, ApiHaloRunV1alpha1ReplyApiFp, ApiHaloRunV1alpha1ReplyApiListRepliesRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, 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, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
13552
+ export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };