@halo-dev/api-client 0.0.69 → 0.0.70
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 +93 -86
- package/dist/index.d.ts +156 -130
- package/dist/index.mjs +93 -87
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -69,7 +69,7 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
69
69
|
|
|
70
70
|
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
71
71
|
return {
|
|
72
|
-
searchAttachments: async (policy, sort, displayName, group, ungrouped, uploadedBy, size, page,
|
|
72
|
+
searchAttachments: async (policy, sort, displayName, group, ungrouped, uploadedBy, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
73
73
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
74
74
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
75
75
|
let baseOptions;
|
|
@@ -105,12 +105,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
105
105
|
if (page !== void 0) {
|
|
106
106
|
localVarQueryParameter["page"] = page;
|
|
107
107
|
}
|
|
108
|
-
if (labelSelector) {
|
|
109
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
110
|
-
}
|
|
111
108
|
if (fieldSelector) {
|
|
112
109
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
113
110
|
}
|
|
111
|
+
if (labelSelector) {
|
|
112
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
113
|
+
}
|
|
114
114
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
115
115
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
116
116
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -158,8 +158,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
158
158
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
159
159
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
160
160
|
return {
|
|
161
|
-
async searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page,
|
|
162
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page,
|
|
161
|
+
async searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page, fieldSelector, labelSelector, options) {
|
|
162
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page, fieldSelector, labelSelector, options);
|
|
163
163
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
164
164
|
},
|
|
165
165
|
async uploadAttachment(file, policyName, groupName, options) {
|
|
@@ -171,8 +171,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
171
171
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
172
172
|
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
173
173
|
return {
|
|
174
|
-
searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page,
|
|
175
|
-
return localVarFp.searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page,
|
|
174
|
+
searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page, fieldSelector, labelSelector, options) {
|
|
175
|
+
return localVarFp.searchAttachments(policy, sort, displayName, group, ungrouped, uploadedBy, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
176
176
|
},
|
|
177
177
|
uploadAttachment(file, policyName, groupName, options) {
|
|
178
178
|
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
@@ -181,7 +181,7 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, ba
|
|
|
181
181
|
};
|
|
182
182
|
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
183
183
|
searchAttachments(requestParameters = {}, options) {
|
|
184
|
-
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.sort, requestParameters.displayName, requestParameters.group, requestParameters.ungrouped, requestParameters.uploadedBy, requestParameters.size, requestParameters.page, requestParameters.
|
|
184
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.sort, requestParameters.displayName, requestParameters.group, requestParameters.ungrouped, requestParameters.uploadedBy, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
185
185
|
}
|
|
186
186
|
uploadAttachment(requestParameters, options) {
|
|
187
187
|
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -237,7 +237,7 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
237
237
|
options: localVarRequestOptions
|
|
238
238
|
};
|
|
239
239
|
},
|
|
240
|
-
listComments: async (sort,
|
|
240
|
+
listComments: async (sort, top, hidden, keyword, approved, allowNotification, sortOrder, ownerKind, ownerName, subjectKind, subjectName, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
241
241
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/comments`;
|
|
242
242
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
243
243
|
let baseOptions;
|
|
@@ -252,17 +252,14 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
252
252
|
if (sort !== void 0) {
|
|
253
253
|
localVarQueryParameter["sort"] = sort;
|
|
254
254
|
}
|
|
255
|
-
if (
|
|
256
|
-
localVarQueryParameter["
|
|
255
|
+
if (top !== void 0) {
|
|
256
|
+
localVarQueryParameter["top"] = top;
|
|
257
257
|
}
|
|
258
258
|
if (hidden !== void 0) {
|
|
259
259
|
localVarQueryParameter["hidden"] = hidden;
|
|
260
260
|
}
|
|
261
|
-
if (
|
|
262
|
-
localVarQueryParameter["
|
|
263
|
-
}
|
|
264
|
-
if (sortOrder !== void 0) {
|
|
265
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
261
|
+
if (keyword !== void 0) {
|
|
262
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
266
263
|
}
|
|
267
264
|
if (approved !== void 0) {
|
|
268
265
|
localVarQueryParameter["approved"] = approved;
|
|
@@ -270,6 +267,9 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
270
267
|
if (allowNotification !== void 0) {
|
|
271
268
|
localVarQueryParameter["allowNotification"] = allowNotification;
|
|
272
269
|
}
|
|
270
|
+
if (sortOrder !== void 0) {
|
|
271
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
272
|
+
}
|
|
273
273
|
if (ownerKind !== void 0) {
|
|
274
274
|
localVarQueryParameter["ownerKind"] = ownerKind;
|
|
275
275
|
}
|
|
@@ -288,12 +288,12 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
288
288
|
if (page !== void 0) {
|
|
289
289
|
localVarQueryParameter["page"] = page;
|
|
290
290
|
}
|
|
291
|
-
if (labelSelector) {
|
|
292
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
293
|
-
}
|
|
294
291
|
if (fieldSelector) {
|
|
295
292
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
296
293
|
}
|
|
294
|
+
if (labelSelector) {
|
|
295
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
296
|
+
}
|
|
297
297
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
298
298
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
299
299
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -315,8 +315,8 @@ const ApiConsoleHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
|
315
315
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply(name, replyRequest, options);
|
|
316
316
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
317
317
|
},
|
|
318
|
-
async listComments(sort,
|
|
319
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort,
|
|
318
|
+
async listComments(sort, top, hidden, keyword, approved, allowNotification, sortOrder, ownerKind, ownerName, subjectKind, subjectName, size, page, fieldSelector, labelSelector, options) {
|
|
319
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, top, hidden, keyword, approved, allowNotification, sortOrder, ownerKind, ownerName, subjectKind, subjectName, size, page, fieldSelector, labelSelector, options);
|
|
320
320
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
321
321
|
}
|
|
322
322
|
};
|
|
@@ -330,8 +330,8 @@ const ApiConsoleHaloRunV1alpha1CommentApiFactory = function(configuration, baseP
|
|
|
330
330
|
createReply(name, replyRequest, options) {
|
|
331
331
|
return localVarFp.createReply(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
332
332
|
},
|
|
333
|
-
listComments(sort,
|
|
334
|
-
return localVarFp.listComments(sort,
|
|
333
|
+
listComments(sort, top, hidden, keyword, approved, allowNotification, sortOrder, ownerKind, ownerName, subjectKind, subjectName, size, page, fieldSelector, labelSelector, options) {
|
|
334
|
+
return localVarFp.listComments(sort, top, hidden, keyword, approved, allowNotification, sortOrder, ownerKind, ownerName, subjectKind, subjectName, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
335
335
|
}
|
|
336
336
|
};
|
|
337
337
|
};
|
|
@@ -343,7 +343,7 @@ class ApiConsoleHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
343
343
|
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).createReply(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
344
344
|
}
|
|
345
345
|
listComments(requestParameters = {}, options) {
|
|
346
|
-
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.
|
|
346
|
+
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.top, requestParameters.hidden, requestParameters.keyword, requestParameters.approved, requestParameters.allowNotification, requestParameters.sortOrder, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
349
|
|
|
@@ -580,7 +580,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
580
580
|
options: localVarRequestOptions
|
|
581
581
|
};
|
|
582
582
|
},
|
|
583
|
-
listPlugins: async (sort, enabled, keyword, size, page,
|
|
583
|
+
listPlugins: async (sort, enabled, keyword, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
584
584
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
585
585
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
586
586
|
let baseOptions;
|
|
@@ -607,12 +607,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
607
607
|
if (page !== void 0) {
|
|
608
608
|
localVarQueryParameter["page"] = page;
|
|
609
609
|
}
|
|
610
|
-
if (labelSelector) {
|
|
611
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
612
|
-
}
|
|
613
610
|
if (fieldSelector) {
|
|
614
611
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
615
612
|
}
|
|
613
|
+
if (labelSelector) {
|
|
614
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
615
|
+
}
|
|
616
616
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
617
617
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
618
618
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -711,8 +711,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
711
711
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
712
712
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
713
713
|
},
|
|
714
|
-
async listPlugins(sort, enabled, keyword, size, page,
|
|
715
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page,
|
|
714
|
+
async listPlugins(sort, enabled, keyword, size, page, fieldSelector, labelSelector, options) {
|
|
715
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, fieldSelector, labelSelector, options);
|
|
716
716
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
717
717
|
},
|
|
718
718
|
async resetPluginConfig(name, options) {
|
|
@@ -741,8 +741,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
741
741
|
installPlugin(file, options) {
|
|
742
742
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
743
743
|
},
|
|
744
|
-
listPlugins(sort, enabled, keyword, size, page,
|
|
745
|
-
return localVarFp.listPlugins(sort, enabled, keyword, size, page,
|
|
744
|
+
listPlugins(sort, enabled, keyword, size, page, fieldSelector, labelSelector, options) {
|
|
745
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
746
746
|
},
|
|
747
747
|
resetPluginConfig(name, options) {
|
|
748
748
|
return localVarFp.resetPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
@@ -766,7 +766,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
766
766
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
767
767
|
}
|
|
768
768
|
listPlugins(requestParameters = {}, options) {
|
|
769
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.
|
|
769
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
770
770
|
}
|
|
771
771
|
resetPluginConfig(requestParameters, options) {
|
|
772
772
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -804,7 +804,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
804
804
|
options: localVarRequestOptions
|
|
805
805
|
};
|
|
806
806
|
},
|
|
807
|
-
listPosts: async (sort, tag, keyword,
|
|
807
|
+
listPosts: async (sort, visible, tag, keyword, publishPhase, category, contributor, sortOrder, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
808
808
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
809
809
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
810
810
|
let baseOptions;
|
|
@@ -819,14 +819,20 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
819
819
|
if (sort !== void 0) {
|
|
820
820
|
localVarQueryParameter["sort"] = sort;
|
|
821
821
|
}
|
|
822
|
+
if (visible !== void 0) {
|
|
823
|
+
localVarQueryParameter["visible"] = visible;
|
|
824
|
+
}
|
|
822
825
|
if (tag) {
|
|
823
826
|
localVarQueryParameter["tag"] = Array.from(tag);
|
|
824
827
|
}
|
|
825
828
|
if (keyword !== void 0) {
|
|
826
829
|
localVarQueryParameter["keyword"] = keyword;
|
|
827
830
|
}
|
|
828
|
-
if (
|
|
829
|
-
localVarQueryParameter["
|
|
831
|
+
if (publishPhase !== void 0) {
|
|
832
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
833
|
+
}
|
|
834
|
+
if (category) {
|
|
835
|
+
localVarQueryParameter["category"] = Array.from(category);
|
|
830
836
|
}
|
|
831
837
|
if (contributor) {
|
|
832
838
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
@@ -834,24 +840,18 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
834
840
|
if (sortOrder !== void 0) {
|
|
835
841
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
836
842
|
}
|
|
837
|
-
if (publishPhase !== void 0) {
|
|
838
|
-
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
839
|
-
}
|
|
840
|
-
if (category) {
|
|
841
|
-
localVarQueryParameter["category"] = Array.from(category);
|
|
842
|
-
}
|
|
843
843
|
if (size !== void 0) {
|
|
844
844
|
localVarQueryParameter["size"] = size;
|
|
845
845
|
}
|
|
846
846
|
if (page !== void 0) {
|
|
847
847
|
localVarQueryParameter["page"] = page;
|
|
848
848
|
}
|
|
849
|
-
if (labelSelector) {
|
|
850
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
851
|
-
}
|
|
852
849
|
if (fieldSelector) {
|
|
853
850
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
854
851
|
}
|
|
852
|
+
if (labelSelector) {
|
|
853
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
854
|
+
}
|
|
855
855
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
856
856
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
857
857
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -983,8 +983,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
983
983
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
984
984
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
985
985
|
},
|
|
986
|
-
async listPosts(sort, tag, keyword,
|
|
987
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, keyword,
|
|
986
|
+
async listPosts(sort, visible, tag, keyword, publishPhase, category, contributor, sortOrder, size, page, fieldSelector, labelSelector, options) {
|
|
987
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, visible, tag, keyword, publishPhase, category, contributor, sortOrder, size, page, fieldSelector, labelSelector, options);
|
|
988
988
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
989
989
|
},
|
|
990
990
|
async publishPost(name, headSnapshot, options) {
|
|
@@ -1015,8 +1015,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
1015
1015
|
draftPost(postRequest, options) {
|
|
1016
1016
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
1017
1017
|
},
|
|
1018
|
-
listPosts(sort, tag, keyword,
|
|
1019
|
-
return localVarFp.listPosts(sort, tag, keyword,
|
|
1018
|
+
listPosts(sort, visible, tag, keyword, publishPhase, category, contributor, sortOrder, size, page, fieldSelector, labelSelector, options) {
|
|
1019
|
+
return localVarFp.listPosts(sort, visible, tag, keyword, publishPhase, category, contributor, sortOrder, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
1020
1020
|
},
|
|
1021
1021
|
publishPost(name, headSnapshot, options) {
|
|
1022
1022
|
return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
|
|
@@ -1040,7 +1040,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
1040
1040
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1041
1041
|
}
|
|
1042
1042
|
listPosts(requestParameters = {}, options) {
|
|
1043
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
1043
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.visible, requestParameters.tag, requestParameters.keyword, requestParameters.publishPhase, requestParameters.category, requestParameters.contributor, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1044
1044
|
}
|
|
1045
1045
|
publishPost(requestParameters, options) {
|
|
1046
1046
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1061,7 +1061,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
1061
1061
|
|
|
1062
1062
|
const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
1063
1063
|
return {
|
|
1064
|
-
listReplies: async (commentName, size, page,
|
|
1064
|
+
listReplies: async (commentName, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
1065
1065
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/replies`;
|
|
1066
1066
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1067
1067
|
let baseOptions;
|
|
@@ -1082,12 +1082,12 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
1082
1082
|
if (page !== void 0) {
|
|
1083
1083
|
localVarQueryParameter["page"] = page;
|
|
1084
1084
|
}
|
|
1085
|
-
if (labelSelector) {
|
|
1086
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1087
|
-
}
|
|
1088
1085
|
if (fieldSelector) {
|
|
1089
1086
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1090
1087
|
}
|
|
1088
|
+
if (labelSelector) {
|
|
1089
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1090
|
+
}
|
|
1091
1091
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1092
1092
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1093
1093
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1101,8 +1101,8 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
1101
1101
|
const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
1102
1102
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
1103
1103
|
return {
|
|
1104
|
-
async listReplies(commentName, size, page,
|
|
1105
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page,
|
|
1104
|
+
async listReplies(commentName, size, page, fieldSelector, labelSelector, options) {
|
|
1105
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page, fieldSelector, labelSelector, options);
|
|
1106
1106
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1107
1107
|
}
|
|
1108
1108
|
};
|
|
@@ -1110,14 +1110,14 @@ const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
|
1110
1110
|
const ApiConsoleHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
1111
1111
|
const localVarFp = ApiConsoleHaloRunV1alpha1ReplyApiFp(configuration);
|
|
1112
1112
|
return {
|
|
1113
|
-
listReplies(commentName, size, page,
|
|
1114
|
-
return localVarFp.listReplies(commentName, size, page,
|
|
1113
|
+
listReplies(commentName, size, page, fieldSelector, labelSelector, options) {
|
|
1114
|
+
return localVarFp.listReplies(commentName, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
1115
1115
|
}
|
|
1116
1116
|
};
|
|
1117
1117
|
};
|
|
1118
1118
|
class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
1119
1119
|
listReplies(requestParameters = {}, options) {
|
|
1120
|
-
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.
|
|
1120
|
+
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1121
1121
|
}
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
@@ -1146,7 +1146,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1146
1146
|
options: localVarRequestOptions
|
|
1147
1147
|
};
|
|
1148
1148
|
},
|
|
1149
|
-
listSinglePages: async (sort, keyword,
|
|
1149
|
+
listSinglePages: async (sort, visible, keyword, publishPhase, contributor, sortOrder, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
1150
1150
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
1151
1151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1152
1152
|
let baseOptions;
|
|
@@ -1161,11 +1161,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1161
1161
|
if (sort !== void 0) {
|
|
1162
1162
|
localVarQueryParameter["sort"] = sort;
|
|
1163
1163
|
}
|
|
1164
|
+
if (visible !== void 0) {
|
|
1165
|
+
localVarQueryParameter["visible"] = visible;
|
|
1166
|
+
}
|
|
1164
1167
|
if (keyword !== void 0) {
|
|
1165
1168
|
localVarQueryParameter["keyword"] = keyword;
|
|
1166
1169
|
}
|
|
1167
|
-
if (
|
|
1168
|
-
localVarQueryParameter["
|
|
1170
|
+
if (publishPhase !== void 0) {
|
|
1171
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
1169
1172
|
}
|
|
1170
1173
|
if (contributor) {
|
|
1171
1174
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
@@ -1173,21 +1176,18 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1173
1176
|
if (sortOrder !== void 0) {
|
|
1174
1177
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
1175
1178
|
}
|
|
1176
|
-
if (publishPhase !== void 0) {
|
|
1177
|
-
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
1178
|
-
}
|
|
1179
1179
|
if (size !== void 0) {
|
|
1180
1180
|
localVarQueryParameter["size"] = size;
|
|
1181
1181
|
}
|
|
1182
1182
|
if (page !== void 0) {
|
|
1183
1183
|
localVarQueryParameter["page"] = page;
|
|
1184
1184
|
}
|
|
1185
|
-
if (labelSelector) {
|
|
1186
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1187
|
-
}
|
|
1188
1185
|
if (fieldSelector) {
|
|
1189
1186
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1190
1187
|
}
|
|
1188
|
+
if (labelSelector) {
|
|
1189
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1190
|
+
}
|
|
1191
1191
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1192
1192
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1193
1193
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1274,8 +1274,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1274
1274
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1275
1275
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1276
1276
|
},
|
|
1277
|
-
async listSinglePages(sort, keyword,
|
|
1278
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword,
|
|
1277
|
+
async listSinglePages(sort, visible, keyword, publishPhase, contributor, sortOrder, size, page, fieldSelector, labelSelector, options) {
|
|
1278
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, publishPhase, contributor, sortOrder, size, page, fieldSelector, labelSelector, options);
|
|
1279
1279
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1280
1280
|
},
|
|
1281
1281
|
async publishSinglePage(name, options) {
|
|
@@ -1298,8 +1298,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1298
1298
|
draftSinglePage(singlePageRequest, options) {
|
|
1299
1299
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1300
1300
|
},
|
|
1301
|
-
listSinglePages(sort, keyword,
|
|
1302
|
-
return localVarFp.listSinglePages(sort, keyword,
|
|
1301
|
+
listSinglePages(sort, visible, keyword, publishPhase, contributor, sortOrder, size, page, fieldSelector, labelSelector, options) {
|
|
1302
|
+
return localVarFp.listSinglePages(sort, visible, keyword, publishPhase, contributor, sortOrder, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
1303
1303
|
},
|
|
1304
1304
|
publishSinglePage(name, options) {
|
|
1305
1305
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1317,7 +1317,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1317
1317
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1318
1318
|
}
|
|
1319
1319
|
listSinglePages(requestParameters = {}, options) {
|
|
1320
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1320
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.publishPhase, requestParameters.contributor, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1321
1321
|
}
|
|
1322
1322
|
publishSinglePage(requestParameters, options) {
|
|
1323
1323
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1489,7 +1489,7 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1489
1489
|
options: localVarRequestOptions
|
|
1490
1490
|
};
|
|
1491
1491
|
},
|
|
1492
|
-
listThemes: async (uninstalled, size, page,
|
|
1492
|
+
listThemes: async (uninstalled, size, page, fieldSelector, labelSelector, options = {}) => {
|
|
1493
1493
|
assertParamExists("listThemes", "uninstalled", uninstalled);
|
|
1494
1494
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes`;
|
|
1495
1495
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1511,12 +1511,12 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1511
1511
|
if (page !== void 0) {
|
|
1512
1512
|
localVarQueryParameter["page"] = page;
|
|
1513
1513
|
}
|
|
1514
|
-
if (labelSelector) {
|
|
1515
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1516
|
-
}
|
|
1517
1514
|
if (fieldSelector) {
|
|
1518
1515
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1519
1516
|
}
|
|
1517
|
+
if (labelSelector) {
|
|
1518
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1519
|
+
}
|
|
1520
1520
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1521
1521
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1522
1522
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1644,8 +1644,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
|
|
|
1644
1644
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
|
|
1645
1645
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1646
1646
|
},
|
|
1647
|
-
async listThemes(uninstalled, size, page,
|
|
1648
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size, page,
|
|
1647
|
+
async listThemes(uninstalled, size, page, fieldSelector, labelSelector, options) {
|
|
1648
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size, page, fieldSelector, labelSelector, options);
|
|
1649
1649
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1650
1650
|
},
|
|
1651
1651
|
async reload(name, options) {
|
|
@@ -1684,8 +1684,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
|
|
|
1684
1684
|
installTheme(file, options) {
|
|
1685
1685
|
return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
|
|
1686
1686
|
},
|
|
1687
|
-
listThemes(uninstalled, size, page,
|
|
1688
|
-
return localVarFp.listThemes(uninstalled, size, page,
|
|
1687
|
+
listThemes(uninstalled, size, page, fieldSelector, labelSelector, options) {
|
|
1688
|
+
return localVarFp.listThemes(uninstalled, size, page, fieldSelector, labelSelector, options).then((request) => request(axios, basePath));
|
|
1689
1689
|
},
|
|
1690
1690
|
reload(name, options) {
|
|
1691
1691
|
return localVarFp.reload(name, options).then((request) => request(axios, basePath));
|
|
@@ -1718,7 +1718,7 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
1718
1718
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
1719
1719
|
}
|
|
1720
1720
|
listThemes(requestParameters, options) {
|
|
1721
|
-
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.page, requestParameters.
|
|
1721
|
+
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.page, requestParameters.fieldSelector, requestParameters.labelSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1722
1722
|
}
|
|
1723
1723
|
reload(requestParameters, options) {
|
|
1724
1724
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reload(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2031,12 +2031,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
2031
2031
|
if (version !== void 0) {
|
|
2032
2032
|
localVarQueryParameter["version"] = version;
|
|
2033
2033
|
}
|
|
2034
|
-
if (kind !== void 0) {
|
|
2035
|
-
localVarQueryParameter["kind"] = kind;
|
|
2036
|
-
}
|
|
2037
2034
|
if (group !== void 0) {
|
|
2038
2035
|
localVarQueryParameter["group"] = group;
|
|
2039
2036
|
}
|
|
2037
|
+
if (kind !== void 0) {
|
|
2038
|
+
localVarQueryParameter["kind"] = kind;
|
|
2039
|
+
}
|
|
2040
2040
|
if (size !== void 0) {
|
|
2041
2041
|
localVarQueryParameter["size"] = size;
|
|
2042
2042
|
}
|
|
@@ -7046,4 +7046,10 @@ const SinglePageSpecVisibleEnum = {
|
|
|
7046
7046
|
Private: "PRIVATE"
|
|
7047
7047
|
};
|
|
7048
7048
|
|
|
7049
|
-
|
|
7049
|
+
const ThemeStatusPhaseEnum = {
|
|
7050
|
+
Ready: "READY",
|
|
7051
|
+
Failed: "FAILED",
|
|
7052
|
+
Unknown: "UNKNOWN"
|
|
7053
|
+
};
|
|
7054
|
+
|
|
7055
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, MenuItemSpecTargetEnum, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MigrationControllerApi, MigrationControllerApiAxiosParamCreator, MigrationControllerApiFactory, MigrationControllerApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeStatusPhaseEnum, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|