@halo-dev/api-client 0.0.27 → 0.0.29
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 +635 -33
- package/dist/index.d.ts +2203 -911
- package/dist/index.mjs +624 -34
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -454,7 +454,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
454
454
|
options: localVarRequestOptions
|
|
455
455
|
};
|
|
456
456
|
},
|
|
457
|
-
listPosts: async (sort,
|
|
457
|
+
listPosts: async (sort, contributor, sortOrder, publishPhase, category, tag, visible, keyword, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
458
458
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
459
459
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
460
460
|
let baseOptions;
|
|
@@ -469,27 +469,27 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
469
469
|
if (sort !== void 0) {
|
|
470
470
|
localVarQueryParameter["sort"] = sort;
|
|
471
471
|
}
|
|
472
|
-
if (publishPhase !== void 0) {
|
|
473
|
-
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
474
|
-
}
|
|
475
|
-
if (category) {
|
|
476
|
-
localVarQueryParameter["category"] = Array.from(category);
|
|
477
|
-
}
|
|
478
472
|
if (contributor) {
|
|
479
473
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
480
474
|
}
|
|
481
475
|
if (sortOrder !== void 0) {
|
|
482
476
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
483
477
|
}
|
|
484
|
-
if (
|
|
485
|
-
localVarQueryParameter["
|
|
478
|
+
if (publishPhase !== void 0) {
|
|
479
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
486
480
|
}
|
|
487
|
-
if (
|
|
488
|
-
localVarQueryParameter["
|
|
481
|
+
if (category) {
|
|
482
|
+
localVarQueryParameter["category"] = Array.from(category);
|
|
489
483
|
}
|
|
490
484
|
if (tag) {
|
|
491
485
|
localVarQueryParameter["tag"] = Array.from(tag);
|
|
492
486
|
}
|
|
487
|
+
if (visible !== void 0) {
|
|
488
|
+
localVarQueryParameter["visible"] = visible;
|
|
489
|
+
}
|
|
490
|
+
if (keyword !== void 0) {
|
|
491
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
492
|
+
}
|
|
493
493
|
if (size !== void 0) {
|
|
494
494
|
localVarQueryParameter["size"] = size;
|
|
495
495
|
}
|
|
@@ -564,8 +564,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
564
564
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
565
565
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
566
566
|
},
|
|
567
|
-
async listPosts(sort,
|
|
568
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
567
|
+
async listPosts(sort, contributor, sortOrder, publishPhase, category, tag, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
568
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, contributor, sortOrder, publishPhase, category, tag, visible, keyword, size, labelSelector, fieldSelector, page, options);
|
|
569
569
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
570
570
|
},
|
|
571
571
|
async publishPost(name, options) {
|
|
@@ -584,8 +584,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
584
584
|
draftPost(postRequest, options) {
|
|
585
585
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
586
586
|
},
|
|
587
|
-
listPosts(sort,
|
|
588
|
-
return localVarFp.listPosts(sort,
|
|
587
|
+
listPosts(sort, contributor, sortOrder, publishPhase, category, tag, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
588
|
+
return localVarFp.listPosts(sort, contributor, sortOrder, publishPhase, category, tag, visible, keyword, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
589
589
|
},
|
|
590
590
|
publishPost(name, options) {
|
|
591
591
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -600,7 +600,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
600
600
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
601
601
|
}
|
|
602
602
|
listPosts(requestParameters = {}, options) {
|
|
603
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
603
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
604
604
|
}
|
|
605
605
|
publishPost(requestParameters, options) {
|
|
606
606
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -697,7 +697,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
697
697
|
options: localVarRequestOptions
|
|
698
698
|
};
|
|
699
699
|
},
|
|
700
|
-
listSinglePages: async (
|
|
700
|
+
listSinglePages: async (sort, contributor, sortOrder, publishPhase, visible, keyword, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
701
701
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
702
702
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
703
703
|
let baseOptions;
|
|
@@ -709,8 +709,23 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
709
709
|
const localVarQueryParameter = {};
|
|
710
710
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
711
711
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
712
|
-
if (
|
|
713
|
-
localVarQueryParameter["
|
|
712
|
+
if (sort !== void 0) {
|
|
713
|
+
localVarQueryParameter["sort"] = sort;
|
|
714
|
+
}
|
|
715
|
+
if (contributor) {
|
|
716
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
717
|
+
}
|
|
718
|
+
if (sortOrder !== void 0) {
|
|
719
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
720
|
+
}
|
|
721
|
+
if (publishPhase !== void 0) {
|
|
722
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
723
|
+
}
|
|
724
|
+
if (visible !== void 0) {
|
|
725
|
+
localVarQueryParameter["visible"] = visible;
|
|
726
|
+
}
|
|
727
|
+
if (keyword !== void 0) {
|
|
728
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
714
729
|
}
|
|
715
730
|
if (size !== void 0) {
|
|
716
731
|
localVarQueryParameter["size"] = size;
|
|
@@ -786,8 +801,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
786
801
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
787
802
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
788
803
|
},
|
|
789
|
-
async listSinglePages(
|
|
790
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(
|
|
804
|
+
async listSinglePages(sort, contributor, sortOrder, publishPhase, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
805
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, contributor, sortOrder, publishPhase, visible, keyword, size, labelSelector, fieldSelector, page, options);
|
|
791
806
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
792
807
|
},
|
|
793
808
|
async publishSinglePage(name, options) {
|
|
@@ -806,8 +821,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
806
821
|
draftSinglePage(singlePageRequest, options) {
|
|
807
822
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
808
823
|
},
|
|
809
|
-
listSinglePages(
|
|
810
|
-
return localVarFp.listSinglePages(
|
|
824
|
+
listSinglePages(sort, contributor, sortOrder, publishPhase, visible, keyword, size, labelSelector, fieldSelector, page, options) {
|
|
825
|
+
return localVarFp.listSinglePages(sort, contributor, sortOrder, publishPhase, visible, keyword, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
811
826
|
},
|
|
812
827
|
publishSinglePage(name, options) {
|
|
813
828
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -822,7 +837,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
822
837
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
823
838
|
}
|
|
824
839
|
listSinglePages(requestParameters = {}, options) {
|
|
825
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.
|
|
840
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.visible, requestParameters.keyword, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
826
841
|
}
|
|
827
842
|
publishSinglePage(requestParameters, options) {
|
|
828
843
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1063,6 +1078,209 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
1063
1078
|
}
|
|
1064
1079
|
}
|
|
1065
1080
|
|
|
1081
|
+
const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
1082
|
+
return {
|
|
1083
|
+
createComment1: async (commentRequest, options = {}) => {
|
|
1084
|
+
assertParamExists("createComment1", "commentRequest", commentRequest);
|
|
1085
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
1086
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1087
|
+
let baseOptions;
|
|
1088
|
+
if (configuration) {
|
|
1089
|
+
baseOptions = configuration.baseOptions;
|
|
1090
|
+
}
|
|
1091
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1092
|
+
const localVarHeaderParameter = {};
|
|
1093
|
+
const localVarQueryParameter = {};
|
|
1094
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1095
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1096
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1097
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1098
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1099
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1100
|
+
localVarRequestOptions.data = serializeDataIfNeeded(commentRequest, localVarRequestOptions, configuration);
|
|
1101
|
+
return {
|
|
1102
|
+
url: toPathString(localVarUrlObj),
|
|
1103
|
+
options: localVarRequestOptions
|
|
1104
|
+
};
|
|
1105
|
+
},
|
|
1106
|
+
createReply1: async (name, replyRequest, options = {}) => {
|
|
1107
|
+
assertParamExists("createReply1", "name", name);
|
|
1108
|
+
assertParamExists("createReply1", "replyRequest", replyRequest);
|
|
1109
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments/{name}/reply`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1110
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1111
|
+
let baseOptions;
|
|
1112
|
+
if (configuration) {
|
|
1113
|
+
baseOptions = configuration.baseOptions;
|
|
1114
|
+
}
|
|
1115
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1116
|
+
const localVarHeaderParameter = {};
|
|
1117
|
+
const localVarQueryParameter = {};
|
|
1118
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1119
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1120
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1121
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1122
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1123
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1124
|
+
localVarRequestOptions.data = serializeDataIfNeeded(replyRequest, localVarRequestOptions, configuration);
|
|
1125
|
+
return {
|
|
1126
|
+
url: toPathString(localVarUrlObj),
|
|
1127
|
+
options: localVarRequestOptions
|
|
1128
|
+
};
|
|
1129
|
+
},
|
|
1130
|
+
getComment: async (name, options = {}) => {
|
|
1131
|
+
assertParamExists("getComment", "name", name);
|
|
1132
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1133
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1134
|
+
let baseOptions;
|
|
1135
|
+
if (configuration) {
|
|
1136
|
+
baseOptions = configuration.baseOptions;
|
|
1137
|
+
}
|
|
1138
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1139
|
+
const localVarHeaderParameter = {};
|
|
1140
|
+
const localVarQueryParameter = {};
|
|
1141
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1142
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1143
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1144
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1145
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1146
|
+
return {
|
|
1147
|
+
url: toPathString(localVarUrlObj),
|
|
1148
|
+
options: localVarRequestOptions
|
|
1149
|
+
};
|
|
1150
|
+
},
|
|
1151
|
+
listCommentReplies: async (name, size, page, options = {}) => {
|
|
1152
|
+
assertParamExists("listCommentReplies", "name", name);
|
|
1153
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments/{name}/reply`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
1154
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1155
|
+
let baseOptions;
|
|
1156
|
+
if (configuration) {
|
|
1157
|
+
baseOptions = configuration.baseOptions;
|
|
1158
|
+
}
|
|
1159
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1160
|
+
const localVarHeaderParameter = {};
|
|
1161
|
+
const localVarQueryParameter = {};
|
|
1162
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1163
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1164
|
+
if (size !== void 0) {
|
|
1165
|
+
localVarQueryParameter["size"] = size;
|
|
1166
|
+
}
|
|
1167
|
+
if (page !== void 0) {
|
|
1168
|
+
localVarQueryParameter["page"] = page;
|
|
1169
|
+
}
|
|
1170
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1171
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1172
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1173
|
+
return {
|
|
1174
|
+
url: toPathString(localVarUrlObj),
|
|
1175
|
+
options: localVarRequestOptions
|
|
1176
|
+
};
|
|
1177
|
+
},
|
|
1178
|
+
listComments1: async (name, version, kind, group, size, page, options = {}) => {
|
|
1179
|
+
assertParamExists("listComments1", "name", name);
|
|
1180
|
+
assertParamExists("listComments1", "version", version);
|
|
1181
|
+
assertParamExists("listComments1", "kind", kind);
|
|
1182
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/comments`;
|
|
1183
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1184
|
+
let baseOptions;
|
|
1185
|
+
if (configuration) {
|
|
1186
|
+
baseOptions = configuration.baseOptions;
|
|
1187
|
+
}
|
|
1188
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1189
|
+
const localVarHeaderParameter = {};
|
|
1190
|
+
const localVarQueryParameter = {};
|
|
1191
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1192
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1193
|
+
if (name !== void 0) {
|
|
1194
|
+
localVarQueryParameter["name"] = name;
|
|
1195
|
+
}
|
|
1196
|
+
if (version !== void 0) {
|
|
1197
|
+
localVarQueryParameter["version"] = version;
|
|
1198
|
+
}
|
|
1199
|
+
if (kind !== void 0) {
|
|
1200
|
+
localVarQueryParameter["kind"] = kind;
|
|
1201
|
+
}
|
|
1202
|
+
if (group !== void 0) {
|
|
1203
|
+
localVarQueryParameter["group"] = group;
|
|
1204
|
+
}
|
|
1205
|
+
if (size !== void 0) {
|
|
1206
|
+
localVarQueryParameter["size"] = size;
|
|
1207
|
+
}
|
|
1208
|
+
if (page !== void 0) {
|
|
1209
|
+
localVarQueryParameter["page"] = page;
|
|
1210
|
+
}
|
|
1211
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1212
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1213
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1214
|
+
return {
|
|
1215
|
+
url: toPathString(localVarUrlObj),
|
|
1216
|
+
options: localVarRequestOptions
|
|
1217
|
+
};
|
|
1218
|
+
}
|
|
1219
|
+
};
|
|
1220
|
+
};
|
|
1221
|
+
const ApiHaloRunV1alpha1CommentApiFp = function(configuration) {
|
|
1222
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1CommentApiAxiosParamCreator(configuration);
|
|
1223
|
+
return {
|
|
1224
|
+
async createComment1(commentRequest, options) {
|
|
1225
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createComment1(commentRequest, options);
|
|
1226
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1227
|
+
},
|
|
1228
|
+
async createReply1(name, replyRequest, options) {
|
|
1229
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReply1(name, replyRequest, options);
|
|
1230
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1231
|
+
},
|
|
1232
|
+
async getComment(name, options) {
|
|
1233
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getComment(name, options);
|
|
1234
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1235
|
+
},
|
|
1236
|
+
async listCommentReplies(name, size, page, options) {
|
|
1237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listCommentReplies(name, size, page, options);
|
|
1238
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1239
|
+
},
|
|
1240
|
+
async listComments1(name, version, kind, group, size, page, options) {
|
|
1241
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listComments1(name, version, kind, group, size, page, options);
|
|
1242
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1243
|
+
}
|
|
1244
|
+
};
|
|
1245
|
+
};
|
|
1246
|
+
const ApiHaloRunV1alpha1CommentApiFactory = function(configuration, basePath, axios) {
|
|
1247
|
+
const localVarFp = ApiHaloRunV1alpha1CommentApiFp(configuration);
|
|
1248
|
+
return {
|
|
1249
|
+
createComment1(commentRequest, options) {
|
|
1250
|
+
return localVarFp.createComment1(commentRequest, options).then((request) => request(axios, basePath));
|
|
1251
|
+
},
|
|
1252
|
+
createReply1(name, replyRequest, options) {
|
|
1253
|
+
return localVarFp.createReply1(name, replyRequest, options).then((request) => request(axios, basePath));
|
|
1254
|
+
},
|
|
1255
|
+
getComment(name, options) {
|
|
1256
|
+
return localVarFp.getComment(name, options).then((request) => request(axios, basePath));
|
|
1257
|
+
},
|
|
1258
|
+
listCommentReplies(name, size, page, options) {
|
|
1259
|
+
return localVarFp.listCommentReplies(name, size, page, options).then((request) => request(axios, basePath));
|
|
1260
|
+
},
|
|
1261
|
+
listComments1(name, version, kind, group, size, page, options) {
|
|
1262
|
+
return localVarFp.listComments1(name, version, kind, group, size, page, options).then((request) => request(axios, basePath));
|
|
1263
|
+
}
|
|
1264
|
+
};
|
|
1265
|
+
};
|
|
1266
|
+
class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
1267
|
+
createComment1(requestParameters, options) {
|
|
1268
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createComment1(requestParameters.commentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1269
|
+
}
|
|
1270
|
+
createReply1(requestParameters, options) {
|
|
1271
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).createReply1(requestParameters.name, requestParameters.replyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1272
|
+
}
|
|
1273
|
+
getComment(requestParameters, options) {
|
|
1274
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).getComment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
1275
|
+
}
|
|
1276
|
+
listCommentReplies(requestParameters, options) {
|
|
1277
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listCommentReplies(requestParameters.name, requestParameters.size, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1278
|
+
}
|
|
1279
|
+
listComments1(requestParameters, options) {
|
|
1280
|
+
return ApiHaloRunV1alpha1CommentApiFp(this.configuration).listComments1(requestParameters.name, requestParameters.version, requestParameters.kind, requestParameters.group, requestParameters.size, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1066
1284
|
const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator = function(configuration) {
|
|
1067
1285
|
return {
|
|
1068
1286
|
createcontentHaloRunV1alpha1Category: async (category, options = {}) => {
|
|
@@ -2365,6 +2583,378 @@ class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
2365
2583
|
}
|
|
2366
2584
|
}
|
|
2367
2585
|
|
|
2586
|
+
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
2587
|
+
return {
|
|
2588
|
+
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
2589
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
2590
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2591
|
+
let baseOptions;
|
|
2592
|
+
if (configuration) {
|
|
2593
|
+
baseOptions = configuration.baseOptions;
|
|
2594
|
+
}
|
|
2595
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2596
|
+
const localVarHeaderParameter = {};
|
|
2597
|
+
const localVarQueryParameter = {};
|
|
2598
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2599
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2600
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2601
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2602
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2603
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2604
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
2605
|
+
return {
|
|
2606
|
+
url: toPathString(localVarUrlObj),
|
|
2607
|
+
options: localVarRequestOptions
|
|
2608
|
+
};
|
|
2609
|
+
},
|
|
2610
|
+
deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
2611
|
+
assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
|
|
2612
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2613
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2614
|
+
let baseOptions;
|
|
2615
|
+
if (configuration) {
|
|
2616
|
+
baseOptions = configuration.baseOptions;
|
|
2617
|
+
}
|
|
2618
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
2619
|
+
const localVarHeaderParameter = {};
|
|
2620
|
+
const localVarQueryParameter = {};
|
|
2621
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2622
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2623
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2624
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2625
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2626
|
+
return {
|
|
2627
|
+
url: toPathString(localVarUrlObj),
|
|
2628
|
+
options: localVarRequestOptions
|
|
2629
|
+
};
|
|
2630
|
+
},
|
|
2631
|
+
getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
2632
|
+
assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
|
|
2633
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2634
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2635
|
+
let baseOptions;
|
|
2636
|
+
if (configuration) {
|
|
2637
|
+
baseOptions = configuration.baseOptions;
|
|
2638
|
+
}
|
|
2639
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2640
|
+
const localVarHeaderParameter = {};
|
|
2641
|
+
const localVarQueryParameter = {};
|
|
2642
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2643
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2644
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2645
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2646
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2647
|
+
return {
|
|
2648
|
+
url: toPathString(localVarUrlObj),
|
|
2649
|
+
options: localVarRequestOptions
|
|
2650
|
+
};
|
|
2651
|
+
},
|
|
2652
|
+
listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2653
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
2654
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2655
|
+
let baseOptions;
|
|
2656
|
+
if (configuration) {
|
|
2657
|
+
baseOptions = configuration.baseOptions;
|
|
2658
|
+
}
|
|
2659
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2660
|
+
const localVarHeaderParameter = {};
|
|
2661
|
+
const localVarQueryParameter = {};
|
|
2662
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2663
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2664
|
+
if (page !== void 0) {
|
|
2665
|
+
localVarQueryParameter["page"] = page;
|
|
2666
|
+
}
|
|
2667
|
+
if (size !== void 0) {
|
|
2668
|
+
localVarQueryParameter["size"] = size;
|
|
2669
|
+
}
|
|
2670
|
+
if (labelSelector) {
|
|
2671
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2672
|
+
}
|
|
2673
|
+
if (fieldSelector) {
|
|
2674
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2675
|
+
}
|
|
2676
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2677
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2678
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2679
|
+
return {
|
|
2680
|
+
url: toPathString(localVarUrlObj),
|
|
2681
|
+
options: localVarRequestOptions
|
|
2682
|
+
};
|
|
2683
|
+
},
|
|
2684
|
+
updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
|
|
2685
|
+
assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
|
|
2686
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2687
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2688
|
+
let baseOptions;
|
|
2689
|
+
if (configuration) {
|
|
2690
|
+
baseOptions = configuration.baseOptions;
|
|
2691
|
+
}
|
|
2692
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
2693
|
+
const localVarHeaderParameter = {};
|
|
2694
|
+
const localVarQueryParameter = {};
|
|
2695
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2696
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2697
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2698
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2699
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2700
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2701
|
+
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
2702
|
+
return {
|
|
2703
|
+
url: toPathString(localVarUrlObj),
|
|
2704
|
+
options: localVarRequestOptions
|
|
2705
|
+
};
|
|
2706
|
+
}
|
|
2707
|
+
};
|
|
2708
|
+
};
|
|
2709
|
+
const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
2710
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
|
|
2711
|
+
return {
|
|
2712
|
+
async createcoreHaloRunV1alpha1Link(link, options) {
|
|
2713
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
|
|
2714
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2715
|
+
},
|
|
2716
|
+
async deletecoreHaloRunV1alpha1Link(name, options) {
|
|
2717
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
|
|
2718
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2719
|
+
},
|
|
2720
|
+
async getcoreHaloRunV1alpha1Link(name, options) {
|
|
2721
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
2722
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2723
|
+
},
|
|
2724
|
+
async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
2725
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
|
|
2726
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2727
|
+
},
|
|
2728
|
+
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
2729
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
|
|
2730
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2731
|
+
}
|
|
2732
|
+
};
|
|
2733
|
+
};
|
|
2734
|
+
const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
|
|
2735
|
+
const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
|
|
2736
|
+
return {
|
|
2737
|
+
createcoreHaloRunV1alpha1Link(link, options) {
|
|
2738
|
+
return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
|
|
2739
|
+
},
|
|
2740
|
+
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
2741
|
+
return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
2742
|
+
},
|
|
2743
|
+
getcoreHaloRunV1alpha1Link(name, options) {
|
|
2744
|
+
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
2745
|
+
},
|
|
2746
|
+
listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
2747
|
+
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2748
|
+
},
|
|
2749
|
+
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
2750
|
+
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
2751
|
+
}
|
|
2752
|
+
};
|
|
2753
|
+
};
|
|
2754
|
+
class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
2755
|
+
createcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
2756
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
2757
|
+
}
|
|
2758
|
+
deletecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
2759
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
2760
|
+
}
|
|
2761
|
+
getcoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
2762
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
2763
|
+
}
|
|
2764
|
+
listcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
2765
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2766
|
+
}
|
|
2767
|
+
updatecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
2768
|
+
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(requestParameters.name, requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
|
|
2773
|
+
return {
|
|
2774
|
+
createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
|
|
2775
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
2776
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2777
|
+
let baseOptions;
|
|
2778
|
+
if (configuration) {
|
|
2779
|
+
baseOptions = configuration.baseOptions;
|
|
2780
|
+
}
|
|
2781
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
2782
|
+
const localVarHeaderParameter = {};
|
|
2783
|
+
const localVarQueryParameter = {};
|
|
2784
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2785
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2786
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2787
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2788
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2789
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2790
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
2791
|
+
return {
|
|
2792
|
+
url: toPathString(localVarUrlObj),
|
|
2793
|
+
options: localVarRequestOptions
|
|
2794
|
+
};
|
|
2795
|
+
},
|
|
2796
|
+
deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
2797
|
+
assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
2798
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2799
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2800
|
+
let baseOptions;
|
|
2801
|
+
if (configuration) {
|
|
2802
|
+
baseOptions = configuration.baseOptions;
|
|
2803
|
+
}
|
|
2804
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
2805
|
+
const localVarHeaderParameter = {};
|
|
2806
|
+
const localVarQueryParameter = {};
|
|
2807
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2808
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2809
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2810
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2811
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2812
|
+
return {
|
|
2813
|
+
url: toPathString(localVarUrlObj),
|
|
2814
|
+
options: localVarRequestOptions
|
|
2815
|
+
};
|
|
2816
|
+
},
|
|
2817
|
+
getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
2818
|
+
assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
2819
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2820
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2821
|
+
let baseOptions;
|
|
2822
|
+
if (configuration) {
|
|
2823
|
+
baseOptions = configuration.baseOptions;
|
|
2824
|
+
}
|
|
2825
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2826
|
+
const localVarHeaderParameter = {};
|
|
2827
|
+
const localVarQueryParameter = {};
|
|
2828
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2829
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2830
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2831
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2832
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2833
|
+
return {
|
|
2834
|
+
url: toPathString(localVarUrlObj),
|
|
2835
|
+
options: localVarRequestOptions
|
|
2836
|
+
};
|
|
2837
|
+
},
|
|
2838
|
+
listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
2839
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
2840
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2841
|
+
let baseOptions;
|
|
2842
|
+
if (configuration) {
|
|
2843
|
+
baseOptions = configuration.baseOptions;
|
|
2844
|
+
}
|
|
2845
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
2846
|
+
const localVarHeaderParameter = {};
|
|
2847
|
+
const localVarQueryParameter = {};
|
|
2848
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2849
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2850
|
+
if (page !== void 0) {
|
|
2851
|
+
localVarQueryParameter["page"] = page;
|
|
2852
|
+
}
|
|
2853
|
+
if (size !== void 0) {
|
|
2854
|
+
localVarQueryParameter["size"] = size;
|
|
2855
|
+
}
|
|
2856
|
+
if (labelSelector) {
|
|
2857
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
2858
|
+
}
|
|
2859
|
+
if (fieldSelector) {
|
|
2860
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
2861
|
+
}
|
|
2862
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2863
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2864
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2865
|
+
return {
|
|
2866
|
+
url: toPathString(localVarUrlObj),
|
|
2867
|
+
options: localVarRequestOptions
|
|
2868
|
+
};
|
|
2869
|
+
},
|
|
2870
|
+
updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
|
|
2871
|
+
assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
2872
|
+
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
2873
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2874
|
+
let baseOptions;
|
|
2875
|
+
if (configuration) {
|
|
2876
|
+
baseOptions = configuration.baseOptions;
|
|
2877
|
+
}
|
|
2878
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
2879
|
+
const localVarHeaderParameter = {};
|
|
2880
|
+
const localVarQueryParameter = {};
|
|
2881
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2882
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2883
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
2884
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2885
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2886
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
2887
|
+
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
2888
|
+
return {
|
|
2889
|
+
url: toPathString(localVarUrlObj),
|
|
2890
|
+
options: localVarRequestOptions
|
|
2891
|
+
};
|
|
2892
|
+
}
|
|
2893
|
+
};
|
|
2894
|
+
};
|
|
2895
|
+
const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
2896
|
+
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
|
|
2897
|
+
return {
|
|
2898
|
+
async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
2899
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
|
|
2900
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2901
|
+
},
|
|
2902
|
+
async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
2903
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
|
|
2904
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2905
|
+
},
|
|
2906
|
+
async getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
2907
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
2908
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2909
|
+
},
|
|
2910
|
+
async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
2911
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
|
|
2912
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2913
|
+
},
|
|
2914
|
+
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
2915
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
|
|
2916
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2917
|
+
}
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
|
|
2921
|
+
const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
|
|
2922
|
+
return {
|
|
2923
|
+
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
2924
|
+
return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
|
|
2925
|
+
},
|
|
2926
|
+
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
2927
|
+
return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
2928
|
+
},
|
|
2929
|
+
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
2930
|
+
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
2931
|
+
},
|
|
2932
|
+
listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
2933
|
+
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2934
|
+
},
|
|
2935
|
+
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
2936
|
+
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
2937
|
+
}
|
|
2938
|
+
};
|
|
2939
|
+
};
|
|
2940
|
+
class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
2941
|
+
createcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
2942
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
2943
|
+
}
|
|
2944
|
+
deletecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
2945
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
2946
|
+
}
|
|
2947
|
+
getcoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
2948
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
2949
|
+
}
|
|
2950
|
+
listcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
2951
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
2952
|
+
}
|
|
2953
|
+
updatecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
2954
|
+
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(requestParameters.name, requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
2955
|
+
}
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2368
2958
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
2369
2959
|
return {
|
|
2370
2960
|
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
@@ -2835,7 +3425,7 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2835
3425
|
options: localVarRequestOptions
|
|
2836
3426
|
};
|
|
2837
3427
|
},
|
|
2838
|
-
searchAttachments: async (policy, displayName,
|
|
3428
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
2839
3429
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
2840
3430
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2841
3431
|
let baseOptions;
|
|
@@ -2853,12 +3443,12 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
|
|
|
2853
3443
|
if (displayName !== void 0) {
|
|
2854
3444
|
localVarQueryParameter["displayName"] = displayName;
|
|
2855
3445
|
}
|
|
2856
|
-
if (uploadedBy !== void 0) {
|
|
2857
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
2858
|
-
}
|
|
2859
3446
|
if (group !== void 0) {
|
|
2860
3447
|
localVarQueryParameter["group"] = group;
|
|
2861
3448
|
}
|
|
3449
|
+
if (uploadedBy !== void 0) {
|
|
3450
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
3451
|
+
}
|
|
2862
3452
|
if (size !== void 0) {
|
|
2863
3453
|
localVarQueryParameter["size"] = size;
|
|
2864
3454
|
}
|
|
@@ -2957,8 +3547,8 @@ const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
2957
3547
|
const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
|
|
2958
3548
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2959
3549
|
},
|
|
2960
|
-
async searchAttachments(policy, displayName,
|
|
2961
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
3550
|
+
async searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options) {
|
|
3551
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options);
|
|
2962
3552
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2963
3553
|
},
|
|
2964
3554
|
async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
@@ -2986,8 +3576,8 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
|
|
|
2986
3576
|
liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
|
|
2987
3577
|
return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
2988
3578
|
},
|
|
2989
|
-
searchAttachments(policy, displayName,
|
|
2990
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
3579
|
+
searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options) {
|
|
3580
|
+
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
2991
3581
|
},
|
|
2992
3582
|
updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
|
|
2993
3583
|
return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
|
|
@@ -3011,7 +3601,7 @@ class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
|
3011
3601
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3012
3602
|
}
|
|
3013
3603
|
searchAttachments(requestParameters = {}, options) {
|
|
3014
|
-
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
3604
|
+
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.group, requestParameters.uploadedBy, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
3015
3605
|
}
|
|
3016
3606
|
updatestorageHaloRunV1alpha1Attachment(requestParameters, options) {
|
|
3017
3607
|
return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(requestParameters.name, requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5302,4 +5892,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5302
5892
|
Private: "PRIVATE"
|
|
5303
5893
|
};
|
|
5304
5894
|
|
|
5305
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, CompactPostVisibleEnum, 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 };
|
|
5895
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, CompactPostVisibleEnum, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, 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 };
|