@halo-dev/api-client 0.0.38 → 0.0.39
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 +86 -48
- package/dist/index.d.ts +118 -67
- package/dist/index.mjs +86 -48
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -77,7 +77,7 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
77
77
|
|
|
78
78
|
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
79
79
|
return {
|
|
80
|
-
searchAttachments: async (policy, displayName,
|
|
80
|
+
searchAttachments: async (policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
81
81
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
82
82
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
83
83
|
let baseOptions;
|
|
@@ -95,12 +95,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
95
95
|
if (displayName !== void 0) {
|
|
96
96
|
localVarQueryParameter["displayName"] = displayName;
|
|
97
97
|
}
|
|
98
|
-
if (group !== void 0) {
|
|
99
|
-
localVarQueryParameter["group"] = group;
|
|
100
|
-
}
|
|
101
98
|
if (uploadedBy !== void 0) {
|
|
102
99
|
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
103
100
|
}
|
|
101
|
+
if (group !== void 0) {
|
|
102
|
+
localVarQueryParameter["group"] = group;
|
|
103
|
+
}
|
|
104
104
|
if (size !== void 0) {
|
|
105
105
|
localVarQueryParameter["size"] = size;
|
|
106
106
|
}
|
|
@@ -139,12 +139,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
139
139
|
if (file !== void 0) {
|
|
140
140
|
localVarFormParams.append("file", file);
|
|
141
141
|
}
|
|
142
|
-
if (policyName !== void 0) {
|
|
143
|
-
localVarFormParams.append("policyName", policyName);
|
|
144
|
-
}
|
|
145
142
|
if (groupName !== void 0) {
|
|
146
143
|
localVarFormParams.append("groupName", groupName);
|
|
147
144
|
}
|
|
145
|
+
if (policyName !== void 0) {
|
|
146
|
+
localVarFormParams.append("policyName", policyName);
|
|
147
|
+
}
|
|
148
148
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
149
149
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
150
150
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -160,8 +160,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
160
160
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
161
161
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
162
162
|
return {
|
|
163
|
-
async searchAttachments(policy, displayName,
|
|
164
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
163
|
+
async searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options) {
|
|
164
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options);
|
|
165
165
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
166
166
|
},
|
|
167
167
|
async uploadAttachment(file, policyName, groupName, options) {
|
|
@@ -173,8 +173,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
173
173
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
174
174
|
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
175
175
|
return {
|
|
176
|
-
searchAttachments(policy, displayName,
|
|
177
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
176
|
+
searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options) {
|
|
177
|
+
return localVarFp.searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
178
178
|
},
|
|
179
179
|
uploadAttachment(file, policyName, groupName, options) {
|
|
180
180
|
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
@@ -183,7 +183,7 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, ba
|
|
|
183
183
|
};
|
|
184
184
|
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
185
185
|
searchAttachments(requestParameters = {}, options) {
|
|
186
|
-
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
186
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.uploadedBy, requestParameters.group, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
187
187
|
}
|
|
188
188
|
uploadAttachment(requestParameters, options) {
|
|
189
189
|
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -527,7 +527,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
527
527
|
options: localVarRequestOptions
|
|
528
528
|
};
|
|
529
529
|
},
|
|
530
|
-
listPlugins: async (sort,
|
|
530
|
+
listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
531
531
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
532
532
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
533
533
|
let baseOptions;
|
|
@@ -542,12 +542,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
542
542
|
if (sort) {
|
|
543
543
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
544
544
|
}
|
|
545
|
-
if (keyword !== void 0) {
|
|
546
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
547
|
-
}
|
|
548
545
|
if (enabled !== void 0) {
|
|
549
546
|
localVarQueryParameter["enabled"] = enabled;
|
|
550
547
|
}
|
|
548
|
+
if (keyword !== void 0) {
|
|
549
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
550
|
+
}
|
|
551
551
|
if (size !== void 0) {
|
|
552
552
|
localVarQueryParameter["size"] = size;
|
|
553
553
|
}
|
|
@@ -567,6 +567,34 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
567
567
|
url: toPathString(localVarUrlObj),
|
|
568
568
|
options: localVarRequestOptions
|
|
569
569
|
};
|
|
570
|
+
},
|
|
571
|
+
upgradePlugin: async (name, file, options = {}) => {
|
|
572
|
+
assertParamExists("upgradePlugin", "name", name);
|
|
573
|
+
assertParamExists("upgradePlugin", "file", file);
|
|
574
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/upgrade`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
575
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
576
|
+
let baseOptions;
|
|
577
|
+
if (configuration) {
|
|
578
|
+
baseOptions = configuration.baseOptions;
|
|
579
|
+
}
|
|
580
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
581
|
+
const localVarHeaderParameter = {};
|
|
582
|
+
const localVarQueryParameter = {};
|
|
583
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
584
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
585
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
586
|
+
if (file !== void 0) {
|
|
587
|
+
localVarFormParams.append("file", file);
|
|
588
|
+
}
|
|
589
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
590
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
591
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
592
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
593
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
594
|
+
return {
|
|
595
|
+
url: toPathString(localVarUrlObj),
|
|
596
|
+
options: localVarRequestOptions
|
|
597
|
+
};
|
|
570
598
|
}
|
|
571
599
|
};
|
|
572
600
|
};
|
|
@@ -577,8 +605,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
577
605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
578
606
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
579
607
|
},
|
|
580
|
-
async listPlugins(sort,
|
|
581
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
608
|
+
async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
609
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
|
|
610
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
611
|
+
},
|
|
612
|
+
async upgradePlugin(name, file, options) {
|
|
613
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.upgradePlugin(name, file, options);
|
|
582
614
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
583
615
|
}
|
|
584
616
|
};
|
|
@@ -589,8 +621,11 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
589
621
|
installPlugin(file, options) {
|
|
590
622
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
591
623
|
},
|
|
592
|
-
listPlugins(sort,
|
|
593
|
-
return localVarFp.listPlugins(sort,
|
|
624
|
+
listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
625
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
626
|
+
},
|
|
627
|
+
upgradePlugin(name, file, options) {
|
|
628
|
+
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
594
629
|
}
|
|
595
630
|
};
|
|
596
631
|
};
|
|
@@ -599,7 +634,10 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
599
634
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
600
635
|
}
|
|
601
636
|
listPlugins(requestParameters = {}, options) {
|
|
602
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
637
|
+
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
|
+
}
|
|
639
|
+
upgradePlugin(requestParameters, options) {
|
|
640
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
603
641
|
}
|
|
604
642
|
}
|
|
605
643
|
|
|
@@ -628,7 +666,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
628
666
|
options: localVarRequestOptions
|
|
629
667
|
};
|
|
630
668
|
},
|
|
631
|
-
listPosts: async (sort,
|
|
669
|
+
listPosts: async (sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
632
670
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
633
671
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
634
672
|
let baseOptions;
|
|
@@ -643,14 +681,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
643
681
|
if (sort !== void 0) {
|
|
644
682
|
localVarQueryParameter["sort"] = sort;
|
|
645
683
|
}
|
|
646
|
-
if (
|
|
647
|
-
localVarQueryParameter["
|
|
684
|
+
if (tag) {
|
|
685
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
648
686
|
}
|
|
649
687
|
if (visible !== void 0) {
|
|
650
688
|
localVarQueryParameter["visible"] = visible;
|
|
651
689
|
}
|
|
652
|
-
if (
|
|
653
|
-
localVarQueryParameter["
|
|
690
|
+
if (keyword !== void 0) {
|
|
691
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
692
|
+
}
|
|
693
|
+
if (contributor) {
|
|
694
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
654
695
|
}
|
|
655
696
|
if (sortOrder !== void 0) {
|
|
656
697
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -661,9 +702,6 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
661
702
|
if (category) {
|
|
662
703
|
localVarQueryParameter["category"] = Array.from(category);
|
|
663
704
|
}
|
|
664
|
-
if (contributor) {
|
|
665
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
666
|
-
}
|
|
667
705
|
if (size !== void 0) {
|
|
668
706
|
localVarQueryParameter["size"] = size;
|
|
669
707
|
}
|
|
@@ -738,8 +776,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
738
776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
739
777
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
740
778
|
},
|
|
741
|
-
async listPosts(sort,
|
|
742
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
779
|
+
async listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
780
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
|
|
743
781
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
744
782
|
},
|
|
745
783
|
async publishPost(name, options) {
|
|
@@ -758,8 +796,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
758
796
|
draftPost(postRequest, options) {
|
|
759
797
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
760
798
|
},
|
|
761
|
-
listPosts(sort,
|
|
762
|
-
return localVarFp.listPosts(sort,
|
|
799
|
+
listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
800
|
+
return localVarFp.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
763
801
|
},
|
|
764
802
|
publishPost(name, options) {
|
|
765
803
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -774,7 +812,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
774
812
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
775
813
|
}
|
|
776
814
|
listPosts(requestParameters = {}, options) {
|
|
777
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
815
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
778
816
|
}
|
|
779
817
|
publishPost(requestParameters, options) {
|
|
780
818
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -871,7 +909,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
871
909
|
options: localVarRequestOptions
|
|
872
910
|
};
|
|
873
911
|
},
|
|
874
|
-
listSinglePages: async (sort, keyword,
|
|
912
|
+
listSinglePages: async (sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
875
913
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
876
914
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
877
915
|
let baseOptions;
|
|
@@ -886,11 +924,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
886
924
|
if (sort !== void 0) {
|
|
887
925
|
localVarQueryParameter["sort"] = sort;
|
|
888
926
|
}
|
|
927
|
+
if (visible !== void 0) {
|
|
928
|
+
localVarQueryParameter["visible"] = visible;
|
|
929
|
+
}
|
|
889
930
|
if (keyword !== void 0) {
|
|
890
931
|
localVarQueryParameter["keyword"] = keyword;
|
|
891
932
|
}
|
|
892
|
-
if (
|
|
893
|
-
localVarQueryParameter["
|
|
933
|
+
if (contributor) {
|
|
934
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
894
935
|
}
|
|
895
936
|
if (sortOrder !== void 0) {
|
|
896
937
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -898,9 +939,6 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
898
939
|
if (publishPhase !== void 0) {
|
|
899
940
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
900
941
|
}
|
|
901
|
-
if (contributor) {
|
|
902
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
903
|
-
}
|
|
904
942
|
if (size !== void 0) {
|
|
905
943
|
localVarQueryParameter["size"] = size;
|
|
906
944
|
}
|
|
@@ -975,8 +1013,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
975
1013
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
976
1014
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
977
1015
|
},
|
|
978
|
-
async listSinglePages(sort, keyword,
|
|
979
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword,
|
|
1016
|
+
async listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1017
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
|
|
980
1018
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
981
1019
|
},
|
|
982
1020
|
async publishSinglePage(name, options) {
|
|
@@ -995,8 +1033,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
995
1033
|
draftSinglePage(singlePageRequest, options) {
|
|
996
1034
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
997
1035
|
},
|
|
998
|
-
listSinglePages(sort, keyword,
|
|
999
|
-
return localVarFp.listSinglePages(sort, keyword,
|
|
1036
|
+
listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1037
|
+
return localVarFp.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1000
1038
|
},
|
|
1001
1039
|
publishSinglePage(name, options) {
|
|
1002
1040
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1011,7 +1049,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1011
1049
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1012
1050
|
}
|
|
1013
1051
|
listSinglePages(requestParameters = {}, options) {
|
|
1014
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1052
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1015
1053
|
}
|
|
1016
1054
|
publishSinglePage(requestParameters, options) {
|
|
1017
1055
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1501,12 +1539,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1501
1539
|
if (version !== void 0) {
|
|
1502
1540
|
localVarQueryParameter["version"] = version;
|
|
1503
1541
|
}
|
|
1504
|
-
if (group !== void 0) {
|
|
1505
|
-
localVarQueryParameter["group"] = group;
|
|
1506
|
-
}
|
|
1507
1542
|
if (kind !== void 0) {
|
|
1508
1543
|
localVarQueryParameter["kind"] = kind;
|
|
1509
1544
|
}
|
|
1545
|
+
if (group !== void 0) {
|
|
1546
|
+
localVarQueryParameter["group"] = group;
|
|
1547
|
+
}
|
|
1510
1548
|
if (size !== void 0) {
|
|
1511
1549
|
localVarQueryParameter["size"] = size;
|
|
1512
1550
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1937,16 +1937,16 @@ interface Extension {
|
|
|
1937
1937
|
kind: string;
|
|
1938
1938
|
/**
|
|
1939
1939
|
*
|
|
1940
|
-
* @type {
|
|
1940
|
+
* @type {Metadata}
|
|
1941
1941
|
* @memberof Extension
|
|
1942
1942
|
*/
|
|
1943
|
-
|
|
1943
|
+
metadata: Metadata;
|
|
1944
1944
|
/**
|
|
1945
1945
|
*
|
|
1946
|
-
* @type {
|
|
1946
|
+
* @type {string}
|
|
1947
1947
|
* @memberof Extension
|
|
1948
1948
|
*/
|
|
1949
|
-
|
|
1949
|
+
apiVersion: string;
|
|
1950
1950
|
}
|
|
1951
1951
|
|
|
1952
1952
|
/**
|
|
@@ -4236,7 +4236,7 @@ interface PluginSpec {
|
|
|
4236
4236
|
* @type {string}
|
|
4237
4237
|
* @memberof PluginSpec
|
|
4238
4238
|
*/
|
|
4239
|
-
version
|
|
4239
|
+
version: string;
|
|
4240
4240
|
/**
|
|
4241
4241
|
*
|
|
4242
4242
|
* @type {string}
|
|
@@ -6670,8 +6670,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
6670
6670
|
*
|
|
6671
6671
|
* @param {string} [policy] Name of policy
|
|
6672
6672
|
* @param {string} [displayName] Display name of attachment
|
|
6673
|
-
* @param {string} [group] Name of group
|
|
6674
6673
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6674
|
+
* @param {string} [group] Name of group
|
|
6675
6675
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6676
6676
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6677
6677
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6679,7 +6679,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
6679
6679
|
* @param {*} [options] Override http request option.
|
|
6680
6680
|
* @throws {RequiredError}
|
|
6681
6681
|
*/
|
|
6682
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
6682
|
+
searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6683
6683
|
/**
|
|
6684
6684
|
*
|
|
6685
6685
|
* @param {any} file
|
|
@@ -6699,8 +6699,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
6699
6699
|
*
|
|
6700
6700
|
* @param {string} [policy] Name of policy
|
|
6701
6701
|
* @param {string} [displayName] Display name of attachment
|
|
6702
|
-
* @param {string} [group] Name of group
|
|
6703
6702
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6703
|
+
* @param {string} [group] Name of group
|
|
6704
6704
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6705
6705
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6706
6706
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6708,7 +6708,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
6708
6708
|
* @param {*} [options] Override http request option.
|
|
6709
6709
|
* @throws {RequiredError}
|
|
6710
6710
|
*/
|
|
6711
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
6711
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
6712
6712
|
/**
|
|
6713
6713
|
*
|
|
6714
6714
|
* @param {any} file
|
|
@@ -6728,8 +6728,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
6728
6728
|
*
|
|
6729
6729
|
* @param {string} [policy] Name of policy
|
|
6730
6730
|
* @param {string} [displayName] Display name of attachment
|
|
6731
|
-
* @param {string} [group] Name of group
|
|
6732
6731
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6732
|
+
* @param {string} [group] Name of group
|
|
6733
6733
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6734
6734
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6735
6735
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6737,7 +6737,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
6737
6737
|
* @param {*} [options] Override http request option.
|
|
6738
6738
|
* @throws {RequiredError}
|
|
6739
6739
|
*/
|
|
6740
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
6740
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
6741
6741
|
/**
|
|
6742
6742
|
*
|
|
6743
6743
|
* @param {any} file
|
|
@@ -6767,17 +6767,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
6767
6767
|
*/
|
|
6768
6768
|
readonly displayName?: string;
|
|
6769
6769
|
/**
|
|
6770
|
-
* Name of
|
|
6770
|
+
* Name of user who uploaded the attachment
|
|
6771
6771
|
* @type {string}
|
|
6772
6772
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6773
6773
|
*/
|
|
6774
|
-
readonly
|
|
6774
|
+
readonly uploadedBy?: string;
|
|
6775
6775
|
/**
|
|
6776
|
-
* Name of
|
|
6776
|
+
* Name of group
|
|
6777
6777
|
* @type {string}
|
|
6778
6778
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6779
6779
|
*/
|
|
6780
|
-
readonly
|
|
6780
|
+
readonly group?: string;
|
|
6781
6781
|
/**
|
|
6782
6782
|
* Size of one page. Zero indicates no limit.
|
|
6783
6783
|
* @type {number}
|
|
@@ -7369,8 +7369,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7369
7369
|
/**
|
|
7370
7370
|
* List plugins using query criteria and sort params
|
|
7371
7371
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7372
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7373
7372
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7373
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7374
7374
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7375
7375
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7376
7376
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7378,7 +7378,15 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7378
7378
|
* @param {*} [options] Override http request option.
|
|
7379
7379
|
* @throws {RequiredError}
|
|
7380
7380
|
*/
|
|
7381
|
-
listPlugins: (sort?: Array<string>,
|
|
7381
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7382
|
+
/**
|
|
7383
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7384
|
+
* @param {string} name
|
|
7385
|
+
* @param {any} file
|
|
7386
|
+
* @param {*} [options] Override http request option.
|
|
7387
|
+
* @throws {RequiredError}
|
|
7388
|
+
*/
|
|
7389
|
+
upgradePlugin: (name: string, file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7382
7390
|
};
|
|
7383
7391
|
/**
|
|
7384
7392
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -7395,8 +7403,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7395
7403
|
/**
|
|
7396
7404
|
* List plugins using query criteria and sort params
|
|
7397
7405
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7398
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7399
7406
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7407
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7400
7408
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7401
7409
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7402
7410
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7404,7 +7412,15 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7404
7412
|
* @param {*} [options] Override http request option.
|
|
7405
7413
|
* @throws {RequiredError}
|
|
7406
7414
|
*/
|
|
7407
|
-
listPlugins(sort?: Array<string>,
|
|
7415
|
+
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>>;
|
|
7416
|
+
/**
|
|
7417
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7418
|
+
* @param {string} name
|
|
7419
|
+
* @param {any} file
|
|
7420
|
+
* @param {*} [options] Override http request option.
|
|
7421
|
+
* @throws {RequiredError}
|
|
7422
|
+
*/
|
|
7423
|
+
upgradePlugin(name: string, file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7408
7424
|
};
|
|
7409
7425
|
/**
|
|
7410
7426
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -7421,8 +7437,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7421
7437
|
/**
|
|
7422
7438
|
* List plugins using query criteria and sort params
|
|
7423
7439
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7424
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7425
7440
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7441
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7426
7442
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7427
7443
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7428
7444
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7430,7 +7446,15 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7430
7446
|
* @param {*} [options] Override http request option.
|
|
7431
7447
|
* @throws {RequiredError}
|
|
7432
7448
|
*/
|
|
7433
|
-
listPlugins(sort?: Array<string>,
|
|
7449
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7450
|
+
/**
|
|
7451
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7452
|
+
* @param {string} name
|
|
7453
|
+
* @param {any} file
|
|
7454
|
+
* @param {*} [options] Override http request option.
|
|
7455
|
+
* @throws {RequiredError}
|
|
7456
|
+
*/
|
|
7457
|
+
upgradePlugin(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
7434
7458
|
};
|
|
7435
7459
|
/**
|
|
7436
7460
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7457,18 +7481,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7457
7481
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7458
7482
|
*/
|
|
7459
7483
|
readonly sort?: Array<string>;
|
|
7460
|
-
/**
|
|
7461
|
-
* Keyword of plugin name or description
|
|
7462
|
-
* @type {string}
|
|
7463
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7464
|
-
*/
|
|
7465
|
-
readonly keyword?: string;
|
|
7466
7484
|
/**
|
|
7467
7485
|
* Whether the plugin is enabled
|
|
7468
7486
|
* @type {boolean}
|
|
7469
7487
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7470
7488
|
*/
|
|
7471
7489
|
readonly enabled?: boolean;
|
|
7490
|
+
/**
|
|
7491
|
+
* Keyword of plugin name or description
|
|
7492
|
+
* @type {string}
|
|
7493
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7494
|
+
*/
|
|
7495
|
+
readonly keyword?: string;
|
|
7472
7496
|
/**
|
|
7473
7497
|
* Size of one page. Zero indicates no limit.
|
|
7474
7498
|
* @type {number}
|
|
@@ -7494,6 +7518,25 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7494
7518
|
*/
|
|
7495
7519
|
readonly fieldSelector?: Array<string>;
|
|
7496
7520
|
}
|
|
7521
|
+
/**
|
|
7522
|
+
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
7523
|
+
* @export
|
|
7524
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest
|
|
7525
|
+
*/
|
|
7526
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest {
|
|
7527
|
+
/**
|
|
7528
|
+
*
|
|
7529
|
+
* @type {string}
|
|
7530
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
7531
|
+
*/
|
|
7532
|
+
readonly name: string;
|
|
7533
|
+
/**
|
|
7534
|
+
*
|
|
7535
|
+
* @type {any}
|
|
7536
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpgradePlugin
|
|
7537
|
+
*/
|
|
7538
|
+
readonly file: any;
|
|
7539
|
+
}
|
|
7497
7540
|
/**
|
|
7498
7541
|
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
7499
7542
|
* @export
|
|
@@ -7517,6 +7560,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
7517
7560
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7518
7561
|
*/
|
|
7519
7562
|
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
7563
|
+
/**
|
|
7564
|
+
* Upgrade a plugin by uploading a Jar file
|
|
7565
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
7566
|
+
* @param {*} [options] Override http request option.
|
|
7567
|
+
* @throws {RequiredError}
|
|
7568
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7569
|
+
*/
|
|
7570
|
+
upgradePlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7520
7571
|
}
|
|
7521
7572
|
|
|
7522
7573
|
/**
|
|
@@ -7534,13 +7585,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7534
7585
|
/**
|
|
7535
7586
|
* List posts.
|
|
7536
7587
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7537
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7538
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7539
7588
|
* @param {Array<string>} [tag]
|
|
7589
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7590
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7591
|
+
* @param {Array<string>} [contributor]
|
|
7540
7592
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7541
7593
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7542
7594
|
* @param {Array<string>} [category]
|
|
7543
|
-
* @param {Array<string>} [contributor]
|
|
7544
7595
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7545
7596
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7546
7597
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7548,7 +7599,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7548
7599
|
* @param {*} [options] Override http request option.
|
|
7549
7600
|
* @throws {RequiredError}
|
|
7550
7601
|
*/
|
|
7551
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7602
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7552
7603
|
/**
|
|
7553
7604
|
* Publish a post.
|
|
7554
7605
|
* @param {string} name
|
|
@@ -7580,13 +7631,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7580
7631
|
/**
|
|
7581
7632
|
* List posts.
|
|
7582
7633
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7583
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7584
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7585
7634
|
* @param {Array<string>} [tag]
|
|
7635
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7636
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7637
|
+
* @param {Array<string>} [contributor]
|
|
7586
7638
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7587
7639
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7588
7640
|
* @param {Array<string>} [category]
|
|
7589
|
-
* @param {Array<string>} [contributor]
|
|
7590
7641
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7591
7642
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7592
7643
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7594,7 +7645,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7594
7645
|
* @param {*} [options] Override http request option.
|
|
7595
7646
|
* @throws {RequiredError}
|
|
7596
7647
|
*/
|
|
7597
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7648
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
7598
7649
|
/**
|
|
7599
7650
|
* Publish a post.
|
|
7600
7651
|
* @param {string} name
|
|
@@ -7626,13 +7677,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7626
7677
|
/**
|
|
7627
7678
|
* List posts.
|
|
7628
7679
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7629
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7630
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7631
7680
|
* @param {Array<string>} [tag]
|
|
7681
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7682
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7683
|
+
* @param {Array<string>} [contributor]
|
|
7632
7684
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7633
7685
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7634
7686
|
* @param {Array<string>} [category]
|
|
7635
|
-
* @param {Array<string>} [contributor]
|
|
7636
7687
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7637
7688
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7638
7689
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7640,7 +7691,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7640
7691
|
* @param {*} [options] Override http request option.
|
|
7641
7692
|
* @throws {RequiredError}
|
|
7642
7693
|
*/
|
|
7643
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7694
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
7644
7695
|
/**
|
|
7645
7696
|
* Publish a post.
|
|
7646
7697
|
* @param {string} name
|
|
@@ -7683,23 +7734,29 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7683
7734
|
*/
|
|
7684
7735
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7685
7736
|
/**
|
|
7686
|
-
*
|
|
7687
|
-
* @type {string}
|
|
7737
|
+
*
|
|
7738
|
+
* @type {Array<string>}
|
|
7688
7739
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7689
7740
|
*/
|
|
7690
|
-
readonly
|
|
7741
|
+
readonly tag?: Array<string>;
|
|
7691
7742
|
/**
|
|
7692
7743
|
*
|
|
7693
7744
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7694
7745
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7695
7746
|
*/
|
|
7696
7747
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7748
|
+
/**
|
|
7749
|
+
* Posts filtered by keyword.
|
|
7750
|
+
* @type {string}
|
|
7751
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7752
|
+
*/
|
|
7753
|
+
readonly keyword?: string;
|
|
7697
7754
|
/**
|
|
7698
7755
|
*
|
|
7699
7756
|
* @type {Array<string>}
|
|
7700
7757
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7701
7758
|
*/
|
|
7702
|
-
readonly
|
|
7759
|
+
readonly contributor?: Array<string>;
|
|
7703
7760
|
/**
|
|
7704
7761
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7705
7762
|
* @type {boolean}
|
|
@@ -7718,12 +7775,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7718
7775
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7719
7776
|
*/
|
|
7720
7777
|
readonly category?: Array<string>;
|
|
7721
|
-
/**
|
|
7722
|
-
*
|
|
7723
|
-
* @type {Array<string>}
|
|
7724
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7725
|
-
*/
|
|
7726
|
-
readonly contributor?: Array<string>;
|
|
7727
7778
|
/**
|
|
7728
7779
|
* Size of one page. Zero indicates no limit.
|
|
7729
7780
|
* @type {number}
|
|
@@ -7942,11 +7993,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7942
7993
|
/**
|
|
7943
7994
|
* List single pages.
|
|
7944
7995
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7945
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7946
7996
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7997
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7998
|
+
* @param {Array<string>} [contributor]
|
|
7947
7999
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7948
8000
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7949
|
-
* @param {Array<string>} [contributor]
|
|
7950
8001
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7951
8002
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7952
8003
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7954,7 +8005,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7954
8005
|
* @param {*} [options] Override http request option.
|
|
7955
8006
|
* @throws {RequiredError}
|
|
7956
8007
|
*/
|
|
7957
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8008
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7958
8009
|
/**
|
|
7959
8010
|
* Publish a single page.
|
|
7960
8011
|
* @param {string} name
|
|
@@ -7986,11 +8037,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7986
8037
|
/**
|
|
7987
8038
|
* List single pages.
|
|
7988
8039
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7989
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7990
8040
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8041
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8042
|
+
* @param {Array<string>} [contributor]
|
|
7991
8043
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7992
8044
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7993
|
-
* @param {Array<string>} [contributor]
|
|
7994
8045
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7995
8046
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7996
8047
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7998,7 +8049,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7998
8049
|
* @param {*} [options] Override http request option.
|
|
7999
8050
|
* @throws {RequiredError}
|
|
8000
8051
|
*/
|
|
8001
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8052
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8002
8053
|
/**
|
|
8003
8054
|
* Publish a single page.
|
|
8004
8055
|
* @param {string} name
|
|
@@ -8030,11 +8081,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8030
8081
|
/**
|
|
8031
8082
|
* List single pages.
|
|
8032
8083
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8033
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8034
8084
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8085
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8086
|
+
* @param {Array<string>} [contributor]
|
|
8035
8087
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8036
8088
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
8037
|
-
* @param {Array<string>} [contributor]
|
|
8038
8089
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8039
8090
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8040
8091
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -8042,7 +8093,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8042
8093
|
* @param {*} [options] Override http request option.
|
|
8043
8094
|
* @throws {RequiredError}
|
|
8044
8095
|
*/
|
|
8045
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8096
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8046
8097
|
/**
|
|
8047
8098
|
* Publish a single page.
|
|
8048
8099
|
* @param {string} name
|
|
@@ -8084,6 +8135,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8084
8135
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8085
8136
|
*/
|
|
8086
8137
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8138
|
+
/**
|
|
8139
|
+
*
|
|
8140
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8141
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8142
|
+
*/
|
|
8143
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8087
8144
|
/**
|
|
8088
8145
|
* SinglePages filtered by keyword.
|
|
8089
8146
|
* @type {string}
|
|
@@ -8092,10 +8149,10 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8092
8149
|
readonly keyword?: string;
|
|
8093
8150
|
/**
|
|
8094
8151
|
*
|
|
8095
|
-
* @type {
|
|
8152
|
+
* @type {Array<string>}
|
|
8096
8153
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8097
8154
|
*/
|
|
8098
|
-
readonly
|
|
8155
|
+
readonly contributor?: Array<string>;
|
|
8099
8156
|
/**
|
|
8100
8157
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8101
8158
|
* @type {boolean}
|
|
@@ -8108,12 +8165,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8108
8165
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8109
8166
|
*/
|
|
8110
8167
|
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
8111
|
-
/**
|
|
8112
|
-
*
|
|
8113
|
-
* @type {Array<string>}
|
|
8114
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8115
|
-
*/
|
|
8116
|
-
readonly contributor?: Array<string>;
|
|
8117
8168
|
/**
|
|
8118
8169
|
* Size of one page. Zero indicates no limit.
|
|
8119
8170
|
* @type {number}
|
|
@@ -15987,4 +16038,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15987
16038
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15988
16039
|
}
|
|
15989
16040
|
|
|
15990
|
-
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, 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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, 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, 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 };
|
|
16041
|
+
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, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Counter, CounterList, CounterRequest, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, 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, 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
|
@@ -69,7 +69,7 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
69
69
|
|
|
70
70
|
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
71
71
|
return {
|
|
72
|
-
searchAttachments: async (policy, displayName,
|
|
72
|
+
searchAttachments: async (policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
73
73
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
74
74
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
75
75
|
let baseOptions;
|
|
@@ -87,12 +87,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
87
87
|
if (displayName !== void 0) {
|
|
88
88
|
localVarQueryParameter["displayName"] = displayName;
|
|
89
89
|
}
|
|
90
|
-
if (group !== void 0) {
|
|
91
|
-
localVarQueryParameter["group"] = group;
|
|
92
|
-
}
|
|
93
90
|
if (uploadedBy !== void 0) {
|
|
94
91
|
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
95
92
|
}
|
|
93
|
+
if (group !== void 0) {
|
|
94
|
+
localVarQueryParameter["group"] = group;
|
|
95
|
+
}
|
|
96
96
|
if (size !== void 0) {
|
|
97
97
|
localVarQueryParameter["size"] = size;
|
|
98
98
|
}
|
|
@@ -131,12 +131,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
131
131
|
if (file !== void 0) {
|
|
132
132
|
localVarFormParams.append("file", file);
|
|
133
133
|
}
|
|
134
|
-
if (policyName !== void 0) {
|
|
135
|
-
localVarFormParams.append("policyName", policyName);
|
|
136
|
-
}
|
|
137
134
|
if (groupName !== void 0) {
|
|
138
135
|
localVarFormParams.append("groupName", groupName);
|
|
139
136
|
}
|
|
137
|
+
if (policyName !== void 0) {
|
|
138
|
+
localVarFormParams.append("policyName", policyName);
|
|
139
|
+
}
|
|
140
140
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
141
141
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
142
142
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -152,8 +152,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
152
152
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
153
153
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
154
154
|
return {
|
|
155
|
-
async searchAttachments(policy, displayName,
|
|
156
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
155
|
+
async searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options) {
|
|
156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options);
|
|
157
157
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
158
158
|
},
|
|
159
159
|
async uploadAttachment(file, policyName, groupName, options) {
|
|
@@ -165,8 +165,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
165
165
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
166
166
|
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
167
167
|
return {
|
|
168
|
-
searchAttachments(policy, displayName,
|
|
169
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
168
|
+
searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options) {
|
|
169
|
+
return localVarFp.searchAttachments(policy, displayName, uploadedBy, group, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
170
170
|
},
|
|
171
171
|
uploadAttachment(file, policyName, groupName, options) {
|
|
172
172
|
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
@@ -175,7 +175,7 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, ba
|
|
|
175
175
|
};
|
|
176
176
|
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
177
177
|
searchAttachments(requestParameters = {}, options) {
|
|
178
|
-
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
178
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.uploadedBy, requestParameters.group, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
179
179
|
}
|
|
180
180
|
uploadAttachment(requestParameters, options) {
|
|
181
181
|
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -519,7 +519,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
519
519
|
options: localVarRequestOptions
|
|
520
520
|
};
|
|
521
521
|
},
|
|
522
|
-
listPlugins: async (sort,
|
|
522
|
+
listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
523
523
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
524
524
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
525
525
|
let baseOptions;
|
|
@@ -534,12 +534,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
534
534
|
if (sort) {
|
|
535
535
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
536
536
|
}
|
|
537
|
-
if (keyword !== void 0) {
|
|
538
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
539
|
-
}
|
|
540
537
|
if (enabled !== void 0) {
|
|
541
538
|
localVarQueryParameter["enabled"] = enabled;
|
|
542
539
|
}
|
|
540
|
+
if (keyword !== void 0) {
|
|
541
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
542
|
+
}
|
|
543
543
|
if (size !== void 0) {
|
|
544
544
|
localVarQueryParameter["size"] = size;
|
|
545
545
|
}
|
|
@@ -559,6 +559,34 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
559
559
|
url: toPathString(localVarUrlObj),
|
|
560
560
|
options: localVarRequestOptions
|
|
561
561
|
};
|
|
562
|
+
},
|
|
563
|
+
upgradePlugin: async (name, file, options = {}) => {
|
|
564
|
+
assertParamExists("upgradePlugin", "name", name);
|
|
565
|
+
assertParamExists("upgradePlugin", "file", file);
|
|
566
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/upgrade`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
567
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
568
|
+
let baseOptions;
|
|
569
|
+
if (configuration) {
|
|
570
|
+
baseOptions = configuration.baseOptions;
|
|
571
|
+
}
|
|
572
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
573
|
+
const localVarHeaderParameter = {};
|
|
574
|
+
const localVarQueryParameter = {};
|
|
575
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
576
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
577
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
578
|
+
if (file !== void 0) {
|
|
579
|
+
localVarFormParams.append("file", file);
|
|
580
|
+
}
|
|
581
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
582
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
583
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
584
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
585
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
586
|
+
return {
|
|
587
|
+
url: toPathString(localVarUrlObj),
|
|
588
|
+
options: localVarRequestOptions
|
|
589
|
+
};
|
|
562
590
|
}
|
|
563
591
|
};
|
|
564
592
|
};
|
|
@@ -569,8 +597,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
569
597
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
570
598
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
571
599
|
},
|
|
572
|
-
async listPlugins(sort,
|
|
573
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
600
|
+
async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
601
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
|
|
602
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
603
|
+
},
|
|
604
|
+
async upgradePlugin(name, file, options) {
|
|
605
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.upgradePlugin(name, file, options);
|
|
574
606
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
575
607
|
}
|
|
576
608
|
};
|
|
@@ -581,8 +613,11 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
581
613
|
installPlugin(file, options) {
|
|
582
614
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
583
615
|
},
|
|
584
|
-
listPlugins(sort,
|
|
585
|
-
return localVarFp.listPlugins(sort,
|
|
616
|
+
listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
617
|
+
return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
618
|
+
},
|
|
619
|
+
upgradePlugin(name, file, options) {
|
|
620
|
+
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
586
621
|
}
|
|
587
622
|
};
|
|
588
623
|
};
|
|
@@ -591,7 +626,10 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
591
626
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
592
627
|
}
|
|
593
628
|
listPlugins(requestParameters = {}, options) {
|
|
594
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
629
|
+
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
|
+
}
|
|
631
|
+
upgradePlugin(requestParameters, options) {
|
|
632
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
595
633
|
}
|
|
596
634
|
}
|
|
597
635
|
|
|
@@ -620,7 +658,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
620
658
|
options: localVarRequestOptions
|
|
621
659
|
};
|
|
622
660
|
},
|
|
623
|
-
listPosts: async (sort,
|
|
661
|
+
listPosts: async (sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
624
662
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
625
663
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
626
664
|
let baseOptions;
|
|
@@ -635,14 +673,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
635
673
|
if (sort !== void 0) {
|
|
636
674
|
localVarQueryParameter["sort"] = sort;
|
|
637
675
|
}
|
|
638
|
-
if (
|
|
639
|
-
localVarQueryParameter["
|
|
676
|
+
if (tag) {
|
|
677
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
640
678
|
}
|
|
641
679
|
if (visible !== void 0) {
|
|
642
680
|
localVarQueryParameter["visible"] = visible;
|
|
643
681
|
}
|
|
644
|
-
if (
|
|
645
|
-
localVarQueryParameter["
|
|
682
|
+
if (keyword !== void 0) {
|
|
683
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
684
|
+
}
|
|
685
|
+
if (contributor) {
|
|
686
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
646
687
|
}
|
|
647
688
|
if (sortOrder !== void 0) {
|
|
648
689
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -653,9 +694,6 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
653
694
|
if (category) {
|
|
654
695
|
localVarQueryParameter["category"] = Array.from(category);
|
|
655
696
|
}
|
|
656
|
-
if (contributor) {
|
|
657
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
658
|
-
}
|
|
659
697
|
if (size !== void 0) {
|
|
660
698
|
localVarQueryParameter["size"] = size;
|
|
661
699
|
}
|
|
@@ -730,8 +768,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
730
768
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
731
769
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
732
770
|
},
|
|
733
|
-
async listPosts(sort,
|
|
734
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
771
|
+
async listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
772
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
|
|
735
773
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
736
774
|
},
|
|
737
775
|
async publishPost(name, options) {
|
|
@@ -750,8 +788,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
750
788
|
draftPost(postRequest, options) {
|
|
751
789
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
752
790
|
},
|
|
753
|
-
listPosts(sort,
|
|
754
|
-
return localVarFp.listPosts(sort,
|
|
791
|
+
listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
792
|
+
return localVarFp.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
755
793
|
},
|
|
756
794
|
publishPost(name, options) {
|
|
757
795
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -766,7 +804,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
766
804
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
767
805
|
}
|
|
768
806
|
listPosts(requestParameters = {}, options) {
|
|
769
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
807
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
770
808
|
}
|
|
771
809
|
publishPost(requestParameters, options) {
|
|
772
810
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -863,7 +901,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
863
901
|
options: localVarRequestOptions
|
|
864
902
|
};
|
|
865
903
|
},
|
|
866
|
-
listSinglePages: async (sort, keyword,
|
|
904
|
+
listSinglePages: async (sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
867
905
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
868
906
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
869
907
|
let baseOptions;
|
|
@@ -878,11 +916,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
878
916
|
if (sort !== void 0) {
|
|
879
917
|
localVarQueryParameter["sort"] = sort;
|
|
880
918
|
}
|
|
919
|
+
if (visible !== void 0) {
|
|
920
|
+
localVarQueryParameter["visible"] = visible;
|
|
921
|
+
}
|
|
881
922
|
if (keyword !== void 0) {
|
|
882
923
|
localVarQueryParameter["keyword"] = keyword;
|
|
883
924
|
}
|
|
884
|
-
if (
|
|
885
|
-
localVarQueryParameter["
|
|
925
|
+
if (contributor) {
|
|
926
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
886
927
|
}
|
|
887
928
|
if (sortOrder !== void 0) {
|
|
888
929
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -890,9 +931,6 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
890
931
|
if (publishPhase !== void 0) {
|
|
891
932
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
892
933
|
}
|
|
893
|
-
if (contributor) {
|
|
894
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
895
|
-
}
|
|
896
934
|
if (size !== void 0) {
|
|
897
935
|
localVarQueryParameter["size"] = size;
|
|
898
936
|
}
|
|
@@ -967,8 +1005,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
967
1005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
968
1006
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
969
1007
|
},
|
|
970
|
-
async listSinglePages(sort, keyword,
|
|
971
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword,
|
|
1008
|
+
async listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1009
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
|
|
972
1010
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
973
1011
|
},
|
|
974
1012
|
async publishSinglePage(name, options) {
|
|
@@ -987,8 +1025,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
987
1025
|
draftSinglePage(singlePageRequest, options) {
|
|
988
1026
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
989
1027
|
},
|
|
990
|
-
listSinglePages(sort, keyword,
|
|
991
|
-
return localVarFp.listSinglePages(sort, keyword,
|
|
1028
|
+
listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1029
|
+
return localVarFp.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
992
1030
|
},
|
|
993
1031
|
publishSinglePage(name, options) {
|
|
994
1032
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1003,7 +1041,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1003
1041
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1004
1042
|
}
|
|
1005
1043
|
listSinglePages(requestParameters = {}, options) {
|
|
1006
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1044
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1007
1045
|
}
|
|
1008
1046
|
publishSinglePage(requestParameters, options) {
|
|
1009
1047
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1493,12 +1531,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1493
1531
|
if (version !== void 0) {
|
|
1494
1532
|
localVarQueryParameter["version"] = version;
|
|
1495
1533
|
}
|
|
1496
|
-
if (group !== void 0) {
|
|
1497
|
-
localVarQueryParameter["group"] = group;
|
|
1498
|
-
}
|
|
1499
1534
|
if (kind !== void 0) {
|
|
1500
1535
|
localVarQueryParameter["kind"] = kind;
|
|
1501
1536
|
}
|
|
1537
|
+
if (group !== void 0) {
|
|
1538
|
+
localVarQueryParameter["group"] = group;
|
|
1539
|
+
}
|
|
1502
1540
|
if (size !== void 0) {
|
|
1503
1541
|
localVarQueryParameter["size"] = size;
|
|
1504
1542
|
}
|