@halo-dev/api-client 2.10.0 → 2.11.0
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 +1094 -11
- package/dist/index.d.ts +1084 -7
- package/dist/index.mjs +1083 -12
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -895,6 +895,49 @@ class ApiConsoleHaloRunV1alpha1NotifierApi extends BaseAPI {
|
|
|
895
895
|
|
|
896
896
|
const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configuration) {
|
|
897
897
|
return {
|
|
898
|
+
changePluginRunningState: async (name, pluginRunningStateRequest, options = {}) => {
|
|
899
|
+
assertParamExists("changePluginRunningState", "name", name);
|
|
900
|
+
assertParamExists(
|
|
901
|
+
"changePluginRunningState",
|
|
902
|
+
"pluginRunningStateRequest",
|
|
903
|
+
pluginRunningStateRequest
|
|
904
|
+
);
|
|
905
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/{name}/plugin-state`.replace(
|
|
906
|
+
`{${"name"}}`,
|
|
907
|
+
encodeURIComponent(String(name))
|
|
908
|
+
);
|
|
909
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
910
|
+
let baseOptions;
|
|
911
|
+
if (configuration) {
|
|
912
|
+
baseOptions = configuration.baseOptions;
|
|
913
|
+
}
|
|
914
|
+
const localVarRequestOptions = {
|
|
915
|
+
method: "PUT",
|
|
916
|
+
...baseOptions,
|
|
917
|
+
...options
|
|
918
|
+
};
|
|
919
|
+
const localVarHeaderParameter = {};
|
|
920
|
+
const localVarQueryParameter = {};
|
|
921
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
922
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
923
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
924
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
925
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
926
|
+
localVarRequestOptions.headers = {
|
|
927
|
+
...localVarHeaderParameter,
|
|
928
|
+
...headersFromBaseOptions,
|
|
929
|
+
...options.headers
|
|
930
|
+
};
|
|
931
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
932
|
+
pluginRunningStateRequest,
|
|
933
|
+
localVarRequestOptions,
|
|
934
|
+
configuration
|
|
935
|
+
);
|
|
936
|
+
return {
|
|
937
|
+
url: toPathString(localVarUrlObj),
|
|
938
|
+
options: localVarRequestOptions
|
|
939
|
+
};
|
|
940
|
+
},
|
|
898
941
|
fetchCssBundle: async (options = {}) => {
|
|
899
942
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins/-/bundle.css`;
|
|
900
943
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1366,6 +1409,19 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
1366
1409
|
const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
1367
1410
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator(configuration);
|
|
1368
1411
|
return {
|
|
1412
|
+
async changePluginRunningState(name, pluginRunningStateRequest, options) {
|
|
1413
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.changePluginRunningState(
|
|
1414
|
+
name,
|
|
1415
|
+
pluginRunningStateRequest,
|
|
1416
|
+
options
|
|
1417
|
+
);
|
|
1418
|
+
return createRequestFunction(
|
|
1419
|
+
localVarAxiosArgs,
|
|
1420
|
+
globalAxios,
|
|
1421
|
+
BASE_PATH,
|
|
1422
|
+
configuration
|
|
1423
|
+
);
|
|
1424
|
+
},
|
|
1369
1425
|
async fetchCssBundle(options) {
|
|
1370
1426
|
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchCssBundle(
|
|
1371
1427
|
options
|
|
@@ -1526,6 +1582,13 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
1526
1582
|
const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePath, axios) {
|
|
1527
1583
|
const localVarFp = ApiConsoleHaloRunV1alpha1PluginApiFp(configuration);
|
|
1528
1584
|
return {
|
|
1585
|
+
changePluginRunningState(requestParameters, options) {
|
|
1586
|
+
return localVarFp.changePluginRunningState(
|
|
1587
|
+
requestParameters.name,
|
|
1588
|
+
requestParameters.pluginRunningStateRequest,
|
|
1589
|
+
options
|
|
1590
|
+
).then((request) => request(axios, basePath));
|
|
1591
|
+
},
|
|
1529
1592
|
fetchCssBundle(options) {
|
|
1530
1593
|
return localVarFp.fetchCssBundle(options).then((request) => request(axios, basePath));
|
|
1531
1594
|
},
|
|
@@ -1596,6 +1659,13 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
1596
1659
|
};
|
|
1597
1660
|
};
|
|
1598
1661
|
class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
1662
|
+
changePluginRunningState(requestParameters, options) {
|
|
1663
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).changePluginRunningState(
|
|
1664
|
+
requestParameters.name,
|
|
1665
|
+
requestParameters.pluginRunningStateRequest,
|
|
1666
|
+
options
|
|
1667
|
+
).then((request) => request(this.axios, this.basePath));
|
|
1668
|
+
}
|
|
1599
1669
|
fetchCssBundle(options) {
|
|
1600
1670
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).fetchCssBundle(options).then((request) => request(this.axios, this.basePath));
|
|
1601
1671
|
}
|
|
@@ -3894,6 +3964,45 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3894
3964
|
options: localVarRequestOptions
|
|
3895
3965
|
};
|
|
3896
3966
|
},
|
|
3967
|
+
sendEmailVerificationCode: async (emailVerifyRequest, options = {}) => {
|
|
3968
|
+
assertParamExists(
|
|
3969
|
+
"sendEmailVerificationCode",
|
|
3970
|
+
"emailVerifyRequest",
|
|
3971
|
+
emailVerifyRequest
|
|
3972
|
+
);
|
|
3973
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-/send-email-verification-code`;
|
|
3974
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3975
|
+
let baseOptions;
|
|
3976
|
+
if (configuration) {
|
|
3977
|
+
baseOptions = configuration.baseOptions;
|
|
3978
|
+
}
|
|
3979
|
+
const localVarRequestOptions = {
|
|
3980
|
+
method: "POST",
|
|
3981
|
+
...baseOptions,
|
|
3982
|
+
...options
|
|
3983
|
+
};
|
|
3984
|
+
const localVarHeaderParameter = {};
|
|
3985
|
+
const localVarQueryParameter = {};
|
|
3986
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3987
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3988
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3989
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3990
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3991
|
+
localVarRequestOptions.headers = {
|
|
3992
|
+
...localVarHeaderParameter,
|
|
3993
|
+
...headersFromBaseOptions,
|
|
3994
|
+
...options.headers
|
|
3995
|
+
};
|
|
3996
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3997
|
+
emailVerifyRequest,
|
|
3998
|
+
localVarRequestOptions,
|
|
3999
|
+
configuration
|
|
4000
|
+
);
|
|
4001
|
+
return {
|
|
4002
|
+
url: toPathString(localVarUrlObj),
|
|
4003
|
+
options: localVarRequestOptions
|
|
4004
|
+
};
|
|
4005
|
+
},
|
|
3897
4006
|
updateCurrentUser: async (user, options = {}) => {
|
|
3898
4007
|
assertParamExists("updateCurrentUser", "user", user);
|
|
3899
4008
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-`;
|
|
@@ -3967,6 +4076,41 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3967
4076
|
url: toPathString(localVarUrlObj),
|
|
3968
4077
|
options: localVarRequestOptions
|
|
3969
4078
|
};
|
|
4079
|
+
},
|
|
4080
|
+
verifyEmail: async (verifyCodeRequest, options = {}) => {
|
|
4081
|
+
assertParamExists("verifyEmail", "verifyCodeRequest", verifyCodeRequest);
|
|
4082
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-/verify-email`;
|
|
4083
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4084
|
+
let baseOptions;
|
|
4085
|
+
if (configuration) {
|
|
4086
|
+
baseOptions = configuration.baseOptions;
|
|
4087
|
+
}
|
|
4088
|
+
const localVarRequestOptions = {
|
|
4089
|
+
method: "POST",
|
|
4090
|
+
...baseOptions,
|
|
4091
|
+
...options
|
|
4092
|
+
};
|
|
4093
|
+
const localVarHeaderParameter = {};
|
|
4094
|
+
const localVarQueryParameter = {};
|
|
4095
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4096
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4097
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
4098
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4099
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4100
|
+
localVarRequestOptions.headers = {
|
|
4101
|
+
...localVarHeaderParameter,
|
|
4102
|
+
...headersFromBaseOptions,
|
|
4103
|
+
...options.headers
|
|
4104
|
+
};
|
|
4105
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
4106
|
+
verifyCodeRequest,
|
|
4107
|
+
localVarRequestOptions,
|
|
4108
|
+
configuration
|
|
4109
|
+
);
|
|
4110
|
+
return {
|
|
4111
|
+
url: toPathString(localVarUrlObj),
|
|
4112
|
+
options: localVarRequestOptions
|
|
4113
|
+
};
|
|
3970
4114
|
}
|
|
3971
4115
|
};
|
|
3972
4116
|
};
|
|
@@ -4071,6 +4215,18 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
4071
4215
|
configuration
|
|
4072
4216
|
);
|
|
4073
4217
|
},
|
|
4218
|
+
async sendEmailVerificationCode(emailVerifyRequest, options) {
|
|
4219
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.sendEmailVerificationCode(
|
|
4220
|
+
emailVerifyRequest,
|
|
4221
|
+
options
|
|
4222
|
+
);
|
|
4223
|
+
return createRequestFunction(
|
|
4224
|
+
localVarAxiosArgs,
|
|
4225
|
+
globalAxios,
|
|
4226
|
+
BASE_PATH,
|
|
4227
|
+
configuration
|
|
4228
|
+
);
|
|
4229
|
+
},
|
|
4074
4230
|
async updateCurrentUser(user, options) {
|
|
4075
4231
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCurrentUser(user, options);
|
|
4076
4232
|
return createRequestFunction(
|
|
@@ -4088,6 +4244,18 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
4088
4244
|
BASE_PATH,
|
|
4089
4245
|
configuration
|
|
4090
4246
|
);
|
|
4247
|
+
},
|
|
4248
|
+
async verifyEmail(verifyCodeRequest, options) {
|
|
4249
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.verifyEmail(
|
|
4250
|
+
verifyCodeRequest,
|
|
4251
|
+
options
|
|
4252
|
+
);
|
|
4253
|
+
return createRequestFunction(
|
|
4254
|
+
localVarAxiosArgs,
|
|
4255
|
+
globalAxios,
|
|
4256
|
+
BASE_PATH,
|
|
4257
|
+
configuration
|
|
4258
|
+
);
|
|
4091
4259
|
}
|
|
4092
4260
|
};
|
|
4093
4261
|
};
|
|
@@ -4135,6 +4303,12 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
4135
4303
|
options
|
|
4136
4304
|
).then((request) => request(axios, basePath));
|
|
4137
4305
|
},
|
|
4306
|
+
sendEmailVerificationCode(requestParameters, options) {
|
|
4307
|
+
return localVarFp.sendEmailVerificationCode(
|
|
4308
|
+
requestParameters.emailVerifyRequest,
|
|
4309
|
+
options
|
|
4310
|
+
).then((request) => request(axios, basePath));
|
|
4311
|
+
},
|
|
4138
4312
|
updateCurrentUser(requestParameters, options) {
|
|
4139
4313
|
return localVarFp.updateCurrentUser(requestParameters.user, options).then((request) => request(axios, basePath));
|
|
4140
4314
|
},
|
|
@@ -4144,6 +4318,9 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
4144
4318
|
requestParameters.file,
|
|
4145
4319
|
options
|
|
4146
4320
|
).then((request) => request(axios, basePath));
|
|
4321
|
+
},
|
|
4322
|
+
verifyEmail(requestParameters, options) {
|
|
4323
|
+
return localVarFp.verifyEmail(requestParameters.verifyCodeRequest, options).then((request) => request(axios, basePath));
|
|
4147
4324
|
}
|
|
4148
4325
|
};
|
|
4149
4326
|
};
|
|
@@ -4189,12 +4366,18 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
4189
4366
|
options
|
|
4190
4367
|
).then((request) => request(this.axios, this.basePath));
|
|
4191
4368
|
}
|
|
4369
|
+
sendEmailVerificationCode(requestParameters, options) {
|
|
4370
|
+
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).sendEmailVerificationCode(requestParameters.emailVerifyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4371
|
+
}
|
|
4192
4372
|
updateCurrentUser(requestParameters, options) {
|
|
4193
4373
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).updateCurrentUser(requestParameters.user, options).then((request) => request(this.axios, this.basePath));
|
|
4194
4374
|
}
|
|
4195
4375
|
uploadUserAvatar(requestParameters, options) {
|
|
4196
4376
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).uploadUserAvatar(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
4197
4377
|
}
|
|
4378
|
+
verifyEmail(requestParameters, options) {
|
|
4379
|
+
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).verifyEmail(requestParameters.verifyCodeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4380
|
+
}
|
|
4198
4381
|
}
|
|
4199
4382
|
|
|
4200
4383
|
const ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator = function(configuration) {
|
|
@@ -5932,6 +6115,88 @@ class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
5932
6115
|
|
|
5933
6116
|
const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
5934
6117
|
return {
|
|
6118
|
+
resetPasswordByToken: async (name, resetPasswordRequest, options = {}) => {
|
|
6119
|
+
assertParamExists("resetPasswordByToken", "name", name);
|
|
6120
|
+
assertParamExists(
|
|
6121
|
+
"resetPasswordByToken",
|
|
6122
|
+
"resetPasswordRequest",
|
|
6123
|
+
resetPasswordRequest
|
|
6124
|
+
);
|
|
6125
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/{name}/reset-password`.replace(
|
|
6126
|
+
`{${"name"}}`,
|
|
6127
|
+
encodeURIComponent(String(name))
|
|
6128
|
+
);
|
|
6129
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6130
|
+
let baseOptions;
|
|
6131
|
+
if (configuration) {
|
|
6132
|
+
baseOptions = configuration.baseOptions;
|
|
6133
|
+
}
|
|
6134
|
+
const localVarRequestOptions = {
|
|
6135
|
+
method: "PUT",
|
|
6136
|
+
...baseOptions,
|
|
6137
|
+
...options
|
|
6138
|
+
};
|
|
6139
|
+
const localVarHeaderParameter = {};
|
|
6140
|
+
const localVarQueryParameter = {};
|
|
6141
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6142
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6143
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6144
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6145
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6146
|
+
localVarRequestOptions.headers = {
|
|
6147
|
+
...localVarHeaderParameter,
|
|
6148
|
+
...headersFromBaseOptions,
|
|
6149
|
+
...options.headers
|
|
6150
|
+
};
|
|
6151
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
6152
|
+
resetPasswordRequest,
|
|
6153
|
+
localVarRequestOptions,
|
|
6154
|
+
configuration
|
|
6155
|
+
);
|
|
6156
|
+
return {
|
|
6157
|
+
url: toPathString(localVarUrlObj),
|
|
6158
|
+
options: localVarRequestOptions
|
|
6159
|
+
};
|
|
6160
|
+
},
|
|
6161
|
+
sendPasswordResetEmail: async (passwordResetEmailRequest, options = {}) => {
|
|
6162
|
+
assertParamExists(
|
|
6163
|
+
"sendPasswordResetEmail",
|
|
6164
|
+
"passwordResetEmailRequest",
|
|
6165
|
+
passwordResetEmailRequest
|
|
6166
|
+
);
|
|
6167
|
+
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-/send-password-reset-email`;
|
|
6168
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6169
|
+
let baseOptions;
|
|
6170
|
+
if (configuration) {
|
|
6171
|
+
baseOptions = configuration.baseOptions;
|
|
6172
|
+
}
|
|
6173
|
+
const localVarRequestOptions = {
|
|
6174
|
+
method: "POST",
|
|
6175
|
+
...baseOptions,
|
|
6176
|
+
...options
|
|
6177
|
+
};
|
|
6178
|
+
const localVarHeaderParameter = {};
|
|
6179
|
+
const localVarQueryParameter = {};
|
|
6180
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6181
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6182
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
6183
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6184
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6185
|
+
localVarRequestOptions.headers = {
|
|
6186
|
+
...localVarHeaderParameter,
|
|
6187
|
+
...headersFromBaseOptions,
|
|
6188
|
+
...options.headers
|
|
6189
|
+
};
|
|
6190
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
6191
|
+
passwordResetEmailRequest,
|
|
6192
|
+
localVarRequestOptions,
|
|
6193
|
+
configuration
|
|
6194
|
+
);
|
|
6195
|
+
return {
|
|
6196
|
+
url: toPathString(localVarUrlObj),
|
|
6197
|
+
options: localVarRequestOptions
|
|
6198
|
+
};
|
|
6199
|
+
},
|
|
5935
6200
|
signUp: async (signUpRequest, options = {}) => {
|
|
5936
6201
|
assertParamExists("signUp", "signUpRequest", signUpRequest);
|
|
5937
6202
|
const localVarPath = `/apis/api.halo.run/v1alpha1/users/-/signup`;
|
|
@@ -5972,6 +6237,31 @@ const ApiHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration) {
|
|
|
5972
6237
|
const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
5973
6238
|
const localVarAxiosParamCreator = ApiHaloRunV1alpha1UserApiAxiosParamCreator(configuration);
|
|
5974
6239
|
return {
|
|
6240
|
+
async resetPasswordByToken(name, resetPasswordRequest, options) {
|
|
6241
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.resetPasswordByToken(
|
|
6242
|
+
name,
|
|
6243
|
+
resetPasswordRequest,
|
|
6244
|
+
options
|
|
6245
|
+
);
|
|
6246
|
+
return createRequestFunction(
|
|
6247
|
+
localVarAxiosArgs,
|
|
6248
|
+
globalAxios,
|
|
6249
|
+
BASE_PATH,
|
|
6250
|
+
configuration
|
|
6251
|
+
);
|
|
6252
|
+
},
|
|
6253
|
+
async sendPasswordResetEmail(passwordResetEmailRequest, options) {
|
|
6254
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.sendPasswordResetEmail(
|
|
6255
|
+
passwordResetEmailRequest,
|
|
6256
|
+
options
|
|
6257
|
+
);
|
|
6258
|
+
return createRequestFunction(
|
|
6259
|
+
localVarAxiosArgs,
|
|
6260
|
+
globalAxios,
|
|
6261
|
+
BASE_PATH,
|
|
6262
|
+
configuration
|
|
6263
|
+
);
|
|
6264
|
+
},
|
|
5975
6265
|
async signUp(signUpRequest, options) {
|
|
5976
6266
|
const localVarAxiosArgs = await localVarAxiosParamCreator.signUp(
|
|
5977
6267
|
signUpRequest,
|
|
@@ -5989,12 +6279,38 @@ const ApiHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
5989
6279
|
const ApiHaloRunV1alpha1UserApiFactory = function(configuration, basePath, axios) {
|
|
5990
6280
|
const localVarFp = ApiHaloRunV1alpha1UserApiFp(configuration);
|
|
5991
6281
|
return {
|
|
6282
|
+
resetPasswordByToken(requestParameters, options) {
|
|
6283
|
+
return localVarFp.resetPasswordByToken(
|
|
6284
|
+
requestParameters.name,
|
|
6285
|
+
requestParameters.resetPasswordRequest,
|
|
6286
|
+
options
|
|
6287
|
+
).then((request) => request(axios, basePath));
|
|
6288
|
+
},
|
|
6289
|
+
sendPasswordResetEmail(requestParameters, options) {
|
|
6290
|
+
return localVarFp.sendPasswordResetEmail(
|
|
6291
|
+
requestParameters.passwordResetEmailRequest,
|
|
6292
|
+
options
|
|
6293
|
+
).then((request) => request(axios, basePath));
|
|
6294
|
+
},
|
|
5992
6295
|
signUp(requestParameters, options) {
|
|
5993
6296
|
return localVarFp.signUp(requestParameters.signUpRequest, options).then((request) => request(axios, basePath));
|
|
5994
6297
|
}
|
|
5995
6298
|
};
|
|
5996
6299
|
};
|
|
5997
6300
|
class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
6301
|
+
resetPasswordByToken(requestParameters, options) {
|
|
6302
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).resetPasswordByToken(
|
|
6303
|
+
requestParameters.name,
|
|
6304
|
+
requestParameters.resetPasswordRequest,
|
|
6305
|
+
options
|
|
6306
|
+
).then((request) => request(this.axios, this.basePath));
|
|
6307
|
+
}
|
|
6308
|
+
sendPasswordResetEmail(requestParameters, options) {
|
|
6309
|
+
return ApiHaloRunV1alpha1UserApiFp(this.configuration).sendPasswordResetEmail(
|
|
6310
|
+
requestParameters.passwordResetEmailRequest,
|
|
6311
|
+
options
|
|
6312
|
+
).then((request) => request(this.axios, this.basePath));
|
|
6313
|
+
}
|
|
5998
6314
|
signUp(requestParameters, options) {
|
|
5999
6315
|
return ApiHaloRunV1alpha1UserApiFp(this.configuration).signUp(requestParameters.signUpRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6000
6316
|
}
|
|
@@ -6002,23 +6318,53 @@ class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
6002
6318
|
|
|
6003
6319
|
const ApiNotificationHaloRunV1alpha1NotificationApiAxiosParamCreator = function(configuration) {
|
|
6004
6320
|
return {
|
|
6005
|
-
|
|
6006
|
-
assertParamExists(
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
username
|
|
6010
|
-
);
|
|
6011
|
-
const localVarPath = `/apis/api.notification.halo.run/v1alpha1/userspaces/{username}/notification-preferences`.replace(
|
|
6012
|
-
`{${"username"}}`,
|
|
6013
|
-
encodeURIComponent(String(username))
|
|
6014
|
-
);
|
|
6321
|
+
deleteSpecifiedNotification: async (username, name, options = {}) => {
|
|
6322
|
+
assertParamExists("deleteSpecifiedNotification", "username", username);
|
|
6323
|
+
assertParamExists("deleteSpecifiedNotification", "name", name);
|
|
6324
|
+
const localVarPath = `/apis/api.notification.halo.run/v1alpha1/userspaces/{username}/notifications/{name}`.replace(`{${"username"}}`, encodeURIComponent(String(username))).replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
6015
6325
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6016
6326
|
let baseOptions;
|
|
6017
6327
|
if (configuration) {
|
|
6018
6328
|
baseOptions = configuration.baseOptions;
|
|
6019
6329
|
}
|
|
6020
6330
|
const localVarRequestOptions = {
|
|
6021
|
-
method: "
|
|
6331
|
+
method: "DELETE",
|
|
6332
|
+
...baseOptions,
|
|
6333
|
+
...options
|
|
6334
|
+
};
|
|
6335
|
+
const localVarHeaderParameter = {};
|
|
6336
|
+
const localVarQueryParameter = {};
|
|
6337
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6338
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6339
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6340
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6341
|
+
localVarRequestOptions.headers = {
|
|
6342
|
+
...localVarHeaderParameter,
|
|
6343
|
+
...headersFromBaseOptions,
|
|
6344
|
+
...options.headers
|
|
6345
|
+
};
|
|
6346
|
+
return {
|
|
6347
|
+
url: toPathString(localVarUrlObj),
|
|
6348
|
+
options: localVarRequestOptions
|
|
6349
|
+
};
|
|
6350
|
+
},
|
|
6351
|
+
listUserNotificationPreferences: async (username, options = {}) => {
|
|
6352
|
+
assertParamExists(
|
|
6353
|
+
"listUserNotificationPreferences",
|
|
6354
|
+
"username",
|
|
6355
|
+
username
|
|
6356
|
+
);
|
|
6357
|
+
const localVarPath = `/apis/api.notification.halo.run/v1alpha1/userspaces/{username}/notification-preferences`.replace(
|
|
6358
|
+
`{${"username"}}`,
|
|
6359
|
+
encodeURIComponent(String(username))
|
|
6360
|
+
);
|
|
6361
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6362
|
+
let baseOptions;
|
|
6363
|
+
if (configuration) {
|
|
6364
|
+
baseOptions = configuration.baseOptions;
|
|
6365
|
+
}
|
|
6366
|
+
const localVarRequestOptions = {
|
|
6367
|
+
method: "GET",
|
|
6022
6368
|
...baseOptions,
|
|
6023
6369
|
...options
|
|
6024
6370
|
};
|
|
@@ -6216,6 +6562,19 @@ const ApiNotificationHaloRunV1alpha1NotificationApiFp = function(configuration)
|
|
|
6216
6562
|
configuration
|
|
6217
6563
|
);
|
|
6218
6564
|
return {
|
|
6565
|
+
async deleteSpecifiedNotification(username, name, options) {
|
|
6566
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSpecifiedNotification(
|
|
6567
|
+
username,
|
|
6568
|
+
name,
|
|
6569
|
+
options
|
|
6570
|
+
);
|
|
6571
|
+
return createRequestFunction(
|
|
6572
|
+
localVarAxiosArgs,
|
|
6573
|
+
globalAxios,
|
|
6574
|
+
BASE_PATH,
|
|
6575
|
+
configuration
|
|
6576
|
+
);
|
|
6577
|
+
},
|
|
6219
6578
|
async listUserNotificationPreferences(username, options) {
|
|
6220
6579
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listUserNotificationPreferences(
|
|
6221
6580
|
username,
|
|
@@ -6292,6 +6651,13 @@ const ApiNotificationHaloRunV1alpha1NotificationApiFp = function(configuration)
|
|
|
6292
6651
|
const ApiNotificationHaloRunV1alpha1NotificationApiFactory = function(configuration, basePath, axios) {
|
|
6293
6652
|
const localVarFp = ApiNotificationHaloRunV1alpha1NotificationApiFp(configuration);
|
|
6294
6653
|
return {
|
|
6654
|
+
deleteSpecifiedNotification(requestParameters, options) {
|
|
6655
|
+
return localVarFp.deleteSpecifiedNotification(
|
|
6656
|
+
requestParameters.username,
|
|
6657
|
+
requestParameters.name,
|
|
6658
|
+
options
|
|
6659
|
+
).then((request) => request(axios, basePath));
|
|
6660
|
+
},
|
|
6295
6661
|
listUserNotificationPreferences(requestParameters, options) {
|
|
6296
6662
|
return localVarFp.listUserNotificationPreferences(requestParameters.username, options).then((request) => request(axios, basePath));
|
|
6297
6663
|
},
|
|
@@ -6333,6 +6699,13 @@ const ApiNotificationHaloRunV1alpha1NotificationApiFactory = function(configurat
|
|
|
6333
6699
|
};
|
|
6334
6700
|
};
|
|
6335
6701
|
class ApiNotificationHaloRunV1alpha1NotificationApi extends BaseAPI {
|
|
6702
|
+
deleteSpecifiedNotification(requestParameters, options) {
|
|
6703
|
+
return ApiNotificationHaloRunV1alpha1NotificationApiFp(this.configuration).deleteSpecifiedNotification(
|
|
6704
|
+
requestParameters.username,
|
|
6705
|
+
requestParameters.name,
|
|
6706
|
+
options
|
|
6707
|
+
).then((request) => request(this.axios, this.basePath));
|
|
6708
|
+
}
|
|
6336
6709
|
listUserNotificationPreferences(requestParameters, options) {
|
|
6337
6710
|
return ApiNotificationHaloRunV1alpha1NotificationApiFp(this.configuration).listUserNotificationPreferences(requestParameters.username, options).then((request) => request(this.axios, this.basePath));
|
|
6338
6711
|
}
|
|
@@ -16188,6 +16561,704 @@ class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
16188
16561
|
}
|
|
16189
16562
|
}
|
|
16190
16563
|
|
|
16564
|
+
const UcApiContentHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
16565
|
+
return {
|
|
16566
|
+
createAttachmentForPost: async (file, waitForPermalink, postName, singlePageName, options = {}) => {
|
|
16567
|
+
assertParamExists("createAttachmentForPost", "file", file);
|
|
16568
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/attachments`;
|
|
16569
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16570
|
+
let baseOptions;
|
|
16571
|
+
if (configuration) {
|
|
16572
|
+
baseOptions = configuration.baseOptions;
|
|
16573
|
+
}
|
|
16574
|
+
const localVarRequestOptions = {
|
|
16575
|
+
method: "POST",
|
|
16576
|
+
...baseOptions,
|
|
16577
|
+
...options
|
|
16578
|
+
};
|
|
16579
|
+
const localVarHeaderParameter = {};
|
|
16580
|
+
const localVarQueryParameter = {};
|
|
16581
|
+
const localVarFormParams = new (configuration && configuration.formDataCtor || FormData)();
|
|
16582
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16583
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16584
|
+
if (waitForPermalink !== void 0) {
|
|
16585
|
+
localVarQueryParameter["waitForPermalink"] = waitForPermalink;
|
|
16586
|
+
}
|
|
16587
|
+
if (file !== void 0) {
|
|
16588
|
+
localVarFormParams.append("file", file);
|
|
16589
|
+
}
|
|
16590
|
+
if (postName !== void 0) {
|
|
16591
|
+
localVarFormParams.append("postName", postName);
|
|
16592
|
+
}
|
|
16593
|
+
if (singlePageName !== void 0) {
|
|
16594
|
+
localVarFormParams.append("singlePageName", singlePageName);
|
|
16595
|
+
}
|
|
16596
|
+
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
16597
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16598
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16599
|
+
localVarRequestOptions.headers = {
|
|
16600
|
+
...localVarHeaderParameter,
|
|
16601
|
+
...headersFromBaseOptions,
|
|
16602
|
+
...options.headers
|
|
16603
|
+
};
|
|
16604
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
16605
|
+
return {
|
|
16606
|
+
url: toPathString(localVarUrlObj),
|
|
16607
|
+
options: localVarRequestOptions
|
|
16608
|
+
};
|
|
16609
|
+
}
|
|
16610
|
+
};
|
|
16611
|
+
};
|
|
16612
|
+
const UcApiContentHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
16613
|
+
const localVarAxiosParamCreator = UcApiContentHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
16614
|
+
return {
|
|
16615
|
+
async createAttachmentForPost(file, waitForPermalink, postName, singlePageName, options) {
|
|
16616
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAttachmentForPost(
|
|
16617
|
+
file,
|
|
16618
|
+
waitForPermalink,
|
|
16619
|
+
postName,
|
|
16620
|
+
singlePageName,
|
|
16621
|
+
options
|
|
16622
|
+
);
|
|
16623
|
+
return createRequestFunction(
|
|
16624
|
+
localVarAxiosArgs,
|
|
16625
|
+
globalAxios,
|
|
16626
|
+
BASE_PATH,
|
|
16627
|
+
configuration
|
|
16628
|
+
);
|
|
16629
|
+
}
|
|
16630
|
+
};
|
|
16631
|
+
};
|
|
16632
|
+
const UcApiContentHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
16633
|
+
const localVarFp = UcApiContentHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
16634
|
+
return {
|
|
16635
|
+
createAttachmentForPost(requestParameters, options) {
|
|
16636
|
+
return localVarFp.createAttachmentForPost(
|
|
16637
|
+
requestParameters.file,
|
|
16638
|
+
requestParameters.waitForPermalink,
|
|
16639
|
+
requestParameters.postName,
|
|
16640
|
+
requestParameters.singlePageName,
|
|
16641
|
+
options
|
|
16642
|
+
).then((request) => request(axios, basePath));
|
|
16643
|
+
}
|
|
16644
|
+
};
|
|
16645
|
+
};
|
|
16646
|
+
class UcApiContentHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
16647
|
+
createAttachmentForPost(requestParameters, options) {
|
|
16648
|
+
return UcApiContentHaloRunV1alpha1AttachmentApiFp(this.configuration).createAttachmentForPost(
|
|
16649
|
+
requestParameters.file,
|
|
16650
|
+
requestParameters.waitForPermalink,
|
|
16651
|
+
requestParameters.postName,
|
|
16652
|
+
requestParameters.singlePageName,
|
|
16653
|
+
options
|
|
16654
|
+
).then((request) => request(this.axios, this.basePath));
|
|
16655
|
+
}
|
|
16656
|
+
}
|
|
16657
|
+
|
|
16658
|
+
const UcApiContentHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration) {
|
|
16659
|
+
return {
|
|
16660
|
+
createMyPost: async (post, options = {}) => {
|
|
16661
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts`;
|
|
16662
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16663
|
+
let baseOptions;
|
|
16664
|
+
if (configuration) {
|
|
16665
|
+
baseOptions = configuration.baseOptions;
|
|
16666
|
+
}
|
|
16667
|
+
const localVarRequestOptions = {
|
|
16668
|
+
method: "POST",
|
|
16669
|
+
...baseOptions,
|
|
16670
|
+
...options
|
|
16671
|
+
};
|
|
16672
|
+
const localVarHeaderParameter = {};
|
|
16673
|
+
const localVarQueryParameter = {};
|
|
16674
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16675
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16676
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
16677
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16678
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16679
|
+
localVarRequestOptions.headers = {
|
|
16680
|
+
...localVarHeaderParameter,
|
|
16681
|
+
...headersFromBaseOptions,
|
|
16682
|
+
...options.headers
|
|
16683
|
+
};
|
|
16684
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
16685
|
+
post,
|
|
16686
|
+
localVarRequestOptions,
|
|
16687
|
+
configuration
|
|
16688
|
+
);
|
|
16689
|
+
return {
|
|
16690
|
+
url: toPathString(localVarUrlObj),
|
|
16691
|
+
options: localVarRequestOptions
|
|
16692
|
+
};
|
|
16693
|
+
},
|
|
16694
|
+
getMyPost: async (name, options = {}) => {
|
|
16695
|
+
assertParamExists("getMyPost", "name", name);
|
|
16696
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}`.replace(
|
|
16697
|
+
`{${"name"}}`,
|
|
16698
|
+
encodeURIComponent(String(name))
|
|
16699
|
+
);
|
|
16700
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16701
|
+
let baseOptions;
|
|
16702
|
+
if (configuration) {
|
|
16703
|
+
baseOptions = configuration.baseOptions;
|
|
16704
|
+
}
|
|
16705
|
+
const localVarRequestOptions = {
|
|
16706
|
+
method: "GET",
|
|
16707
|
+
...baseOptions,
|
|
16708
|
+
...options
|
|
16709
|
+
};
|
|
16710
|
+
const localVarHeaderParameter = {};
|
|
16711
|
+
const localVarQueryParameter = {};
|
|
16712
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16713
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16714
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16715
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16716
|
+
localVarRequestOptions.headers = {
|
|
16717
|
+
...localVarHeaderParameter,
|
|
16718
|
+
...headersFromBaseOptions,
|
|
16719
|
+
...options.headers
|
|
16720
|
+
};
|
|
16721
|
+
return {
|
|
16722
|
+
url: toPathString(localVarUrlObj),
|
|
16723
|
+
options: localVarRequestOptions
|
|
16724
|
+
};
|
|
16725
|
+
},
|
|
16726
|
+
getMyPostDraft: async (name, patched, options = {}) => {
|
|
16727
|
+
assertParamExists("getMyPostDraft", "name", name);
|
|
16728
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}/draft`.replace(
|
|
16729
|
+
`{${"name"}}`,
|
|
16730
|
+
encodeURIComponent(String(name))
|
|
16731
|
+
);
|
|
16732
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16733
|
+
let baseOptions;
|
|
16734
|
+
if (configuration) {
|
|
16735
|
+
baseOptions = configuration.baseOptions;
|
|
16736
|
+
}
|
|
16737
|
+
const localVarRequestOptions = {
|
|
16738
|
+
method: "GET",
|
|
16739
|
+
...baseOptions,
|
|
16740
|
+
...options
|
|
16741
|
+
};
|
|
16742
|
+
const localVarHeaderParameter = {};
|
|
16743
|
+
const localVarQueryParameter = {};
|
|
16744
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16745
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16746
|
+
if (patched !== void 0) {
|
|
16747
|
+
localVarQueryParameter["patched"] = patched;
|
|
16748
|
+
}
|
|
16749
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16750
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16751
|
+
localVarRequestOptions.headers = {
|
|
16752
|
+
...localVarHeaderParameter,
|
|
16753
|
+
...headersFromBaseOptions,
|
|
16754
|
+
...options.headers
|
|
16755
|
+
};
|
|
16756
|
+
return {
|
|
16757
|
+
url: toPathString(localVarUrlObj),
|
|
16758
|
+
options: localVarRequestOptions
|
|
16759
|
+
};
|
|
16760
|
+
},
|
|
16761
|
+
listMyPosts: async (category, contributor, fieldSelector, keyword, labelSelector, page, publishPhase, size, sort, tag, visible, options = {}) => {
|
|
16762
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts`;
|
|
16763
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16764
|
+
let baseOptions;
|
|
16765
|
+
if (configuration) {
|
|
16766
|
+
baseOptions = configuration.baseOptions;
|
|
16767
|
+
}
|
|
16768
|
+
const localVarRequestOptions = {
|
|
16769
|
+
method: "GET",
|
|
16770
|
+
...baseOptions,
|
|
16771
|
+
...options
|
|
16772
|
+
};
|
|
16773
|
+
const localVarHeaderParameter = {};
|
|
16774
|
+
const localVarQueryParameter = {};
|
|
16775
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16776
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16777
|
+
if (category) {
|
|
16778
|
+
localVarQueryParameter["category"] = Array.from(category);
|
|
16779
|
+
}
|
|
16780
|
+
if (contributor) {
|
|
16781
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
16782
|
+
}
|
|
16783
|
+
if (fieldSelector) {
|
|
16784
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
16785
|
+
}
|
|
16786
|
+
if (keyword !== void 0) {
|
|
16787
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
16788
|
+
}
|
|
16789
|
+
if (labelSelector) {
|
|
16790
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
16791
|
+
}
|
|
16792
|
+
if (page !== void 0) {
|
|
16793
|
+
localVarQueryParameter["page"] = page;
|
|
16794
|
+
}
|
|
16795
|
+
if (publishPhase !== void 0) {
|
|
16796
|
+
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
16797
|
+
}
|
|
16798
|
+
if (size !== void 0) {
|
|
16799
|
+
localVarQueryParameter["size"] = size;
|
|
16800
|
+
}
|
|
16801
|
+
if (sort) {
|
|
16802
|
+
localVarQueryParameter["sort"] = Array.from(sort);
|
|
16803
|
+
}
|
|
16804
|
+
if (tag) {
|
|
16805
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
16806
|
+
}
|
|
16807
|
+
if (visible !== void 0) {
|
|
16808
|
+
localVarQueryParameter["visible"] = visible;
|
|
16809
|
+
}
|
|
16810
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16811
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16812
|
+
localVarRequestOptions.headers = {
|
|
16813
|
+
...localVarHeaderParameter,
|
|
16814
|
+
...headersFromBaseOptions,
|
|
16815
|
+
...options.headers
|
|
16816
|
+
};
|
|
16817
|
+
return {
|
|
16818
|
+
url: toPathString(localVarUrlObj),
|
|
16819
|
+
options: localVarRequestOptions
|
|
16820
|
+
};
|
|
16821
|
+
},
|
|
16822
|
+
publishMyPost: async (name, options = {}) => {
|
|
16823
|
+
assertParamExists("publishMyPost", "name", name);
|
|
16824
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}/publish`.replace(
|
|
16825
|
+
`{${"name"}}`,
|
|
16826
|
+
encodeURIComponent(String(name))
|
|
16827
|
+
);
|
|
16828
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16829
|
+
let baseOptions;
|
|
16830
|
+
if (configuration) {
|
|
16831
|
+
baseOptions = configuration.baseOptions;
|
|
16832
|
+
}
|
|
16833
|
+
const localVarRequestOptions = {
|
|
16834
|
+
method: "PUT",
|
|
16835
|
+
...baseOptions,
|
|
16836
|
+
...options
|
|
16837
|
+
};
|
|
16838
|
+
const localVarHeaderParameter = {};
|
|
16839
|
+
const localVarQueryParameter = {};
|
|
16840
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16841
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16842
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16843
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16844
|
+
localVarRequestOptions.headers = {
|
|
16845
|
+
...localVarHeaderParameter,
|
|
16846
|
+
...headersFromBaseOptions,
|
|
16847
|
+
...options.headers
|
|
16848
|
+
};
|
|
16849
|
+
return {
|
|
16850
|
+
url: toPathString(localVarUrlObj),
|
|
16851
|
+
options: localVarRequestOptions
|
|
16852
|
+
};
|
|
16853
|
+
},
|
|
16854
|
+
unpublishMyPost: async (name, options = {}) => {
|
|
16855
|
+
assertParamExists("unpublishMyPost", "name", name);
|
|
16856
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}/unpublish`.replace(
|
|
16857
|
+
`{${"name"}}`,
|
|
16858
|
+
encodeURIComponent(String(name))
|
|
16859
|
+
);
|
|
16860
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16861
|
+
let baseOptions;
|
|
16862
|
+
if (configuration) {
|
|
16863
|
+
baseOptions = configuration.baseOptions;
|
|
16864
|
+
}
|
|
16865
|
+
const localVarRequestOptions = {
|
|
16866
|
+
method: "PUT",
|
|
16867
|
+
...baseOptions,
|
|
16868
|
+
...options
|
|
16869
|
+
};
|
|
16870
|
+
const localVarHeaderParameter = {};
|
|
16871
|
+
const localVarQueryParameter = {};
|
|
16872
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16873
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16874
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16875
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16876
|
+
localVarRequestOptions.headers = {
|
|
16877
|
+
...localVarHeaderParameter,
|
|
16878
|
+
...headersFromBaseOptions,
|
|
16879
|
+
...options.headers
|
|
16880
|
+
};
|
|
16881
|
+
return {
|
|
16882
|
+
url: toPathString(localVarUrlObj),
|
|
16883
|
+
options: localVarRequestOptions
|
|
16884
|
+
};
|
|
16885
|
+
},
|
|
16886
|
+
updateMyPost: async (name, post, options = {}) => {
|
|
16887
|
+
assertParamExists("updateMyPost", "name", name);
|
|
16888
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}`.replace(
|
|
16889
|
+
`{${"name"}}`,
|
|
16890
|
+
encodeURIComponent(String(name))
|
|
16891
|
+
);
|
|
16892
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16893
|
+
let baseOptions;
|
|
16894
|
+
if (configuration) {
|
|
16895
|
+
baseOptions = configuration.baseOptions;
|
|
16896
|
+
}
|
|
16897
|
+
const localVarRequestOptions = {
|
|
16898
|
+
method: "PUT",
|
|
16899
|
+
...baseOptions,
|
|
16900
|
+
...options
|
|
16901
|
+
};
|
|
16902
|
+
const localVarHeaderParameter = {};
|
|
16903
|
+
const localVarQueryParameter = {};
|
|
16904
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16905
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16906
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
16907
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16908
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16909
|
+
localVarRequestOptions.headers = {
|
|
16910
|
+
...localVarHeaderParameter,
|
|
16911
|
+
...headersFromBaseOptions,
|
|
16912
|
+
...options.headers
|
|
16913
|
+
};
|
|
16914
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
16915
|
+
post,
|
|
16916
|
+
localVarRequestOptions,
|
|
16917
|
+
configuration
|
|
16918
|
+
);
|
|
16919
|
+
return {
|
|
16920
|
+
url: toPathString(localVarUrlObj),
|
|
16921
|
+
options: localVarRequestOptions
|
|
16922
|
+
};
|
|
16923
|
+
},
|
|
16924
|
+
updateMyPostDraft: async (name, snapshot, options = {}) => {
|
|
16925
|
+
assertParamExists("updateMyPostDraft", "name", name);
|
|
16926
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/posts/{name}/draft`.replace(
|
|
16927
|
+
`{${"name"}}`,
|
|
16928
|
+
encodeURIComponent(String(name))
|
|
16929
|
+
);
|
|
16930
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16931
|
+
let baseOptions;
|
|
16932
|
+
if (configuration) {
|
|
16933
|
+
baseOptions = configuration.baseOptions;
|
|
16934
|
+
}
|
|
16935
|
+
const localVarRequestOptions = {
|
|
16936
|
+
method: "PUT",
|
|
16937
|
+
...baseOptions,
|
|
16938
|
+
...options
|
|
16939
|
+
};
|
|
16940
|
+
const localVarHeaderParameter = {};
|
|
16941
|
+
const localVarQueryParameter = {};
|
|
16942
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
16943
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
16944
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
16945
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16946
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16947
|
+
localVarRequestOptions.headers = {
|
|
16948
|
+
...localVarHeaderParameter,
|
|
16949
|
+
...headersFromBaseOptions,
|
|
16950
|
+
...options.headers
|
|
16951
|
+
};
|
|
16952
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
16953
|
+
snapshot,
|
|
16954
|
+
localVarRequestOptions,
|
|
16955
|
+
configuration
|
|
16956
|
+
);
|
|
16957
|
+
return {
|
|
16958
|
+
url: toPathString(localVarUrlObj),
|
|
16959
|
+
options: localVarRequestOptions
|
|
16960
|
+
};
|
|
16961
|
+
}
|
|
16962
|
+
};
|
|
16963
|
+
};
|
|
16964
|
+
const UcApiContentHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
16965
|
+
const localVarAxiosParamCreator = UcApiContentHaloRunV1alpha1PostApiAxiosParamCreator(configuration);
|
|
16966
|
+
return {
|
|
16967
|
+
async createMyPost(post, options) {
|
|
16968
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createMyPost(
|
|
16969
|
+
post,
|
|
16970
|
+
options
|
|
16971
|
+
);
|
|
16972
|
+
return createRequestFunction(
|
|
16973
|
+
localVarAxiosArgs,
|
|
16974
|
+
globalAxios,
|
|
16975
|
+
BASE_PATH,
|
|
16976
|
+
configuration
|
|
16977
|
+
);
|
|
16978
|
+
},
|
|
16979
|
+
async getMyPost(name, options) {
|
|
16980
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMyPost(
|
|
16981
|
+
name,
|
|
16982
|
+
options
|
|
16983
|
+
);
|
|
16984
|
+
return createRequestFunction(
|
|
16985
|
+
localVarAxiosArgs,
|
|
16986
|
+
globalAxios,
|
|
16987
|
+
BASE_PATH,
|
|
16988
|
+
configuration
|
|
16989
|
+
);
|
|
16990
|
+
},
|
|
16991
|
+
async getMyPostDraft(name, patched, options) {
|
|
16992
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMyPostDraft(
|
|
16993
|
+
name,
|
|
16994
|
+
patched,
|
|
16995
|
+
options
|
|
16996
|
+
);
|
|
16997
|
+
return createRequestFunction(
|
|
16998
|
+
localVarAxiosArgs,
|
|
16999
|
+
globalAxios,
|
|
17000
|
+
BASE_PATH,
|
|
17001
|
+
configuration
|
|
17002
|
+
);
|
|
17003
|
+
},
|
|
17004
|
+
async listMyPosts(category, contributor, fieldSelector, keyword, labelSelector, page, publishPhase, size, sort, tag, visible, options) {
|
|
17005
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listMyPosts(
|
|
17006
|
+
category,
|
|
17007
|
+
contributor,
|
|
17008
|
+
fieldSelector,
|
|
17009
|
+
keyword,
|
|
17010
|
+
labelSelector,
|
|
17011
|
+
page,
|
|
17012
|
+
publishPhase,
|
|
17013
|
+
size,
|
|
17014
|
+
sort,
|
|
17015
|
+
tag,
|
|
17016
|
+
visible,
|
|
17017
|
+
options
|
|
17018
|
+
);
|
|
17019
|
+
return createRequestFunction(
|
|
17020
|
+
localVarAxiosArgs,
|
|
17021
|
+
globalAxios,
|
|
17022
|
+
BASE_PATH,
|
|
17023
|
+
configuration
|
|
17024
|
+
);
|
|
17025
|
+
},
|
|
17026
|
+
async publishMyPost(name, options) {
|
|
17027
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.publishMyPost(
|
|
17028
|
+
name,
|
|
17029
|
+
options
|
|
17030
|
+
);
|
|
17031
|
+
return createRequestFunction(
|
|
17032
|
+
localVarAxiosArgs,
|
|
17033
|
+
globalAxios,
|
|
17034
|
+
BASE_PATH,
|
|
17035
|
+
configuration
|
|
17036
|
+
);
|
|
17037
|
+
},
|
|
17038
|
+
async unpublishMyPost(name, options) {
|
|
17039
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.unpublishMyPost(
|
|
17040
|
+
name,
|
|
17041
|
+
options
|
|
17042
|
+
);
|
|
17043
|
+
return createRequestFunction(
|
|
17044
|
+
localVarAxiosArgs,
|
|
17045
|
+
globalAxios,
|
|
17046
|
+
BASE_PATH,
|
|
17047
|
+
configuration
|
|
17048
|
+
);
|
|
17049
|
+
},
|
|
17050
|
+
async updateMyPost(name, post, options) {
|
|
17051
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMyPost(
|
|
17052
|
+
name,
|
|
17053
|
+
post,
|
|
17054
|
+
options
|
|
17055
|
+
);
|
|
17056
|
+
return createRequestFunction(
|
|
17057
|
+
localVarAxiosArgs,
|
|
17058
|
+
globalAxios,
|
|
17059
|
+
BASE_PATH,
|
|
17060
|
+
configuration
|
|
17061
|
+
);
|
|
17062
|
+
},
|
|
17063
|
+
async updateMyPostDraft(name, snapshot, options) {
|
|
17064
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMyPostDraft(
|
|
17065
|
+
name,
|
|
17066
|
+
snapshot,
|
|
17067
|
+
options
|
|
17068
|
+
);
|
|
17069
|
+
return createRequestFunction(
|
|
17070
|
+
localVarAxiosArgs,
|
|
17071
|
+
globalAxios,
|
|
17072
|
+
BASE_PATH,
|
|
17073
|
+
configuration
|
|
17074
|
+
);
|
|
17075
|
+
}
|
|
17076
|
+
};
|
|
17077
|
+
};
|
|
17078
|
+
const UcApiContentHaloRunV1alpha1PostApiFactory = function(configuration, basePath, axios) {
|
|
17079
|
+
const localVarFp = UcApiContentHaloRunV1alpha1PostApiFp(configuration);
|
|
17080
|
+
return {
|
|
17081
|
+
createMyPost(requestParameters = {}, options) {
|
|
17082
|
+
return localVarFp.createMyPost(requestParameters.post, options).then((request) => request(axios, basePath));
|
|
17083
|
+
},
|
|
17084
|
+
getMyPost(requestParameters, options) {
|
|
17085
|
+
return localVarFp.getMyPost(requestParameters.name, options).then((request) => request(axios, basePath));
|
|
17086
|
+
},
|
|
17087
|
+
getMyPostDraft(requestParameters, options) {
|
|
17088
|
+
return localVarFp.getMyPostDraft(
|
|
17089
|
+
requestParameters.name,
|
|
17090
|
+
requestParameters.patched,
|
|
17091
|
+
options
|
|
17092
|
+
).then((request) => request(axios, basePath));
|
|
17093
|
+
},
|
|
17094
|
+
listMyPosts(requestParameters = {}, options) {
|
|
17095
|
+
return localVarFp.listMyPosts(
|
|
17096
|
+
requestParameters.category,
|
|
17097
|
+
requestParameters.contributor,
|
|
17098
|
+
requestParameters.fieldSelector,
|
|
17099
|
+
requestParameters.keyword,
|
|
17100
|
+
requestParameters.labelSelector,
|
|
17101
|
+
requestParameters.page,
|
|
17102
|
+
requestParameters.publishPhase,
|
|
17103
|
+
requestParameters.size,
|
|
17104
|
+
requestParameters.sort,
|
|
17105
|
+
requestParameters.tag,
|
|
17106
|
+
requestParameters.visible,
|
|
17107
|
+
options
|
|
17108
|
+
).then((request) => request(axios, basePath));
|
|
17109
|
+
},
|
|
17110
|
+
publishMyPost(requestParameters, options) {
|
|
17111
|
+
return localVarFp.publishMyPost(requestParameters.name, options).then((request) => request(axios, basePath));
|
|
17112
|
+
},
|
|
17113
|
+
unpublishMyPost(requestParameters, options) {
|
|
17114
|
+
return localVarFp.unpublishMyPost(requestParameters.name, options).then((request) => request(axios, basePath));
|
|
17115
|
+
},
|
|
17116
|
+
updateMyPost(requestParameters, options) {
|
|
17117
|
+
return localVarFp.updateMyPost(requestParameters.name, requestParameters.post, options).then((request) => request(axios, basePath));
|
|
17118
|
+
},
|
|
17119
|
+
updateMyPostDraft(requestParameters, options) {
|
|
17120
|
+
return localVarFp.updateMyPostDraft(
|
|
17121
|
+
requestParameters.name,
|
|
17122
|
+
requestParameters.snapshot,
|
|
17123
|
+
options
|
|
17124
|
+
).then((request) => request(axios, basePath));
|
|
17125
|
+
}
|
|
17126
|
+
};
|
|
17127
|
+
};
|
|
17128
|
+
class UcApiContentHaloRunV1alpha1PostApi extends BaseAPI {
|
|
17129
|
+
createMyPost(requestParameters = {}, options) {
|
|
17130
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).createMyPost(requestParameters.post, options).then((request) => request(this.axios, this.basePath));
|
|
17131
|
+
}
|
|
17132
|
+
getMyPost(requestParameters, options) {
|
|
17133
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).getMyPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
17134
|
+
}
|
|
17135
|
+
getMyPostDraft(requestParameters, options) {
|
|
17136
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).getMyPostDraft(
|
|
17137
|
+
requestParameters.name,
|
|
17138
|
+
requestParameters.patched,
|
|
17139
|
+
options
|
|
17140
|
+
).then((request) => request(this.axios, this.basePath));
|
|
17141
|
+
}
|
|
17142
|
+
listMyPosts(requestParameters = {}, options) {
|
|
17143
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).listMyPosts(
|
|
17144
|
+
requestParameters.category,
|
|
17145
|
+
requestParameters.contributor,
|
|
17146
|
+
requestParameters.fieldSelector,
|
|
17147
|
+
requestParameters.keyword,
|
|
17148
|
+
requestParameters.labelSelector,
|
|
17149
|
+
requestParameters.page,
|
|
17150
|
+
requestParameters.publishPhase,
|
|
17151
|
+
requestParameters.size,
|
|
17152
|
+
requestParameters.sort,
|
|
17153
|
+
requestParameters.tag,
|
|
17154
|
+
requestParameters.visible,
|
|
17155
|
+
options
|
|
17156
|
+
).then((request) => request(this.axios, this.basePath));
|
|
17157
|
+
}
|
|
17158
|
+
publishMyPost(requestParameters, options) {
|
|
17159
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).publishMyPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
17160
|
+
}
|
|
17161
|
+
unpublishMyPost(requestParameters, options) {
|
|
17162
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).unpublishMyPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
17163
|
+
}
|
|
17164
|
+
updateMyPost(requestParameters, options) {
|
|
17165
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).updateMyPost(requestParameters.name, requestParameters.post, options).then((request) => request(this.axios, this.basePath));
|
|
17166
|
+
}
|
|
17167
|
+
updateMyPostDraft(requestParameters, options) {
|
|
17168
|
+
return UcApiContentHaloRunV1alpha1PostApiFp(this.configuration).updateMyPostDraft(
|
|
17169
|
+
requestParameters.name,
|
|
17170
|
+
requestParameters.snapshot,
|
|
17171
|
+
options
|
|
17172
|
+
).then((request) => request(this.axios, this.basePath));
|
|
17173
|
+
}
|
|
17174
|
+
}
|
|
17175
|
+
|
|
17176
|
+
const UcApiContentHaloRunV1alpha1SnapshotApiAxiosParamCreator = function(configuration) {
|
|
17177
|
+
return {
|
|
17178
|
+
getSnapshotForPost: async (name, postName, patched, options = {}) => {
|
|
17179
|
+
assertParamExists("getSnapshotForPost", "name", name);
|
|
17180
|
+
assertParamExists("getSnapshotForPost", "postName", postName);
|
|
17181
|
+
const localVarPath = `/apis/uc.api.content.halo.run/v1alpha1/snapshots/{name}`.replace(
|
|
17182
|
+
`{${"name"}}`,
|
|
17183
|
+
encodeURIComponent(String(name))
|
|
17184
|
+
);
|
|
17185
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17186
|
+
let baseOptions;
|
|
17187
|
+
if (configuration) {
|
|
17188
|
+
baseOptions = configuration.baseOptions;
|
|
17189
|
+
}
|
|
17190
|
+
const localVarRequestOptions = {
|
|
17191
|
+
method: "GET",
|
|
17192
|
+
...baseOptions,
|
|
17193
|
+
...options
|
|
17194
|
+
};
|
|
17195
|
+
const localVarHeaderParameter = {};
|
|
17196
|
+
const localVarQueryParameter = {};
|
|
17197
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
17198
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
17199
|
+
if (postName !== void 0) {
|
|
17200
|
+
localVarQueryParameter["postName"] = postName;
|
|
17201
|
+
}
|
|
17202
|
+
if (patched !== void 0) {
|
|
17203
|
+
localVarQueryParameter["patched"] = patched;
|
|
17204
|
+
}
|
|
17205
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
17206
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
17207
|
+
localVarRequestOptions.headers = {
|
|
17208
|
+
...localVarHeaderParameter,
|
|
17209
|
+
...headersFromBaseOptions,
|
|
17210
|
+
...options.headers
|
|
17211
|
+
};
|
|
17212
|
+
return {
|
|
17213
|
+
url: toPathString(localVarUrlObj),
|
|
17214
|
+
options: localVarRequestOptions
|
|
17215
|
+
};
|
|
17216
|
+
}
|
|
17217
|
+
};
|
|
17218
|
+
};
|
|
17219
|
+
const UcApiContentHaloRunV1alpha1SnapshotApiFp = function(configuration) {
|
|
17220
|
+
const localVarAxiosParamCreator = UcApiContentHaloRunV1alpha1SnapshotApiAxiosParamCreator(configuration);
|
|
17221
|
+
return {
|
|
17222
|
+
async getSnapshotForPost(name, postName, patched, options) {
|
|
17223
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSnapshotForPost(
|
|
17224
|
+
name,
|
|
17225
|
+
postName,
|
|
17226
|
+
patched,
|
|
17227
|
+
options
|
|
17228
|
+
);
|
|
17229
|
+
return createRequestFunction(
|
|
17230
|
+
localVarAxiosArgs,
|
|
17231
|
+
globalAxios,
|
|
17232
|
+
BASE_PATH,
|
|
17233
|
+
configuration
|
|
17234
|
+
);
|
|
17235
|
+
}
|
|
17236
|
+
};
|
|
17237
|
+
};
|
|
17238
|
+
const UcApiContentHaloRunV1alpha1SnapshotApiFactory = function(configuration, basePath, axios) {
|
|
17239
|
+
const localVarFp = UcApiContentHaloRunV1alpha1SnapshotApiFp(configuration);
|
|
17240
|
+
return {
|
|
17241
|
+
getSnapshotForPost(requestParameters, options) {
|
|
17242
|
+
return localVarFp.getSnapshotForPost(
|
|
17243
|
+
requestParameters.name,
|
|
17244
|
+
requestParameters.postName,
|
|
17245
|
+
requestParameters.patched,
|
|
17246
|
+
options
|
|
17247
|
+
).then((request) => request(axios, basePath));
|
|
17248
|
+
}
|
|
17249
|
+
};
|
|
17250
|
+
};
|
|
17251
|
+
class UcApiContentHaloRunV1alpha1SnapshotApi extends BaseAPI {
|
|
17252
|
+
getSnapshotForPost(requestParameters, options) {
|
|
17253
|
+
return UcApiContentHaloRunV1alpha1SnapshotApiFp(this.configuration).getSnapshotForPost(
|
|
17254
|
+
requestParameters.name,
|
|
17255
|
+
requestParameters.postName,
|
|
17256
|
+
requestParameters.patched,
|
|
17257
|
+
options
|
|
17258
|
+
).then((request) => request(this.axios, this.basePath));
|
|
17259
|
+
}
|
|
17260
|
+
}
|
|
17261
|
+
|
|
16191
17262
|
const V1alpha1AnnotationSettingApiAxiosParamCreator = function(configuration) {
|
|
16192
17263
|
return {
|
|
16193
17264
|
createv1alpha1AnnotationSetting: async (annotationSetting, options = {}) => {
|
|
@@ -19086,4 +20157,4 @@ const ThemeStatusPhaseEnum = {
|
|
|
19086
20157
|
Unknown: "UNKNOWN"
|
|
19087
20158
|
};
|
|
19088
20159
|
|
|
19089
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1NotifierApi, ApiConsoleHaloRunV1alpha1NotifierApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1NotifierApiFactory, ApiConsoleHaloRunV1alpha1NotifierApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1SystemApi, ApiConsoleHaloRunV1alpha1SystemApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SystemApiFactory, ApiConsoleHaloRunV1alpha1SystemApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleMigrationHaloRunV1alpha1MigrationApi, ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFactory, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFp, ApiContentHaloRunV1alpha1CategoryApi, ApiContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ApiContentHaloRunV1alpha1CategoryApiFactory, ApiContentHaloRunV1alpha1CategoryApiFp, ApiContentHaloRunV1alpha1PostApi, ApiContentHaloRunV1alpha1PostApiAxiosParamCreator, ApiContentHaloRunV1alpha1PostApiFactory, ApiContentHaloRunV1alpha1PostApiFp, ApiContentHaloRunV1alpha1SinglePageApi, ApiContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiContentHaloRunV1alpha1SinglePageApiFactory, ApiContentHaloRunV1alpha1SinglePageApiFp, ApiContentHaloRunV1alpha1TagApi, ApiContentHaloRunV1alpha1TagApiAxiosParamCreator, ApiContentHaloRunV1alpha1TagApiFactory, ApiContentHaloRunV1alpha1TagApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1MenuApi, ApiHaloRunV1alpha1MenuApiAxiosParamCreator, ApiHaloRunV1alpha1MenuApiFactory, ApiHaloRunV1alpha1MenuApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1StatsApi, ApiHaloRunV1alpha1StatsApiAxiosParamCreator, ApiHaloRunV1alpha1StatsApiFactory, ApiHaloRunV1alpha1StatsApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiNotificationHaloRunV1alpha1NotificationApi, ApiNotificationHaloRunV1alpha1NotificationApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1NotificationApiFactory, ApiNotificationHaloRunV1alpha1NotificationApiFp, ApiNotificationHaloRunV1alpha1NotifierApi, ApiNotificationHaloRunV1alpha1NotifierApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1NotifierApiFactory, ApiNotificationHaloRunV1alpha1NotifierApiFp, ApiNotificationHaloRunV1alpha1SubscriptionApi, ApiNotificationHaloRunV1alpha1SubscriptionApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1SubscriptionApiFactory, ApiNotificationHaloRunV1alpha1SubscriptionApiFp, ApiPluginHaloRunV1alpha1PluginApi, ApiPluginHaloRunV1alpha1PluginApiAxiosParamCreator, ApiPluginHaloRunV1alpha1PluginApiFactory, ApiPluginHaloRunV1alpha1PluginApiFp, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApi, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiAxiosParamCreator, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiFactory, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiFp, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, BackupStatusPhaseEnum, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ExtensionPointSpecTypeEnum, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, MenuItemSpecTargetEnum, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MigrationHaloRunV1alpha1BackupApi, MigrationHaloRunV1alpha1BackupApiAxiosParamCreator, MigrationHaloRunV1alpha1BackupApiFactory, MigrationHaloRunV1alpha1BackupApiFp, NotificationHaloRunV1alpha1NotificationApi, NotificationHaloRunV1alpha1NotificationApiAxiosParamCreator, NotificationHaloRunV1alpha1NotificationApiFactory, NotificationHaloRunV1alpha1NotificationApiFp, NotificationHaloRunV1alpha1NotificationTemplateApi, NotificationHaloRunV1alpha1NotificationTemplateApiAxiosParamCreator, NotificationHaloRunV1alpha1NotificationTemplateApiFactory, NotificationHaloRunV1alpha1NotificationTemplateApiFp, NotificationHaloRunV1alpha1NotifierDescriptorApi, NotificationHaloRunV1alpha1NotifierDescriptorApiAxiosParamCreator, NotificationHaloRunV1alpha1NotifierDescriptorApiFactory, NotificationHaloRunV1alpha1NotifierDescriptorApiFp, NotificationHaloRunV1alpha1ReasonApi, NotificationHaloRunV1alpha1ReasonApiAxiosParamCreator, NotificationHaloRunV1alpha1ReasonApiFactory, NotificationHaloRunV1alpha1ReasonApiFp, NotificationHaloRunV1alpha1ReasonTypeApi, NotificationHaloRunV1alpha1ReasonTypeApiAxiosParamCreator, NotificationHaloRunV1alpha1ReasonTypeApiFactory, NotificationHaloRunV1alpha1ReasonTypeApiFp, NotificationHaloRunV1alpha1SubscriptionApi, NotificationHaloRunV1alpha1SubscriptionApiAxiosParamCreator, NotificationHaloRunV1alpha1SubscriptionApiFactory, NotificationHaloRunV1alpha1SubscriptionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SecurityHaloRunV1alpha1PersonalAccessTokenApi, SecurityHaloRunV1alpha1PersonalAccessTokenApiAxiosParamCreator, SecurityHaloRunV1alpha1PersonalAccessTokenApiFactory, SecurityHaloRunV1alpha1PersonalAccessTokenApiFp, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeStatusPhaseEnum, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1CacheApi, V1alpha1CacheApiAxiosParamCreator, V1alpha1CacheApiFactory, V1alpha1CacheApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|
|
20160
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1NotifierApi, ApiConsoleHaloRunV1alpha1NotifierApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1NotifierApiFactory, ApiConsoleHaloRunV1alpha1NotifierApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1SystemApi, ApiConsoleHaloRunV1alpha1SystemApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SystemApiFactory, ApiConsoleHaloRunV1alpha1SystemApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleMigrationHaloRunV1alpha1MigrationApi, ApiConsoleMigrationHaloRunV1alpha1MigrationApiAxiosParamCreator, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFactory, ApiConsoleMigrationHaloRunV1alpha1MigrationApiFp, ApiContentHaloRunV1alpha1CategoryApi, ApiContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ApiContentHaloRunV1alpha1CategoryApiFactory, ApiContentHaloRunV1alpha1CategoryApiFp, ApiContentHaloRunV1alpha1PostApi, ApiContentHaloRunV1alpha1PostApiAxiosParamCreator, ApiContentHaloRunV1alpha1PostApiFactory, ApiContentHaloRunV1alpha1PostApiFp, ApiContentHaloRunV1alpha1SinglePageApi, ApiContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiContentHaloRunV1alpha1SinglePageApiFactory, ApiContentHaloRunV1alpha1SinglePageApiFp, ApiContentHaloRunV1alpha1TagApi, ApiContentHaloRunV1alpha1TagApiAxiosParamCreator, ApiContentHaloRunV1alpha1TagApiFactory, ApiContentHaloRunV1alpha1TagApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1MenuApi, ApiHaloRunV1alpha1MenuApiAxiosParamCreator, ApiHaloRunV1alpha1MenuApiFactory, ApiHaloRunV1alpha1MenuApiFp, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1StatsApi, ApiHaloRunV1alpha1StatsApiAxiosParamCreator, ApiHaloRunV1alpha1StatsApiFactory, ApiHaloRunV1alpha1StatsApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiNotificationHaloRunV1alpha1NotificationApi, ApiNotificationHaloRunV1alpha1NotificationApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1NotificationApiFactory, ApiNotificationHaloRunV1alpha1NotificationApiFp, ApiNotificationHaloRunV1alpha1NotifierApi, ApiNotificationHaloRunV1alpha1NotifierApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1NotifierApiFactory, ApiNotificationHaloRunV1alpha1NotifierApiFp, ApiNotificationHaloRunV1alpha1SubscriptionApi, ApiNotificationHaloRunV1alpha1SubscriptionApiAxiosParamCreator, ApiNotificationHaloRunV1alpha1SubscriptionApiFactory, ApiNotificationHaloRunV1alpha1SubscriptionApiFp, ApiPluginHaloRunV1alpha1PluginApi, ApiPluginHaloRunV1alpha1PluginApiAxiosParamCreator, ApiPluginHaloRunV1alpha1PluginApiFactory, ApiPluginHaloRunV1alpha1PluginApiFp, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApi, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiAxiosParamCreator, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiFactory, ApiSecurityHaloRunV1alpha1PersonalAccessTokenApiFp, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, BackupStatusPhaseEnum, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ExtensionPointSpecTypeEnum, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, MenuItemSpecTargetEnum, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MigrationHaloRunV1alpha1BackupApi, MigrationHaloRunV1alpha1BackupApiAxiosParamCreator, MigrationHaloRunV1alpha1BackupApiFactory, MigrationHaloRunV1alpha1BackupApiFp, NotificationHaloRunV1alpha1NotificationApi, NotificationHaloRunV1alpha1NotificationApiAxiosParamCreator, NotificationHaloRunV1alpha1NotificationApiFactory, NotificationHaloRunV1alpha1NotificationApiFp, NotificationHaloRunV1alpha1NotificationTemplateApi, NotificationHaloRunV1alpha1NotificationTemplateApiAxiosParamCreator, NotificationHaloRunV1alpha1NotificationTemplateApiFactory, NotificationHaloRunV1alpha1NotificationTemplateApiFp, NotificationHaloRunV1alpha1NotifierDescriptorApi, NotificationHaloRunV1alpha1NotifierDescriptorApiAxiosParamCreator, NotificationHaloRunV1alpha1NotifierDescriptorApiFactory, NotificationHaloRunV1alpha1NotifierDescriptorApiFp, NotificationHaloRunV1alpha1ReasonApi, NotificationHaloRunV1alpha1ReasonApiAxiosParamCreator, NotificationHaloRunV1alpha1ReasonApiFactory, NotificationHaloRunV1alpha1ReasonApiFp, NotificationHaloRunV1alpha1ReasonTypeApi, NotificationHaloRunV1alpha1ReasonTypeApiAxiosParamCreator, NotificationHaloRunV1alpha1ReasonTypeApiFactory, NotificationHaloRunV1alpha1ReasonTypeApiFp, NotificationHaloRunV1alpha1SubscriptionApi, NotificationHaloRunV1alpha1SubscriptionApiAxiosParamCreator, NotificationHaloRunV1alpha1SubscriptionApiFactory, NotificationHaloRunV1alpha1SubscriptionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SecurityHaloRunV1alpha1PersonalAccessTokenApi, SecurityHaloRunV1alpha1PersonalAccessTokenApiAxiosParamCreator, SecurityHaloRunV1alpha1PersonalAccessTokenApiFactory, SecurityHaloRunV1alpha1PersonalAccessTokenApiFp, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeStatusPhaseEnum, UcApiContentHaloRunV1alpha1AttachmentApi, UcApiContentHaloRunV1alpha1AttachmentApiAxiosParamCreator, UcApiContentHaloRunV1alpha1AttachmentApiFactory, UcApiContentHaloRunV1alpha1AttachmentApiFp, UcApiContentHaloRunV1alpha1PostApi, UcApiContentHaloRunV1alpha1PostApiAxiosParamCreator, UcApiContentHaloRunV1alpha1PostApiFactory, UcApiContentHaloRunV1alpha1PostApiFp, UcApiContentHaloRunV1alpha1SnapshotApi, UcApiContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, UcApiContentHaloRunV1alpha1SnapshotApiFactory, UcApiContentHaloRunV1alpha1SnapshotApiFp, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1CacheApi, V1alpha1CacheApiAxiosParamCreator, V1alpha1CacheApiFactory, V1alpha1CacheApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|