@halo-dev/api-client 0.0.18 → 0.0.19
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 +124 -103
- package/dist/index.d.ts +232 -205
- package/dist/index.mjs +121 -104
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5672,13 +5672,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5672
5672
|
* @throws {RequiredError}
|
|
5673
5673
|
*/
|
|
5674
5674
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5675
|
-
/**
|
|
5676
|
-
* Draft a single page.
|
|
5677
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5678
|
-
* @param {*} [options] Override http request option.
|
|
5679
|
-
* @throws {RequiredError}
|
|
5680
|
-
*/
|
|
5681
|
-
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5682
5675
|
/**
|
|
5683
5676
|
* List posts.
|
|
5684
5677
|
* @param {Array<string>} [contributors]
|
|
@@ -5692,17 +5685,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5692
5685
|
* @throws {RequiredError}
|
|
5693
5686
|
*/
|
|
5694
5687
|
listPosts: (contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5695
|
-
/**
|
|
5696
|
-
* List single pages.
|
|
5697
|
-
* @param {Array<string>} [contributors]
|
|
5698
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5699
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5700
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5701
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5702
|
-
* @param {*} [options] Override http request option.
|
|
5703
|
-
* @throws {RequiredError}
|
|
5704
|
-
*/
|
|
5705
|
-
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5706
5688
|
/**
|
|
5707
5689
|
* Publish a post.
|
|
5708
5690
|
* @param {string} name
|
|
@@ -5710,13 +5692,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5710
5692
|
* @throws {RequiredError}
|
|
5711
5693
|
*/
|
|
5712
5694
|
publishPost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5713
|
-
/**
|
|
5714
|
-
* Publish a single page.
|
|
5715
|
-
* @param {string} name
|
|
5716
|
-
* @param {*} [options] Override http request option.
|
|
5717
|
-
* @throws {RequiredError}
|
|
5718
|
-
*/
|
|
5719
|
-
publishSinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5720
5695
|
/**
|
|
5721
5696
|
* Update a post.
|
|
5722
5697
|
* @param {string} name
|
|
@@ -5725,14 +5700,6 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
5725
5700
|
* @throws {RequiredError}
|
|
5726
5701
|
*/
|
|
5727
5702
|
updateDraftPost: (name: string, postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5728
|
-
/**
|
|
5729
|
-
* Update a single page.
|
|
5730
|
-
* @param {string} name
|
|
5731
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5732
|
-
* @param {*} [options] Override http request option.
|
|
5733
|
-
* @throws {RequiredError}
|
|
5734
|
-
*/
|
|
5735
|
-
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5736
5703
|
};
|
|
5737
5704
|
/**
|
|
5738
5705
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -5746,13 +5713,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5746
5713
|
* @throws {RequiredError}
|
|
5747
5714
|
*/
|
|
5748
5715
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5749
|
-
/**
|
|
5750
|
-
* Draft a single page.
|
|
5751
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5752
|
-
* @param {*} [options] Override http request option.
|
|
5753
|
-
* @throws {RequiredError}
|
|
5754
|
-
*/
|
|
5755
|
-
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5756
5716
|
/**
|
|
5757
5717
|
* List posts.
|
|
5758
5718
|
* @param {Array<string>} [contributors]
|
|
@@ -5766,17 +5726,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5766
5726
|
* @throws {RequiredError}
|
|
5767
5727
|
*/
|
|
5768
5728
|
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>>;
|
|
5769
|
-
/**
|
|
5770
|
-
* List single pages.
|
|
5771
|
-
* @param {Array<string>} [contributors]
|
|
5772
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5773
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5774
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5775
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5776
|
-
* @param {*} [options] Override http request option.
|
|
5777
|
-
* @throws {RequiredError}
|
|
5778
|
-
*/
|
|
5779
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
5780
5729
|
/**
|
|
5781
5730
|
* Publish a post.
|
|
5782
5731
|
* @param {string} name
|
|
@@ -5784,13 +5733,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5784
5733
|
* @throws {RequiredError}
|
|
5785
5734
|
*/
|
|
5786
5735
|
publishPost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5787
|
-
/**
|
|
5788
|
-
* Publish a single page.
|
|
5789
|
-
* @param {string} name
|
|
5790
|
-
* @param {*} [options] Override http request option.
|
|
5791
|
-
* @throws {RequiredError}
|
|
5792
|
-
*/
|
|
5793
|
-
publishSinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5794
5736
|
/**
|
|
5795
5737
|
* Update a post.
|
|
5796
5738
|
* @param {string} name
|
|
@@ -5799,14 +5741,6 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
5799
5741
|
* @throws {RequiredError}
|
|
5800
5742
|
*/
|
|
5801
5743
|
updateDraftPost(name: string, postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
5802
|
-
/**
|
|
5803
|
-
* Update a single page.
|
|
5804
|
-
* @param {string} name
|
|
5805
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5806
|
-
* @param {*} [options] Override http request option.
|
|
5807
|
-
* @throws {RequiredError}
|
|
5808
|
-
*/
|
|
5809
|
-
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5810
5744
|
};
|
|
5811
5745
|
/**
|
|
5812
5746
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -5820,13 +5754,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5820
5754
|
* @throws {RequiredError}
|
|
5821
5755
|
*/
|
|
5822
5756
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
5823
|
-
/**
|
|
5824
|
-
* Draft a single page.
|
|
5825
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5826
|
-
* @param {*} [options] Override http request option.
|
|
5827
|
-
* @throws {RequiredError}
|
|
5828
|
-
*/
|
|
5829
|
-
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
5830
5757
|
/**
|
|
5831
5758
|
* List posts.
|
|
5832
5759
|
* @param {Array<string>} [contributors]
|
|
@@ -5840,17 +5767,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5840
5767
|
* @throws {RequiredError}
|
|
5841
5768
|
*/
|
|
5842
5769
|
listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
5843
|
-
/**
|
|
5844
|
-
* List single pages.
|
|
5845
|
-
* @param {Array<string>} [contributors]
|
|
5846
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5847
|
-
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5848
|
-
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5849
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5850
|
-
* @param {*} [options] Override http request option.
|
|
5851
|
-
* @throws {RequiredError}
|
|
5852
|
-
*/
|
|
5853
|
-
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
5854
5770
|
/**
|
|
5855
5771
|
* Publish a post.
|
|
5856
5772
|
* @param {string} name
|
|
@@ -5858,13 +5774,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5858
5774
|
* @throws {RequiredError}
|
|
5859
5775
|
*/
|
|
5860
5776
|
publishPost(name: string, options?: any): AxiosPromise<Post>;
|
|
5861
|
-
/**
|
|
5862
|
-
* Publish a single page.
|
|
5863
|
-
* @param {string} name
|
|
5864
|
-
* @param {*} [options] Override http request option.
|
|
5865
|
-
* @throws {RequiredError}
|
|
5866
|
-
*/
|
|
5867
|
-
publishSinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
|
|
5868
5777
|
/**
|
|
5869
5778
|
* Update a post.
|
|
5870
5779
|
* @param {string} name
|
|
@@ -5873,14 +5782,6 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
5873
5782
|
* @throws {RequiredError}
|
|
5874
5783
|
*/
|
|
5875
5784
|
updateDraftPost(name: string, postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
5876
|
-
/**
|
|
5877
|
-
* Update a single page.
|
|
5878
|
-
* @param {string} name
|
|
5879
|
-
* @param {SinglePageRequest} singlePageRequest
|
|
5880
|
-
* @param {*} [options] Override http request option.
|
|
5881
|
-
* @throws {RequiredError}
|
|
5882
|
-
*/
|
|
5883
|
-
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
5884
5785
|
};
|
|
5885
5786
|
/**
|
|
5886
5787
|
* Request parameters for draftPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -5895,19 +5796,6 @@ interface ApiHaloRunV1alpha1PostApiDraftPostRequest {
|
|
|
5895
5796
|
*/
|
|
5896
5797
|
readonly postRequest: PostRequest;
|
|
5897
5798
|
}
|
|
5898
|
-
/**
|
|
5899
|
-
* Request parameters for draftSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
5900
|
-
* @export
|
|
5901
|
-
* @interface ApiHaloRunV1alpha1PostApiDraftSinglePageRequest
|
|
5902
|
-
*/
|
|
5903
|
-
interface ApiHaloRunV1alpha1PostApiDraftSinglePageRequest {
|
|
5904
|
-
/**
|
|
5905
|
-
*
|
|
5906
|
-
* @type {SinglePageRequest}
|
|
5907
|
-
* @memberof ApiHaloRunV1alpha1PostApiDraftSinglePage
|
|
5908
|
-
*/
|
|
5909
|
-
readonly singlePageRequest: SinglePageRequest;
|
|
5910
|
-
}
|
|
5911
5799
|
/**
|
|
5912
5800
|
* Request parameters for listPosts operation in ApiHaloRunV1alpha1PostApi.
|
|
5913
5801
|
* @export
|
|
@@ -5957,43 +5845,6 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
5957
5845
|
*/
|
|
5958
5846
|
readonly page?: number;
|
|
5959
5847
|
}
|
|
5960
|
-
/**
|
|
5961
|
-
* Request parameters for listSinglePages operation in ApiHaloRunV1alpha1PostApi.
|
|
5962
|
-
* @export
|
|
5963
|
-
* @interface ApiHaloRunV1alpha1PostApiListSinglePagesRequest
|
|
5964
|
-
*/
|
|
5965
|
-
interface ApiHaloRunV1alpha1PostApiListSinglePagesRequest {
|
|
5966
|
-
/**
|
|
5967
|
-
*
|
|
5968
|
-
* @type {Array<string>}
|
|
5969
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5970
|
-
*/
|
|
5971
|
-
readonly contributors?: Array<string>;
|
|
5972
|
-
/**
|
|
5973
|
-
* Size of one page. Zero indicates no limit.
|
|
5974
|
-
* @type {number}
|
|
5975
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5976
|
-
*/
|
|
5977
|
-
readonly size?: number;
|
|
5978
|
-
/**
|
|
5979
|
-
* Label selector for filtering.
|
|
5980
|
-
* @type {Array<string>}
|
|
5981
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5982
|
-
*/
|
|
5983
|
-
readonly labelSelector?: Array<string>;
|
|
5984
|
-
/**
|
|
5985
|
-
* Field selector for filtering.
|
|
5986
|
-
* @type {Array<string>}
|
|
5987
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5988
|
-
*/
|
|
5989
|
-
readonly fieldSelector?: Array<string>;
|
|
5990
|
-
/**
|
|
5991
|
-
* The page number. Zero indicates no page.
|
|
5992
|
-
* @type {number}
|
|
5993
|
-
* @memberof ApiHaloRunV1alpha1PostApiListSinglePages
|
|
5994
|
-
*/
|
|
5995
|
-
readonly page?: number;
|
|
5996
|
-
}
|
|
5997
5848
|
/**
|
|
5998
5849
|
* Request parameters for publishPost operation in ApiHaloRunV1alpha1PostApi.
|
|
5999
5850
|
* @export
|
|
@@ -6007,19 +5858,6 @@ interface ApiHaloRunV1alpha1PostApiPublishPostRequest {
|
|
|
6007
5858
|
*/
|
|
6008
5859
|
readonly name: string;
|
|
6009
5860
|
}
|
|
6010
|
-
/**
|
|
6011
|
-
* Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
6012
|
-
* @export
|
|
6013
|
-
* @interface ApiHaloRunV1alpha1PostApiPublishSinglePageRequest
|
|
6014
|
-
*/
|
|
6015
|
-
interface ApiHaloRunV1alpha1PostApiPublishSinglePageRequest {
|
|
6016
|
-
/**
|
|
6017
|
-
*
|
|
6018
|
-
* @type {string}
|
|
6019
|
-
* @memberof ApiHaloRunV1alpha1PostApiPublishSinglePage
|
|
6020
|
-
*/
|
|
6021
|
-
readonly name: string;
|
|
6022
|
-
}
|
|
6023
5861
|
/**
|
|
6024
5862
|
* Request parameters for updateDraftPost operation in ApiHaloRunV1alpha1PostApi.
|
|
6025
5863
|
* @export
|
|
@@ -6039,25 +5877,6 @@ interface ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest {
|
|
|
6039
5877
|
*/
|
|
6040
5878
|
readonly postRequest: PostRequest;
|
|
6041
5879
|
}
|
|
6042
|
-
/**
|
|
6043
|
-
* Request parameters for updateDraftSinglePage operation in ApiHaloRunV1alpha1PostApi.
|
|
6044
|
-
* @export
|
|
6045
|
-
* @interface ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest
|
|
6046
|
-
*/
|
|
6047
|
-
interface ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest {
|
|
6048
|
-
/**
|
|
6049
|
-
*
|
|
6050
|
-
* @type {string}
|
|
6051
|
-
* @memberof ApiHaloRunV1alpha1PostApiUpdateDraftSinglePage
|
|
6052
|
-
*/
|
|
6053
|
-
readonly name: string;
|
|
6054
|
-
/**
|
|
6055
|
-
*
|
|
6056
|
-
* @type {SinglePageRequest}
|
|
6057
|
-
* @memberof ApiHaloRunV1alpha1PostApiUpdateDraftSinglePage
|
|
6058
|
-
*/
|
|
6059
|
-
readonly singlePageRequest: SinglePageRequest;
|
|
6060
|
-
}
|
|
6061
5880
|
/**
|
|
6062
5881
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
6063
5882
|
* @export
|
|
@@ -6074,61 +5893,269 @@ declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
6074
5893
|
*/
|
|
6075
5894
|
draftPost(requestParameters: ApiHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6076
5895
|
/**
|
|
6077
|
-
*
|
|
6078
|
-
* @param {
|
|
5896
|
+
* List posts.
|
|
5897
|
+
* @param {ApiHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
|
|
6079
5898
|
* @param {*} [options] Override http request option.
|
|
6080
5899
|
* @throws {RequiredError}
|
|
6081
5900
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6082
5901
|
*/
|
|
6083
|
-
|
|
5902
|
+
listPosts(requestParameters?: ApiHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedPostList, any>>;
|
|
6084
5903
|
/**
|
|
6085
|
-
*
|
|
6086
|
-
* @param {
|
|
5904
|
+
* Publish a post.
|
|
5905
|
+
* @param {ApiHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
|
|
6087
5906
|
* @param {*} [options] Override http request option.
|
|
6088
5907
|
* @throws {RequiredError}
|
|
6089
5908
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6090
5909
|
*/
|
|
6091
|
-
|
|
5910
|
+
publishPost(requestParameters: ApiHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6092
5911
|
/**
|
|
6093
|
-
*
|
|
6094
|
-
* @param {
|
|
5912
|
+
* Update a post.
|
|
5913
|
+
* @param {ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
6095
5914
|
* @param {*} [options] Override http request option.
|
|
6096
5915
|
* @throws {RequiredError}
|
|
6097
5916
|
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6098
5917
|
*/
|
|
6099
|
-
|
|
5918
|
+
updateDraftPost(requestParameters: ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
5919
|
+
}
|
|
5920
|
+
|
|
5921
|
+
/**
|
|
5922
|
+
* ApiHaloRunV1alpha1SinglePageApi - axios parameter creator
|
|
5923
|
+
* @export
|
|
5924
|
+
*/
|
|
5925
|
+
declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6100
5926
|
/**
|
|
6101
|
-
*
|
|
6102
|
-
* @param {
|
|
5927
|
+
* Draft a single page.
|
|
5928
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6103
5929
|
* @param {*} [options] Override http request option.
|
|
6104
5930
|
* @throws {RequiredError}
|
|
6105
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6106
5931
|
*/
|
|
6107
|
-
|
|
5932
|
+
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5933
|
+
/**
|
|
5934
|
+
* List single pages.
|
|
5935
|
+
* @param {Array<string>} [contributors]
|
|
5936
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5937
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5938
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5939
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5940
|
+
* @param {*} [options] Override http request option.
|
|
5941
|
+
* @throws {RequiredError}
|
|
5942
|
+
*/
|
|
5943
|
+
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6108
5944
|
/**
|
|
6109
5945
|
* Publish a single page.
|
|
6110
|
-
* @param {
|
|
5946
|
+
* @param {string} name
|
|
6111
5947
|
* @param {*} [options] Override http request option.
|
|
6112
5948
|
* @throws {RequiredError}
|
|
6113
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6114
5949
|
*/
|
|
6115
|
-
publishSinglePage(
|
|
5950
|
+
publishSinglePage: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6116
5951
|
/**
|
|
6117
|
-
* Update a
|
|
6118
|
-
* @param {
|
|
5952
|
+
* Update a single page.
|
|
5953
|
+
* @param {string} name
|
|
5954
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6119
5955
|
* @param {*} [options] Override http request option.
|
|
6120
5956
|
* @throws {RequiredError}
|
|
6121
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6122
5957
|
*/
|
|
6123
|
-
|
|
5958
|
+
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5959
|
+
};
|
|
5960
|
+
/**
|
|
5961
|
+
* ApiHaloRunV1alpha1SinglePageApi - functional programming interface
|
|
5962
|
+
* @export
|
|
5963
|
+
*/
|
|
5964
|
+
declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
|
|
5965
|
+
/**
|
|
5966
|
+
* Draft a single page.
|
|
5967
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
5968
|
+
* @param {*} [options] Override http request option.
|
|
5969
|
+
* @throws {RequiredError}
|
|
5970
|
+
*/
|
|
5971
|
+
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5972
|
+
/**
|
|
5973
|
+
* List single pages.
|
|
5974
|
+
* @param {Array<string>} [contributors]
|
|
5975
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5976
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5977
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5978
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5979
|
+
* @param {*} [options] Override http request option.
|
|
5980
|
+
* @throws {RequiredError}
|
|
5981
|
+
*/
|
|
5982
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
5983
|
+
/**
|
|
5984
|
+
* Publish a single page.
|
|
5985
|
+
* @param {string} name
|
|
5986
|
+
* @param {*} [options] Override http request option.
|
|
5987
|
+
* @throws {RequiredError}
|
|
5988
|
+
*/
|
|
5989
|
+
publishSinglePage(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
6124
5990
|
/**
|
|
6125
5991
|
* Update a single page.
|
|
6126
|
-
* @param {
|
|
5992
|
+
* @param {string} name
|
|
5993
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6127
5994
|
* @param {*} [options] Override http request option.
|
|
6128
5995
|
* @throws {RequiredError}
|
|
6129
|
-
* @memberof ApiHaloRunV1alpha1PostApi
|
|
6130
5996
|
*/
|
|
6131
|
-
updateDraftSinglePage(
|
|
5997
|
+
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
5998
|
+
};
|
|
5999
|
+
/**
|
|
6000
|
+
* ApiHaloRunV1alpha1SinglePageApi - factory interface
|
|
6001
|
+
* @export
|
|
6002
|
+
*/
|
|
6003
|
+
declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6004
|
+
/**
|
|
6005
|
+
* Draft a single page.
|
|
6006
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6007
|
+
* @param {*} [options] Override http request option.
|
|
6008
|
+
* @throws {RequiredError}
|
|
6009
|
+
*/
|
|
6010
|
+
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
6011
|
+
/**
|
|
6012
|
+
* List single pages.
|
|
6013
|
+
* @param {Array<string>} [contributors]
|
|
6014
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6015
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6016
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6017
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6018
|
+
* @param {*} [options] Override http request option.
|
|
6019
|
+
* @throws {RequiredError}
|
|
6020
|
+
*/
|
|
6021
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6022
|
+
/**
|
|
6023
|
+
* Publish a single page.
|
|
6024
|
+
* @param {string} name
|
|
6025
|
+
* @param {*} [options] Override http request option.
|
|
6026
|
+
* @throws {RequiredError}
|
|
6027
|
+
*/
|
|
6028
|
+
publishSinglePage(name: string, options?: any): AxiosPromise<SinglePage>;
|
|
6029
|
+
/**
|
|
6030
|
+
* Update a single page.
|
|
6031
|
+
* @param {string} name
|
|
6032
|
+
* @param {SinglePageRequest} singlePageRequest
|
|
6033
|
+
* @param {*} [options] Override http request option.
|
|
6034
|
+
* @throws {RequiredError}
|
|
6035
|
+
*/
|
|
6036
|
+
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
6037
|
+
};
|
|
6038
|
+
/**
|
|
6039
|
+
* Request parameters for draftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6040
|
+
* @export
|
|
6041
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest
|
|
6042
|
+
*/
|
|
6043
|
+
interface ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
6044
|
+
/**
|
|
6045
|
+
*
|
|
6046
|
+
* @type {SinglePageRequest}
|
|
6047
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiDraftSinglePage
|
|
6048
|
+
*/
|
|
6049
|
+
readonly singlePageRequest: SinglePageRequest;
|
|
6050
|
+
}
|
|
6051
|
+
/**
|
|
6052
|
+
* Request parameters for listSinglePages operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6053
|
+
* @export
|
|
6054
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
6055
|
+
*/
|
|
6056
|
+
interface ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
6057
|
+
/**
|
|
6058
|
+
*
|
|
6059
|
+
* @type {Array<string>}
|
|
6060
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6061
|
+
*/
|
|
6062
|
+
readonly contributors?: Array<string>;
|
|
6063
|
+
/**
|
|
6064
|
+
* Size of one page. Zero indicates no limit.
|
|
6065
|
+
* @type {number}
|
|
6066
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6067
|
+
*/
|
|
6068
|
+
readonly size?: number;
|
|
6069
|
+
/**
|
|
6070
|
+
* Label selector for filtering.
|
|
6071
|
+
* @type {Array<string>}
|
|
6072
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6073
|
+
*/
|
|
6074
|
+
readonly labelSelector?: Array<string>;
|
|
6075
|
+
/**
|
|
6076
|
+
* Field selector for filtering.
|
|
6077
|
+
* @type {Array<string>}
|
|
6078
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6079
|
+
*/
|
|
6080
|
+
readonly fieldSelector?: Array<string>;
|
|
6081
|
+
/**
|
|
6082
|
+
* The page number. Zero indicates no page.
|
|
6083
|
+
* @type {number}
|
|
6084
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6085
|
+
*/
|
|
6086
|
+
readonly page?: number;
|
|
6087
|
+
}
|
|
6088
|
+
/**
|
|
6089
|
+
* Request parameters for publishSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6090
|
+
* @export
|
|
6091
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest
|
|
6092
|
+
*/
|
|
6093
|
+
interface ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest {
|
|
6094
|
+
/**
|
|
6095
|
+
*
|
|
6096
|
+
* @type {string}
|
|
6097
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiPublishSinglePage
|
|
6098
|
+
*/
|
|
6099
|
+
readonly name: string;
|
|
6100
|
+
}
|
|
6101
|
+
/**
|
|
6102
|
+
* Request parameters for updateDraftSinglePage operation in ApiHaloRunV1alpha1SinglePageApi.
|
|
6103
|
+
* @export
|
|
6104
|
+
* @interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest
|
|
6105
|
+
*/
|
|
6106
|
+
interface ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
|
|
6107
|
+
/**
|
|
6108
|
+
*
|
|
6109
|
+
* @type {string}
|
|
6110
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6111
|
+
*/
|
|
6112
|
+
readonly name: string;
|
|
6113
|
+
/**
|
|
6114
|
+
*
|
|
6115
|
+
* @type {SinglePageRequest}
|
|
6116
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6117
|
+
*/
|
|
6118
|
+
readonly singlePageRequest: SinglePageRequest;
|
|
6119
|
+
}
|
|
6120
|
+
/**
|
|
6121
|
+
* ApiHaloRunV1alpha1SinglePageApi - object-oriented interface
|
|
6122
|
+
* @export
|
|
6123
|
+
* @class ApiHaloRunV1alpha1SinglePageApi
|
|
6124
|
+
* @extends {BaseAPI}
|
|
6125
|
+
*/
|
|
6126
|
+
declare class ApiHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
6127
|
+
/**
|
|
6128
|
+
* Draft a single page.
|
|
6129
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
|
|
6130
|
+
* @param {*} [options] Override http request option.
|
|
6131
|
+
* @throws {RequiredError}
|
|
6132
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6133
|
+
*/
|
|
6134
|
+
draftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6135
|
+
/**
|
|
6136
|
+
* List single pages.
|
|
6137
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
|
|
6138
|
+
* @param {*} [options] Override http request option.
|
|
6139
|
+
* @throws {RequiredError}
|
|
6140
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6141
|
+
*/
|
|
6142
|
+
listSinglePages(requestParameters?: ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedSinglePageList, any>>;
|
|
6143
|
+
/**
|
|
6144
|
+
* Publish a single page.
|
|
6145
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
|
|
6146
|
+
* @param {*} [options] Override http request option.
|
|
6147
|
+
* @throws {RequiredError}
|
|
6148
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6149
|
+
*/
|
|
6150
|
+
publishSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6151
|
+
/**
|
|
6152
|
+
* Update a single page.
|
|
6153
|
+
* @param {ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
|
|
6154
|
+
* @param {*} [options] Override http request option.
|
|
6155
|
+
* @throws {RequiredError}
|
|
6156
|
+
* @memberof ApiHaloRunV1alpha1SinglePageApi
|
|
6157
|
+
*/
|
|
6158
|
+
updateDraftSinglePage(requestParameters: ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6132
6159
|
}
|
|
6133
6160
|
|
|
6134
6161
|
/**
|
|
@@ -12567,4 +12594,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
12567
12594
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12568
12595
|
}
|
|
12569
12596
|
|
|
12570
|
-
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiDraftSinglePageRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiListSinglePagesRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiPublishSinglePageRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentList, CommentOwner, CommentSpec, CommentSubjectRef, 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, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, 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, 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 };
|
|
12597
|
+
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, 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, CommentList, CommentOwner, CommentSpec, CommentSubjectRef, 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, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, 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, 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 };
|