@halo-dev/api-client 0.0.68 → 0.0.69
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 +114 -18
- package/dist/index.d.ts +160 -25
- package/dist/index.mjs +114 -18
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -519,6 +519,48 @@ class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
|
|
|
519
519
|
|
|
520
520
|
const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
521
521
|
return {
|
|
522
|
+
fetchPluginConfig: async (name, options = {}) => {
|
|
523
|
+
assertParamExists("fetchPluginConfig", "name", name);
|
|
524
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/config`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
525
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
526
|
+
let baseOptions;
|
|
527
|
+
if (configuration) {
|
|
528
|
+
baseOptions = configuration.baseOptions;
|
|
529
|
+
}
|
|
530
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
531
|
+
const localVarHeaderParameter = {};
|
|
532
|
+
const localVarQueryParameter = {};
|
|
533
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
534
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
535
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
536
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
537
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
538
|
+
return {
|
|
539
|
+
url: toPathString(localVarUrlObj),
|
|
540
|
+
options: localVarRequestOptions
|
|
541
|
+
};
|
|
542
|
+
},
|
|
543
|
+
fetchPluginSetting: async (name, options = {}) => {
|
|
544
|
+
assertParamExists("fetchPluginSetting", "name", name);
|
|
545
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/setting`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
546
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
547
|
+
let baseOptions;
|
|
548
|
+
if (configuration) {
|
|
549
|
+
baseOptions = configuration.baseOptions;
|
|
550
|
+
}
|
|
551
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
552
|
+
const localVarHeaderParameter = {};
|
|
553
|
+
const localVarQueryParameter = {};
|
|
554
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
555
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
556
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
557
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
558
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
559
|
+
return {
|
|
560
|
+
url: toPathString(localVarUrlObj),
|
|
561
|
+
options: localVarRequestOptions
|
|
562
|
+
};
|
|
563
|
+
},
|
|
522
564
|
installPlugin: async (file, options = {}) => {
|
|
523
565
|
assertParamExists("installPlugin", "file", file);
|
|
524
566
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/install`;
|
|
@@ -608,6 +650,30 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
608
650
|
options: localVarRequestOptions
|
|
609
651
|
};
|
|
610
652
|
},
|
|
653
|
+
updatePluginConfig: async (name, configMap, options = {}) => {
|
|
654
|
+
assertParamExists("updatePluginConfig", "name", name);
|
|
655
|
+
assertParamExists("updatePluginConfig", "configMap", configMap);
|
|
656
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/config`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
657
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
658
|
+
let baseOptions;
|
|
659
|
+
if (configuration) {
|
|
660
|
+
baseOptions = configuration.baseOptions;
|
|
661
|
+
}
|
|
662
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
663
|
+
const localVarHeaderParameter = {};
|
|
664
|
+
const localVarQueryParameter = {};
|
|
665
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
666
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
667
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
668
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
669
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
670
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
671
|
+
localVarRequestOptions.data = serializeDataIfNeeded(configMap, localVarRequestOptions, configuration);
|
|
672
|
+
return {
|
|
673
|
+
url: toPathString(localVarUrlObj),
|
|
674
|
+
options: localVarRequestOptions
|
|
675
|
+
};
|
|
676
|
+
},
|
|
611
677
|
upgradePlugin: async (name, file, options = {}) => {
|
|
612
678
|
assertParamExists("upgradePlugin", "name", name);
|
|
613
679
|
assertParamExists("upgradePlugin", "file", file);
|
|
@@ -641,6 +707,14 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
641
707
|
const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
642
708
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
643
709
|
return {
|
|
710
|
+
async fetchPluginConfig(name, options) {
|
|
711
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPluginConfig(name, options);
|
|
712
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
713
|
+
},
|
|
714
|
+
async fetchPluginSetting(name, options) {
|
|
715
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPluginSetting(name, options);
|
|
716
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
717
|
+
},
|
|
644
718
|
async installPlugin(file, options) {
|
|
645
719
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
646
720
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
@@ -653,6 +727,10 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
653
727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.resetPluginConfig(name, options);
|
|
654
728
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
655
729
|
},
|
|
730
|
+
async updatePluginConfig(name, configMap, options) {
|
|
731
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatePluginConfig(name, configMap, options);
|
|
732
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
733
|
+
},
|
|
656
734
|
async upgradePlugin(name, file, options) {
|
|
657
735
|
const localVarAxiosArgs = await localVarAxiosParamCreator.upgradePlugin(name, file, options);
|
|
658
736
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
@@ -662,6 +740,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
662
740
|
const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
663
741
|
const localVarFp = ApiConsoleHaloRunV1alpha1PluginApiFp(configuration);
|
|
664
742
|
return {
|
|
743
|
+
fetchPluginConfig(name, options) {
|
|
744
|
+
return localVarFp.fetchPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
745
|
+
},
|
|
746
|
+
fetchPluginSetting(name, options) {
|
|
747
|
+
return localVarFp.fetchPluginSetting(name, options).then((request) => request(axios, basePath));
|
|
748
|
+
},
|
|
665
749
|
installPlugin(file, options) {
|
|
666
750
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
667
751
|
},
|
|
@@ -671,12 +755,21 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
671
755
|
resetPluginConfig(name, options) {
|
|
672
756
|
return localVarFp.resetPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
673
757
|
},
|
|
758
|
+
updatePluginConfig(name, configMap, options) {
|
|
759
|
+
return localVarFp.updatePluginConfig(name, configMap, options).then((request) => request(axios, basePath));
|
|
760
|
+
},
|
|
674
761
|
upgradePlugin(name, file, options) {
|
|
675
762
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
676
763
|
}
|
|
677
764
|
};
|
|
678
765
|
};
|
|
679
766
|
class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
767
|
+
fetchPluginConfig(requestParameters, options) {
|
|
768
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).fetchPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
769
|
+
}
|
|
770
|
+
fetchPluginSetting(requestParameters, options) {
|
|
771
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).fetchPluginSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
772
|
+
}
|
|
680
773
|
installPlugin(requestParameters, options) {
|
|
681
774
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
682
775
|
}
|
|
@@ -686,6 +779,9 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
686
779
|
resetPluginConfig(requestParameters, options) {
|
|
687
780
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
688
781
|
}
|
|
782
|
+
updatePluginConfig(requestParameters, options) {
|
|
783
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).updatePluginConfig(requestParameters.name, requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
|
|
784
|
+
}
|
|
689
785
|
upgradePlugin(requestParameters, options) {
|
|
690
786
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
691
787
|
}
|
|
@@ -716,7 +812,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
716
812
|
options: localVarRequestOptions
|
|
717
813
|
};
|
|
718
814
|
},
|
|
719
|
-
listPosts: async (sort, tag,
|
|
815
|
+
listPosts: async (sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
720
816
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
721
817
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
722
818
|
let baseOptions;
|
|
@@ -734,12 +830,12 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
734
830
|
if (tag) {
|
|
735
831
|
localVarQueryParameter["tag"] = Array.from(tag);
|
|
736
832
|
}
|
|
737
|
-
if (visible !== void 0) {
|
|
738
|
-
localVarQueryParameter["visible"] = visible;
|
|
739
|
-
}
|
|
740
833
|
if (keyword !== void 0) {
|
|
741
834
|
localVarQueryParameter["keyword"] = keyword;
|
|
742
835
|
}
|
|
836
|
+
if (visible !== void 0) {
|
|
837
|
+
localVarQueryParameter["visible"] = visible;
|
|
838
|
+
}
|
|
743
839
|
if (contributor) {
|
|
744
840
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
745
841
|
}
|
|
@@ -895,8 +991,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
895
991
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
896
992
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
897
993
|
},
|
|
898
|
-
async listPosts(sort, tag,
|
|
899
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag,
|
|
994
|
+
async listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
995
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
|
|
900
996
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
901
997
|
},
|
|
902
998
|
async publishPost(name, headSnapshot, options) {
|
|
@@ -927,8 +1023,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
927
1023
|
draftPost(postRequest, options) {
|
|
928
1024
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
929
1025
|
},
|
|
930
|
-
listPosts(sort, tag,
|
|
931
|
-
return localVarFp.listPosts(sort, tag,
|
|
1026
|
+
listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
1027
|
+
return localVarFp.listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
932
1028
|
},
|
|
933
1029
|
publishPost(name, headSnapshot, options) {
|
|
934
1030
|
return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
|
|
@@ -952,7 +1048,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
952
1048
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
953
1049
|
}
|
|
954
1050
|
listPosts(requestParameters = {}, options) {
|
|
955
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.
|
|
1051
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
956
1052
|
}
|
|
957
1053
|
publishPost(requestParameters, options) {
|
|
958
1054
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1058,7 +1154,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1058
1154
|
options: localVarRequestOptions
|
|
1059
1155
|
};
|
|
1060
1156
|
},
|
|
1061
|
-
listSinglePages: async (sort,
|
|
1157
|
+
listSinglePages: async (sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
1062
1158
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
1063
1159
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1064
1160
|
let baseOptions;
|
|
@@ -1073,12 +1169,12 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1073
1169
|
if (sort !== void 0) {
|
|
1074
1170
|
localVarQueryParameter["sort"] = sort;
|
|
1075
1171
|
}
|
|
1076
|
-
if (visible !== void 0) {
|
|
1077
|
-
localVarQueryParameter["visible"] = visible;
|
|
1078
|
-
}
|
|
1079
1172
|
if (keyword !== void 0) {
|
|
1080
1173
|
localVarQueryParameter["keyword"] = keyword;
|
|
1081
1174
|
}
|
|
1175
|
+
if (visible !== void 0) {
|
|
1176
|
+
localVarQueryParameter["visible"] = visible;
|
|
1177
|
+
}
|
|
1082
1178
|
if (contributor) {
|
|
1083
1179
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
1084
1180
|
}
|
|
@@ -1186,8 +1282,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1186
1282
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1187
1283
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1188
1284
|
},
|
|
1189
|
-
async listSinglePages(sort,
|
|
1190
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
1285
|
+
async listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1286
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
|
|
1191
1287
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1192
1288
|
},
|
|
1193
1289
|
async publishSinglePage(name, options) {
|
|
@@ -1210,8 +1306,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1210
1306
|
draftSinglePage(singlePageRequest, options) {
|
|
1211
1307
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1212
1308
|
},
|
|
1213
|
-
listSinglePages(sort,
|
|
1214
|
-
return localVarFp.listSinglePages(sort,
|
|
1309
|
+
listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1310
|
+
return localVarFp.listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1215
1311
|
},
|
|
1216
1312
|
publishSinglePage(name, options) {
|
|
1217
1313
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1229,7 +1325,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1229
1325
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1230
1326
|
}
|
|
1231
1327
|
listSinglePages(requestParameters = {}, options) {
|
|
1232
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1328
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1233
1329
|
}
|
|
1234
1330
|
publishSinglePage(requestParameters, options) {
|
|
1235
1331
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
package/dist/index.d.ts
CHANGED
|
@@ -7941,6 +7941,20 @@ declare class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
|
|
|
7941
7941
|
* @export
|
|
7942
7942
|
*/
|
|
7943
7943
|
declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7944
|
+
/**
|
|
7945
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
7946
|
+
* @param {string} name
|
|
7947
|
+
* @param {*} [options] Override http request option.
|
|
7948
|
+
* @throws {RequiredError}
|
|
7949
|
+
*/
|
|
7950
|
+
fetchPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7951
|
+
/**
|
|
7952
|
+
* Fetch setting of plugin.
|
|
7953
|
+
* @param {string} name
|
|
7954
|
+
* @param {*} [options] Override http request option.
|
|
7955
|
+
* @throws {RequiredError}
|
|
7956
|
+
*/
|
|
7957
|
+
fetchPluginSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7944
7958
|
/**
|
|
7945
7959
|
* Install a plugin by uploading a Jar file.
|
|
7946
7960
|
* @param {any} file
|
|
@@ -7968,6 +7982,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7968
7982
|
* @throws {RequiredError}
|
|
7969
7983
|
*/
|
|
7970
7984
|
resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7985
|
+
/**
|
|
7986
|
+
* Update the configMap of plugin setting.
|
|
7987
|
+
* @param {string} name
|
|
7988
|
+
* @param {ConfigMap} configMap
|
|
7989
|
+
* @param {*} [options] Override http request option.
|
|
7990
|
+
* @throws {RequiredError}
|
|
7991
|
+
*/
|
|
7992
|
+
updatePluginConfig: (name: string, configMap: ConfigMap, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7971
7993
|
/**
|
|
7972
7994
|
* Upgrade a plugin by uploading a Jar file
|
|
7973
7995
|
* @param {string} name
|
|
@@ -7982,6 +8004,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7982
8004
|
* @export
|
|
7983
8005
|
*/
|
|
7984
8006
|
declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
8007
|
+
/**
|
|
8008
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8009
|
+
* @param {string} name
|
|
8010
|
+
* @param {*} [options] Override http request option.
|
|
8011
|
+
* @throws {RequiredError}
|
|
8012
|
+
*/
|
|
8013
|
+
fetchPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8014
|
+
/**
|
|
8015
|
+
* Fetch setting of plugin.
|
|
8016
|
+
* @param {string} name
|
|
8017
|
+
* @param {*} [options] Override http request option.
|
|
8018
|
+
* @throws {RequiredError}
|
|
8019
|
+
*/
|
|
8020
|
+
fetchPluginSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
7985
8021
|
/**
|
|
7986
8022
|
* Install a plugin by uploading a Jar file.
|
|
7987
8023
|
* @param {any} file
|
|
@@ -8009,6 +8045,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
8009
8045
|
* @throws {RequiredError}
|
|
8010
8046
|
*/
|
|
8011
8047
|
resetPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8048
|
+
/**
|
|
8049
|
+
* Update the configMap of plugin setting.
|
|
8050
|
+
* @param {string} name
|
|
8051
|
+
* @param {ConfigMap} configMap
|
|
8052
|
+
* @param {*} [options] Override http request option.
|
|
8053
|
+
* @throws {RequiredError}
|
|
8054
|
+
*/
|
|
8055
|
+
updatePluginConfig(name: string, configMap: ConfigMap, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8012
8056
|
/**
|
|
8013
8057
|
* Upgrade a plugin by uploading a Jar file
|
|
8014
8058
|
* @param {string} name
|
|
@@ -8023,6 +8067,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
8023
8067
|
* @export
|
|
8024
8068
|
*/
|
|
8025
8069
|
declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8070
|
+
/**
|
|
8071
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8072
|
+
* @param {string} name
|
|
8073
|
+
* @param {*} [options] Override http request option.
|
|
8074
|
+
* @throws {RequiredError}
|
|
8075
|
+
*/
|
|
8076
|
+
fetchPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
8077
|
+
/**
|
|
8078
|
+
* Fetch setting of plugin.
|
|
8079
|
+
* @param {string} name
|
|
8080
|
+
* @param {*} [options] Override http request option.
|
|
8081
|
+
* @throws {RequiredError}
|
|
8082
|
+
*/
|
|
8083
|
+
fetchPluginSetting(name: string, options?: any): AxiosPromise<Setting>;
|
|
8026
8084
|
/**
|
|
8027
8085
|
* Install a plugin by uploading a Jar file.
|
|
8028
8086
|
* @param {any} file
|
|
@@ -8050,6 +8108,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8050
8108
|
* @throws {RequiredError}
|
|
8051
8109
|
*/
|
|
8052
8110
|
resetPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
8111
|
+
/**
|
|
8112
|
+
* Update the configMap of plugin setting.
|
|
8113
|
+
* @param {string} name
|
|
8114
|
+
* @param {ConfigMap} configMap
|
|
8115
|
+
* @param {*} [options] Override http request option.
|
|
8116
|
+
* @throws {RequiredError}
|
|
8117
|
+
*/
|
|
8118
|
+
updatePluginConfig(name: string, configMap: ConfigMap, options?: any): AxiosPromise<ConfigMap>;
|
|
8053
8119
|
/**
|
|
8054
8120
|
* Upgrade a plugin by uploading a Jar file
|
|
8055
8121
|
* @param {string} name
|
|
@@ -8059,6 +8125,32 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8059
8125
|
*/
|
|
8060
8126
|
upgradePlugin(name: string, file: any, options?: any): AxiosPromise<void>;
|
|
8061
8127
|
};
|
|
8128
|
+
/**
|
|
8129
|
+
* Request parameters for fetchPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8130
|
+
* @export
|
|
8131
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest
|
|
8132
|
+
*/
|
|
8133
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest {
|
|
8134
|
+
/**
|
|
8135
|
+
*
|
|
8136
|
+
* @type {string}
|
|
8137
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfig
|
|
8138
|
+
*/
|
|
8139
|
+
readonly name: string;
|
|
8140
|
+
}
|
|
8141
|
+
/**
|
|
8142
|
+
* Request parameters for fetchPluginSetting operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8143
|
+
* @export
|
|
8144
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest
|
|
8145
|
+
*/
|
|
8146
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest {
|
|
8147
|
+
/**
|
|
8148
|
+
*
|
|
8149
|
+
* @type {string}
|
|
8150
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSetting
|
|
8151
|
+
*/
|
|
8152
|
+
readonly name: string;
|
|
8153
|
+
}
|
|
8062
8154
|
/**
|
|
8063
8155
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8064
8156
|
* @export
|
|
@@ -8134,6 +8226,25 @@ interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest {
|
|
|
8134
8226
|
*/
|
|
8135
8227
|
readonly name: string;
|
|
8136
8228
|
}
|
|
8229
|
+
/**
|
|
8230
|
+
* Request parameters for updatePluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8231
|
+
* @export
|
|
8232
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest
|
|
8233
|
+
*/
|
|
8234
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest {
|
|
8235
|
+
/**
|
|
8236
|
+
*
|
|
8237
|
+
* @type {string}
|
|
8238
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfig
|
|
8239
|
+
*/
|
|
8240
|
+
readonly name: string;
|
|
8241
|
+
/**
|
|
8242
|
+
*
|
|
8243
|
+
* @type {ConfigMap}
|
|
8244
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfig
|
|
8245
|
+
*/
|
|
8246
|
+
readonly configMap: ConfigMap;
|
|
8247
|
+
}
|
|
8137
8248
|
/**
|
|
8138
8249
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
8139
8250
|
* @export
|
|
@@ -8160,6 +8271,22 @@ interface ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest {
|
|
|
8160
8271
|
* @extends {BaseAPI}
|
|
8161
8272
|
*/
|
|
8162
8273
|
declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
8274
|
+
/**
|
|
8275
|
+
* Fetch configMap of plugin by configured configMapName.
|
|
8276
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest} requestParameters Request parameters.
|
|
8277
|
+
* @param {*} [options] Override http request option.
|
|
8278
|
+
* @throws {RequiredError}
|
|
8279
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8280
|
+
*/
|
|
8281
|
+
fetchPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8282
|
+
/**
|
|
8283
|
+
* Fetch setting of plugin.
|
|
8284
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest} requestParameters Request parameters.
|
|
8285
|
+
* @param {*} [options] Override http request option.
|
|
8286
|
+
* @throws {RequiredError}
|
|
8287
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8288
|
+
*/
|
|
8289
|
+
fetchPluginSetting(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
8163
8290
|
/**
|
|
8164
8291
|
* Install a plugin by uploading a Jar file.
|
|
8165
8292
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
|
|
@@ -8184,6 +8311,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
8184
8311
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8185
8312
|
*/
|
|
8186
8313
|
resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8314
|
+
/**
|
|
8315
|
+
* Update the configMap of plugin setting.
|
|
8316
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest} requestParameters Request parameters.
|
|
8317
|
+
* @param {*} [options] Override http request option.
|
|
8318
|
+
* @throws {RequiredError}
|
|
8319
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
8320
|
+
*/
|
|
8321
|
+
updatePluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
8187
8322
|
/**
|
|
8188
8323
|
* Upgrade a plugin by uploading a Jar file
|
|
8189
8324
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
@@ -8210,8 +8345,8 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8210
8345
|
* List posts.
|
|
8211
8346
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8212
8347
|
* @param {Array<string>} [tag]
|
|
8213
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8214
8348
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8349
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8215
8350
|
* @param {Array<string>} [contributor]
|
|
8216
8351
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8217
8352
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8223,7 +8358,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8223
8358
|
* @param {*} [options] Override http request option.
|
|
8224
8359
|
* @throws {RequiredError}
|
|
8225
8360
|
*/
|
|
8226
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
8361
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8227
8362
|
/**
|
|
8228
8363
|
* Publish a post.
|
|
8229
8364
|
* @param {string} name
|
|
@@ -8279,8 +8414,8 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8279
8414
|
* List posts.
|
|
8280
8415
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8281
8416
|
* @param {Array<string>} [tag]
|
|
8282
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8283
8417
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8418
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8284
8419
|
* @param {Array<string>} [contributor]
|
|
8285
8420
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8286
8421
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8292,7 +8427,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8292
8427
|
* @param {*} [options] Override http request option.
|
|
8293
8428
|
* @throws {RequiredError}
|
|
8294
8429
|
*/
|
|
8295
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
8430
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8296
8431
|
/**
|
|
8297
8432
|
* Publish a post.
|
|
8298
8433
|
* @param {string} name
|
|
@@ -8348,8 +8483,8 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8348
8483
|
* List posts.
|
|
8349
8484
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8350
8485
|
* @param {Array<string>} [tag]
|
|
8351
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8352
8486
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8487
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8353
8488
|
* @param {Array<string>} [contributor]
|
|
8354
8489
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8355
8490
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8361,7 +8496,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8361
8496
|
* @param {*} [options] Override http request option.
|
|
8362
8497
|
* @throws {RequiredError}
|
|
8363
8498
|
*/
|
|
8364
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
8499
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
8365
8500
|
/**
|
|
8366
8501
|
* Publish a post.
|
|
8367
8502
|
* @param {string} name
|
|
@@ -8432,18 +8567,18 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8432
8567
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8433
8568
|
*/
|
|
8434
8569
|
readonly tag?: Array<string>;
|
|
8435
|
-
/**
|
|
8436
|
-
*
|
|
8437
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8438
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8439
|
-
*/
|
|
8440
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8441
8570
|
/**
|
|
8442
8571
|
* Posts filtered by keyword.
|
|
8443
8572
|
* @type {string}
|
|
8444
8573
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8445
8574
|
*/
|
|
8446
8575
|
readonly keyword?: string;
|
|
8576
|
+
/**
|
|
8577
|
+
*
|
|
8578
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8579
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8580
|
+
*/
|
|
8581
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8447
8582
|
/**
|
|
8448
8583
|
*
|
|
8449
8584
|
* @type {Array<string>}
|
|
@@ -8761,8 +8896,8 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8761
8896
|
/**
|
|
8762
8897
|
* List single pages.
|
|
8763
8898
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8764
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8765
8899
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8900
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8766
8901
|
* @param {Array<string>} [contributor]
|
|
8767
8902
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8768
8903
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8773,7 +8908,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8773
8908
|
* @param {*} [options] Override http request option.
|
|
8774
8909
|
* @throws {RequiredError}
|
|
8775
8910
|
*/
|
|
8776
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
8911
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8777
8912
|
/**
|
|
8778
8913
|
* Publish a single page.
|
|
8779
8914
|
* @param {string} name
|
|
@@ -8813,8 +8948,8 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8813
8948
|
/**
|
|
8814
8949
|
* List single pages.
|
|
8815
8950
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8816
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8817
8951
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8952
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8818
8953
|
* @param {Array<string>} [contributor]
|
|
8819
8954
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8820
8955
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8825,7 +8960,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8825
8960
|
* @param {*} [options] Override http request option.
|
|
8826
8961
|
* @throws {RequiredError}
|
|
8827
8962
|
*/
|
|
8828
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
8963
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8829
8964
|
/**
|
|
8830
8965
|
* Publish a single page.
|
|
8831
8966
|
* @param {string} name
|
|
@@ -8865,8 +9000,8 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8865
9000
|
/**
|
|
8866
9001
|
* List single pages.
|
|
8867
9002
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8868
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8869
9003
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
9004
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8870
9005
|
* @param {Array<string>} [contributor]
|
|
8871
9006
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8872
9007
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
@@ -8877,7 +9012,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8877
9012
|
* @param {*} [options] Override http request option.
|
|
8878
9013
|
* @throws {RequiredError}
|
|
8879
9014
|
*/
|
|
8880
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
9015
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8881
9016
|
/**
|
|
8882
9017
|
* Publish a single page.
|
|
8883
9018
|
* @param {string} name
|
|
@@ -8927,18 +9062,18 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8927
9062
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8928
9063
|
*/
|
|
8929
9064
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8930
|
-
/**
|
|
8931
|
-
*
|
|
8932
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8933
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8934
|
-
*/
|
|
8935
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8936
9065
|
/**
|
|
8937
9066
|
* SinglePages filtered by keyword.
|
|
8938
9067
|
* @type {string}
|
|
8939
9068
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8940
9069
|
*/
|
|
8941
9070
|
readonly keyword?: string;
|
|
9071
|
+
/**
|
|
9072
|
+
*
|
|
9073
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
9074
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
9075
|
+
*/
|
|
9076
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8942
9077
|
/**
|
|
8943
9078
|
*
|
|
8944
9079
|
* @type {Array<string>}
|
|
@@ -17308,4 +17443,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
17308
17443
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
17309
17444
|
}
|
|
17310
17445
|
|
|
17311
|
-
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, MigrationControllerApi, MigrationControllerApiAxiosParamCreator, MigrationControllerApiFactory, MigrationControllerApiFp, MigrationControllerApiImportMigrationDataRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, 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 };
|
|
17446
|
+
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, MigrationControllerApi, MigrationControllerApiAxiosParamCreator, MigrationControllerApiFactory, MigrationControllerApiFp, MigrationControllerApiImportMigrationDataRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, 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
|
@@ -511,6 +511,48 @@ class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
|
|
|
511
511
|
|
|
512
512
|
const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
513
513
|
return {
|
|
514
|
+
fetchPluginConfig: async (name, options = {}) => {
|
|
515
|
+
assertParamExists("fetchPluginConfig", "name", name);
|
|
516
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/config`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
517
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
518
|
+
let baseOptions;
|
|
519
|
+
if (configuration) {
|
|
520
|
+
baseOptions = configuration.baseOptions;
|
|
521
|
+
}
|
|
522
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
523
|
+
const localVarHeaderParameter = {};
|
|
524
|
+
const localVarQueryParameter = {};
|
|
525
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
526
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
527
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
528
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
529
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
530
|
+
return {
|
|
531
|
+
url: toPathString(localVarUrlObj),
|
|
532
|
+
options: localVarRequestOptions
|
|
533
|
+
};
|
|
534
|
+
},
|
|
535
|
+
fetchPluginSetting: async (name, options = {}) => {
|
|
536
|
+
assertParamExists("fetchPluginSetting", "name", name);
|
|
537
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/setting`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
538
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
539
|
+
let baseOptions;
|
|
540
|
+
if (configuration) {
|
|
541
|
+
baseOptions = configuration.baseOptions;
|
|
542
|
+
}
|
|
543
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
544
|
+
const localVarHeaderParameter = {};
|
|
545
|
+
const localVarQueryParameter = {};
|
|
546
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
547
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
548
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
549
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
550
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
551
|
+
return {
|
|
552
|
+
url: toPathString(localVarUrlObj),
|
|
553
|
+
options: localVarRequestOptions
|
|
554
|
+
};
|
|
555
|
+
},
|
|
514
556
|
installPlugin: async (file, options = {}) => {
|
|
515
557
|
assertParamExists("installPlugin", "file", file);
|
|
516
558
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/install`;
|
|
@@ -600,6 +642,30 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
600
642
|
options: localVarRequestOptions
|
|
601
643
|
};
|
|
602
644
|
},
|
|
645
|
+
updatePluginConfig: async (name, configMap, options = {}) => {
|
|
646
|
+
assertParamExists("updatePluginConfig", "name", name);
|
|
647
|
+
assertParamExists("updatePluginConfig", "configMap", configMap);
|
|
648
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/config`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
649
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
650
|
+
let baseOptions;
|
|
651
|
+
if (configuration) {
|
|
652
|
+
baseOptions = configuration.baseOptions;
|
|
653
|
+
}
|
|
654
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
655
|
+
const localVarHeaderParameter = {};
|
|
656
|
+
const localVarQueryParameter = {};
|
|
657
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
658
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
659
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
660
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
661
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
662
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
663
|
+
localVarRequestOptions.data = serializeDataIfNeeded(configMap, localVarRequestOptions, configuration);
|
|
664
|
+
return {
|
|
665
|
+
url: toPathString(localVarUrlObj),
|
|
666
|
+
options: localVarRequestOptions
|
|
667
|
+
};
|
|
668
|
+
},
|
|
603
669
|
upgradePlugin: async (name, file, options = {}) => {
|
|
604
670
|
assertParamExists("upgradePlugin", "name", name);
|
|
605
671
|
assertParamExists("upgradePlugin", "file", file);
|
|
@@ -633,6 +699,14 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
633
699
|
const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
634
700
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
635
701
|
return {
|
|
702
|
+
async fetchPluginConfig(name, options) {
|
|
703
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPluginConfig(name, options);
|
|
704
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
705
|
+
},
|
|
706
|
+
async fetchPluginSetting(name, options) {
|
|
707
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchPluginSetting(name, options);
|
|
708
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
709
|
+
},
|
|
636
710
|
async installPlugin(file, options) {
|
|
637
711
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
638
712
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
@@ -645,6 +719,10 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
645
719
|
const localVarAxiosArgs = await localVarAxiosParamCreator.resetPluginConfig(name, options);
|
|
646
720
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
647
721
|
},
|
|
722
|
+
async updatePluginConfig(name, configMap, options) {
|
|
723
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatePluginConfig(name, configMap, options);
|
|
724
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
725
|
+
},
|
|
648
726
|
async upgradePlugin(name, file, options) {
|
|
649
727
|
const localVarAxiosArgs = await localVarAxiosParamCreator.upgradePlugin(name, file, options);
|
|
650
728
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
@@ -654,6 +732,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
654
732
|
const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
655
733
|
const localVarFp = ApiConsoleHaloRunV1alpha1PluginApiFp(configuration);
|
|
656
734
|
return {
|
|
735
|
+
fetchPluginConfig(name, options) {
|
|
736
|
+
return localVarFp.fetchPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
737
|
+
},
|
|
738
|
+
fetchPluginSetting(name, options) {
|
|
739
|
+
return localVarFp.fetchPluginSetting(name, options).then((request) => request(axios, basePath));
|
|
740
|
+
},
|
|
657
741
|
installPlugin(file, options) {
|
|
658
742
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
659
743
|
},
|
|
@@ -663,12 +747,21 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
663
747
|
resetPluginConfig(name, options) {
|
|
664
748
|
return localVarFp.resetPluginConfig(name, options).then((request) => request(axios, basePath));
|
|
665
749
|
},
|
|
750
|
+
updatePluginConfig(name, configMap, options) {
|
|
751
|
+
return localVarFp.updatePluginConfig(name, configMap, options).then((request) => request(axios, basePath));
|
|
752
|
+
},
|
|
666
753
|
upgradePlugin(name, file, options) {
|
|
667
754
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
668
755
|
}
|
|
669
756
|
};
|
|
670
757
|
};
|
|
671
758
|
class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
759
|
+
fetchPluginConfig(requestParameters, options) {
|
|
760
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).fetchPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
761
|
+
}
|
|
762
|
+
fetchPluginSetting(requestParameters, options) {
|
|
763
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).fetchPluginSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
764
|
+
}
|
|
672
765
|
installPlugin(requestParameters, options) {
|
|
673
766
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
674
767
|
}
|
|
@@ -678,6 +771,9 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
678
771
|
resetPluginConfig(requestParameters, options) {
|
|
679
772
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
680
773
|
}
|
|
774
|
+
updatePluginConfig(requestParameters, options) {
|
|
775
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).updatePluginConfig(requestParameters.name, requestParameters.configMap, options).then((request) => request(this.axios, this.basePath));
|
|
776
|
+
}
|
|
681
777
|
upgradePlugin(requestParameters, options) {
|
|
682
778
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
683
779
|
}
|
|
@@ -708,7 +804,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
708
804
|
options: localVarRequestOptions
|
|
709
805
|
};
|
|
710
806
|
},
|
|
711
|
-
listPosts: async (sort, tag,
|
|
807
|
+
listPosts: async (sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
712
808
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
713
809
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
714
810
|
let baseOptions;
|
|
@@ -726,12 +822,12 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
726
822
|
if (tag) {
|
|
727
823
|
localVarQueryParameter["tag"] = Array.from(tag);
|
|
728
824
|
}
|
|
729
|
-
if (visible !== void 0) {
|
|
730
|
-
localVarQueryParameter["visible"] = visible;
|
|
731
|
-
}
|
|
732
825
|
if (keyword !== void 0) {
|
|
733
826
|
localVarQueryParameter["keyword"] = keyword;
|
|
734
827
|
}
|
|
828
|
+
if (visible !== void 0) {
|
|
829
|
+
localVarQueryParameter["visible"] = visible;
|
|
830
|
+
}
|
|
735
831
|
if (contributor) {
|
|
736
832
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
737
833
|
}
|
|
@@ -887,8 +983,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
887
983
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
888
984
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
889
985
|
},
|
|
890
|
-
async listPosts(sort, tag,
|
|
891
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag,
|
|
986
|
+
async listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
987
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
|
|
892
988
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
893
989
|
},
|
|
894
990
|
async publishPost(name, headSnapshot, options) {
|
|
@@ -919,8 +1015,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
919
1015
|
draftPost(postRequest, options) {
|
|
920
1016
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
921
1017
|
},
|
|
922
|
-
listPosts(sort, tag,
|
|
923
|
-
return localVarFp.listPosts(sort, tag,
|
|
1018
|
+
listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
|
|
1019
|
+
return localVarFp.listPosts(sort, tag, keyword, visible, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
924
1020
|
},
|
|
925
1021
|
publishPost(name, headSnapshot, options) {
|
|
926
1022
|
return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
|
|
@@ -944,7 +1040,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
944
1040
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
945
1041
|
}
|
|
946
1042
|
listPosts(requestParameters = {}, options) {
|
|
947
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.
|
|
1043
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
948
1044
|
}
|
|
949
1045
|
publishPost(requestParameters, options) {
|
|
950
1046
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1050,7 +1146,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1050
1146
|
options: localVarRequestOptions
|
|
1051
1147
|
};
|
|
1052
1148
|
},
|
|
1053
|
-
listSinglePages: async (sort,
|
|
1149
|
+
listSinglePages: async (sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
1054
1150
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
1055
1151
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1056
1152
|
let baseOptions;
|
|
@@ -1065,12 +1161,12 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
1065
1161
|
if (sort !== void 0) {
|
|
1066
1162
|
localVarQueryParameter["sort"] = sort;
|
|
1067
1163
|
}
|
|
1068
|
-
if (visible !== void 0) {
|
|
1069
|
-
localVarQueryParameter["visible"] = visible;
|
|
1070
|
-
}
|
|
1071
1164
|
if (keyword !== void 0) {
|
|
1072
1165
|
localVarQueryParameter["keyword"] = keyword;
|
|
1073
1166
|
}
|
|
1167
|
+
if (visible !== void 0) {
|
|
1168
|
+
localVarQueryParameter["visible"] = visible;
|
|
1169
|
+
}
|
|
1074
1170
|
if (contributor) {
|
|
1075
1171
|
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
1076
1172
|
}
|
|
@@ -1178,8 +1274,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1178
1274
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1179
1275
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1180
1276
|
},
|
|
1181
|
-
async listSinglePages(sort,
|
|
1182
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
1277
|
+
async listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1278
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
|
|
1183
1279
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1184
1280
|
},
|
|
1185
1281
|
async publishSinglePage(name, options) {
|
|
@@ -1202,8 +1298,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1202
1298
|
draftSinglePage(singlePageRequest, options) {
|
|
1203
1299
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1204
1300
|
},
|
|
1205
|
-
listSinglePages(sort,
|
|
1206
|
-
return localVarFp.listSinglePages(sort,
|
|
1301
|
+
listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
|
|
1302
|
+
return localVarFp.listSinglePages(sort, keyword, visible, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1207
1303
|
},
|
|
1208
1304
|
publishSinglePage(name, options) {
|
|
1209
1305
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1221,7 +1317,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1221
1317
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1222
1318
|
}
|
|
1223
1319
|
listSinglePages(requestParameters = {}, options) {
|
|
1224
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1320
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1225
1321
|
}
|
|
1226
1322
|
publishSinglePage(requestParameters, options) {
|
|
1227
1323
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|