@halo-dev/api-client 0.0.24 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +63 -78
- package/dist/index.d.ts +144 -175
- package/dist/index.mjs +63 -78
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1550,22 +1550,22 @@ interface Excerpt {
|
|
|
1550
1550
|
interface Extension {
|
|
1551
1551
|
/**
|
|
1552
1552
|
*
|
|
1553
|
-
* @type {
|
|
1553
|
+
* @type {string}
|
|
1554
1554
|
* @memberof Extension
|
|
1555
1555
|
*/
|
|
1556
|
-
|
|
1556
|
+
kind: string;
|
|
1557
1557
|
/**
|
|
1558
1558
|
*
|
|
1559
|
-
* @type {
|
|
1559
|
+
* @type {Metadata}
|
|
1560
1560
|
* @memberof Extension
|
|
1561
1561
|
*/
|
|
1562
|
-
|
|
1562
|
+
metadata: Metadata;
|
|
1563
1563
|
/**
|
|
1564
1564
|
*
|
|
1565
1565
|
* @type {string}
|
|
1566
1566
|
* @memberof Extension
|
|
1567
1567
|
*/
|
|
1568
|
-
|
|
1568
|
+
apiVersion: string;
|
|
1569
1569
|
}
|
|
1570
1570
|
|
|
1571
1571
|
/**
|
|
@@ -2180,12 +2180,6 @@ interface PostStatus {
|
|
|
2180
2180
|
* @memberof PostStatus
|
|
2181
2181
|
*/
|
|
2182
2182
|
inProgress?: boolean;
|
|
2183
|
-
/**
|
|
2184
|
-
*
|
|
2185
|
-
* @type {number}
|
|
2186
|
-
* @memberof PostStatus
|
|
2187
|
-
*/
|
|
2188
|
-
commentsCount?: number;
|
|
2189
2183
|
/**
|
|
2190
2184
|
*
|
|
2191
2185
|
* @type {Array<string>}
|
|
@@ -2901,12 +2895,6 @@ interface SinglePageStatus {
|
|
|
2901
2895
|
* @memberof SinglePageStatus
|
|
2902
2896
|
*/
|
|
2903
2897
|
inProgress?: boolean;
|
|
2904
|
-
/**
|
|
2905
|
-
*
|
|
2906
|
-
* @type {number}
|
|
2907
|
-
* @memberof SinglePageStatus
|
|
2908
|
-
*/
|
|
2909
|
-
commentsCount?: number;
|
|
2910
2898
|
/**
|
|
2911
2899
|
*
|
|
2912
2900
|
* @type {Array<string>}
|
|
@@ -4953,27 +4941,53 @@ interface RoleList {
|
|
|
4953
4941
|
/**
|
|
4954
4942
|
*
|
|
4955
4943
|
* @export
|
|
4956
|
-
* @interface
|
|
4944
|
+
* @interface SettingForm
|
|
4957
4945
|
*/
|
|
4958
|
-
interface
|
|
4946
|
+
interface SettingForm {
|
|
4959
4947
|
/**
|
|
4960
4948
|
*
|
|
4961
4949
|
* @type {string}
|
|
4962
|
-
* @memberof
|
|
4950
|
+
* @memberof SettingForm
|
|
4963
4951
|
*/
|
|
4964
4952
|
group: string;
|
|
4965
4953
|
/**
|
|
4966
4954
|
*
|
|
4967
4955
|
* @type {string}
|
|
4968
|
-
* @memberof
|
|
4956
|
+
* @memberof SettingForm
|
|
4969
4957
|
*/
|
|
4970
4958
|
label?: string;
|
|
4971
4959
|
/**
|
|
4972
4960
|
*
|
|
4973
4961
|
* @type {Array<object>}
|
|
4962
|
+
* @memberof SettingForm
|
|
4963
|
+
*/
|
|
4964
|
+
formSchema: Array<object>;
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
/**
|
|
4968
|
+
* Halo Next API
|
|
4969
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4970
|
+
*
|
|
4971
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4972
|
+
*
|
|
4973
|
+
*
|
|
4974
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4975
|
+
* https://openapi-generator.tech
|
|
4976
|
+
* Do not edit the class manually.
|
|
4977
|
+
*/
|
|
4978
|
+
|
|
4979
|
+
/**
|
|
4980
|
+
*
|
|
4981
|
+
* @export
|
|
4982
|
+
* @interface SettingSpec
|
|
4983
|
+
*/
|
|
4984
|
+
interface SettingSpec {
|
|
4985
|
+
/**
|
|
4986
|
+
*
|
|
4987
|
+
* @type {Array<SettingForm>}
|
|
4974
4988
|
* @memberof SettingSpec
|
|
4975
4989
|
*/
|
|
4976
|
-
|
|
4990
|
+
forms: Array<SettingForm>;
|
|
4977
4991
|
}
|
|
4978
4992
|
|
|
4979
4993
|
/**
|
|
@@ -4996,10 +5010,10 @@ interface SettingSpec {
|
|
|
4996
5010
|
interface Setting {
|
|
4997
5011
|
/**
|
|
4998
5012
|
*
|
|
4999
|
-
* @type {
|
|
5013
|
+
* @type {SettingSpec}
|
|
5000
5014
|
* @memberof Setting
|
|
5001
5015
|
*/
|
|
5002
|
-
spec:
|
|
5016
|
+
spec: SettingSpec;
|
|
5003
5017
|
/**
|
|
5004
5018
|
*
|
|
5005
5019
|
* @type {string}
|
|
@@ -5918,6 +5932,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
5918
5932
|
/**
|
|
5919
5933
|
* List comments.
|
|
5920
5934
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5935
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5936
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5937
|
+
* @param {boolean} [top] Comment top display.
|
|
5921
5938
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5922
5939
|
* @param {boolean} [approved] Comments approved.
|
|
5923
5940
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -5925,17 +5942,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
5925
5942
|
* @param {string} [ownerName] Commenter name.
|
|
5926
5943
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5927
5944
|
* @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.
|
|
5931
5945
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5946
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5932
5947
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5933
5948
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5934
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5935
5949
|
* @param {*} [options] Override http request option.
|
|
5936
5950
|
* @throws {RequiredError}
|
|
5937
5951
|
*/
|
|
5938
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
5952
|
+
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>;
|
|
5939
5953
|
};
|
|
5940
5954
|
/**
|
|
5941
5955
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -5960,6 +5974,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
5960
5974
|
/**
|
|
5961
5975
|
* List comments.
|
|
5962
5976
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5977
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5978
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5979
|
+
* @param {boolean} [top] Comment top display.
|
|
5963
5980
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5964
5981
|
* @param {boolean} [approved] Comments approved.
|
|
5965
5982
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -5967,17 +5984,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
5967
5984
|
* @param {string} [ownerName] Commenter name.
|
|
5968
5985
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5969
5986
|
* @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.
|
|
5973
5987
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5988
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5974
5989
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5975
5990
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5976
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5977
5991
|
* @param {*} [options] Override http request option.
|
|
5978
5992
|
* @throws {RequiredError}
|
|
5979
5993
|
*/
|
|
5980
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
5994
|
+
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>>;
|
|
5981
5995
|
};
|
|
5982
5996
|
/**
|
|
5983
5997
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6002,6 +6016,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6002
6016
|
/**
|
|
6003
6017
|
* List comments.
|
|
6004
6018
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6019
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6020
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6021
|
+
* @param {boolean} [top] Comment top display.
|
|
6005
6022
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6006
6023
|
* @param {boolean} [approved] Comments approved.
|
|
6007
6024
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6009,17 +6026,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6009
6026
|
* @param {string} [ownerName] Commenter name.
|
|
6010
6027
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6011
6028
|
* @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.
|
|
6015
6029
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6030
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6016
6031
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6017
6032
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6018
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6019
6033
|
* @param {*} [options] Override http request option.
|
|
6020
6034
|
* @throws {RequiredError}
|
|
6021
6035
|
*/
|
|
6022
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
6036
|
+
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>;
|
|
6023
6037
|
};
|
|
6024
6038
|
/**
|
|
6025
6039
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6065,6 +6079,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6065
6079
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6066
6080
|
*/
|
|
6067
6081
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
6082
|
+
/**
|
|
6083
|
+
* Comments filtered by keyword.
|
|
6084
|
+
* @type {string}
|
|
6085
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6086
|
+
*/
|
|
6087
|
+
readonly keyword?: string;
|
|
6088
|
+
/**
|
|
6089
|
+
* The comment is hidden from the theme side.
|
|
6090
|
+
* @type {boolean}
|
|
6091
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6092
|
+
*/
|
|
6093
|
+
readonly hidden?: boolean;
|
|
6094
|
+
/**
|
|
6095
|
+
* Comment top display.
|
|
6096
|
+
* @type {boolean}
|
|
6097
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6098
|
+
*/
|
|
6099
|
+
readonly top?: boolean;
|
|
6068
6100
|
/**
|
|
6069
6101
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6070
6102
|
* @type {boolean}
|
|
@@ -6108,29 +6140,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6108
6140
|
*/
|
|
6109
6141
|
readonly subjectName?: string;
|
|
6110
6142
|
/**
|
|
6111
|
-
*
|
|
6112
|
-
* @type {
|
|
6113
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6114
|
-
*/
|
|
6115
|
-
readonly keyword?: string;
|
|
6116
|
-
/**
|
|
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}
|
|
6143
|
+
* Size of one page. Zero indicates no limit.
|
|
6144
|
+
* @type {number}
|
|
6125
6145
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6126
6146
|
*/
|
|
6127
|
-
readonly
|
|
6147
|
+
readonly size?: number;
|
|
6128
6148
|
/**
|
|
6129
|
-
*
|
|
6149
|
+
* The page number. Zero indicates no page.
|
|
6130
6150
|
* @type {number}
|
|
6131
6151
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6132
6152
|
*/
|
|
6133
|
-
readonly
|
|
6153
|
+
readonly page?: number;
|
|
6134
6154
|
/**
|
|
6135
6155
|
* Label selector for filtering.
|
|
6136
6156
|
* @type {Array<string>}
|
|
@@ -6143,12 +6163,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6143
6163
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6144
6164
|
*/
|
|
6145
6165
|
readonly fieldSelector?: Array<string>;
|
|
6146
|
-
/**
|
|
6147
|
-
* The page number. Zero indicates no page.
|
|
6148
|
-
* @type {number}
|
|
6149
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6150
|
-
*/
|
|
6151
|
-
readonly page?: number;
|
|
6152
6166
|
}
|
|
6153
6167
|
/**
|
|
6154
6168
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6479,22 +6493,17 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6479
6493
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6480
6494
|
/**
|
|
6481
6495
|
* List posts.
|
|
6482
|
-
* @param {
|
|
6483
|
-
* @param {
|
|
6484
|
-
* @param {Array<string>} [
|
|
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]
|
|
6496
|
+
* @param {Array<string>} [tags]
|
|
6497
|
+
* @param {Array<string>} [contributors]
|
|
6498
|
+
* @param {Array<string>} [categories]
|
|
6490
6499
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6500
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6491
6501
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6492
6502
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6493
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6494
6503
|
* @param {*} [options] Override http request option.
|
|
6495
6504
|
* @throws {RequiredError}
|
|
6496
6505
|
*/
|
|
6497
|
-
listPosts: (
|
|
6506
|
+
listPosts: (tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6498
6507
|
/**
|
|
6499
6508
|
* Publish a post.
|
|
6500
6509
|
* @param {string} name
|
|
@@ -6525,22 +6534,17 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6525
6534
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
6526
6535
|
/**
|
|
6527
6536
|
* List posts.
|
|
6528
|
-
* @param {
|
|
6529
|
-
* @param {
|
|
6530
|
-
* @param {Array<string>} [
|
|
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]
|
|
6537
|
+
* @param {Array<string>} [tags]
|
|
6538
|
+
* @param {Array<string>} [contributors]
|
|
6539
|
+
* @param {Array<string>} [categories]
|
|
6536
6540
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6541
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6537
6542
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6538
6543
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6539
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6540
6544
|
* @param {*} [options] Override http request option.
|
|
6541
6545
|
* @throws {RequiredError}
|
|
6542
6546
|
*/
|
|
6543
|
-
listPosts(
|
|
6547
|
+
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>>;
|
|
6544
6548
|
/**
|
|
6545
6549
|
* Publish a post.
|
|
6546
6550
|
* @param {string} name
|
|
@@ -6571,22 +6575,17 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6571
6575
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
6572
6576
|
/**
|
|
6573
6577
|
* List posts.
|
|
6574
|
-
* @param {
|
|
6575
|
-
* @param {
|
|
6576
|
-
* @param {Array<string>} [
|
|
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]
|
|
6578
|
+
* @param {Array<string>} [tags]
|
|
6579
|
+
* @param {Array<string>} [contributors]
|
|
6580
|
+
* @param {Array<string>} [categories]
|
|
6582
6581
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6582
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6583
6583
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6584
6584
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6585
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6586
6585
|
* @param {*} [options] Override http request option.
|
|
6587
6586
|
* @throws {RequiredError}
|
|
6588
6587
|
*/
|
|
6589
|
-
listPosts(
|
|
6588
|
+
listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
6590
6589
|
/**
|
|
6591
6590
|
* Publish a post.
|
|
6592
6591
|
* @param {string} name
|
|
@@ -6622,60 +6621,36 @@ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
|
|
|
6622
6621
|
* @interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest
|
|
6623
6622
|
*/
|
|
6624
6623
|
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';
|
|
6637
6624
|
/**
|
|
6638
6625
|
*
|
|
6639
6626
|
* @type {Array<string>}
|
|
6640
6627
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6641
6628
|
*/
|
|
6642
|
-
readonly
|
|
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;
|
|
6629
|
+
readonly tags?: Array<string>;
|
|
6649
6630
|
/**
|
|
6650
6631
|
*
|
|
6651
6632
|
* @type {Array<string>}
|
|
6652
6633
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6653
6634
|
*/
|
|
6654
|
-
readonly
|
|
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';
|
|
6635
|
+
readonly contributors?: Array<string>;
|
|
6667
6636
|
/**
|
|
6668
6637
|
*
|
|
6669
6638
|
* @type {Array<string>}
|
|
6670
6639
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6671
6640
|
*/
|
|
6672
|
-
readonly
|
|
6641
|
+
readonly categories?: Array<string>;
|
|
6673
6642
|
/**
|
|
6674
6643
|
* Size of one page. Zero indicates no limit.
|
|
6675
6644
|
* @type {number}
|
|
6676
6645
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6677
6646
|
*/
|
|
6678
6647
|
readonly size?: number;
|
|
6648
|
+
/**
|
|
6649
|
+
* The page number. Zero indicates no page.
|
|
6650
|
+
* @type {number}
|
|
6651
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6652
|
+
*/
|
|
6653
|
+
readonly page?: number;
|
|
6679
6654
|
/**
|
|
6680
6655
|
* Label selector for filtering.
|
|
6681
6656
|
* @type {Array<string>}
|
|
@@ -6688,12 +6663,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6688
6663
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6689
6664
|
*/
|
|
6690
6665
|
readonly fieldSelector?: Array<string>;
|
|
6691
|
-
/**
|
|
6692
|
-
* The page number. Zero indicates no page.
|
|
6693
|
-
* @type {number}
|
|
6694
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6695
|
-
*/
|
|
6696
|
-
readonly page?: number;
|
|
6697
6666
|
}
|
|
6698
6667
|
/**
|
|
6699
6668
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -6777,13 +6746,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
6777
6746
|
* List replies.
|
|
6778
6747
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6779
6748
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6749
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6780
6750
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6781
6751
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6782
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6783
6752
|
* @param {*} [options] Override http request option.
|
|
6784
6753
|
* @throws {RequiredError}
|
|
6785
6754
|
*/
|
|
6786
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6755
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6787
6756
|
};
|
|
6788
6757
|
/**
|
|
6789
6758
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -6794,13 +6763,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
6794
6763
|
* List replies.
|
|
6795
6764
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6796
6765
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6766
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6797
6767
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6798
6768
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6799
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6800
6769
|
* @param {*} [options] Override http request option.
|
|
6801
6770
|
* @throws {RequiredError}
|
|
6802
6771
|
*/
|
|
6803
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6772
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
6804
6773
|
};
|
|
6805
6774
|
/**
|
|
6806
6775
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -6811,13 +6780,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
6811
6780
|
* List replies.
|
|
6812
6781
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6813
6782
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6783
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6814
6784
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6815
6785
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6816
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6817
6786
|
* @param {*} [options] Override http request option.
|
|
6818
6787
|
* @throws {RequiredError}
|
|
6819
6788
|
*/
|
|
6820
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6789
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
6821
6790
|
};
|
|
6822
6791
|
/**
|
|
6823
6792
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -6837,6 +6806,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
6837
6806
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6838
6807
|
*/
|
|
6839
6808
|
readonly size?: number;
|
|
6809
|
+
/**
|
|
6810
|
+
* The page number. Zero indicates no page.
|
|
6811
|
+
* @type {number}
|
|
6812
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6813
|
+
*/
|
|
6814
|
+
readonly page?: number;
|
|
6840
6815
|
/**
|
|
6841
6816
|
* Label selector for filtering.
|
|
6842
6817
|
* @type {Array<string>}
|
|
@@ -6849,12 +6824,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
6849
6824
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6850
6825
|
*/
|
|
6851
6826
|
readonly fieldSelector?: Array<string>;
|
|
6852
|
-
/**
|
|
6853
|
-
* The page number. Zero indicates no page.
|
|
6854
|
-
* @type {number}
|
|
6855
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6856
|
-
*/
|
|
6857
|
-
readonly page?: number;
|
|
6858
6827
|
}
|
|
6859
6828
|
/**
|
|
6860
6829
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -6889,13 +6858,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
6889
6858
|
* List single pages.
|
|
6890
6859
|
* @param {Array<string>} [contributors]
|
|
6891
6860
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6861
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6892
6862
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6893
6863
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6894
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6895
6864
|
* @param {*} [options] Override http request option.
|
|
6896
6865
|
* @throws {RequiredError}
|
|
6897
6866
|
*/
|
|
6898
|
-
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6867
|
+
listSinglePages: (contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6899
6868
|
/**
|
|
6900
6869
|
* Publish a single page.
|
|
6901
6870
|
* @param {string} name
|
|
@@ -6928,13 +6897,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
6928
6897
|
* List single pages.
|
|
6929
6898
|
* @param {Array<string>} [contributors]
|
|
6930
6899
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6900
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6931
6901
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6932
6902
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6933
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6934
6903
|
* @param {*} [options] Override http request option.
|
|
6935
6904
|
* @throws {RequiredError}
|
|
6936
6905
|
*/
|
|
6937
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6906
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
6938
6907
|
/**
|
|
6939
6908
|
* Publish a single page.
|
|
6940
6909
|
* @param {string} name
|
|
@@ -6967,13 +6936,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
6967
6936
|
* List single pages.
|
|
6968
6937
|
* @param {Array<string>} [contributors]
|
|
6969
6938
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6939
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6970
6940
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6971
6941
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6972
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6973
6942
|
* @param {*} [options] Override http request option.
|
|
6974
6943
|
* @throws {RequiredError}
|
|
6975
6944
|
*/
|
|
6976
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
6945
|
+
listSinglePages(contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6977
6946
|
/**
|
|
6978
6947
|
* Publish a single page.
|
|
6979
6948
|
* @param {string} name
|
|
@@ -7021,6 +6990,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7021
6990
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7022
6991
|
*/
|
|
7023
6992
|
readonly size?: number;
|
|
6993
|
+
/**
|
|
6994
|
+
* The page number. Zero indicates no page.
|
|
6995
|
+
* @type {number}
|
|
6996
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6997
|
+
*/
|
|
6998
|
+
readonly page?: number;
|
|
7024
6999
|
/**
|
|
7025
7000
|
* Label selector for filtering.
|
|
7026
7001
|
* @type {Array<string>}
|
|
@@ -7033,12 +7008,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7033
7008
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7034
7009
|
*/
|
|
7035
7010
|
readonly fieldSelector?: Array<string>;
|
|
7036
|
-
/**
|
|
7037
|
-
* The page number. Zero indicates no page.
|
|
7038
|
-
* @type {number}
|
|
7039
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7040
|
-
*/
|
|
7041
|
-
readonly page?: number;
|
|
7042
7011
|
}
|
|
7043
7012
|
/**
|
|
7044
7013
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9875,16 +9844,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
9875
9844
|
*
|
|
9876
9845
|
* @param {string} [policy] Name of policy
|
|
9877
9846
|
* @param {string} [displayName] Display name of attachment
|
|
9878
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9879
9847
|
* @param {string} [group] Name of group
|
|
9848
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9880
9849
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9850
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9881
9851
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9882
9852
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9883
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9884
9853
|
* @param {*} [options] Override http request option.
|
|
9885
9854
|
* @throws {RequiredError}
|
|
9886
9855
|
*/
|
|
9887
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
9856
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9888
9857
|
/**
|
|
9889
9858
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9890
9859
|
* @param {string} name Name of attachment
|
|
@@ -9943,16 +9912,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
9943
9912
|
*
|
|
9944
9913
|
* @param {string} [policy] Name of policy
|
|
9945
9914
|
* @param {string} [displayName] Display name of attachment
|
|
9946
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9947
9915
|
* @param {string} [group] Name of group
|
|
9916
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9948
9917
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9918
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9949
9919
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9950
9920
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9951
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9952
9921
|
* @param {*} [options] Override http request option.
|
|
9953
9922
|
* @throws {RequiredError}
|
|
9954
9923
|
*/
|
|
9955
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9924
|
+
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>>;
|
|
9956
9925
|
/**
|
|
9957
9926
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9958
9927
|
* @param {string} name Name of attachment
|
|
@@ -10011,16 +9980,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
10011
9980
|
*
|
|
10012
9981
|
* @param {string} [policy] Name of policy
|
|
10013
9982
|
* @param {string} [displayName] Display name of attachment
|
|
10014
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10015
9983
|
* @param {string} [group] Name of group
|
|
9984
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10016
9985
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9986
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
10017
9987
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
10018
9988
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10019
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
10020
9989
|
* @param {*} [options] Override http request option.
|
|
10021
9990
|
* @throws {RequiredError}
|
|
10022
9991
|
*/
|
|
10023
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9992
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
10024
9993
|
/**
|
|
10025
9994
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
10026
9995
|
* @param {string} name Name of attachment
|
|
@@ -10128,23 +10097,29 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
10128
10097
|
*/
|
|
10129
10098
|
readonly displayName?: string;
|
|
10130
10099
|
/**
|
|
10131
|
-
* Name of
|
|
10100
|
+
* Name of group
|
|
10132
10101
|
* @type {string}
|
|
10133
10102
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10134
10103
|
*/
|
|
10135
|
-
readonly
|
|
10104
|
+
readonly group?: string;
|
|
10136
10105
|
/**
|
|
10137
|
-
* Name of
|
|
10106
|
+
* Name of user who uploaded the attachment
|
|
10138
10107
|
* @type {string}
|
|
10139
10108
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10140
10109
|
*/
|
|
10141
|
-
readonly
|
|
10110
|
+
readonly uploadedBy?: string;
|
|
10142
10111
|
/**
|
|
10143
10112
|
* Size of one page. Zero indicates no limit.
|
|
10144
10113
|
* @type {number}
|
|
10145
10114
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10146
10115
|
*/
|
|
10147
10116
|
readonly size?: number;
|
|
10117
|
+
/**
|
|
10118
|
+
* The page number. Zero indicates no page.
|
|
10119
|
+
* @type {number}
|
|
10120
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10121
|
+
*/
|
|
10122
|
+
readonly page?: number;
|
|
10148
10123
|
/**
|
|
10149
10124
|
* Label selector for filtering.
|
|
10150
10125
|
* @type {Array<string>}
|
|
@@ -10157,12 +10132,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
10157
10132
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10158
10133
|
*/
|
|
10159
10134
|
readonly fieldSelector?: Array<string>;
|
|
10160
|
-
/**
|
|
10161
|
-
* The page number. Zero indicates no page.
|
|
10162
|
-
* @type {number}
|
|
10163
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10164
|
-
*/
|
|
10165
|
-
readonly page?: number;
|
|
10166
10135
|
}
|
|
10167
10136
|
/**
|
|
10168
10137
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -13549,4 +13518,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
13549
13518
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13550
13519
|
}
|
|
13551
13520
|
|
|
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 };
|
|
13521
|
+
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, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|