@halo-dev/api-client 0.0.35 → 0.0.37
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 +349 -178
- package/dist/index.d.ts +603 -314
- package/dist/index.mjs +346 -179
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -67,6 +67,121 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
+
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
71
|
+
return {
|
|
72
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
73
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
74
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
75
|
+
let baseOptions;
|
|
76
|
+
if (configuration) {
|
|
77
|
+
baseOptions = configuration.baseOptions;
|
|
78
|
+
}
|
|
79
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
80
|
+
const localVarHeaderParameter = {};
|
|
81
|
+
const localVarQueryParameter = {};
|
|
82
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
83
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
84
|
+
if (policy !== void 0) {
|
|
85
|
+
localVarQueryParameter["policy"] = policy;
|
|
86
|
+
}
|
|
87
|
+
if (displayName !== void 0) {
|
|
88
|
+
localVarQueryParameter["displayName"] = displayName;
|
|
89
|
+
}
|
|
90
|
+
if (group !== void 0) {
|
|
91
|
+
localVarQueryParameter["group"] = group;
|
|
92
|
+
}
|
|
93
|
+
if (uploadedBy !== void 0) {
|
|
94
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
95
|
+
}
|
|
96
|
+
if (size !== void 0) {
|
|
97
|
+
localVarQueryParameter["size"] = size;
|
|
98
|
+
}
|
|
99
|
+
if (page !== void 0) {
|
|
100
|
+
localVarQueryParameter["page"] = page;
|
|
101
|
+
}
|
|
102
|
+
if (labelSelector) {
|
|
103
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
104
|
+
}
|
|
105
|
+
if (fieldSelector) {
|
|
106
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
107
|
+
}
|
|
108
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
109
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
110
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
111
|
+
return {
|
|
112
|
+
url: toPathString(localVarUrlObj),
|
|
113
|
+
options: localVarRequestOptions
|
|
114
|
+
};
|
|
115
|
+
},
|
|
116
|
+
uploadAttachment: async (file, policyName, groupName, options = {}) => {
|
|
117
|
+
assertParamExists("uploadAttachment", "file", file);
|
|
118
|
+
assertParamExists("uploadAttachment", "policyName", policyName);
|
|
119
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments/upload`;
|
|
120
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
121
|
+
let baseOptions;
|
|
122
|
+
if (configuration) {
|
|
123
|
+
baseOptions = configuration.baseOptions;
|
|
124
|
+
}
|
|
125
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
126
|
+
const localVarHeaderParameter = {};
|
|
127
|
+
const localVarQueryParameter = {};
|
|
128
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
129
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
130
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
131
|
+
if (file !== void 0) {
|
|
132
|
+
localVarFormParams.append("file", file);
|
|
133
|
+
}
|
|
134
|
+
if (policyName !== void 0) {
|
|
135
|
+
localVarFormParams.append("policyName", policyName);
|
|
136
|
+
}
|
|
137
|
+
if (groupName !== void 0) {
|
|
138
|
+
localVarFormParams.append("groupName", groupName);
|
|
139
|
+
}
|
|
140
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
141
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
142
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
143
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
144
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
145
|
+
return {
|
|
146
|
+
url: toPathString(localVarUrlObj),
|
|
147
|
+
options: localVarRequestOptions
|
|
148
|
+
};
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
153
|
+
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
154
|
+
return {
|
|
155
|
+
async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
|
|
157
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
158
|
+
},
|
|
159
|
+
async uploadAttachment(file, policyName, groupName, options) {
|
|
160
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadAttachment(file, policyName, groupName, options);
|
|
161
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
166
|
+
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
167
|
+
return {
|
|
168
|
+
searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
169
|
+
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
170
|
+
},
|
|
171
|
+
uploadAttachment(file, policyName, groupName, options) {
|
|
172
|
+
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
173
|
+
}
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
177
|
+
searchAttachments(requestParameters = {}, options) {
|
|
178
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.group, requestParameters.uploadedBy, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
179
|
+
}
|
|
180
|
+
uploadAttachment(requestParameters, options) {
|
|
181
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
70
185
|
const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
71
186
|
return {
|
|
72
187
|
createComment: async (commentRequest, options = {}) => {
|
|
@@ -116,7 +231,7 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
116
231
|
options: localVarRequestOptions
|
|
117
232
|
};
|
|
118
233
|
},
|
|
119
|
-
listComments: async (sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
234
|
+
listComments: async (sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
120
235
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/comments`;
|
|
121
236
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122
237
|
let baseOptions;
|
|
@@ -131,6 +246,15 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
131
246
|
if (sort !== void 0) {
|
|
132
247
|
localVarQueryParameter["sort"] = sort;
|
|
133
248
|
}
|
|
249
|
+
if (keyword !== void 0) {
|
|
250
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
251
|
+
}
|
|
252
|
+
if (hidden !== void 0) {
|
|
253
|
+
localVarQueryParameter["hidden"] = hidden;
|
|
254
|
+
}
|
|
255
|
+
if (top !== void 0) {
|
|
256
|
+
localVarQueryParameter["top"] = top;
|
|
257
|
+
}
|
|
134
258
|
if (sortOrder !== void 0) {
|
|
135
259
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
136
260
|
}
|
|
@@ -152,27 +276,18 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
152
276
|
if (subjectName !== void 0) {
|
|
153
277
|
localVarQueryParameter["subjectName"] = subjectName;
|
|
154
278
|
}
|
|
155
|
-
if (keyword !== void 0) {
|
|
156
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
157
|
-
}
|
|
158
|
-
if (hidden !== void 0) {
|
|
159
|
-
localVarQueryParameter["hidden"] = hidden;
|
|
160
|
-
}
|
|
161
|
-
if (top !== void 0) {
|
|
162
|
-
localVarQueryParameter["top"] = top;
|
|
163
|
-
}
|
|
164
279
|
if (size !== void 0) {
|
|
165
280
|
localVarQueryParameter["size"] = size;
|
|
166
281
|
}
|
|
282
|
+
if (page !== void 0) {
|
|
283
|
+
localVarQueryParameter["page"] = page;
|
|
284
|
+
}
|
|
167
285
|
if (labelSelector) {
|
|
168
286
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
169
287
|
}
|
|
170
288
|
if (fieldSelector) {
|
|
171
289
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
172
290
|
}
|
|
173
|
-
if (page !== void 0) {
|
|
174
|
-
localVarQueryParameter["page"] = page;
|
|
175
|
-
}
|
|
176
291
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
177
292
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
178
293
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -194,8 +309,8 @@ const ApiConsoleHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
|
194
309
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply(name, replyRequest, options);
|
|
195
310
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
196
311
|
},
|
|
197
|
-
async listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
198
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
312
|
+
async listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
313
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options);
|
|
199
314
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
200
315
|
}
|
|
201
316
|
};
|
|
@@ -209,8 +324,8 @@ const ApiConsoleHaloRunV1alpha1CommentApiFactory = function(configuration, baseP
|
|
|
209
324
|
createReply(name, replyRequest, options) {
|
|
210
325
|
return localVarFp.createReply(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
211
326
|
},
|
|
212
|
-
listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
213
|
-
return localVarFp.listComments(sort, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName,
|
|
327
|
+
listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
328
|
+
return localVarFp.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
214
329
|
}
|
|
215
330
|
};
|
|
216
331
|
};
|
|
@@ -222,7 +337,7 @@ class ApiConsoleHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
222
337
|
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).createReply(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
223
338
|
}
|
|
224
339
|
listComments(requestParameters = {}, options) {
|
|
225
|
-
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.
|
|
340
|
+
return ApiConsoleHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.sortOrder, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
226
341
|
}
|
|
227
342
|
}
|
|
228
343
|
|
|
@@ -404,7 +519,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
404
519
|
options: localVarRequestOptions
|
|
405
520
|
};
|
|
406
521
|
},
|
|
407
|
-
listPlugins: async (sort,
|
|
522
|
+
listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
408
523
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
409
524
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
410
525
|
let baseOptions;
|
|
@@ -419,24 +534,24 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
419
534
|
if (sort) {
|
|
420
535
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
421
536
|
}
|
|
422
|
-
if (keyword !== void 0) {
|
|
423
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
424
|
-
}
|
|
425
537
|
if (enabled !== void 0) {
|
|
426
538
|
localVarQueryParameter["enabled"] = enabled;
|
|
427
539
|
}
|
|
540
|
+
if (keyword !== void 0) {
|
|
541
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
542
|
+
}
|
|
428
543
|
if (size !== void 0) {
|
|
429
544
|
localVarQueryParameter["size"] = size;
|
|
430
545
|
}
|
|
546
|
+
if (page !== void 0) {
|
|
547
|
+
localVarQueryParameter["page"] = page;
|
|
548
|
+
}
|
|
431
549
|
if (labelSelector) {
|
|
432
550
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
433
551
|
}
|
|
434
552
|
if (fieldSelector) {
|
|
435
553
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
436
554
|
}
|
|
437
|
-
if (page !== void 0) {
|
|
438
|
-
localVarQueryParameter["page"] = page;
|
|
439
|
-
}
|
|
440
555
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
441
556
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
442
557
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -454,8 +569,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
454
569
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
455
570
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
456
571
|
},
|
|
457
|
-
async listPlugins(sort,
|
|
458
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
572
|
+
async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
573
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
|
|
459
574
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
460
575
|
}
|
|
461
576
|
};
|
|
@@ -466,8 +581,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
466
581
|
installPlugin(file, options) {
|
|
467
582
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
468
583
|
},
|
|
469
|
-
listPlugins(sort,
|
|
470
|
-
return localVarFp.listPlugins(sort,
|
|
584
|
+
listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
585
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
471
586
|
}
|
|
472
587
|
};
|
|
473
588
|
};
|
|
@@ -476,7 +591,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
476
591
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
477
592
|
}
|
|
478
593
|
listPlugins(requestParameters = {}, options) {
|
|
479
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
594
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
480
595
|
}
|
|
481
596
|
}
|
|
482
597
|
|
|
@@ -505,7 +620,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
505
620
|
options: localVarRequestOptions
|
|
506
621
|
};
|
|
507
622
|
},
|
|
508
|
-
listPosts: async (sort,
|
|
623
|
+
listPosts: async (sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
509
624
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
510
625
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
511
626
|
let baseOptions;
|
|
@@ -520,39 +635,39 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
520
635
|
if (sort !== void 0) {
|
|
521
636
|
localVarQueryParameter["sort"] = sort;
|
|
522
637
|
}
|
|
523
|
-
if (
|
|
524
|
-
localVarQueryParameter["
|
|
638
|
+
if (tag) {
|
|
639
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
525
640
|
}
|
|
526
|
-
if (
|
|
527
|
-
localVarQueryParameter["
|
|
641
|
+
if (visible !== void 0) {
|
|
642
|
+
localVarQueryParameter["visible"] = visible;
|
|
528
643
|
}
|
|
529
|
-
if (
|
|
530
|
-
localVarQueryParameter["
|
|
644
|
+
if (keyword !== void 0) {
|
|
645
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
531
646
|
}
|
|
532
647
|
if (contributor) {
|
|
533
648
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
534
649
|
}
|
|
535
|
-
if (
|
|
536
|
-
localVarQueryParameter["
|
|
650
|
+
if (sortOrder !== void 0) {
|
|
651
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
537
652
|
}
|
|
538
|
-
if (
|
|
539
|
-
localVarQueryParameter["
|
|
653
|
+
if (publishPhase !== void 0) {
|
|
654
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
540
655
|
}
|
|
541
|
-
if (
|
|
542
|
-
localVarQueryParameter["
|
|
656
|
+
if (category) {
|
|
657
|
+
localVarQueryParameter["category"] = Array.from(category);
|
|
543
658
|
}
|
|
544
659
|
if (size !== void 0) {
|
|
545
660
|
localVarQueryParameter["size"] = size;
|
|
546
661
|
}
|
|
662
|
+
if (page !== void 0) {
|
|
663
|
+
localVarQueryParameter["page"] = page;
|
|
664
|
+
}
|
|
547
665
|
if (labelSelector) {
|
|
548
666
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
549
667
|
}
|
|
550
668
|
if (fieldSelector) {
|
|
551
669
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
552
670
|
}
|
|
553
|
-
if (page !== void 0) {
|
|
554
|
-
localVarQueryParameter["page"] = page;
|
|
555
|
-
}
|
|
556
671
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
557
672
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
558
673
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -615,8 +730,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
615
730
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
616
731
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
617
732
|
},
|
|
618
|
-
async listPosts(sort,
|
|
619
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
733
|
+
async listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
734
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
|
|
620
735
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
621
736
|
},
|
|
622
737
|
async publishPost(name, options) {
|
|
@@ -635,8 +750,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
635
750
|
draftPost(postRequest, options) {
|
|
636
751
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
637
752
|
},
|
|
638
|
-
listPosts(sort,
|
|
639
|
-
return localVarFp.listPosts(sort,
|
|
753
|
+
listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
754
|
+
return localVarFp.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
640
755
|
},
|
|
641
756
|
publishPost(name, options) {
|
|
642
757
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -651,7 +766,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
651
766
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
652
767
|
}
|
|
653
768
|
listPosts(requestParameters = {}, options) {
|
|
654
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
769
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
655
770
|
}
|
|
656
771
|
publishPost(requestParameters, options) {
|
|
657
772
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -663,7 +778,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
663
778
|
|
|
664
779
|
const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
665
780
|
return {
|
|
666
|
-
listReplies: async (commentName, size, labelSelector, fieldSelector,
|
|
781
|
+
listReplies: async (commentName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
667
782
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/replies`;
|
|
668
783
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
669
784
|
let baseOptions;
|
|
@@ -681,15 +796,15 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
681
796
|
if (size !== void 0) {
|
|
682
797
|
localVarQueryParameter["size"] = size;
|
|
683
798
|
}
|
|
799
|
+
if (page !== void 0) {
|
|
800
|
+
localVarQueryParameter["page"] = page;
|
|
801
|
+
}
|
|
684
802
|
if (labelSelector) {
|
|
685
803
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
686
804
|
}
|
|
687
805
|
if (fieldSelector) {
|
|
688
806
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
689
807
|
}
|
|
690
|
-
if (page !== void 0) {
|
|
691
|
-
localVarQueryParameter["page"] = page;
|
|
692
|
-
}
|
|
693
808
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
694
809
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
695
810
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -703,8 +818,8 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
703
818
|
const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
704
819
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
705
820
|
return {
|
|
706
|
-
async listReplies(commentName, size, labelSelector, fieldSelector,
|
|
707
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, labelSelector, fieldSelector,
|
|
821
|
+
async listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
822
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page, labelSelector, fieldSelector, options);
|
|
708
823
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
709
824
|
}
|
|
710
825
|
};
|
|
@@ -712,14 +827,14 @@ const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
|
712
827
|
const ApiConsoleHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
713
828
|
const localVarFp = ApiConsoleHaloRunV1alpha1ReplyApiFp(configuration);
|
|
714
829
|
return {
|
|
715
|
-
listReplies(commentName, size, labelSelector, fieldSelector,
|
|
716
|
-
return localVarFp.listReplies(commentName, size, labelSelector, fieldSelector,
|
|
830
|
+
listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
831
|
+
return localVarFp.listReplies(commentName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
717
832
|
}
|
|
718
833
|
};
|
|
719
834
|
};
|
|
720
835
|
class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
721
836
|
listReplies(requestParameters = {}, options) {
|
|
722
|
-
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.
|
|
837
|
+
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
723
838
|
}
|
|
724
839
|
}
|
|
725
840
|
|
|
@@ -748,7 +863,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
748
863
|
options: localVarRequestOptions
|
|
749
864
|
};
|
|
750
865
|
},
|
|
751
|
-
listSinglePages: async (sort,
|
|
866
|
+
listSinglePages: async (sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
752
867
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
753
868
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
754
869
|
let baseOptions;
|
|
@@ -763,33 +878,33 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
763
878
|
if (sort !== void 0) {
|
|
764
879
|
localVarQueryParameter["sort"] = sort;
|
|
765
880
|
}
|
|
766
|
-
if (
|
|
767
|
-
localVarQueryParameter["
|
|
881
|
+
if (visible !== void 0) {
|
|
882
|
+
localVarQueryParameter["visible"] = visible;
|
|
768
883
|
}
|
|
769
|
-
if (
|
|
770
|
-
localVarQueryParameter["
|
|
884
|
+
if (keyword !== void 0) {
|
|
885
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
771
886
|
}
|
|
772
887
|
if (contributor) {
|
|
773
888
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
774
889
|
}
|
|
775
|
-
if (
|
|
776
|
-
localVarQueryParameter["
|
|
890
|
+
if (sortOrder !== void 0) {
|
|
891
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
777
892
|
}
|
|
778
|
-
if (
|
|
779
|
-
localVarQueryParameter["
|
|
893
|
+
if (publishPhase !== void 0) {
|
|
894
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
780
895
|
}
|
|
781
896
|
if (size !== void 0) {
|
|
782
897
|
localVarQueryParameter["size"] = size;
|
|
783
898
|
}
|
|
899
|
+
if (page !== void 0) {
|
|
900
|
+
localVarQueryParameter["page"] = page;
|
|
901
|
+
}
|
|
784
902
|
if (labelSelector) {
|
|
785
903
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
786
904
|
}
|
|
787
905
|
if (fieldSelector) {
|
|
788
906
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
789
907
|
}
|
|
790
|
-
if (page !== void 0) {
|
|
791
|
-
localVarQueryParameter["page"] = page;
|
|
792
|
-
}
|
|
793
908
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
794
909
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
795
910
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -852,8 +967,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
852
967
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
853
968
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
854
969
|
},
|
|
855
|
-
async listSinglePages(sort,
|
|
856
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
970
|
+
async listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
971
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
|
|
857
972
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
858
973
|
},
|
|
859
974
|
async publishSinglePage(name, options) {
|
|
@@ -872,8 +987,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
872
987
|
draftSinglePage(singlePageRequest, options) {
|
|
873
988
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
874
989
|
},
|
|
875
|
-
listSinglePages(sort,
|
|
876
|
-
return localVarFp.listSinglePages(sort,
|
|
990
|
+
listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
991
|
+
return localVarFp.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
877
992
|
},
|
|
878
993
|
publishSinglePage(name, options) {
|
|
879
994
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -888,7 +1003,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
888
1003
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
889
1004
|
}
|
|
890
1005
|
listSinglePages(requestParameters = {}, options) {
|
|
891
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1006
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
892
1007
|
}
|
|
893
1008
|
publishSinglePage(requestParameters, options) {
|
|
894
1009
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -974,6 +1089,42 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
974
1089
|
options: localVarRequestOptions
|
|
975
1090
|
};
|
|
976
1091
|
},
|
|
1092
|
+
listThemes: async (uninstalled, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
1093
|
+
assertParamExists("listThemes", "uninstalled", uninstalled);
|
|
1094
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes`;
|
|
1095
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1096
|
+
let baseOptions;
|
|
1097
|
+
if (configuration) {
|
|
1098
|
+
baseOptions = configuration.baseOptions;
|
|
1099
|
+
}
|
|
1100
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1101
|
+
const localVarHeaderParameter = {};
|
|
1102
|
+
const localVarQueryParameter = {};
|
|
1103
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1104
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1105
|
+
if (uninstalled !== void 0) {
|
|
1106
|
+
localVarQueryParameter["uninstalled"] = uninstalled;
|
|
1107
|
+
}
|
|
1108
|
+
if (size !== void 0) {
|
|
1109
|
+
localVarQueryParameter["size"] = size;
|
|
1110
|
+
}
|
|
1111
|
+
if (page !== void 0) {
|
|
1112
|
+
localVarQueryParameter["page"] = page;
|
|
1113
|
+
}
|
|
1114
|
+
if (labelSelector) {
|
|
1115
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1116
|
+
}
|
|
1117
|
+
if (fieldSelector) {
|
|
1118
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1119
|
+
}
|
|
1120
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1121
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1122
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1123
|
+
return {
|
|
1124
|
+
url: toPathString(localVarUrlObj),
|
|
1125
|
+
options: localVarRequestOptions
|
|
1126
|
+
};
|
|
1127
|
+
},
|
|
977
1128
|
reloadThemeSetting: async (name, options = {}) => {
|
|
978
1129
|
assertParamExists("reloadThemeSetting", "name", name);
|
|
979
1130
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes/{name}/reload-setting`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
@@ -994,6 +1145,34 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
994
1145
|
url: toPathString(localVarUrlObj),
|
|
995
1146
|
options: localVarRequestOptions
|
|
996
1147
|
};
|
|
1148
|
+
},
|
|
1149
|
+
upgradeTheme: async (name, file, options = {}) => {
|
|
1150
|
+
assertParamExists("upgradeTheme", "name", name);
|
|
1151
|
+
assertParamExists("upgradeTheme", "file", file);
|
|
1152
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes/{name}/upgrade`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1153
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1154
|
+
let baseOptions;
|
|
1155
|
+
if (configuration) {
|
|
1156
|
+
baseOptions = configuration.baseOptions;
|
|
1157
|
+
}
|
|
1158
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1159
|
+
const localVarHeaderParameter = {};
|
|
1160
|
+
const localVarQueryParameter = {};
|
|
1161
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
1162
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1163
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1164
|
+
if (file !== void 0) {
|
|
1165
|
+
localVarFormParams.append("file", file);
|
|
1166
|
+
}
|
|
1167
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
1168
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1169
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1170
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1171
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
1172
|
+
return {
|
|
1173
|
+
url: toPathString(localVarUrlObj),
|
|
1174
|
+
options: localVarRequestOptions
|
|
1175
|
+
};
|
|
997
1176
|
}
|
|
998
1177
|
};
|
|
999
1178
|
};
|
|
@@ -1004,9 +1183,17 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
|
|
|
1004
1183
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
|
|
1005
1184
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1006
1185
|
},
|
|
1186
|
+
async listThemes(uninstalled, size, page, labelSelector, fieldSelector, options) {
|
|
1187
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size, page, labelSelector, fieldSelector, options);
|
|
1188
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1189
|
+
},
|
|
1007
1190
|
async reloadThemeSetting(name, options) {
|
|
1008
1191
|
const localVarAxiosArgs = await localVarAxiosParamCreator.reloadThemeSetting(name, options);
|
|
1009
1192
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1193
|
+
},
|
|
1194
|
+
async upgradeTheme(name, file, options) {
|
|
1195
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.upgradeTheme(name, file, options);
|
|
1196
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1010
1197
|
}
|
|
1011
1198
|
};
|
|
1012
1199
|
};
|
|
@@ -1016,8 +1203,14 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
|
|
|
1016
1203
|
installTheme(file, options) {
|
|
1017
1204
|
return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
|
|
1018
1205
|
},
|
|
1206
|
+
listThemes(uninstalled, size, page, labelSelector, fieldSelector, options) {
|
|
1207
|
+
return localVarFp.listThemes(uninstalled, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1208
|
+
},
|
|
1019
1209
|
reloadThemeSetting(name, options) {
|
|
1020
1210
|
return localVarFp.reloadThemeSetting(name, options).then((request) => request(axios, basePath));
|
|
1211
|
+
},
|
|
1212
|
+
upgradeTheme(name, file, options) {
|
|
1213
|
+
return localVarFp.upgradeTheme(name, file, options).then((request) => request(axios, basePath));
|
|
1021
1214
|
}
|
|
1022
1215
|
};
|
|
1023
1216
|
};
|
|
@@ -1025,9 +1218,15 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
1025
1218
|
installTheme(requestParameters, options) {
|
|
1026
1219
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
1027
1220
|
}
|
|
1221
|
+
listThemes(requestParameters, options) {
|
|
1222
|
+
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1223
|
+
}
|
|
1028
1224
|
reloadThemeSetting(requestParameters, options) {
|
|
1029
1225
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reloadThemeSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
1030
1226
|
}
|
|
1227
|
+
upgradeTheme(requestParameters, options) {
|
|
1228
|
+
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).upgradeTheme(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
1229
|
+
}
|
|
1031
1230
|
}
|
|
1032
1231
|
|
|
1033
1232
|
const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
@@ -1294,12 +1493,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1294
1493
|
if (version !== void 0) {
|
|
1295
1494
|
localVarQueryParameter["version"] = version;
|
|
1296
1495
|
}
|
|
1297
|
-
if (group !== void 0) {
|
|
1298
|
-
localVarQueryParameter["group"] = group;
|
|
1299
|
-
}
|
|
1300
1496
|
if (kind !== void 0) {
|
|
1301
1497
|
localVarQueryParameter["kind"] = kind;
|
|
1302
1498
|
}
|
|
1499
|
+
if (group !== void 0) {
|
|
1500
|
+
localVarQueryParameter["group"] = group;
|
|
1501
|
+
}
|
|
1303
1502
|
if (size !== void 0) {
|
|
1304
1503
|
localVarQueryParameter["size"] = size;
|
|
1305
1504
|
}
|
|
@@ -1403,6 +1602,52 @@ const ApiHaloRunV1alpha1TrackerApiAxiosParamCreator = function(configuration) {
|
|
|
1403
1602
|
url: toPathString(localVarUrlObj),
|
|
1404
1603
|
options: localVarRequestOptions
|
|
1405
1604
|
};
|
|
1605
|
+
},
|
|
1606
|
+
downvote: async (voteRequest, options = {}) => {
|
|
1607
|
+
assertParamExists("downvote", "voteRequest", voteRequest);
|
|
1608
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/trackers/downvote`;
|
|
1609
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1610
|
+
let baseOptions;
|
|
1611
|
+
if (configuration) {
|
|
1612
|
+
baseOptions = configuration.baseOptions;
|
|
1613
|
+
}
|
|
1614
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1615
|
+
const localVarHeaderParameter = {};
|
|
1616
|
+
const localVarQueryParameter = {};
|
|
1617
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1618
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1619
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1620
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1621
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1622
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1623
|
+
localVarRequestOptions.data = serializeDataIfNeeded(voteRequest, localVarRequestOptions, configuration);
|
|
1624
|
+
return {
|
|
1625
|
+
url: toPathString(localVarUrlObj),
|
|
1626
|
+
options: localVarRequestOptions
|
|
1627
|
+
};
|
|
1628
|
+
},
|
|
1629
|
+
upvote: async (voteRequest, options = {}) => {
|
|
1630
|
+
assertParamExists("upvote", "voteRequest", voteRequest);
|
|
1631
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/trackers/upvote`;
|
|
1632
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1633
|
+
let baseOptions;
|
|
1634
|
+
if (configuration) {
|
|
1635
|
+
baseOptions = configuration.baseOptions;
|
|
1636
|
+
}
|
|
1637
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1638
|
+
const localVarHeaderParameter = {};
|
|
1639
|
+
const localVarQueryParameter = {};
|
|
1640
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1641
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1642
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1643
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1644
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1645
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1646
|
+
localVarRequestOptions.data = serializeDataIfNeeded(voteRequest, localVarRequestOptions, configuration);
|
|
1647
|
+
return {
|
|
1648
|
+
url: toPathString(localVarUrlObj),
|
|
1649
|
+
options: localVarRequestOptions
|
|
1650
|
+
};
|
|
1406
1651
|
}
|
|
1407
1652
|
};
|
|
1408
1653
|
};
|
|
@@ -1412,6 +1657,14 @@ const ApiHaloRunV1alpha1TrackerApiFp = function(configuration) {
|
|
|
1412
1657
|
async count(counterRequest, options) {
|
|
1413
1658
|
const localVarAxiosArgs = await localVarAxiosParamCreator.count(counterRequest, options);
|
|
1414
1659
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1660
|
+
},
|
|
1661
|
+
async downvote(voteRequest, options) {
|
|
1662
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.downvote(voteRequest, options);
|
|
1663
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1664
|
+
},
|
|
1665
|
+
async upvote(voteRequest, options) {
|
|
1666
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.upvote(voteRequest, options);
|
|
1667
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1415
1668
|
}
|
|
1416
1669
|
};
|
|
1417
1670
|
};
|
|
@@ -1420,6 +1673,12 @@ const ApiHaloRunV1alpha1TrackerApiFactory = function(configuration, basePath, ax
|
|
|
1420
1673
|
return {
|
|
1421
1674
|
count(counterRequest, options) {
|
|
1422
1675
|
return localVarFp.count(counterRequest, options).then((request) => request(axios, basePath));
|
|
1676
|
+
},
|
|
1677
|
+
downvote(voteRequest, options) {
|
|
1678
|
+
return localVarFp.downvote(voteRequest, options).then((request) => request(axios, basePath));
|
|
1679
|
+
},
|
|
1680
|
+
upvote(voteRequest, options) {
|
|
1681
|
+
return localVarFp.upvote(voteRequest, options).then((request) => request(axios, basePath));
|
|
1423
1682
|
}
|
|
1424
1683
|
};
|
|
1425
1684
|
};
|
|
@@ -1427,6 +1686,12 @@ class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
1427
1686
|
count(requestParameters, options) {
|
|
1428
1687
|
return ApiHaloRunV1alpha1TrackerApiFp(this.configuration).count(requestParameters.counterRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1429
1688
|
}
|
|
1689
|
+
downvote(requestParameters, options) {
|
|
1690
|
+
return ApiHaloRunV1alpha1TrackerApiFp(this.configuration).downvote(requestParameters.voteRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1691
|
+
}
|
|
1692
|
+
upvote(requestParameters, options) {
|
|
1693
|
+
return ApiHaloRunV1alpha1TrackerApiFp(this.configuration).upvote(requestParameters.voteRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1694
|
+
}
|
|
1430
1695
|
}
|
|
1431
1696
|
|
|
1432
1697
|
const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator = function(configuration) {
|
|
@@ -3759,50 +4024,6 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
3759
4024
|
options: localVarRequestOptions
|
|
3760
4025
|
};
|
|
3761
4026
|
},
|
|
3762
|
-
searchAttachments: async (policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
3763
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
3764
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3765
|
-
let baseOptions;
|
|
3766
|
-
if (configuration) {
|
|
3767
|
-
baseOptions = configuration.baseOptions;
|
|
3768
|
-
}
|
|
3769
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3770
|
-
const localVarHeaderParameter = {};
|
|
3771
|
-
const localVarQueryParameter = {};
|
|
3772
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3773
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3774
|
-
if (policy !== void 0) {
|
|
3775
|
-
localVarQueryParameter["policy"] = policy;
|
|
3776
|
-
}
|
|
3777
|
-
if (displayName !== void 0) {
|
|
3778
|
-
localVarQueryParameter["displayName"] = displayName;
|
|
3779
|
-
}
|
|
3780
|
-
if (group !== void 0) {
|
|
3781
|
-
localVarQueryParameter["group"] = group;
|
|
3782
|
-
}
|
|
3783
|
-
if (uploadedBy !== void 0) {
|
|
3784
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
3785
|
-
}
|
|
3786
|
-
if (size !== void 0) {
|
|
3787
|
-
localVarQueryParameter["size"] = size;
|
|
3788
|
-
}
|
|
3789
|
-
if (labelSelector) {
|
|
3790
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3791
|
-
}
|
|
3792
|
-
if (fieldSelector) {
|
|
3793
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3794
|
-
}
|
|
3795
|
-
if (page !== void 0) {
|
|
3796
|
-
localVarQueryParameter["page"] = page;
|
|
3797
|
-
}
|
|
3798
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3799
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3800
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3801
|
-
return {
|
|
3802
|
-
url: toPathString(localVarUrlObj),
|
|
3803
|
-
options: localVarRequestOptions
|
|
3804
|
-
};
|
|
3805
|
-
},
|
|
3806
4027
|
updatestorageHaloRunV1alpha1Attachment: async (name, attachment, options = {}) => {
|
|
3807
4028
|
assertParamExists("updatestorageHaloRunV1alpha1Attachment", "name", name);
|
|
3808
4029
|
const localVarPath = `/apis/storage.halo.run/v1alpha1/attachments/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
@@ -3825,40 +4046,6 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
3825
4046
|
url: toPathString(localVarUrlObj),
|
|
3826
4047
|
options: localVarRequestOptions
|
|
3827
4048
|
};
|
|
3828
|
-
},
|
|
3829
|
-
uploadAttachment: async (file, policyName, groupName, options = {}) => {
|
|
3830
|
-
assertParamExists("uploadAttachment", "file", file);
|
|
3831
|
-
assertParamExists("uploadAttachment", "policyName", policyName);
|
|
3832
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments/upload`;
|
|
3833
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3834
|
-
let baseOptions;
|
|
3835
|
-
if (configuration) {
|
|
3836
|
-
baseOptions = configuration.baseOptions;
|
|
3837
|
-
}
|
|
3838
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3839
|
-
const localVarHeaderParameter = {};
|
|
3840
|
-
const localVarQueryParameter = {};
|
|
3841
|
-
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
3842
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3843
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3844
|
-
if (file !== void 0) {
|
|
3845
|
-
localVarFormParams.append("file", file);
|
|
3846
|
-
}
|
|
3847
|
-
if (policyName !== void 0) {
|
|
3848
|
-
localVarFormParams.append("policyName", policyName);
|
|
3849
|
-
}
|
|
3850
|
-
if (groupName !== void 0) {
|
|
3851
|
-
localVarFormParams.append("groupName", groupName);
|
|
3852
|
-
}
|
|
3853
|
-
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
3854
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3855
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3856
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3857
|
-
localVarRequestOptions.data = localVarFormParams;
|
|
3858
|
-
return {
|
|
3859
|
-
url: toPathString(localVarUrlObj),
|
|
3860
|
-
options: localVarRequestOptions
|
|
3861
|
-
};
|
|
3862
4049
|
}
|
|
3863
4050
|
};
|
|
3864
4051
|
};
|
|
@@ -3881,17 +4068,9 @@ const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
3881
4068
|
const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
|
|
3882
4069
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3883
4070
|
},
|
|
3884
|
-
async searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options) {
|
|
3885
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options);
|
|
3886
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3887
|
-
},
|
|
3888
4071
|
async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
3889
4072
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updatestorageHaloRunV1alpha1Attachment(name, attachment, options);
|
|
3890
4073
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3891
|
-
},
|
|
3892
|
-
async uploadAttachment(file, policyName, groupName, options) {
|
|
3893
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadAttachment(file, policyName, groupName, options);
|
|
3894
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3895
4074
|
}
|
|
3896
4075
|
};
|
|
3897
4076
|
};
|
|
@@ -3910,14 +4089,8 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
|
|
|
3910
4089
|
liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
|
|
3911
4090
|
return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3912
4091
|
},
|
|
3913
|
-
searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options) {
|
|
3914
|
-
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
3915
|
-
},
|
|
3916
4092
|
updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
3917
4093
|
return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
|
|
3918
|
-
},
|
|
3919
|
-
uploadAttachment(file, policyName, groupName, options) {
|
|
3920
|
-
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
3921
4094
|
}
|
|
3922
4095
|
};
|
|
3923
4096
|
};
|
|
@@ -3934,15 +4107,9 @@ class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
|
3934
4107
|
liststorageHaloRunV1alpha1Attachment(requestParameters = {}, options) {
|
|
3935
4108
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3936
4109
|
}
|
|
3937
|
-
searchAttachments(requestParameters = {}, options) {
|
|
3938
|
-
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.group, requestParameters.uploadedBy, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
3939
|
-
}
|
|
3940
4110
|
updatestorageHaloRunV1alpha1Attachment(requestParameters, options) {
|
|
3941
4111
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(requestParameters.name, requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
|
|
3942
4112
|
}
|
|
3943
|
-
uploadAttachment(requestParameters, options) {
|
|
3944
|
-
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
3945
|
-
}
|
|
3946
4113
|
}
|
|
3947
4114
|
|
|
3948
4115
|
const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration) {
|
|
@@ -6220,4 +6387,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
6220
6387
|
Private: "PRIVATE"
|
|
6221
6388
|
};
|
|
6222
6389
|
|
|
6223
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, 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, 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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, 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 };
|
|
6390
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, 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, 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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, 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 };
|