@halo-dev/api-client 0.0.33 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +369 -23
- package/dist/index.d.ts +804 -56
- package/dist/index.mjs +358 -24
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -403,6 +403,47 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
403
403
|
url: toPathString(localVarUrlObj),
|
|
404
404
|
options: localVarRequestOptions
|
|
405
405
|
};
|
|
406
|
+
},
|
|
407
|
+
listPlugins: async (sort, keyword, enabled, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
408
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
409
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
410
|
+
let baseOptions;
|
|
411
|
+
if (configuration) {
|
|
412
|
+
baseOptions = configuration.baseOptions;
|
|
413
|
+
}
|
|
414
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
415
|
+
const localVarHeaderParameter = {};
|
|
416
|
+
const localVarQueryParameter = {};
|
|
417
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
418
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
419
|
+
if (sort) {
|
|
420
|
+
localVarQueryParameter["sort"] = Array.from(sort);
|
|
421
|
+
}
|
|
422
|
+
if (keyword !== void 0) {
|
|
423
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
424
|
+
}
|
|
425
|
+
if (enabled !== void 0) {
|
|
426
|
+
localVarQueryParameter["enabled"] = enabled;
|
|
427
|
+
}
|
|
428
|
+
if (size !== void 0) {
|
|
429
|
+
localVarQueryParameter["size"] = size;
|
|
430
|
+
}
|
|
431
|
+
if (labelSelector) {
|
|
432
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
433
|
+
}
|
|
434
|
+
if (fieldSelector) {
|
|
435
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
436
|
+
}
|
|
437
|
+
if (page !== void 0) {
|
|
438
|
+
localVarQueryParameter["page"] = page;
|
|
439
|
+
}
|
|
440
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
441
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
442
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
443
|
+
return {
|
|
444
|
+
url: toPathString(localVarUrlObj),
|
|
445
|
+
options: localVarRequestOptions
|
|
446
|
+
};
|
|
406
447
|
}
|
|
407
448
|
};
|
|
408
449
|
};
|
|
@@ -412,6 +453,10 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
412
453
|
async installPlugin(file, options) {
|
|
413
454
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
414
455
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
456
|
+
},
|
|
457
|
+
async listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options) {
|
|
458
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options);
|
|
459
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
415
460
|
}
|
|
416
461
|
};
|
|
417
462
|
};
|
|
@@ -420,6 +465,9 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
420
465
|
return {
|
|
421
466
|
installPlugin(file, options) {
|
|
422
467
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
468
|
+
},
|
|
469
|
+
listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options) {
|
|
470
|
+
return localVarFp.listPlugins(sort, keyword, enabled, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
423
471
|
}
|
|
424
472
|
};
|
|
425
473
|
};
|
|
@@ -427,6 +475,9 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
427
475
|
installPlugin(requestParameters, options) {
|
|
428
476
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
429
477
|
}
|
|
478
|
+
listPlugins(requestParameters = {}, options) {
|
|
479
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
480
|
+
}
|
|
430
481
|
}
|
|
431
482
|
|
|
432
483
|
const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
@@ -454,7 +505,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
454
505
|
options: localVarRequestOptions
|
|
455
506
|
};
|
|
456
507
|
},
|
|
457
|
-
listPosts: async (sort,
|
|
508
|
+
listPosts: async (sort, sortOrder, publishPhase, category, contributor, keyword, visible, tag, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
458
509
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
459
510
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
460
511
|
let baseOptions;
|
|
@@ -469,9 +520,6 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
469
520
|
if (sort !== void 0) {
|
|
470
521
|
localVarQueryParameter["sort"] = sort;
|
|
471
522
|
}
|
|
472
|
-
if (contributor) {
|
|
473
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
474
|
-
}
|
|
475
523
|
if (sortOrder !== void 0) {
|
|
476
524
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
477
525
|
}
|
|
@@ -481,8 +529,8 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
481
529
|
if (category) {
|
|
482
530
|
localVarQueryParameter["category"] = Array.from(category);
|
|
483
531
|
}
|
|
484
|
-
if (
|
|
485
|
-
localVarQueryParameter["
|
|
532
|
+
if (contributor) {
|
|
533
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
486
534
|
}
|
|
487
535
|
if (keyword !== void 0) {
|
|
488
536
|
localVarQueryParameter["keyword"] = keyword;
|
|
@@ -490,6 +538,9 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
490
538
|
if (visible !== void 0) {
|
|
491
539
|
localVarQueryParameter["visible"] = visible;
|
|
492
540
|
}
|
|
541
|
+
if (tag) {
|
|
542
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
543
|
+
}
|
|
493
544
|
if (size !== void 0) {
|
|
494
545
|
localVarQueryParameter["size"] = size;
|
|
495
546
|
}
|
|
@@ -564,8 +615,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
564
615
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
565
616
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
566
617
|
},
|
|
567
|
-
async listPosts(sort,
|
|
568
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
618
|
+
async listPosts(sort, sortOrder, publishPhase, category, contributor, keyword, visible, tag, size, labelSelector, fieldSelector, page, options) {
|
|
619
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, sortOrder, publishPhase, category, contributor, keyword, visible, tag, size, labelSelector, fieldSelector, page, options);
|
|
569
620
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
570
621
|
},
|
|
571
622
|
async publishPost(name, options) {
|
|
@@ -584,8 +635,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
584
635
|
draftPost(postRequest, options) {
|
|
585
636
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
586
637
|
},
|
|
587
|
-
listPosts(sort,
|
|
588
|
-
return localVarFp.listPosts(sort,
|
|
638
|
+
listPosts(sort, sortOrder, publishPhase, category, contributor, keyword, visible, tag, size, labelSelector, fieldSelector, page, options) {
|
|
639
|
+
return localVarFp.listPosts(sort, sortOrder, publishPhase, category, contributor, keyword, visible, tag, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
589
640
|
},
|
|
590
641
|
publishPost(name, options) {
|
|
591
642
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -600,7 +651,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
600
651
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
601
652
|
}
|
|
602
653
|
listPosts(requestParameters = {}, options) {
|
|
603
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
654
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.contributor, requestParameters.keyword, requestParameters.visible, requestParameters.tag, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
604
655
|
}
|
|
605
656
|
publishPost(requestParameters, options) {
|
|
606
657
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -697,7 +748,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
697
748
|
options: localVarRequestOptions
|
|
698
749
|
};
|
|
699
750
|
},
|
|
700
|
-
listSinglePages: async (sort,
|
|
751
|
+
listSinglePages: async (sort, sortOrder, publishPhase, contributor, keyword, visible, size, labelSelector, fieldSelector, page, options = {}) => {
|
|
701
752
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
702
753
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
703
754
|
let baseOptions;
|
|
@@ -712,15 +763,15 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
712
763
|
if (sort !== void 0) {
|
|
713
764
|
localVarQueryParameter["sort"] = sort;
|
|
714
765
|
}
|
|
715
|
-
if (contributor) {
|
|
716
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
717
|
-
}
|
|
718
766
|
if (sortOrder !== void 0) {
|
|
719
767
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
720
768
|
}
|
|
721
769
|
if (publishPhase !== void 0) {
|
|
722
770
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
723
771
|
}
|
|
772
|
+
if (contributor) {
|
|
773
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
774
|
+
}
|
|
724
775
|
if (keyword !== void 0) {
|
|
725
776
|
localVarQueryParameter["keyword"] = keyword;
|
|
726
777
|
}
|
|
@@ -801,8 +852,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
801
852
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
802
853
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
803
854
|
},
|
|
804
|
-
async listSinglePages(sort,
|
|
805
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
855
|
+
async listSinglePages(sort, sortOrder, publishPhase, contributor, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
856
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, sortOrder, publishPhase, contributor, keyword, visible, size, labelSelector, fieldSelector, page, options);
|
|
806
857
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
807
858
|
},
|
|
808
859
|
async publishSinglePage(name, options) {
|
|
@@ -821,8 +872,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
821
872
|
draftSinglePage(singlePageRequest, options) {
|
|
822
873
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
823
874
|
},
|
|
824
|
-
listSinglePages(sort,
|
|
825
|
-
return localVarFp.listSinglePages(sort,
|
|
875
|
+
listSinglePages(sort, sortOrder, publishPhase, contributor, keyword, visible, size, labelSelector, fieldSelector, page, options) {
|
|
876
|
+
return localVarFp.listSinglePages(sort, sortOrder, publishPhase, contributor, keyword, visible, size, labelSelector, fieldSelector, page, options).then((request) => request(axios, basePath));
|
|
826
877
|
},
|
|
827
878
|
publishSinglePage(name, options) {
|
|
828
879
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -837,7 +888,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
837
888
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
838
889
|
}
|
|
839
890
|
listSinglePages(requestParameters = {}, options) {
|
|
840
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
891
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.contributor, requestParameters.keyword, requestParameters.visible, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, requestParameters.page, options).then((request) => request(this.axios, this.basePath));
|
|
841
892
|
}
|
|
842
893
|
publishSinglePage(requestParameters, options) {
|
|
843
894
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -847,6 +898,53 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
847
898
|
}
|
|
848
899
|
}
|
|
849
900
|
|
|
901
|
+
const ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator = function(configuration) {
|
|
902
|
+
return {
|
|
903
|
+
getStats: async (options = {}) => {
|
|
904
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/stats`;
|
|
905
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
906
|
+
let baseOptions;
|
|
907
|
+
if (configuration) {
|
|
908
|
+
baseOptions = configuration.baseOptions;
|
|
909
|
+
}
|
|
910
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
911
|
+
const localVarHeaderParameter = {};
|
|
912
|
+
const localVarQueryParameter = {};
|
|
913
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
914
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
915
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
916
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
917
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
918
|
+
return {
|
|
919
|
+
url: toPathString(localVarUrlObj),
|
|
920
|
+
options: localVarRequestOptions
|
|
921
|
+
};
|
|
922
|
+
}
|
|
923
|
+
};
|
|
924
|
+
};
|
|
925
|
+
const ApiConsoleHaloRunV1alpha1StatsApiFp = function(configuration) {
|
|
926
|
+
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator(configuration);
|
|
927
|
+
return {
|
|
928
|
+
async getStats(options) {
|
|
929
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getStats(options);
|
|
930
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
931
|
+
}
|
|
932
|
+
};
|
|
933
|
+
};
|
|
934
|
+
const ApiConsoleHaloRunV1alpha1StatsApiFactory = function(configuration, basePath, axios) {
|
|
935
|
+
const localVarFp = ApiConsoleHaloRunV1alpha1StatsApiFp(configuration);
|
|
936
|
+
return {
|
|
937
|
+
getStats(options) {
|
|
938
|
+
return localVarFp.getStats(options).then((request) => request(axios, basePath));
|
|
939
|
+
}
|
|
940
|
+
};
|
|
941
|
+
};
|
|
942
|
+
class ApiConsoleHaloRunV1alpha1StatsApi extends BaseAPI {
|
|
943
|
+
getStats(options) {
|
|
944
|
+
return ApiConsoleHaloRunV1alpha1StatsApiFp(this.configuration).getStats(options).then((request) => request(this.axios, this.basePath));
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
|
|
850
948
|
const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
|
|
851
949
|
return {
|
|
852
950
|
installTheme: async (file, options = {}) => {
|
|
@@ -1196,12 +1294,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1196
1294
|
if (version !== void 0) {
|
|
1197
1295
|
localVarQueryParameter["version"] = version;
|
|
1198
1296
|
}
|
|
1199
|
-
if (kind !== void 0) {
|
|
1200
|
-
localVarQueryParameter["kind"] = kind;
|
|
1201
|
-
}
|
|
1202
1297
|
if (group !== void 0) {
|
|
1203
1298
|
localVarQueryParameter["group"] = group;
|
|
1204
1299
|
}
|
|
1300
|
+
if (kind !== void 0) {
|
|
1301
|
+
localVarQueryParameter["kind"] = kind;
|
|
1302
|
+
}
|
|
1205
1303
|
if (size !== void 0) {
|
|
1206
1304
|
localVarQueryParameter["size"] = size;
|
|
1207
1305
|
}
|
|
@@ -1281,6 +1379,56 @@ class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
1281
1379
|
}
|
|
1282
1380
|
}
|
|
1283
1381
|
|
|
1382
|
+
const ApiHaloRunV1alpha1TrackerApiAxiosParamCreator = function(configuration) {
|
|
1383
|
+
return {
|
|
1384
|
+
count: async (counterRequest, options = {}) => {
|
|
1385
|
+
assertParamExists("count", "counterRequest", counterRequest);
|
|
1386
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/trackers/counter`;
|
|
1387
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1388
|
+
let baseOptions;
|
|
1389
|
+
if (configuration) {
|
|
1390
|
+
baseOptions = configuration.baseOptions;
|
|
1391
|
+
}
|
|
1392
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
1393
|
+
const localVarHeaderParameter = {};
|
|
1394
|
+
const localVarQueryParameter = {};
|
|
1395
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1396
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1397
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1398
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1399
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1400
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1401
|
+
localVarRequestOptions.data = serializeDataIfNeeded(counterRequest, localVarRequestOptions, configuration);
|
|
1402
|
+
return {
|
|
1403
|
+
url: toPathString(localVarUrlObj),
|
|
1404
|
+
options: localVarRequestOptions
|
|
1405
|
+
};
|
|
1406
|
+
}
|
|
1407
|
+
};
|
|
1408
|
+
};
|
|
1409
|
+
const ApiHaloRunV1alpha1TrackerApiFp = function(configuration) {
|
|
1410
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1TrackerApiAxiosParamCreator(configuration);
|
|
1411
|
+
return {
|
|
1412
|
+
async count(counterRequest, options) {
|
|
1413
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.count(counterRequest, options);
|
|
1414
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1415
|
+
}
|
|
1416
|
+
};
|
|
1417
|
+
};
|
|
1418
|
+
const ApiHaloRunV1alpha1TrackerApiFactory = function(configuration, basePath, axios) {
|
|
1419
|
+
const localVarFp = ApiHaloRunV1alpha1TrackerApiFp(configuration);
|
|
1420
|
+
return {
|
|
1421
|
+
count(counterRequest, options) {
|
|
1422
|
+
return localVarFp.count(counterRequest, options).then((request) => request(axios, basePath));
|
|
1423
|
+
}
|
|
1424
|
+
};
|
|
1425
|
+
};
|
|
1426
|
+
class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
1427
|
+
count(requestParameters, options) {
|
|
1428
|
+
return ApiHaloRunV1alpha1TrackerApiFp(this.configuration).count(requestParameters.counterRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1429
|
+
}
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1284
1432
|
const ContentHaloRunV1alpha1CategoryApiAxiosParamCreator = function(configuration) {
|
|
1285
1433
|
return {
|
|
1286
1434
|
createcontentHaloRunV1alpha1Category: async (category, options = {}) => {
|
|
@@ -2955,6 +3103,192 @@ class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
|
2955
3103
|
}
|
|
2956
3104
|
}
|
|
2957
3105
|
|
|
3106
|
+
const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator = function(configuration) {
|
|
3107
|
+
return {
|
|
3108
|
+
createmetricsHaloRunV1alpha1Counter: async (counter, options = {}) => {
|
|
3109
|
+
const localVarPath = `/apis/metrics.halo.run/v1alpha1/counters`;
|
|
3110
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3111
|
+
let baseOptions;
|
|
3112
|
+
if (configuration) {
|
|
3113
|
+
baseOptions = configuration.baseOptions;
|
|
3114
|
+
}
|
|
3115
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3116
|
+
const localVarHeaderParameter = {};
|
|
3117
|
+
const localVarQueryParameter = {};
|
|
3118
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3119
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3120
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3121
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3122
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3123
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3124
|
+
localVarRequestOptions.data = serializeDataIfNeeded(counter, localVarRequestOptions, configuration);
|
|
3125
|
+
return {
|
|
3126
|
+
url: toPathString(localVarUrlObj),
|
|
3127
|
+
options: localVarRequestOptions
|
|
3128
|
+
};
|
|
3129
|
+
},
|
|
3130
|
+
deletemetricsHaloRunV1alpha1Counter: async (name, options = {}) => {
|
|
3131
|
+
assertParamExists("deletemetricsHaloRunV1alpha1Counter", "name", name);
|
|
3132
|
+
const localVarPath = `/apis/metrics.halo.run/v1alpha1/counters/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3133
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3134
|
+
let baseOptions;
|
|
3135
|
+
if (configuration) {
|
|
3136
|
+
baseOptions = configuration.baseOptions;
|
|
3137
|
+
}
|
|
3138
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
3139
|
+
const localVarHeaderParameter = {};
|
|
3140
|
+
const localVarQueryParameter = {};
|
|
3141
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3142
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3143
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3144
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3145
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3146
|
+
return {
|
|
3147
|
+
url: toPathString(localVarUrlObj),
|
|
3148
|
+
options: localVarRequestOptions
|
|
3149
|
+
};
|
|
3150
|
+
},
|
|
3151
|
+
getmetricsHaloRunV1alpha1Counter: async (name, options = {}) => {
|
|
3152
|
+
assertParamExists("getmetricsHaloRunV1alpha1Counter", "name", name);
|
|
3153
|
+
const localVarPath = `/apis/metrics.halo.run/v1alpha1/counters/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3154
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3155
|
+
let baseOptions;
|
|
3156
|
+
if (configuration) {
|
|
3157
|
+
baseOptions = configuration.baseOptions;
|
|
3158
|
+
}
|
|
3159
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3160
|
+
const localVarHeaderParameter = {};
|
|
3161
|
+
const localVarQueryParameter = {};
|
|
3162
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3163
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3164
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3165
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3166
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3167
|
+
return {
|
|
3168
|
+
url: toPathString(localVarUrlObj),
|
|
3169
|
+
options: localVarRequestOptions
|
|
3170
|
+
};
|
|
3171
|
+
},
|
|
3172
|
+
listmetricsHaloRunV1alpha1Counter: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
3173
|
+
const localVarPath = `/apis/metrics.halo.run/v1alpha1/counters`;
|
|
3174
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3175
|
+
let baseOptions;
|
|
3176
|
+
if (configuration) {
|
|
3177
|
+
baseOptions = configuration.baseOptions;
|
|
3178
|
+
}
|
|
3179
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3180
|
+
const localVarHeaderParameter = {};
|
|
3181
|
+
const localVarQueryParameter = {};
|
|
3182
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3183
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3184
|
+
if (page !== void 0) {
|
|
3185
|
+
localVarQueryParameter["page"] = page;
|
|
3186
|
+
}
|
|
3187
|
+
if (size !== void 0) {
|
|
3188
|
+
localVarQueryParameter["size"] = size;
|
|
3189
|
+
}
|
|
3190
|
+
if (labelSelector) {
|
|
3191
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3192
|
+
}
|
|
3193
|
+
if (fieldSelector) {
|
|
3194
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3195
|
+
}
|
|
3196
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3197
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3198
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3199
|
+
return {
|
|
3200
|
+
url: toPathString(localVarUrlObj),
|
|
3201
|
+
options: localVarRequestOptions
|
|
3202
|
+
};
|
|
3203
|
+
},
|
|
3204
|
+
updatemetricsHaloRunV1alpha1Counter: async (name, counter, options = {}) => {
|
|
3205
|
+
assertParamExists("updatemetricsHaloRunV1alpha1Counter", "name", name);
|
|
3206
|
+
const localVarPath = `/apis/metrics.halo.run/v1alpha1/counters/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3207
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3208
|
+
let baseOptions;
|
|
3209
|
+
if (configuration) {
|
|
3210
|
+
baseOptions = configuration.baseOptions;
|
|
3211
|
+
}
|
|
3212
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
3213
|
+
const localVarHeaderParameter = {};
|
|
3214
|
+
const localVarQueryParameter = {};
|
|
3215
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3216
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3217
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3218
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3219
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3220
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3221
|
+
localVarRequestOptions.data = serializeDataIfNeeded(counter, localVarRequestOptions, configuration);
|
|
3222
|
+
return {
|
|
3223
|
+
url: toPathString(localVarUrlObj),
|
|
3224
|
+
options: localVarRequestOptions
|
|
3225
|
+
};
|
|
3226
|
+
}
|
|
3227
|
+
};
|
|
3228
|
+
};
|
|
3229
|
+
const MetricsHaloRunV1alpha1CounterApiFp = function(configuration) {
|
|
3230
|
+
const localVarAxiosParamCreator = MetricsHaloRunV1alpha1CounterApiAxiosParamCreator(configuration);
|
|
3231
|
+
return {
|
|
3232
|
+
async createmetricsHaloRunV1alpha1Counter(counter, options) {
|
|
3233
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createmetricsHaloRunV1alpha1Counter(counter, options);
|
|
3234
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3235
|
+
},
|
|
3236
|
+
async deletemetricsHaloRunV1alpha1Counter(name, options) {
|
|
3237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletemetricsHaloRunV1alpha1Counter(name, options);
|
|
3238
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3239
|
+
},
|
|
3240
|
+
async getmetricsHaloRunV1alpha1Counter(name, options) {
|
|
3241
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getmetricsHaloRunV1alpha1Counter(name, options);
|
|
3242
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3243
|
+
},
|
|
3244
|
+
async listmetricsHaloRunV1alpha1Counter(page, size, labelSelector, fieldSelector, options) {
|
|
3245
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listmetricsHaloRunV1alpha1Counter(page, size, labelSelector, fieldSelector, options);
|
|
3246
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3247
|
+
},
|
|
3248
|
+
async updatemetricsHaloRunV1alpha1Counter(name, counter, options) {
|
|
3249
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatemetricsHaloRunV1alpha1Counter(name, counter, options);
|
|
3250
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3251
|
+
}
|
|
3252
|
+
};
|
|
3253
|
+
};
|
|
3254
|
+
const MetricsHaloRunV1alpha1CounterApiFactory = function(configuration, basePath, axios) {
|
|
3255
|
+
const localVarFp = MetricsHaloRunV1alpha1CounterApiFp(configuration);
|
|
3256
|
+
return {
|
|
3257
|
+
createmetricsHaloRunV1alpha1Counter(counter, options) {
|
|
3258
|
+
return localVarFp.createmetricsHaloRunV1alpha1Counter(counter, options).then((request) => request(axios, basePath));
|
|
3259
|
+
},
|
|
3260
|
+
deletemetricsHaloRunV1alpha1Counter(name, options) {
|
|
3261
|
+
return localVarFp.deletemetricsHaloRunV1alpha1Counter(name, options).then((request) => request(axios, basePath));
|
|
3262
|
+
},
|
|
3263
|
+
getmetricsHaloRunV1alpha1Counter(name, options) {
|
|
3264
|
+
return localVarFp.getmetricsHaloRunV1alpha1Counter(name, options).then((request) => request(axios, basePath));
|
|
3265
|
+
},
|
|
3266
|
+
listmetricsHaloRunV1alpha1Counter(page, size, labelSelector, fieldSelector, options) {
|
|
3267
|
+
return localVarFp.listmetricsHaloRunV1alpha1Counter(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3268
|
+
},
|
|
3269
|
+
updatemetricsHaloRunV1alpha1Counter(name, counter, options) {
|
|
3270
|
+
return localVarFp.updatemetricsHaloRunV1alpha1Counter(name, counter, options).then((request) => request(axios, basePath));
|
|
3271
|
+
}
|
|
3272
|
+
};
|
|
3273
|
+
};
|
|
3274
|
+
class MetricsHaloRunV1alpha1CounterApi extends BaseAPI {
|
|
3275
|
+
createmetricsHaloRunV1alpha1Counter(requestParameters = {}, options) {
|
|
3276
|
+
return MetricsHaloRunV1alpha1CounterApiFp(this.configuration).createmetricsHaloRunV1alpha1Counter(requestParameters.counter, options).then((request) => request(this.axios, this.basePath));
|
|
3277
|
+
}
|
|
3278
|
+
deletemetricsHaloRunV1alpha1Counter(requestParameters, options) {
|
|
3279
|
+
return MetricsHaloRunV1alpha1CounterApiFp(this.configuration).deletemetricsHaloRunV1alpha1Counter(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3280
|
+
}
|
|
3281
|
+
getmetricsHaloRunV1alpha1Counter(requestParameters, options) {
|
|
3282
|
+
return MetricsHaloRunV1alpha1CounterApiFp(this.configuration).getmetricsHaloRunV1alpha1Counter(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3283
|
+
}
|
|
3284
|
+
listmetricsHaloRunV1alpha1Counter(requestParameters = {}, options) {
|
|
3285
|
+
return MetricsHaloRunV1alpha1CounterApiFp(this.configuration).listmetricsHaloRunV1alpha1Counter(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3286
|
+
}
|
|
3287
|
+
updatemetricsHaloRunV1alpha1Counter(requestParameters, options) {
|
|
3288
|
+
return MetricsHaloRunV1alpha1CounterApiFp(this.configuration).updatemetricsHaloRunV1alpha1Counter(requestParameters.name, requestParameters.counter, options).then((request) => request(this.axios, this.basePath));
|
|
3289
|
+
}
|
|
3290
|
+
}
|
|
3291
|
+
|
|
2958
3292
|
const PluginHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
2959
3293
|
return {
|
|
2960
3294
|
createpluginHaloRunV1alpha1Plugin: async (plugin, options = {}) => {
|
|
@@ -5886,4 +6220,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
5886
6220
|
Private: "PRIVATE"
|
|
5887
6221
|
};
|
|
5888
6222
|
|
|
5889
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|
|
6223
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|