@halo-dev/api-client 0.0.70 → 0.0.71
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 +242 -295
- package/dist/index.d.ts +447 -560
- package/dist/index.mjs +243 -288
- 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,26 +90,26 @@ 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 (
|
|
106
|
-
localVarQueryParameter["
|
|
105
|
+
if (labelSelector) {
|
|
106
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
107
107
|
}
|
|
108
108
|
if (fieldSelector) {
|
|
109
109
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
110
110
|
}
|
|
111
|
-
if (
|
|
112
|
-
localVarQueryParameter["
|
|
111
|
+
if (page !== void 0) {
|
|
112
|
+
localVarQueryParameter["page"] = page;
|
|
113
113
|
}
|
|
114
114
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
115
115
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.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,14 +252,8 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
252
252
|
if (sort !== void 0) {
|
|
253
253
|
localVarQueryParameter["sort"] = sort;
|
|
254
254
|
}
|
|
255
|
-
if (
|
|
256
|
-
localVarQueryParameter["
|
|
257
|
-
}
|
|
258
|
-
if (hidden !== void 0) {
|
|
259
|
-
localVarQueryParameter["hidden"] = hidden;
|
|
260
|
-
}
|
|
261
|
-
if (keyword !== void 0) {
|
|
262
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
255
|
+
if (sortOrder !== void 0) {
|
|
256
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
263
257
|
}
|
|
264
258
|
if (approved !== void 0) {
|
|
265
259
|
localVarQueryParameter["approved"] = approved;
|
|
@@ -267,9 +261,6 @@ const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator = function(configurat
|
|
|
267
261
|
if (allowNotification !== void 0) {
|
|
268
262
|
localVarQueryParameter["allowNotification"] = allowNotification;
|
|
269
263
|
}
|
|
270
|
-
if (sortOrder !== void 0) {
|
|
271
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
272
|
-
}
|
|
273
264
|
if (ownerKind !== void 0) {
|
|
274
265
|
localVarQueryParameter["ownerKind"] = ownerKind;
|
|
275
266
|
}
|
|
@@ -282,17 +273,26 @@ 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 (
|
|
289
|
-
localVarQueryParameter["
|
|
288
|
+
if (labelSelector) {
|
|
289
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
290
290
|
}
|
|
291
291
|
if (fieldSelector) {
|
|
292
292
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
293
293
|
}
|
|
294
|
-
if (
|
|
295
|
-
localVarQueryParameter["
|
|
294
|
+
if (page !== void 0) {
|
|
295
|
+
localVarQueryParameter["page"] = page;
|
|
296
296
|
}
|
|
297
297
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
298
298
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.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,122 +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.
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator = function(configuration) {
|
|
351
|
-
return {
|
|
352
|
-
draftSnapshotContent: async (contentRequest, options = {}) => {
|
|
353
|
-
assertParamExists("draftSnapshotContent", "contentRequest", contentRequest);
|
|
354
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/contents`;
|
|
355
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
356
|
-
let baseOptions;
|
|
357
|
-
if (configuration) {
|
|
358
|
-
baseOptions = configuration.baseOptions;
|
|
359
|
-
}
|
|
360
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
361
|
-
const localVarHeaderParameter = {};
|
|
362
|
-
const localVarQueryParameter = {};
|
|
363
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
364
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
365
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
366
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
367
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
368
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
369
|
-
localVarRequestOptions.data = serializeDataIfNeeded(contentRequest, localVarRequestOptions, configuration);
|
|
370
|
-
return {
|
|
371
|
-
url: toPathString(localVarUrlObj),
|
|
372
|
-
options: localVarRequestOptions
|
|
373
|
-
};
|
|
374
|
-
},
|
|
375
|
-
obtainSnapshotContent: async (snapshotName, options = {}) => {
|
|
376
|
-
assertParamExists("obtainSnapshotContent", "snapshotName", snapshotName);
|
|
377
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/contents/{snapshotName}`.replace(`{${"snapshotName"}}`, encodeURIComponent(String(snapshotName)));
|
|
378
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
379
|
-
let baseOptions;
|
|
380
|
-
if (configuration) {
|
|
381
|
-
baseOptions = configuration.baseOptions;
|
|
382
|
-
}
|
|
383
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
384
|
-
const localVarHeaderParameter = {};
|
|
385
|
-
const localVarQueryParameter = {};
|
|
386
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
387
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
388
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
389
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
390
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
391
|
-
return {
|
|
392
|
-
url: toPathString(localVarUrlObj),
|
|
393
|
-
options: localVarRequestOptions
|
|
394
|
-
};
|
|
395
|
-
},
|
|
396
|
-
updateSnapshotContent: async (snapshotName, contentRequest, options = {}) => {
|
|
397
|
-
assertParamExists("updateSnapshotContent", "snapshotName", snapshotName);
|
|
398
|
-
assertParamExists("updateSnapshotContent", "contentRequest", contentRequest);
|
|
399
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/contents/{snapshotName}`.replace(`{${"snapshotName"}}`, encodeURIComponent(String(snapshotName)));
|
|
400
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
401
|
-
let baseOptions;
|
|
402
|
-
if (configuration) {
|
|
403
|
-
baseOptions = configuration.baseOptions;
|
|
404
|
-
}
|
|
405
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
406
|
-
const localVarHeaderParameter = {};
|
|
407
|
-
const localVarQueryParameter = {};
|
|
408
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
409
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
410
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
411
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
412
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
413
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
414
|
-
localVarRequestOptions.data = serializeDataIfNeeded(contentRequest, localVarRequestOptions, configuration);
|
|
415
|
-
return {
|
|
416
|
-
url: toPathString(localVarUrlObj),
|
|
417
|
-
options: localVarRequestOptions
|
|
418
|
-
};
|
|
419
|
-
}
|
|
420
|
-
};
|
|
421
|
-
};
|
|
422
|
-
const ApiConsoleHaloRunV1alpha1ContentApiFp = function(configuration) {
|
|
423
|
-
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator(configuration);
|
|
424
|
-
return {
|
|
425
|
-
async draftSnapshotContent(contentRequest, options) {
|
|
426
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSnapshotContent(contentRequest, options);
|
|
427
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
428
|
-
},
|
|
429
|
-
async obtainSnapshotContent(snapshotName, options) {
|
|
430
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.obtainSnapshotContent(snapshotName, options);
|
|
431
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
432
|
-
},
|
|
433
|
-
async updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
434
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSnapshotContent(snapshotName, contentRequest, options);
|
|
435
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
436
|
-
}
|
|
437
|
-
};
|
|
438
|
-
};
|
|
439
|
-
const ApiConsoleHaloRunV1alpha1ContentApiFactory = function(configuration, basePath, axios) {
|
|
440
|
-
const localVarFp = ApiConsoleHaloRunV1alpha1ContentApiFp(configuration);
|
|
441
|
-
return {
|
|
442
|
-
draftSnapshotContent(contentRequest, options) {
|
|
443
|
-
return localVarFp.draftSnapshotContent(contentRequest, options).then((request) => request(axios, basePath));
|
|
444
|
-
},
|
|
445
|
-
obtainSnapshotContent(snapshotName, options) {
|
|
446
|
-
return localVarFp.obtainSnapshotContent(snapshotName, options).then((request) => request(axios, basePath));
|
|
447
|
-
},
|
|
448
|
-
updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
449
|
-
return localVarFp.updateSnapshotContent(snapshotName, contentRequest, options).then((request) => request(axios, basePath));
|
|
450
|
-
}
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
454
|
-
draftSnapshotContent(requestParameters, options) {
|
|
455
|
-
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).draftSnapshotContent(requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
456
|
-
}
|
|
457
|
-
obtainSnapshotContent(requestParameters, options) {
|
|
458
|
-
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(requestParameters.snapshotName, options).then((request) => request(this.axios, this.basePath));
|
|
459
|
-
}
|
|
460
|
-
updateSnapshotContent(requestParameters, options) {
|
|
461
|
-
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(requestParameters.snapshotName, requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
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));
|
|
462
347
|
}
|
|
463
348
|
}
|
|
464
349
|
|
|
@@ -580,7 +465,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
580
465
|
options: localVarRequestOptions
|
|
581
466
|
};
|
|
582
467
|
},
|
|
583
|
-
listPlugins: async (sort, enabled, keyword, size,
|
|
468
|
+
listPlugins: async (sort, enabled, keyword, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
584
469
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
585
470
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
586
471
|
let baseOptions;
|
|
@@ -604,14 +489,14 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
604
489
|
if (size !== void 0) {
|
|
605
490
|
localVarQueryParameter["size"] = size;
|
|
606
491
|
}
|
|
607
|
-
if (
|
|
608
|
-
localVarQueryParameter["
|
|
492
|
+
if (labelSelector) {
|
|
493
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
609
494
|
}
|
|
610
495
|
if (fieldSelector) {
|
|
611
496
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
612
497
|
}
|
|
613
|
-
if (
|
|
614
|
-
localVarQueryParameter["
|
|
498
|
+
if (page !== void 0) {
|
|
499
|
+
localVarQueryParameter["page"] = page;
|
|
615
500
|
}
|
|
616
501
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
617
502
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -711,8 +596,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
711
596
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
712
597
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
713
598
|
},
|
|
714
|
-
async listPlugins(sort, enabled, keyword, size,
|
|
715
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size,
|
|
599
|
+
async listPlugins(sort, enabled, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
600
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, labelSelector, fieldSelector, page, options);
|
|
716
601
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
717
602
|
},
|
|
718
603
|
async resetPluginConfig(name, options) {
|
|
@@ -741,8 +626,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
741
626
|
installPlugin(file, options) {
|
|
742
627
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
743
628
|
},
|
|
744
|
-
listPlugins(sort, enabled, keyword, size,
|
|
745
|
-
return localVarFp.listPlugins(sort, enabled, keyword, size,
|
|
629
|
+
listPlugins(sort, enabled, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
630
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
746
631
|
},
|
|
747
632
|
resetPluginConfig(name, options) {
|
|
748
633
|
return localVarFp.resetPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
@@ -766,7 +651,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
766
651
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
767
652
|
}
|
|
768
653
|
listPlugins(requestParameters = {}, options) {
|
|
769
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.
|
|
654
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
770
655
|
}
|
|
771
656
|
resetPluginConfig(requestParameters, options) {
|
|
772
657
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -804,7 +689,49 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
804
689
|
options: localVarRequestOptions
|
|
805
690
|
};
|
|
806
691
|
},
|
|
807
|
-
|
|
692
|
+
fetchPostHeadContent: async (name, options = {}) => {
|
|
693
|
+
assertParamExists("fetchPostHeadContent", "name", name);
|
|
694
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts/{name}/head-content`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
695
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
696
|
+
let baseOptions;
|
|
697
|
+
if (configuration) {
|
|
698
|
+
baseOptions = configuration.baseOptions;
|
|
699
|
+
}
|
|
700
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
701
|
+
const localVarHeaderParameter = {};
|
|
702
|
+
const localVarQueryParameter = {};
|
|
703
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
704
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
705
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
706
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
707
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
708
|
+
return {
|
|
709
|
+
url: toPathString(localVarUrlObj),
|
|
710
|
+
options: localVarRequestOptions
|
|
711
|
+
};
|
|
712
|
+
},
|
|
713
|
+
fetchPostReleaseContent: async (name, options = {}) => {
|
|
714
|
+
assertParamExists("fetchPostReleaseContent", "name", name);
|
|
715
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts/{name}/release-content`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
716
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
717
|
+
let baseOptions;
|
|
718
|
+
if (configuration) {
|
|
719
|
+
baseOptions = configuration.baseOptions;
|
|
720
|
+
}
|
|
721
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
722
|
+
const localVarHeaderParameter = {};
|
|
723
|
+
const localVarQueryParameter = {};
|
|
724
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
725
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
726
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
727
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
728
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
729
|
+
return {
|
|
730
|
+
url: toPathString(localVarUrlObj),
|
|
731
|
+
options: localVarRequestOptions
|
|
732
|
+
};
|
|
733
|
+
},
|
|
734
|
+
listPosts: async (sort, contributor, sortOrder, publishPhase, category, tag, keyword, visible, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
808
735
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
809
736
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
810
737
|
let baseOptions;
|
|
@@ -819,14 +746,11 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
819
746
|
if (sort !== void 0) {
|
|
820
747
|
localVarQueryParameter["sort"] = sort;
|
|
821
748
|
}
|
|
822
|
-
if (
|
|
823
|
-
localVarQueryParameter["
|
|
824
|
-
}
|
|
825
|
-
if (tag) {
|
|
826
|
-
localVarQueryParameter["tag"] = Array.from(tag);
|
|
749
|
+
if (contributor) {
|
|
750
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
827
751
|
}
|
|
828
|
-
if (
|
|
829
|
-
localVarQueryParameter["
|
|
752
|
+
if (sortOrder !== void 0) {
|
|
753
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
830
754
|
}
|
|
831
755
|
if (publishPhase !== void 0) {
|
|
832
756
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
@@ -834,23 +758,26 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
834
758
|
if (category) {
|
|
835
759
|
localVarQueryParameter["category"] = Array.from(category);
|
|
836
760
|
}
|
|
837
|
-
if (
|
|
838
|
-
localVarQueryParameter["
|
|
761
|
+
if (tag) {
|
|
762
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
839
763
|
}
|
|
840
|
-
if (
|
|
841
|
-
localVarQueryParameter["
|
|
764
|
+
if (keyword !== void 0) {
|
|
765
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
766
|
+
}
|
|
767
|
+
if (visible !== void 0) {
|
|
768
|
+
localVarQueryParameter["visible"] = visible;
|
|
842
769
|
}
|
|
843
770
|
if (size !== void 0) {
|
|
844
771
|
localVarQueryParameter["size"] = size;
|
|
845
772
|
}
|
|
846
|
-
if (
|
|
847
|
-
localVarQueryParameter["
|
|
773
|
+
if (labelSelector) {
|
|
774
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
848
775
|
}
|
|
849
776
|
if (fieldSelector) {
|
|
850
777
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
851
778
|
}
|
|
852
|
-
if (
|
|
853
|
-
localVarQueryParameter["
|
|
779
|
+
if (page !== void 0) {
|
|
780
|
+
localVarQueryParameter["page"] = page;
|
|
854
781
|
}
|
|
855
782
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
856
783
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -983,8 +910,16 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
983
910
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
984
911
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
985
912
|
},
|
|
986
|
-
async
|
|
987
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
913
|
+
async fetchPostHeadContent(name, options) {
|
|
914
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPostHeadContent(name, options);
|
|
915
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
916
|
+
},
|
|
917
|
+
async fetchPostReleaseContent(name, options) {
|
|
918
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPostReleaseContent(name, options);
|
|
919
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
920
|
+
},
|
|
921
|
+
async listPosts(sort, contributor, sortOrder, publishPhase, category, tag, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
922
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, contributor, sortOrder, publishPhase, category, tag, keyword, visible, size, labelSelector, fieldSelector, page, options);
|
|
988
923
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
989
924
|
},
|
|
990
925
|
async publishPost(name, headSnapshot, options) {
|
|
@@ -1015,8 +950,14 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
1015
950
|
draftPost(postRequest, options) {
|
|
1016
951
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
1017
952
|
},
|
|
1018
|
-
|
|
1019
|
-
return localVarFp.
|
|
953
|
+
fetchPostHeadContent(name, options) {
|
|
954
|
+
return localVarFp.fetchPostHeadContent(name, options).then((request) => request(axios, basePath));
|
|
955
|
+
},
|
|
956
|
+
fetchPostReleaseContent(name, options) {
|
|
957
|
+
return localVarFp.fetchPostReleaseContent(name, options).then((request) => request(axios, basePath));
|
|
958
|
+
},
|
|
959
|
+
listPosts(sort, contributor, sortOrder, publishPhase, category, tag, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
960
|
+
return localVarFp.listPosts(sort, contributor, sortOrder, publishPhase, category, tag, keyword, visible, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1020
961
|
},
|
|
1021
962
|
publishPost(name, headSnapshot, options) {
|
|
1022
963
|
return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
|
|
@@ -1039,8 +980,14 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
1039
980
|
draftPost(requestParameters, options) {
|
|
1040
981
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1041
982
|
}
|
|
983
|
+
fetchPostHeadContent(requestParameters, options) {
|
|
984
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).fetchPostHeadContent(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
985
|
+
}
|
|
986
|
+
fetchPostReleaseContent(requestParameters, options) {
|
|
987
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).fetchPostReleaseContent(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
988
|
+
}
|
|
1042
989
|
listPosts(requestParameters = {}, options) {
|
|
1043
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
990
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.tag, requestParameters.keyword, requestParameters.visible, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1044
991
|
}
|
|
1045
992
|
publishPost(requestParameters, options) {
|
|
1046
993
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1061,7 +1008,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
1061
1008
|
|
|
1062
1009
|
const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
1063
1010
|
return {
|
|
1064
|
-
listReplies: async (commentName, size,
|
|
1011
|
+
listReplies: async (commentName, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
1065
1012
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/replies`;
|
|
1066
1013
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1067
1014
|
let baseOptions;
|
|
@@ -1079,14 +1026,14 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
1079
1026
|
if (size !== void 0) {
|
|
1080
1027
|
localVarQueryParameter["size"] = size;
|
|
1081
1028
|
}
|
|
1082
|
-
if (
|
|
1083
|
-
localVarQueryParameter["
|
|
1029
|
+
if (labelSelector) {
|
|
1030
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1084
1031
|
}
|
|
1085
1032
|
if (fieldSelector) {
|
|
1086
1033
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1087
1034
|
}
|
|
1088
|
-
if (
|
|
1089
|
-
localVarQueryParameter["
|
|
1035
|
+
if (page !== void 0) {
|
|
1036
|
+
localVarQueryParameter["page"] = page;
|
|
1090
1037
|
}
|
|
1091
1038
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1092
1039
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1101,8 +1048,8 @@ const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuratio
|
|
|
1101
1048
|
const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
1102
1049
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
1103
1050
|
return {
|
|
1104
|
-
async listReplies(commentName, size,
|
|
1105
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size,
|
|
1051
|
+
async listReplies(commentName, size, labelSelector, fieldSelector, page, options) {
|
|
1052
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, labelSelector, fieldSelector, page, options);
|
|
1106
1053
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1107
1054
|
}
|
|
1108
1055
|
};
|
|
@@ -1110,14 +1057,14 @@ const ApiConsoleHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
|
1110
1057
|
const ApiConsoleHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
1111
1058
|
const localVarFp = ApiConsoleHaloRunV1alpha1ReplyApiFp(configuration);
|
|
1112
1059
|
return {
|
|
1113
|
-
listReplies(commentName, size,
|
|
1114
|
-
return localVarFp.listReplies(commentName, size,
|
|
1060
|
+
listReplies(commentName, size, labelSelector, fieldSelector, page, options) {
|
|
1061
|
+
return localVarFp.listReplies(commentName, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1115
1062
|
}
|
|
1116
1063
|
};
|
|
1117
1064
|
};
|
|
1118
1065
|
class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
1119
1066
|
listReplies(requestParameters = {}, options) {
|
|
1120
|
-
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.
|
|
1067
|
+
return ApiConsoleHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1121
1068
|
}
|
|
1122
1069
|
}
|
|
1123
1070
|
|
|
@@ -1146,7 +1093,49 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1146
1093
|
options: localVarRequestOptions
|
|
1147
1094
|
};
|
|
1148
1095
|
},
|
|
1149
|
-
|
|
1096
|
+
fetchSinglePageHeadContent: async (name, options = {}) => {
|
|
1097
|
+
assertParamExists("fetchSinglePageHeadContent", "name", name);
|
|
1098
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages/{name}/head-content`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1099
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1100
|
+
let baseOptions;
|
|
1101
|
+
if (configuration) {
|
|
1102
|
+
baseOptions = configuration.baseOptions;
|
|
1103
|
+
}
|
|
1104
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1105
|
+
const localVarHeaderParameter = {};
|
|
1106
|
+
const localVarQueryParameter = {};
|
|
1107
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1108
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1109
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1110
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1111
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1112
|
+
return {
|
|
1113
|
+
url: toPathString(localVarUrlObj),
|
|
1114
|
+
options: localVarRequestOptions
|
|
1115
|
+
};
|
|
1116
|
+
},
|
|
1117
|
+
fetchSinglePageReleaseContent: async (name, options = {}) => {
|
|
1118
|
+
assertParamExists("fetchSinglePageReleaseContent", "name", name);
|
|
1119
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages/{name}/release-content`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1120
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1121
|
+
let baseOptions;
|
|
1122
|
+
if (configuration) {
|
|
1123
|
+
baseOptions = configuration.baseOptions;
|
|
1124
|
+
}
|
|
1125
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1126
|
+
const localVarHeaderParameter = {};
|
|
1127
|
+
const localVarQueryParameter = {};
|
|
1128
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1129
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1130
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1132
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1133
|
+
return {
|
|
1134
|
+
url: toPathString(localVarUrlObj),
|
|
1135
|
+
options: localVarRequestOptions
|
|
1136
|
+
};
|
|
1137
|
+
},
|
|
1138
|
+
listSinglePages: async (sort, contributor, sortOrder, publishPhase, keyword, visible, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
1150
1139
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
1151
1140
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1152
1141
|
let baseOptions;
|
|
@@ -1161,32 +1150,32 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1161
1150
|
if (sort !== void 0) {
|
|
1162
1151
|
localVarQueryParameter["sort"] = sort;
|
|
1163
1152
|
}
|
|
1164
|
-
if (
|
|
1165
|
-
localVarQueryParameter["
|
|
1153
|
+
if (contributor) {
|
|
1154
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
1166
1155
|
}
|
|
1167
|
-
if (
|
|
1168
|
-
localVarQueryParameter["
|
|
1156
|
+
if (sortOrder !== void 0) {
|
|
1157
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
1169
1158
|
}
|
|
1170
1159
|
if (publishPhase !== void 0) {
|
|
1171
1160
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
1172
1161
|
}
|
|
1173
|
-
if (
|
|
1174
|
-
localVarQueryParameter["
|
|
1162
|
+
if (keyword !== void 0) {
|
|
1163
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
1175
1164
|
}
|
|
1176
|
-
if (
|
|
1177
|
-
localVarQueryParameter["
|
|
1165
|
+
if (visible !== void 0) {
|
|
1166
|
+
localVarQueryParameter["visible"] = visible;
|
|
1178
1167
|
}
|
|
1179
1168
|
if (size !== void 0) {
|
|
1180
1169
|
localVarQueryParameter["size"] = size;
|
|
1181
1170
|
}
|
|
1182
|
-
if (
|
|
1183
|
-
localVarQueryParameter["
|
|
1171
|
+
if (labelSelector) {
|
|
1172
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1184
1173
|
}
|
|
1185
1174
|
if (fieldSelector) {
|
|
1186
1175
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1187
1176
|
}
|
|
1188
|
-
if (
|
|
1189
|
-
localVarQueryParameter["
|
|
1177
|
+
if (page !== void 0) {
|
|
1178
|
+
localVarQueryParameter["page"] = page;
|
|
1190
1179
|
}
|
|
1191
1180
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1192
1181
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1274,8 +1263,16 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1274
1263
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1275
1264
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1276
1265
|
},
|
|
1277
|
-
async
|
|
1278
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
1266
|
+
async fetchSinglePageHeadContent(name, options) {
|
|
1267
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchSinglePageHeadContent(name, options);
|
|
1268
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1269
|
+
},
|
|
1270
|
+
async fetchSinglePageReleaseContent(name, options) {
|
|
1271
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchSinglePageReleaseContent(name, options);
|
|
1272
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1273
|
+
},
|
|
1274
|
+
async listSinglePages(sort, contributor, sortOrder, publishPhase, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
1275
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, contributor, sortOrder, publishPhase, keyword, visible, size, labelSelector, fieldSelector, page, options);
|
|
1279
1276
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1280
1277
|
},
|
|
1281
1278
|
async publishSinglePage(name, options) {
|
|
@@ -1298,8 +1295,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1298
1295
|
draftSinglePage(singlePageRequest, options) {
|
|
1299
1296
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1300
1297
|
},
|
|
1301
|
-
|
|
1302
|
-
return localVarFp.
|
|
1298
|
+
fetchSinglePageHeadContent(name, options) {
|
|
1299
|
+
return localVarFp.fetchSinglePageHeadContent(name, options).then((request) => request(axios, basePath));
|
|
1300
|
+
},
|
|
1301
|
+
fetchSinglePageReleaseContent(name, options) {
|
|
1302
|
+
return localVarFp.fetchSinglePageReleaseContent(name, options).then((request) => request(axios, basePath));
|
|
1303
|
+
},
|
|
1304
|
+
listSinglePages(sort, contributor, sortOrder, publishPhase, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
1305
|
+
return localVarFp.listSinglePages(sort, contributor, sortOrder, publishPhase, keyword, visible, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1303
1306
|
},
|
|
1304
1307
|
publishSinglePage(name, options) {
|
|
1305
1308
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1316,8 +1319,14 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1316
1319
|
draftSinglePage(requestParameters, options) {
|
|
1317
1320
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1318
1321
|
}
|
|
1322
|
+
fetchSinglePageHeadContent(requestParameters, options) {
|
|
1323
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).fetchSinglePageHeadContent(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
1324
|
+
}
|
|
1325
|
+
fetchSinglePageReleaseContent(requestParameters, options) {
|
|
1326
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).fetchSinglePageReleaseContent(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
1327
|
+
}
|
|
1319
1328
|
listSinglePages(requestParameters = {}, options) {
|
|
1320
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1329
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.keyword, requestParameters.visible, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1321
1330
|
}
|
|
1322
1331
|
publishSinglePage(requestParameters, options) {
|
|
1323
1332
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1489,7 +1498,7 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1489
1498
|
options: localVarRequestOptions
|
|
1490
1499
|
};
|
|
1491
1500
|
},
|
|
1492
|
-
listThemes: async (uninstalled, size,
|
|
1501
|
+
listThemes: async (uninstalled, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
1493
1502
|
assertParamExists("listThemes", "uninstalled", uninstalled);
|
|
1494
1503
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes`;
|
|
1495
1504
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1508,14 +1517,14 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
|
|
|
1508
1517
|
if (size !== void 0) {
|
|
1509
1518
|
localVarQueryParameter["size"] = size;
|
|
1510
1519
|
}
|
|
1511
|
-
if (
|
|
1512
|
-
localVarQueryParameter["
|
|
1520
|
+
if (labelSelector) {
|
|
1521
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
1513
1522
|
}
|
|
1514
1523
|
if (fieldSelector) {
|
|
1515
1524
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
1516
1525
|
}
|
|
1517
|
-
if (
|
|
1518
|
-
localVarQueryParameter["
|
|
1526
|
+
if (page !== void 0) {
|
|
1527
|
+
localVarQueryParameter["page"] = page;
|
|
1519
1528
|
}
|
|
1520
1529
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1521
1530
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1644,8 +1653,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
|
|
|
1644
1653
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
|
|
1645
1654
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1646
1655
|
},
|
|
1647
|
-
async listThemes(uninstalled, size,
|
|
1648
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size,
|
|
1656
|
+
async listThemes(uninstalled, size, labelSelector, fieldSelector, page, options) {
|
|
1657
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listThemes(uninstalled, size, labelSelector, fieldSelector, page, options);
|
|
1649
1658
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1650
1659
|
},
|
|
1651
1660
|
async reload(name, options) {
|
|
@@ -1684,8 +1693,8 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
|
|
|
1684
1693
|
installTheme(file, options) {
|
|
1685
1694
|
return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
|
|
1686
1695
|
},
|
|
1687
|
-
listThemes(uninstalled, size,
|
|
1688
|
-
return localVarFp.listThemes(uninstalled, size,
|
|
1696
|
+
listThemes(uninstalled, size, labelSelector, fieldSelector, page, options) {
|
|
1697
|
+
return localVarFp.listThemes(uninstalled, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
1689
1698
|
},
|
|
1690
1699
|
reload(name, options) {
|
|
1691
1700
|
return localVarFp.reload(name, options).then((request) => request(axios, basePath));
|
|
@@ -1718,7 +1727,7 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
1718
1727
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
1719
1728
|
}
|
|
1720
1729
|
listThemes(requestParameters, options) {
|
|
1721
|
-
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.
|
|
1730
|
+
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).listThemes(requestParameters.uninstalled, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1722
1731
|
}
|
|
1723
1732
|
reload(requestParameters, options) {
|
|
1724
1733
|
return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reload(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2031,12 +2040,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
2031
2040
|
if (version !== void 0) {
|
|
2032
2041
|
localVarQueryParameter["version"] = version;
|
|
2033
2042
|
}
|
|
2034
|
-
if (group !== void 0) {
|
|
2035
|
-
localVarQueryParameter["group"] = group;
|
|
2036
|
-
}
|
|
2037
2043
|
if (kind !== void 0) {
|
|
2038
2044
|
localVarQueryParameter["kind"] = kind;
|
|
2039
2045
|
}
|
|
2046
|
+
if (group !== void 0) {
|
|
2047
|
+
localVarQueryParameter["group"] = group;
|
|
2048
|
+
}
|
|
2040
2049
|
if (size !== void 0) {
|
|
2041
2050
|
localVarQueryParameter["size"] = size;
|
|
2042
2051
|
}
|
|
@@ -2118,7 +2127,7 @@ class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
2118
2127
|
|
|
2119
2128
|
const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
2120
2129
|
return {
|
|
2121
|
-
searchPost: async (keyword,
|
|
2130
|
+
searchPost: async (keyword, highlightPreTag, highlightPostTag, limit, options = {}) => {
|
|
2122
2131
|
assertParamExists("searchPost", "keyword", keyword);
|
|
2123
2132
|
const localVarPath = `/apis/api.halo.run/v1alpha1/indices/post`;
|
|
2124
2133
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2131,18 +2140,18 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
2131
2140
|
const localVarQueryParameter = {};
|
|
2132
2141
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2133
2142
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2134
|
-
if (limit !== void 0) {
|
|
2135
|
-
localVarQueryParameter["limit"] = limit;
|
|
2136
|
-
}
|
|
2137
|
-
if (keyword !== void 0) {
|
|
2138
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
2139
|
-
}
|
|
2140
2143
|
if (highlightPreTag !== void 0) {
|
|
2141
2144
|
localVarQueryParameter["highlightPreTag"] = highlightPreTag;
|
|
2142
2145
|
}
|
|
2143
2146
|
if (highlightPostTag !== void 0) {
|
|
2144
2147
|
localVarQueryParameter["highlightPostTag"] = highlightPostTag;
|
|
2145
2148
|
}
|
|
2149
|
+
if (limit !== void 0) {
|
|
2150
|
+
localVarQueryParameter["limit"] = limit;
|
|
2151
|
+
}
|
|
2152
|
+
if (keyword !== void 0) {
|
|
2153
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
2154
|
+
}
|
|
2146
2155
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2147
2156
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2148
2157
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -2156,8 +2165,8 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
2156
2165
|
const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
2157
2166
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1PostApiAxiosParamCreator(configuration);
|
|
2158
2167
|
return {
|
|
2159
|
-
async searchPost(keyword,
|
|
2160
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchPost(keyword,
|
|
2168
|
+
async searchPost(keyword, highlightPreTag, highlightPostTag, limit, options) {
|
|
2169
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchPost(keyword, highlightPreTag, highlightPostTag, limit, options);
|
|
2161
2170
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2162
2171
|
}
|
|
2163
2172
|
};
|
|
@@ -2165,14 +2174,14 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
2165
2174
|
const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios) {
|
|
2166
2175
|
const localVarFp = ApiHaloRunV1alpha1PostApiFp(configuration);
|
|
2167
2176
|
return {
|
|
2168
|
-
searchPost(keyword,
|
|
2169
|
-
return localVarFp.searchPost(keyword,
|
|
2177
|
+
searchPost(keyword, highlightPreTag, highlightPostTag, limit, options) {
|
|
2178
|
+
return localVarFp.searchPost(keyword, highlightPreTag, highlightPostTag, limit, options).then((request) => request(axios, basePath));
|
|
2170
2179
|
}
|
|
2171
2180
|
};
|
|
2172
2181
|
};
|
|
2173
2182
|
class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
2174
2183
|
searchPost(requestParameters, options) {
|
|
2175
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).searchPost(requestParameters.keyword, requestParameters.
|
|
2184
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).searchPost(requestParameters.keyword, requestParameters.highlightPreTag, requestParameters.highlightPostTag, requestParameters.limit, options).then((request) => request(this.axios, this.basePath));
|
|
2176
2185
|
}
|
|
2177
2186
|
}
|
|
2178
2187
|
|
|
@@ -3780,60 +3789,6 @@ class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
|
3780
3789
|
}
|
|
3781
3790
|
}
|
|
3782
3791
|
|
|
3783
|
-
const MigrationControllerApiAxiosParamCreator = function(configuration) {
|
|
3784
|
-
return {
|
|
3785
|
-
importMigrationData: async (file, options = {}) => {
|
|
3786
|
-
assertParamExists("importMigrationData", "file", file);
|
|
3787
|
-
const localVarPath = `/apis/api.plugin.halo.run/v1alpha1/plugins/PluginMigrate/migrations/import`;
|
|
3788
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3789
|
-
let baseOptions;
|
|
3790
|
-
if (configuration) {
|
|
3791
|
-
baseOptions = configuration.baseOptions;
|
|
3792
|
-
}
|
|
3793
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3794
|
-
const localVarHeaderParameter = {};
|
|
3795
|
-
const localVarQueryParameter = {};
|
|
3796
|
-
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
3797
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3798
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3799
|
-
if (file !== void 0) {
|
|
3800
|
-
localVarFormParams.append("file", file);
|
|
3801
|
-
}
|
|
3802
|
-
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
3803
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3804
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3805
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3806
|
-
localVarRequestOptions.data = localVarFormParams;
|
|
3807
|
-
return {
|
|
3808
|
-
url: toPathString(localVarUrlObj),
|
|
3809
|
-
options: localVarRequestOptions
|
|
3810
|
-
};
|
|
3811
|
-
}
|
|
3812
|
-
};
|
|
3813
|
-
};
|
|
3814
|
-
const MigrationControllerApiFp = function(configuration) {
|
|
3815
|
-
const localVarAxiosParamCreator = MigrationControllerApiAxiosParamCreator(configuration);
|
|
3816
|
-
return {
|
|
3817
|
-
async importMigrationData(file, options) {
|
|
3818
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.importMigrationData(file, options);
|
|
3819
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3820
|
-
}
|
|
3821
|
-
};
|
|
3822
|
-
};
|
|
3823
|
-
const MigrationControllerApiFactory = function(configuration, basePath, axios) {
|
|
3824
|
-
const localVarFp = MigrationControllerApiFp(configuration);
|
|
3825
|
-
return {
|
|
3826
|
-
importMigrationData(file, options) {
|
|
3827
|
-
return localVarFp.importMigrationData(file, options).then((request) => request(axios, basePath));
|
|
3828
|
-
}
|
|
3829
|
-
};
|
|
3830
|
-
};
|
|
3831
|
-
class MigrationControllerApi extends BaseAPI {
|
|
3832
|
-
importMigrationData(requestParameters, options) {
|
|
3833
|
-
return MigrationControllerApiFp(this.configuration).importMigrationData(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
3834
|
-
}
|
|
3835
|
-
}
|
|
3836
|
-
|
|
3837
3792
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
3838
3793
|
return {
|
|
3839
3794
|
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
@@ -7052,4 +7007,4 @@ const ThemeStatusPhaseEnum = {
|
|
|
7052
7007
|
Unknown: "UNKNOWN"
|
|
7053
7008
|
};
|
|
7054
7009
|
|
|
7055
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp,
|
|
7010
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, MenuItemSpecTargetEnum, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeStatusPhaseEnum, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|