@halo-dev/api-client 0.0.41 → 0.0.43
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 +35 -69
- package/dist/index.d.ts +103 -161
- package/dist/index.mjs +35 -69
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -395,30 +395,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator = function(configurat
|
|
|
395
395
|
options: localVarRequestOptions
|
|
396
396
|
};
|
|
397
397
|
},
|
|
398
|
-
publishSnapshotContent: async (snapshotName, subjectRef, options = {}) => {
|
|
399
|
-
assertParamExists("publishSnapshotContent", "snapshotName", snapshotName);
|
|
400
|
-
assertParamExists("publishSnapshotContent", "subjectRef", subjectRef);
|
|
401
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/contents/{snapshotName}/publish`.replace(`{${"snapshotName"}}`, encodeURIComponent(String(snapshotName)));
|
|
402
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
403
|
-
let baseOptions;
|
|
404
|
-
if (configuration) {
|
|
405
|
-
baseOptions = configuration.baseOptions;
|
|
406
|
-
}
|
|
407
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
408
|
-
const localVarHeaderParameter = {};
|
|
409
|
-
const localVarQueryParameter = {};
|
|
410
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
411
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
412
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
413
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
414
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
415
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
416
|
-
localVarRequestOptions.data = serializeDataIfNeeded(subjectRef, localVarRequestOptions, configuration);
|
|
417
|
-
return {
|
|
418
|
-
url: toPathString(localVarUrlObj),
|
|
419
|
-
options: localVarRequestOptions
|
|
420
|
-
};
|
|
421
|
-
},
|
|
422
398
|
updateSnapshotContent: async (snapshotName, contentRequest, options = {}) => {
|
|
423
399
|
assertParamExists("updateSnapshotContent", "snapshotName", snapshotName);
|
|
424
400
|
assertParamExists("updateSnapshotContent", "contentRequest", contentRequest);
|
|
@@ -456,10 +432,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiFp = function(configuration) {
|
|
|
456
432
|
const localVarAxiosArgs = await localVarAxiosParamCreator.obtainSnapshotContent(snapshotName, options);
|
|
457
433
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
458
434
|
},
|
|
459
|
-
async publishSnapshotContent(snapshotName, subjectRef, options) {
|
|
460
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.publishSnapshotContent(snapshotName, subjectRef, options);
|
|
461
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
462
|
-
},
|
|
463
435
|
async updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
464
436
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSnapshotContent(snapshotName, contentRequest, options);
|
|
465
437
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
@@ -475,9 +447,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiFactory = function(configuration, baseP
|
|
|
475
447
|
obtainSnapshotContent(snapshotName, options) {
|
|
476
448
|
return localVarFp.obtainSnapshotContent(snapshotName, options).then((request) => request(axios, basePath));
|
|
477
449
|
},
|
|
478
|
-
publishSnapshotContent(snapshotName, subjectRef, options) {
|
|
479
|
-
return localVarFp.publishSnapshotContent(snapshotName, subjectRef, options).then((request) => request(axios, basePath));
|
|
480
|
-
},
|
|
481
450
|
updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
482
451
|
return localVarFp.updateSnapshotContent(snapshotName, contentRequest, options).then((request) => request(axios, basePath));
|
|
483
452
|
}
|
|
@@ -490,9 +459,6 @@ class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
490
459
|
obtainSnapshotContent(requestParameters, options) {
|
|
491
460
|
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(requestParameters.snapshotName, options).then((request) => request(this.axios, this.basePath));
|
|
492
461
|
}
|
|
493
|
-
publishSnapshotContent(requestParameters, options) {
|
|
494
|
-
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(requestParameters.snapshotName, requestParameters.subjectRef, options).then((request) => request(this.axios, this.basePath));
|
|
495
|
-
}
|
|
496
462
|
updateSnapshotContent(requestParameters, options) {
|
|
497
463
|
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(requestParameters.snapshotName, requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
498
464
|
}
|
|
@@ -527,7 +493,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
527
493
|
options: localVarRequestOptions
|
|
528
494
|
};
|
|
529
495
|
},
|
|
530
|
-
listPlugins: async (sort,
|
|
496
|
+
listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
531
497
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
532
498
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
533
499
|
let baseOptions;
|
|
@@ -542,12 +508,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
542
508
|
if (sort) {
|
|
543
509
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
544
510
|
}
|
|
545
|
-
if (keyword !== void 0) {
|
|
546
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
547
|
-
}
|
|
548
511
|
if (enabled !== void 0) {
|
|
549
512
|
localVarQueryParameter["enabled"] = enabled;
|
|
550
513
|
}
|
|
514
|
+
if (keyword !== void 0) {
|
|
515
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
516
|
+
}
|
|
551
517
|
if (size !== void 0) {
|
|
552
518
|
localVarQueryParameter["size"] = size;
|
|
553
519
|
}
|
|
@@ -605,8 +571,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
605
571
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
606
572
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
607
573
|
},
|
|
608
|
-
async listPlugins(sort,
|
|
609
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
574
|
+
async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
575
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
|
|
610
576
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
611
577
|
},
|
|
612
578
|
async upgradePlugin(name, file, options) {
|
|
@@ -621,8 +587,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
621
587
|
installPlugin(file, options) {
|
|
622
588
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
623
589
|
},
|
|
624
|
-
listPlugins(sort,
|
|
625
|
-
return localVarFp.listPlugins(sort,
|
|
590
|
+
listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
591
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
626
592
|
},
|
|
627
593
|
upgradePlugin(name, file, options) {
|
|
628
594
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
@@ -634,7 +600,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
634
600
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
635
601
|
}
|
|
636
602
|
listPlugins(requestParameters = {}, options) {
|
|
637
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
603
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
638
604
|
}
|
|
639
605
|
upgradePlugin(requestParameters, options) {
|
|
640
606
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -666,7 +632,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
666
632
|
options: localVarRequestOptions
|
|
667
633
|
};
|
|
668
634
|
},
|
|
669
|
-
listPosts: async (sort, keyword, visible,
|
|
635
|
+
listPosts: async (sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
670
636
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
671
637
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
672
638
|
let baseOptions;
|
|
@@ -681,17 +647,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
681
647
|
if (sort !== void 0) {
|
|
682
648
|
localVarQueryParameter["sort"] = sort;
|
|
683
649
|
}
|
|
650
|
+
if (tag) {
|
|
651
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
652
|
+
}
|
|
684
653
|
if (keyword !== void 0) {
|
|
685
654
|
localVarQueryParameter["keyword"] = keyword;
|
|
686
655
|
}
|
|
687
656
|
if (visible !== void 0) {
|
|
688
657
|
localVarQueryParameter["visible"] = visible;
|
|
689
658
|
}
|
|
690
|
-
if (
|
|
691
|
-
localVarQueryParameter["
|
|
692
|
-
}
|
|
693
|
-
if (sortOrder !== void 0) {
|
|
694
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
659
|
+
if (contributor) {
|
|
660
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
695
661
|
}
|
|
696
662
|
if (publishPhase !== void 0) {
|
|
697
663
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
@@ -699,8 +665,8 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
699
665
|
if (category) {
|
|
700
666
|
localVarQueryParameter["category"] = Array.from(category);
|
|
701
667
|
}
|
|
702
|
-
if (
|
|
703
|
-
localVarQueryParameter["
|
|
668
|
+
if (sortOrder !== void 0) {
|
|
669
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
704
670
|
}
|
|
705
671
|
if (size !== void 0) {
|
|
706
672
|
localVarQueryParameter["size"] = size;
|
|
@@ -776,8 +742,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
776
742
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
777
743
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
778
744
|
},
|
|
779
|
-
async listPosts(sort, keyword, visible,
|
|
780
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible,
|
|
745
|
+
async listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
746
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options);
|
|
781
747
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
782
748
|
},
|
|
783
749
|
async publishPost(name, options) {
|
|
@@ -796,8 +762,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
796
762
|
draftPost(postRequest, options) {
|
|
797
763
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
798
764
|
},
|
|
799
|
-
listPosts(sort, keyword, visible,
|
|
800
|
-
return localVarFp.listPosts(sort, keyword, visible,
|
|
765
|
+
listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
766
|
+
return localVarFp.listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
801
767
|
},
|
|
802
768
|
publishPost(name, options) {
|
|
803
769
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -812,7 +778,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
812
778
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
813
779
|
}
|
|
814
780
|
listPosts(requestParameters = {}, options) {
|
|
815
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
781
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.publishPhase, requestParameters.category, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
816
782
|
}
|
|
817
783
|
publishPost(requestParameters, options) {
|
|
818
784
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -909,7 +875,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
909
875
|
options: localVarRequestOptions
|
|
910
876
|
};
|
|
911
877
|
},
|
|
912
|
-
listSinglePages: async (sort, keyword, visible,
|
|
878
|
+
listSinglePages: async (sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
913
879
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
914
880
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
915
881
|
let baseOptions;
|
|
@@ -930,14 +896,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
930
896
|
if (visible !== void 0) {
|
|
931
897
|
localVarQueryParameter["visible"] = visible;
|
|
932
898
|
}
|
|
933
|
-
if (
|
|
934
|
-
localVarQueryParameter["
|
|
899
|
+
if (contributor) {
|
|
900
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
935
901
|
}
|
|
936
902
|
if (publishPhase !== void 0) {
|
|
937
903
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
938
904
|
}
|
|
939
|
-
if (
|
|
940
|
-
localVarQueryParameter["
|
|
905
|
+
if (sortOrder !== void 0) {
|
|
906
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
941
907
|
}
|
|
942
908
|
if (size !== void 0) {
|
|
943
909
|
localVarQueryParameter["size"] = size;
|
|
@@ -1013,8 +979,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1013
979
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1014
980
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1015
981
|
},
|
|
1016
|
-
async listSinglePages(sort, keyword, visible,
|
|
1017
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible,
|
|
982
|
+
async listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
983
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options);
|
|
1018
984
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1019
985
|
},
|
|
1020
986
|
async publishSinglePage(name, options) {
|
|
@@ -1033,8 +999,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1033
999
|
draftSinglePage(singlePageRequest, options) {
|
|
1034
1000
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1035
1001
|
},
|
|
1036
|
-
listSinglePages(sort, keyword, visible,
|
|
1037
|
-
return localVarFp.listSinglePages(sort, keyword, visible,
|
|
1002
|
+
listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
1003
|
+
return localVarFp.listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1038
1004
|
},
|
|
1039
1005
|
publishSinglePage(name, options) {
|
|
1040
1006
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1049,7 +1015,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1049
1015
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1050
1016
|
}
|
|
1051
1017
|
listSinglePages(requestParameters = {}, options) {
|
|
1052
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.
|
|
1018
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.publishPhase, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1053
1019
|
}
|
|
1054
1020
|
publishSinglePage(requestParameters, options) {
|
|
1055
1021
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1539,12 +1505,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1539
1505
|
if (version !== void 0) {
|
|
1540
1506
|
localVarQueryParameter["version"] = version;
|
|
1541
1507
|
}
|
|
1542
|
-
if (group !== void 0) {
|
|
1543
|
-
localVarQueryParameter["group"] = group;
|
|
1544
|
-
}
|
|
1545
1508
|
if (kind !== void 0) {
|
|
1546
1509
|
localVarQueryParameter["kind"] = kind;
|
|
1547
1510
|
}
|
|
1511
|
+
if (group !== void 0) {
|
|
1512
|
+
localVarQueryParameter["group"] = group;
|
|
1513
|
+
}
|
|
1548
1514
|
if (size !== void 0) {
|
|
1549
1515
|
localVarQueryParameter["size"] = size;
|
|
1550
1516
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1467,37 +1467,6 @@ interface Content {
|
|
|
1467
1467
|
rawType?: string;
|
|
1468
1468
|
}
|
|
1469
1469
|
|
|
1470
|
-
/**
|
|
1471
|
-
* Halo Next API
|
|
1472
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1473
|
-
*
|
|
1474
|
-
* The version of the OpenAPI document: 2.0.0
|
|
1475
|
-
*
|
|
1476
|
-
*
|
|
1477
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1478
|
-
* https://openapi-generator.tech
|
|
1479
|
-
* Do not edit the class manually.
|
|
1480
|
-
*/
|
|
1481
|
-
/**
|
|
1482
|
-
*
|
|
1483
|
-
* @export
|
|
1484
|
-
* @interface SubjectRef
|
|
1485
|
-
*/
|
|
1486
|
-
interface SubjectRef {
|
|
1487
|
-
/**
|
|
1488
|
-
*
|
|
1489
|
-
* @type {string}
|
|
1490
|
-
* @memberof SubjectRef
|
|
1491
|
-
*/
|
|
1492
|
-
kind: string;
|
|
1493
|
-
/**
|
|
1494
|
-
*
|
|
1495
|
-
* @type {string}
|
|
1496
|
-
* @memberof SubjectRef
|
|
1497
|
-
*/
|
|
1498
|
-
name: string;
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
1470
|
/**
|
|
1502
1471
|
* Halo Next API
|
|
1503
1472
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1518,10 +1487,10 @@ interface SubjectRef {
|
|
|
1518
1487
|
interface ContentRequest {
|
|
1519
1488
|
/**
|
|
1520
1489
|
*
|
|
1521
|
-
* @type {
|
|
1490
|
+
* @type {Ref}
|
|
1522
1491
|
* @memberof ContentRequest
|
|
1523
1492
|
*/
|
|
1524
|
-
subjectRef:
|
|
1493
|
+
subjectRef: Ref;
|
|
1525
1494
|
/**
|
|
1526
1495
|
*
|
|
1527
1496
|
* @type {string}
|
|
@@ -1562,31 +1531,31 @@ interface ContentRequest {
|
|
|
1562
1531
|
/**
|
|
1563
1532
|
*
|
|
1564
1533
|
* @export
|
|
1565
|
-
* @interface
|
|
1534
|
+
* @interface ContentResponse
|
|
1566
1535
|
*/
|
|
1567
|
-
interface
|
|
1536
|
+
interface ContentResponse {
|
|
1568
1537
|
/**
|
|
1569
|
-
*
|
|
1538
|
+
* The headSnapshotName if updated or new name if created.
|
|
1570
1539
|
* @type {string}
|
|
1571
|
-
* @memberof
|
|
1540
|
+
* @memberof ContentResponse
|
|
1572
1541
|
*/
|
|
1573
1542
|
snapshotName: string;
|
|
1574
1543
|
/**
|
|
1575
1544
|
*
|
|
1576
1545
|
* @type {string}
|
|
1577
|
-
* @memberof
|
|
1546
|
+
* @memberof ContentResponse
|
|
1578
1547
|
*/
|
|
1579
1548
|
raw: string;
|
|
1580
1549
|
/**
|
|
1581
1550
|
*
|
|
1582
1551
|
* @type {string}
|
|
1583
|
-
* @memberof
|
|
1552
|
+
* @memberof ContentResponse
|
|
1584
1553
|
*/
|
|
1585
1554
|
content: string;
|
|
1586
1555
|
/**
|
|
1587
1556
|
*
|
|
1588
1557
|
* @type {string}
|
|
1589
|
-
* @memberof
|
|
1558
|
+
* @memberof ContentResponse
|
|
1590
1559
|
*/
|
|
1591
1560
|
rawType: string;
|
|
1592
1561
|
}
|
|
@@ -2474,7 +2443,7 @@ interface PostSpec {
|
|
|
2474
2443
|
* @type {boolean}
|
|
2475
2444
|
* @memberof PostSpec
|
|
2476
2445
|
*/
|
|
2477
|
-
|
|
2446
|
+
publish: boolean;
|
|
2478
2447
|
/**
|
|
2479
2448
|
*
|
|
2480
2449
|
* @type {string}
|
|
@@ -2605,6 +2574,12 @@ interface PostStatus {
|
|
|
2605
2574
|
* @memberof PostStatus
|
|
2606
2575
|
*/
|
|
2607
2576
|
contributors?: Array<string>;
|
|
2577
|
+
/**
|
|
2578
|
+
*
|
|
2579
|
+
* @type {Array<string>}
|
|
2580
|
+
* @memberof PostStatus
|
|
2581
|
+
*/
|
|
2582
|
+
releasedSnapshots?: Array<string>;
|
|
2608
2583
|
}
|
|
2609
2584
|
|
|
2610
2585
|
/**
|
|
@@ -2872,6 +2847,12 @@ interface ListedPost {
|
|
|
2872
2847
|
* @memberof ListedPost
|
|
2873
2848
|
*/
|
|
2874
2849
|
contributors: Array<Contributor>;
|
|
2850
|
+
/**
|
|
2851
|
+
*
|
|
2852
|
+
* @type {Contributor}
|
|
2853
|
+
* @memberof ListedPost
|
|
2854
|
+
*/
|
|
2855
|
+
owner: Contributor;
|
|
2875
2856
|
/**
|
|
2876
2857
|
*
|
|
2877
2858
|
* @type {Stats}
|
|
@@ -3261,7 +3242,7 @@ interface SinglePageSpec {
|
|
|
3261
3242
|
* @type {boolean}
|
|
3262
3243
|
* @memberof SinglePageSpec
|
|
3263
3244
|
*/
|
|
3264
|
-
|
|
3245
|
+
publish: boolean;
|
|
3265
3246
|
/**
|
|
3266
3247
|
*
|
|
3267
3248
|
* @type {string}
|
|
@@ -3380,6 +3361,12 @@ interface SinglePageStatus {
|
|
|
3380
3361
|
* @memberof SinglePageStatus
|
|
3381
3362
|
*/
|
|
3382
3363
|
contributors?: Array<string>;
|
|
3364
|
+
/**
|
|
3365
|
+
*
|
|
3366
|
+
* @type {Array<string>}
|
|
3367
|
+
* @memberof SinglePageStatus
|
|
3368
|
+
*/
|
|
3369
|
+
releasedSnapshots?: Array<string>;
|
|
3383
3370
|
}
|
|
3384
3371
|
|
|
3385
3372
|
/**
|
|
@@ -3462,6 +3449,12 @@ interface ListedSinglePage {
|
|
|
3462
3449
|
* @memberof ListedSinglePage
|
|
3463
3450
|
*/
|
|
3464
3451
|
contributors: Array<Contributor>;
|
|
3452
|
+
/**
|
|
3453
|
+
*
|
|
3454
|
+
* @type {Contributor}
|
|
3455
|
+
* @memberof ListedSinglePage
|
|
3456
|
+
*/
|
|
3457
|
+
owner: Contributor;
|
|
3465
3458
|
/**
|
|
3466
3459
|
*
|
|
3467
3460
|
* @type {Stats}
|
|
@@ -5819,10 +5812,10 @@ interface SinglePageRequest {
|
|
|
5819
5812
|
interface SnapShotSpec {
|
|
5820
5813
|
/**
|
|
5821
5814
|
*
|
|
5822
|
-
* @type {
|
|
5815
|
+
* @type {Ref}
|
|
5823
5816
|
* @memberof SnapShotSpec
|
|
5824
5817
|
*/
|
|
5825
|
-
subjectRef:
|
|
5818
|
+
subjectRef: Ref;
|
|
5826
5819
|
/**
|
|
5827
5820
|
*
|
|
5828
5821
|
* @type {string}
|
|
@@ -7079,14 +7072,6 @@ declare const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator: (configurati
|
|
|
7079
7072
|
* @throws {RequiredError}
|
|
7080
7073
|
*/
|
|
7081
7074
|
obtainSnapshotContent: (snapshotName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7082
|
-
/**
|
|
7083
|
-
* Publish a snapshot content.
|
|
7084
|
-
* @param {string} snapshotName
|
|
7085
|
-
* @param {SubjectRef} subjectRef
|
|
7086
|
-
* @param {*} [options] Override http request option.
|
|
7087
|
-
* @throws {RequiredError}
|
|
7088
|
-
*/
|
|
7089
|
-
publishSnapshotContent: (snapshotName: string, subjectRef: SubjectRef, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7090
7075
|
/**
|
|
7091
7076
|
* Update a snapshot content.
|
|
7092
7077
|
* @param {string} snapshotName
|
|
@@ -7107,22 +7092,14 @@ declare const ApiConsoleHaloRunV1alpha1ContentApiFp: (configuration?: Configurat
|
|
|
7107
7092
|
* @param {*} [options] Override http request option.
|
|
7108
7093
|
* @throws {RequiredError}
|
|
7109
7094
|
*/
|
|
7110
|
-
draftSnapshotContent(contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7095
|
+
draftSnapshotContent(contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
|
|
7111
7096
|
/**
|
|
7112
7097
|
* Obtain a snapshot content.
|
|
7113
7098
|
* @param {string} snapshotName
|
|
7114
7099
|
* @param {*} [options] Override http request option.
|
|
7115
7100
|
* @throws {RequiredError}
|
|
7116
7101
|
*/
|
|
7117
|
-
obtainSnapshotContent(snapshotName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7118
|
-
/**
|
|
7119
|
-
* Publish a snapshot content.
|
|
7120
|
-
* @param {string} snapshotName
|
|
7121
|
-
* @param {SubjectRef} subjectRef
|
|
7122
|
-
* @param {*} [options] Override http request option.
|
|
7123
|
-
* @throws {RequiredError}
|
|
7124
|
-
*/
|
|
7125
|
-
publishSnapshotContent(snapshotName: string, subjectRef: SubjectRef, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
|
|
7102
|
+
obtainSnapshotContent(snapshotName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
|
|
7126
7103
|
/**
|
|
7127
7104
|
* Update a snapshot content.
|
|
7128
7105
|
* @param {string} snapshotName
|
|
@@ -7130,7 +7107,7 @@ declare const ApiConsoleHaloRunV1alpha1ContentApiFp: (configuration?: Configurat
|
|
|
7130
7107
|
* @param {*} [options] Override http request option.
|
|
7131
7108
|
* @throws {RequiredError}
|
|
7132
7109
|
*/
|
|
7133
|
-
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7110
|
+
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentResponse>>;
|
|
7134
7111
|
};
|
|
7135
7112
|
/**
|
|
7136
7113
|
* ApiConsoleHaloRunV1alpha1ContentApi - factory interface
|
|
@@ -7143,22 +7120,14 @@ declare const ApiConsoleHaloRunV1alpha1ContentApiFactory: (configuration?: Confi
|
|
|
7143
7120
|
* @param {*} [options] Override http request option.
|
|
7144
7121
|
* @throws {RequiredError}
|
|
7145
7122
|
*/
|
|
7146
|
-
draftSnapshotContent(contentRequest: ContentRequest, options?: any): AxiosPromise<
|
|
7123
|
+
draftSnapshotContent(contentRequest: ContentRequest, options?: any): AxiosPromise<ContentResponse>;
|
|
7147
7124
|
/**
|
|
7148
7125
|
* Obtain a snapshot content.
|
|
7149
7126
|
* @param {string} snapshotName
|
|
7150
7127
|
* @param {*} [options] Override http request option.
|
|
7151
7128
|
* @throws {RequiredError}
|
|
7152
7129
|
*/
|
|
7153
|
-
obtainSnapshotContent(snapshotName: string, options?: any): AxiosPromise<
|
|
7154
|
-
/**
|
|
7155
|
-
* Publish a snapshot content.
|
|
7156
|
-
* @param {string} snapshotName
|
|
7157
|
-
* @param {SubjectRef} subjectRef
|
|
7158
|
-
* @param {*} [options] Override http request option.
|
|
7159
|
-
* @throws {RequiredError}
|
|
7160
|
-
*/
|
|
7161
|
-
publishSnapshotContent(snapshotName: string, subjectRef: SubjectRef, options?: any): AxiosPromise<ContentWrapper>;
|
|
7130
|
+
obtainSnapshotContent(snapshotName: string, options?: any): AxiosPromise<ContentResponse>;
|
|
7162
7131
|
/**
|
|
7163
7132
|
* Update a snapshot content.
|
|
7164
7133
|
* @param {string} snapshotName
|
|
@@ -7166,7 +7135,7 @@ declare const ApiConsoleHaloRunV1alpha1ContentApiFactory: (configuration?: Confi
|
|
|
7166
7135
|
* @param {*} [options] Override http request option.
|
|
7167
7136
|
* @throws {RequiredError}
|
|
7168
7137
|
*/
|
|
7169
|
-
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: any): AxiosPromise<
|
|
7138
|
+
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: any): AxiosPromise<ContentResponse>;
|
|
7170
7139
|
};
|
|
7171
7140
|
/**
|
|
7172
7141
|
* Request parameters for draftSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
@@ -7194,25 +7163,6 @@ interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest {
|
|
|
7194
7163
|
*/
|
|
7195
7164
|
readonly snapshotName: string;
|
|
7196
7165
|
}
|
|
7197
|
-
/**
|
|
7198
|
-
* Request parameters for publishSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
7199
|
-
* @export
|
|
7200
|
-
* @interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest
|
|
7201
|
-
*/
|
|
7202
|
-
interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest {
|
|
7203
|
-
/**
|
|
7204
|
-
*
|
|
7205
|
-
* @type {string}
|
|
7206
|
-
* @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
|
|
7207
|
-
*/
|
|
7208
|
-
readonly snapshotName: string;
|
|
7209
|
-
/**
|
|
7210
|
-
*
|
|
7211
|
-
* @type {SubjectRef}
|
|
7212
|
-
* @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
|
|
7213
|
-
*/
|
|
7214
|
-
readonly subjectRef: SubjectRef;
|
|
7215
|
-
}
|
|
7216
7166
|
/**
|
|
7217
7167
|
* Request parameters for updateSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
7218
7168
|
* @export
|
|
@@ -7246,7 +7196,7 @@ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
7246
7196
|
* @throws {RequiredError}
|
|
7247
7197
|
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
7248
7198
|
*/
|
|
7249
|
-
draftSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7199
|
+
draftSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
|
|
7250
7200
|
/**
|
|
7251
7201
|
* Obtain a snapshot content.
|
|
7252
7202
|
* @param {ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest} requestParameters Request parameters.
|
|
@@ -7254,15 +7204,7 @@ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
7254
7204
|
* @throws {RequiredError}
|
|
7255
7205
|
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
7256
7206
|
*/
|
|
7257
|
-
obtainSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7258
|
-
/**
|
|
7259
|
-
* Publish a snapshot content.
|
|
7260
|
-
* @param {ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest} requestParameters Request parameters.
|
|
7261
|
-
* @param {*} [options] Override http request option.
|
|
7262
|
-
* @throws {RequiredError}
|
|
7263
|
-
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
7264
|
-
*/
|
|
7265
|
-
publishSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
|
|
7207
|
+
obtainSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
|
|
7266
7208
|
/**
|
|
7267
7209
|
* Update a snapshot content.
|
|
7268
7210
|
* @param {ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest} requestParameters Request parameters.
|
|
@@ -7270,7 +7212,7 @@ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
7270
7212
|
* @throws {RequiredError}
|
|
7271
7213
|
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
7272
7214
|
*/
|
|
7273
|
-
updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7215
|
+
updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
|
|
7274
7216
|
}
|
|
7275
7217
|
|
|
7276
7218
|
/**
|
|
@@ -7288,8 +7230,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7288
7230
|
/**
|
|
7289
7231
|
* List plugins using query criteria and sort params
|
|
7290
7232
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7291
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7292
7233
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7234
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7293
7235
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7294
7236
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7295
7237
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7297,7 +7239,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7297
7239
|
* @param {*} [options] Override http request option.
|
|
7298
7240
|
* @throws {RequiredError}
|
|
7299
7241
|
*/
|
|
7300
|
-
listPlugins: (sort?: Array<string>,
|
|
7242
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7301
7243
|
/**
|
|
7302
7244
|
* Upgrade a plugin by uploading a Jar file
|
|
7303
7245
|
* @param {string} name
|
|
@@ -7322,8 +7264,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7322
7264
|
/**
|
|
7323
7265
|
* List plugins using query criteria and sort params
|
|
7324
7266
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7325
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7326
7267
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7268
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7327
7269
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7328
7270
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7329
7271
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7331,7 +7273,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7331
7273
|
* @param {*} [options] Override http request option.
|
|
7332
7274
|
* @throws {RequiredError}
|
|
7333
7275
|
*/
|
|
7334
|
-
listPlugins(sort?: Array<string>,
|
|
7276
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7335
7277
|
/**
|
|
7336
7278
|
* Upgrade a plugin by uploading a Jar file
|
|
7337
7279
|
* @param {string} name
|
|
@@ -7356,8 +7298,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7356
7298
|
/**
|
|
7357
7299
|
* List plugins using query criteria and sort params
|
|
7358
7300
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7359
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7360
7301
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7302
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7361
7303
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7362
7304
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7363
7305
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7365,7 +7307,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7365
7307
|
* @param {*} [options] Override http request option.
|
|
7366
7308
|
* @throws {RequiredError}
|
|
7367
7309
|
*/
|
|
7368
|
-
listPlugins(sort?: Array<string>,
|
|
7310
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7369
7311
|
/**
|
|
7370
7312
|
* Upgrade a plugin by uploading a Jar file
|
|
7371
7313
|
* @param {string} name
|
|
@@ -7400,18 +7342,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7400
7342
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7401
7343
|
*/
|
|
7402
7344
|
readonly sort?: Array<string>;
|
|
7403
|
-
/**
|
|
7404
|
-
* Keyword of plugin name or description
|
|
7405
|
-
* @type {string}
|
|
7406
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7407
|
-
*/
|
|
7408
|
-
readonly keyword?: string;
|
|
7409
7345
|
/**
|
|
7410
7346
|
* Whether the plugin is enabled
|
|
7411
7347
|
* @type {boolean}
|
|
7412
7348
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7413
7349
|
*/
|
|
7414
7350
|
readonly enabled?: boolean;
|
|
7351
|
+
/**
|
|
7352
|
+
* Keyword of plugin name or description
|
|
7353
|
+
* @type {string}
|
|
7354
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7355
|
+
*/
|
|
7356
|
+
readonly keyword?: string;
|
|
7415
7357
|
/**
|
|
7416
7358
|
* Size of one page. Zero indicates no limit.
|
|
7417
7359
|
* @type {number}
|
|
@@ -7504,13 +7446,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7504
7446
|
/**
|
|
7505
7447
|
* List posts.
|
|
7506
7448
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7449
|
+
* @param {Array<string>} [tag]
|
|
7507
7450
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7508
7451
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7509
|
-
* @param {Array<string>} [tag]
|
|
7510
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7511
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7512
|
-
* @param {Array<string>} [category]
|
|
7513
7452
|
* @param {Array<string>} [contributor]
|
|
7453
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7454
|
+
* @param {Array<string>} [category]
|
|
7455
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7514
7456
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7515
7457
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7516
7458
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7518,7 +7460,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7518
7460
|
* @param {*} [options] Override http request option.
|
|
7519
7461
|
* @throws {RequiredError}
|
|
7520
7462
|
*/
|
|
7521
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7463
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7522
7464
|
/**
|
|
7523
7465
|
* Publish a post.
|
|
7524
7466
|
* @param {string} name
|
|
@@ -7550,13 +7492,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7550
7492
|
/**
|
|
7551
7493
|
* List posts.
|
|
7552
7494
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7495
|
+
* @param {Array<string>} [tag]
|
|
7553
7496
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7554
7497
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7555
|
-
* @param {Array<string>} [tag]
|
|
7556
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7557
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7558
|
-
* @param {Array<string>} [category]
|
|
7559
7498
|
* @param {Array<string>} [contributor]
|
|
7499
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7500
|
+
* @param {Array<string>} [category]
|
|
7501
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7560
7502
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7561
7503
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7562
7504
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7564,7 +7506,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7564
7506
|
* @param {*} [options] Override http request option.
|
|
7565
7507
|
* @throws {RequiredError}
|
|
7566
7508
|
*/
|
|
7567
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7509
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
7568
7510
|
/**
|
|
7569
7511
|
* Publish a post.
|
|
7570
7512
|
* @param {string} name
|
|
@@ -7596,13 +7538,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7596
7538
|
/**
|
|
7597
7539
|
* List posts.
|
|
7598
7540
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7541
|
+
* @param {Array<string>} [tag]
|
|
7599
7542
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7600
7543
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7601
|
-
* @param {Array<string>} [tag]
|
|
7602
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7603
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7604
|
-
* @param {Array<string>} [category]
|
|
7605
7544
|
* @param {Array<string>} [contributor]
|
|
7545
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7546
|
+
* @param {Array<string>} [category]
|
|
7547
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7606
7548
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7607
7549
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7608
7550
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7610,7 +7552,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7610
7552
|
* @param {*} [options] Override http request option.
|
|
7611
7553
|
* @throws {RequiredError}
|
|
7612
7554
|
*/
|
|
7613
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7555
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
7614
7556
|
/**
|
|
7615
7557
|
* Publish a post.
|
|
7616
7558
|
* @param {string} name
|
|
@@ -7652,6 +7594,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7652
7594
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7653
7595
|
*/
|
|
7654
7596
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7597
|
+
/**
|
|
7598
|
+
*
|
|
7599
|
+
* @type {Array<string>}
|
|
7600
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7601
|
+
*/
|
|
7602
|
+
readonly tag?: Array<string>;
|
|
7655
7603
|
/**
|
|
7656
7604
|
* Posts filtered by keyword.
|
|
7657
7605
|
* @type {string}
|
|
@@ -7669,19 +7617,13 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7669
7617
|
* @type {Array<string>}
|
|
7670
7618
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7671
7619
|
*/
|
|
7672
|
-
readonly
|
|
7673
|
-
/**
|
|
7674
|
-
* ascending order If it is true; otherwise, it is in descending order.
|
|
7675
|
-
* @type {boolean}
|
|
7676
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7677
|
-
*/
|
|
7678
|
-
readonly sortOrder?: boolean;
|
|
7620
|
+
readonly contributor?: Array<string>;
|
|
7679
7621
|
/**
|
|
7680
7622
|
*
|
|
7681
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7623
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'}
|
|
7682
7624
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7683
7625
|
*/
|
|
7684
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7626
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED';
|
|
7685
7627
|
/**
|
|
7686
7628
|
*
|
|
7687
7629
|
* @type {Array<string>}
|
|
@@ -7689,11 +7631,11 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7689
7631
|
*/
|
|
7690
7632
|
readonly category?: Array<string>;
|
|
7691
7633
|
/**
|
|
7692
|
-
*
|
|
7693
|
-
* @type {
|
|
7634
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7635
|
+
* @type {boolean}
|
|
7694
7636
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7695
7637
|
*/
|
|
7696
|
-
readonly
|
|
7638
|
+
readonly sortOrder?: boolean;
|
|
7697
7639
|
/**
|
|
7698
7640
|
* Size of one page. Zero indicates no limit.
|
|
7699
7641
|
* @type {number}
|
|
@@ -7914,9 +7856,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7914
7856
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7915
7857
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7916
7858
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7917
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7918
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7919
7859
|
* @param {Array<string>} [contributor]
|
|
7860
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7861
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7920
7862
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7921
7863
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7922
7864
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7924,7 +7866,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7924
7866
|
* @param {*} [options] Override http request option.
|
|
7925
7867
|
* @throws {RequiredError}
|
|
7926
7868
|
*/
|
|
7927
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7869
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7928
7870
|
/**
|
|
7929
7871
|
* Publish a single page.
|
|
7930
7872
|
* @param {string} name
|
|
@@ -7958,9 +7900,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7958
7900
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7959
7901
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7960
7902
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7961
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7962
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7963
7903
|
* @param {Array<string>} [contributor]
|
|
7904
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7905
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7964
7906
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7965
7907
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7966
7908
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7968,7 +7910,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7968
7910
|
* @param {*} [options] Override http request option.
|
|
7969
7911
|
* @throws {RequiredError}
|
|
7970
7912
|
*/
|
|
7971
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7913
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7972
7914
|
/**
|
|
7973
7915
|
* Publish a single page.
|
|
7974
7916
|
* @param {string} name
|
|
@@ -8002,9 +7944,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8002
7944
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8003
7945
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8004
7946
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8005
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8006
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
8007
7947
|
* @param {Array<string>} [contributor]
|
|
7948
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7949
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8008
7950
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8009
7951
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8010
7952
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -8012,7 +7954,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8012
7954
|
* @param {*} [options] Override http request option.
|
|
8013
7955
|
* @throws {RequiredError}
|
|
8014
7956
|
*/
|
|
8015
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
7957
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8016
7958
|
/**
|
|
8017
7959
|
* Publish a single page.
|
|
8018
7960
|
* @param {string} name
|
|
@@ -8067,23 +8009,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8067
8009
|
*/
|
|
8068
8010
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8069
8011
|
/**
|
|
8070
|
-
*
|
|
8071
|
-
* @type {
|
|
8012
|
+
*
|
|
8013
|
+
* @type {Array<string>}
|
|
8072
8014
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8073
8015
|
*/
|
|
8074
|
-
readonly
|
|
8016
|
+
readonly contributor?: Array<string>;
|
|
8075
8017
|
/**
|
|
8076
8018
|
*
|
|
8077
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
8019
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'}
|
|
8078
8020
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8079
8021
|
*/
|
|
8080
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
8022
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED';
|
|
8081
8023
|
/**
|
|
8082
|
-
*
|
|
8083
|
-
* @type {
|
|
8024
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8025
|
+
* @type {boolean}
|
|
8084
8026
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8085
8027
|
*/
|
|
8086
|
-
readonly
|
|
8028
|
+
readonly sortOrder?: boolean;
|
|
8087
8029
|
/**
|
|
8088
8030
|
* Size of one page. Zero indicates no limit.
|
|
8089
8031
|
* @type {number}
|
|
@@ -15411,4 +15353,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15411
15353
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15412
15354
|
}
|
|
15413
15355
|
|
|
15414
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
15356
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
package/dist/index.mjs
CHANGED
|
@@ -387,30 +387,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator = function(configurat
|
|
|
387
387
|
options: localVarRequestOptions
|
|
388
388
|
};
|
|
389
389
|
},
|
|
390
|
-
publishSnapshotContent: async (snapshotName, subjectRef, options = {}) => {
|
|
391
|
-
assertParamExists("publishSnapshotContent", "snapshotName", snapshotName);
|
|
392
|
-
assertParamExists("publishSnapshotContent", "subjectRef", subjectRef);
|
|
393
|
-
const localVarPath = `/apis/api.console.halo.run/v1alpha1/contents/{snapshotName}/publish`.replace(`{${"snapshotName"}}`, encodeURIComponent(String(snapshotName)));
|
|
394
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
395
|
-
let baseOptions;
|
|
396
|
-
if (configuration) {
|
|
397
|
-
baseOptions = configuration.baseOptions;
|
|
398
|
-
}
|
|
399
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
400
|
-
const localVarHeaderParameter = {};
|
|
401
|
-
const localVarQueryParameter = {};
|
|
402
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
403
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
404
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
405
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
406
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
407
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
408
|
-
localVarRequestOptions.data = serializeDataIfNeeded(subjectRef, localVarRequestOptions, configuration);
|
|
409
|
-
return {
|
|
410
|
-
url: toPathString(localVarUrlObj),
|
|
411
|
-
options: localVarRequestOptions
|
|
412
|
-
};
|
|
413
|
-
},
|
|
414
390
|
updateSnapshotContent: async (snapshotName, contentRequest, options = {}) => {
|
|
415
391
|
assertParamExists("updateSnapshotContent", "snapshotName", snapshotName);
|
|
416
392
|
assertParamExists("updateSnapshotContent", "contentRequest", contentRequest);
|
|
@@ -448,10 +424,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiFp = function(configuration) {
|
|
|
448
424
|
const localVarAxiosArgs = await localVarAxiosParamCreator.obtainSnapshotContent(snapshotName, options);
|
|
449
425
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
450
426
|
},
|
|
451
|
-
async publishSnapshotContent(snapshotName, subjectRef, options) {
|
|
452
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.publishSnapshotContent(snapshotName, subjectRef, options);
|
|
453
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
454
|
-
},
|
|
455
427
|
async updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
456
428
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSnapshotContent(snapshotName, contentRequest, options);
|
|
457
429
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
@@ -467,9 +439,6 @@ const ApiConsoleHaloRunV1alpha1ContentApiFactory = function(configuration, baseP
|
|
|
467
439
|
obtainSnapshotContent(snapshotName, options) {
|
|
468
440
|
return localVarFp.obtainSnapshotContent(snapshotName, options).then((request) => request(axios, basePath));
|
|
469
441
|
},
|
|
470
|
-
publishSnapshotContent(snapshotName, subjectRef, options) {
|
|
471
|
-
return localVarFp.publishSnapshotContent(snapshotName, subjectRef, options).then((request) => request(axios, basePath));
|
|
472
|
-
},
|
|
473
442
|
updateSnapshotContent(snapshotName, contentRequest, options) {
|
|
474
443
|
return localVarFp.updateSnapshotContent(snapshotName, contentRequest, options).then((request) => request(axios, basePath));
|
|
475
444
|
}
|
|
@@ -482,9 +451,6 @@ class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
482
451
|
obtainSnapshotContent(requestParameters, options) {
|
|
483
452
|
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).obtainSnapshotContent(requestParameters.snapshotName, options).then((request) => request(this.axios, this.basePath));
|
|
484
453
|
}
|
|
485
|
-
publishSnapshotContent(requestParameters, options) {
|
|
486
|
-
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).publishSnapshotContent(requestParameters.snapshotName, requestParameters.subjectRef, options).then((request) => request(this.axios, this.basePath));
|
|
487
|
-
}
|
|
488
454
|
updateSnapshotContent(requestParameters, options) {
|
|
489
455
|
return ApiConsoleHaloRunV1alpha1ContentApiFp(this.configuration).updateSnapshotContent(requestParameters.snapshotName, requestParameters.contentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
490
456
|
}
|
|
@@ -519,7 +485,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
519
485
|
options: localVarRequestOptions
|
|
520
486
|
};
|
|
521
487
|
},
|
|
522
|
-
listPlugins: async (sort,
|
|
488
|
+
listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
523
489
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
524
490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
525
491
|
let baseOptions;
|
|
@@ -534,12 +500,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
534
500
|
if (sort) {
|
|
535
501
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
536
502
|
}
|
|
537
|
-
if (keyword !== void 0) {
|
|
538
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
539
|
-
}
|
|
540
503
|
if (enabled !== void 0) {
|
|
541
504
|
localVarQueryParameter["enabled"] = enabled;
|
|
542
505
|
}
|
|
506
|
+
if (keyword !== void 0) {
|
|
507
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
508
|
+
}
|
|
543
509
|
if (size !== void 0) {
|
|
544
510
|
localVarQueryParameter["size"] = size;
|
|
545
511
|
}
|
|
@@ -597,8 +563,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
597
563
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
598
564
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
599
565
|
},
|
|
600
|
-
async listPlugins(sort,
|
|
601
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
566
|
+
async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
567
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
|
|
602
568
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
603
569
|
},
|
|
604
570
|
async upgradePlugin(name, file, options) {
|
|
@@ -613,8 +579,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
613
579
|
installPlugin(file, options) {
|
|
614
580
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
615
581
|
},
|
|
616
|
-
listPlugins(sort,
|
|
617
|
-
return localVarFp.listPlugins(sort,
|
|
582
|
+
listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
583
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
618
584
|
},
|
|
619
585
|
upgradePlugin(name, file, options) {
|
|
620
586
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
@@ -626,7 +592,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
626
592
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
627
593
|
}
|
|
628
594
|
listPlugins(requestParameters = {}, options) {
|
|
629
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
595
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
630
596
|
}
|
|
631
597
|
upgradePlugin(requestParameters, options) {
|
|
632
598
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -658,7 +624,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
658
624
|
options: localVarRequestOptions
|
|
659
625
|
};
|
|
660
626
|
},
|
|
661
|
-
listPosts: async (sort, keyword, visible,
|
|
627
|
+
listPosts: async (sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
662
628
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
663
629
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
664
630
|
let baseOptions;
|
|
@@ -673,17 +639,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
673
639
|
if (sort !== void 0) {
|
|
674
640
|
localVarQueryParameter["sort"] = sort;
|
|
675
641
|
}
|
|
642
|
+
if (tag) {
|
|
643
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
644
|
+
}
|
|
676
645
|
if (keyword !== void 0) {
|
|
677
646
|
localVarQueryParameter["keyword"] = keyword;
|
|
678
647
|
}
|
|
679
648
|
if (visible !== void 0) {
|
|
680
649
|
localVarQueryParameter["visible"] = visible;
|
|
681
650
|
}
|
|
682
|
-
if (
|
|
683
|
-
localVarQueryParameter["
|
|
684
|
-
}
|
|
685
|
-
if (sortOrder !== void 0) {
|
|
686
|
-
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
651
|
+
if (contributor) {
|
|
652
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
687
653
|
}
|
|
688
654
|
if (publishPhase !== void 0) {
|
|
689
655
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
@@ -691,8 +657,8 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
691
657
|
if (category) {
|
|
692
658
|
localVarQueryParameter["category"] = Array.from(category);
|
|
693
659
|
}
|
|
694
|
-
if (
|
|
695
|
-
localVarQueryParameter["
|
|
660
|
+
if (sortOrder !== void 0) {
|
|
661
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
696
662
|
}
|
|
697
663
|
if (size !== void 0) {
|
|
698
664
|
localVarQueryParameter["size"] = size;
|
|
@@ -768,8 +734,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
768
734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
769
735
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
770
736
|
},
|
|
771
|
-
async listPosts(sort, keyword, visible,
|
|
772
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible,
|
|
737
|
+
async listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
738
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options);
|
|
773
739
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
774
740
|
},
|
|
775
741
|
async publishPost(name, options) {
|
|
@@ -788,8 +754,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
788
754
|
draftPost(postRequest, options) {
|
|
789
755
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
790
756
|
},
|
|
791
|
-
listPosts(sort, keyword, visible,
|
|
792
|
-
return localVarFp.listPosts(sort, keyword, visible,
|
|
757
|
+
listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
758
|
+
return localVarFp.listPosts(sort, tag, keyword, visible, contributor, publishPhase, category, sortOrder, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
793
759
|
},
|
|
794
760
|
publishPost(name, options) {
|
|
795
761
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -804,7 +770,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
804
770
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
805
771
|
}
|
|
806
772
|
listPosts(requestParameters = {}, options) {
|
|
807
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
773
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.publishPhase, requestParameters.category, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
808
774
|
}
|
|
809
775
|
publishPost(requestParameters, options) {
|
|
810
776
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -901,7 +867,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
901
867
|
options: localVarRequestOptions
|
|
902
868
|
};
|
|
903
869
|
},
|
|
904
|
-
listSinglePages: async (sort, keyword, visible,
|
|
870
|
+
listSinglePages: async (sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
905
871
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
906
872
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
907
873
|
let baseOptions;
|
|
@@ -922,14 +888,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
922
888
|
if (visible !== void 0) {
|
|
923
889
|
localVarQueryParameter["visible"] = visible;
|
|
924
890
|
}
|
|
925
|
-
if (
|
|
926
|
-
localVarQueryParameter["
|
|
891
|
+
if (contributor) {
|
|
892
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
927
893
|
}
|
|
928
894
|
if (publishPhase !== void 0) {
|
|
929
895
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
930
896
|
}
|
|
931
|
-
if (
|
|
932
|
-
localVarQueryParameter["
|
|
897
|
+
if (sortOrder !== void 0) {
|
|
898
|
+
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
933
899
|
}
|
|
934
900
|
if (size !== void 0) {
|
|
935
901
|
localVarQueryParameter["size"] = size;
|
|
@@ -1005,8 +971,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1005
971
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1006
972
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1007
973
|
},
|
|
1008
|
-
async listSinglePages(sort, keyword, visible,
|
|
1009
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible,
|
|
974
|
+
async listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
975
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options);
|
|
1010
976
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1011
977
|
},
|
|
1012
978
|
async publishSinglePage(name, options) {
|
|
@@ -1025,8 +991,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1025
991
|
draftSinglePage(singlePageRequest, options) {
|
|
1026
992
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1027
993
|
},
|
|
1028
|
-
listSinglePages(sort, keyword, visible,
|
|
1029
|
-
return localVarFp.listSinglePages(sort, keyword, visible,
|
|
994
|
+
listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options) {
|
|
995
|
+
return localVarFp.listSinglePages(sort, keyword, visible, contributor, publishPhase, sortOrder, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1030
996
|
},
|
|
1031
997
|
publishSinglePage(name, options) {
|
|
1032
998
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1041,7 +1007,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1041
1007
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1042
1008
|
}
|
|
1043
1009
|
listSinglePages(requestParameters = {}, options) {
|
|
1044
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.
|
|
1010
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.publishPhase, requestParameters.sortOrder, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1045
1011
|
}
|
|
1046
1012
|
publishSinglePage(requestParameters, options) {
|
|
1047
1013
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1531,12 +1497,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1531
1497
|
if (version !== void 0) {
|
|
1532
1498
|
localVarQueryParameter["version"] = version;
|
|
1533
1499
|
}
|
|
1534
|
-
if (group !== void 0) {
|
|
1535
|
-
localVarQueryParameter["group"] = group;
|
|
1536
|
-
}
|
|
1537
1500
|
if (kind !== void 0) {
|
|
1538
1501
|
localVarQueryParameter["kind"] = kind;
|
|
1539
1502
|
}
|
|
1503
|
+
if (group !== void 0) {
|
|
1504
|
+
localVarQueryParameter["group"] = group;
|
|
1505
|
+
}
|
|
1540
1506
|
if (size !== void 0) {
|
|
1541
1507
|
localVarQueryParameter["size"] = size;
|
|
1542
1508
|
}
|