@halo-dev/api-client 0.0.0 → 0.0.3

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 CHANGED
@@ -74,6 +74,28 @@ const PluginStatusPhaseEnum = {
74
74
  };
75
75
  const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
76
76
  return {
77
+ changePassword: async (name, changePasswordRequest, options = {}) => {
78
+ assertParamExists("changePassword", "name", name);
79
+ assertParamExists("changePassword", "changePasswordRequest", changePasswordRequest);
80
+ const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/password`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
81
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
82
+ let baseOptions;
83
+ if (configuration) {
84
+ baseOptions = configuration.baseOptions;
85
+ }
86
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
87
+ const localVarHeaderParameter = {};
88
+ const localVarQueryParameter = {};
89
+ localVarHeaderParameter["Content-Type"] = "application/json";
90
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
91
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
92
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
93
+ localVarRequestOptions.data = serializeDataIfNeeded(changePasswordRequest, localVarRequestOptions, configuration);
94
+ return {
95
+ url: toPathString(localVarUrlObj),
96
+ options: localVarRequestOptions
97
+ };
98
+ },
77
99
  getCurrentUserDetail: async (options = {}) => {
78
100
  const localVarPath = `/apis/api.halo.run/v1alpha1/users/-`;
79
101
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -91,35 +113,106 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
91
113
  url: toPathString(localVarUrlObj),
92
114
  options: localVarRequestOptions
93
115
  };
116
+ },
117
+ getPermissions: async (name, options = {}) => {
118
+ assertParamExists("getPermissions", "name", name);
119
+ const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/permissions`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
120
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
121
+ let baseOptions;
122
+ if (configuration) {
123
+ baseOptions = configuration.baseOptions;
124
+ }
125
+ const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
126
+ const localVarHeaderParameter = {};
127
+ const localVarQueryParameter = {};
128
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
129
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
130
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
131
+ return {
132
+ url: toPathString(localVarUrlObj),
133
+ options: localVarRequestOptions
134
+ };
135
+ },
136
+ grantPermission: async (name, grantRequest, options = {}) => {
137
+ assertParamExists("grantPermission", "name", name);
138
+ assertParamExists("grantPermission", "grantRequest", grantRequest);
139
+ const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/permissions`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
140
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
141
+ let baseOptions;
142
+ if (configuration) {
143
+ baseOptions = configuration.baseOptions;
144
+ }
145
+ const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
146
+ const localVarHeaderParameter = {};
147
+ const localVarQueryParameter = {};
148
+ localVarHeaderParameter["Content-Type"] = "application/json";
149
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
150
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
151
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
152
+ localVarRequestOptions.data = serializeDataIfNeeded(grantRequest, localVarRequestOptions, configuration);
153
+ return {
154
+ url: toPathString(localVarUrlObj),
155
+ options: localVarRequestOptions
156
+ };
94
157
  }
95
158
  };
96
159
  };
97
160
  const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
98
161
  const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
99
162
  return {
163
+ async changePassword(name, changePasswordRequest, options) {
164
+ const localVarAxiosArgs = await localVarAxiosParamCreator.changePassword(name, changePasswordRequest, options);
165
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
166
+ },
100
167
  async getCurrentUserDetail(options) {
101
168
  const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
102
169
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
170
+ },
171
+ async getPermissions(name, options) {
172
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getPermissions(name, options);
173
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
174
+ },
175
+ async grantPermission(name, grantRequest, options) {
176
+ const localVarAxiosArgs = await localVarAxiosParamCreator.grantPermission(name, grantRequest, options);
177
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
103
178
  }
104
179
  };
105
180
  };
106
181
  const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
107
182
  const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
108
183
  return {
184
+ changePassword(name, changePasswordRequest, options) {
185
+ return localVarFp.changePassword(name, changePasswordRequest, options).then((request) => request(axios, basePath));
186
+ },
109
187
  getCurrentUserDetail(options) {
110
188
  return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
189
+ },
190
+ getPermissions(name, options) {
191
+ return localVarFp.getPermissions(name, options).then((request) => request(axios, basePath));
192
+ },
193
+ grantPermission(name, grantRequest, options) {
194
+ return localVarFp.grantPermission(name, grantRequest, options).then((request) => request(axios, basePath));
111
195
  }
112
196
  };
113
197
  };
114
198
  class ApiHaloRunV1alpha1UserApi extends BaseAPI {
199
+ changePassword(name, changePasswordRequest, options) {
200
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
201
+ }
115
202
  getCurrentUserDetail(options) {
116
203
  return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
117
204
  }
205
+ getPermissions(name, options) {
206
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(name, options).then((request) => request(this.axios, this.basePath));
207
+ }
208
+ grantPermission(name, grantRequest, options) {
209
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
210
+ }
118
211
  }
119
- const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
212
+ const AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator = function(configuration) {
120
213
  return {
121
- createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
122
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
214
+ createappleGuqingXyzV1alpha1Apple: async (apple, options = {}) => {
215
+ const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
123
216
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
124
217
  let baseOptions;
125
218
  if (configuration) {
@@ -132,15 +225,15 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
132
225
  setSearchParams(localVarUrlObj, localVarQueryParameter);
133
226
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
134
227
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
135
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
228
+ localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
136
229
  return {
137
230
  url: toPathString(localVarUrlObj),
138
231
  options: localVarRequestOptions
139
232
  };
140
233
  },
141
- deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
142
- assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
143
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
234
+ deleteappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
235
+ assertParamExists("deleteappleGuqingXyzV1alpha1Apple", "name", name);
236
+ const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
144
237
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
145
238
  let baseOptions;
146
239
  if (configuration) {
@@ -157,9 +250,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
157
250
  options: localVarRequestOptions
158
251
  };
159
252
  },
160
- getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
161
- assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
162
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
253
+ getappleGuqingXyzV1alpha1Apple: async (name, options = {}) => {
254
+ assertParamExists("getappleGuqingXyzV1alpha1Apple", "name", name);
255
+ const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
163
256
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
164
257
  let baseOptions;
165
258
  if (configuration) {
@@ -176,8 +269,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
176
269
  options: localVarRequestOptions
177
270
  };
178
271
  },
179
- listcoreHaloRunV1alpha1Link: async (page, size, sort, options = {}) => {
180
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
272
+ listappleGuqingXyzV1alpha1Apple: async (page, size, sort, options = {}) => {
273
+ const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples`;
181
274
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
182
275
  let baseOptions;
183
276
  if (configuration) {
@@ -203,9 +296,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
203
296
  options: localVarRequestOptions
204
297
  };
205
298
  },
206
- updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
207
- assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
208
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
299
+ updateappleGuqingXyzV1alpha1Apple: async (name, apple, options = {}) => {
300
+ assertParamExists("updateappleGuqingXyzV1alpha1Apple", "name", name);
301
+ const localVarPath = `/apis/apple.guqing.xyz/v1alpha1/apples/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
209
302
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
210
303
  let baseOptions;
211
304
  if (configuration) {
@@ -218,7 +311,7 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
218
311
  setSearchParams(localVarUrlObj, localVarQueryParameter);
219
312
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
220
313
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
221
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
314
+ localVarRequestOptions.data = serializeDataIfNeeded(apple, localVarRequestOptions, configuration);
222
315
  return {
223
316
  url: toPathString(localVarUrlObj),
224
317
  options: localVarRequestOptions
@@ -226,72 +319,116 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
226
319
  }
227
320
  };
228
321
  };
229
- const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
230
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
322
+ const AppleGuqingXyzV1alpha1AppleApiFp = function(configuration) {
323
+ const localVarAxiosParamCreator = AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator(configuration);
231
324
  return {
232
- async createcoreHaloRunV1alpha1Link(link, options) {
233
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
325
+ async createappleGuqingXyzV1alpha1Apple(apple, options) {
326
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createappleGuqingXyzV1alpha1Apple(apple, options);
234
327
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
235
328
  },
236
- async deletecoreHaloRunV1alpha1Link(name, options) {
237
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
329
+ async deleteappleGuqingXyzV1alpha1Apple(name, options) {
330
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteappleGuqingXyzV1alpha1Apple(name, options);
238
331
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
239
332
  },
240
- async getcoreHaloRunV1alpha1Link(name, options) {
241
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
333
+ async getappleGuqingXyzV1alpha1Apple(name, options) {
334
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getappleGuqingXyzV1alpha1Apple(name, options);
242
335
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
243
336
  },
244
- async listcoreHaloRunV1alpha1Link(page, size, sort, options) {
245
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, sort, options);
337
+ async listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
338
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listappleGuqingXyzV1alpha1Apple(page, size, sort, options);
246
339
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
247
340
  },
248
- async updatecoreHaloRunV1alpha1Link(name, link, options) {
249
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
341
+ async updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
342
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateappleGuqingXyzV1alpha1Apple(name, apple, options);
250
343
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
251
344
  }
252
345
  };
253
346
  };
254
- const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
255
- const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
347
+ const AppleGuqingXyzV1alpha1AppleApiFactory = function(configuration, basePath, axios) {
348
+ const localVarFp = AppleGuqingXyzV1alpha1AppleApiFp(configuration);
256
349
  return {
257
- createcoreHaloRunV1alpha1Link(link, options) {
258
- return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
350
+ createappleGuqingXyzV1alpha1Apple(apple, options) {
351
+ return localVarFp.createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(axios, basePath));
259
352
  },
260
- deletecoreHaloRunV1alpha1Link(name, options) {
261
- return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
353
+ deleteappleGuqingXyzV1alpha1Apple(name, options) {
354
+ return localVarFp.deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
262
355
  },
263
- getcoreHaloRunV1alpha1Link(name, options) {
264
- return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
356
+ getappleGuqingXyzV1alpha1Apple(name, options) {
357
+ return localVarFp.getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(axios, basePath));
265
358
  },
266
- listcoreHaloRunV1alpha1Link(page, size, sort, options) {
267
- return localVarFp.listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(axios, basePath));
359
+ listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
360
+ return localVarFp.listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(axios, basePath));
268
361
  },
269
- updatecoreHaloRunV1alpha1Link(name, link, options) {
270
- return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
362
+ updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
363
+ return localVarFp.updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(axios, basePath));
271
364
  }
272
365
  };
273
366
  };
274
- class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
275
- createcoreHaloRunV1alpha1Link(link, options) {
276
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
367
+ class AppleGuqingXyzV1alpha1AppleApi extends BaseAPI {
368
+ createappleGuqingXyzV1alpha1Apple(apple, options) {
369
+ return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).createappleGuqingXyzV1alpha1Apple(apple, options).then((request) => request(this.axios, this.basePath));
277
370
  }
278
- deletecoreHaloRunV1alpha1Link(name, options) {
279
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
371
+ deleteappleGuqingXyzV1alpha1Apple(name, options) {
372
+ return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).deleteappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
280
373
  }
281
- getcoreHaloRunV1alpha1Link(name, options) {
282
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
374
+ getappleGuqingXyzV1alpha1Apple(name, options) {
375
+ return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).getappleGuqingXyzV1alpha1Apple(name, options).then((request) => request(this.axios, this.basePath));
283
376
  }
284
- listcoreHaloRunV1alpha1Link(page, size, sort, options) {
285
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(this.axios, this.basePath));
377
+ listappleGuqingXyzV1alpha1Apple(page, size, sort, options) {
378
+ return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).listappleGuqingXyzV1alpha1Apple(page, size, sort, options).then((request) => request(this.axios, this.basePath));
286
379
  }
287
- updatecoreHaloRunV1alpha1Link(name, link, options) {
288
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
380
+ updateappleGuqingXyzV1alpha1Apple(name, apple, options) {
381
+ return AppleGuqingXyzV1alpha1AppleApiFp(this.configuration).updateappleGuqingXyzV1alpha1Apple(name, apple, options).then((request) => request(this.axios, this.basePath));
289
382
  }
290
383
  }
291
- const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
384
+ const ApplesControllerApiAxiosParamCreator = function(configuration) {
292
385
  return {
293
- createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
294
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
386
+ hello: async (options = {}) => {
387
+ const localVarPath = `/apis/plugin.api.halo.run/v1alpha1/plugins/PluginTemplate/apples`;
388
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
389
+ let baseOptions;
390
+ if (configuration) {
391
+ baseOptions = configuration.baseOptions;
392
+ }
393
+ const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
394
+ const localVarHeaderParameter = {};
395
+ const localVarQueryParameter = {};
396
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
397
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
398
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
399
+ return {
400
+ url: toPathString(localVarUrlObj),
401
+ options: localVarRequestOptions
402
+ };
403
+ }
404
+ };
405
+ };
406
+ const ApplesControllerApiFp = function(configuration) {
407
+ const localVarAxiosParamCreator = ApplesControllerApiAxiosParamCreator(configuration);
408
+ return {
409
+ async hello(options) {
410
+ const localVarAxiosArgs = await localVarAxiosParamCreator.hello(options);
411
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
412
+ }
413
+ };
414
+ };
415
+ const ApplesControllerApiFactory = function(configuration, basePath, axios) {
416
+ const localVarFp = ApplesControllerApiFp(configuration);
417
+ return {
418
+ hello(options) {
419
+ return localVarFp.hello(options).then((request) => request(axios, basePath));
420
+ }
421
+ };
422
+ };
423
+ class ApplesControllerApi extends BaseAPI {
424
+ hello(options) {
425
+ return ApplesControllerApiFp(this.configuration).hello(options).then((request) => request(this.axios, this.basePath));
426
+ }
427
+ }
428
+ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
429
+ return {
430
+ createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
431
+ const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
295
432
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
296
433
  let baseOptions;
297
434
  if (configuration) {
@@ -304,15 +441,15 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
304
441
  setSearchParams(localVarUrlObj, localVarQueryParameter);
305
442
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
306
443
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
307
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
444
+ localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
308
445
  return {
309
446
  url: toPathString(localVarUrlObj),
310
447
  options: localVarRequestOptions
311
448
  };
312
449
  },
313
- deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
314
- assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
315
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
450
+ deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
451
+ assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
452
+ const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
316
453
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
317
454
  let baseOptions;
318
455
  if (configuration) {
@@ -329,9 +466,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
329
466
  options: localVarRequestOptions
330
467
  };
331
468
  },
332
- getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
333
- assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
334
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
469
+ getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
470
+ assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
471
+ const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
335
472
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
336
473
  let baseOptions;
337
474
  if (configuration) {
@@ -348,8 +485,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
348
485
  options: localVarRequestOptions
349
486
  };
350
487
  },
351
- listcoreHaloRunV1alpha1LinkGroup: async (page, size, sort, options = {}) => {
352
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
488
+ listcoreHaloRunV1alpha1Link: async (page, size, sort, options = {}) => {
489
+ const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
353
490
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
354
491
  let baseOptions;
355
492
  if (configuration) {
@@ -375,9 +512,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
375
512
  options: localVarRequestOptions
376
513
  };
377
514
  },
378
- updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
379
- assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
380
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
515
+ updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
516
+ assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
517
+ const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
381
518
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
382
519
  let baseOptions;
383
520
  if (configuration) {
@@ -390,7 +527,7 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
390
527
  setSearchParams(localVarUrlObj, localVarQueryParameter);
391
528
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
392
529
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
393
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
530
+ localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
394
531
  return {
395
532
  url: toPathString(localVarUrlObj),
396
533
  options: localVarRequestOptions
@@ -398,72 +535,72 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
398
535
  }
399
536
  };
400
537
  };
401
- const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
402
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
538
+ const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
539
+ const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
403
540
  return {
404
- async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
405
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
541
+ async createcoreHaloRunV1alpha1Link(link, options) {
542
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
406
543
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
407
544
  },
408
- async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
409
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
545
+ async deletecoreHaloRunV1alpha1Link(name, options) {
546
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
410
547
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
411
548
  },
412
- async getcoreHaloRunV1alpha1LinkGroup(name, options) {
413
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
549
+ async getcoreHaloRunV1alpha1Link(name, options) {
550
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
414
551
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
415
552
  },
416
- async listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
417
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options);
553
+ async listcoreHaloRunV1alpha1Link(page, size, sort, options) {
554
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, sort, options);
418
555
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
419
556
  },
420
- async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
421
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
557
+ async updatecoreHaloRunV1alpha1Link(name, link, options) {
558
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
422
559
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
423
560
  }
424
561
  };
425
562
  };
426
- const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
427
- const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
563
+ const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
564
+ const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
428
565
  return {
429
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
430
- return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
566
+ createcoreHaloRunV1alpha1Link(link, options) {
567
+ return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
431
568
  },
432
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
433
- return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
569
+ deletecoreHaloRunV1alpha1Link(name, options) {
570
+ return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
434
571
  },
435
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
436
- return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
572
+ getcoreHaloRunV1alpha1Link(name, options) {
573
+ return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
437
574
  },
438
- listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
439
- return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(axios, basePath));
575
+ listcoreHaloRunV1alpha1Link(page, size, sort, options) {
576
+ return localVarFp.listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(axios, basePath));
440
577
  },
441
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
442
- return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
578
+ updatecoreHaloRunV1alpha1Link(name, link, options) {
579
+ return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
443
580
  }
444
581
  };
445
582
  };
446
- class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
447
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
448
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
583
+ class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
584
+ createcoreHaloRunV1alpha1Link(link, options) {
585
+ return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
449
586
  }
450
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
451
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
587
+ deletecoreHaloRunV1alpha1Link(name, options) {
588
+ return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
452
589
  }
453
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
454
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
590
+ getcoreHaloRunV1alpha1Link(name, options) {
591
+ return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
455
592
  }
456
- listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
457
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(this.axios, this.basePath));
593
+ listcoreHaloRunV1alpha1Link(page, size, sort, options) {
594
+ return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, sort, options).then((request) => request(this.axios, this.basePath));
458
595
  }
459
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
460
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
596
+ updatecoreHaloRunV1alpha1Link(name, link, options) {
597
+ return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
461
598
  }
462
599
  }
463
- const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
600
+ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
464
601
  return {
465
- createcoreHaloRunV1alpha1Post: async (post, options = {}) => {
466
- const localVarPath = `/apis/core.halo.run/v1alpha1/posts`;
602
+ createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
603
+ const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
467
604
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
468
605
  let baseOptions;
469
606
  if (configuration) {
@@ -476,15 +613,15 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
476
613
  setSearchParams(localVarUrlObj, localVarQueryParameter);
477
614
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
478
615
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
479
- localVarRequestOptions.data = serializeDataIfNeeded(post, localVarRequestOptions, configuration);
616
+ localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
480
617
  return {
481
618
  url: toPathString(localVarUrlObj),
482
619
  options: localVarRequestOptions
483
620
  };
484
621
  },
485
- deletecoreHaloRunV1alpha1Post: async (name, options = {}) => {
486
- assertParamExists("deletecoreHaloRunV1alpha1Post", "name", name);
487
- const localVarPath = `/apis/core.halo.run/v1alpha1/posts/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
622
+ deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
623
+ assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
624
+ const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
488
625
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
489
626
  let baseOptions;
490
627
  if (configuration) {
@@ -501,9 +638,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
501
638
  options: localVarRequestOptions
502
639
  };
503
640
  },
504
- getcoreHaloRunV1alpha1Post: async (name, options = {}) => {
505
- assertParamExists("getcoreHaloRunV1alpha1Post", "name", name);
506
- const localVarPath = `/apis/core.halo.run/v1alpha1/posts/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
641
+ getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
642
+ assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
643
+ const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
507
644
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
508
645
  let baseOptions;
509
646
  if (configuration) {
@@ -520,8 +657,8 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
520
657
  options: localVarRequestOptions
521
658
  };
522
659
  },
523
- listcoreHaloRunV1alpha1Post: async (page, size, sort, options = {}) => {
524
- const localVarPath = `/apis/core.halo.run/v1alpha1/posts`;
660
+ listcoreHaloRunV1alpha1LinkGroup: async (page, size, sort, options = {}) => {
661
+ const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
525
662
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
526
663
  let baseOptions;
527
664
  if (configuration) {
@@ -547,9 +684,9 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
547
684
  options: localVarRequestOptions
548
685
  };
549
686
  },
550
- updatecoreHaloRunV1alpha1Post: async (name, post, options = {}) => {
551
- assertParamExists("updatecoreHaloRunV1alpha1Post", "name", name);
552
- const localVarPath = `/apis/core.halo.run/v1alpha1/posts/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
687
+ updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
688
+ assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
689
+ const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
553
690
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
554
691
  let baseOptions;
555
692
  if (configuration) {
@@ -562,7 +699,7 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
562
699
  setSearchParams(localVarUrlObj, localVarQueryParameter);
563
700
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
564
701
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
565
- localVarRequestOptions.data = serializeDataIfNeeded(post, localVarRequestOptions, configuration);
702
+ localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
566
703
  return {
567
704
  url: toPathString(localVarUrlObj),
568
705
  options: localVarRequestOptions
@@ -570,66 +707,66 @@ const CoreHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
570
707
  }
571
708
  };
572
709
  };
573
- const CoreHaloRunV1alpha1PostApiFp = function(configuration) {
574
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1PostApiAxiosParamCreator(configuration);
710
+ const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
711
+ const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
575
712
  return {
576
- async createcoreHaloRunV1alpha1Post(post, options) {
577
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Post(post, options);
713
+ async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
714
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
578
715
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
579
716
  },
580
- async deletecoreHaloRunV1alpha1Post(name, options) {
581
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Post(name, options);
717
+ async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
718
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
582
719
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
583
720
  },
584
- async getcoreHaloRunV1alpha1Post(name, options) {
585
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Post(name, options);
721
+ async getcoreHaloRunV1alpha1LinkGroup(name, options) {
722
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
586
723
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
587
724
  },
588
- async listcoreHaloRunV1alpha1Post(page, size, sort, options) {
589
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Post(page, size, sort, options);
725
+ async listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
726
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options);
590
727
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
591
728
  },
592
- async updatecoreHaloRunV1alpha1Post(name, post, options) {
593
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Post(name, post, options);
729
+ async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
730
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
594
731
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
595
732
  }
596
733
  };
597
734
  };
598
- const CoreHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios) {
599
- const localVarFp = CoreHaloRunV1alpha1PostApiFp(configuration);
735
+ const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
736
+ const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
600
737
  return {
601
- createcoreHaloRunV1alpha1Post(post, options) {
602
- return localVarFp.createcoreHaloRunV1alpha1Post(post, options).then((request) => request(axios, basePath));
738
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
739
+ return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
603
740
  },
604
- deletecoreHaloRunV1alpha1Post(name, options) {
605
- return localVarFp.deletecoreHaloRunV1alpha1Post(name, options).then((request) => request(axios, basePath));
741
+ deletecoreHaloRunV1alpha1LinkGroup(name, options) {
742
+ return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
606
743
  },
607
- getcoreHaloRunV1alpha1Post(name, options) {
608
- return localVarFp.getcoreHaloRunV1alpha1Post(name, options).then((request) => request(axios, basePath));
744
+ getcoreHaloRunV1alpha1LinkGroup(name, options) {
745
+ return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
609
746
  },
610
- listcoreHaloRunV1alpha1Post(page, size, sort, options) {
611
- return localVarFp.listcoreHaloRunV1alpha1Post(page, size, sort, options).then((request) => request(axios, basePath));
747
+ listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
748
+ return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(axios, basePath));
612
749
  },
613
- updatecoreHaloRunV1alpha1Post(name, post, options) {
614
- return localVarFp.updatecoreHaloRunV1alpha1Post(name, post, options).then((request) => request(axios, basePath));
750
+ updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
751
+ return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
615
752
  }
616
753
  };
617
754
  };
618
- class CoreHaloRunV1alpha1PostApi extends BaseAPI {
619
- createcoreHaloRunV1alpha1Post(post, options) {
620
- return CoreHaloRunV1alpha1PostApiFp(this.configuration).createcoreHaloRunV1alpha1Post(post, options).then((request) => request(this.axios, this.basePath));
755
+ class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
756
+ createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
757
+ return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
621
758
  }
622
- deletecoreHaloRunV1alpha1Post(name, options) {
623
- return CoreHaloRunV1alpha1PostApiFp(this.configuration).deletecoreHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
759
+ deletecoreHaloRunV1alpha1LinkGroup(name, options) {
760
+ return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
624
761
  }
625
- getcoreHaloRunV1alpha1Post(name, options) {
626
- return CoreHaloRunV1alpha1PostApiFp(this.configuration).getcoreHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
762
+ getcoreHaloRunV1alpha1LinkGroup(name, options) {
763
+ return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
627
764
  }
628
- listcoreHaloRunV1alpha1Post(page, size, sort, options) {
629
- return CoreHaloRunV1alpha1PostApiFp(this.configuration).listcoreHaloRunV1alpha1Post(page, size, sort, options).then((request) => request(this.axios, this.basePath));
765
+ listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options) {
766
+ return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, sort, options).then((request) => request(this.axios, this.basePath));
630
767
  }
631
- updatecoreHaloRunV1alpha1Post(name, post, options) {
632
- return CoreHaloRunV1alpha1PostApiFp(this.configuration).updatecoreHaloRunV1alpha1Post(name, post, options).then((request) => request(this.axios, this.basePath));
768
+ updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
769
+ return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
633
770
  }
634
771
  }
635
772
  const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
@@ -2029,6 +2166,14 @@ exports.ApiHaloRunV1alpha1UserApi = ApiHaloRunV1alpha1UserApi;
2029
2166
  exports.ApiHaloRunV1alpha1UserApiAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator;
2030
2167
  exports.ApiHaloRunV1alpha1UserApiFactory = ApiHaloRunV1alpha1UserApiFactory;
2031
2168
  exports.ApiHaloRunV1alpha1UserApiFp = ApiHaloRunV1alpha1UserApiFp;
2169
+ exports.AppleGuqingXyzV1alpha1AppleApi = AppleGuqingXyzV1alpha1AppleApi;
2170
+ exports.AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator = AppleGuqingXyzV1alpha1AppleApiAxiosParamCreator;
2171
+ exports.AppleGuqingXyzV1alpha1AppleApiFactory = AppleGuqingXyzV1alpha1AppleApiFactory;
2172
+ exports.AppleGuqingXyzV1alpha1AppleApiFp = AppleGuqingXyzV1alpha1AppleApiFp;
2173
+ exports.ApplesControllerApi = ApplesControllerApi;
2174
+ exports.ApplesControllerApiAxiosParamCreator = ApplesControllerApiAxiosParamCreator;
2175
+ exports.ApplesControllerApiFactory = ApplesControllerApiFactory;
2176
+ exports.ApplesControllerApiFp = ApplesControllerApiFp;
2032
2177
  exports.Configuration = Configuration;
2033
2178
  exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
2034
2179
  exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
@@ -2038,10 +2183,6 @@ exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
2038
2183
  exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
2039
2184
  exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
2040
2185
  exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
2041
- exports.CoreHaloRunV1alpha1PostApi = CoreHaloRunV1alpha1PostApi;
2042
- exports.CoreHaloRunV1alpha1PostApiAxiosParamCreator = CoreHaloRunV1alpha1PostApiAxiosParamCreator;
2043
- exports.CoreHaloRunV1alpha1PostApiFactory = CoreHaloRunV1alpha1PostApiFactory;
2044
- exports.CoreHaloRunV1alpha1PostApiFp = CoreHaloRunV1alpha1PostApiFp;
2045
2186
  exports.PluginHaloRunV1alpha1PluginApi = PluginHaloRunV1alpha1PluginApi;
2046
2187
  exports.PluginHaloRunV1alpha1PluginApiAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator;
2047
2188
  exports.PluginHaloRunV1alpha1PluginApiFactory = PluginHaloRunV1alpha1PluginApiFactory;