@halo-dev/api-client 0.0.25 → 0.0.27
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 +109 -63
- package/dist/index.d.ts +210 -111
- package/dist/index.mjs +109 -63
- 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 {Metadata}
|
|
1554
1554
|
* @memberof Extension
|
|
1555
1555
|
*/
|
|
1556
|
-
|
|
1556
|
+
metadata: Metadata;
|
|
1557
1557
|
/**
|
|
1558
1558
|
*
|
|
1559
|
-
* @type {
|
|
1559
|
+
* @type {string}
|
|
1560
1560
|
* @memberof Extension
|
|
1561
1561
|
*/
|
|
1562
|
-
|
|
1562
|
+
apiVersion: string;
|
|
1563
1563
|
/**
|
|
1564
1564
|
*
|
|
1565
1565
|
* @type {string}
|
|
1566
1566
|
* @memberof Extension
|
|
1567
1567
|
*/
|
|
1568
|
-
|
|
1568
|
+
kind: string;
|
|
1569
1569
|
}
|
|
1570
1570
|
|
|
1571
1571
|
/**
|
|
@@ -2180,6 +2180,12 @@ interface PostStatus {
|
|
|
2180
2180
|
* @memberof PostStatus
|
|
2181
2181
|
*/
|
|
2182
2182
|
inProgress?: boolean;
|
|
2183
|
+
/**
|
|
2184
|
+
*
|
|
2185
|
+
* @type {number}
|
|
2186
|
+
* @memberof PostStatus
|
|
2187
|
+
*/
|
|
2188
|
+
commentsCount?: number;
|
|
2183
2189
|
/**
|
|
2184
2190
|
*
|
|
2185
2191
|
* @type {Array<string>}
|
|
@@ -2895,6 +2901,12 @@ interface SinglePageStatus {
|
|
|
2895
2901
|
* @memberof SinglePageStatus
|
|
2896
2902
|
*/
|
|
2897
2903
|
inProgress?: boolean;
|
|
2904
|
+
/**
|
|
2905
|
+
*
|
|
2906
|
+
* @type {number}
|
|
2907
|
+
* @memberof SinglePageStatus
|
|
2908
|
+
*/
|
|
2909
|
+
commentsCount?: number;
|
|
2898
2910
|
/**
|
|
2899
2911
|
*
|
|
2900
2912
|
* @type {Array<string>}
|
|
@@ -5932,9 +5944,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
5932
5944
|
/**
|
|
5933
5945
|
* List comments.
|
|
5934
5946
|
* @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.
|
|
5938
5947
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5939
5948
|
* @param {boolean} [approved] Comments approved.
|
|
5940
5949
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -5942,14 +5951,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
5942
5951
|
* @param {string} [ownerName] Commenter name.
|
|
5943
5952
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5944
5953
|
* @param {string} [subjectName] Comment subject name.
|
|
5954
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5955
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5956
|
+
* @param {boolean} [top] Comment top display.
|
|
5945
5957
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5946
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5947
5958
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5948
5959
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5960
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5949
5961
|
* @param {*} [options] Override http request option.
|
|
5950
5962
|
* @throws {RequiredError}
|
|
5951
5963
|
*/
|
|
5952
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
5964
|
+
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>;
|
|
5953
5965
|
};
|
|
5954
5966
|
/**
|
|
5955
5967
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -5974,9 +5986,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
5974
5986
|
/**
|
|
5975
5987
|
* List comments.
|
|
5976
5988
|
* @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.
|
|
5980
5989
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5981
5990
|
* @param {boolean} [approved] Comments approved.
|
|
5982
5991
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -5984,14 +5993,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
5984
5993
|
* @param {string} [ownerName] Commenter name.
|
|
5985
5994
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5986
5995
|
* @param {string} [subjectName] Comment subject name.
|
|
5996
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5997
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5998
|
+
* @param {boolean} [top] Comment top display.
|
|
5987
5999
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5988
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5989
6000
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5990
6001
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6002
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5991
6003
|
* @param {*} [options] Override http request option.
|
|
5992
6004
|
* @throws {RequiredError}
|
|
5993
6005
|
*/
|
|
5994
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6006
|
+
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>>;
|
|
5995
6007
|
};
|
|
5996
6008
|
/**
|
|
5997
6009
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6016,9 +6028,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6016
6028
|
/**
|
|
6017
6029
|
* List comments.
|
|
6018
6030
|
* @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.
|
|
6022
6031
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6023
6032
|
* @param {boolean} [approved] Comments approved.
|
|
6024
6033
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6026,14 +6035,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6026
6035
|
* @param {string} [ownerName] Commenter name.
|
|
6027
6036
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6028
6037
|
* @param {string} [subjectName] Comment subject name.
|
|
6038
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6039
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6040
|
+
* @param {boolean} [top] Comment top display.
|
|
6029
6041
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6030
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6031
6042
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6032
6043
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6044
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6033
6045
|
* @param {*} [options] Override http request option.
|
|
6034
6046
|
* @throws {RequiredError}
|
|
6035
6047
|
*/
|
|
6036
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6048
|
+
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>;
|
|
6037
6049
|
};
|
|
6038
6050
|
/**
|
|
6039
6051
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6079,24 +6091,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6079
6091
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6080
6092
|
*/
|
|
6081
6093
|
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;
|
|
6100
6094
|
/**
|
|
6101
6095
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6102
6096
|
* @type {boolean}
|
|
@@ -6140,17 +6134,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6140
6134
|
*/
|
|
6141
6135
|
readonly subjectName?: string;
|
|
6142
6136
|
/**
|
|
6143
|
-
*
|
|
6144
|
-
* @type {
|
|
6137
|
+
* Comments filtered by keyword.
|
|
6138
|
+
* @type {string}
|
|
6145
6139
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6146
6140
|
*/
|
|
6147
|
-
readonly
|
|
6141
|
+
readonly keyword?: string;
|
|
6148
6142
|
/**
|
|
6149
|
-
* The
|
|
6143
|
+
* The comment is hidden from the theme side.
|
|
6144
|
+
* @type {boolean}
|
|
6145
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6146
|
+
*/
|
|
6147
|
+
readonly hidden?: boolean;
|
|
6148
|
+
/**
|
|
6149
|
+
* Comment top display.
|
|
6150
|
+
* @type {boolean}
|
|
6151
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6152
|
+
*/
|
|
6153
|
+
readonly top?: boolean;
|
|
6154
|
+
/**
|
|
6155
|
+
* Size of one page. Zero indicates no limit.
|
|
6150
6156
|
* @type {number}
|
|
6151
6157
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6152
6158
|
*/
|
|
6153
|
-
readonly
|
|
6159
|
+
readonly size?: number;
|
|
6154
6160
|
/**
|
|
6155
6161
|
* Label selector for filtering.
|
|
6156
6162
|
* @type {Array<string>}
|
|
@@ -6163,6 +6169,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6163
6169
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6164
6170
|
*/
|
|
6165
6171
|
readonly fieldSelector?: Array<string>;
|
|
6172
|
+
/**
|
|
6173
|
+
* The page number. Zero indicates no page.
|
|
6174
|
+
* @type {number}
|
|
6175
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6176
|
+
*/
|
|
6177
|
+
readonly page?: number;
|
|
6166
6178
|
}
|
|
6167
6179
|
/**
|
|
6168
6180
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6493,17 +6505,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6493
6505
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6494
6506
|
/**
|
|
6495
6507
|
* List posts.
|
|
6496
|
-
* @param {
|
|
6497
|
-
* @param {
|
|
6498
|
-
* @param {Array<string>} [
|
|
6508
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6509
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6510
|
+
* @param {Array<string>} [category]
|
|
6511
|
+
* @param {Array<string>} [contributor]
|
|
6512
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6513
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6514
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6515
|
+
* @param {Array<string>} [tag]
|
|
6499
6516
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6500
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6501
6517
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6502
6518
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6519
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6503
6520
|
* @param {*} [options] Override http request option.
|
|
6504
6521
|
* @throws {RequiredError}
|
|
6505
6522
|
*/
|
|
6506
|
-
listPosts: (
|
|
6523
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6507
6524
|
/**
|
|
6508
6525
|
* Publish a post.
|
|
6509
6526
|
* @param {string} name
|
|
@@ -6534,17 +6551,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6534
6551
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
6535
6552
|
/**
|
|
6536
6553
|
* List posts.
|
|
6537
|
-
* @param {
|
|
6538
|
-
* @param {
|
|
6539
|
-
* @param {Array<string>} [
|
|
6554
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6555
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6556
|
+
* @param {Array<string>} [category]
|
|
6557
|
+
* @param {Array<string>} [contributor]
|
|
6558
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6559
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6560
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6561
|
+
* @param {Array<string>} [tag]
|
|
6540
6562
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6541
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6542
6563
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6543
6564
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6565
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6544
6566
|
* @param {*} [options] Override http request option.
|
|
6545
6567
|
* @throws {RequiredError}
|
|
6546
6568
|
*/
|
|
6547
|
-
listPosts(
|
|
6569
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, 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>>;
|
|
6548
6570
|
/**
|
|
6549
6571
|
* Publish a post.
|
|
6550
6572
|
* @param {string} name
|
|
@@ -6575,17 +6597,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6575
6597
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
6576
6598
|
/**
|
|
6577
6599
|
* List posts.
|
|
6578
|
-
* @param {
|
|
6579
|
-
* @param {
|
|
6580
|
-
* @param {Array<string>} [
|
|
6600
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6601
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6602
|
+
* @param {Array<string>} [category]
|
|
6603
|
+
* @param {Array<string>} [contributor]
|
|
6604
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6605
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
6606
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6607
|
+
* @param {Array<string>} [tag]
|
|
6581
6608
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6582
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6583
6609
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6584
6610
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6611
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6585
6612
|
* @param {*} [options] Override http request option.
|
|
6586
6613
|
* @throws {RequiredError}
|
|
6587
6614
|
*/
|
|
6588
|
-
listPosts(
|
|
6615
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6589
6616
|
/**
|
|
6590
6617
|
* Publish a post.
|
|
6591
6618
|
* @param {string} name
|
|
@@ -6621,36 +6648,60 @@ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
|
|
|
6621
6648
|
* @interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest
|
|
6622
6649
|
*/
|
|
6623
6650
|
interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
6651
|
+
/**
|
|
6652
|
+
* Post collation.
|
|
6653
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
6654
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6655
|
+
*/
|
|
6656
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
6624
6657
|
/**
|
|
6625
6658
|
*
|
|
6626
|
-
* @type {
|
|
6659
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
6627
6660
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6628
6661
|
*/
|
|
6629
|
-
readonly
|
|
6662
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
6630
6663
|
/**
|
|
6631
6664
|
*
|
|
6632
6665
|
* @type {Array<string>}
|
|
6633
6666
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6634
6667
|
*/
|
|
6635
|
-
readonly
|
|
6668
|
+
readonly category?: Array<string>;
|
|
6636
6669
|
/**
|
|
6637
6670
|
*
|
|
6638
6671
|
* @type {Array<string>}
|
|
6639
6672
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6640
6673
|
*/
|
|
6641
|
-
readonly
|
|
6674
|
+
readonly contributor?: Array<string>;
|
|
6642
6675
|
/**
|
|
6643
|
-
*
|
|
6644
|
-
* @type {
|
|
6676
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
6677
|
+
* @type {boolean}
|
|
6645
6678
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6646
6679
|
*/
|
|
6647
|
-
readonly
|
|
6680
|
+
readonly sortOrder?: boolean;
|
|
6648
6681
|
/**
|
|
6649
|
-
*
|
|
6682
|
+
* Posts filtered by keyword.
|
|
6683
|
+
* @type {string}
|
|
6684
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6685
|
+
*/
|
|
6686
|
+
readonly keyword?: string;
|
|
6687
|
+
/**
|
|
6688
|
+
*
|
|
6689
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
6690
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6691
|
+
*/
|
|
6692
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
6693
|
+
/**
|
|
6694
|
+
*
|
|
6695
|
+
* @type {Array<string>}
|
|
6696
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6697
|
+
*/
|
|
6698
|
+
readonly tag?: Array<string>;
|
|
6699
|
+
/**
|
|
6700
|
+
* Size of one page. Zero indicates no limit.
|
|
6650
6701
|
* @type {number}
|
|
6651
6702
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6652
6703
|
*/
|
|
6653
|
-
readonly
|
|
6704
|
+
readonly size?: number;
|
|
6654
6705
|
/**
|
|
6655
6706
|
* Label selector for filtering.
|
|
6656
6707
|
* @type {Array<string>}
|
|
@@ -6663,6 +6714,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6663
6714
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6664
6715
|
*/
|
|
6665
6716
|
readonly fieldSelector?: Array<string>;
|
|
6717
|
+
/**
|
|
6718
|
+
* The page number. Zero indicates no page.
|
|
6719
|
+
* @type {number}
|
|
6720
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6721
|
+
*/
|
|
6722
|
+
readonly page?: number;
|
|
6666
6723
|
}
|
|
6667
6724
|
/**
|
|
6668
6725
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -6746,13 +6803,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
6746
6803
|
* List replies.
|
|
6747
6804
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6748
6805
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6749
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6750
6806
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6751
6807
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6808
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6752
6809
|
* @param {*} [options] Override http request option.
|
|
6753
6810
|
* @throws {RequiredError}
|
|
6754
6811
|
*/
|
|
6755
|
-
listReplies: (commentName?: string, size?: number,
|
|
6812
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6756
6813
|
};
|
|
6757
6814
|
/**
|
|
6758
6815
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -6763,13 +6820,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
6763
6820
|
* List replies.
|
|
6764
6821
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6765
6822
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6766
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6767
6823
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6768
6824
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6825
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6769
6826
|
* @param {*} [options] Override http request option.
|
|
6770
6827
|
* @throws {RequiredError}
|
|
6771
6828
|
*/
|
|
6772
|
-
listReplies(commentName?: string, size?: number,
|
|
6829
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
6773
6830
|
};
|
|
6774
6831
|
/**
|
|
6775
6832
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -6780,13 +6837,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
6780
6837
|
* List replies.
|
|
6781
6838
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
6782
6839
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6783
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6784
6840
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6785
6841
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6842
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6786
6843
|
* @param {*} [options] Override http request option.
|
|
6787
6844
|
* @throws {RequiredError}
|
|
6788
6845
|
*/
|
|
6789
|
-
listReplies(commentName?: string, size?: number,
|
|
6846
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
6790
6847
|
};
|
|
6791
6848
|
/**
|
|
6792
6849
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -6806,12 +6863,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
6806
6863
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6807
6864
|
*/
|
|
6808
6865
|
readonly size?: number;
|
|
6809
|
-
/**
|
|
6810
|
-
* The page number. Zero indicates no page.
|
|
6811
|
-
* @type {number}
|
|
6812
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6813
|
-
*/
|
|
6814
|
-
readonly page?: number;
|
|
6815
6866
|
/**
|
|
6816
6867
|
* Label selector for filtering.
|
|
6817
6868
|
* @type {Array<string>}
|
|
@@ -6824,6 +6875,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
6824
6875
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6825
6876
|
*/
|
|
6826
6877
|
readonly fieldSelector?: Array<string>;
|
|
6878
|
+
/**
|
|
6879
|
+
* The page number. Zero indicates no page.
|
|
6880
|
+
* @type {number}
|
|
6881
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6882
|
+
*/
|
|
6883
|
+
readonly page?: number;
|
|
6827
6884
|
}
|
|
6828
6885
|
/**
|
|
6829
6886
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -6858,13 +6915,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
6858
6915
|
* List single pages.
|
|
6859
6916
|
* @param {Array<string>} [contributors]
|
|
6860
6917
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6861
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6862
6918
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6863
6919
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6920
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6864
6921
|
* @param {*} [options] Override http request option.
|
|
6865
6922
|
* @throws {RequiredError}
|
|
6866
6923
|
*/
|
|
6867
|
-
listSinglePages: (contributors?: Array<string>, size?: number,
|
|
6924
|
+
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6868
6925
|
/**
|
|
6869
6926
|
* Publish a single page.
|
|
6870
6927
|
* @param {string} name
|
|
@@ -6897,13 +6954,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
6897
6954
|
* List single pages.
|
|
6898
6955
|
* @param {Array<string>} [contributors]
|
|
6899
6956
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6900
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6901
6957
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6902
6958
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6959
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6903
6960
|
* @param {*} [options] Override http request option.
|
|
6904
6961
|
* @throws {RequiredError}
|
|
6905
6962
|
*/
|
|
6906
|
-
listSinglePages(contributors?: Array<string>, size?: number,
|
|
6963
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
6907
6964
|
/**
|
|
6908
6965
|
* Publish a single page.
|
|
6909
6966
|
* @param {string} name
|
|
@@ -6936,13 +6993,13 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
6936
6993
|
* List single pages.
|
|
6937
6994
|
* @param {Array<string>} [contributors]
|
|
6938
6995
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6939
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6940
6996
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6941
6997
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6998
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6942
6999
|
* @param {*} [options] Override http request option.
|
|
6943
7000
|
* @throws {RequiredError}
|
|
6944
7001
|
*/
|
|
6945
|
-
listSinglePages(contributors?: Array<string>, size?: number,
|
|
7002
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6946
7003
|
/**
|
|
6947
7004
|
* Publish a single page.
|
|
6948
7005
|
* @param {string} name
|
|
@@ -6990,12 +7047,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
6990
7047
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6991
7048
|
*/
|
|
6992
7049
|
readonly size?: number;
|
|
6993
|
-
/**
|
|
6994
|
-
* The page number. Zero indicates no page.
|
|
6995
|
-
* @type {number}
|
|
6996
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6997
|
-
*/
|
|
6998
|
-
readonly page?: number;
|
|
6999
7050
|
/**
|
|
7000
7051
|
* Label selector for filtering.
|
|
7001
7052
|
* @type {Array<string>}
|
|
@@ -7008,6 +7059,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7008
7059
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7009
7060
|
*/
|
|
7010
7061
|
readonly fieldSelector?: Array<string>;
|
|
7062
|
+
/**
|
|
7063
|
+
* The page number. Zero indicates no page.
|
|
7064
|
+
* @type {number}
|
|
7065
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7066
|
+
*/
|
|
7067
|
+
readonly page?: number;
|
|
7011
7068
|
}
|
|
7012
7069
|
/**
|
|
7013
7070
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -7094,6 +7151,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
7094
7151
|
* @throws {RequiredError}
|
|
7095
7152
|
*/
|
|
7096
7153
|
installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7154
|
+
/**
|
|
7155
|
+
* Reload theme setting.
|
|
7156
|
+
* @param {string} name
|
|
7157
|
+
* @param {*} [options] Override http request option.
|
|
7158
|
+
* @throws {RequiredError}
|
|
7159
|
+
*/
|
|
7160
|
+
reloadThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7097
7161
|
};
|
|
7098
7162
|
/**
|
|
7099
7163
|
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
@@ -7107,6 +7171,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
7107
7171
|
* @throws {RequiredError}
|
|
7108
7172
|
*/
|
|
7109
7173
|
installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
7174
|
+
/**
|
|
7175
|
+
* Reload theme setting.
|
|
7176
|
+
* @param {string} name
|
|
7177
|
+
* @param {*} [options] Override http request option.
|
|
7178
|
+
* @throws {RequiredError}
|
|
7179
|
+
*/
|
|
7180
|
+
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
7110
7181
|
};
|
|
7111
7182
|
/**
|
|
7112
7183
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -7120,6 +7191,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
7120
7191
|
* @throws {RequiredError}
|
|
7121
7192
|
*/
|
|
7122
7193
|
installTheme(file: any, options?: any): AxiosPromise<Theme>;
|
|
7194
|
+
/**
|
|
7195
|
+
* Reload theme setting.
|
|
7196
|
+
* @param {string} name
|
|
7197
|
+
* @param {*} [options] Override http request option.
|
|
7198
|
+
* @throws {RequiredError}
|
|
7199
|
+
*/
|
|
7200
|
+
reloadThemeSetting(name: string, options?: any): AxiosPromise<Setting>;
|
|
7123
7201
|
};
|
|
7124
7202
|
/**
|
|
7125
7203
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -7134,6 +7212,19 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
|
|
|
7134
7212
|
*/
|
|
7135
7213
|
readonly file: any;
|
|
7136
7214
|
}
|
|
7215
|
+
/**
|
|
7216
|
+
* Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
7217
|
+
* @export
|
|
7218
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest
|
|
7219
|
+
*/
|
|
7220
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest {
|
|
7221
|
+
/**
|
|
7222
|
+
*
|
|
7223
|
+
* @type {string}
|
|
7224
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSetting
|
|
7225
|
+
*/
|
|
7226
|
+
readonly name: string;
|
|
7227
|
+
}
|
|
7137
7228
|
/**
|
|
7138
7229
|
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
7139
7230
|
* @export
|
|
@@ -7149,6 +7240,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
7149
7240
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7150
7241
|
*/
|
|
7151
7242
|
installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
7243
|
+
/**
|
|
7244
|
+
* Reload theme setting.
|
|
7245
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest} requestParameters Request parameters.
|
|
7246
|
+
* @param {*} [options] Override http request option.
|
|
7247
|
+
* @throws {RequiredError}
|
|
7248
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7249
|
+
*/
|
|
7250
|
+
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
7152
7251
|
}
|
|
7153
7252
|
|
|
7154
7253
|
/**
|
|
@@ -9844,16 +9943,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
9844
9943
|
*
|
|
9845
9944
|
* @param {string} [policy] Name of policy
|
|
9846
9945
|
* @param {string} [displayName] Display name of attachment
|
|
9847
|
-
* @param {string} [group] Name of group
|
|
9848
9946
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9947
|
+
* @param {string} [group] Name of group
|
|
9849
9948
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9850
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9851
9949
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9852
9950
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9951
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9853
9952
|
* @param {*} [options] Override http request option.
|
|
9854
9953
|
* @throws {RequiredError}
|
|
9855
9954
|
*/
|
|
9856
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
9955
|
+
searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9857
9956
|
/**
|
|
9858
9957
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9859
9958
|
* @param {string} name Name of attachment
|
|
@@ -9912,16 +10011,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
9912
10011
|
*
|
|
9913
10012
|
* @param {string} [policy] Name of policy
|
|
9914
10013
|
* @param {string} [displayName] Display name of attachment
|
|
9915
|
-
* @param {string} [group] Name of group
|
|
9916
10014
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10015
|
+
* @param {string} [group] Name of group
|
|
9917
10016
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9918
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9919
10017
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9920
10018
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10019
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9921
10020
|
* @param {*} [options] Override http request option.
|
|
9922
10021
|
* @throws {RequiredError}
|
|
9923
10022
|
*/
|
|
9924
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
10023
|
+
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>>;
|
|
9925
10024
|
/**
|
|
9926
10025
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9927
10026
|
* @param {string} name Name of attachment
|
|
@@ -9980,16 +10079,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
9980
10079
|
*
|
|
9981
10080
|
* @param {string} [policy] Name of policy
|
|
9982
10081
|
* @param {string} [displayName] Display name of attachment
|
|
9983
|
-
* @param {string} [group] Name of group
|
|
9984
10082
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
10083
|
+
* @param {string} [group] Name of group
|
|
9985
10084
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9986
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9987
10085
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9988
10086
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
10087
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9989
10088
|
* @param {*} [options] Override http request option.
|
|
9990
10089
|
* @throws {RequiredError}
|
|
9991
10090
|
*/
|
|
9992
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
10091
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
9993
10092
|
/**
|
|
9994
10093
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9995
10094
|
* @param {string} name Name of attachment
|
|
@@ -10097,29 +10196,23 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
10097
10196
|
*/
|
|
10098
10197
|
readonly displayName?: string;
|
|
10099
10198
|
/**
|
|
10100
|
-
* Name of
|
|
10199
|
+
* Name of user who uploaded the attachment
|
|
10101
10200
|
* @type {string}
|
|
10102
10201
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10103
10202
|
*/
|
|
10104
|
-
readonly
|
|
10203
|
+
readonly uploadedBy?: string;
|
|
10105
10204
|
/**
|
|
10106
|
-
* Name of
|
|
10205
|
+
* Name of group
|
|
10107
10206
|
* @type {string}
|
|
10108
10207
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10109
10208
|
*/
|
|
10110
|
-
readonly
|
|
10209
|
+
readonly group?: string;
|
|
10111
10210
|
/**
|
|
10112
10211
|
* Size of one page. Zero indicates no limit.
|
|
10113
10212
|
* @type {number}
|
|
10114
10213
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10115
10214
|
*/
|
|
10116
10215
|
readonly size?: number;
|
|
10117
|
-
/**
|
|
10118
|
-
* The page number. Zero indicates no page.
|
|
10119
|
-
* @type {number}
|
|
10120
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10121
|
-
*/
|
|
10122
|
-
readonly page?: number;
|
|
10123
10216
|
/**
|
|
10124
10217
|
* Label selector for filtering.
|
|
10125
10218
|
* @type {Array<string>}
|
|
@@ -10132,6 +10225,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
10132
10225
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10133
10226
|
*/
|
|
10134
10227
|
readonly fieldSelector?: Array<string>;
|
|
10228
|
+
/**
|
|
10229
|
+
* The page number. Zero indicates no page.
|
|
10230
|
+
* @type {number}
|
|
10231
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10232
|
+
*/
|
|
10233
|
+
readonly page?: number;
|
|
10135
10234
|
}
|
|
10136
10235
|
/**
|
|
10137
10236
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -13518,4 +13617,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
13518
13617
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13519
13618
|
}
|
|
13520
13619
|
|
|
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 };
|
|
13620
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, 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 };
|