@halo-dev/api-client 0.0.13 → 0.0.14

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.
Files changed (4) hide show
  1. package/dist/index.cjs +596 -606
  2. package/dist/index.d.ts +5669 -1958
  3. package/dist/index.mjs +592 -599
  4. package/package.json +10 -11
package/dist/index.cjs CHANGED
@@ -75,24 +75,6 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
75
75
  };
76
76
  };
77
77
 
78
- const ConditionStatusEnum = {
79
- True: "TRUE",
80
- False: "FALSE",
81
- Unknown: "UNKNOWN"
82
- };
83
- const PluginStatusPhaseEnum = {
84
- Created: "CREATED",
85
- Disabled: "DISABLED",
86
- Resolved: "RESOLVED",
87
- Started: "STARTED",
88
- Stopped: "STOPPED",
89
- Failed: "FAILED"
90
- };
91
- const PostSpecVisibleEnum = {
92
- Public: "PUBLIC",
93
- Internal: "INTERNAL",
94
- Private: "PRIVATE"
95
- };
96
78
  const ApiHaloRunV1alpha1ContentApiAxiosParamCreator = function(configuration) {
97
79
  return {
98
80
  draftSnapshotContent: async (contentRequest, options = {}) => {
@@ -228,19 +210,20 @@ const ApiHaloRunV1alpha1ContentApiFactory = function(configuration, basePath, ax
228
210
  };
229
211
  };
230
212
  class ApiHaloRunV1alpha1ContentApi extends BaseAPI {
231
- draftSnapshotContent(contentRequest, options) {
232
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).draftSnapshotContent(contentRequest, options).then((request) => request(this.axios, this.basePath));
213
+ draftSnapshotContent(requestParameters, options) {
214
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).draftSnapshotContent(requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
233
215
  }
234
- obtainSnapshotContent(snapshotName, options) {
235
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(snapshotName, options).then((request) => request(this.axios, this.basePath));
216
+ obtainSnapshotContent(requestParameters, options) {
217
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(requestParameters.snapshotName, options).then((request) => request(this.axios, this.basePath));
236
218
  }
237
- publishSnapshotContent(snapshotName, subjectRef, options) {
238
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(snapshotName, subjectRef, options).then((request) => request(this.axios, this.basePath));
219
+ publishSnapshotContent(requestParameters, options) {
220
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(requestParameters.snapshotName, requestParameters.subjectRef, options).then((request) => request(this.axios, this.basePath));
239
221
  }
240
- updateSnapshotContent(snapshotName, contentRequest, options) {
241
- return ApiHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(snapshotName, contentRequest, options).then((request) => request(this.axios, this.basePath));
222
+ updateSnapshotContent(requestParameters, options) {
223
+ return ApiHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(requestParameters.snapshotName, requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
242
224
  }
243
225
  }
226
+
244
227
  const ApiHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
245
228
  return {
246
229
  installPlugin: async (file, options = {}) => {
@@ -290,10 +273,11 @@ const ApiHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axi
290
273
  };
291
274
  };
292
275
  class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
293
- installPlugin(file, options) {
294
- return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
276
+ installPlugin(requestParameters, options) {
277
+ return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
295
278
  }
296
279
  }
280
+
297
281
  const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
298
282
  return {
299
283
  draftPost: async (postRequest, options = {}) => {
@@ -319,7 +303,30 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
319
303
  options: localVarRequestOptions
320
304
  };
321
305
  },
322
- listPosts: async (page, size, labelSelector, fieldSelector, contributors, categories, tags, options = {}) => {
306
+ draftSinglePage: async (singlePageRequest, options = {}) => {
307
+ assertParamExists("draftSinglePage", "singlePageRequest", singlePageRequest);
308
+ const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
309
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
310
+ let baseOptions;
311
+ if (configuration) {
312
+ baseOptions = configuration.baseOptions;
313
+ }
314
+ const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
315
+ const localVarHeaderParameter = {};
316
+ const localVarQueryParameter = {};
317
+ setBasicAuthToObject(localVarRequestOptions, configuration);
318
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
319
+ localVarHeaderParameter["Content-Type"] = "application/json";
320
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
321
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
322
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
323
+ localVarRequestOptions.data = serializeDataIfNeeded(singlePageRequest, localVarRequestOptions, configuration);
324
+ return {
325
+ url: toPathString(localVarUrlObj),
326
+ options: localVarRequestOptions
327
+ };
328
+ },
329
+ listPosts: async (contributors, categories, tags, size, labelSelector, fieldSelector, page, options = {}) => {
323
330
  const localVarPath = `/apis/api.halo.run/v1alpha1/posts`;
324
331
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
325
332
  let baseOptions;
@@ -331,8 +338,14 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
331
338
  const localVarQueryParameter = {};
332
339
  setBasicAuthToObject(localVarRequestOptions, configuration);
333
340
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
334
- if (page !== void 0) {
335
- localVarQueryParameter["page"] = page;
341
+ if (contributors) {
342
+ localVarQueryParameter["contributors"] = Array.from(contributors);
343
+ }
344
+ if (categories) {
345
+ localVarQueryParameter["categories"] = Array.from(categories);
346
+ }
347
+ if (tags) {
348
+ localVarQueryParameter["tags"] = Array.from(tags);
336
349
  }
337
350
  if (size !== void 0) {
338
351
  localVarQueryParameter["size"] = size;
@@ -343,14 +356,43 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
343
356
  if (fieldSelector) {
344
357
  localVarQueryParameter["fieldSelector"] = fieldSelector;
345
358
  }
359
+ if (page !== void 0) {
360
+ localVarQueryParameter["page"] = page;
361
+ }
362
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
363
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
364
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
365
+ return {
366
+ url: toPathString(localVarUrlObj),
367
+ options: localVarRequestOptions
368
+ };
369
+ },
370
+ listSinglePages: async (contributors, size, labelSelector, fieldSelector, page, options = {}) => {
371
+ const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages`;
372
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
373
+ let baseOptions;
374
+ if (configuration) {
375
+ baseOptions = configuration.baseOptions;
376
+ }
377
+ const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
378
+ const localVarHeaderParameter = {};
379
+ const localVarQueryParameter = {};
380
+ setBasicAuthToObject(localVarRequestOptions, configuration);
381
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
346
382
  if (contributors) {
347
383
  localVarQueryParameter["contributors"] = Array.from(contributors);
348
384
  }
349
- if (categories) {
350
- localVarQueryParameter["categories"] = Array.from(categories);
385
+ if (size !== void 0) {
386
+ localVarQueryParameter["size"] = size;
351
387
  }
352
- if (tags) {
353
- localVarQueryParameter["tags"] = Array.from(tags);
388
+ if (labelSelector) {
389
+ localVarQueryParameter["labelSelector"] = labelSelector;
390
+ }
391
+ if (fieldSelector) {
392
+ localVarQueryParameter["fieldSelector"] = fieldSelector;
393
+ }
394
+ if (page !== void 0) {
395
+ localVarQueryParameter["page"] = page;
354
396
  }
355
397
  setSearchParams(localVarUrlObj, localVarQueryParameter);
356
398
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -381,6 +423,27 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
381
423
  options: localVarRequestOptions
382
424
  };
383
425
  },
426
+ publishSinglePage: async (name, options = {}) => {
427
+ assertParamExists("publishSinglePage", "name", name);
428
+ const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages/{name}/publish`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
429
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
430
+ let baseOptions;
431
+ if (configuration) {
432
+ baseOptions = configuration.baseOptions;
433
+ }
434
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
435
+ const localVarHeaderParameter = {};
436
+ const localVarQueryParameter = {};
437
+ setBasicAuthToObject(localVarRequestOptions, configuration);
438
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
439
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
440
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
441
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
442
+ return {
443
+ url: toPathString(localVarUrlObj),
444
+ options: localVarRequestOptions
445
+ };
446
+ },
384
447
  updateDraftPost: async (name, postRequest, options = {}) => {
385
448
  assertParamExists("updateDraftPost", "name", name);
386
449
  assertParamExists("updateDraftPost", "postRequest", postRequest);
@@ -404,6 +467,30 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
404
467
  url: toPathString(localVarUrlObj),
405
468
  options: localVarRequestOptions
406
469
  };
470
+ },
471
+ updateDraftSinglePage: async (name, singlePageRequest, options = {}) => {
472
+ assertParamExists("updateDraftSinglePage", "name", name);
473
+ assertParamExists("updateDraftSinglePage", "singlePageRequest", singlePageRequest);
474
+ const localVarPath = `/apis/api.halo.run/v1alpha1/singlepages/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
475
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
476
+ let baseOptions;
477
+ if (configuration) {
478
+ baseOptions = configuration.baseOptions;
479
+ }
480
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
481
+ const localVarHeaderParameter = {};
482
+ const localVarQueryParameter = {};
483
+ setBasicAuthToObject(localVarRequestOptions, configuration);
484
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
485
+ localVarHeaderParameter["Content-Type"] = "application/json";
486
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
487
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
488
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
489
+ localVarRequestOptions.data = serializeDataIfNeeded(singlePageRequest, localVarRequestOptions, configuration);
490
+ return {
491
+ url: toPathString(localVarUrlObj),
492
+ options: localVarRequestOptions
493
+ };
407
494
  }
408
495
  };
409
496
  };
@@ -414,17 +501,33 @@ const ApiHaloRunV1alpha1PostApiFp = function(configuration) {
414
501
  const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
415
502
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
416
503
  },
417
- async listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options) {
418
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options);
504
+ async draftSinglePage(singlePageRequest, options) {
505
+ const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
506
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
507
+ },
508
+ async listPosts(contributors, categories, tags, size, labelSelector, fieldSelector, page, options) {
509
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(contributors, categories, tags, size, labelSelector, fieldSelector, page, options);
510
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
511
+ },
512
+ async listSinglePages(contributors, size, labelSelector, fieldSelector, page, options) {
513
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(contributors, size, labelSelector, fieldSelector, page, options);
419
514
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
420
515
  },
421
516
  async publishPost(name, options) {
422
517
  const localVarAxiosArgs = await localVarAxiosParamCreator.publishPost(name, options);
423
518
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
424
519
  },
520
+ async publishSinglePage(name, options) {
521
+ const localVarAxiosArgs = await localVarAxiosParamCreator.publishSinglePage(name, options);
522
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
523
+ },
425
524
  async updateDraftPost(name, postRequest, options) {
426
525
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraftPost(name, postRequest, options);
427
526
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
527
+ },
528
+ async updateDraftSinglePage(name, singlePageRequest, options) {
529
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateDraftSinglePage(name, singlePageRequest, options);
530
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
428
531
  }
429
532
  };
430
533
  };
@@ -434,31 +537,56 @@ const ApiHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios
434
537
  draftPost(postRequest, options) {
435
538
  return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
436
539
  },
437
- listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options) {
438
- return localVarFp.listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options).then((request) => request(axios, basePath));
540
+ draftSinglePage(singlePageRequest, options) {
541
+ return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
542
+ },
543
+ listPosts(contributors, categories, tags, size, labelSelector, fieldSelector, page, options) {
544
+ return localVarFp.listPosts(contributors, categories, tags, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
545
+ },
546
+ listSinglePages(contributors, size, labelSelector, fieldSelector, page, options) {
547
+ return localVarFp.listSinglePages(contributors, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
439
548
  },
440
549
  publishPost(name, options) {
441
550
  return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
442
551
  },
552
+ publishSinglePage(name, options) {
553
+ return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
554
+ },
443
555
  updateDraftPost(name, postRequest, options) {
444
556
  return localVarFp.updateDraftPost(name, postRequest, options).then((request) => request(axios, basePath));
557
+ },
558
+ updateDraftSinglePage(name, singlePageRequest, options) {
559
+ return localVarFp.updateDraftSinglePage(name, singlePageRequest, options).then((request) => request(axios, basePath));
445
560
  }
446
561
  };
447
562
  };
448
563
  class ApiHaloRunV1alpha1PostApi extends BaseAPI {
449
- draftPost(postRequest, options) {
450
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(postRequest, options).then((request) => request(this.axios, this.basePath));
564
+ draftPost(requestParameters, options) {
565
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
451
566
  }
452
- listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options) {
453
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(page, size, labelSelector, fieldSelector, contributors, categories, tags, options).then((request) => request(this.axios, this.basePath));
567
+ draftSinglePage(requestParameters, options) {
568
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
454
569
  }
455
- publishPost(name, options) {
456
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(name, options).then((request) => request(this.axios, this.basePath));
570
+ listPosts(requestParameters = {}, options) {
571
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.contributors, requestParameters.categories, requestParameters.tags, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
457
572
  }
458
- updateDraftPost(name, postRequest, options) {
459
- return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(name, postRequest, options).then((request) => request(this.axios, this.basePath));
573
+ listSinglePages(requestParameters = {}, options) {
574
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).listSinglePages(requestParameters.contributors, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
575
+ }
576
+ publishPost(requestParameters, options) {
577
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
578
+ }
579
+ publishSinglePage(requestParameters, options) {
580
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
581
+ }
582
+ updateDraftPost(requestParameters, options) {
583
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftPost(requestParameters.name, requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
584
+ }
585
+ updateDraftSinglePage(requestParameters, options) {
586
+ return ApiHaloRunV1alpha1PostApiFp(this.configuration).updateDraftSinglePage(requestParameters.name, requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
460
587
  }
461
588
  }
589
+
462
590
  const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
463
591
  return {
464
592
  installTheme: async (file, options = {}) => {
@@ -508,10 +636,11 @@ const ApiHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, axio
508
636
  };
509
637
  };
510
638
  class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
511
- installTheme(file, options) {
512
- return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(file, options).then((request) => request(this.axios, this.basePath));
639
+ installTheme(requestParameters, options) {
640
+ return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
513
641
  }
514
642
  }
643
+
515
644
  const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
516
645
  return {
517
646
  changePassword: async (name, changePasswordRequest, options = {}) => {
@@ -644,19 +773,20 @@ const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios
644
773
  };
645
774
  };
646
775
  class ApiHaloRunV1alpha1UserApi extends BaseAPI {
647
- changePassword(name, changePasswordRequest, options) {
648
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(name, changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
776
+ changePassword(requestParameters, options) {
777
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).changePassword(requestParameters.name, requestParameters.changePasswordRequest, options).then((request) => request(this.axios, this.basePath));
649
778
  }
650
779
  getCurrentUserDetail(options) {
651
780
  return ApiHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
652
781
  }
653
- getPermissions(name, options) {
654
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(name, options).then((request) => request(this.axios, this.basePath));
782
+ getPermissions(requestParameters, options) {
783
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).getPermissions(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
655
784
  }
656
- grantPermission(name, grantRequest, options) {
657
- return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(name, grantRequest, options).then((request) => request(this.axios, this.basePath));
785
+ grantPermission(requestParameters, options) {
786
+ return ApiHaloRunV1alpha1UserApiFp(this.configuration).grantPermission(requestParameters.name, requestParameters.grantRequest, options).then((request) => request(this.axios, this.basePath));
658
787
  }
659
788
  }
789
+
660
790
  const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator = function(configuration) {
661
791
  return {
662
792
  createcontentHaloRunV1alpha1Category: async (category, options = {}) => {
@@ -826,22 +956,23 @@ const ContentHaloRunV1alpha1CategoryApiFactory = function(configuration, basePat
826
956
  };
827
957
  };
828
958
  class ContentHaloRunV1alpha1CategoryApi extends BaseAPI {
829
- createcontentHaloRunV1alpha1Category(category, options) {
830
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).createcontentHaloRunV1alpha1Category(category, options).then((request) => request(this.axios, this.basePath));
959
+ createcontentHaloRunV1alpha1Category(requestParameters = {}, options) {
960
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).createcontentHaloRunV1alpha1Category(requestParameters.category, options).then((request) => request(this.axios, this.basePath));
831
961
  }
832
- deletecontentHaloRunV1alpha1Category(name, options) {
833
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).deletecontentHaloRunV1alpha1Category(name, options).then((request) => request(this.axios, this.basePath));
962
+ deletecontentHaloRunV1alpha1Category(requestParameters, options) {
963
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).deletecontentHaloRunV1alpha1Category(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
834
964
  }
835
- getcontentHaloRunV1alpha1Category(name, options) {
836
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).getcontentHaloRunV1alpha1Category(name, options).then((request) => request(this.axios, this.basePath));
965
+ getcontentHaloRunV1alpha1Category(requestParameters, options) {
966
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).getcontentHaloRunV1alpha1Category(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
837
967
  }
838
- listcontentHaloRunV1alpha1Category(page, size, labelSelector, fieldSelector, options) {
839
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).listcontentHaloRunV1alpha1Category(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
968
+ listcontentHaloRunV1alpha1Category(requestParameters = {}, options) {
969
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).listcontentHaloRunV1alpha1Category(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
840
970
  }
841
- updatecontentHaloRunV1alpha1Category(name, category, options) {
842
- return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).updatecontentHaloRunV1alpha1Category(name, category, options).then((request) => request(this.axios, this.basePath));
971
+ updatecontentHaloRunV1alpha1Category(requestParameters, options) {
972
+ return ContentHaloRunV1alpha1CategoryApiFp(this.configuration).updatecontentHaloRunV1alpha1Category(requestParameters.name, requestParameters.category, options).then((request) => request(this.axios, this.basePath));
843
973
  }
844
974
  }
975
+
845
976
  const ContentHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
846
977
  return {
847
978
  createcontentHaloRunV1alpha1Comment: async (comment, options = {}) => {
@@ -1011,22 +1142,23 @@ const ContentHaloRunV1alpha1CommentApiFactory = function(configuration, basePath
1011
1142
  };
1012
1143
  };
1013
1144
  class ContentHaloRunV1alpha1CommentApi extends BaseAPI {
1014
- createcontentHaloRunV1alpha1Comment(comment, options) {
1015
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).createcontentHaloRunV1alpha1Comment(comment, options).then((request) => request(this.axios, this.basePath));
1145
+ createcontentHaloRunV1alpha1Comment(requestParameters = {}, options) {
1146
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).createcontentHaloRunV1alpha1Comment(requestParameters.comment, options).then((request) => request(this.axios, this.basePath));
1016
1147
  }
1017
- deletecontentHaloRunV1alpha1Comment(name, options) {
1018
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).deletecontentHaloRunV1alpha1Comment(name, options).then((request) => request(this.axios, this.basePath));
1148
+ deletecontentHaloRunV1alpha1Comment(requestParameters, options) {
1149
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).deletecontentHaloRunV1alpha1Comment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1019
1150
  }
1020
- getcontentHaloRunV1alpha1Comment(name, options) {
1021
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).getcontentHaloRunV1alpha1Comment(name, options).then((request) => request(this.axios, this.basePath));
1151
+ getcontentHaloRunV1alpha1Comment(requestParameters, options) {
1152
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).getcontentHaloRunV1alpha1Comment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1022
1153
  }
1023
- listcontentHaloRunV1alpha1Comment(page, size, labelSelector, fieldSelector, options) {
1024
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).listcontentHaloRunV1alpha1Comment(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1154
+ listcontentHaloRunV1alpha1Comment(requestParameters = {}, options) {
1155
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).listcontentHaloRunV1alpha1Comment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1025
1156
  }
1026
- updatecontentHaloRunV1alpha1Comment(name, comment, options) {
1027
- return ContentHaloRunV1alpha1CommentApiFp(this.configuration).updatecontentHaloRunV1alpha1Comment(name, comment, options).then((request) => request(this.axios, this.basePath));
1157
+ updatecontentHaloRunV1alpha1Comment(requestParameters, options) {
1158
+ return ContentHaloRunV1alpha1CommentApiFp(this.configuration).updatecontentHaloRunV1alpha1Comment(requestParameters.name, requestParameters.comment, options).then((request) => request(this.axios, this.basePath));
1028
1159
  }
1029
1160
  }
1161
+
1030
1162
  const ContentHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
1031
1163
  return {
1032
1164
  createcontentHaloRunV1alpha1Post: async (post, options = {}) => {
@@ -1196,22 +1328,23 @@ const ContentHaloRunV1alpha1PostApiFactory = function(configuration, basePath, a
1196
1328
  };
1197
1329
  };
1198
1330
  class ContentHaloRunV1alpha1PostApi extends BaseAPI {
1199
- createcontentHaloRunV1alpha1Post(post, options) {
1200
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).createcontentHaloRunV1alpha1Post(post, options).then((request) => request(this.axios, this.basePath));
1331
+ createcontentHaloRunV1alpha1Post(requestParameters = {}, options) {
1332
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).createcontentHaloRunV1alpha1Post(requestParameters.post, options).then((request) => request(this.axios, this.basePath));
1201
1333
  }
1202
- deletecontentHaloRunV1alpha1Post(name, options) {
1203
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).deletecontentHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
1334
+ deletecontentHaloRunV1alpha1Post(requestParameters, options) {
1335
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).deletecontentHaloRunV1alpha1Post(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1204
1336
  }
1205
- getcontentHaloRunV1alpha1Post(name, options) {
1206
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).getcontentHaloRunV1alpha1Post(name, options).then((request) => request(this.axios, this.basePath));
1337
+ getcontentHaloRunV1alpha1Post(requestParameters, options) {
1338
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).getcontentHaloRunV1alpha1Post(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1207
1339
  }
1208
- listcontentHaloRunV1alpha1Post(page, size, labelSelector, fieldSelector, options) {
1209
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).listcontentHaloRunV1alpha1Post(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1340
+ listcontentHaloRunV1alpha1Post(requestParameters = {}, options) {
1341
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).listcontentHaloRunV1alpha1Post(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1210
1342
  }
1211
- updatecontentHaloRunV1alpha1Post(name, post, options) {
1212
- return ContentHaloRunV1alpha1PostApiFp(this.configuration).updatecontentHaloRunV1alpha1Post(name, post, options).then((request) => request(this.axios, this.basePath));
1343
+ updatecontentHaloRunV1alpha1Post(requestParameters, options) {
1344
+ return ContentHaloRunV1alpha1PostApiFp(this.configuration).updatecontentHaloRunV1alpha1Post(requestParameters.name, requestParameters.post, options).then((request) => request(this.axios, this.basePath));
1213
1345
  }
1214
1346
  }
1347
+
1215
1348
  const ContentHaloRunV1alpha1ReplyApiAxiosParamCreator = function(configuration) {
1216
1349
  return {
1217
1350
  createcontentHaloRunV1alpha1Reply: async (reply, options = {}) => {
@@ -1381,211 +1514,27 @@ const ContentHaloRunV1alpha1ReplyApiFactory = function(configuration, basePath,
1381
1514
  };
1382
1515
  };
1383
1516
  class ContentHaloRunV1alpha1ReplyApi extends BaseAPI {
1384
- createcontentHaloRunV1alpha1Reply(reply, options) {
1385
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).createcontentHaloRunV1alpha1Reply(reply, options).then((request) => request(this.axios, this.basePath));
1517
+ createcontentHaloRunV1alpha1Reply(requestParameters = {}, options) {
1518
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).createcontentHaloRunV1alpha1Reply(requestParameters.reply, options).then((request) => request(this.axios, this.basePath));
1386
1519
  }
1387
- deletecontentHaloRunV1alpha1Reply(name, options) {
1388
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).deletecontentHaloRunV1alpha1Reply(name, options).then((request) => request(this.axios, this.basePath));
1520
+ deletecontentHaloRunV1alpha1Reply(requestParameters, options) {
1521
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).deletecontentHaloRunV1alpha1Reply(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1389
1522
  }
1390
- getcontentHaloRunV1alpha1Reply(name, options) {
1391
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).getcontentHaloRunV1alpha1Reply(name, options).then((request) => request(this.axios, this.basePath));
1523
+ getcontentHaloRunV1alpha1Reply(requestParameters, options) {
1524
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).getcontentHaloRunV1alpha1Reply(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1392
1525
  }
1393
- listcontentHaloRunV1alpha1Reply(page, size, labelSelector, fieldSelector, options) {
1394
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).listcontentHaloRunV1alpha1Reply(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1526
+ listcontentHaloRunV1alpha1Reply(requestParameters = {}, options) {
1527
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).listcontentHaloRunV1alpha1Reply(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1395
1528
  }
1396
- updatecontentHaloRunV1alpha1Reply(name, reply, options) {
1397
- return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).updatecontentHaloRunV1alpha1Reply(name, reply, options).then((request) => request(this.axios, this.basePath));
1529
+ updatecontentHaloRunV1alpha1Reply(requestParameters, options) {
1530
+ return ContentHaloRunV1alpha1ReplyApiFp(this.configuration).updatecontentHaloRunV1alpha1Reply(requestParameters.name, requestParameters.reply, options).then((request) => request(this.axios, this.basePath));
1398
1531
  }
1399
1532
  }
1400
- const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator = function(configuration) {
1401
- return {
1402
- createcontentHaloRunV1alpha1Snapshot: async (snapshot, options = {}) => {
1403
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1404
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1405
- let baseOptions;
1406
- if (configuration) {
1407
- baseOptions = configuration.baseOptions;
1408
- }
1409
- const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
1410
- const localVarHeaderParameter = {};
1411
- const localVarQueryParameter = {};
1412
- setBasicAuthToObject(localVarRequestOptions, configuration);
1413
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1414
- localVarHeaderParameter["Content-Type"] = "application/json";
1415
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1416
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1417
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1418
- localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1419
- return {
1420
- url: toPathString(localVarUrlObj),
1421
- options: localVarRequestOptions
1422
- };
1423
- },
1424
- deletecontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1425
- assertParamExists("deletecontentHaloRunV1alpha1Snapshot", "name", name);
1426
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1427
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1428
- let baseOptions;
1429
- if (configuration) {
1430
- baseOptions = configuration.baseOptions;
1431
- }
1432
- const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
1433
- const localVarHeaderParameter = {};
1434
- const localVarQueryParameter = {};
1435
- setBasicAuthToObject(localVarRequestOptions, configuration);
1436
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1437
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1438
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1439
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1440
- return {
1441
- url: toPathString(localVarUrlObj),
1442
- options: localVarRequestOptions
1443
- };
1444
- },
1445
- getcontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1446
- assertParamExists("getcontentHaloRunV1alpha1Snapshot", "name", name);
1447
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1448
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1449
- let baseOptions;
1450
- if (configuration) {
1451
- baseOptions = configuration.baseOptions;
1452
- }
1453
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1454
- const localVarHeaderParameter = {};
1455
- const localVarQueryParameter = {};
1456
- setBasicAuthToObject(localVarRequestOptions, configuration);
1457
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1458
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1459
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1460
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1461
- return {
1462
- url: toPathString(localVarUrlObj),
1463
- options: localVarRequestOptions
1464
- };
1465
- },
1466
- listcontentHaloRunV1alpha1Snapshot: async (page, size, labelSelector, fieldSelector, options = {}) => {
1467
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1468
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1469
- let baseOptions;
1470
- if (configuration) {
1471
- baseOptions = configuration.baseOptions;
1472
- }
1473
- const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
1474
- const localVarHeaderParameter = {};
1475
- const localVarQueryParameter = {};
1476
- setBasicAuthToObject(localVarRequestOptions, configuration);
1477
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1478
- if (page !== void 0) {
1479
- localVarQueryParameter["page"] = page;
1480
- }
1481
- if (size !== void 0) {
1482
- localVarQueryParameter["size"] = size;
1483
- }
1484
- if (labelSelector) {
1485
- localVarQueryParameter["labelSelector"] = labelSelector;
1486
- }
1487
- if (fieldSelector) {
1488
- localVarQueryParameter["fieldSelector"] = fieldSelector;
1489
- }
1490
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1491
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1492
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1493
- return {
1494
- url: toPathString(localVarUrlObj),
1495
- options: localVarRequestOptions
1496
- };
1497
- },
1498
- updatecontentHaloRunV1alpha1Snapshot: async (name, snapshot, options = {}) => {
1499
- assertParamExists("updatecontentHaloRunV1alpha1Snapshot", "name", name);
1500
- const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1501
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1502
- let baseOptions;
1503
- if (configuration) {
1504
- baseOptions = configuration.baseOptions;
1505
- }
1506
- const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1507
- const localVarHeaderParameter = {};
1508
- const localVarQueryParameter = {};
1509
- setBasicAuthToObject(localVarRequestOptions, configuration);
1510
- await setBearerAuthToObject(localVarHeaderParameter, configuration);
1511
- localVarHeaderParameter["Content-Type"] = "application/json";
1512
- setSearchParams(localVarUrlObj, localVarQueryParameter);
1513
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1514
- localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1515
- localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1516
- return {
1517
- url: toPathString(localVarUrlObj),
1518
- options: localVarRequestOptions
1519
- };
1520
- }
1521
- };
1522
- };
1523
- const ContentHaloRunV1alpha1SnapshotApiFp = function(configuration) {
1524
- const localVarAxiosParamCreator = ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator(configuration);
1525
- return {
1526
- async createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1527
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Snapshot(snapshot, options);
1528
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1529
- },
1530
- async deletecontentHaloRunV1alpha1Snapshot(name, options) {
1531
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Snapshot(name, options);
1532
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1533
- },
1534
- async getcontentHaloRunV1alpha1Snapshot(name, options) {
1535
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Snapshot(name, options);
1536
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1537
- },
1538
- async listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1539
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options);
1540
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1541
- },
1542
- async updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1543
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options);
1544
- return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1545
- }
1546
- };
1547
- };
1548
- const ContentHaloRunV1alpha1SnapshotApiFactory = function(configuration, basePath, axios) {
1549
- const localVarFp = ContentHaloRunV1alpha1SnapshotApiFp(configuration);
1550
- return {
1551
- createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1552
- return localVarFp.createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(axios, basePath));
1553
- },
1554
- deletecontentHaloRunV1alpha1Snapshot(name, options) {
1555
- return localVarFp.deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1556
- },
1557
- getcontentHaloRunV1alpha1Snapshot(name, options) {
1558
- return localVarFp.getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1559
- },
1560
- listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1561
- return localVarFp.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1562
- },
1563
- updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1564
- return localVarFp.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(axios, basePath));
1565
- }
1566
- };
1567
- };
1568
- class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
1569
- createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1570
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(this.axios, this.basePath));
1571
- }
1572
- deletecontentHaloRunV1alpha1Snapshot(name, options) {
1573
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(this.axios, this.basePath));
1574
- }
1575
- getcontentHaloRunV1alpha1Snapshot(name, options) {
1576
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(this.axios, this.basePath));
1577
- }
1578
- listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1579
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1580
- }
1581
- updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1582
- return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(this.axios, this.basePath));
1583
- }
1584
- }
1585
- const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1533
+
1534
+ const ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configuration) {
1586
1535
  return {
1587
- createcontentHaloRunV1alpha1Tag: async (tag, options = {}) => {
1588
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
1536
+ createcontentHaloRunV1alpha1SinglePage: async (singlePage, options = {}) => {
1537
+ const localVarPath = `/apis/content.halo.run/v1alpha1/singlepages`;
1589
1538
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1590
1539
  let baseOptions;
1591
1540
  if (configuration) {
@@ -1600,15 +1549,15 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1600
1549
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1601
1550
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1602
1551
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1603
- localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
1552
+ localVarRequestOptions.data = serializeDataIfNeeded(singlePage, localVarRequestOptions, configuration);
1604
1553
  return {
1605
1554
  url: toPathString(localVarUrlObj),
1606
1555
  options: localVarRequestOptions
1607
1556
  };
1608
1557
  },
1609
- deletecontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1610
- assertParamExists("deletecontentHaloRunV1alpha1Tag", "name", name);
1611
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1558
+ deletecontentHaloRunV1alpha1SinglePage: async (name, options = {}) => {
1559
+ assertParamExists("deletecontentHaloRunV1alpha1SinglePage", "name", name);
1560
+ const localVarPath = `/apis/content.halo.run/v1alpha1/singlepages/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1612
1561
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1613
1562
  let baseOptions;
1614
1563
  if (configuration) {
@@ -1627,9 +1576,9 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1627
1576
  options: localVarRequestOptions
1628
1577
  };
1629
1578
  },
1630
- getcontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1631
- assertParamExists("getcontentHaloRunV1alpha1Tag", "name", name);
1632
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1579
+ getcontentHaloRunV1alpha1SinglePage: async (name, options = {}) => {
1580
+ assertParamExists("getcontentHaloRunV1alpha1SinglePage", "name", name);
1581
+ const localVarPath = `/apis/content.halo.run/v1alpha1/singlepages/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1633
1582
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1634
1583
  let baseOptions;
1635
1584
  if (configuration) {
@@ -1648,8 +1597,8 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1648
1597
  options: localVarRequestOptions
1649
1598
  };
1650
1599
  },
1651
- listcontentHaloRunV1alpha1Tag: async (page, size, labelSelector, fieldSelector, options = {}) => {
1652
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
1600
+ listcontentHaloRunV1alpha1SinglePage: async (page, size, labelSelector, fieldSelector, options = {}) => {
1601
+ const localVarPath = `/apis/content.halo.run/v1alpha1/singlepages`;
1653
1602
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1654
1603
  let baseOptions;
1655
1604
  if (configuration) {
@@ -1680,9 +1629,9 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1680
1629
  options: localVarRequestOptions
1681
1630
  };
1682
1631
  },
1683
- updatecontentHaloRunV1alpha1Tag: async (name, tag, options = {}) => {
1684
- assertParamExists("updatecontentHaloRunV1alpha1Tag", "name", name);
1685
- const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1632
+ updatecontentHaloRunV1alpha1SinglePage: async (name, singlePage, options = {}) => {
1633
+ assertParamExists("updatecontentHaloRunV1alpha1SinglePage", "name", name);
1634
+ const localVarPath = `/apis/content.halo.run/v1alpha1/singlepages/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1686
1635
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1687
1636
  let baseOptions;
1688
1637
  if (configuration) {
@@ -1697,7 +1646,7 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1697
1646
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1698
1647
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1699
1648
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1700
- localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
1649
+ localVarRequestOptions.data = serializeDataIfNeeded(singlePage, localVarRequestOptions, configuration);
1701
1650
  return {
1702
1651
  url: toPathString(localVarUrlObj),
1703
1652
  options: localVarRequestOptions
@@ -1705,72 +1654,73 @@ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1705
1654
  }
1706
1655
  };
1707
1656
  };
1708
- const ContentHaloRunV1alpha1TagApiFp = function(configuration) {
1709
- const localVarAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator(configuration);
1657
+ const ContentHaloRunV1alpha1SinglePageApiFp = function(configuration) {
1658
+ const localVarAxiosParamCreator = ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator(configuration);
1710
1659
  return {
1711
- async createcontentHaloRunV1alpha1Tag(tag, options) {
1712
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Tag(tag, options);
1660
+ async createcontentHaloRunV1alpha1SinglePage(singlePage, options) {
1661
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1SinglePage(singlePage, options);
1713
1662
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1714
1663
  },
1715
- async deletecontentHaloRunV1alpha1Tag(name, options) {
1716
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Tag(name, options);
1664
+ async deletecontentHaloRunV1alpha1SinglePage(name, options) {
1665
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1SinglePage(name, options);
1717
1666
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1718
1667
  },
1719
- async getcontentHaloRunV1alpha1Tag(name, options) {
1720
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Tag(name, options);
1668
+ async getcontentHaloRunV1alpha1SinglePage(name, options) {
1669
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1SinglePage(name, options);
1721
1670
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1722
1671
  },
1723
- async listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1724
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options);
1672
+ async listcontentHaloRunV1alpha1SinglePage(page, size, labelSelector, fieldSelector, options) {
1673
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1SinglePage(page, size, labelSelector, fieldSelector, options);
1725
1674
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1726
1675
  },
1727
- async updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1728
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Tag(name, tag, options);
1676
+ async updatecontentHaloRunV1alpha1SinglePage(name, singlePage, options) {
1677
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1SinglePage(name, singlePage, options);
1729
1678
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1730
1679
  }
1731
1680
  };
1732
1681
  };
1733
- const ContentHaloRunV1alpha1TagApiFactory = function(configuration, basePath, axios) {
1734
- const localVarFp = ContentHaloRunV1alpha1TagApiFp(configuration);
1682
+ const ContentHaloRunV1alpha1SinglePageApiFactory = function(configuration, basePath, axios) {
1683
+ const localVarFp = ContentHaloRunV1alpha1SinglePageApiFp(configuration);
1735
1684
  return {
1736
- createcontentHaloRunV1alpha1Tag(tag, options) {
1737
- return localVarFp.createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(axios, basePath));
1685
+ createcontentHaloRunV1alpha1SinglePage(singlePage, options) {
1686
+ return localVarFp.createcontentHaloRunV1alpha1SinglePage(singlePage, options).then((request) => request(axios, basePath));
1738
1687
  },
1739
- deletecontentHaloRunV1alpha1Tag(name, options) {
1740
- return localVarFp.deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
1688
+ deletecontentHaloRunV1alpha1SinglePage(name, options) {
1689
+ return localVarFp.deletecontentHaloRunV1alpha1SinglePage(name, options).then((request) => request(axios, basePath));
1741
1690
  },
1742
- getcontentHaloRunV1alpha1Tag(name, options) {
1743
- return localVarFp.getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
1691
+ getcontentHaloRunV1alpha1SinglePage(name, options) {
1692
+ return localVarFp.getcontentHaloRunV1alpha1SinglePage(name, options).then((request) => request(axios, basePath));
1744
1693
  },
1745
- listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1746
- return localVarFp.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1694
+ listcontentHaloRunV1alpha1SinglePage(page, size, labelSelector, fieldSelector, options) {
1695
+ return localVarFp.listcontentHaloRunV1alpha1SinglePage(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1747
1696
  },
1748
- updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1749
- return localVarFp.updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(axios, basePath));
1697
+ updatecontentHaloRunV1alpha1SinglePage(name, singlePage, options) {
1698
+ return localVarFp.updatecontentHaloRunV1alpha1SinglePage(name, singlePage, options).then((request) => request(axios, basePath));
1750
1699
  }
1751
1700
  };
1752
1701
  };
1753
- class ContentHaloRunV1alpha1TagApi extends BaseAPI {
1754
- createcontentHaloRunV1alpha1Tag(tag, options) {
1755
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(this.axios, this.basePath));
1702
+ class ContentHaloRunV1alpha1SinglePageApi extends BaseAPI {
1703
+ createcontentHaloRunV1alpha1SinglePage(requestParameters = {}, options) {
1704
+ return ContentHaloRunV1alpha1SinglePageApiFp(this.configuration).createcontentHaloRunV1alpha1SinglePage(requestParameters.singlePage, options).then((request) => request(this.axios, this.basePath));
1756
1705
  }
1757
- deletecontentHaloRunV1alpha1Tag(name, options) {
1758
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(this.axios, this.basePath));
1706
+ deletecontentHaloRunV1alpha1SinglePage(requestParameters, options) {
1707
+ return ContentHaloRunV1alpha1SinglePageApiFp(this.configuration).deletecontentHaloRunV1alpha1SinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1759
1708
  }
1760
- getcontentHaloRunV1alpha1Tag(name, options) {
1761
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(this.axios, this.basePath));
1709
+ getcontentHaloRunV1alpha1SinglePage(requestParameters, options) {
1710
+ return ContentHaloRunV1alpha1SinglePageApiFp(this.configuration).getcontentHaloRunV1alpha1SinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1762
1711
  }
1763
- listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
1764
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1712
+ listcontentHaloRunV1alpha1SinglePage(requestParameters = {}, options) {
1713
+ return ContentHaloRunV1alpha1SinglePageApiFp(this.configuration).listcontentHaloRunV1alpha1SinglePage(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1765
1714
  }
1766
- updatecontentHaloRunV1alpha1Tag(name, tag, options) {
1767
- return ContentHaloRunV1alpha1TagApiFp(this.configuration).updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(this.axios, this.basePath));
1715
+ updatecontentHaloRunV1alpha1SinglePage(requestParameters, options) {
1716
+ return ContentHaloRunV1alpha1SinglePageApiFp(this.configuration).updatecontentHaloRunV1alpha1SinglePage(requestParameters.name, requestParameters.singlePage, options).then((request) => request(this.axios, this.basePath));
1768
1717
  }
1769
1718
  }
1770
- const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1719
+
1720
+ const ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator = function(configuration) {
1771
1721
  return {
1772
- createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
1773
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
1722
+ createcontentHaloRunV1alpha1Snapshot: async (snapshot, options = {}) => {
1723
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1774
1724
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1775
1725
  let baseOptions;
1776
1726
  if (configuration) {
@@ -1785,15 +1735,15 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1785
1735
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1786
1736
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1787
1737
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1788
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
1738
+ localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1789
1739
  return {
1790
1740
  url: toPathString(localVarUrlObj),
1791
1741
  options: localVarRequestOptions
1792
1742
  };
1793
1743
  },
1794
- deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
1795
- assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
1796
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1744
+ deletecontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1745
+ assertParamExists("deletecontentHaloRunV1alpha1Snapshot", "name", name);
1746
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1797
1747
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1798
1748
  let baseOptions;
1799
1749
  if (configuration) {
@@ -1812,9 +1762,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1812
1762
  options: localVarRequestOptions
1813
1763
  };
1814
1764
  },
1815
- getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
1816
- assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
1817
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1765
+ getcontentHaloRunV1alpha1Snapshot: async (name, options = {}) => {
1766
+ assertParamExists("getcontentHaloRunV1alpha1Snapshot", "name", name);
1767
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1818
1768
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1819
1769
  let baseOptions;
1820
1770
  if (configuration) {
@@ -1833,8 +1783,8 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1833
1783
  options: localVarRequestOptions
1834
1784
  };
1835
1785
  },
1836
- listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
1837
- const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
1786
+ listcontentHaloRunV1alpha1Snapshot: async (page, size, labelSelector, fieldSelector, options = {}) => {
1787
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots`;
1838
1788
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1839
1789
  let baseOptions;
1840
1790
  if (configuration) {
@@ -1865,9 +1815,9 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1865
1815
  options: localVarRequestOptions
1866
1816
  };
1867
1817
  },
1868
- updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
1869
- assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
1870
- const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1818
+ updatecontentHaloRunV1alpha1Snapshot: async (name, snapshot, options = {}) => {
1819
+ assertParamExists("updatecontentHaloRunV1alpha1Snapshot", "name", name);
1820
+ const localVarPath = `/apis/content.halo.run/v1alpha1/snapshots/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1871
1821
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1872
1822
  let baseOptions;
1873
1823
  if (configuration) {
@@ -1882,7 +1832,7 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1882
1832
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1883
1833
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1884
1834
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1885
- localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
1835
+ localVarRequestOptions.data = serializeDataIfNeeded(snapshot, localVarRequestOptions, configuration);
1886
1836
  return {
1887
1837
  url: toPathString(localVarUrlObj),
1888
1838
  options: localVarRequestOptions
@@ -1890,72 +1840,73 @@ const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
1890
1840
  }
1891
1841
  };
1892
1842
  };
1893
- const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
1894
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
1843
+ const ContentHaloRunV1alpha1SnapshotApiFp = function(configuration) {
1844
+ const localVarAxiosParamCreator = ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator(configuration);
1895
1845
  return {
1896
- async createcoreHaloRunV1alpha1Link(link, options) {
1897
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
1846
+ async createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1847
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Snapshot(snapshot, options);
1898
1848
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1899
1849
  },
1900
- async deletecoreHaloRunV1alpha1Link(name, options) {
1901
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
1850
+ async deletecontentHaloRunV1alpha1Snapshot(name, options) {
1851
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Snapshot(name, options);
1902
1852
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1903
1853
  },
1904
- async getcoreHaloRunV1alpha1Link(name, options) {
1905
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
1854
+ async getcontentHaloRunV1alpha1Snapshot(name, options) {
1855
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Snapshot(name, options);
1906
1856
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1907
1857
  },
1908
- async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1909
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
1858
+ async listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1859
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options);
1910
1860
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1911
1861
  },
1912
- async updatecoreHaloRunV1alpha1Link(name, link, options) {
1913
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
1862
+ async updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1863
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options);
1914
1864
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1915
1865
  }
1916
1866
  };
1917
1867
  };
1918
- const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
1919
- const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
1868
+ const ContentHaloRunV1alpha1SnapshotApiFactory = function(configuration, basePath, axios) {
1869
+ const localVarFp = ContentHaloRunV1alpha1SnapshotApiFp(configuration);
1920
1870
  return {
1921
- createcoreHaloRunV1alpha1Link(link, options) {
1922
- return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
1871
+ createcontentHaloRunV1alpha1Snapshot(snapshot, options) {
1872
+ return localVarFp.createcontentHaloRunV1alpha1Snapshot(snapshot, options).then((request) => request(axios, basePath));
1923
1873
  },
1924
- deletecoreHaloRunV1alpha1Link(name, options) {
1925
- return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
1874
+ deletecontentHaloRunV1alpha1Snapshot(name, options) {
1875
+ return localVarFp.deletecontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1926
1876
  },
1927
- getcoreHaloRunV1alpha1Link(name, options) {
1928
- return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
1877
+ getcontentHaloRunV1alpha1Snapshot(name, options) {
1878
+ return localVarFp.getcontentHaloRunV1alpha1Snapshot(name, options).then((request) => request(axios, basePath));
1929
1879
  },
1930
- listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1931
- return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1880
+ listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options) {
1881
+ return localVarFp.listcontentHaloRunV1alpha1Snapshot(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1932
1882
  },
1933
- updatecoreHaloRunV1alpha1Link(name, link, options) {
1934
- return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
1883
+ updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options) {
1884
+ return localVarFp.updatecontentHaloRunV1alpha1Snapshot(name, snapshot, options).then((request) => request(axios, basePath));
1935
1885
  }
1936
1886
  };
1937
1887
  };
1938
- class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
1939
- createcoreHaloRunV1alpha1Link(link, options) {
1940
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(link, options).then((request) => request(this.axios, this.basePath));
1888
+ class ContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
1889
+ createcontentHaloRunV1alpha1Snapshot(requestParameters = {}, options) {
1890
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).createcontentHaloRunV1alpha1Snapshot(requestParameters.snapshot, options).then((request) => request(this.axios, this.basePath));
1941
1891
  }
1942
- deletecoreHaloRunV1alpha1Link(name, options) {
1943
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
1892
+ deletecontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1893
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).deletecontentHaloRunV1alpha1Snapshot(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1944
1894
  }
1945
- getcoreHaloRunV1alpha1Link(name, options) {
1946
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(name, options).then((request) => request(this.axios, this.basePath));
1895
+ getcontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1896
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).getcontentHaloRunV1alpha1Snapshot(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1947
1897
  }
1948
- listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
1949
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
1898
+ listcontentHaloRunV1alpha1Snapshot(requestParameters = {}, options) {
1899
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).listcontentHaloRunV1alpha1Snapshot(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1950
1900
  }
1951
- updatecoreHaloRunV1alpha1Link(name, link, options) {
1952
- return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(this.axios, this.basePath));
1901
+ updatecontentHaloRunV1alpha1Snapshot(requestParameters, options) {
1902
+ return ContentHaloRunV1alpha1SnapshotApiFp(this.configuration).updatecontentHaloRunV1alpha1Snapshot(requestParameters.name, requestParameters.snapshot, options).then((request) => request(this.axios, this.basePath));
1953
1903
  }
1954
1904
  }
1955
- const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
1905
+
1906
+ const ContentHaloRunV1alpha1TagApiAxiosParamCreator = function(configuration) {
1956
1907
  return {
1957
- createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
1958
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
1908
+ createcontentHaloRunV1alpha1Tag: async (tag, options = {}) => {
1909
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
1959
1910
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1960
1911
  let baseOptions;
1961
1912
  if (configuration) {
@@ -1970,15 +1921,15 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
1970
1921
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1971
1922
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1972
1923
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1973
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
1924
+ localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
1974
1925
  return {
1975
1926
  url: toPathString(localVarUrlObj),
1976
1927
  options: localVarRequestOptions
1977
1928
  };
1978
1929
  },
1979
- deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
1980
- assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
1981
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1930
+ deletecontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1931
+ assertParamExists("deletecontentHaloRunV1alpha1Tag", "name", name);
1932
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1982
1933
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1983
1934
  let baseOptions;
1984
1935
  if (configuration) {
@@ -1997,9 +1948,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
1997
1948
  options: localVarRequestOptions
1998
1949
  };
1999
1950
  },
2000
- getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
2001
- assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
2002
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1951
+ getcontentHaloRunV1alpha1Tag: async (name, options = {}) => {
1952
+ assertParamExists("getcontentHaloRunV1alpha1Tag", "name", name);
1953
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2003
1954
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2004
1955
  let baseOptions;
2005
1956
  if (configuration) {
@@ -2018,8 +1969,8 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
2018
1969
  options: localVarRequestOptions
2019
1970
  };
2020
1971
  },
2021
- listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
2022
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
1972
+ listcontentHaloRunV1alpha1Tag: async (page, size, labelSelector, fieldSelector, options = {}) => {
1973
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags`;
2023
1974
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2024
1975
  let baseOptions;
2025
1976
  if (configuration) {
@@ -2050,9 +2001,9 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
2050
2001
  options: localVarRequestOptions
2051
2002
  };
2052
2003
  },
2053
- updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
2054
- assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
2055
- const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2004
+ updatecontentHaloRunV1alpha1Tag: async (name, tag, options = {}) => {
2005
+ assertParamExists("updatecontentHaloRunV1alpha1Tag", "name", name);
2006
+ const localVarPath = `/apis/content.halo.run/v1alpha1/tags/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
2056
2007
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2057
2008
  let baseOptions;
2058
2009
  if (configuration) {
@@ -2067,7 +2018,7 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
2067
2018
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2068
2019
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2069
2020
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
2070
- localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
2021
+ localVarRequestOptions.data = serializeDataIfNeeded(tag, localVarRequestOptions, configuration);
2071
2022
  return {
2072
2023
  url: toPathString(localVarUrlObj),
2073
2024
  options: localVarRequestOptions
@@ -2075,68 +2026,69 @@ const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration)
2075
2026
  }
2076
2027
  };
2077
2028
  };
2078
- const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
2079
- const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
2029
+ const ContentHaloRunV1alpha1TagApiFp = function(configuration) {
2030
+ const localVarAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator(configuration);
2080
2031
  return {
2081
- async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2082
- const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
2032
+ async createcontentHaloRunV1alpha1Tag(tag, options) {
2033
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createcontentHaloRunV1alpha1Tag(tag, options);
2083
2034
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2084
2035
  },
2085
- async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2086
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
2036
+ async deletecontentHaloRunV1alpha1Tag(name, options) {
2037
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deletecontentHaloRunV1alpha1Tag(name, options);
2087
2038
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2088
2039
  },
2089
- async getcoreHaloRunV1alpha1LinkGroup(name, options) {
2090
- const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
2040
+ async getcontentHaloRunV1alpha1Tag(name, options) {
2041
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getcontentHaloRunV1alpha1Tag(name, options);
2091
2042
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2092
2043
  },
2093
- async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2094
- const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
2044
+ async listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
2045
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options);
2095
2046
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2096
2047
  },
2097
- async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2098
- const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
2048
+ async updatecontentHaloRunV1alpha1Tag(name, tag, options) {
2049
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updatecontentHaloRunV1alpha1Tag(name, tag, options);
2099
2050
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2100
2051
  }
2101
2052
  };
2102
2053
  };
2103
- const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
2104
- const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
2054
+ const ContentHaloRunV1alpha1TagApiFactory = function(configuration, basePath, axios) {
2055
+ const localVarFp = ContentHaloRunV1alpha1TagApiFp(configuration);
2105
2056
  return {
2106
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2107
- return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
2057
+ createcontentHaloRunV1alpha1Tag(tag, options) {
2058
+ return localVarFp.createcontentHaloRunV1alpha1Tag(tag, options).then((request) => request(axios, basePath));
2108
2059
  },
2109
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2110
- return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
2060
+ deletecontentHaloRunV1alpha1Tag(name, options) {
2061
+ return localVarFp.deletecontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
2111
2062
  },
2112
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
2113
- return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
2063
+ getcontentHaloRunV1alpha1Tag(name, options) {
2064
+ return localVarFp.getcontentHaloRunV1alpha1Tag(name, options).then((request) => request(axios, basePath));
2114
2065
  },
2115
- listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2116
- return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2066
+ listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options) {
2067
+ return localVarFp.listcontentHaloRunV1alpha1Tag(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2117
2068
  },
2118
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2119
- return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
2069
+ updatecontentHaloRunV1alpha1Tag(name, tag, options) {
2070
+ return localVarFp.updatecontentHaloRunV1alpha1Tag(name, tag, options).then((request) => request(axios, basePath));
2120
2071
  }
2121
2072
  };
2122
2073
  };
2123
- class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
2124
- createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
2125
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(this.axios, this.basePath));
2074
+ class ContentHaloRunV1alpha1TagApi extends BaseAPI {
2075
+ createcontentHaloRunV1alpha1Tag(requestParameters = {}, options) {
2076
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).createcontentHaloRunV1alpha1Tag(requestParameters.tag, options).then((request) => request(this.axios, this.basePath));
2126
2077
  }
2127
- deletecoreHaloRunV1alpha1LinkGroup(name, options) {
2128
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
2078
+ deletecontentHaloRunV1alpha1Tag(requestParameters, options) {
2079
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).deletecontentHaloRunV1alpha1Tag(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2129
2080
  }
2130
- getcoreHaloRunV1alpha1LinkGroup(name, options) {
2131
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(this.axios, this.basePath));
2081
+ getcontentHaloRunV1alpha1Tag(requestParameters, options) {
2082
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).getcontentHaloRunV1alpha1Tag(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2132
2083
  }
2133
- listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
2134
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2084
+ listcontentHaloRunV1alpha1Tag(requestParameters = {}, options) {
2085
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).listcontentHaloRunV1alpha1Tag(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2135
2086
  }
2136
- updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
2137
- return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(this.axios, this.basePath));
2087
+ updatecontentHaloRunV1alpha1Tag(requestParameters, options) {
2088
+ return ContentHaloRunV1alpha1TagApiFp(this.configuration).updatecontentHaloRunV1alpha1Tag(requestParameters.name, requestParameters.tag, options).then((request) => request(this.axios, this.basePath));
2138
2089
  }
2139
2090
  }
2091
+
2140
2092
  const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
2141
2093
  return {
2142
2094
  createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
@@ -2306,22 +2258,23 @@ const PluginHaloRunV1alpha1PluginApiFactory = function(configuration, basePath,
2306
2258
  };
2307
2259
  };
2308
2260
  class PluginHaloRunV1alpha1PluginApi extends BaseAPI {
2309
- createpluginHaloRunV1alpha1Plugin(plugin, options) {
2310
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(plugin, options).then((request) => request(this.axios, this.basePath));
2261
+ createpluginHaloRunV1alpha1Plugin(requestParameters = {}, options) {
2262
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).createpluginHaloRunV1alpha1Plugin(requestParameters.plugin, options).then((request) => request(this.axios, this.basePath));
2311
2263
  }
2312
- deletepluginHaloRunV1alpha1Plugin(name, options) {
2313
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
2264
+ deletepluginHaloRunV1alpha1Plugin(requestParameters, options) {
2265
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).deletepluginHaloRunV1alpha1Plugin(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2314
2266
  }
2315
- getpluginHaloRunV1alpha1Plugin(name, options) {
2316
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(name, options).then((request) => request(this.axios, this.basePath));
2267
+ getpluginHaloRunV1alpha1Plugin(requestParameters, options) {
2268
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).getpluginHaloRunV1alpha1Plugin(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2317
2269
  }
2318
- listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options) {
2319
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2270
+ listpluginHaloRunV1alpha1Plugin(requestParameters = {}, options) {
2271
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).listpluginHaloRunV1alpha1Plugin(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2320
2272
  }
2321
- updatepluginHaloRunV1alpha1Plugin(name, plugin, options) {
2322
- return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(name, plugin, options).then((request) => request(this.axios, this.basePath));
2273
+ updatepluginHaloRunV1alpha1Plugin(requestParameters, options) {
2274
+ return PluginHaloRunV1alpha1PluginApiFp(this.configuration).updatepluginHaloRunV1alpha1Plugin(requestParameters.name, requestParameters.plugin, options).then((request) => request(this.axios, this.basePath));
2323
2275
  }
2324
2276
  }
2277
+
2325
2278
  const PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator = function(configuration) {
2326
2279
  return {
2327
2280
  createpluginHaloRunV1alpha1ReverseProxy: async (reverseProxy, options = {}) => {
@@ -2491,22 +2444,23 @@ const PluginHaloRunV1alpha1ReverseProxyApiFactory = function(configuration, base
2491
2444
  };
2492
2445
  };
2493
2446
  class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
2494
- createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options) {
2495
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(reverseProxy, options).then((request) => request(this.axios, this.basePath));
2447
+ createpluginHaloRunV1alpha1ReverseProxy(requestParameters = {}, options) {
2448
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).createpluginHaloRunV1alpha1ReverseProxy(requestParameters.reverseProxy, options).then((request) => request(this.axios, this.basePath));
2496
2449
  }
2497
- deletepluginHaloRunV1alpha1ReverseProxy(name, options) {
2498
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
2450
+ deletepluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2451
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).deletepluginHaloRunV1alpha1ReverseProxy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2499
2452
  }
2500
- getpluginHaloRunV1alpha1ReverseProxy(name, options) {
2501
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(name, options).then((request) => request(this.axios, this.basePath));
2453
+ getpluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2454
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).getpluginHaloRunV1alpha1ReverseProxy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2502
2455
  }
2503
- listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options) {
2504
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2456
+ listpluginHaloRunV1alpha1ReverseProxy(requestParameters = {}, options) {
2457
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).listpluginHaloRunV1alpha1ReverseProxy(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2505
2458
  }
2506
- updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options) {
2507
- return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(name, reverseProxy, options).then((request) => request(this.axios, this.basePath));
2459
+ updatepluginHaloRunV1alpha1ReverseProxy(requestParameters, options) {
2460
+ return PluginHaloRunV1alpha1ReverseProxyApiFp(this.configuration).updatepluginHaloRunV1alpha1ReverseProxy(requestParameters.name, requestParameters.reverseProxy, options).then((request) => request(this.axios, this.basePath));
2508
2461
  }
2509
2462
  }
2463
+
2510
2464
  const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
2511
2465
  return {
2512
2466
  createstorageHaloRunV1alpha1Attachment: async (attachment, options = {}) => {
@@ -2605,7 +2559,7 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2605
2559
  options: localVarRequestOptions
2606
2560
  };
2607
2561
  },
2608
- searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
2562
+ searchAttachments: async (policy, displayName, uploadedBy, group, size, labelSelector, fieldSelector, page, options = {}) => {
2609
2563
  const localVarPath = `/apis/api.halo.run/v1alpha1/attachments`;
2610
2564
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2611
2565
  let baseOptions;
@@ -2623,24 +2577,24 @@ const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configurat
2623
2577
  if (displayName !== void 0) {
2624
2578
  localVarQueryParameter["displayName"] = displayName;
2625
2579
  }
2626
- if (group !== void 0) {
2627
- localVarQueryParameter["group"] = group;
2628
- }
2629
2580
  if (uploadedBy !== void 0) {
2630
2581
  localVarQueryParameter["uploadedBy"] = uploadedBy;
2631
2582
  }
2583
+ if (group !== void 0) {
2584
+ localVarQueryParameter["group"] = group;
2585
+ }
2632
2586
  if (size !== void 0) {
2633
2587
  localVarQueryParameter["size"] = size;
2634
2588
  }
2635
- if (page !== void 0) {
2636
- localVarQueryParameter["page"] = page;
2637
- }
2638
2589
  if (labelSelector) {
2639
2590
  localVarQueryParameter["labelSelector"] = labelSelector;
2640
2591
  }
2641
2592
  if (fieldSelector) {
2642
2593
  localVarQueryParameter["fieldSelector"] = fieldSelector;
2643
2594
  }
2595
+ if (page !== void 0) {
2596
+ localVarQueryParameter["page"] = page;
2597
+ }
2644
2598
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2645
2599
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2646
2600
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -2727,8 +2681,8 @@ const StorageHaloRunV1alpha1AttachmentApiFp = function(configuration) {
2727
2681
  const localVarAxiosArgs = await localVarAxiosParamCreator.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options);
2728
2682
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2729
2683
  },
2730
- async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2731
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
2684
+ async searchAttachments(policy, displayName, uploadedBy, group, size, labelSelector, fieldSelector, page, options) {
2685
+ const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, uploadedBy, group, size, labelSelector, fieldSelector, page, options);
2732
2686
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
2733
2687
  },
2734
2688
  async updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
@@ -2756,8 +2710,8 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
2756
2710
  liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
2757
2711
  return localVarFp.liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2758
2712
  },
2759
- searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2760
- return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
2713
+ searchAttachments(policy, displayName, uploadedBy, group, size, labelSelector, fieldSelector, page, options) {
2714
+ return localVarFp.searchAttachments(policy, displayName, uploadedBy, group, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
2761
2715
  },
2762
2716
  updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
2763
2717
  return localVarFp.updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(axios, basePath));
@@ -2768,28 +2722,29 @@ const StorageHaloRunV1alpha1AttachmentApiFactory = function(configuration, baseP
2768
2722
  };
2769
2723
  };
2770
2724
  class StorageHaloRunV1alpha1AttachmentApi extends BaseAPI {
2771
- createstorageHaloRunV1alpha1Attachment(attachment, options) {
2772
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).createstorageHaloRunV1alpha1Attachment(attachment, options).then((request) => request(this.axios, this.basePath));
2725
+ createstorageHaloRunV1alpha1Attachment(requestParameters = {}, options) {
2726
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).createstorageHaloRunV1alpha1Attachment(requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
2773
2727
  }
2774
- deletestorageHaloRunV1alpha1Attachment(name, options) {
2775
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).deletestorageHaloRunV1alpha1Attachment(name, options).then((request) => request(this.axios, this.basePath));
2728
+ deletestorageHaloRunV1alpha1Attachment(requestParameters, options) {
2729
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).deletestorageHaloRunV1alpha1Attachment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2776
2730
  }
2777
- getstorageHaloRunV1alpha1Attachment(name, options) {
2778
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).getstorageHaloRunV1alpha1Attachment(name, options).then((request) => request(this.axios, this.basePath));
2731
+ getstorageHaloRunV1alpha1Attachment(requestParameters, options) {
2732
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).getstorageHaloRunV1alpha1Attachment(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2779
2733
  }
2780
- liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options) {
2781
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2734
+ liststorageHaloRunV1alpha1Attachment(requestParameters = {}, options) {
2735
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).liststorageHaloRunV1alpha1Attachment(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2782
2736
  }
2783
- searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
2784
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2737
+ searchAttachments(requestParameters = {}, options) {
2738
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.uploadedBy, requestParameters.group, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
2785
2739
  }
2786
- updatestorageHaloRunV1alpha1Attachment(name, attachment, options) {
2787
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(name, attachment, options).then((request) => request(this.axios, this.basePath));
2740
+ updatestorageHaloRunV1alpha1Attachment(requestParameters, options) {
2741
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).updatestorageHaloRunV1alpha1Attachment(requestParameters.name, requestParameters.attachment, options).then((request) => request(this.axios, this.basePath));
2788
2742
  }
2789
- uploadAttachment(file, policyName, groupName, options) {
2790
- return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(file, policyName, groupName, options).then((request) => request(this.axios, this.basePath));
2743
+ uploadAttachment(requestParameters, options) {
2744
+ return StorageHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
2791
2745
  }
2792
2746
  }
2747
+
2793
2748
  const StorageHaloRunV1alpha1GroupApiAxiosParamCreator = function(configuration) {
2794
2749
  return {
2795
2750
  createstorageHaloRunV1alpha1Group: async (group, options = {}) => {
@@ -2959,22 +2914,23 @@ const StorageHaloRunV1alpha1GroupApiFactory = function(configuration, basePath,
2959
2914
  };
2960
2915
  };
2961
2916
  class StorageHaloRunV1alpha1GroupApi extends BaseAPI {
2962
- createstorageHaloRunV1alpha1Group(group, options) {
2963
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).createstorageHaloRunV1alpha1Group(group, options).then((request) => request(this.axios, this.basePath));
2917
+ createstorageHaloRunV1alpha1Group(requestParameters = {}, options) {
2918
+ return StorageHaloRunV1alpha1GroupApiFp(this.configuration).createstorageHaloRunV1alpha1Group(requestParameters.group, options).then((request) => request(this.axios, this.basePath));
2964
2919
  }
2965
- deletestorageHaloRunV1alpha1Group(name, options) {
2966
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).deletestorageHaloRunV1alpha1Group(name, options).then((request) => request(this.axios, this.basePath));
2920
+ deletestorageHaloRunV1alpha1Group(requestParameters, options) {
2921
+ return StorageHaloRunV1alpha1GroupApiFp(this.configuration).deletestorageHaloRunV1alpha1Group(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2967
2922
  }
2968
- getstorageHaloRunV1alpha1Group(name, options) {
2969
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).getstorageHaloRunV1alpha1Group(name, options).then((request) => request(this.axios, this.basePath));
2923
+ getstorageHaloRunV1alpha1Group(requestParameters, options) {
2924
+ return StorageHaloRunV1alpha1GroupApiFp(this.configuration).getstorageHaloRunV1alpha1Group(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
2970
2925
  }
2971
- liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options) {
2972
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).liststorageHaloRunV1alpha1Group(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
2926
+ liststorageHaloRunV1alpha1Group(requestParameters = {}, options) {
2927
+ return StorageHaloRunV1alpha1GroupApiFp(this.configuration).liststorageHaloRunV1alpha1Group(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
2973
2928
  }
2974
- updatestorageHaloRunV1alpha1Group(name, group, options) {
2975
- return StorageHaloRunV1alpha1GroupApiFp(this.configuration).updatestorageHaloRunV1alpha1Group(name, group, options).then((request) => request(this.axios, this.basePath));
2929
+ updatestorageHaloRunV1alpha1Group(requestParameters, options) {
2930
+ return StorageHaloRunV1alpha1GroupApiFp(this.configuration).updatestorageHaloRunV1alpha1Group(requestParameters.name, requestParameters.group, options).then((request) => request(this.axios, this.basePath));
2976
2931
  }
2977
2932
  }
2933
+
2978
2934
  const StorageHaloRunV1alpha1PolicyApiAxiosParamCreator = function(configuration) {
2979
2935
  return {
2980
2936
  createstorageHaloRunV1alpha1Policy: async (policy, options = {}) => {
@@ -3144,22 +3100,23 @@ const StorageHaloRunV1alpha1PolicyApiFactory = function(configuration, basePath,
3144
3100
  };
3145
3101
  };
3146
3102
  class StorageHaloRunV1alpha1PolicyApi extends BaseAPI {
3147
- createstorageHaloRunV1alpha1Policy(policy, options) {
3148
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).createstorageHaloRunV1alpha1Policy(policy, options).then((request) => request(this.axios, this.basePath));
3103
+ createstorageHaloRunV1alpha1Policy(requestParameters = {}, options) {
3104
+ return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).createstorageHaloRunV1alpha1Policy(requestParameters.policy, options).then((request) => request(this.axios, this.basePath));
3149
3105
  }
3150
- deletestorageHaloRunV1alpha1Policy(name, options) {
3151
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).deletestorageHaloRunV1alpha1Policy(name, options).then((request) => request(this.axios, this.basePath));
3106
+ deletestorageHaloRunV1alpha1Policy(requestParameters, options) {
3107
+ return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).deletestorageHaloRunV1alpha1Policy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3152
3108
  }
3153
- getstorageHaloRunV1alpha1Policy(name, options) {
3154
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).getstorageHaloRunV1alpha1Policy(name, options).then((request) => request(this.axios, this.basePath));
3109
+ getstorageHaloRunV1alpha1Policy(requestParameters, options) {
3110
+ return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).getstorageHaloRunV1alpha1Policy(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3155
3111
  }
3156
- liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options) {
3157
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).liststorageHaloRunV1alpha1Policy(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3112
+ liststorageHaloRunV1alpha1Policy(requestParameters = {}, options) {
3113
+ return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).liststorageHaloRunV1alpha1Policy(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3158
3114
  }
3159
- updatestorageHaloRunV1alpha1Policy(name, policy, options) {
3160
- return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).updatestorageHaloRunV1alpha1Policy(name, policy, options).then((request) => request(this.axios, this.basePath));
3115
+ updatestorageHaloRunV1alpha1Policy(requestParameters, options) {
3116
+ return StorageHaloRunV1alpha1PolicyApiFp(this.configuration).updatestorageHaloRunV1alpha1Policy(requestParameters.name, requestParameters.policy, options).then((request) => request(this.axios, this.basePath));
3161
3117
  }
3162
3118
  }
3119
+
3163
3120
  const StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator = function(configuration) {
3164
3121
  return {
3165
3122
  createstorageHaloRunV1alpha1PolicyTemplate: async (policyTemplate, options = {}) => {
@@ -3329,22 +3286,23 @@ const StorageHaloRunV1alpha1PolicyTemplateApiFactory = function(configuration, b
3329
3286
  };
3330
3287
  };
3331
3288
  class StorageHaloRunV1alpha1PolicyTemplateApi extends BaseAPI {
3332
- createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options) {
3333
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).createstorageHaloRunV1alpha1PolicyTemplate(policyTemplate, options).then((request) => request(this.axios, this.basePath));
3289
+ createstorageHaloRunV1alpha1PolicyTemplate(requestParameters = {}, options) {
3290
+ return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).createstorageHaloRunV1alpha1PolicyTemplate(requestParameters.policyTemplate, options).then((request) => request(this.axios, this.basePath));
3334
3291
  }
3335
- deletestorageHaloRunV1alpha1PolicyTemplate(name, options) {
3336
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).deletestorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(this.axios, this.basePath));
3292
+ deletestorageHaloRunV1alpha1PolicyTemplate(requestParameters, options) {
3293
+ return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).deletestorageHaloRunV1alpha1PolicyTemplate(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3337
3294
  }
3338
- getstorageHaloRunV1alpha1PolicyTemplate(name, options) {
3339
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).getstorageHaloRunV1alpha1PolicyTemplate(name, options).then((request) => request(this.axios, this.basePath));
3295
+ getstorageHaloRunV1alpha1PolicyTemplate(requestParameters, options) {
3296
+ return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).getstorageHaloRunV1alpha1PolicyTemplate(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3340
3297
  }
3341
- liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options) {
3342
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).liststorageHaloRunV1alpha1PolicyTemplate(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3298
+ liststorageHaloRunV1alpha1PolicyTemplate(requestParameters = {}, options) {
3299
+ return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).liststorageHaloRunV1alpha1PolicyTemplate(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3343
3300
  }
3344
- updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options) {
3345
- return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).updatestorageHaloRunV1alpha1PolicyTemplate(name, policyTemplate, options).then((request) => request(this.axios, this.basePath));
3301
+ updatestorageHaloRunV1alpha1PolicyTemplate(requestParameters, options) {
3302
+ return StorageHaloRunV1alpha1PolicyTemplateApiFp(this.configuration).updatestorageHaloRunV1alpha1PolicyTemplate(requestParameters.name, requestParameters.policyTemplate, options).then((request) => request(this.axios, this.basePath));
3346
3303
  }
3347
3304
  }
3305
+
3348
3306
  const ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
3349
3307
  return {
3350
3308
  createthemeHaloRunV1alpha1Theme: async (theme, options = {}) => {
@@ -3514,22 +3472,23 @@ const ThemeHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, ax
3514
3472
  };
3515
3473
  };
3516
3474
  class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
3517
- createthemeHaloRunV1alpha1Theme(theme, options) {
3518
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).createthemeHaloRunV1alpha1Theme(theme, options).then((request) => request(this.axios, this.basePath));
3475
+ createthemeHaloRunV1alpha1Theme(requestParameters = {}, options) {
3476
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).createthemeHaloRunV1alpha1Theme(requestParameters.theme, options).then((request) => request(this.axios, this.basePath));
3519
3477
  }
3520
- deletethemeHaloRunV1alpha1Theme(name, options) {
3521
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).deletethemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
3478
+ deletethemeHaloRunV1alpha1Theme(requestParameters, options) {
3479
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).deletethemeHaloRunV1alpha1Theme(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3522
3480
  }
3523
- getthemeHaloRunV1alpha1Theme(name, options) {
3524
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).getthemeHaloRunV1alpha1Theme(name, options).then((request) => request(this.axios, this.basePath));
3481
+ getthemeHaloRunV1alpha1Theme(requestParameters, options) {
3482
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).getthemeHaloRunV1alpha1Theme(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3525
3483
  }
3526
- listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options) {
3527
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).listthemeHaloRunV1alpha1Theme(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3484
+ listthemeHaloRunV1alpha1Theme(requestParameters = {}, options) {
3485
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).listthemeHaloRunV1alpha1Theme(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3528
3486
  }
3529
- updatethemeHaloRunV1alpha1Theme(name, theme, options) {
3530
- return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).updatethemeHaloRunV1alpha1Theme(name, theme, options).then((request) => request(this.axios, this.basePath));
3487
+ updatethemeHaloRunV1alpha1Theme(requestParameters, options) {
3488
+ return ThemeHaloRunV1alpha1ThemeApiFp(this.configuration).updatethemeHaloRunV1alpha1Theme(requestParameters.name, requestParameters.theme, options).then((request) => request(this.axios, this.basePath));
3531
3489
  }
3532
3490
  }
3491
+
3533
3492
  const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
3534
3493
  return {
3535
3494
  createv1alpha1ConfigMap: async (configMap, options = {}) => {
@@ -3699,22 +3658,23 @@ const V1alpha1ConfigMapApiFactory = function(configuration, basePath, axios) {
3699
3658
  };
3700
3659
  };
3701
3660
  class V1alpha1ConfigMapApi extends BaseAPI {
3702
- createv1alpha1ConfigMap(configMap, options) {
3703
- return V1alpha1ConfigMapApiFp(this.configuration).createv1alpha1ConfigMap(configMap, options).then((request) => request(this.axios, this.basePath));
3661
+ createv1alpha1ConfigMap(requestParameters = {}, options) {
3662
+ return V1alpha1ConfigMapApiFp(this.configuration).createv1alpha1ConfigMap(requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
3704
3663
  }
3705
- deletev1alpha1ConfigMap(name, options) {
3706
- return V1alpha1ConfigMapApiFp(this.configuration).deletev1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
3664
+ deletev1alpha1ConfigMap(requestParameters, options) {
3665
+ return V1alpha1ConfigMapApiFp(this.configuration).deletev1alpha1ConfigMap(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3707
3666
  }
3708
- getv1alpha1ConfigMap(name, options) {
3709
- return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(name, options).then((request) => request(this.axios, this.basePath));
3667
+ getv1alpha1ConfigMap(requestParameters, options) {
3668
+ return V1alpha1ConfigMapApiFp(this.configuration).getv1alpha1ConfigMap(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3710
3669
  }
3711
- listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options) {
3712
- return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3670
+ listv1alpha1ConfigMap(requestParameters = {}, options) {
3671
+ return V1alpha1ConfigMapApiFp(this.configuration).listv1alpha1ConfigMap(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3713
3672
  }
3714
- updatev1alpha1ConfigMap(name, configMap, options) {
3715
- return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(name, configMap, options).then((request) => request(this.axios, this.basePath));
3673
+ updatev1alpha1ConfigMap(requestParameters, options) {
3674
+ return V1alpha1ConfigMapApiFp(this.configuration).updatev1alpha1ConfigMap(requestParameters.name, requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
3716
3675
  }
3717
3676
  }
3677
+
3718
3678
  const V1alpha1MenuApiAxiosParamCreator = function(configuration) {
3719
3679
  return {
3720
3680
  createv1alpha1Menu: async (menu, options = {}) => {
@@ -3884,22 +3844,23 @@ const V1alpha1MenuApiFactory = function(configuration, basePath, axios) {
3884
3844
  };
3885
3845
  };
3886
3846
  class V1alpha1MenuApi extends BaseAPI {
3887
- createv1alpha1Menu(menu, options) {
3888
- return V1alpha1MenuApiFp(this.configuration).createv1alpha1Menu(menu, options).then((request) => request(this.axios, this.basePath));
3847
+ createv1alpha1Menu(requestParameters = {}, options) {
3848
+ return V1alpha1MenuApiFp(this.configuration).createv1alpha1Menu(requestParameters.menu, options).then((request) => request(this.axios, this.basePath));
3889
3849
  }
3890
- deletev1alpha1Menu(name, options) {
3891
- return V1alpha1MenuApiFp(this.configuration).deletev1alpha1Menu(name, options).then((request) => request(this.axios, this.basePath));
3850
+ deletev1alpha1Menu(requestParameters, options) {
3851
+ return V1alpha1MenuApiFp(this.configuration).deletev1alpha1Menu(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3892
3852
  }
3893
- getv1alpha1Menu(name, options) {
3894
- return V1alpha1MenuApiFp(this.configuration).getv1alpha1Menu(name, options).then((request) => request(this.axios, this.basePath));
3853
+ getv1alpha1Menu(requestParameters, options) {
3854
+ return V1alpha1MenuApiFp(this.configuration).getv1alpha1Menu(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
3895
3855
  }
3896
- listv1alpha1Menu(page, size, labelSelector, fieldSelector, options) {
3897
- return V1alpha1MenuApiFp(this.configuration).listv1alpha1Menu(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
3856
+ listv1alpha1Menu(requestParameters = {}, options) {
3857
+ return V1alpha1MenuApiFp(this.configuration).listv1alpha1Menu(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
3898
3858
  }
3899
- updatev1alpha1Menu(name, menu, options) {
3900
- return V1alpha1MenuApiFp(this.configuration).updatev1alpha1Menu(name, menu, options).then((request) => request(this.axios, this.basePath));
3859
+ updatev1alpha1Menu(requestParameters, options) {
3860
+ return V1alpha1MenuApiFp(this.configuration).updatev1alpha1Menu(requestParameters.name, requestParameters.menu, options).then((request) => request(this.axios, this.basePath));
3901
3861
  }
3902
3862
  }
3863
+
3903
3864
  const V1alpha1MenuItemApiAxiosParamCreator = function(configuration) {
3904
3865
  return {
3905
3866
  createv1alpha1MenuItem: async (menuItem, options = {}) => {
@@ -4069,22 +4030,23 @@ const V1alpha1MenuItemApiFactory = function(configuration, basePath, axios) {
4069
4030
  };
4070
4031
  };
4071
4032
  class V1alpha1MenuItemApi extends BaseAPI {
4072
- createv1alpha1MenuItem(menuItem, options) {
4073
- return V1alpha1MenuItemApiFp(this.configuration).createv1alpha1MenuItem(menuItem, options).then((request) => request(this.axios, this.basePath));
4033
+ createv1alpha1MenuItem(requestParameters = {}, options) {
4034
+ return V1alpha1MenuItemApiFp(this.configuration).createv1alpha1MenuItem(requestParameters.menuItem, options).then((request) => request(this.axios, this.basePath));
4074
4035
  }
4075
- deletev1alpha1MenuItem(name, options) {
4076
- return V1alpha1MenuItemApiFp(this.configuration).deletev1alpha1MenuItem(name, options).then((request) => request(this.axios, this.basePath));
4036
+ deletev1alpha1MenuItem(requestParameters, options) {
4037
+ return V1alpha1MenuItemApiFp(this.configuration).deletev1alpha1MenuItem(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4077
4038
  }
4078
- getv1alpha1MenuItem(name, options) {
4079
- return V1alpha1MenuItemApiFp(this.configuration).getv1alpha1MenuItem(name, options).then((request) => request(this.axios, this.basePath));
4039
+ getv1alpha1MenuItem(requestParameters, options) {
4040
+ return V1alpha1MenuItemApiFp(this.configuration).getv1alpha1MenuItem(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4080
4041
  }
4081
- listv1alpha1MenuItem(page, size, labelSelector, fieldSelector, options) {
4082
- return V1alpha1MenuItemApiFp(this.configuration).listv1alpha1MenuItem(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4042
+ listv1alpha1MenuItem(requestParameters = {}, options) {
4043
+ return V1alpha1MenuItemApiFp(this.configuration).listv1alpha1MenuItem(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4083
4044
  }
4084
- updatev1alpha1MenuItem(name, menuItem, options) {
4085
- return V1alpha1MenuItemApiFp(this.configuration).updatev1alpha1MenuItem(name, menuItem, options).then((request) => request(this.axios, this.basePath));
4045
+ updatev1alpha1MenuItem(requestParameters, options) {
4046
+ return V1alpha1MenuItemApiFp(this.configuration).updatev1alpha1MenuItem(requestParameters.name, requestParameters.menuItem, options).then((request) => request(this.axios, this.basePath));
4086
4047
  }
4087
4048
  }
4049
+
4088
4050
  const V1alpha1PersonalAccessTokenApiAxiosParamCreator = function(configuration) {
4089
4051
  return {
4090
4052
  createv1alpha1PersonalAccessToken: async (personalAccessToken, options = {}) => {
@@ -4254,22 +4216,23 @@ const V1alpha1PersonalAccessTokenApiFactory = function(configuration, basePath,
4254
4216
  };
4255
4217
  };
4256
4218
  class V1alpha1PersonalAccessTokenApi extends BaseAPI {
4257
- createv1alpha1PersonalAccessToken(personalAccessToken, options) {
4258
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).createv1alpha1PersonalAccessToken(personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4219
+ createv1alpha1PersonalAccessToken(requestParameters = {}, options) {
4220
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).createv1alpha1PersonalAccessToken(requestParameters.personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4259
4221
  }
4260
- deletev1alpha1PersonalAccessToken(name, options) {
4261
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).deletev1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
4222
+ deletev1alpha1PersonalAccessToken(requestParameters, options) {
4223
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).deletev1alpha1PersonalAccessToken(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4262
4224
  }
4263
- getv1alpha1PersonalAccessToken(name, options) {
4264
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(name, options).then((request) => request(this.axios, this.basePath));
4225
+ getv1alpha1PersonalAccessToken(requestParameters, options) {
4226
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).getv1alpha1PersonalAccessToken(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4265
4227
  }
4266
- listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options) {
4267
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4228
+ listv1alpha1PersonalAccessToken(requestParameters = {}, options) {
4229
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).listv1alpha1PersonalAccessToken(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4268
4230
  }
4269
- updatev1alpha1PersonalAccessToken(name, personalAccessToken, options) {
4270
- return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(name, personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4231
+ updatev1alpha1PersonalAccessToken(requestParameters, options) {
4232
+ return V1alpha1PersonalAccessTokenApiFp(this.configuration).updatev1alpha1PersonalAccessToken(requestParameters.name, requestParameters.personalAccessToken, options).then((request) => request(this.axios, this.basePath));
4271
4233
  }
4272
4234
  }
4235
+
4273
4236
  const V1alpha1RoleApiAxiosParamCreator = function(configuration) {
4274
4237
  return {
4275
4238
  createv1alpha1Role: async (role, options = {}) => {
@@ -4439,22 +4402,23 @@ const V1alpha1RoleApiFactory = function(configuration, basePath, axios) {
4439
4402
  };
4440
4403
  };
4441
4404
  class V1alpha1RoleApi extends BaseAPI {
4442
- createv1alpha1Role(role, options) {
4443
- return V1alpha1RoleApiFp(this.configuration).createv1alpha1Role(role, options).then((request) => request(this.axios, this.basePath));
4405
+ createv1alpha1Role(requestParameters = {}, options) {
4406
+ return V1alpha1RoleApiFp(this.configuration).createv1alpha1Role(requestParameters.role, options).then((request) => request(this.axios, this.basePath));
4444
4407
  }
4445
- deletev1alpha1Role(name, options) {
4446
- return V1alpha1RoleApiFp(this.configuration).deletev1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
4408
+ deletev1alpha1Role(requestParameters, options) {
4409
+ return V1alpha1RoleApiFp(this.configuration).deletev1alpha1Role(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4447
4410
  }
4448
- getv1alpha1Role(name, options) {
4449
- return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(name, options).then((request) => request(this.axios, this.basePath));
4411
+ getv1alpha1Role(requestParameters, options) {
4412
+ return V1alpha1RoleApiFp(this.configuration).getv1alpha1Role(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4450
4413
  }
4451
- listv1alpha1Role(page, size, labelSelector, fieldSelector, options) {
4452
- return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4414
+ listv1alpha1Role(requestParameters = {}, options) {
4415
+ return V1alpha1RoleApiFp(this.configuration).listv1alpha1Role(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4453
4416
  }
4454
- updatev1alpha1Role(name, role, options) {
4455
- return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(name, role, options).then((request) => request(this.axios, this.basePath));
4417
+ updatev1alpha1Role(requestParameters, options) {
4418
+ return V1alpha1RoleApiFp(this.configuration).updatev1alpha1Role(requestParameters.name, requestParameters.role, options).then((request) => request(this.axios, this.basePath));
4456
4419
  }
4457
4420
  }
4421
+
4458
4422
  const V1alpha1RoleBindingApiAxiosParamCreator = function(configuration) {
4459
4423
  return {
4460
4424
  createv1alpha1RoleBinding: async (roleBinding, options = {}) => {
@@ -4624,22 +4588,23 @@ const V1alpha1RoleBindingApiFactory = function(configuration, basePath, axios) {
4624
4588
  };
4625
4589
  };
4626
4590
  class V1alpha1RoleBindingApi extends BaseAPI {
4627
- createv1alpha1RoleBinding(roleBinding, options) {
4628
- return V1alpha1RoleBindingApiFp(this.configuration).createv1alpha1RoleBinding(roleBinding, options).then((request) => request(this.axios, this.basePath));
4591
+ createv1alpha1RoleBinding(requestParameters = {}, options) {
4592
+ return V1alpha1RoleBindingApiFp(this.configuration).createv1alpha1RoleBinding(requestParameters.roleBinding, options).then((request) => request(this.axios, this.basePath));
4629
4593
  }
4630
- deletev1alpha1RoleBinding(name, options) {
4631
- return V1alpha1RoleBindingApiFp(this.configuration).deletev1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
4594
+ deletev1alpha1RoleBinding(requestParameters, options) {
4595
+ return V1alpha1RoleBindingApiFp(this.configuration).deletev1alpha1RoleBinding(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4632
4596
  }
4633
- getv1alpha1RoleBinding(name, options) {
4634
- return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(name, options).then((request) => request(this.axios, this.basePath));
4597
+ getv1alpha1RoleBinding(requestParameters, options) {
4598
+ return V1alpha1RoleBindingApiFp(this.configuration).getv1alpha1RoleBinding(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4635
4599
  }
4636
- listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options) {
4637
- return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4600
+ listv1alpha1RoleBinding(requestParameters = {}, options) {
4601
+ return V1alpha1RoleBindingApiFp(this.configuration).listv1alpha1RoleBinding(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4638
4602
  }
4639
- updatev1alpha1RoleBinding(name, roleBinding, options) {
4640
- return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(name, roleBinding, options).then((request) => request(this.axios, this.basePath));
4603
+ updatev1alpha1RoleBinding(requestParameters, options) {
4604
+ return V1alpha1RoleBindingApiFp(this.configuration).updatev1alpha1RoleBinding(requestParameters.name, requestParameters.roleBinding, options).then((request) => request(this.axios, this.basePath));
4641
4605
  }
4642
4606
  }
4607
+
4643
4608
  const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
4644
4609
  return {
4645
4610
  createv1alpha1Setting: async (setting, options = {}) => {
@@ -4809,22 +4774,23 @@ const V1alpha1SettingApiFactory = function(configuration, basePath, axios) {
4809
4774
  };
4810
4775
  };
4811
4776
  class V1alpha1SettingApi extends BaseAPI {
4812
- createv1alpha1Setting(setting, options) {
4813
- return V1alpha1SettingApiFp(this.configuration).createv1alpha1Setting(setting, options).then((request) => request(this.axios, this.basePath));
4777
+ createv1alpha1Setting(requestParameters = {}, options) {
4778
+ return V1alpha1SettingApiFp(this.configuration).createv1alpha1Setting(requestParameters.setting, options).then((request) => request(this.axios, this.basePath));
4814
4779
  }
4815
- deletev1alpha1Setting(name, options) {
4816
- return V1alpha1SettingApiFp(this.configuration).deletev1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
4780
+ deletev1alpha1Setting(requestParameters, options) {
4781
+ return V1alpha1SettingApiFp(this.configuration).deletev1alpha1Setting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4817
4782
  }
4818
- getv1alpha1Setting(name, options) {
4819
- return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(name, options).then((request) => request(this.axios, this.basePath));
4783
+ getv1alpha1Setting(requestParameters, options) {
4784
+ return V1alpha1SettingApiFp(this.configuration).getv1alpha1Setting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
4820
4785
  }
4821
- listv1alpha1Setting(page, size, labelSelector, fieldSelector, options) {
4822
- return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4786
+ listv1alpha1Setting(requestParameters = {}, options) {
4787
+ return V1alpha1SettingApiFp(this.configuration).listv1alpha1Setting(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
4823
4788
  }
4824
- updatev1alpha1Setting(name, setting, options) {
4825
- return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(name, setting, options).then((request) => request(this.axios, this.basePath));
4789
+ updatev1alpha1Setting(requestParameters, options) {
4790
+ return V1alpha1SettingApiFp(this.configuration).updatev1alpha1Setting(requestParameters.name, requestParameters.setting, options).then((request) => request(this.axios, this.basePath));
4826
4791
  }
4827
4792
  }
4793
+
4828
4794
  const V1alpha1UserApiAxiosParamCreator = function(configuration) {
4829
4795
  return {
4830
4796
  createv1alpha1User: async (user, options = {}) => {
@@ -4994,20 +4960,20 @@ const V1alpha1UserApiFactory = function(configuration, basePath, axios) {
4994
4960
  };
4995
4961
  };
4996
4962
  class V1alpha1UserApi extends BaseAPI {
4997
- createv1alpha1User(user, options) {
4998
- return V1alpha1UserApiFp(this.configuration).createv1alpha1User(user, options).then((request) => request(this.axios, this.basePath));
4963
+ createv1alpha1User(requestParameters = {}, options) {
4964
+ return V1alpha1UserApiFp(this.configuration).createv1alpha1User(requestParameters.user, options).then((request) => request(this.axios, this.basePath));
4999
4965
  }
5000
- deletev1alpha1User(name, options) {
5001
- return V1alpha1UserApiFp(this.configuration).deletev1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
4966
+ deletev1alpha1User(requestParameters, options) {
4967
+ return V1alpha1UserApiFp(this.configuration).deletev1alpha1User(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
5002
4968
  }
5003
- getv1alpha1User(name, options) {
5004
- return V1alpha1UserApiFp(this.configuration).getv1alpha1User(name, options).then((request) => request(this.axios, this.basePath));
4969
+ getv1alpha1User(requestParameters, options) {
4970
+ return V1alpha1UserApiFp(this.configuration).getv1alpha1User(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
5005
4971
  }
5006
- listv1alpha1User(page, size, labelSelector, fieldSelector, options) {
5007
- return V1alpha1UserApiFp(this.configuration).listv1alpha1User(page, size, labelSelector, fieldSelector, options).then((request) => request(this.axios, this.basePath));
4972
+ listv1alpha1User(requestParameters = {}, options) {
4973
+ return V1alpha1UserApiFp(this.configuration).listv1alpha1User(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
5008
4974
  }
5009
- updatev1alpha1User(name, user, options) {
5010
- return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(name, user, options).then((request) => request(this.axios, this.basePath));
4975
+ updatev1alpha1User(requestParameters, options) {
4976
+ return V1alpha1UserApiFp(this.configuration).updatev1alpha1User(requestParameters.name, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
5011
4977
  }
5012
4978
  }
5013
4979
 
@@ -5027,6 +4993,33 @@ class Configuration {
5027
4993
  }
5028
4994
  }
5029
4995
 
4996
+ const ConditionStatusEnum = {
4997
+ True: "TRUE",
4998
+ False: "FALSE",
4999
+ Unknown: "UNKNOWN"
5000
+ };
5001
+
5002
+ const PluginStatusPhaseEnum = {
5003
+ Created: "CREATED",
5004
+ Disabled: "DISABLED",
5005
+ Resolved: "RESOLVED",
5006
+ Started: "STARTED",
5007
+ Stopped: "STOPPED",
5008
+ Failed: "FAILED"
5009
+ };
5010
+
5011
+ const PostSpecVisibleEnum = {
5012
+ Public: "PUBLIC",
5013
+ Internal: "INTERNAL",
5014
+ Private: "PRIVATE"
5015
+ };
5016
+
5017
+ const SinglePageSpecVisibleEnum = {
5018
+ Public: "PUBLIC",
5019
+ Internal: "INTERNAL",
5020
+ Private: "PRIVATE"
5021
+ };
5022
+
5030
5023
  exports.ApiHaloRunV1alpha1ContentApi = ApiHaloRunV1alpha1ContentApi;
5031
5024
  exports.ApiHaloRunV1alpha1ContentApiAxiosParamCreator = ApiHaloRunV1alpha1ContentApiAxiosParamCreator;
5032
5025
  exports.ApiHaloRunV1alpha1ContentApiFactory = ApiHaloRunV1alpha1ContentApiFactory;
@@ -5065,6 +5058,10 @@ exports.ContentHaloRunV1alpha1ReplyApi = ContentHaloRunV1alpha1ReplyApi;
5065
5058
  exports.ContentHaloRunV1alpha1ReplyApiAxiosParamCreator = ContentHaloRunV1alpha1ReplyApiAxiosParamCreator;
5066
5059
  exports.ContentHaloRunV1alpha1ReplyApiFactory = ContentHaloRunV1alpha1ReplyApiFactory;
5067
5060
  exports.ContentHaloRunV1alpha1ReplyApiFp = ContentHaloRunV1alpha1ReplyApiFp;
5061
+ exports.ContentHaloRunV1alpha1SinglePageApi = ContentHaloRunV1alpha1SinglePageApi;
5062
+ exports.ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator = ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator;
5063
+ exports.ContentHaloRunV1alpha1SinglePageApiFactory = ContentHaloRunV1alpha1SinglePageApiFactory;
5064
+ exports.ContentHaloRunV1alpha1SinglePageApiFp = ContentHaloRunV1alpha1SinglePageApiFp;
5068
5065
  exports.ContentHaloRunV1alpha1SnapshotApi = ContentHaloRunV1alpha1SnapshotApi;
5069
5066
  exports.ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator = ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator;
5070
5067
  exports.ContentHaloRunV1alpha1SnapshotApiFactory = ContentHaloRunV1alpha1SnapshotApiFactory;
@@ -5073,14 +5070,6 @@ exports.ContentHaloRunV1alpha1TagApi = ContentHaloRunV1alpha1TagApi;
5073
5070
  exports.ContentHaloRunV1alpha1TagApiAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator;
5074
5071
  exports.ContentHaloRunV1alpha1TagApiFactory = ContentHaloRunV1alpha1TagApiFactory;
5075
5072
  exports.ContentHaloRunV1alpha1TagApiFp = ContentHaloRunV1alpha1TagApiFp;
5076
- exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
5077
- exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
5078
- exports.CoreHaloRunV1alpha1LinkApiFactory = CoreHaloRunV1alpha1LinkApiFactory;
5079
- exports.CoreHaloRunV1alpha1LinkApiFp = CoreHaloRunV1alpha1LinkApiFp;
5080
- exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
5081
- exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
5082
- exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
5083
- exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
5084
5073
  exports.PluginHaloRunV1alpha1PluginApi = PluginHaloRunV1alpha1PluginApi;
5085
5074
  exports.PluginHaloRunV1alpha1PluginApiAxiosParamCreator = PluginHaloRunV1alpha1PluginApiAxiosParamCreator;
5086
5075
  exports.PluginHaloRunV1alpha1PluginApiFactory = PluginHaloRunV1alpha1PluginApiFactory;
@@ -5091,6 +5080,7 @@ exports.PluginHaloRunV1alpha1ReverseProxyApiFactory = PluginHaloRunV1alpha1Rever
5091
5080
  exports.PluginHaloRunV1alpha1ReverseProxyApiFp = PluginHaloRunV1alpha1ReverseProxyApiFp;
5092
5081
  exports.PluginStatusPhaseEnum = PluginStatusPhaseEnum;
5093
5082
  exports.PostSpecVisibleEnum = PostSpecVisibleEnum;
5083
+ exports.SinglePageSpecVisibleEnum = SinglePageSpecVisibleEnum;
5094
5084
  exports.StorageHaloRunV1alpha1AttachmentApi = StorageHaloRunV1alpha1AttachmentApi;
5095
5085
  exports.StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator = StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator;
5096
5086
  exports.StorageHaloRunV1alpha1AttachmentApiFactory = StorageHaloRunV1alpha1AttachmentApiFactory;