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