@halo-dev/api-client 0.0.64 → 0.0.65
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 +198 -107
- package/dist/index.d.ts +292 -181
- package/dist/index.mjs +195 -108
- 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,
|
|
72
|
+
searchAttachments: async (policy, sort, displayName, ungrouped, uploadedBy, group, size, labelSelector, fieldSelector, page, 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;
|
|
@@ -90,27 +90,27 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
90
90
|
if (displayName !== void 0) {
|
|
91
91
|
localVarQueryParameter["displayName"] = displayName;
|
|
92
92
|
}
|
|
93
|
-
if (group !== void 0) {
|
|
94
|
-
localVarQueryParameter["group"] = group;
|
|
95
|
-
}
|
|
96
93
|
if (ungrouped !== void 0) {
|
|
97
94
|
localVarQueryParameter["ungrouped"] = ungrouped;
|
|
98
95
|
}
|
|
99
96
|
if (uploadedBy !== void 0) {
|
|
100
97
|
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
101
98
|
}
|
|
99
|
+
if (group !== void 0) {
|
|
100
|
+
localVarQueryParameter["group"] = group;
|
|
101
|
+
}
|
|
102
102
|
if (size !== void 0) {
|
|
103
103
|
localVarQueryParameter["size"] = size;
|
|
104
104
|
}
|
|
105
|
-
if (page !== void 0) {
|
|
106
|
-
localVarQueryParameter["page"] = page;
|
|
107
|
-
}
|
|
108
105
|
if (labelSelector) {
|
|
109
106
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
110
107
|
}
|
|
111
108
|
if (fieldSelector) {
|
|
112
109
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
113
110
|
}
|
|
111
|
+
if (page !== void 0) {
|
|
112
|
+
localVarQueryParameter["page"] = page;
|
|
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,
|
|
162
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, sort, displayName,
|
|
161
|
+
async searchAttachments(policy, sort, displayName, ungrouped, uploadedBy, group, size, labelSelector, fieldSelector, page, options) {
|
|
162
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, sort, displayName, ungrouped, uploadedBy, group, size, labelSelector, fieldSelector, page, 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,
|
|
175
|
-
return localVarFp.searchAttachments(policy, sort, displayName,
|
|
174
|
+
searchAttachments(policy, sort, displayName, ungrouped, uploadedBy, group, size, labelSelector, fieldSelector, page, options) {
|
|
175
|
+
return localVarFp.searchAttachments(policy, sort, displayName, ungrouped, uploadedBy, group, size, labelSelector, fieldSelector, page, 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.
|
|
184
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.sort, requestParameters.displayName, requestParameters.ungrouped, requestParameters.uploadedBy, requestParameters.group, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, 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, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, keyword, hidden, top, size, labelSelector, fieldSelector, page, 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,15 +252,6 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
252
252
|
if (sort !== void 0) {
|
|
253
253
|
localVarQueryParameter["sort"] = sort;
|
|
254
254
|
}
|
|
255
|
-
if (keyword !== void 0) {
|
|
256
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
257
|
-
}
|
|
258
|
-
if (hidden !== void 0) {
|
|
259
|
-
localVarQueryParameter["hidden"] = hidden;
|
|
260
|
-
}
|
|
261
|
-
if (top !== void 0) {
|
|
262
|
-
localVarQueryParameter["top"] = top;
|
|
263
|
-
}
|
|
264
255
|
if (sortOrder !== void 0) {
|
|
265
256
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
266
257
|
}
|
|
@@ -282,18 +273,27 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
282
273
|
if (subjectName !== void 0) {
|
|
283
274
|
localVarQueryParameter["subjectName"] = subjectName;
|
|
284
275
|
}
|
|
276
|
+
if (keyword !== void 0) {
|
|
277
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
278
|
+
}
|
|
279
|
+
if (hidden !== void 0) {
|
|
280
|
+
localVarQueryParameter["hidden"] = hidden;
|
|
281
|
+
}
|
|
282
|
+
if (top !== void 0) {
|
|
283
|
+
localVarQueryParameter["top"] = top;
|
|
284
|
+
}
|
|
285
285
|
if (size !== void 0) {
|
|
286
286
|
localVarQueryParameter["size"] = size;
|
|
287
287
|
}
|
|
288
|
-
if (page !== void 0) {
|
|
289
|
-
localVarQueryParameter["page"] = page;
|
|
290
|
-
}
|
|
291
288
|
if (labelSelector) {
|
|
292
289
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
293
290
|
}
|
|
294
291
|
if (fieldSelector) {
|
|
295
292
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
296
293
|
}
|
|
294
|
+
if (page !== void 0) {
|
|
295
|
+
localVarQueryParameter["page"] = page;
|
|
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, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, keyword, hidden, top, size, labelSelector, fieldSelector, page, options) {
|
|
319
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, keyword, hidden, top, size, labelSelector, fieldSelector, page, 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, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, keyword, hidden, top, size, labelSelector, fieldSelector, page, options) {
|
|
334
|
+
return localVarFp.listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, keyword, hidden, top, size, labelSelector, fieldSelector, page, 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.sortOrder, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
349
|
|
|
@@ -538,7 +538,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
538
538
|
options: localVarRequestOptions
|
|
539
539
|
};
|
|
540
540
|
},
|
|
541
|
-
listPlugins: async (sort, keyword, enabled, size,
|
|
541
|
+
listPlugins: async (sort, keyword, enabled, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
542
542
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
543
543
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
544
544
|
let baseOptions;
|
|
@@ -562,15 +562,15 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
562
562
|
if (size !== void 0) {
|
|
563
563
|
localVarQueryParameter["size"] = size;
|
|
564
564
|
}
|
|
565
|
-
if (page !== void 0) {
|
|
566
|
-
localVarQueryParameter["page"] = page;
|
|
567
|
-
}
|
|
568
565
|
if (labelSelector) {
|
|
569
566
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
570
567
|
}
|
|
571
568
|
if (fieldSelector) {
|
|
572
569
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
573
570
|
}
|
|
571
|
+
if (page !== void 0) {
|
|
572
|
+
localVarQueryParameter["page"] = page;
|
|
573
|
+
}
|
|
574
574
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
575
575
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
576
576
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -637,8 +637,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
637
637
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
638
638
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
639
639
|
},
|
|
640
|
-
async listPlugins(sort, keyword, enabled, size,
|
|
641
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size,
|
|
640
|
+
async listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options) {
|
|
641
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options);
|
|
642
642
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
643
643
|
},
|
|
644
644
|
async resetPluginConfig(name, options) {
|
|
@@ -657,8 +657,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
657
657
|
installPlugin(file, options) {
|
|
658
658
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
659
659
|
},
|
|
660
|
-
listPlugins(sort, keyword, enabled, size,
|
|
661
|
-
return localVarFp.listPlugins(sort, keyword, enabled, size,
|
|
660
|
+
listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options) {
|
|
661
|
+
return localVarFp.listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
662
662
|
},
|
|
663
663
|
resetPluginConfig(name, options) {
|
|
664
664
|
return localVarFp.resetPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
@@ -673,7 +673,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
673
673
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
674
674
|
}
|
|
675
675
|
listPlugins(requestParameters = {}, options) {
|
|
676
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.
|
|
676
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
677
677
|
}
|
|
678
678
|
resetPluginConfig(requestParameters, options) {
|
|
679
679
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -708,7 +708,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
708
708
|
options: localVarRequestOptions
|
|
709
709
|
};
|
|
710
710
|
},
|
|
711
|
-
listPosts: async (sort,
|
|
711
|
+
listPosts: async (sort, publishPhase, category, sortOrder, contributor, visible, keyword, tag, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
712
712
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
713
713
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
714
714
|
let baseOptions;
|
|
@@ -723,39 +723,39 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
723
723
|
if (sort !== void 0) {
|
|
724
724
|
localVarQueryParameter["sort"] = sort;
|
|
725
725
|
}
|
|
726
|
-
if (visible !== void 0) {
|
|
727
|
-
localVarQueryParameter["visible"] = visible;
|
|
728
|
-
}
|
|
729
|
-
if (keyword !== void 0) {
|
|
730
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
731
|
-
}
|
|
732
|
-
if (tag) {
|
|
733
|
-
localVarQueryParameter["tag"] = Array.from(tag);
|
|
734
|
-
}
|
|
735
|
-
if (sortOrder !== void 0) {
|
|
736
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
737
|
-
}
|
|
738
726
|
if (publishPhase !== void 0) {
|
|
739
727
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
740
728
|
}
|
|
741
729
|
if (category) {
|
|
742
730
|
localVarQueryParameter["category"] = Array.from(category);
|
|
743
731
|
}
|
|
732
|
+
if (sortOrder !== void 0) {
|
|
733
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
734
|
+
}
|
|
744
735
|
if (contributor) {
|
|
745
736
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
746
737
|
}
|
|
738
|
+
if (visible !== void 0) {
|
|
739
|
+
localVarQueryParameter["visible"] = visible;
|
|
740
|
+
}
|
|
741
|
+
if (keyword !== void 0) {
|
|
742
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
743
|
+
}
|
|
744
|
+
if (tag) {
|
|
745
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
746
|
+
}
|
|
747
747
|
if (size !== void 0) {
|
|
748
748
|
localVarQueryParameter["size"] = size;
|
|
749
749
|
}
|
|
750
|
-
if (page !== void 0) {
|
|
751
|
-
localVarQueryParameter["page"] = page;
|
|
752
|
-
}
|
|
753
750
|
if (labelSelector) {
|
|
754
751
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
755
752
|
}
|
|
756
753
|
if (fieldSelector) {
|
|
757
754
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
758
755
|
}
|
|
756
|
+
if (page !== void 0) {
|
|
757
|
+
localVarQueryParameter["page"] = page;
|
|
758
|
+
}
|
|
759
759
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
760
760
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
761
761
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -887,8 +887,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
887
887
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
888
888
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
889
889
|
},
|
|
890
|
-
async listPosts(sort,
|
|
891
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
890
|
+
async listPosts(sort, publishPhase, category, sortOrder, contributor, visible, keyword, tag, size, labelSelector, fieldSelector, page, options) {
|
|
891
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, publishPhase, category, sortOrder, contributor, visible, keyword, tag, size, labelSelector, fieldSelector, page, options);
|
|
892
892
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
893
893
|
},
|
|
894
894
|
async publishPost(name, headSnapshot, options) {
|
|
@@ -919,8 +919,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
919
919
|
draftPost(postRequest, options) {
|
|
920
920
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
921
921
|
},
|
|
922
|
-
listPosts(sort,
|
|
923
|
-
return localVarFp.listPosts(sort,
|
|
922
|
+
listPosts(sort, publishPhase, category, sortOrder, contributor, visible, keyword, tag, size, labelSelector, fieldSelector, page, options) {
|
|
923
|
+
return localVarFp.listPosts(sort, publishPhase, category, sortOrder, contributor, visible, keyword, tag, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
924
924
|
},
|
|
925
925
|
publishPost(name, headSnapshot, options) {
|
|
926
926
|
return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
|
|
@@ -944,7 +944,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
944
944
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
945
945
|
}
|
|
946
946
|
listPosts(requestParameters = {}, options) {
|
|
947
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
947
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.publishPhase, requestParameters.category, requestParameters.sortOrder, requestParameters.contributor, requestParameters.visible, requestParameters.keyword, requestParameters.tag, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
948
948
|
}
|
|
949
949
|
publishPost(requestParameters, options) {
|
|
950
950
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -965,7 +965,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
965
965
|
|
|
966
966
|
const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
967
967
|
return {
|
|
968
|
-
listReplies: async (commentName, size,
|
|
968
|
+
listReplies: async (commentName, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
969
969
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/replies`;
|
|
970
970
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
971
971
|
let baseOptions;
|
|
@@ -983,15 +983,15 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
983
983
|
if (size !== void 0) {
|
|
984
984
|
localVarQueryParameter["size"] = size;
|
|
985
985
|
}
|
|
986
|
-
if (page !== void 0) {
|
|
987
|
-
localVarQueryParameter["page"] = page;
|
|
988
|
-
}
|
|
989
986
|
if (labelSelector) {
|
|
990
987
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
991
988
|
}
|
|
992
989
|
if (fieldSelector) {
|
|
993
990
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
994
991
|
}
|
|
992
|
+
if (page !== void 0) {
|
|
993
|
+
localVarQueryParameter["page"] = page;
|
|
994
|
+
}
|
|
995
995
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
996
996
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
997
997
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1005,8 +1005,8 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
1005
1005
|
const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
1006
1006
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
1007
1007
|
return {
|
|
1008
|
-
async listReplies(commentName, size,
|
|
1009
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size,
|
|
1008
|
+
async listReplies(commentName, size, labelSelector, fieldSelector, page, options) {
|
|
1009
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, labelSelector, fieldSelector, page, options);
|
|
1010
1010
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1011
1011
|
}
|
|
1012
1012
|
};
|
|
@@ -1014,14 +1014,14 @@ const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
|
1014
1014
|
const ApiConsoleHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
1015
1015
|
const localVarFp = ApiConsoleHaloRunV1alpha1ReplyApiFp(configuration);
|
|
1016
1016
|
return {
|
|
1017
|
-
listReplies(commentName, size,
|
|
1018
|
-
return localVarFp.listReplies(commentName, size,
|
|
1017
|
+
listReplies(commentName, size, labelSelector, fieldSelector, page, options) {
|
|
1018
|
+
return localVarFp.listReplies(commentName, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1019
1019
|
}
|
|
1020
1020
|
};
|
|
1021
1021
|
};
|
|
1022
1022
|
class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
1023
1023
|
listReplies(requestParameters = {}, options) {
|
|
1024
|
-
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.
|
|
1024
|
+
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1025
1025
|
}
|
|
1026
1026
|
}
|
|
1027
1027
|
|
|
@@ -1050,7 +1050,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1050
1050
|
options: localVarRequestOptions
|
|
1051
1051
|
};
|
|
1052
1052
|
},
|
|
1053
|
-
listSinglePages: async (sort,
|
|
1053
|
+
listSinglePages: async (sort, publishPhase, sortOrder, contributor, visible, keyword, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
1054
1054
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
1055
1055
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1056
1056
|
let baseOptions;
|
|
@@ -1065,33 +1065,33 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1065
1065
|
if (sort !== void 0) {
|
|
1066
1066
|
localVarQueryParameter["sort"] = sort;
|
|
1067
1067
|
}
|
|
1068
|
-
if (
|
|
1069
|
-
localVarQueryParameter["
|
|
1070
|
-
}
|
|
1071
|
-
if (keyword !== void 0) {
|
|
1072
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
1068
|
+
if (publishPhase !== void 0) {
|
|
1069
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
1073
1070
|
}
|
|
1074
1071
|
if (sortOrder !== void 0) {
|
|
1075
1072
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
1076
1073
|
}
|
|
1077
|
-
if (publishPhase !== void 0) {
|
|
1078
|
-
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
1079
|
-
}
|
|
1080
1074
|
if (contributor) {
|
|
1081
1075
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
1082
1076
|
}
|
|
1077
|
+
if (visible !== void 0) {
|
|
1078
|
+
localVarQueryParameter["visible"] = visible;
|
|
1079
|
+
}
|
|
1080
|
+
if (keyword !== void 0) {
|
|
1081
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
1082
|
+
}
|
|
1083
1083
|
if (size !== void 0) {
|
|
1084
1084
|
localVarQueryParameter["size"] = size;
|
|
1085
1085
|
}
|
|
1086
|
-
if (page !== void 0) {
|
|
1087
|
-
localVarQueryParameter["page"] = page;
|
|
1088
|
-
}
|
|
1089
1086
|
if (labelSelector) {
|
|
1090
1087
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1091
1088
|
}
|
|
1092
1089
|
if (fieldSelector) {
|
|
1093
1090
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1094
1091
|
}
|
|
1092
|
+
if (page !== void 0) {
|
|
1093
|
+
localVarQueryParameter["page"] = page;
|
|
1094
|
+
}
|
|
1095
1095
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1096
1096
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1097
1097
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1178,8 +1178,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1178
1178
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1179
1179
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1180
1180
|
},
|
|
1181
|
-
async listSinglePages(sort,
|
|
1182
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
1181
|
+
async listSinglePages(sort, publishPhase, sortOrder, contributor, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
1182
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, publishPhase, sortOrder, contributor, visible, keyword, size, labelSelector, fieldSelector, page, options);
|
|
1183
1183
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1184
1184
|
},
|
|
1185
1185
|
async publishSinglePage(name, options) {
|
|
@@ -1202,8 +1202,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1202
1202
|
draftSinglePage(singlePageRequest, options) {
|
|
1203
1203
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1204
1204
|
},
|
|
1205
|
-
listSinglePages(sort,
|
|
1206
|
-
return localVarFp.listSinglePages(sort,
|
|
1205
|
+
listSinglePages(sort, publishPhase, sortOrder, contributor, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
1206
|
+
return localVarFp.listSinglePages(sort, publishPhase, sortOrder, contributor, visible, keyword, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1207
1207
|
},
|
|
1208
1208
|
publishSinglePage(name, options) {
|
|
1209
1209
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1221,7 +1221,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1221
1221
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1222
1222
|
}
|
|
1223
1223
|
listSinglePages(requestParameters = {}, options) {
|
|
1224
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1224
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.publishPhase, requestParameters.sortOrder, requestParameters.contributor, requestParameters.visible, requestParameters.keyword, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1225
1225
|
}
|
|
1226
1226
|
publishSinglePage(requestParameters, options) {
|
|
1227
1227
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1310,7 +1310,7 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1310
1310
|
options: localVarRequestOptions
|
|
1311
1311
|
};
|
|
1312
1312
|
},
|
|
1313
|
-
listThemes: async (uninstalled, size,
|
|
1313
|
+
listThemes: async (uninstalled, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
1314
1314
|
assertParamExists("listThemes", "uninstalled", uninstalled);
|
|
1315
1315
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes`;
|
|
1316
1316
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1329,15 +1329,15 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1329
1329
|
if (size !== void 0) {
|
|
1330
1330
|
localVarQueryParameter["size"] = size;
|
|
1331
1331
|
}
|
|
1332
|
-
if (page !== void 0) {
|
|
1333
|
-
localVarQueryParameter["page"] = page;
|
|
1334
|
-
}
|
|
1335
1332
|
if (labelSelector) {
|
|
1336
1333
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1337
1334
|
}
|
|
1338
1335
|
if (fieldSelector) {
|
|
1339
1336
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1340
1337
|
}
|
|
1338
|
+
if (page !== void 0) {
|
|
1339
|
+
localVarQueryParameter["page"] = page;
|
|
1340
|
+
}
|
|
1341
1341
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1342
1342
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1343
1343
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1425,8 +1425,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
|
|
|
1425
1425
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
|
|
1426
1426
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1427
1427
|
},
|
|
1428
|
-
async listThemes(uninstalled, size,
|
|
1429
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size,
|
|
1428
|
+
async listThemes(uninstalled, size, labelSelector, fieldSelector, page, options) {
|
|
1429
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size, labelSelector, fieldSelector, page, options);
|
|
1430
1430
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1431
1431
|
},
|
|
1432
1432
|
async reload(name, options) {
|
|
@@ -1449,8 +1449,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
|
|
|
1449
1449
|
installTheme(file, options) {
|
|
1450
1450
|
return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
|
|
1451
1451
|
},
|
|
1452
|
-
listThemes(uninstalled, size,
|
|
1453
|
-
return localVarFp.listThemes(uninstalled, size,
|
|
1452
|
+
listThemes(uninstalled, size, labelSelector, fieldSelector, page, options) {
|
|
1453
|
+
return localVarFp.listThemes(uninstalled, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1454
1454
|
},
|
|
1455
1455
|
reload(name, options) {
|
|
1456
1456
|
return localVarFp.reload(name, options).then((request) => request(axios, basePath));
|
|
@@ -1468,7 +1468,7 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
1468
1468
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
1469
1469
|
}
|
|
1470
1470
|
listThemes(requestParameters, options) {
|
|
1471
|
-
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.
|
|
1471
|
+
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1472
1472
|
}
|
|
1473
1473
|
reload(requestParameters, options) {
|
|
1474
1474
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reload(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1571,6 +1571,29 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
1571
1571
|
url: toPathString(localVarUrlObj),
|
|
1572
1572
|
options: localVarRequestOptions
|
|
1573
1573
|
};
|
|
1574
|
+
},
|
|
1575
|
+
updateCurrentUser: async (user, options = {}) => {
|
|
1576
|
+
assertParamExists("updateCurrentUser", "user", user);
|
|
1577
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-`;
|
|
1578
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1579
|
+
let baseOptions;
|
|
1580
|
+
if (configuration) {
|
|
1581
|
+
baseOptions = configuration.baseOptions;
|
|
1582
|
+
}
|
|
1583
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
1584
|
+
const localVarHeaderParameter = {};
|
|
1585
|
+
const localVarQueryParameter = {};
|
|
1586
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1587
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1588
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1589
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1590
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1591
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1592
|
+
localVarRequestOptions.data = serializeDataIfNeeded(user, localVarRequestOptions, configuration);
|
|
1593
|
+
return {
|
|
1594
|
+
url: toPathString(localVarUrlObj),
|
|
1595
|
+
options: localVarRequestOptions
|
|
1596
|
+
};
|
|
1574
1597
|
}
|
|
1575
1598
|
};
|
|
1576
1599
|
};
|
|
@@ -1592,6 +1615,10 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
1592
1615
|
async grantPermission(name, grantRequest, options) {
|
|
1593
1616
|
const localVarAxiosArgs = await localVarAxiosParamCreator.grantPermission(name, grantRequest, options);
|
|
1594
1617
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1618
|
+
},
|
|
1619
|
+
async updateCurrentUser(user, options) {
|
|
1620
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCurrentUser(user, options);
|
|
1621
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1595
1622
|
}
|
|
1596
1623
|
};
|
|
1597
1624
|
};
|
|
@@ -1609,6 +1636,9 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
1609
1636
|
},
|
|
1610
1637
|
grantPermission(name, grantRequest, options) {
|
|
1611
1638
|
return localVarFp.grantPermission(name, grantRequest, options).then((request) => request(axios, basePath));
|
|
1639
|
+
},
|
|
1640
|
+
updateCurrentUser(user, options) {
|
|
1641
|
+
return localVarFp.updateCurrentUser(user, options).then((request) => request(axios, basePath));
|
|
1612
1642
|
}
|
|
1613
1643
|
};
|
|
1614
1644
|
};
|
|
@@ -1625,6 +1655,9 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1625
1655
|
grantPermission(requestParameters, options) {
|
|
1626
1656
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(requestParameters.name, requestParameters.grantRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1627
1657
|
}
|
|
1658
|
+
updateCurrentUser(requestParameters, options) {
|
|
1659
|
+
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).updateCurrentUser(requestParameters.user, options).then((request) => request(this.axios, this.basePath));
|
|
1660
|
+
}
|
|
1628
1661
|
}
|
|
1629
1662
|
|
|
1630
1663
|
const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
@@ -1832,7 +1865,7 @@ class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
1832
1865
|
|
|
1833
1866
|
const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
1834
1867
|
return {
|
|
1835
|
-
searchPost: async (keyword,
|
|
1868
|
+
searchPost: async (keyword, highlightPreTag, highlightPostTag, limit, options = {}) => {
|
|
1836
1869
|
assertParamExists("searchPost", "keyword", keyword);
|
|
1837
1870
|
const localVarPath = `/apis/api.halo.run/v1alpha1/indices/post`;
|
|
1838
1871
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1845,18 +1878,18 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
1845
1878
|
const localVarQueryParameter = {};
|
|
1846
1879
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1847
1880
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1848
|
-
if (keyword !== void 0) {
|
|
1849
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
1850
|
-
}
|
|
1851
|
-
if (limit !== void 0) {
|
|
1852
|
-
localVarQueryParameter["limit"] = limit;
|
|
1853
|
-
}
|
|
1854
1881
|
if (highlightPreTag !== void 0) {
|
|
1855
1882
|
localVarQueryParameter["highlightPreTag"] = highlightPreTag;
|
|
1856
1883
|
}
|
|
1857
1884
|
if (highlightPostTag !== void 0) {
|
|
1858
1885
|
localVarQueryParameter["highlightPostTag"] = highlightPostTag;
|
|
1859
1886
|
}
|
|
1887
|
+
if (keyword !== void 0) {
|
|
1888
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
1889
|
+
}
|
|
1890
|
+
if (limit !== void 0) {
|
|
1891
|
+
localVarQueryParameter["limit"] = limit;
|
|
1892
|
+
}
|
|
1860
1893
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1861
1894
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1862
1895
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -1870,8 +1903,8 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
1870
1903
|
const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
1871
1904
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1PostApiAxiosParamCreator(configuration);
|
|
1872
1905
|
return {
|
|
1873
|
-
async searchPost(keyword,
|
|
1874
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchPost(keyword,
|
|
1906
|
+
async searchPost(keyword, highlightPreTag, highlightPostTag, limit, options) {
|
|
1907
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchPost(keyword, highlightPreTag, highlightPostTag, limit, options);
|
|
1875
1908
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1876
1909
|
}
|
|
1877
1910
|
};
|
|
@@ -1879,14 +1912,14 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
1879
1912
|
const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios) {
|
|
1880
1913
|
const localVarFp = ApiHaloRunV1alpha1PostApiFp(configuration);
|
|
1881
1914
|
return {
|
|
1882
|
-
searchPost(keyword,
|
|
1883
|
-
return localVarFp.searchPost(keyword,
|
|
1915
|
+
searchPost(keyword, highlightPreTag, highlightPostTag, limit, options) {
|
|
1916
|
+
return localVarFp.searchPost(keyword, highlightPreTag, highlightPostTag, limit, options).then((request) => request(axios, basePath));
|
|
1884
1917
|
}
|
|
1885
1918
|
};
|
|
1886
1919
|
};
|
|
1887
1920
|
class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
1888
1921
|
searchPost(requestParameters, options) {
|
|
1889
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).searchPost(requestParameters.keyword, requestParameters.
|
|
1922
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).searchPost(requestParameters.keyword, requestParameters.highlightPreTag, requestParameters.highlightPostTag, requestParameters.limit, options).then((request) => request(this.axios, this.basePath));
|
|
1890
1923
|
}
|
|
1891
1924
|
}
|
|
1892
1925
|
|
|
@@ -3494,6 +3527,60 @@ class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
|
3494
3527
|
}
|
|
3495
3528
|
}
|
|
3496
3529
|
|
|
3530
|
+
const MigrationControllerApiAxiosParamCreator = function(configuration) {
|
|
3531
|
+
return {
|
|
3532
|
+
importMigrationData: async (file, options = {}) => {
|
|
3533
|
+
assertParamExists("importMigrationData", "file", file);
|
|
3534
|
+
const localVarPath = `/apis/api.plugin.halo.run/v1alpha1/plugins/PluginMigrate/migrations/import`;
|
|
3535
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3536
|
+
let baseOptions;
|
|
3537
|
+
if (configuration) {
|
|
3538
|
+
baseOptions = configuration.baseOptions;
|
|
3539
|
+
}
|
|
3540
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3541
|
+
const localVarHeaderParameter = {};
|
|
3542
|
+
const localVarQueryParameter = {};
|
|
3543
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
3544
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3545
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3546
|
+
if (file !== void 0) {
|
|
3547
|
+
localVarFormParams.append("file", file);
|
|
3548
|
+
}
|
|
3549
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
3550
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3551
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3552
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3553
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
3554
|
+
return {
|
|
3555
|
+
url: toPathString(localVarUrlObj),
|
|
3556
|
+
options: localVarRequestOptions
|
|
3557
|
+
};
|
|
3558
|
+
}
|
|
3559
|
+
};
|
|
3560
|
+
};
|
|
3561
|
+
const MigrationControllerApiFp = function(configuration) {
|
|
3562
|
+
const localVarAxiosParamCreator = MigrationControllerApiAxiosParamCreator(configuration);
|
|
3563
|
+
return {
|
|
3564
|
+
async importMigrationData(file, options) {
|
|
3565
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.importMigrationData(file, options);
|
|
3566
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3567
|
+
}
|
|
3568
|
+
};
|
|
3569
|
+
};
|
|
3570
|
+
const MigrationControllerApiFactory = function(configuration, basePath, axios) {
|
|
3571
|
+
const localVarFp = MigrationControllerApiFp(configuration);
|
|
3572
|
+
return {
|
|
3573
|
+
importMigrationData(file, options) {
|
|
3574
|
+
return localVarFp.importMigrationData(file, options).then((request) => request(axios, basePath));
|
|
3575
|
+
}
|
|
3576
|
+
};
|
|
3577
|
+
};
|
|
3578
|
+
class MigrationControllerApi extends BaseAPI {
|
|
3579
|
+
importMigrationData(requestParameters, options) {
|
|
3580
|
+
return MigrationControllerApiFp(this.configuration).importMigrationData(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
3581
|
+
}
|
|
3582
|
+
}
|
|
3583
|
+
|
|
3497
3584
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
3498
3585
|
return {
|
|
3499
3586
|
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
@@ -6699,4 +6786,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
6699
6786
|
Private: "PRIVATE"
|
|
6700
6787
|
};
|
|
6701
6788
|
|
|
6702
|
-
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, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, 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, 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 };
|
|
6789
|
+
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, 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, 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 };
|