@halo-dev/api-client 0.0.8 → 0.0.11

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
@@ -136,6 +136,59 @@ class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
136
136
  return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
137
137
  }
138
138
  }
139
+ const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
140
+ return {
141
+ installTheme: async (file, options = {}) => {
142
+ assertParamExists("installTheme", "file", file);
143
+ const localVarPath = `/apis/api.halo.run/v1alpha1/themes/install`;
144
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
145
+ let baseOptions;
146
+ if (configuration) {
147
+ baseOptions = configuration.baseOptions;
148
+ }
149
+ const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
150
+ const localVarHeaderParameter = {};
151
+ const localVarQueryParameter = {};
152
+ const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
153
+ setBasicAuthToObject(localVarRequestOptions, configuration);
154
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
155
+ if (file !== void 0) {
156
+ localVarFormParams.append("file", file);
157
+ }
158
+ localVarHeaderParameter["Content-Type"] = "multipart/form-data";
159
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
160
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
161
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
162
+ localVarRequestOptions.data = localVarFormParams;
163
+ return {
164
+ url: toPathString(localVarUrlObj),
165
+ options: localVarRequestOptions
166
+ };
167
+ }
168
+ };
169
+ };
170
+ const ApiHaloRunV1alpha1ThemeApiFp = function(configuration) {
171
+ const localVarAxiosParamCreator = ApiHaloRunV1alpha1ThemeApiAxiosParamCreator(configuration);
172
+ return {
173
+ async installTheme(file, options) {
174
+ const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
175
+ return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
176
+ }
177
+ };
178
+ };
179
+ const ApiHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, axios) {
180
+ const localVarFp = ApiHaloRunV1alpha1ThemeApiFp(configuration);
181
+ return {
182
+ installTheme(file, options) {
183
+ return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
184
+ }
185
+ };
186
+ };
187
+ class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
188
+ installTheme(file, options) {
189
+ return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(file, options).then((request) => request(this.axios, this.basePath));
190
+ }
191
+ }
139
192
  const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
140
193
  return {
141
194
  changePassword: async (name, changePasswordRequest, options = {}) => {
@@ -2568,6 +2621,10 @@ exports.ApiHaloRunV1alpha1PluginApi = ApiHaloRunV1alpha1PluginApi;
2568
2621
  exports.ApiHaloRunV1alpha1PluginApiAxiosParamCreator = ApiHaloRunV1alpha1PluginApiAxiosParamCreator;
2569
2622
  exports.ApiHaloRunV1alpha1PluginApiFactory = ApiHaloRunV1alpha1PluginApiFactory;
2570
2623
  exports.ApiHaloRunV1alpha1PluginApiFp = ApiHaloRunV1alpha1PluginApiFp;
2624
+ exports.ApiHaloRunV1alpha1ThemeApi = ApiHaloRunV1alpha1ThemeApi;
2625
+ exports.ApiHaloRunV1alpha1ThemeApiAxiosParamCreator = ApiHaloRunV1alpha1ThemeApiAxiosParamCreator;
2626
+ exports.ApiHaloRunV1alpha1ThemeApiFactory = ApiHaloRunV1alpha1ThemeApiFactory;
2627
+ exports.ApiHaloRunV1alpha1ThemeApiFp = ApiHaloRunV1alpha1ThemeApiFp;
2571
2628
  exports.ApiHaloRunV1alpha1UserApi = ApiHaloRunV1alpha1UserApi;
2572
2629
  exports.ApiHaloRunV1alpha1UserApiAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator;
2573
2630
  exports.ApiHaloRunV1alpha1UserApiFactory = ApiHaloRunV1alpha1UserApiFactory;
package/dist/index.d.ts CHANGED
@@ -431,6 +431,12 @@ interface LinkGroupSpec {
431
431
  * @memberof LinkGroupSpec
432
432
  */
433
433
  priority?: number;
434
+ /**
435
+ * Names of links below this group.
436
+ * @type {Set<string>}
437
+ * @memberof LinkGroupSpec
438
+ */
439
+ links?: Set<string>;
434
440
  }
435
441
  /**
436
442
  *
@@ -462,12 +468,6 @@ interface LinkSpec {
462
468
  * @memberof LinkSpec
463
469
  */
464
470
  description?: string;
465
- /**
466
- *
467
- * @type {string}
468
- * @memberof LinkSpec
469
- */
470
- groupName?: string;
471
471
  /**
472
472
  *
473
473
  * @type {number}
@@ -1812,6 +1812,61 @@ declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
1812
1812
  */
1813
1813
  installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
1814
1814
  }
1815
+ /**
1816
+ * ApiHaloRunV1alpha1ThemeApi - axios parameter creator
1817
+ * @export
1818
+ */
1819
+ declare const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
1820
+ /**
1821
+ * Install a theme by uploading a zip file.
1822
+ * @param {any} file
1823
+ * @param {*} [options] Override http request option.
1824
+ * @throws {RequiredError}
1825
+ */
1826
+ installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
1827
+ };
1828
+ /**
1829
+ * ApiHaloRunV1alpha1ThemeApi - functional programming interface
1830
+ * @export
1831
+ */
1832
+ declare const ApiHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
1833
+ /**
1834
+ * Install a theme by uploading a zip file.
1835
+ * @param {any} file
1836
+ * @param {*} [options] Override http request option.
1837
+ * @throws {RequiredError}
1838
+ */
1839
+ installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
1840
+ };
1841
+ /**
1842
+ * ApiHaloRunV1alpha1ThemeApi - factory interface
1843
+ * @export
1844
+ */
1845
+ declare const ApiHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1846
+ /**
1847
+ * Install a theme by uploading a zip file.
1848
+ * @param {any} file
1849
+ * @param {*} [options] Override http request option.
1850
+ * @throws {RequiredError}
1851
+ */
1852
+ installTheme(file: any, options?: any): AxiosPromise<Theme>;
1853
+ };
1854
+ /**
1855
+ * ApiHaloRunV1alpha1ThemeApi - object-oriented interface
1856
+ * @export
1857
+ * @class ApiHaloRunV1alpha1ThemeApi
1858
+ * @extends {BaseAPI}
1859
+ */
1860
+ declare class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
1861
+ /**
1862
+ * Install a theme by uploading a zip file.
1863
+ * @param {any} file
1864
+ * @param {*} [options] Override http request option.
1865
+ * @throws {RequiredError}
1866
+ * @memberof ApiHaloRunV1alpha1ThemeApi
1867
+ */
1868
+ installTheme(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
1869
+ }
1815
1870
  /**
1816
1871
  * ApiHaloRunV1alpha1UserApi - axios parameter creator
1817
1872
  * @export
@@ -4254,4 +4309,4 @@ declare class V1alpha1UserApi extends BaseAPI {
4254
4309
  updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
4255
4310
  }
4256
4311
 
4257
- export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Author, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
4312
+ export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Author, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
package/dist/index.mjs CHANGED
@@ -128,6 +128,59 @@ class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
128
128
  return ApiHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(file, options).then((request) => request(this.axios, this.basePath));
129
129
  }
130
130
  }
131
+ const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator = function(configuration) {
132
+ return {
133
+ installTheme: async (file, options = {}) => {
134
+ assertParamExists("installTheme", "file", file);
135
+ const localVarPath = `/apis/api.halo.run/v1alpha1/themes/install`;
136
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
137
+ let baseOptions;
138
+ if (configuration) {
139
+ baseOptions = configuration.baseOptions;
140
+ }
141
+ const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
142
+ const localVarHeaderParameter = {};
143
+ const localVarQueryParameter = {};
144
+ const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
145
+ setBasicAuthToObject(localVarRequestOptions, configuration);
146
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
147
+ if (file !== void 0) {
148
+ localVarFormParams.append("file", file);
149
+ }
150
+ localVarHeaderParameter["Content-Type"] = "multipart/form-data";
151
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
152
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
153
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
154
+ localVarRequestOptions.data = localVarFormParams;
155
+ return {
156
+ url: toPathString(localVarUrlObj),
157
+ options: localVarRequestOptions
158
+ };
159
+ }
160
+ };
161
+ };
162
+ const ApiHaloRunV1alpha1ThemeApiFp = function(configuration) {
163
+ const localVarAxiosParamCreator = ApiHaloRunV1alpha1ThemeApiAxiosParamCreator(configuration);
164
+ return {
165
+ async installTheme(file, options) {
166
+ const localVarAxiosArgs = await localVarAxiosParamCreator.installTheme(file, options);
167
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
168
+ }
169
+ };
170
+ };
171
+ const ApiHaloRunV1alpha1ThemeApiFactory = function(configuration, basePath, axios) {
172
+ const localVarFp = ApiHaloRunV1alpha1ThemeApiFp(configuration);
173
+ return {
174
+ installTheme(file, options) {
175
+ return localVarFp.installTheme(file, options).then((request) => request(axios, basePath));
176
+ }
177
+ };
178
+ };
179
+ class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
180
+ installTheme(file, options) {
181
+ return ApiHaloRunV1alpha1ThemeApiFp(this.configuration).installTheme(file, options).then((request) => request(this.axios, this.basePath));
182
+ }
183
+ }
131
184
  const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
132
185
  return {
133
186
  changePassword: async (name, changePasswordRequest, options = {}) => {
@@ -2556,4 +2609,4 @@ class Configuration {
2556
2609
  }
2557
2610
  }
2558
2611
 
2559
- export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
2612
+ export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Configuration, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@halo-dev/api-client",
3
- "version": "0.0.8",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "@halo-dev",