@halo-dev/api-client 0.0.60 → 0.0.61

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 CHANGED
@@ -546,7 +546,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
546
546
  options: localVarRequestOptions
547
547
  };
548
548
  },
549
- listPlugins: async (sort, keyword, enabled, size, page, labelSelector, fieldSelector, options = {}) => {
549
+ listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
550
550
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
551
551
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
552
552
  let baseOptions;
@@ -561,12 +561,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
561
561
  if (sort) {
562
562
  localVarQueryParameter["sort"] = Array.from(sort);
563
563
  }
564
- if (keyword !== void 0) {
565
- localVarQueryParameter["keyword"] = keyword;
566
- }
567
564
  if (enabled !== void 0) {
568
565
  localVarQueryParameter["enabled"] = enabled;
569
566
  }
567
+ if (keyword !== void 0) {
568
+ localVarQueryParameter["keyword"] = keyword;
569
+ }
570
570
  if (size !== void 0) {
571
571
  localVarQueryParameter["size"] = size;
572
572
  }
@@ -587,6 +587,27 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
587
587
  options: localVarRequestOptions
588
588
  };
589
589
  },
590
+ resetPluginSettingConfig: async (name, options = {}) => {
591
+ assertParamExists("resetPluginSettingConfig", "name", name);
592
+ const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/resetconfig`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
593
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
594
+ let baseOptions;
595
+ if (configuration) {
596
+ baseOptions = configuration.baseOptions;
597
+ }
598
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
599
+ const localVarHeaderParameter = {};
600
+ const localVarQueryParameter = {};
601
+ setBasicAuthToObject(localVarRequestOptions, configuration);
602
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
603
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
604
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
605
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
606
+ return {
607
+ url: toPathString(localVarUrlObj),
608
+ options: localVarRequestOptions
609
+ };
610
+ },
590
611
  upgradePlugin: async (name, file, options = {}) => {
591
612
  assertParamExists("upgradePlugin", "name", name);
592
613
  assertParamExists("upgradePlugin", "file", file);
@@ -624,8 +645,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
624
645
  const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
625
646
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
626
647
  },
627
- async listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
628
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options);
648
+ async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
649
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
650
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
651
+ },
652
+ async resetPluginSettingConfig(name, options) {
653
+ const localVarAxiosArgs = await localVarAxiosParamCreator.resetPluginSettingConfig(name, options);
629
654
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
630
655
  },
631
656
  async upgradePlugin(name, file, options) {
@@ -640,8 +665,11 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
640
665
  installPlugin(file, options) {
641
666
  return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
642
667
  },
643
- listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
644
- return localVarFp.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
668
+ listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
669
+ return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
670
+ },
671
+ resetPluginSettingConfig(name, options) {
672
+ return localVarFp.resetPluginSettingConfig(name, options).then((request) => request(axios, basePath));
645
673
  },
646
674
  upgradePlugin(name, file, options) {
647
675
  return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
@@ -653,7 +681,10 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
653
681
  return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
654
682
  }
655
683
  listPlugins(requestParameters = {}, options) {
656
- return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
684
+ return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
685
+ }
686
+ resetPluginSettingConfig(requestParameters, options) {
687
+ return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginSettingConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
657
688
  }
658
689
  upgradePlugin(requestParameters, options) {
659
690
  return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
@@ -685,7 +716,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
685
716
  options: localVarRequestOptions
686
717
  };
687
718
  },
688
- listPosts: async (sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
719
+ listPosts: async (sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
689
720
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
690
721
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
691
722
  let baseOptions;
@@ -700,14 +731,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
700
731
  if (sort !== void 0) {
701
732
  localVarQueryParameter["sort"] = sort;
702
733
  }
703
- if (keyword !== void 0) {
704
- localVarQueryParameter["keyword"] = keyword;
734
+ if (tag) {
735
+ localVarQueryParameter["tag"] = Array.from(tag);
705
736
  }
706
737
  if (visible !== void 0) {
707
738
  localVarQueryParameter["visible"] = visible;
708
739
  }
709
- if (tag) {
710
- localVarQueryParameter["tag"] = Array.from(tag);
740
+ if (keyword !== void 0) {
741
+ localVarQueryParameter["keyword"] = keyword;
742
+ }
743
+ if (contributor) {
744
+ localVarQueryParameter["contributor"] = Array.from(contributor);
711
745
  }
712
746
  if (sortOrder !== void 0) {
713
747
  localVarQueryParameter["sortOrder"] = sortOrder;
@@ -718,9 +752,6 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
718
752
  if (category) {
719
753
  localVarQueryParameter["category"] = Array.from(category);
720
754
  }
721
- if (contributor) {
722
- localVarQueryParameter["contributor"] = Array.from(contributor);
723
- }
724
755
  if (size !== void 0) {
725
756
  localVarQueryParameter["size"] = size;
726
757
  }
@@ -864,8 +895,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
864
895
  const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
865
896
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
866
897
  },
867
- async listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
868
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options);
898
+ async listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
899
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
869
900
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
870
901
  },
871
902
  async publishPost(name, headSnapshot, options) {
@@ -896,8 +927,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
896
927
  draftPost(postRequest, options) {
897
928
  return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
898
929
  },
899
- listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
900
- return localVarFp.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
930
+ listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
931
+ return localVarFp.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
901
932
  },
902
933
  publishPost(name, headSnapshot, options) {
903
934
  return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
@@ -921,7 +952,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
921
952
  return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
922
953
  }
923
954
  listPosts(requestParameters = {}, options) {
924
- return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.tag, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
955
+ return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
925
956
  }
926
957
  publishPost(requestParameters, options) {
927
958
  return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
@@ -1027,7 +1058,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1027
1058
  options: localVarRequestOptions
1028
1059
  };
1029
1060
  },
1030
- listSinglePages: async (sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
1061
+ listSinglePages: async (sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
1031
1062
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
1032
1063
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1033
1064
  let baseOptions;
@@ -1042,11 +1073,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1042
1073
  if (sort !== void 0) {
1043
1074
  localVarQueryParameter["sort"] = sort;
1044
1075
  }
1076
+ if (visible !== void 0) {
1077
+ localVarQueryParameter["visible"] = visible;
1078
+ }
1045
1079
  if (keyword !== void 0) {
1046
1080
  localVarQueryParameter["keyword"] = keyword;
1047
1081
  }
1048
- if (visible !== void 0) {
1049
- localVarQueryParameter["visible"] = visible;
1082
+ if (contributor) {
1083
+ localVarQueryParameter["contributor"] = Array.from(contributor);
1050
1084
  }
1051
1085
  if (sortOrder !== void 0) {
1052
1086
  localVarQueryParameter["sortOrder"] = sortOrder;
@@ -1054,9 +1088,6 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1054
1088
  if (publishPhase !== void 0) {
1055
1089
  localVarQueryParameter["publishPhase"] = publishPhase;
1056
1090
  }
1057
- if (contributor) {
1058
- localVarQueryParameter["contributor"] = Array.from(contributor);
1059
- }
1060
1091
  if (size !== void 0) {
1061
1092
  localVarQueryParameter["size"] = size;
1062
1093
  }
@@ -1155,8 +1186,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
1155
1186
  const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
1156
1187
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1157
1188
  },
1158
- async listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
1159
- const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options);
1189
+ async listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
1190
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
1160
1191
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1161
1192
  },
1162
1193
  async publishSinglePage(name, options) {
@@ -1179,8 +1210,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
1179
1210
  draftSinglePage(singlePageRequest, options) {
1180
1211
  return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
1181
1212
  },
1182
- listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
1183
- return localVarFp.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1213
+ listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
1214
+ return localVarFp.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1184
1215
  },
1185
1216
  publishSinglePage(name, options) {
1186
1217
  return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
@@ -1198,7 +1229,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
1198
1229
  return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
1199
1230
  }
1200
1231
  listSinglePages(requestParameters = {}, options) {
1201
- return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1232
+ return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1202
1233
  }
1203
1234
  publishSinglePage(requestParameters, options) {
1204
1235
  return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
@@ -1344,6 +1375,27 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
1344
1375
  options: localVarRequestOptions
1345
1376
  };
1346
1377
  },
1378
+ resetThemeSettingConfig: async (name, options = {}) => {
1379
+ assertParamExists("resetThemeSettingConfig", "name", name);
1380
+ const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes/{name}/resetconfig`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1381
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1382
+ let baseOptions;
1383
+ if (configuration) {
1384
+ baseOptions = configuration.baseOptions;
1385
+ }
1386
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1387
+ const localVarHeaderParameter = {};
1388
+ const localVarQueryParameter = {};
1389
+ setBasicAuthToObject(localVarRequestOptions, configuration);
1390
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1391
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1392
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1393
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1394
+ return {
1395
+ url: toPathString(localVarUrlObj),
1396
+ options: localVarRequestOptions
1397
+ };
1398
+ },
1347
1399
  upgradeTheme: async (name, file, options = {}) => {
1348
1400
  assertParamExists("upgradeTheme", "name", name);
1349
1401
  assertParamExists("upgradeTheme", "file", file);
@@ -1389,6 +1441,10 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
1389
1441
  const localVarAxiosArgs = await localVarAxiosParamCreator.reload(name, options);
1390
1442
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1391
1443
  },
1444
+ async resetThemeSettingConfig(name, options) {
1445
+ const localVarAxiosArgs = await localVarAxiosParamCreator.resetThemeSettingConfig(name, options);
1446
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
1447
+ },
1392
1448
  async upgradeTheme(name, file, options) {
1393
1449
  const localVarAxiosArgs = await localVarAxiosParamCreator.upgradeTheme(name, file, options);
1394
1450
  return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
@@ -1407,6 +1463,9 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
1407
1463
  reload(name, options) {
1408
1464
  return localVarFp.reload(name, options).then((request) => request(axios, basePath));
1409
1465
  },
1466
+ resetThemeSettingConfig(name, options) {
1467
+ return localVarFp.resetThemeSettingConfig(name, options).then((request) => request(axios, basePath));
1468
+ },
1410
1469
  upgradeTheme(name, file, options) {
1411
1470
  return localVarFp.upgradeTheme(name, file, options).then((request) => request(axios, basePath));
1412
1471
  }
@@ -1422,6 +1481,9 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
1422
1481
  reload(requestParameters, options) {
1423
1482
  return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reload(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1424
1483
  }
1484
+ resetThemeSettingConfig(requestParameters, options) {
1485
+ return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).resetThemeSettingConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1486
+ }
1425
1487
  upgradeTheme(requestParameters, options) {
1426
1488
  return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).upgradeTheme(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1427
1489
  }
@@ -1691,12 +1753,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
1691
1753
  if (version !== void 0) {
1692
1754
  localVarQueryParameter["version"] = version;
1693
1755
  }
1694
- if (group !== void 0) {
1695
- localVarQueryParameter["group"] = group;
1696
- }
1697
1756
  if (kind !== void 0) {
1698
1757
  localVarQueryParameter["kind"] = kind;
1699
1758
  }
1759
+ if (group !== void 0) {
1760
+ localVarQueryParameter["group"] = group;
1761
+ }
1700
1762
  if (size !== void 0) {
1701
1763
  localVarQueryParameter["size"] = size;
1702
1764
  }
@@ -1791,12 +1853,12 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
1791
1853
  const localVarQueryParameter = {};
1792
1854
  setBasicAuthToObject(localVarRequestOptions, configuration);
1793
1855
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1794
- if (keyword !== void 0) {
1795
- localVarQueryParameter["keyword"] = keyword;
1796
- }
1797
1856
  if (limit !== void 0) {
1798
1857
  localVarQueryParameter["limit"] = limit;
1799
1858
  }
1859
+ if (keyword !== void 0) {
1860
+ localVarQueryParameter["keyword"] = keyword;
1861
+ }
1800
1862
  if (highlightPreTag !== void 0) {
1801
1863
  localVarQueryParameter["highlightPreTag"] = highlightPreTag;
1802
1864
  }
package/dist/index.d.ts CHANGED
@@ -6811,6 +6811,12 @@ interface UserStatus {
6811
6811
  * @memberof UserStatus
6812
6812
  */
6813
6813
  lastLoginAt?: string;
6814
+ /**
6815
+ *
6816
+ * @type {string}
6817
+ * @memberof UserStatus
6818
+ */
6819
+ permalink?: string;
6814
6820
  /**
6815
6821
  *
6816
6822
  * @type {Array<LoginHistory>}
@@ -7739,8 +7745,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7739
7745
  /**
7740
7746
  * List plugins using query criteria and sort params
7741
7747
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7742
- * @param {string} [keyword] Keyword of plugin name or description
7743
7748
  * @param {boolean} [enabled] Whether the plugin is enabled
7749
+ * @param {string} [keyword] Keyword of plugin name or description
7744
7750
  * @param {number} [size] Size of one page. Zero indicates no limit.
7745
7751
  * @param {number} [page] The page number. Zero indicates no page.
7746
7752
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7748,7 +7754,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7748
7754
  * @param {*} [options] Override http request option.
7749
7755
  * @throws {RequiredError}
7750
7756
  */
7751
- listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7757
+ listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7758
+ /**
7759
+ * Reset plugin setting configMap.
7760
+ * @param {string} name
7761
+ * @param {*} [options] Override http request option.
7762
+ * @throws {RequiredError}
7763
+ */
7764
+ resetPluginSettingConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7752
7765
  /**
7753
7766
  * Upgrade a plugin by uploading a Jar file
7754
7767
  * @param {string} name
@@ -7773,8 +7786,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7773
7786
  /**
7774
7787
  * List plugins using query criteria and sort params
7775
7788
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7776
- * @param {string} [keyword] Keyword of plugin name or description
7777
7789
  * @param {boolean} [enabled] Whether the plugin is enabled
7790
+ * @param {string} [keyword] Keyword of plugin name or description
7778
7791
  * @param {number} [size] Size of one page. Zero indicates no limit.
7779
7792
  * @param {number} [page] The page number. Zero indicates no page.
7780
7793
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7782,7 +7795,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7782
7795
  * @param {*} [options] Override http request option.
7783
7796
  * @throws {RequiredError}
7784
7797
  */
7785
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7798
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7799
+ /**
7800
+ * Reset plugin setting configMap.
7801
+ * @param {string} name
7802
+ * @param {*} [options] Override http request option.
7803
+ * @throws {RequiredError}
7804
+ */
7805
+ resetPluginSettingConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
7786
7806
  /**
7787
7807
  * Upgrade a plugin by uploading a Jar file
7788
7808
  * @param {string} name
@@ -7807,8 +7827,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7807
7827
  /**
7808
7828
  * List plugins using query criteria and sort params
7809
7829
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7810
- * @param {string} [keyword] Keyword of plugin name or description
7811
7830
  * @param {boolean} [enabled] Whether the plugin is enabled
7831
+ * @param {string} [keyword] Keyword of plugin name or description
7812
7832
  * @param {number} [size] Size of one page. Zero indicates no limit.
7813
7833
  * @param {number} [page] The page number. Zero indicates no page.
7814
7834
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7816,7 +7836,14 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7816
7836
  * @param {*} [options] Override http request option.
7817
7837
  * @throws {RequiredError}
7818
7838
  */
7819
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7839
+ listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7840
+ /**
7841
+ * Reset plugin setting configMap.
7842
+ * @param {string} name
7843
+ * @param {*} [options] Override http request option.
7844
+ * @throws {RequiredError}
7845
+ */
7846
+ resetPluginSettingConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
7820
7847
  /**
7821
7848
  * Upgrade a plugin by uploading a Jar file
7822
7849
  * @param {string} name
@@ -7851,18 +7878,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7851
7878
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7852
7879
  */
7853
7880
  readonly sort?: Array<string>;
7854
- /**
7855
- * Keyword of plugin name or description
7856
- * @type {string}
7857
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7858
- */
7859
- readonly keyword?: string;
7860
7881
  /**
7861
7882
  * Whether the plugin is enabled
7862
7883
  * @type {boolean}
7863
7884
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7864
7885
  */
7865
7886
  readonly enabled?: boolean;
7887
+ /**
7888
+ * Keyword of plugin name or description
7889
+ * @type {string}
7890
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7891
+ */
7892
+ readonly keyword?: string;
7866
7893
  /**
7867
7894
  * Size of one page. Zero indicates no limit.
7868
7895
  * @type {number}
@@ -7888,6 +7915,19 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7888
7915
  */
7889
7916
  readonly fieldSelector?: Array<string>;
7890
7917
  }
7918
+ /**
7919
+ * Request parameters for resetPluginSettingConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
7920
+ * @export
7921
+ * @interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest
7922
+ */
7923
+ interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest {
7924
+ /**
7925
+ *
7926
+ * @type {string}
7927
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfig
7928
+ */
7929
+ readonly name: string;
7930
+ }
7891
7931
  /**
7892
7932
  * Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
7893
7933
  * @export
@@ -7930,6 +7970,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
7930
7970
  * @memberof ApiConsoleHaloRunV1alpha1PluginApi
7931
7971
  */
7932
7972
  listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
7973
+ /**
7974
+ * Reset plugin setting configMap.
7975
+ * @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest} requestParameters Request parameters.
7976
+ * @param {*} [options] Override http request option.
7977
+ * @throws {RequiredError}
7978
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApi
7979
+ */
7980
+ resetPluginSettingConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
7933
7981
  /**
7934
7982
  * Upgrade a plugin by uploading a Jar file
7935
7983
  * @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
@@ -7955,13 +8003,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
7955
8003
  /**
7956
8004
  * List posts.
7957
8005
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7958
- * @param {string} [keyword] Posts filtered by keyword.
7959
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7960
8006
  * @param {Array<string>} [tag]
8007
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8008
+ * @param {string} [keyword] Posts filtered by keyword.
8009
+ * @param {Array<string>} [contributor]
7961
8010
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7962
8011
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
7963
8012
  * @param {Array<string>} [category]
7964
- * @param {Array<string>} [contributor]
7965
8013
  * @param {number} [size] Size of one page. Zero indicates no limit.
7966
8014
  * @param {number} [page] The page number. Zero indicates no page.
7967
8015
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -7969,7 +8017,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
7969
8017
  * @param {*} [options] Override http request option.
7970
8018
  * @throws {RequiredError}
7971
8019
  */
7972
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8020
+ listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7973
8021
  /**
7974
8022
  * Publish a post.
7975
8023
  * @param {string} name
@@ -8024,13 +8072,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8024
8072
  /**
8025
8073
  * List posts.
8026
8074
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8027
- * @param {string} [keyword] Posts filtered by keyword.
8028
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8029
8075
  * @param {Array<string>} [tag]
8076
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8077
+ * @param {string} [keyword] Posts filtered by keyword.
8078
+ * @param {Array<string>} [contributor]
8030
8079
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8031
8080
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8032
8081
  * @param {Array<string>} [category]
8033
- * @param {Array<string>} [contributor]
8034
8082
  * @param {number} [size] Size of one page. Zero indicates no limit.
8035
8083
  * @param {number} [page] The page number. Zero indicates no page.
8036
8084
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8038,7 +8086,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8038
8086
  * @param {*} [options] Override http request option.
8039
8087
  * @throws {RequiredError}
8040
8088
  */
8041
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8089
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8042
8090
  /**
8043
8091
  * Publish a post.
8044
8092
  * @param {string} name
@@ -8093,13 +8141,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8093
8141
  /**
8094
8142
  * List posts.
8095
8143
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8096
- * @param {string} [keyword] Posts filtered by keyword.
8097
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8098
8144
  * @param {Array<string>} [tag]
8145
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8146
+ * @param {string} [keyword] Posts filtered by keyword.
8147
+ * @param {Array<string>} [contributor]
8099
8148
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8100
8149
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8101
8150
  * @param {Array<string>} [category]
8102
- * @param {Array<string>} [contributor]
8103
8151
  * @param {number} [size] Size of one page. Zero indicates no limit.
8104
8152
  * @param {number} [page] The page number. Zero indicates no page.
8105
8153
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8107,7 +8155,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8107
8155
  * @param {*} [options] Override http request option.
8108
8156
  * @throws {RequiredError}
8109
8157
  */
8110
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8158
+ listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, contributor?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8111
8159
  /**
8112
8160
  * Publish a post.
8113
8161
  * @param {string} name
@@ -8173,23 +8221,29 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8173
8221
  */
8174
8222
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8175
8223
  /**
8176
- * Posts filtered by keyword.
8177
- * @type {string}
8224
+ *
8225
+ * @type {Array<string>}
8178
8226
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8179
8227
  */
8180
- readonly keyword?: string;
8228
+ readonly tag?: Array<string>;
8181
8229
  /**
8182
8230
  *
8183
8231
  * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8184
8232
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8185
8233
  */
8186
8234
  readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8235
+ /**
8236
+ * Posts filtered by keyword.
8237
+ * @type {string}
8238
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8239
+ */
8240
+ readonly keyword?: string;
8187
8241
  /**
8188
8242
  *
8189
8243
  * @type {Array<string>}
8190
8244
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8191
8245
  */
8192
- readonly tag?: Array<string>;
8246
+ readonly contributor?: Array<string>;
8193
8247
  /**
8194
8248
  * ascending order If it is true; otherwise, it is in descending order.
8195
8249
  * @type {boolean}
@@ -8208,12 +8262,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8208
8262
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8209
8263
  */
8210
8264
  readonly category?: Array<string>;
8211
- /**
8212
- *
8213
- * @type {Array<string>}
8214
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8215
- */
8216
- readonly contributor?: Array<string>;
8217
8265
  /**
8218
8266
  * Size of one page. Zero indicates no limit.
8219
8267
  * @type {number}
@@ -8507,11 +8555,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8507
8555
  /**
8508
8556
  * List single pages.
8509
8557
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8510
- * @param {string} [keyword] SinglePages filtered by keyword.
8511
8558
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8559
+ * @param {string} [keyword] SinglePages filtered by keyword.
8560
+ * @param {Array<string>} [contributor]
8512
8561
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8513
8562
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8514
- * @param {Array<string>} [contributor]
8515
8563
  * @param {number} [size] Size of one page. Zero indicates no limit.
8516
8564
  * @param {number} [page] The page number. Zero indicates no page.
8517
8565
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8519,7 +8567,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8519
8567
  * @param {*} [options] Override http request option.
8520
8568
  * @throws {RequiredError}
8521
8569
  */
8522
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8570
+ listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, 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>;
8523
8571
  /**
8524
8572
  * Publish a single page.
8525
8573
  * @param {string} name
@@ -8559,11 +8607,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8559
8607
  /**
8560
8608
  * List single pages.
8561
8609
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8562
- * @param {string} [keyword] SinglePages filtered by keyword.
8563
8610
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8611
+ * @param {string} [keyword] SinglePages filtered by keyword.
8612
+ * @param {Array<string>} [contributor]
8564
8613
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8565
8614
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8566
- * @param {Array<string>} [contributor]
8567
8615
  * @param {number} [size] Size of one page. Zero indicates no limit.
8568
8616
  * @param {number} [page] The page number. Zero indicates no page.
8569
8617
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8571,7 +8619,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8571
8619
  * @param {*} [options] Override http request option.
8572
8620
  * @throws {RequiredError}
8573
8621
  */
8574
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8622
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, 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>>;
8575
8623
  /**
8576
8624
  * Publish a single page.
8577
8625
  * @param {string} name
@@ -8611,11 +8659,11 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8611
8659
  /**
8612
8660
  * List single pages.
8613
8661
  * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8614
- * @param {string} [keyword] SinglePages filtered by keyword.
8615
8662
  * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8663
+ * @param {string} [keyword] SinglePages filtered by keyword.
8664
+ * @param {Array<string>} [contributor]
8616
8665
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8617
8666
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8618
- * @param {Array<string>} [contributor]
8619
8667
  * @param {number} [size] Size of one page. Zero indicates no limit.
8620
8668
  * @param {number} [page] The page number. Zero indicates no page.
8621
8669
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -8623,7 +8671,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8623
8671
  * @param {*} [options] Override http request option.
8624
8672
  * @throws {RequiredError}
8625
8673
  */
8626
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
8674
+ listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, 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>;
8627
8675
  /**
8628
8676
  * Publish a single page.
8629
8677
  * @param {string} name
@@ -8673,6 +8721,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8673
8721
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8674
8722
  */
8675
8723
  readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8724
+ /**
8725
+ *
8726
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8727
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8728
+ */
8729
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8676
8730
  /**
8677
8731
  * SinglePages filtered by keyword.
8678
8732
  * @type {string}
@@ -8681,10 +8735,10 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8681
8735
  readonly keyword?: string;
8682
8736
  /**
8683
8737
  *
8684
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8738
+ * @type {Array<string>}
8685
8739
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8686
8740
  */
8687
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8741
+ readonly contributor?: Array<string>;
8688
8742
  /**
8689
8743
  * ascending order If it is true; otherwise, it is in descending order.
8690
8744
  * @type {boolean}
@@ -8697,12 +8751,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8697
8751
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8698
8752
  */
8699
8753
  readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8700
- /**
8701
- *
8702
- * @type {Array<string>}
8703
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8704
- */
8705
- readonly contributor?: Array<string>;
8706
8754
  /**
8707
8755
  * Size of one page. Zero indicates no limit.
8708
8756
  * @type {number}
@@ -8910,6 +8958,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
8910
8958
  * @throws {RequiredError}
8911
8959
  */
8912
8960
  reload: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8961
+ /**
8962
+ * Reset theme setting configMap.
8963
+ * @param {string} name
8964
+ * @param {*} [options] Override http request option.
8965
+ * @throws {RequiredError}
8966
+ */
8967
+ resetThemeSettingConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8913
8968
  /**
8914
8969
  * Upgrade theme
8915
8970
  * @param {string} name
@@ -8949,6 +9004,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8949
9004
  * @throws {RequiredError}
8950
9005
  */
8951
9006
  reload(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
9007
+ /**
9008
+ * Reset theme setting configMap.
9009
+ * @param {string} name
9010
+ * @param {*} [options] Override http request option.
9011
+ * @throws {RequiredError}
9012
+ */
9013
+ resetThemeSettingConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
8952
9014
  /**
8953
9015
  * Upgrade theme
8954
9016
  * @param {string} name
@@ -8988,6 +9050,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
8988
9050
  * @throws {RequiredError}
8989
9051
  */
8990
9052
  reload(name: string, options?: any): AxiosPromise<Theme>;
9053
+ /**
9054
+ * Reset theme setting configMap.
9055
+ * @param {string} name
9056
+ * @param {*} [options] Override http request option.
9057
+ * @throws {RequiredError}
9058
+ */
9059
+ resetThemeSettingConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
8991
9060
  /**
8992
9061
  * Upgrade theme
8993
9062
  * @param {string} name
@@ -9060,6 +9129,19 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest {
9060
9129
  */
9061
9130
  readonly name: string;
9062
9131
  }
9132
+ /**
9133
+ * Request parameters for resetThemeSettingConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
9134
+ * @export
9135
+ * @interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest
9136
+ */
9137
+ interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest {
9138
+ /**
9139
+ *
9140
+ * @type {string}
9141
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfig
9142
+ */
9143
+ readonly name: string;
9144
+ }
9063
9145
  /**
9064
9146
  * Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
9065
9147
  * @export
@@ -9110,6 +9192,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
9110
9192
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
9111
9193
  */
9112
9194
  reload(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
9195
+ /**
9196
+ * Reset theme setting configMap.
9197
+ * @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest} requestParameters Request parameters.
9198
+ * @param {*} [options] Override http request option.
9199
+ * @throws {RequiredError}
9200
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApi
9201
+ */
9202
+ resetThemeSettingConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
9113
9203
  /**
9114
9204
  * Upgrade theme
9115
9205
  * @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
@@ -9759,21 +9849,21 @@ declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) =>
9759
9849
  * @param {*} [options] Override http request option.
9760
9850
  * @throws {RequiredError}
9761
9851
  */
9762
- count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
9852
+ count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9763
9853
  /**
9764
9854
  * Downvote an extension resource.
9765
9855
  * @param {VoteRequest} voteRequest
9766
9856
  * @param {*} [options] Override http request option.
9767
9857
  * @throws {RequiredError}
9768
9858
  */
9769
- downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
9859
+ downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9770
9860
  /**
9771
9861
  * Upvote an extension resource.
9772
9862
  * @param {VoteRequest} voteRequest
9773
9863
  * @param {*} [options] Override http request option.
9774
9864
  * @throws {RequiredError}
9775
9865
  */
9776
- upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
9866
+ upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9777
9867
  };
9778
9868
  /**
9779
9869
  * ApiHaloRunV1alpha1TrackerApi - factory interface
@@ -9786,21 +9876,21 @@ declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuratio
9786
9876
  * @param {*} [options] Override http request option.
9787
9877
  * @throws {RequiredError}
9788
9878
  */
9789
- count(counterRequest: CounterRequest, options?: any): AxiosPromise<number>;
9879
+ count(counterRequest: CounterRequest, options?: any): AxiosPromise<void>;
9790
9880
  /**
9791
9881
  * Downvote an extension resource.
9792
9882
  * @param {VoteRequest} voteRequest
9793
9883
  * @param {*} [options] Override http request option.
9794
9884
  * @throws {RequiredError}
9795
9885
  */
9796
- downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
9886
+ downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<void>;
9797
9887
  /**
9798
9888
  * Upvote an extension resource.
9799
9889
  * @param {VoteRequest} voteRequest
9800
9890
  * @param {*} [options] Override http request option.
9801
9891
  * @throws {RequiredError}
9802
9892
  */
9803
- upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<number>;
9893
+ upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<void>;
9804
9894
  };
9805
9895
  /**
9806
9896
  * Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
@@ -9855,7 +9945,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
9855
9945
  * @throws {RequiredError}
9856
9946
  * @memberof ApiHaloRunV1alpha1TrackerApi
9857
9947
  */
9858
- count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
9948
+ count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9859
9949
  /**
9860
9950
  * Downvote an extension resource.
9861
9951
  * @param {ApiHaloRunV1alpha1TrackerApiDownvoteRequest} requestParameters Request parameters.
@@ -9863,7 +9953,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
9863
9953
  * @throws {RequiredError}
9864
9954
  * @memberof ApiHaloRunV1alpha1TrackerApi
9865
9955
  */
9866
- downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
9956
+ downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9867
9957
  /**
9868
9958
  * Upvote an extension resource.
9869
9959
  * @param {ApiHaloRunV1alpha1TrackerApiUpvoteRequest} requestParameters Request parameters.
@@ -9871,7 +9961,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
9871
9961
  * @throws {RequiredError}
9872
9962
  * @memberof ApiHaloRunV1alpha1TrackerApi
9873
9963
  */
9874
- upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<number, any>>;
9964
+ upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9875
9965
  }
9876
9966
 
9877
9967
  /**
@@ -16426,4 +16516,4 @@ declare class V1alpha1UserApi extends BaseAPI {
16426
16516
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
16427
16517
  }
16428
16518
 
16429
- export { 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, 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, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, 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, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, 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, 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 };
16519
+ export { 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, ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest, 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, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, 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, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, 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, 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
@@ -538,7 +538,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
538
538
  options: localVarRequestOptions
539
539
  };
540
540
  },
541
- listPlugins: async (sort, keyword, enabled, size, page, labelSelector, fieldSelector, options = {}) => {
541
+ listPlugins: async (sort, enabled, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
542
542
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
543
543
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
544
544
  let baseOptions;
@@ -553,12 +553,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
553
553
  if (sort) {
554
554
  localVarQueryParameter["sort"] = Array.from(sort);
555
555
  }
556
- if (keyword !== void 0) {
557
- localVarQueryParameter["keyword"] = keyword;
558
- }
559
556
  if (enabled !== void 0) {
560
557
  localVarQueryParameter["enabled"] = enabled;
561
558
  }
559
+ if (keyword !== void 0) {
560
+ localVarQueryParameter["keyword"] = keyword;
561
+ }
562
562
  if (size !== void 0) {
563
563
  localVarQueryParameter["size"] = size;
564
564
  }
@@ -579,6 +579,27 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
579
579
  options: localVarRequestOptions
580
580
  };
581
581
  },
582
+ resetPluginSettingConfig: async (name, options = {}) => {
583
+ assertParamExists("resetPluginSettingConfig", "name", name);
584
+ const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/resetconfig`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
585
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
586
+ let baseOptions;
587
+ if (configuration) {
588
+ baseOptions = configuration.baseOptions;
589
+ }
590
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
591
+ const localVarHeaderParameter = {};
592
+ const localVarQueryParameter = {};
593
+ setBasicAuthToObject(localVarRequestOptions, configuration);
594
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
595
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
596
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
597
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
598
+ return {
599
+ url: toPathString(localVarUrlObj),
600
+ options: localVarRequestOptions
601
+ };
602
+ },
582
603
  upgradePlugin: async (name, file, options = {}) => {
583
604
  assertParamExists("upgradePlugin", "name", name);
584
605
  assertParamExists("upgradePlugin", "file", file);
@@ -616,8 +637,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
616
637
  const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
617
638
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
618
639
  },
619
- async listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
620
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options);
640
+ async listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
641
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options);
642
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
643
+ },
644
+ async resetPluginSettingConfig(name, options) {
645
+ const localVarAxiosArgs = await localVarAxiosParamCreator.resetPluginSettingConfig(name, options);
621
646
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
622
647
  },
623
648
  async upgradePlugin(name, file, options) {
@@ -632,8 +657,11 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
632
657
  installPlugin(file, options) {
633
658
  return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
634
659
  },
635
- listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
636
- return localVarFp.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
660
+ listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options) {
661
+ return localVarFp.listPlugins(sort, enabled, keyword, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
662
+ },
663
+ resetPluginSettingConfig(name, options) {
664
+ return localVarFp.resetPluginSettingConfig(name, options).then((request) => request(axios, basePath));
637
665
  },
638
666
  upgradePlugin(name, file, options) {
639
667
  return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
@@ -645,7 +673,10 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
645
673
  return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
646
674
  }
647
675
  listPlugins(requestParameters = {}, options) {
648
- return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
676
+ return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.enabled, requestParameters.keyword, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
677
+ }
678
+ resetPluginSettingConfig(requestParameters, options) {
679
+ return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).resetPluginSettingConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
649
680
  }
650
681
  upgradePlugin(requestParameters, options) {
651
682
  return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
@@ -677,7 +708,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
677
708
  options: localVarRequestOptions
678
709
  };
679
710
  },
680
- listPosts: async (sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
711
+ listPosts: async (sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options = {}) => {
681
712
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
682
713
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
683
714
  let baseOptions;
@@ -692,14 +723,17 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
692
723
  if (sort !== void 0) {
693
724
  localVarQueryParameter["sort"] = sort;
694
725
  }
695
- if (keyword !== void 0) {
696
- localVarQueryParameter["keyword"] = keyword;
726
+ if (tag) {
727
+ localVarQueryParameter["tag"] = Array.from(tag);
697
728
  }
698
729
  if (visible !== void 0) {
699
730
  localVarQueryParameter["visible"] = visible;
700
731
  }
701
- if (tag) {
702
- localVarQueryParameter["tag"] = Array.from(tag);
732
+ if (keyword !== void 0) {
733
+ localVarQueryParameter["keyword"] = keyword;
734
+ }
735
+ if (contributor) {
736
+ localVarQueryParameter["contributor"] = Array.from(contributor);
703
737
  }
704
738
  if (sortOrder !== void 0) {
705
739
  localVarQueryParameter["sortOrder"] = sortOrder;
@@ -710,9 +744,6 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
710
744
  if (category) {
711
745
  localVarQueryParameter["category"] = Array.from(category);
712
746
  }
713
- if (contributor) {
714
- localVarQueryParameter["contributor"] = Array.from(contributor);
715
- }
716
747
  if (size !== void 0) {
717
748
  localVarQueryParameter["size"] = size;
718
749
  }
@@ -856,8 +887,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
856
887
  const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
857
888
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
858
889
  },
859
- async listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
860
- const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options);
890
+ async listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
891
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options);
861
892
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
862
893
  },
863
894
  async publishPost(name, headSnapshot, options) {
@@ -888,8 +919,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
888
919
  draftPost(postRequest, options) {
889
920
  return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
890
921
  },
891
- listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
892
- return localVarFp.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
922
+ listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options) {
923
+ return localVarFp.listPosts(sort, tag, visible, keyword, contributor, sortOrder, publishPhase, category, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
893
924
  },
894
925
  publishPost(name, headSnapshot, options) {
895
926
  return localVarFp.publishPost(name, headSnapshot, options).then((request) => request(axios, basePath));
@@ -913,7 +944,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
913
944
  return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
914
945
  }
915
946
  listPosts(requestParameters = {}, options) {
916
- return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.tag, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
947
+ return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.tag, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
917
948
  }
918
949
  publishPost(requestParameters, options) {
919
950
  return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, requestParameters.headSnapshot, options).then((request) => request(this.axios, this.basePath));
@@ -1019,7 +1050,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1019
1050
  options: localVarRequestOptions
1020
1051
  };
1021
1052
  },
1022
- listSinglePages: async (sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
1053
+ listSinglePages: async (sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options = {}) => {
1023
1054
  const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
1024
1055
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1025
1056
  let baseOptions;
@@ -1034,11 +1065,14 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1034
1065
  if (sort !== void 0) {
1035
1066
  localVarQueryParameter["sort"] = sort;
1036
1067
  }
1068
+ if (visible !== void 0) {
1069
+ localVarQueryParameter["visible"] = visible;
1070
+ }
1037
1071
  if (keyword !== void 0) {
1038
1072
  localVarQueryParameter["keyword"] = keyword;
1039
1073
  }
1040
- if (visible !== void 0) {
1041
- localVarQueryParameter["visible"] = visible;
1074
+ if (contributor) {
1075
+ localVarQueryParameter["contributor"] = Array.from(contributor);
1042
1076
  }
1043
1077
  if (sortOrder !== void 0) {
1044
1078
  localVarQueryParameter["sortOrder"] = sortOrder;
@@ -1046,9 +1080,6 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
1046
1080
  if (publishPhase !== void 0) {
1047
1081
  localVarQueryParameter["publishPhase"] = publishPhase;
1048
1082
  }
1049
- if (contributor) {
1050
- localVarQueryParameter["contributor"] = Array.from(contributor);
1051
- }
1052
1083
  if (size !== void 0) {
1053
1084
  localVarQueryParameter["size"] = size;
1054
1085
  }
@@ -1147,8 +1178,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
1147
1178
  const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
1148
1179
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1149
1180
  },
1150
- async listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
1151
- const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options);
1181
+ async listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
1182
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options);
1152
1183
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1153
1184
  },
1154
1185
  async publishSinglePage(name, options) {
@@ -1171,8 +1202,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
1171
1202
  draftSinglePage(singlePageRequest, options) {
1172
1203
  return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
1173
1204
  },
1174
- listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
1175
- return localVarFp.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1205
+ listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options) {
1206
+ return localVarFp.listSinglePages(sort, visible, keyword, contributor, sortOrder, publishPhase, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
1176
1207
  },
1177
1208
  publishSinglePage(name, options) {
1178
1209
  return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
@@ -1190,7 +1221,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
1190
1221
  return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
1191
1222
  }
1192
1223
  listSinglePages(requestParameters = {}, options) {
1193
- return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1224
+ return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.visible, requestParameters.keyword, requestParameters.contributor, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
1194
1225
  }
1195
1226
  publishSinglePage(requestParameters, options) {
1196
1227
  return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
@@ -1336,6 +1367,27 @@ const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuratio
1336
1367
  options: localVarRequestOptions
1337
1368
  };
1338
1369
  },
1370
+ resetThemeSettingConfig: async (name, options = {}) => {
1371
+ assertParamExists("resetThemeSettingConfig", "name", name);
1372
+ const localVarPath = `/apis/api.console.halo.run/v1alpha1/themes/{name}/resetconfig`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
1373
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1374
+ let baseOptions;
1375
+ if (configuration) {
1376
+ baseOptions = configuration.baseOptions;
1377
+ }
1378
+ const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
1379
+ const localVarHeaderParameter = {};
1380
+ const localVarQueryParameter = {};
1381
+ setBasicAuthToObject(localVarRequestOptions, configuration);
1382
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1383
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1384
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1385
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
1386
+ return {
1387
+ url: toPathString(localVarUrlObj),
1388
+ options: localVarRequestOptions
1389
+ };
1390
+ },
1339
1391
  upgradeTheme: async (name, file, options = {}) => {
1340
1392
  assertParamExists("upgradeTheme", "name", name);
1341
1393
  assertParamExists("upgradeTheme", "file", file);
@@ -1381,6 +1433,10 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFp = function(configuration) {
1381
1433
  const localVarAxiosArgs = await localVarAxiosParamCreator.reload(name, options);
1382
1434
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1383
1435
  },
1436
+ async resetThemeSettingConfig(name, options) {
1437
+ const localVarAxiosArgs = await localVarAxiosParamCreator.resetThemeSettingConfig(name, options);
1438
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1439
+ },
1384
1440
  async upgradeTheme(name, file, options) {
1385
1441
  const localVarAxiosArgs = await localVarAxiosParamCreator.upgradeTheme(name, file, options);
1386
1442
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
@@ -1399,6 +1455,9 @@ const ApiConsoleHaloRunV1alpha1ThemeApiFactory = function(configuration, basePat
1399
1455
  reload(name, options) {
1400
1456
  return localVarFp.reload(name, options).then((request) => request(axios, basePath));
1401
1457
  },
1458
+ resetThemeSettingConfig(name, options) {
1459
+ return localVarFp.resetThemeSettingConfig(name, options).then((request) => request(axios, basePath));
1460
+ },
1402
1461
  upgradeTheme(name, file, options) {
1403
1462
  return localVarFp.upgradeTheme(name, file, options).then((request) => request(axios, basePath));
1404
1463
  }
@@ -1414,6 +1473,9 @@ class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
1414
1473
  reload(requestParameters, options) {
1415
1474
  return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).reload(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1416
1475
  }
1476
+ resetThemeSettingConfig(requestParameters, options) {
1477
+ return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).resetThemeSettingConfig(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
1478
+ }
1417
1479
  upgradeTheme(requestParameters, options) {
1418
1480
  return ApiConsoleHaloRunV1alpha1ThemeApiFp(this.configuration).upgradeTheme(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1419
1481
  }
@@ -1683,12 +1745,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
1683
1745
  if (version !== void 0) {
1684
1746
  localVarQueryParameter["version"] = version;
1685
1747
  }
1686
- if (group !== void 0) {
1687
- localVarQueryParameter["group"] = group;
1688
- }
1689
1748
  if (kind !== void 0) {
1690
1749
  localVarQueryParameter["kind"] = kind;
1691
1750
  }
1751
+ if (group !== void 0) {
1752
+ localVarQueryParameter["group"] = group;
1753
+ }
1692
1754
  if (size !== void 0) {
1693
1755
  localVarQueryParameter["size"] = size;
1694
1756
  }
@@ -1783,12 +1845,12 @@ const ApiHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
1783
1845
  const localVarQueryParameter = {};
1784
1846
  setBasicAuthToObject(localVarRequestOptions, configuration);
1785
1847
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
1786
- if (keyword !== void 0) {
1787
- localVarQueryParameter["keyword"] = keyword;
1788
- }
1789
1848
  if (limit !== void 0) {
1790
1849
  localVarQueryParameter["limit"] = limit;
1791
1850
  }
1851
+ if (keyword !== void 0) {
1852
+ localVarQueryParameter["keyword"] = keyword;
1853
+ }
1792
1854
  if (highlightPreTag !== void 0) {
1793
1855
  localVarQueryParameter["highlightPreTag"] = highlightPreTag;
1794
1856
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halo-dev/api-client",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "@halo-dev",