@halo-dev/api-client 0.0.20 → 0.0.22
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 +151 -15
- package/dist/index.d.ts +631 -181
- package/dist/index.mjs +148 -16
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -69,7 +69,54 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
69
69
|
|
|
70
70
|
const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
71
71
|
return {
|
|
72
|
-
|
|
72
|
+
createComment: async (commentRequest, options = {}) => {
|
|
73
|
+
assertParamExists("createComment", "commentRequest", commentRequest);
|
|
74
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
75
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
76
|
+
let baseOptions;
|
|
77
|
+
if (configuration) {
|
|
78
|
+
baseOptions = configuration.baseOptions;
|
|
79
|
+
}
|
|
80
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
81
|
+
const localVarHeaderParameter = {};
|
|
82
|
+
const localVarQueryParameter = {};
|
|
83
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
84
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
85
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
86
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
87
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
88
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
89
|
+
localVarRequestOptions.data = serializeDataIfNeeded(commentRequest, localVarRequestOptions, configuration);
|
|
90
|
+
return {
|
|
91
|
+
url: toPathString(localVarUrlObj),
|
|
92
|
+
options: localVarRequestOptions
|
|
93
|
+
};
|
|
94
|
+
},
|
|
95
|
+
createReply: async (name, replyRequest, options = {}) => {
|
|
96
|
+
assertParamExists("createReply", "name", name);
|
|
97
|
+
assertParamExists("createReply", "replyRequest", replyRequest);
|
|
98
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments/{name}/reply`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
99
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
100
|
+
let baseOptions;
|
|
101
|
+
if (configuration) {
|
|
102
|
+
baseOptions = configuration.baseOptions;
|
|
103
|
+
}
|
|
104
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
105
|
+
const localVarHeaderParameter = {};
|
|
106
|
+
const localVarQueryParameter = {};
|
|
107
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
108
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
109
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
110
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
111
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
112
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
113
|
+
localVarRequestOptions.data = serializeDataIfNeeded(replyRequest, localVarRequestOptions, configuration);
|
|
114
|
+
return {
|
|
115
|
+
url: toPathString(localVarUrlObj),
|
|
116
|
+
options: localVarRequestOptions
|
|
117
|
+
};
|
|
118
|
+
},
|
|
119
|
+
listComments: async (sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
73
120
|
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
74
121
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
75
122
|
let baseOptions;
|
|
@@ -84,6 +131,9 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
84
131
|
if (sort !== void 0) {
|
|
85
132
|
localVarQueryParameter["sort"] = sort;
|
|
86
133
|
}
|
|
134
|
+
if (keyword !== void 0) {
|
|
135
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
136
|
+
}
|
|
87
137
|
if (hidden !== void 0) {
|
|
88
138
|
localVarQueryParameter["hidden"] = hidden;
|
|
89
139
|
}
|
|
@@ -136,8 +186,16 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
136
186
|
const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
137
187
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1CommentApiAxiosParamCreator(configuration);
|
|
138
188
|
return {
|
|
139
|
-
async
|
|
140
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
189
|
+
async createComment(commentRequest, options) {
|
|
190
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createComment(commentRequest, options);
|
|
191
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
192
|
+
},
|
|
193
|
+
async createReply(name, replyRequest, options) {
|
|
194
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply(name, replyRequest, options);
|
|
195
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
196
|
+
},
|
|
197
|
+
async listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
198
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options);
|
|
141
199
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
142
200
|
}
|
|
143
201
|
};
|
|
@@ -145,14 +203,26 @@ const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
|
145
203
|
const ApiHaloRunV1alpha1CommentApiFactory = function(configuration, basePath, axios) {
|
|
146
204
|
const localVarFp = ApiHaloRunV1alpha1CommentApiFp(configuration);
|
|
147
205
|
return {
|
|
148
|
-
|
|
149
|
-
return localVarFp.
|
|
206
|
+
createComment(commentRequest, options) {
|
|
207
|
+
return localVarFp.createComment(commentRequest, options).then((request) => request(axios, basePath));
|
|
208
|
+
},
|
|
209
|
+
createReply(name, replyRequest, options) {
|
|
210
|
+
return localVarFp.createReply(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
211
|
+
},
|
|
212
|
+
listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options) {
|
|
213
|
+
return localVarFp.listComments(sort, keyword, hidden, top, sortOrder, approved, allowNotification, ownerKind, ownerName, subjectKind, subjectName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
150
214
|
}
|
|
151
215
|
};
|
|
152
216
|
};
|
|
153
217
|
class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
218
|
+
createComment(requestParameters, options) {
|
|
219
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createComment(requestParameters.commentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
220
|
+
}
|
|
221
|
+
createReply(requestParameters, options) {
|
|
222
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createReply(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
223
|
+
}
|
|
154
224
|
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));
|
|
225
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments(requestParameters.sort, requestParameters.keyword, requestParameters.hidden, requestParameters.top, requestParameters.sortOrder, requestParameters.approved, requestParameters.allowNotification, requestParameters.ownerKind, requestParameters.ownerName, requestParameters.subjectKind, requestParameters.subjectName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
156
226
|
}
|
|
157
227
|
}
|
|
158
228
|
|
|
@@ -384,7 +454,7 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
384
454
|
options: localVarRequestOptions
|
|
385
455
|
};
|
|
386
456
|
},
|
|
387
|
-
listPosts: async (tags,
|
|
457
|
+
listPosts: async (tags, contributors, categories, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
388
458
|
const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
|
|
389
459
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
390
460
|
let baseOptions;
|
|
@@ -399,12 +469,12 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
|
399
469
|
if (tags) {
|
|
400
470
|
localVarQueryParameter["tags"] = Array.from(tags);
|
|
401
471
|
}
|
|
402
|
-
if (categories) {
|
|
403
|
-
localVarQueryParameter["categories"] = Array.from(categories);
|
|
404
|
-
}
|
|
405
472
|
if (contributors) {
|
|
406
473
|
localVarQueryParameter["contributors"] = Array.from(contributors);
|
|
407
474
|
}
|
|
475
|
+
if (categories) {
|
|
476
|
+
localVarQueryParameter["categories"] = Array.from(categories);
|
|
477
|
+
}
|
|
408
478
|
if (size !== void 0) {
|
|
409
479
|
localVarQueryParameter["size"] = size;
|
|
410
480
|
}
|
|
@@ -479,8 +549,8 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
479
549
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
480
550
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
481
551
|
},
|
|
482
|
-
async listPosts(tags,
|
|
483
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags,
|
|
552
|
+
async listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
553
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options);
|
|
484
554
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
485
555
|
},
|
|
486
556
|
async publishPost(name, options) {
|
|
@@ -499,8 +569,8 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
|
|
|
499
569
|
draftPost(postRequest, options) {
|
|
500
570
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
501
571
|
},
|
|
502
|
-
listPosts(tags,
|
|
503
|
-
return localVarFp.listPosts(tags,
|
|
572
|
+
listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options) {
|
|
573
|
+
return localVarFp.listPosts(tags, contributors, categories, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
504
574
|
},
|
|
505
575
|
publishPost(name, options) {
|
|
506
576
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -515,7 +585,7 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
515
585
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
516
586
|
}
|
|
517
587
|
listPosts(requestParameters = {}, options) {
|
|
518
|
-
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.
|
|
588
|
+
return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.tags, requestParameters.contributors, requestParameters.categories, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
519
589
|
}
|
|
520
590
|
publishPost(requestParameters, options) {
|
|
521
591
|
return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -525,6 +595,68 @@ class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
525
595
|
}
|
|
526
596
|
}
|
|
527
597
|
|
|
598
|
+
const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
|
|
599
|
+
return {
|
|
600
|
+
listReplies: async (commentName, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
601
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/replies`;
|
|
602
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
603
|
+
let baseOptions;
|
|
604
|
+
if (configuration) {
|
|
605
|
+
baseOptions = configuration.baseOptions;
|
|
606
|
+
}
|
|
607
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
608
|
+
const localVarHeaderParameter = {};
|
|
609
|
+
const localVarQueryParameter = {};
|
|
610
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
611
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
612
|
+
if (commentName !== void 0) {
|
|
613
|
+
localVarQueryParameter["commentName"] = commentName;
|
|
614
|
+
}
|
|
615
|
+
if (size !== void 0) {
|
|
616
|
+
localVarQueryParameter["size"] = size;
|
|
617
|
+
}
|
|
618
|
+
if (page !== void 0) {
|
|
619
|
+
localVarQueryParameter["page"] = page;
|
|
620
|
+
}
|
|
621
|
+
if (labelSelector) {
|
|
622
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
623
|
+
}
|
|
624
|
+
if (fieldSelector) {
|
|
625
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
626
|
+
}
|
|
627
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
628
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
629
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
630
|
+
return {
|
|
631
|
+
url: toPathString(localVarUrlObj),
|
|
632
|
+
options: localVarRequestOptions
|
|
633
|
+
};
|
|
634
|
+
}
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
const ApiHaloRunV1alpha1ReplyApiFp = function(configuration) {
|
|
638
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1ReplyApiAxiosParamCreator(configuration);
|
|
639
|
+
return {
|
|
640
|
+
async listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
641
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReplies(commentName, size, page, labelSelector, fieldSelector, options);
|
|
642
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
643
|
+
}
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
const ApiHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath, axios) {
|
|
647
|
+
const localVarFp = ApiHaloRunV1alpha1ReplyApiFp(configuration);
|
|
648
|
+
return {
|
|
649
|
+
listReplies(commentName, size, page, labelSelector, fieldSelector, options) {
|
|
650
|
+
return localVarFp.listReplies(commentName, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
655
|
+
listReplies(requestParameters = {}, options) {
|
|
656
|
+
return ApiHaloRunV1alpha1ReplyApiFp(this.configuration).listReplies(requestParameters.commentName, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
528
660
|
const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration) {
|
|
529
661
|
return {
|
|
530
662
|
draftSinglePage: async (singlePageRequest, options = {}) => {
|
|
@@ -5118,4 +5250,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5118
5250
|
Private: "PRIVATE"
|
|
5119
5251
|
};
|
|
5120
5252
|
|
|
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 };
|
|
5253
|
+
export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1ReplyApi, ApiHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiHaloRunV1alpha1ReplyApiFactory, ApiHaloRunV1alpha1ReplyApiFp, 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 };
|