@halo-dev/api-client 2.4.0-rc.1 → 2.4.1
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 +376 -0
- package/dist/index.d.ts +511 -1
- package/dist/index.mjs +369 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4097,6 +4097,76 @@ class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
4097
4097
|
}
|
|
4098
4098
|
}
|
|
4099
4099
|
|
|
4100
|
+
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
4101
|
+
return {
|
|
4102
|
+
signUp: async (signUpRequest, options = {}) => {
|
|
4103
|
+
assertParamExists("signUp", "signUpRequest", signUpRequest);
|
|
4104
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-/signup`;
|
|
4105
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4106
|
+
let baseOptions;
|
|
4107
|
+
if (configuration) {
|
|
4108
|
+
baseOptions = configuration.baseOptions;
|
|
4109
|
+
}
|
|
4110
|
+
const localVarRequestOptions = {
|
|
4111
|
+
method: "POST",
|
|
4112
|
+
...baseOptions,
|
|
4113
|
+
...options
|
|
4114
|
+
};
|
|
4115
|
+
const localVarHeaderParameter = {};
|
|
4116
|
+
const localVarQueryParameter = {};
|
|
4117
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4118
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4119
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4120
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4121
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4122
|
+
localVarRequestOptions.headers = {
|
|
4123
|
+
...localVarHeaderParameter,
|
|
4124
|
+
...headersFromBaseOptions,
|
|
4125
|
+
...options.headers
|
|
4126
|
+
};
|
|
4127
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
4128
|
+
signUpRequest,
|
|
4129
|
+
localVarRequestOptions,
|
|
4130
|
+
configuration
|
|
4131
|
+
);
|
|
4132
|
+
return {
|
|
4133
|
+
url: toPathString(localVarUrlObj),
|
|
4134
|
+
options: localVarRequestOptions
|
|
4135
|
+
};
|
|
4136
|
+
}
|
|
4137
|
+
};
|
|
4138
|
+
};
|
|
4139
|
+
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
4140
|
+
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
4141
|
+
return {
|
|
4142
|
+
async signUp(signUpRequest, options) {
|
|
4143
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.signUp(
|
|
4144
|
+
signUpRequest,
|
|
4145
|
+
options
|
|
4146
|
+
);
|
|
4147
|
+
return createRequestFunction(
|
|
4148
|
+
localVarAxiosArgs,
|
|
4149
|
+
globalAxios__default,
|
|
4150
|
+
BASE_PATH,
|
|
4151
|
+
configuration
|
|
4152
|
+
);
|
|
4153
|
+
}
|
|
4154
|
+
};
|
|
4155
|
+
};
|
|
4156
|
+
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
4157
|
+
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
4158
|
+
return {
|
|
4159
|
+
signUp(requestParameters, options) {
|
|
4160
|
+
return localVarFp.signUp(requestParameters.signUpRequest, options).then((request) => request(axios, basePath));
|
|
4161
|
+
}
|
|
4162
|
+
};
|
|
4163
|
+
};
|
|
4164
|
+
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
4165
|
+
signUp(requestParameters, options) {
|
|
4166
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).signUp(requestParameters.signUpRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4167
|
+
}
|
|
4168
|
+
}
|
|
4169
|
+
|
|
4100
4170
|
const AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator = function(configuration) {
|
|
4101
4171
|
return {
|
|
4102
4172
|
createauthHaloRunV1alpha1AuthProvider: async (authProvider, options = {}) => {
|
|
@@ -12599,6 +12669,304 @@ class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
12599
12669
|
}
|
|
12600
12670
|
}
|
|
12601
12671
|
|
|
12672
|
+
const V1alpha1SecretApiAxiosParamCreator = function(configuration) {
|
|
12673
|
+
return {
|
|
12674
|
+
createv1alpha1Secret: async (secret, options = {}) => {
|
|
12675
|
+
const localVarPath = `/api/v1alpha1/secrets`;
|
|
12676
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12677
|
+
let baseOptions;
|
|
12678
|
+
if (configuration) {
|
|
12679
|
+
baseOptions = configuration.baseOptions;
|
|
12680
|
+
}
|
|
12681
|
+
const localVarRequestOptions = {
|
|
12682
|
+
method: "POST",
|
|
12683
|
+
...baseOptions,
|
|
12684
|
+
...options
|
|
12685
|
+
};
|
|
12686
|
+
const localVarHeaderParameter = {};
|
|
12687
|
+
const localVarQueryParameter = {};
|
|
12688
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
12689
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
12690
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
12691
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12692
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12693
|
+
localVarRequestOptions.headers = {
|
|
12694
|
+
...localVarHeaderParameter,
|
|
12695
|
+
...headersFromBaseOptions,
|
|
12696
|
+
...options.headers
|
|
12697
|
+
};
|
|
12698
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
12699
|
+
secret,
|
|
12700
|
+
localVarRequestOptions,
|
|
12701
|
+
configuration
|
|
12702
|
+
);
|
|
12703
|
+
return {
|
|
12704
|
+
url: toPathString(localVarUrlObj),
|
|
12705
|
+
options: localVarRequestOptions
|
|
12706
|
+
};
|
|
12707
|
+
},
|
|
12708
|
+
deletev1alpha1Secret: async (name, options = {}) => {
|
|
12709
|
+
assertParamExists("deletev1alpha1Secret", "name", name);
|
|
12710
|
+
const localVarPath = `/api/v1alpha1/secrets/{name}`.replace(
|
|
12711
|
+
`{${"name"}}`,
|
|
12712
|
+
encodeURIComponent(String(name))
|
|
12713
|
+
);
|
|
12714
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12715
|
+
let baseOptions;
|
|
12716
|
+
if (configuration) {
|
|
12717
|
+
baseOptions = configuration.baseOptions;
|
|
12718
|
+
}
|
|
12719
|
+
const localVarRequestOptions = {
|
|
12720
|
+
method: "DELETE",
|
|
12721
|
+
...baseOptions,
|
|
12722
|
+
...options
|
|
12723
|
+
};
|
|
12724
|
+
const localVarHeaderParameter = {};
|
|
12725
|
+
const localVarQueryParameter = {};
|
|
12726
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
12727
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
12728
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12729
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12730
|
+
localVarRequestOptions.headers = {
|
|
12731
|
+
...localVarHeaderParameter,
|
|
12732
|
+
...headersFromBaseOptions,
|
|
12733
|
+
...options.headers
|
|
12734
|
+
};
|
|
12735
|
+
return {
|
|
12736
|
+
url: toPathString(localVarUrlObj),
|
|
12737
|
+
options: localVarRequestOptions
|
|
12738
|
+
};
|
|
12739
|
+
},
|
|
12740
|
+
getv1alpha1Secret: async (name, options = {}) => {
|
|
12741
|
+
assertParamExists("getv1alpha1Secret", "name", name);
|
|
12742
|
+
const localVarPath = `/api/v1alpha1/secrets/{name}`.replace(
|
|
12743
|
+
`{${"name"}}`,
|
|
12744
|
+
encodeURIComponent(String(name))
|
|
12745
|
+
);
|
|
12746
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12747
|
+
let baseOptions;
|
|
12748
|
+
if (configuration) {
|
|
12749
|
+
baseOptions = configuration.baseOptions;
|
|
12750
|
+
}
|
|
12751
|
+
const localVarRequestOptions = {
|
|
12752
|
+
method: "GET",
|
|
12753
|
+
...baseOptions,
|
|
12754
|
+
...options
|
|
12755
|
+
};
|
|
12756
|
+
const localVarHeaderParameter = {};
|
|
12757
|
+
const localVarQueryParameter = {};
|
|
12758
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
12759
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
12760
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12761
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12762
|
+
localVarRequestOptions.headers = {
|
|
12763
|
+
...localVarHeaderParameter,
|
|
12764
|
+
...headersFromBaseOptions,
|
|
12765
|
+
...options.headers
|
|
12766
|
+
};
|
|
12767
|
+
return {
|
|
12768
|
+
url: toPathString(localVarUrlObj),
|
|
12769
|
+
options: localVarRequestOptions
|
|
12770
|
+
};
|
|
12771
|
+
},
|
|
12772
|
+
listv1alpha1Secret: async (size, labelSelector, fieldSelector, page, options = {}) => {
|
|
12773
|
+
const localVarPath = `/api/v1alpha1/secrets`;
|
|
12774
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12775
|
+
let baseOptions;
|
|
12776
|
+
if (configuration) {
|
|
12777
|
+
baseOptions = configuration.baseOptions;
|
|
12778
|
+
}
|
|
12779
|
+
const localVarRequestOptions = {
|
|
12780
|
+
method: "GET",
|
|
12781
|
+
...baseOptions,
|
|
12782
|
+
...options
|
|
12783
|
+
};
|
|
12784
|
+
const localVarHeaderParameter = {};
|
|
12785
|
+
const localVarQueryParameter = {};
|
|
12786
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
12787
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
12788
|
+
if (size !== void 0) {
|
|
12789
|
+
localVarQueryParameter["size"] = size;
|
|
12790
|
+
}
|
|
12791
|
+
if (labelSelector) {
|
|
12792
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
12793
|
+
}
|
|
12794
|
+
if (fieldSelector) {
|
|
12795
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
12796
|
+
}
|
|
12797
|
+
if (page !== void 0) {
|
|
12798
|
+
localVarQueryParameter["page"] = page;
|
|
12799
|
+
}
|
|
12800
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12801
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12802
|
+
localVarRequestOptions.headers = {
|
|
12803
|
+
...localVarHeaderParameter,
|
|
12804
|
+
...headersFromBaseOptions,
|
|
12805
|
+
...options.headers
|
|
12806
|
+
};
|
|
12807
|
+
return {
|
|
12808
|
+
url: toPathString(localVarUrlObj),
|
|
12809
|
+
options: localVarRequestOptions
|
|
12810
|
+
};
|
|
12811
|
+
},
|
|
12812
|
+
updatev1alpha1Secret: async (name, secret, options = {}) => {
|
|
12813
|
+
assertParamExists("updatev1alpha1Secret", "name", name);
|
|
12814
|
+
const localVarPath = `/api/v1alpha1/secrets/{name}`.replace(
|
|
12815
|
+
`{${"name"}}`,
|
|
12816
|
+
encodeURIComponent(String(name))
|
|
12817
|
+
);
|
|
12818
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12819
|
+
let baseOptions;
|
|
12820
|
+
if (configuration) {
|
|
12821
|
+
baseOptions = configuration.baseOptions;
|
|
12822
|
+
}
|
|
12823
|
+
const localVarRequestOptions = {
|
|
12824
|
+
method: "PUT",
|
|
12825
|
+
...baseOptions,
|
|
12826
|
+
...options
|
|
12827
|
+
};
|
|
12828
|
+
const localVarHeaderParameter = {};
|
|
12829
|
+
const localVarQueryParameter = {};
|
|
12830
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
12831
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
12832
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
12833
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12834
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12835
|
+
localVarRequestOptions.headers = {
|
|
12836
|
+
...localVarHeaderParameter,
|
|
12837
|
+
...headersFromBaseOptions,
|
|
12838
|
+
...options.headers
|
|
12839
|
+
};
|
|
12840
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
12841
|
+
secret,
|
|
12842
|
+
localVarRequestOptions,
|
|
12843
|
+
configuration
|
|
12844
|
+
);
|
|
12845
|
+
return {
|
|
12846
|
+
url: toPathString(localVarUrlObj),
|
|
12847
|
+
options: localVarRequestOptions
|
|
12848
|
+
};
|
|
12849
|
+
}
|
|
12850
|
+
};
|
|
12851
|
+
};
|
|
12852
|
+
const V1alpha1SecretApiFp = function(configuration) {
|
|
12853
|
+
const localVarAxiosParamCreator = V1alpha1SecretApiAxiosParamCreator(configuration);
|
|
12854
|
+
return {
|
|
12855
|
+
async createv1alpha1Secret(secret, options) {
|
|
12856
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createv1alpha1Secret(secret, options);
|
|
12857
|
+
return createRequestFunction(
|
|
12858
|
+
localVarAxiosArgs,
|
|
12859
|
+
globalAxios__default,
|
|
12860
|
+
BASE_PATH,
|
|
12861
|
+
configuration
|
|
12862
|
+
);
|
|
12863
|
+
},
|
|
12864
|
+
async deletev1alpha1Secret(name, options) {
|
|
12865
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletev1alpha1Secret(name, options);
|
|
12866
|
+
return createRequestFunction(
|
|
12867
|
+
localVarAxiosArgs,
|
|
12868
|
+
globalAxios__default,
|
|
12869
|
+
BASE_PATH,
|
|
12870
|
+
configuration
|
|
12871
|
+
);
|
|
12872
|
+
},
|
|
12873
|
+
async getv1alpha1Secret(name, options) {
|
|
12874
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1Secret(name, options);
|
|
12875
|
+
return createRequestFunction(
|
|
12876
|
+
localVarAxiosArgs,
|
|
12877
|
+
globalAxios__default,
|
|
12878
|
+
BASE_PATH,
|
|
12879
|
+
configuration
|
|
12880
|
+
);
|
|
12881
|
+
},
|
|
12882
|
+
async listv1alpha1Secret(size, labelSelector, fieldSelector, page, options) {
|
|
12883
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1Secret(
|
|
12884
|
+
size,
|
|
12885
|
+
labelSelector,
|
|
12886
|
+
fieldSelector,
|
|
12887
|
+
page,
|
|
12888
|
+
options
|
|
12889
|
+
);
|
|
12890
|
+
return createRequestFunction(
|
|
12891
|
+
localVarAxiosArgs,
|
|
12892
|
+
globalAxios__default,
|
|
12893
|
+
BASE_PATH,
|
|
12894
|
+
configuration
|
|
12895
|
+
);
|
|
12896
|
+
},
|
|
12897
|
+
async updatev1alpha1Secret(name, secret, options) {
|
|
12898
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatev1alpha1Secret(
|
|
12899
|
+
name,
|
|
12900
|
+
secret,
|
|
12901
|
+
options
|
|
12902
|
+
);
|
|
12903
|
+
return createRequestFunction(
|
|
12904
|
+
localVarAxiosArgs,
|
|
12905
|
+
globalAxios__default,
|
|
12906
|
+
BASE_PATH,
|
|
12907
|
+
configuration
|
|
12908
|
+
);
|
|
12909
|
+
}
|
|
12910
|
+
};
|
|
12911
|
+
};
|
|
12912
|
+
const V1alpha1SecretApiFactory = function(configuration, basePath, axios) {
|
|
12913
|
+
const localVarFp = V1alpha1SecretApiFp(configuration);
|
|
12914
|
+
return {
|
|
12915
|
+
createv1alpha1Secret(requestParameters = {}, options) {
|
|
12916
|
+
return localVarFp.createv1alpha1Secret(requestParameters.secret, options).then((request) => request(axios, basePath));
|
|
12917
|
+
},
|
|
12918
|
+
deletev1alpha1Secret(requestParameters, options) {
|
|
12919
|
+
return localVarFp.deletev1alpha1Secret(requestParameters.name, options).then((request) => request(axios, basePath));
|
|
12920
|
+
},
|
|
12921
|
+
getv1alpha1Secret(requestParameters, options) {
|
|
12922
|
+
return localVarFp.getv1alpha1Secret(requestParameters.name, options).then((request) => request(axios, basePath));
|
|
12923
|
+
},
|
|
12924
|
+
listv1alpha1Secret(requestParameters = {}, options) {
|
|
12925
|
+
return localVarFp.listv1alpha1Secret(
|
|
12926
|
+
requestParameters.size,
|
|
12927
|
+
requestParameters.labelSelector,
|
|
12928
|
+
requestParameters.fieldSelector,
|
|
12929
|
+
requestParameters.page,
|
|
12930
|
+
options
|
|
12931
|
+
).then((request) => request(axios, basePath));
|
|
12932
|
+
},
|
|
12933
|
+
updatev1alpha1Secret(requestParameters, options) {
|
|
12934
|
+
return localVarFp.updatev1alpha1Secret(
|
|
12935
|
+
requestParameters.name,
|
|
12936
|
+
requestParameters.secret,
|
|
12937
|
+
options
|
|
12938
|
+
).then((request) => request(axios, basePath));
|
|
12939
|
+
}
|
|
12940
|
+
};
|
|
12941
|
+
};
|
|
12942
|
+
class V1alpha1SecretApi extends BaseAPI {
|
|
12943
|
+
createv1alpha1Secret(requestParameters = {}, options) {
|
|
12944
|
+
return V1alpha1SecretApiFp(this.configuration).createv1alpha1Secret(requestParameters.secret, options).then((request) => request(this.axios, this.basePath));
|
|
12945
|
+
}
|
|
12946
|
+
deletev1alpha1Secret(requestParameters, options) {
|
|
12947
|
+
return V1alpha1SecretApiFp(this.configuration).deletev1alpha1Secret(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
12948
|
+
}
|
|
12949
|
+
getv1alpha1Secret(requestParameters, options) {
|
|
12950
|
+
return V1alpha1SecretApiFp(this.configuration).getv1alpha1Secret(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
12951
|
+
}
|
|
12952
|
+
listv1alpha1Secret(requestParameters = {}, options) {
|
|
12953
|
+
return V1alpha1SecretApiFp(this.configuration).listv1alpha1Secret(
|
|
12954
|
+
requestParameters.size,
|
|
12955
|
+
requestParameters.labelSelector,
|
|
12956
|
+
requestParameters.fieldSelector,
|
|
12957
|
+
requestParameters.page,
|
|
12958
|
+
options
|
|
12959
|
+
).then((request) => request(this.axios, this.basePath));
|
|
12960
|
+
}
|
|
12961
|
+
updatev1alpha1Secret(requestParameters, options) {
|
|
12962
|
+
return V1alpha1SecretApiFp(this.configuration).updatev1alpha1Secret(
|
|
12963
|
+
requestParameters.name,
|
|
12964
|
+
requestParameters.secret,
|
|
12965
|
+
options
|
|
12966
|
+
).then((request) => request(this.axios, this.basePath));
|
|
12967
|
+
}
|
|
12968
|
+
}
|
|
12969
|
+
|
|
12602
12970
|
const V1alpha1SettingApiAxiosParamCreator = function(configuration) {
|
|
12603
12971
|
return {
|
|
12604
12972
|
createv1alpha1Setting: async (setting, options = {}) => {
|
|
@@ -13314,6 +13682,10 @@ exports.ApiHaloRunV1alpha1TrackerApi = ApiHaloRunV1alpha1TrackerApi;
|
|
|
13314
13682
|
exports.ApiHaloRunV1alpha1TrackerApiAxiosParamCreator = ApiHaloRunV1alpha1TrackerApiAxiosParamCreator;
|
|
13315
13683
|
exports.ApiHaloRunV1alpha1TrackerApiFactory = ApiHaloRunV1alpha1TrackerApiFactory;
|
|
13316
13684
|
exports.ApiHaloRunV1alpha1TrackerApiFp = ApiHaloRunV1alpha1TrackerApiFp;
|
|
13685
|
+
exports.ApiHaloRunV1alpha1UserApi = ApiHaloRunV1alpha1UserApi;
|
|
13686
|
+
exports.ApiHaloRunV1alpha1UserApiAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator;
|
|
13687
|
+
exports.ApiHaloRunV1alpha1UserApiFactory = ApiHaloRunV1alpha1UserApiFactory;
|
|
13688
|
+
exports.ApiHaloRunV1alpha1UserApiFp = ApiHaloRunV1alpha1UserApiFp;
|
|
13317
13689
|
exports.AuthHaloRunV1alpha1AuthProviderApi = AuthHaloRunV1alpha1AuthProviderApi;
|
|
13318
13690
|
exports.AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator = AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator;
|
|
13319
13691
|
exports.AuthHaloRunV1alpha1AuthProviderApiFactory = AuthHaloRunV1alpha1AuthProviderApiFactory;
|
|
@@ -13434,6 +13806,10 @@ exports.V1alpha1RoleBindingApi = V1alpha1RoleBindingApi;
|
|
|
13434
13806
|
exports.V1alpha1RoleBindingApiAxiosParamCreator = V1alpha1RoleBindingApiAxiosParamCreator;
|
|
13435
13807
|
exports.V1alpha1RoleBindingApiFactory = V1alpha1RoleBindingApiFactory;
|
|
13436
13808
|
exports.V1alpha1RoleBindingApiFp = V1alpha1RoleBindingApiFp;
|
|
13809
|
+
exports.V1alpha1SecretApi = V1alpha1SecretApi;
|
|
13810
|
+
exports.V1alpha1SecretApiAxiosParamCreator = V1alpha1SecretApiAxiosParamCreator;
|
|
13811
|
+
exports.V1alpha1SecretApiFactory = V1alpha1SecretApiFactory;
|
|
13812
|
+
exports.V1alpha1SecretApiFp = V1alpha1SecretApiFp;
|
|
13437
13813
|
exports.V1alpha1SettingApi = V1alpha1SettingApi;
|
|
13438
13814
|
exports.V1alpha1SettingApiAxiosParamCreator = V1alpha1SettingApiAxiosParamCreator;
|
|
13439
13815
|
exports.V1alpha1SettingApiFactory = V1alpha1SettingApiFactory;
|