@halo-dev/api-client 0.0.18 → 0.0.20
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 +241 -127
- package/dist/index.d.ts +712 -282
- package/dist/index.mjs +234 -128
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -67,6 +67,95 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
+
const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
71
|
+
return {
|
|
72
|
+
listComments: async (sort, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
73
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
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 (sort !== void 0) {
|
|
85
|
+
localVarQueryParameter["sort"] = sort;
|
|
86
|
+
}
|
|
87
|
+
if (hidden !== void 0) {
|
|
88
|
+
localVarQueryParameter["hidden"] = hidden;
|
|
89
|
+
}
|
|
90
|
+
if (top !== void 0) {
|
|
91
|
+
localVarQueryParameter["top"] = top;
|
|
92
|
+
}
|
|
93
|
+
if (sortOrder !== void 0) {
|
|
94
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
95
|
+
}
|
|
96
|
+
if (approved !== void 0) {
|
|
97
|
+
localVarQueryParameter["approved"] = approved;
|
|
98
|
+
}
|
|
99
|
+
if (allowNotification !== void 0) {
|
|
100
|
+
localVarQueryParameter["allowNotification"] = allowNotification;
|
|
101
|
+
}
|
|
102
|
+
if (ownerKind !== void 0) {
|
|
103
|
+
localVarQueryParameter["ownerKind"] = ownerKind;
|
|
104
|
+
}
|
|
105
|
+
if (ownerName !== void 0) {
|
|
106
|
+
localVarQueryParameter["ownerName"] = ownerName;
|
|
107
|
+
}
|
|
108
|
+
if (subjectKind !== void 0) {
|
|
109
|
+
localVarQueryParameter["subjectKind"] = subjectKind;
|
|
110
|
+
}
|
|
111
|
+
if (subjectName !== void 0) {
|
|
112
|
+
localVarQueryParameter["subjectName"] = subjectName;
|
|
113
|
+
}
|
|
114
|
+
if (size !== void 0) {
|
|
115
|
+
localVarQueryParameter["size"] = size;
|
|
116
|
+
}
|
|
117
|
+
if (page !== void 0) {
|
|
118
|
+
localVarQueryParameter["page"] = page;
|
|
119
|
+
}
|
|
120
|
+
if (labelSelector) {
|
|
121
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
122
|
+
}
|
|
123
|
+
if (fieldSelector) {
|
|
124
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
125
|
+
}
|
|
126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
128
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
129
|
+
return {
|
|
130
|
+
url: toPathString(localVarUrlObj),
|
|
131
|
+
options: localVarRequestOptions
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
137
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1CommentApiAxiosParamCreator(configuration);
|
|
138
|
+
return {
|
|
139
|
+
async listComments(sort, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
140
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options);
|
|
141
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
142
|
+
}
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
const ApiHaloRunV1alpha1CommentApiFactory = function(configuration, basePath, axios) {
|
|
146
|
+
const localVarFp = ApiHaloRunV1alpha1CommentApiFp(configuration);
|
|
147
|
+
return {
|
|
148
|
+
listComments(sort, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
149
|
+
return localVarFp.listComments(sort, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
154
|
+
listComments(requestParameters = {}, options) {
|
|
155
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, 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));
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
70
159
|
const ApiHaloRunV1alpha1ContentApiAxiosParamCreator = function(configuration) {
|
|
71
160
|
return {
|
|
72
161
|
draftSnapshotContent: async (contentRequest, options = {}) => {
|
|
@@ -295,30 +384,7 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
295
384
|
options: localVarRequestOptions
|
|
296
385
|
};
|
|
297
386
|
},
|
|
298
|
-
|
|
299
|
-
assertParamExists("draftSinglePage", "singlePageRequest", singlePageRequest);
|
|
300
|
-
const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
|
|
301
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
302
|
-
let baseOptions;
|
|
303
|
-
if (configuration) {
|
|
304
|
-
baseOptions = configuration.baseOptions;
|
|
305
|
-
}
|
|
306
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
307
|
-
const localVarHeaderParameter = {};
|
|
308
|
-
const localVarQueryParameter = {};
|
|
309
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
310
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
311
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
312
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
313
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
314
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
315
|
-
localVarRequestOptions.data = serializeDataIfNeeded(singlePageRequest, localVarRequestOptions, configuration);
|
|
316
|
-
return {
|
|
317
|
-
url: toPathString(localVarUrlObj),
|
|
318
|
-
options: localVarRequestOptions
|
|
319
|
-
};
|
|
320
|
-
},
|
|
321
|
-
listPosts: async (contributors, categories, tags, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
387
|
+
listPosts: async (tags, categories, contributors, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
322
388
|
const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
|
|
323
389
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
324
390
|
let baseOptions;
|
|
@@ -330,27 +396,27 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
330
396
|
const localVarQueryParameter = {};
|
|
331
397
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
332
398
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
333
|
-
if (
|
|
334
|
-
localVarQueryParameter["
|
|
399
|
+
if (tags) {
|
|
400
|
+
localVarQueryParameter["tags"] = Array.from(tags);
|
|
335
401
|
}
|
|
336
402
|
if (categories) {
|
|
337
403
|
localVarQueryParameter["categories"] = Array.from(categories);
|
|
338
404
|
}
|
|
339
|
-
if (
|
|
340
|
-
localVarQueryParameter["
|
|
405
|
+
if (contributors) {
|
|
406
|
+
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
341
407
|
}
|
|
342
408
|
if (size !== void 0) {
|
|
343
409
|
localVarQueryParameter["size"] = size;
|
|
344
410
|
}
|
|
411
|
+
if (page !== void 0) {
|
|
412
|
+
localVarQueryParameter["page"] = page;
|
|
413
|
+
}
|
|
345
414
|
if (labelSelector) {
|
|
346
415
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
347
416
|
}
|
|
348
417
|
if (fieldSelector) {
|
|
349
418
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
350
419
|
}
|
|
351
|
-
if (page !== void 0) {
|
|
352
|
-
localVarQueryParameter["page"] = page;
|
|
353
|
-
}
|
|
354
420
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
355
421
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
356
422
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -359,33 +425,19 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
359
425
|
options: localVarRequestOptions
|
|
360
426
|
};
|
|
361
427
|
},
|
|
362
|
-
|
|
363
|
-
|
|
428
|
+
publishPost: async (name, options = {}) => {
|
|
429
|
+
assertParamExists("publishPost", "name", name);
|
|
430
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/posts/{name}/publish`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
364
431
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
365
432
|
let baseOptions;
|
|
366
433
|
if (configuration) {
|
|
367
434
|
baseOptions = configuration.baseOptions;
|
|
368
435
|
}
|
|
369
|
-
const localVarRequestOptions = { method: "
|
|
436
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
370
437
|
const localVarHeaderParameter = {};
|
|
371
438
|
const localVarQueryParameter = {};
|
|
372
439
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
373
440
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
374
|
-
if (contributors) {
|
|
375
|
-
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
376
|
-
}
|
|
377
|
-
if (size !== void 0) {
|
|
378
|
-
localVarQueryParameter["size"] = size;
|
|
379
|
-
}
|
|
380
|
-
if (labelSelector) {
|
|
381
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
382
|
-
}
|
|
383
|
-
if (fieldSelector) {
|
|
384
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
385
|
-
}
|
|
386
|
-
if (page !== void 0) {
|
|
387
|
-
localVarQueryParameter["page"] = page;
|
|
388
|
-
}
|
|
389
441
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
390
442
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
443
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -394,9 +446,10 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
394
446
|
options: localVarRequestOptions
|
|
395
447
|
};
|
|
396
448
|
},
|
|
397
|
-
|
|
398
|
-
assertParamExists("
|
|
399
|
-
|
|
449
|
+
updateDraftPost: async (name, postRequest, options = {}) => {
|
|
450
|
+
assertParamExists("updateDraftPost", "name", name);
|
|
451
|
+
assertParamExists("updateDraftPost", "postRequest", postRequest);
|
|
452
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/posts/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
400
453
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
401
454
|
let baseOptions;
|
|
402
455
|
if (configuration) {
|
|
@@ -407,39 +460,134 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
407
460
|
const localVarQueryParameter = {};
|
|
408
461
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
409
462
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
463
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
410
464
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
411
465
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
412
466
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
467
|
+
localVarRequestOptions.data = serializeDataIfNeeded(postRequest, localVarRequestOptions, configuration);
|
|
413
468
|
return {
|
|
414
469
|
url: toPathString(localVarUrlObj),
|
|
415
470
|
options: localVarRequestOptions
|
|
416
471
|
};
|
|
472
|
+
}
|
|
473
|
+
};
|
|
474
|
+
};
|
|
475
|
+
const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
476
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1PostApiAxiosParamCreator(configuration);
|
|
477
|
+
return {
|
|
478
|
+
async draftPost(postRequest, options) {
|
|
479
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
480
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
417
481
|
},
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
482
|
+
async listPosts(tags, categories, contributors, size, page, labelSelector, fieldSelector, options) {
|
|
483
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags, categories, contributors, size, page, labelSelector, fieldSelector, options);
|
|
484
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
485
|
+
},
|
|
486
|
+
async publishPost(name, options) {
|
|
487
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.publishPost(name, options);
|
|
488
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
489
|
+
},
|
|
490
|
+
async updateDraftPost(name, postRequest, options) {
|
|
491
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraftPost(name, postRequest, options);
|
|
492
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
493
|
+
}
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios) {
|
|
497
|
+
const localVarFp = ApiHaloRunV1alpha1PostApiFp(configuration);
|
|
498
|
+
return {
|
|
499
|
+
draftPost(postRequest, options) {
|
|
500
|
+
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
501
|
+
},
|
|
502
|
+
listPosts(tags, categories, contributors, size, page, labelSelector, fieldSelector, options) {
|
|
503
|
+
return localVarFp.listPosts(tags, categories, contributors, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
504
|
+
},
|
|
505
|
+
publishPost(name, options) {
|
|
506
|
+
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
507
|
+
},
|
|
508
|
+
updateDraftPost(name, postRequest, options) {
|
|
509
|
+
return localVarFp.updateDraftPost(name, postRequest, options).then((request) => request(axios, basePath));
|
|
510
|
+
}
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
514
|
+
draftPost(requestParameters, options) {
|
|
515
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
516
|
+
}
|
|
517
|
+
listPosts(requestParameters = {}, options) {
|
|
518
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.categories, requestParameters.contributors, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
519
|
+
}
|
|
520
|
+
publishPost(requestParameters, options) {
|
|
521
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
522
|
+
}
|
|
523
|
+
updateDraftPost(requestParameters, options) {
|
|
524
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(requestParameters.name, requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration) {
|
|
529
|
+
return {
|
|
530
|
+
draftSinglePage: async (singlePageRequest, options = {}) => {
|
|
531
|
+
assertParamExists("draftSinglePage", "singlePageRequest", singlePageRequest);
|
|
532
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
|
|
421
533
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
422
534
|
let baseOptions;
|
|
423
535
|
if (configuration) {
|
|
424
536
|
baseOptions = configuration.baseOptions;
|
|
425
537
|
}
|
|
426
|
-
const localVarRequestOptions = { method: "
|
|
538
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
427
539
|
const localVarHeaderParameter = {};
|
|
428
540
|
const localVarQueryParameter = {};
|
|
429
541
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
430
542
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
543
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
431
544
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
432
545
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
433
546
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
547
|
+
localVarRequestOptions.data = serializeDataIfNeeded(singlePageRequest, localVarRequestOptions, configuration);
|
|
434
548
|
return {
|
|
435
549
|
url: toPathString(localVarUrlObj),
|
|
436
550
|
options: localVarRequestOptions
|
|
437
551
|
};
|
|
438
552
|
},
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
553
|
+
listSinglePages: async (contributors, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
554
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
|
|
555
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
556
|
+
let baseOptions;
|
|
557
|
+
if (configuration) {
|
|
558
|
+
baseOptions = configuration.baseOptions;
|
|
559
|
+
}
|
|
560
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
561
|
+
const localVarHeaderParameter = {};
|
|
562
|
+
const localVarQueryParameter = {};
|
|
563
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
564
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
565
|
+
if (contributors) {
|
|
566
|
+
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
567
|
+
}
|
|
568
|
+
if (size !== void 0) {
|
|
569
|
+
localVarQueryParameter["size"] = size;
|
|
570
|
+
}
|
|
571
|
+
if (page !== void 0) {
|
|
572
|
+
localVarQueryParameter["page"] = page;
|
|
573
|
+
}
|
|
574
|
+
if (labelSelector) {
|
|
575
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
576
|
+
}
|
|
577
|
+
if (fieldSelector) {
|
|
578
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
579
|
+
}
|
|
580
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
581
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
582
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
583
|
+
return {
|
|
584
|
+
url: toPathString(localVarUrlObj),
|
|
585
|
+
options: localVarRequestOptions
|
|
586
|
+
};
|
|
587
|
+
},
|
|
588
|
+
publishSinglePage: async (name, options = {}) => {
|
|
589
|
+
assertParamExists("publishSinglePage", "name", name);
|
|
590
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages/{name}/publish`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
443
591
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
444
592
|
let baseOptions;
|
|
445
593
|
if (configuration) {
|
|
@@ -450,11 +598,9 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
450
598
|
const localVarQueryParameter = {};
|
|
451
599
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
452
600
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
453
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
454
601
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
455
602
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
456
603
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
457
|
-
localVarRequestOptions.data = serializeDataIfNeeded(postRequest, localVarRequestOptions, configuration);
|
|
458
604
|
return {
|
|
459
605
|
url: toPathString(localVarUrlObj),
|
|
460
606
|
options: localVarRequestOptions
|
|
@@ -486,96 +632,56 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
486
632
|
}
|
|
487
633
|
};
|
|
488
634
|
};
|
|
489
|
-
const
|
|
490
|
-
const localVarAxiosParamCreator =
|
|
635
|
+
const ApiHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
636
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator(configuration);
|
|
491
637
|
return {
|
|
492
|
-
async draftPost(postRequest, options) {
|
|
493
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
494
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
495
|
-
},
|
|
496
638
|
async draftSinglePage(singlePageRequest, options) {
|
|
497
639
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
498
640
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
499
641
|
},
|
|
500
|
-
async
|
|
501
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
502
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
503
|
-
},
|
|
504
|
-
async listSinglePages(contributors, size, labelSelector, fieldSelector, page, options) {
|
|
505
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(contributors, size, labelSelector, fieldSelector, page, options);
|
|
506
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
507
|
-
},
|
|
508
|
-
async publishPost(name, options) {
|
|
509
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.publishPost(name, options);
|
|
642
|
+
async listSinglePages(contributors, size, page, labelSelector, fieldSelector, options) {
|
|
643
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(contributors, size, page, labelSelector, fieldSelector, options);
|
|
510
644
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
511
645
|
},
|
|
512
646
|
async publishSinglePage(name, options) {
|
|
513
647
|
const localVarAxiosArgs = await localVarAxiosParamCreator.publishSinglePage(name, options);
|
|
514
648
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
515
649
|
},
|
|
516
|
-
async updateDraftPost(name, postRequest, options) {
|
|
517
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraftPost(name, postRequest, options);
|
|
518
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
519
|
-
},
|
|
520
650
|
async updateDraftSinglePage(name, singlePageRequest, options) {
|
|
521
651
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraftSinglePage(name, singlePageRequest, options);
|
|
522
652
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
523
653
|
}
|
|
524
654
|
};
|
|
525
655
|
};
|
|
526
|
-
const
|
|
527
|
-
const localVarFp =
|
|
656
|
+
const ApiHaloRunV1alpha1SinglePageApiFactory = function(configuration, basePath, axios) {
|
|
657
|
+
const localVarFp = ApiHaloRunV1alpha1SinglePageApiFp(configuration);
|
|
528
658
|
return {
|
|
529
|
-
draftPost(postRequest, options) {
|
|
530
|
-
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
531
|
-
},
|
|
532
659
|
draftSinglePage(singlePageRequest, options) {
|
|
533
660
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
534
661
|
},
|
|
535
|
-
|
|
536
|
-
return localVarFp.
|
|
537
|
-
},
|
|
538
|
-
listSinglePages(contributors, size, labelSelector, fieldSelector, page, options) {
|
|
539
|
-
return localVarFp.listSinglePages(contributors, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
540
|
-
},
|
|
541
|
-
publishPost(name, options) {
|
|
542
|
-
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
662
|
+
listSinglePages(contributors, size, page, labelSelector, fieldSelector, options) {
|
|
663
|
+
return localVarFp.listSinglePages(contributors, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
543
664
|
},
|
|
544
665
|
publishSinglePage(name, options) {
|
|
545
666
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
546
667
|
},
|
|
547
|
-
updateDraftPost(name, postRequest, options) {
|
|
548
|
-
return localVarFp.updateDraftPost(name, postRequest, options).then((request) => request(axios, basePath));
|
|
549
|
-
},
|
|
550
668
|
updateDraftSinglePage(name, singlePageRequest, options) {
|
|
551
669
|
return localVarFp.updateDraftSinglePage(name, singlePageRequest, options).then((request) => request(axios, basePath));
|
|
552
670
|
}
|
|
553
671
|
};
|
|
554
672
|
};
|
|
555
|
-
class
|
|
556
|
-
draftPost(requestParameters, options) {
|
|
557
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
558
|
-
}
|
|
673
|
+
class ApiHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
559
674
|
draftSinglePage(requestParameters, options) {
|
|
560
|
-
return
|
|
561
|
-
}
|
|
562
|
-
listPosts(requestParameters = {}, options) {
|
|
563
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.contributors, requestParameters.categories, requestParameters.tags, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
675
|
+
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
564
676
|
}
|
|
565
677
|
listSinglePages(requestParameters = {}, options) {
|
|
566
|
-
return
|
|
567
|
-
}
|
|
568
|
-
publishPost(requestParameters, options) {
|
|
569
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
678
|
+
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.contributors, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
570
679
|
}
|
|
571
680
|
publishSinglePage(requestParameters, options) {
|
|
572
|
-
return
|
|
573
|
-
}
|
|
574
|
-
updateDraftPost(requestParameters, options) {
|
|
575
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(requestParameters.name, requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
681
|
+
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
576
682
|
}
|
|
577
683
|
updateDraftSinglePage(requestParameters, options) {
|
|
578
|
-
return
|
|
684
|
+
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).updateDraftSinglePage(requestParameters.name, requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
579
685
|
}
|
|
580
686
|
}
|
|
581
687
|
|
|
@@ -2551,7 +2657,7 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2551
2657
|
options: localVarRequestOptions
|
|
2552
2658
|
};
|
|
2553
2659
|
},
|
|
2554
|
-
searchAttachments: async (policy, displayName,
|
|
2660
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
2555
2661
|
const localVarPath = `/apis/api.halo.run/v1alpha1/attachments`;
|
|
2556
2662
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2557
2663
|
let baseOptions;
|
|
@@ -2569,24 +2675,24 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2569
2675
|
if (displayName !== void 0) {
|
|
2570
2676
|
localVarQueryParameter["displayName"] = displayName;
|
|
2571
2677
|
}
|
|
2572
|
-
if (uploadedBy !== void 0) {
|
|
2573
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
2574
|
-
}
|
|
2575
2678
|
if (group !== void 0) {
|
|
2576
2679
|
localVarQueryParameter["group"] = group;
|
|
2577
2680
|
}
|
|
2681
|
+
if (uploadedBy !== void 0) {
|
|
2682
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
2683
|
+
}
|
|
2578
2684
|
if (size !== void 0) {
|
|
2579
2685
|
localVarQueryParameter["size"] = size;
|
|
2580
2686
|
}
|
|
2687
|
+
if (page !== void 0) {
|
|
2688
|
+
localVarQueryParameter["page"] = page;
|
|
2689
|
+
}
|
|
2581
2690
|
if (labelSelector) {
|
|
2582
2691
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2583
2692
|
}
|
|
2584
2693
|
if (fieldSelector) {
|
|
2585
2694
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2586
2695
|
}
|
|
2587
|
-
if (page !== void 0) {
|
|
2588
|
-
localVarQueryParameter["page"] = page;
|
|
2589
|
-
}
|
|
2590
2696
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2591
2697
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2592
2698
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -2673,8 +2779,8 @@ const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
2673
2779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
|
|
2674
2780
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2675
2781
|
},
|
|
2676
|
-
async searchAttachments(policy, displayName,
|
|
2677
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
2782
|
+
async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
2783
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
|
|
2678
2784
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2679
2785
|
},
|
|
2680
2786
|
async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
@@ -2702,8 +2808,8 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
|
|
|
2702
2808
|
liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
|
|
2703
2809
|
return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2704
2810
|
},
|
|
2705
|
-
searchAttachments(policy, displayName,
|
|
2706
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
2811
|
+
searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
2812
|
+
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2707
2813
|
},
|
|
2708
2814
|
updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
2709
2815
|
return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
|
|
@@ -2727,7 +2833,7 @@ class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
|
2727
2833
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2728
2834
|
}
|
|
2729
2835
|
searchAttachments(requestParameters = {}, options) {
|
|
2730
|
-
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
2836
|
+
return StorageHaloRunV1alpha1AttachmentApiFp(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));
|
|
2731
2837
|
}
|
|
2732
2838
|
updatestorageHaloRunV1alpha1Attachment(requestParameters, options) {
|
|
2733
2839
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(requestParameters.name, requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5012,4 +5118,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5012
5118
|
Private: "PRIVATE"
|
|
5013
5119
|
};
|
|
5014
5120
|
|
|
5015
|
-
export { ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, 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, 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 };
|
|
5121
|
+
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, 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, 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 };
|