@halo-dev/api-client 0.0.19 → 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 +127 -34
- package/dist/index.d.ts +488 -85
- package/dist/index.mjs +124 -35
- 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,7 +384,7 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
295
384
|
options: localVarRequestOptions
|
|
296
385
|
};
|
|
297
386
|
},
|
|
298
|
-
listPosts: async (
|
|
387
|
+
listPosts: async (tags, categories, contributors, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
299
388
|
const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
|
|
300
389
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
301
390
|
let baseOptions;
|
|
@@ -307,27 +396,27 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
307
396
|
const localVarQueryParameter = {};
|
|
308
397
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
309
398
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
310
|
-
if (
|
|
311
|
-
localVarQueryParameter["
|
|
399
|
+
if (tags) {
|
|
400
|
+
localVarQueryParameter["tags"] = Array.from(tags);
|
|
312
401
|
}
|
|
313
402
|
if (categories) {
|
|
314
403
|
localVarQueryParameter["categories"] = Array.from(categories);
|
|
315
404
|
}
|
|
316
|
-
if (
|
|
317
|
-
localVarQueryParameter["
|
|
405
|
+
if (contributors) {
|
|
406
|
+
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
318
407
|
}
|
|
319
408
|
if (size !== void 0) {
|
|
320
409
|
localVarQueryParameter["size"] = size;
|
|
321
410
|
}
|
|
411
|
+
if (page !== void 0) {
|
|
412
|
+
localVarQueryParameter["page"] = page;
|
|
413
|
+
}
|
|
322
414
|
if (labelSelector) {
|
|
323
415
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
324
416
|
}
|
|
325
417
|
if (fieldSelector) {
|
|
326
418
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
327
419
|
}
|
|
328
|
-
if (page !== void 0) {
|
|
329
|
-
localVarQueryParameter["page"] = page;
|
|
330
|
-
}
|
|
331
420
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
332
421
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
333
422
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -390,8 +479,8 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
390
479
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
391
480
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
392
481
|
},
|
|
393
|
-
async listPosts(
|
|
394
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(
|
|
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);
|
|
395
484
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
396
485
|
},
|
|
397
486
|
async publishPost(name, options) {
|
|
@@ -410,8 +499,8 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
|
|
|
410
499
|
draftPost(postRequest, options) {
|
|
411
500
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
412
501
|
},
|
|
413
|
-
listPosts(
|
|
414
|
-
return localVarFp.listPosts(
|
|
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));
|
|
415
504
|
},
|
|
416
505
|
publishPost(name, options) {
|
|
417
506
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -426,7 +515,7 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
426
515
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
427
516
|
}
|
|
428
517
|
listPosts(requestParameters = {}, options) {
|
|
429
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.
|
|
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));
|
|
430
519
|
}
|
|
431
520
|
publishPost(requestParameters, options) {
|
|
432
521
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -461,7 +550,7 @@ const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration)
|
|
|
461
550
|
options: localVarRequestOptions
|
|
462
551
|
};
|
|
463
552
|
},
|
|
464
|
-
listSinglePages: async (contributors, size, labelSelector, fieldSelector,
|
|
553
|
+
listSinglePages: async (contributors, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
465
554
|
const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
|
|
466
555
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
467
556
|
let baseOptions;
|
|
@@ -479,15 +568,15 @@ const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration)
|
|
|
479
568
|
if (size !== void 0) {
|
|
480
569
|
localVarQueryParameter["size"] = size;
|
|
481
570
|
}
|
|
571
|
+
if (page !== void 0) {
|
|
572
|
+
localVarQueryParameter["page"] = page;
|
|
573
|
+
}
|
|
482
574
|
if (labelSelector) {
|
|
483
575
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
484
576
|
}
|
|
485
577
|
if (fieldSelector) {
|
|
486
578
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
487
579
|
}
|
|
488
|
-
if (page !== void 0) {
|
|
489
|
-
localVarQueryParameter["page"] = page;
|
|
490
|
-
}
|
|
491
580
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
492
581
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
493
582
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -550,8 +639,8 @@ const ApiHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
550
639
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
551
640
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
552
641
|
},
|
|
553
|
-
async listSinglePages(contributors, size, labelSelector, fieldSelector,
|
|
554
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(contributors, size, labelSelector, fieldSelector,
|
|
642
|
+
async listSinglePages(contributors, size, page, labelSelector, fieldSelector, options) {
|
|
643
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(contributors, size, page, labelSelector, fieldSelector, options);
|
|
555
644
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
556
645
|
},
|
|
557
646
|
async publishSinglePage(name, options) {
|
|
@@ -570,8 +659,8 @@ const ApiHaloRunV1alpha1SinglePageApiFactory = function(configuration, basePath,
|
|
|
570
659
|
draftSinglePage(singlePageRequest, options) {
|
|
571
660
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
572
661
|
},
|
|
573
|
-
listSinglePages(contributors, size, labelSelector, fieldSelector,
|
|
574
|
-
return localVarFp.listSinglePages(contributors, size, labelSelector, fieldSelector,
|
|
662
|
+
listSinglePages(contributors, size, page, labelSelector, fieldSelector, options) {
|
|
663
|
+
return localVarFp.listSinglePages(contributors, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
575
664
|
},
|
|
576
665
|
publishSinglePage(name, options) {
|
|
577
666
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -586,7 +675,7 @@ class ApiHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
586
675
|
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
587
676
|
}
|
|
588
677
|
listSinglePages(requestParameters = {}, options) {
|
|
589
|
-
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.contributors, requestParameters.size, requestParameters.
|
|
678
|
+
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.contributors, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
590
679
|
}
|
|
591
680
|
publishSinglePage(requestParameters, options) {
|
|
592
681
|
return ApiHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2568,7 +2657,7 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2568
2657
|
options: localVarRequestOptions
|
|
2569
2658
|
};
|
|
2570
2659
|
},
|
|
2571
|
-
searchAttachments: async (policy, displayName,
|
|
2660
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
2572
2661
|
const localVarPath = `/apis/api.halo.run/v1alpha1/attachments`;
|
|
2573
2662
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2574
2663
|
let baseOptions;
|
|
@@ -2586,24 +2675,24 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2586
2675
|
if (displayName !== void 0) {
|
|
2587
2676
|
localVarQueryParameter["displayName"] = displayName;
|
|
2588
2677
|
}
|
|
2589
|
-
if (uploadedBy !== void 0) {
|
|
2590
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
2591
|
-
}
|
|
2592
2678
|
if (group !== void 0) {
|
|
2593
2679
|
localVarQueryParameter["group"] = group;
|
|
2594
2680
|
}
|
|
2681
|
+
if (uploadedBy !== void 0) {
|
|
2682
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
2683
|
+
}
|
|
2595
2684
|
if (size !== void 0) {
|
|
2596
2685
|
localVarQueryParameter["size"] = size;
|
|
2597
2686
|
}
|
|
2687
|
+
if (page !== void 0) {
|
|
2688
|
+
localVarQueryParameter["page"] = page;
|
|
2689
|
+
}
|
|
2598
2690
|
if (labelSelector) {
|
|
2599
2691
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2600
2692
|
}
|
|
2601
2693
|
if (fieldSelector) {
|
|
2602
2694
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2603
2695
|
}
|
|
2604
|
-
if (page !== void 0) {
|
|
2605
|
-
localVarQueryParameter["page"] = page;
|
|
2606
|
-
}
|
|
2607
2696
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2608
2697
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2609
2698
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -2690,8 +2779,8 @@ const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
2690
2779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
|
|
2691
2780
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2692
2781
|
},
|
|
2693
|
-
async searchAttachments(policy, displayName,
|
|
2694
|
-
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);
|
|
2695
2784
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2696
2785
|
},
|
|
2697
2786
|
async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
@@ -2719,8 +2808,8 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
|
|
|
2719
2808
|
liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
|
|
2720
2809
|
return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2721
2810
|
},
|
|
2722
|
-
searchAttachments(policy, displayName,
|
|
2723
|
-
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));
|
|
2724
2813
|
},
|
|
2725
2814
|
updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
2726
2815
|
return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
|
|
@@ -2744,7 +2833,7 @@ class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
|
2744
2833
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2745
2834
|
}
|
|
2746
2835
|
searchAttachments(requestParameters = {}, options) {
|
|
2747
|
-
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));
|
|
2748
2837
|
}
|
|
2749
2838
|
updatestorageHaloRunV1alpha1Attachment(requestParameters, options) {
|
|
2750
2839
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(requestParameters.name, requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5029,4 +5118,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5029
5118
|
Private: "PRIVATE"
|
|
5030
5119
|
};
|
|
5031
5120
|
|
|
5032
|
-
export { 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 };
|
|
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 };
|