@halo-dev/api-client 2.4.2 → 2.5.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 +67 -14
- package/dist/index.d.ts +208 -91
- package/dist/index.mjs +67 -14
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3096,6 +3096,41 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3096
3096
|
options: localVarRequestOptions
|
|
3097
3097
|
};
|
|
3098
3098
|
},
|
|
3099
|
+
createUser: async (createUserRequest, options = {}) => {
|
|
3100
|
+
assertParamExists("createUser", "createUserRequest", createUserRequest);
|
|
3101
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users`;
|
|
3102
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3103
|
+
let baseOptions;
|
|
3104
|
+
if (configuration) {
|
|
3105
|
+
baseOptions = configuration.baseOptions;
|
|
3106
|
+
}
|
|
3107
|
+
const localVarRequestOptions = {
|
|
3108
|
+
method: "POST",
|
|
3109
|
+
...baseOptions,
|
|
3110
|
+
...options
|
|
3111
|
+
};
|
|
3112
|
+
const localVarHeaderParameter = {};
|
|
3113
|
+
const localVarQueryParameter = {};
|
|
3114
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3115
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3116
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3117
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3118
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3119
|
+
localVarRequestOptions.headers = {
|
|
3120
|
+
...localVarHeaderParameter,
|
|
3121
|
+
...headersFromBaseOptions,
|
|
3122
|
+
...options.headers
|
|
3123
|
+
};
|
|
3124
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3125
|
+
createUserRequest,
|
|
3126
|
+
localVarRequestOptions,
|
|
3127
|
+
configuration
|
|
3128
|
+
);
|
|
3129
|
+
return {
|
|
3130
|
+
url: toPathString(localVarUrlObj),
|
|
3131
|
+
options: localVarRequestOptions
|
|
3132
|
+
};
|
|
3133
|
+
},
|
|
3099
3134
|
getCurrentUserDetail: async (options = {}) => {
|
|
3100
3135
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-`;
|
|
3101
3136
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3227,7 +3262,7 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3227
3262
|
options: localVarRequestOptions
|
|
3228
3263
|
};
|
|
3229
3264
|
},
|
|
3230
|
-
listUsers: async (sort,
|
|
3265
|
+
listUsers: async (sort, role, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
3231
3266
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users`;
|
|
3232
3267
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3233
3268
|
let baseOptions;
|
|
@@ -3246,24 +3281,24 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3246
3281
|
if (sort) {
|
|
3247
3282
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
3248
3283
|
}
|
|
3249
|
-
if (keyword !== void 0) {
|
|
3250
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
3251
|
-
}
|
|
3252
3284
|
if (role !== void 0) {
|
|
3253
3285
|
localVarQueryParameter["role"] = role;
|
|
3254
3286
|
}
|
|
3287
|
+
if (keyword !== void 0) {
|
|
3288
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
3289
|
+
}
|
|
3255
3290
|
if (size !== void 0) {
|
|
3256
3291
|
localVarQueryParameter["size"] = size;
|
|
3257
3292
|
}
|
|
3293
|
+
if (page !== void 0) {
|
|
3294
|
+
localVarQueryParameter["page"] = page;
|
|
3295
|
+
}
|
|
3258
3296
|
if (labelSelector) {
|
|
3259
3297
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3260
3298
|
}
|
|
3261
3299
|
if (fieldSelector) {
|
|
3262
3300
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3263
3301
|
}
|
|
3264
|
-
if (page !== void 0) {
|
|
3265
|
-
localVarQueryParameter["page"] = page;
|
|
3266
|
-
}
|
|
3267
3302
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3268
3303
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3269
3304
|
localVarRequestOptions.headers = {
|
|
@@ -3329,6 +3364,18 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
3329
3364
|
configuration
|
|
3330
3365
|
);
|
|
3331
3366
|
},
|
|
3367
|
+
async createUser(createUserRequest, options) {
|
|
3368
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createUser(
|
|
3369
|
+
createUserRequest,
|
|
3370
|
+
options
|
|
3371
|
+
);
|
|
3372
|
+
return createRequestFunction(
|
|
3373
|
+
localVarAxiosArgs,
|
|
3374
|
+
globalAxios__default,
|
|
3375
|
+
BASE_PATH,
|
|
3376
|
+
configuration
|
|
3377
|
+
);
|
|
3378
|
+
},
|
|
3332
3379
|
async getCurrentUserDetail(options) {
|
|
3333
3380
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
3334
3381
|
return createRequestFunction(
|
|
@@ -3375,15 +3422,15 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
3375
3422
|
configuration
|
|
3376
3423
|
);
|
|
3377
3424
|
},
|
|
3378
|
-
async listUsers(sort,
|
|
3425
|
+
async listUsers(sort, role, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
3379
3426
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(
|
|
3380
3427
|
sort,
|
|
3381
|
-
keyword,
|
|
3382
3428
|
role,
|
|
3429
|
+
keyword,
|
|
3383
3430
|
size,
|
|
3431
|
+
page,
|
|
3384
3432
|
labelSelector,
|
|
3385
3433
|
fieldSelector,
|
|
3386
|
-
page,
|
|
3387
3434
|
options
|
|
3388
3435
|
);
|
|
3389
3436
|
return createRequestFunction(
|
|
@@ -3414,6 +3461,9 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
3414
3461
|
options
|
|
3415
3462
|
).then((request) => request(axios, basePath));
|
|
3416
3463
|
},
|
|
3464
|
+
createUser(requestParameters, options) {
|
|
3465
|
+
return localVarFp.createUser(requestParameters.createUserRequest, options).then((request) => request(axios, basePath));
|
|
3466
|
+
},
|
|
3417
3467
|
getCurrentUserDetail(options) {
|
|
3418
3468
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
3419
3469
|
},
|
|
@@ -3433,12 +3483,12 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
3433
3483
|
listUsers(requestParameters = {}, options) {
|
|
3434
3484
|
return localVarFp.listUsers(
|
|
3435
3485
|
requestParameters.sort,
|
|
3436
|
-
requestParameters.keyword,
|
|
3437
3486
|
requestParameters.role,
|
|
3487
|
+
requestParameters.keyword,
|
|
3438
3488
|
requestParameters.size,
|
|
3489
|
+
requestParameters.page,
|
|
3439
3490
|
requestParameters.labelSelector,
|
|
3440
3491
|
requestParameters.fieldSelector,
|
|
3441
|
-
requestParameters.page,
|
|
3442
3492
|
options
|
|
3443
3493
|
).then((request) => request(axios, basePath));
|
|
3444
3494
|
},
|
|
@@ -3455,6 +3505,9 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
3455
3505
|
options
|
|
3456
3506
|
).then((request) => request(this.axios, this.basePath));
|
|
3457
3507
|
}
|
|
3508
|
+
createUser(requestParameters, options) {
|
|
3509
|
+
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).createUser(requestParameters.createUserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3510
|
+
}
|
|
3458
3511
|
getCurrentUserDetail(options) {
|
|
3459
3512
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
3460
3513
|
}
|
|
@@ -3474,12 +3527,12 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
3474
3527
|
listUsers(requestParameters = {}, options) {
|
|
3475
3528
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).listUsers(
|
|
3476
3529
|
requestParameters.sort,
|
|
3477
|
-
requestParameters.keyword,
|
|
3478
3530
|
requestParameters.role,
|
|
3531
|
+
requestParameters.keyword,
|
|
3479
3532
|
requestParameters.size,
|
|
3533
|
+
requestParameters.page,
|
|
3480
3534
|
requestParameters.labelSelector,
|
|
3481
3535
|
requestParameters.fieldSelector,
|
|
3482
|
-
requestParameters.page,
|
|
3483
3536
|
options
|
|
3484
3537
|
).then((request) => request(this.axios, this.basePath));
|
|
3485
3538
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2288,6 +2288,81 @@ interface CounterRequest {
|
|
|
2288
2288
|
screen?: string;
|
|
2289
2289
|
}
|
|
2290
2290
|
|
|
2291
|
+
/**
|
|
2292
|
+
* Halo Next API
|
|
2293
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2294
|
+
*
|
|
2295
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2296
|
+
*
|
|
2297
|
+
*
|
|
2298
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2299
|
+
* https://openapi-generator.tech
|
|
2300
|
+
* Do not edit the class manually.
|
|
2301
|
+
*/
|
|
2302
|
+
/**
|
|
2303
|
+
*
|
|
2304
|
+
* @export
|
|
2305
|
+
* @interface CreateUserRequest
|
|
2306
|
+
*/
|
|
2307
|
+
interface CreateUserRequest {
|
|
2308
|
+
/**
|
|
2309
|
+
*
|
|
2310
|
+
* @type {{ [key: string]: string; }}
|
|
2311
|
+
* @memberof CreateUserRequest
|
|
2312
|
+
*/
|
|
2313
|
+
annotations?: {
|
|
2314
|
+
[key: string]: string;
|
|
2315
|
+
};
|
|
2316
|
+
/**
|
|
2317
|
+
*
|
|
2318
|
+
* @type {string}
|
|
2319
|
+
* @memberof CreateUserRequest
|
|
2320
|
+
*/
|
|
2321
|
+
avatar?: string;
|
|
2322
|
+
/**
|
|
2323
|
+
*
|
|
2324
|
+
* @type {string}
|
|
2325
|
+
* @memberof CreateUserRequest
|
|
2326
|
+
*/
|
|
2327
|
+
bio?: string;
|
|
2328
|
+
/**
|
|
2329
|
+
*
|
|
2330
|
+
* @type {string}
|
|
2331
|
+
* @memberof CreateUserRequest
|
|
2332
|
+
*/
|
|
2333
|
+
displayName?: string;
|
|
2334
|
+
/**
|
|
2335
|
+
*
|
|
2336
|
+
* @type {string}
|
|
2337
|
+
* @memberof CreateUserRequest
|
|
2338
|
+
*/
|
|
2339
|
+
email: string;
|
|
2340
|
+
/**
|
|
2341
|
+
*
|
|
2342
|
+
* @type {string}
|
|
2343
|
+
* @memberof CreateUserRequest
|
|
2344
|
+
*/
|
|
2345
|
+
name: string;
|
|
2346
|
+
/**
|
|
2347
|
+
*
|
|
2348
|
+
* @type {string}
|
|
2349
|
+
* @memberof CreateUserRequest
|
|
2350
|
+
*/
|
|
2351
|
+
password?: string;
|
|
2352
|
+
/**
|
|
2353
|
+
*
|
|
2354
|
+
* @type {string}
|
|
2355
|
+
* @memberof CreateUserRequest
|
|
2356
|
+
*/
|
|
2357
|
+
phone?: string;
|
|
2358
|
+
/**
|
|
2359
|
+
*
|
|
2360
|
+
* @type {Array<string>}
|
|
2361
|
+
* @memberof CreateUserRequest
|
|
2362
|
+
*/
|
|
2363
|
+
roles?: Array<string>;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2291
2366
|
/**
|
|
2292
2367
|
* Halo Next API
|
|
2293
2368
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4876,80 +4951,6 @@ interface ListedUser {
|
|
|
4876
4951
|
user: User;
|
|
4877
4952
|
}
|
|
4878
4953
|
|
|
4879
|
-
/**
|
|
4880
|
-
* Halo Next API
|
|
4881
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4882
|
-
*
|
|
4883
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4884
|
-
*
|
|
4885
|
-
*
|
|
4886
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4887
|
-
* https://openapi-generator.tech
|
|
4888
|
-
* Do not edit the class manually.
|
|
4889
|
-
*/
|
|
4890
|
-
|
|
4891
|
-
/**
|
|
4892
|
-
*
|
|
4893
|
-
* @export
|
|
4894
|
-
* @interface ListedUserList
|
|
4895
|
-
*/
|
|
4896
|
-
interface ListedUserList {
|
|
4897
|
-
/**
|
|
4898
|
-
* Indicates whether current page is the first page.
|
|
4899
|
-
* @type {boolean}
|
|
4900
|
-
* @memberof ListedUserList
|
|
4901
|
-
*/
|
|
4902
|
-
first: boolean;
|
|
4903
|
-
/**
|
|
4904
|
-
* Indicates whether current page has previous page.
|
|
4905
|
-
* @type {boolean}
|
|
4906
|
-
* @memberof ListedUserList
|
|
4907
|
-
*/
|
|
4908
|
-
hasNext: boolean;
|
|
4909
|
-
/**
|
|
4910
|
-
* Indicates whether current page has previous page.
|
|
4911
|
-
* @type {boolean}
|
|
4912
|
-
* @memberof ListedUserList
|
|
4913
|
-
*/
|
|
4914
|
-
hasPrevious: boolean;
|
|
4915
|
-
/**
|
|
4916
|
-
* A chunk of items.
|
|
4917
|
-
* @type {Array<ListedUser>}
|
|
4918
|
-
* @memberof ListedUserList
|
|
4919
|
-
*/
|
|
4920
|
-
items: Array<ListedUser>;
|
|
4921
|
-
/**
|
|
4922
|
-
* Indicates whether current page is the last page.
|
|
4923
|
-
* @type {boolean}
|
|
4924
|
-
* @memberof ListedUserList
|
|
4925
|
-
*/
|
|
4926
|
-
last: boolean;
|
|
4927
|
-
/**
|
|
4928
|
-
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
4929
|
-
* @type {number}
|
|
4930
|
-
* @memberof ListedUserList
|
|
4931
|
-
*/
|
|
4932
|
-
page: number;
|
|
4933
|
-
/**
|
|
4934
|
-
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
4935
|
-
* @type {number}
|
|
4936
|
-
* @memberof ListedUserList
|
|
4937
|
-
*/
|
|
4938
|
-
size: number;
|
|
4939
|
-
/**
|
|
4940
|
-
* Total elements.
|
|
4941
|
-
* @type {number}
|
|
4942
|
-
* @memberof ListedUserList
|
|
4943
|
-
*/
|
|
4944
|
-
total: number;
|
|
4945
|
-
/**
|
|
4946
|
-
* Indicates total pages.
|
|
4947
|
-
* @type {number}
|
|
4948
|
-
* @memberof ListedUserList
|
|
4949
|
-
*/
|
|
4950
|
-
totalPages: number;
|
|
4951
|
-
}
|
|
4952
|
-
|
|
4953
4954
|
/**
|
|
4954
4955
|
* Halo Next API
|
|
4955
4956
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -8360,6 +8361,80 @@ interface UserConnectionList {
|
|
|
8360
8361
|
totalPages: number;
|
|
8361
8362
|
}
|
|
8362
8363
|
|
|
8364
|
+
/**
|
|
8365
|
+
* Halo Next API
|
|
8366
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
8367
|
+
*
|
|
8368
|
+
* The version of the OpenAPI document: 2.0.0
|
|
8369
|
+
*
|
|
8370
|
+
*
|
|
8371
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8372
|
+
* https://openapi-generator.tech
|
|
8373
|
+
* Do not edit the class manually.
|
|
8374
|
+
*/
|
|
8375
|
+
|
|
8376
|
+
/**
|
|
8377
|
+
*
|
|
8378
|
+
* @export
|
|
8379
|
+
* @interface UserEndpointListedUserList
|
|
8380
|
+
*/
|
|
8381
|
+
interface UserEndpointListedUserList {
|
|
8382
|
+
/**
|
|
8383
|
+
* Indicates whether current page is the first page.
|
|
8384
|
+
* @type {boolean}
|
|
8385
|
+
* @memberof UserEndpointListedUserList
|
|
8386
|
+
*/
|
|
8387
|
+
first: boolean;
|
|
8388
|
+
/**
|
|
8389
|
+
* Indicates whether current page has previous page.
|
|
8390
|
+
* @type {boolean}
|
|
8391
|
+
* @memberof UserEndpointListedUserList
|
|
8392
|
+
*/
|
|
8393
|
+
hasNext: boolean;
|
|
8394
|
+
/**
|
|
8395
|
+
* Indicates whether current page has previous page.
|
|
8396
|
+
* @type {boolean}
|
|
8397
|
+
* @memberof UserEndpointListedUserList
|
|
8398
|
+
*/
|
|
8399
|
+
hasPrevious: boolean;
|
|
8400
|
+
/**
|
|
8401
|
+
* A chunk of items.
|
|
8402
|
+
* @type {Array<ListedUser>}
|
|
8403
|
+
* @memberof UserEndpointListedUserList
|
|
8404
|
+
*/
|
|
8405
|
+
items: Array<ListedUser>;
|
|
8406
|
+
/**
|
|
8407
|
+
* Indicates whether current page is the last page.
|
|
8408
|
+
* @type {boolean}
|
|
8409
|
+
* @memberof UserEndpointListedUserList
|
|
8410
|
+
*/
|
|
8411
|
+
last: boolean;
|
|
8412
|
+
/**
|
|
8413
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
8414
|
+
* @type {number}
|
|
8415
|
+
* @memberof UserEndpointListedUserList
|
|
8416
|
+
*/
|
|
8417
|
+
page: number;
|
|
8418
|
+
/**
|
|
8419
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
8420
|
+
* @type {number}
|
|
8421
|
+
* @memberof UserEndpointListedUserList
|
|
8422
|
+
*/
|
|
8423
|
+
size: number;
|
|
8424
|
+
/**
|
|
8425
|
+
* Total elements.
|
|
8426
|
+
* @type {number}
|
|
8427
|
+
* @memberof UserEndpointListedUserList
|
|
8428
|
+
*/
|
|
8429
|
+
total: number;
|
|
8430
|
+
/**
|
|
8431
|
+
* Indicates total pages.
|
|
8432
|
+
* @type {number}
|
|
8433
|
+
* @memberof UserEndpointListedUserList
|
|
8434
|
+
*/
|
|
8435
|
+
totalPages: number;
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8363
8438
|
/**
|
|
8364
8439
|
* Halo Next API
|
|
8365
8440
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -11175,6 +11250,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
11175
11250
|
* @throws {RequiredError}
|
|
11176
11251
|
*/
|
|
11177
11252
|
changePassword: (name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11253
|
+
/**
|
|
11254
|
+
* Creates a new user.
|
|
11255
|
+
* @param {CreateUserRequest} createUserRequest
|
|
11256
|
+
* @param {*} [options] Override http request option.
|
|
11257
|
+
* @throws {RequiredError}
|
|
11258
|
+
*/
|
|
11259
|
+
createUser: (createUserRequest: CreateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11178
11260
|
/**
|
|
11179
11261
|
* Get current user detail
|
|
11180
11262
|
* @param {*} [options] Override http request option.
|
|
@@ -11206,16 +11288,16 @@ declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?
|
|
|
11206
11288
|
/**
|
|
11207
11289
|
* List users
|
|
11208
11290
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
11209
|
-
* @param {string} [keyword]
|
|
11210
11291
|
* @param {string} [role]
|
|
11292
|
+
* @param {string} [keyword]
|
|
11211
11293
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11294
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11212
11295
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11213
11296
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11214
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11215
11297
|
* @param {*} [options] Override http request option.
|
|
11216
11298
|
* @throws {RequiredError}
|
|
11217
11299
|
*/
|
|
11218
|
-
listUsers: (sort?: Array<string>,
|
|
11300
|
+
listUsers: (sort?: Array<string>, role?: string, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11219
11301
|
/**
|
|
11220
11302
|
* Update current user profile, but password.
|
|
11221
11303
|
* @param {User} user
|
|
@@ -11237,6 +11319,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
11237
11319
|
* @throws {RequiredError}
|
|
11238
11320
|
*/
|
|
11239
11321
|
changePassword(name: string, changePasswordRequest: ChangePasswordRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
11322
|
+
/**
|
|
11323
|
+
* Creates a new user.
|
|
11324
|
+
* @param {CreateUserRequest} createUserRequest
|
|
11325
|
+
* @param {*} [options] Override http request option.
|
|
11326
|
+
* @throws {RequiredError}
|
|
11327
|
+
*/
|
|
11328
|
+
createUser(createUserRequest: CreateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
11240
11329
|
/**
|
|
11241
11330
|
* Get current user detail
|
|
11242
11331
|
* @param {*} [options] Override http request option.
|
|
@@ -11268,16 +11357,16 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration
|
|
|
11268
11357
|
/**
|
|
11269
11358
|
* List users
|
|
11270
11359
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
11271
|
-
* @param {string} [keyword]
|
|
11272
11360
|
* @param {string} [role]
|
|
11361
|
+
* @param {string} [keyword]
|
|
11273
11362
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11363
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11274
11364
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11275
11365
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11276
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11277
11366
|
* @param {*} [options] Override http request option.
|
|
11278
11367
|
* @throws {RequiredError}
|
|
11279
11368
|
*/
|
|
11280
|
-
listUsers(sort?: Array<string>,
|
|
11369
|
+
listUsers(sort?: Array<string>, role?: string, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserEndpointListedUserList>>;
|
|
11281
11370
|
/**
|
|
11282
11371
|
* Update current user profile, but password.
|
|
11283
11372
|
* @param {User} user
|
|
@@ -11298,6 +11387,13 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
|
|
|
11298
11387
|
* @throws {RequiredError}
|
|
11299
11388
|
*/
|
|
11300
11389
|
changePassword(requestParameters: ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
11390
|
+
/**
|
|
11391
|
+
* Creates a new user.
|
|
11392
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest} requestParameters Request parameters.
|
|
11393
|
+
* @param {*} [options] Override http request option.
|
|
11394
|
+
* @throws {RequiredError}
|
|
11395
|
+
*/
|
|
11396
|
+
createUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
11301
11397
|
/**
|
|
11302
11398
|
* Get current user detail
|
|
11303
11399
|
* @param {*} [options] Override http request option.
|
|
@@ -11331,7 +11427,7 @@ declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configur
|
|
|
11331
11427
|
* @param {*} [options] Override http request option.
|
|
11332
11428
|
* @throws {RequiredError}
|
|
11333
11429
|
*/
|
|
11334
|
-
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
11430
|
+
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): AxiosPromise<UserEndpointListedUserList>;
|
|
11335
11431
|
/**
|
|
11336
11432
|
* Update current user profile, but password.
|
|
11337
11433
|
* @param {ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest} requestParameters Request parameters.
|
|
@@ -11359,6 +11455,19 @@ interface ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest {
|
|
|
11359
11455
|
*/
|
|
11360
11456
|
readonly changePasswordRequest: ChangePasswordRequest;
|
|
11361
11457
|
}
|
|
11458
|
+
/**
|
|
11459
|
+
* Request parameters for createUser operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
11460
|
+
* @export
|
|
11461
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest
|
|
11462
|
+
*/
|
|
11463
|
+
interface ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest {
|
|
11464
|
+
/**
|
|
11465
|
+
*
|
|
11466
|
+
* @type {CreateUserRequest}
|
|
11467
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiCreateUser
|
|
11468
|
+
*/
|
|
11469
|
+
readonly createUserRequest: CreateUserRequest;
|
|
11470
|
+
}
|
|
11362
11471
|
/**
|
|
11363
11472
|
* Request parameters for getPermissions operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
11364
11473
|
* @export
|
|
@@ -11421,19 +11530,25 @@ interface ApiConsoleHaloRunV1alpha1UserApiListUsersRequest {
|
|
|
11421
11530
|
* @type {string}
|
|
11422
11531
|
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11423
11532
|
*/
|
|
11424
|
-
readonly
|
|
11533
|
+
readonly role?: string;
|
|
11425
11534
|
/**
|
|
11426
11535
|
*
|
|
11427
11536
|
* @type {string}
|
|
11428
11537
|
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11429
11538
|
*/
|
|
11430
|
-
readonly
|
|
11539
|
+
readonly keyword?: string;
|
|
11431
11540
|
/**
|
|
11432
11541
|
* Size of one page. Zero indicates no limit.
|
|
11433
11542
|
* @type {number}
|
|
11434
11543
|
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11435
11544
|
*/
|
|
11436
11545
|
readonly size?: number;
|
|
11546
|
+
/**
|
|
11547
|
+
* The page number. Zero indicates no page.
|
|
11548
|
+
* @type {number}
|
|
11549
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11550
|
+
*/
|
|
11551
|
+
readonly page?: number;
|
|
11437
11552
|
/**
|
|
11438
11553
|
* Label selector for filtering.
|
|
11439
11554
|
* @type {Array<string>}
|
|
@@ -11446,12 +11561,6 @@ interface ApiConsoleHaloRunV1alpha1UserApiListUsersRequest {
|
|
|
11446
11561
|
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11447
11562
|
*/
|
|
11448
11563
|
readonly fieldSelector?: Array<string>;
|
|
11449
|
-
/**
|
|
11450
|
-
* The page number. Zero indicates no page.
|
|
11451
|
-
* @type {number}
|
|
11452
|
-
* @memberof ApiConsoleHaloRunV1alpha1UserApiListUsers
|
|
11453
|
-
*/
|
|
11454
|
-
readonly page?: number;
|
|
11455
11564
|
}
|
|
11456
11565
|
/**
|
|
11457
11566
|
* Request parameters for updateCurrentUser operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
@@ -11481,6 +11590,14 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
11481
11590
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
11482
11591
|
*/
|
|
11483
11592
|
changePassword(requestParameters: ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
11593
|
+
/**
|
|
11594
|
+
* Creates a new user.
|
|
11595
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest} requestParameters Request parameters.
|
|
11596
|
+
* @param {*} [options] Override http request option.
|
|
11597
|
+
* @throws {RequiredError}
|
|
11598
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
11599
|
+
*/
|
|
11600
|
+
createUser(requestParameters: ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
11484
11601
|
/**
|
|
11485
11602
|
* Get current user detail
|
|
11486
11603
|
* @param {*} [options] Override http request option.
|
|
@@ -11519,7 +11636,7 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
11519
11636
|
* @throws {RequiredError}
|
|
11520
11637
|
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
11521
11638
|
*/
|
|
11522
|
-
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
11639
|
+
listUsers(requestParameters?: ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserEndpointListedUserList, any>>;
|
|
11523
11640
|
/**
|
|
11524
11641
|
* Update current user profile, but password.
|
|
11525
11642
|
* @param {ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest} requestParameters Request parameters.
|
|
@@ -20268,4 +20385,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
20268
20385
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
20269
20386
|
}
|
|
20270
20387
|
|
|
20271
|
-
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiDisableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiEnableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiSignUpRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiCreateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiDeleteauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1AuthProviderApiGetauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiUpdateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiCreateauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiDeleteauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, AuthHaloRunV1alpha1UserConnectionApiGetauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiUpdateauthHaloRunV1alpha1UserConnectionRequest, AuthProvider, AuthProviderList, AuthProviderSpec, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStats, CommentStatsVo, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, ConfigMapRef, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, DetailedUser, Excerpt, Extension, ExtensionDefinition, ExtensionDefinitionList, ExtensionPointDefinition, ExtensionPointDefinitionList, ExtensionPointSpec, ExtensionPointSpecTypeEnum, ExtensionSpec, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedAuthProvider, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, ListedUser, ListedUserList, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiCreatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiDeletepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApiGetpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiCreatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiDeletepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApiGetpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, PublicKeyResponse, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Secret, SecretList, Setting, SettingForm, SettingList, SettingRef, SettingSpec, SignUpRequest, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, User, UserConnection, UserConnectionList, UserConnectionSpec, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiCreatev1alpha1SecretRequest, V1alpha1SecretApiDeletev1alpha1SecretRequest, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SecretApiGetv1alpha1SecretRequest, V1alpha1SecretApiListv1alpha1SecretRequest, V1alpha1SecretApiUpdatev1alpha1SecretRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
20388
|
+
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1AuthProviderApi, ApiConsoleHaloRunV1alpha1AuthProviderApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AuthProviderApiDisableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiEnableAuthProviderRequest, ApiConsoleHaloRunV1alpha1AuthProviderApiFactory, ApiConsoleHaloRunV1alpha1AuthProviderApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiFetchPluginSettingRequest, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpdatePluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFetchPostHeadContentRequest, ApiConsoleHaloRunV1alpha1PostApiFetchPostReleaseContentRequest, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageHeadContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFetchSinglePageReleaseContentRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiActivateThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiFetchThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpdateThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiCreateUserRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGetUserDetailRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiConsoleHaloRunV1alpha1UserApiListUsersRequest, ApiConsoleHaloRunV1alpha1UserApiUpdateCurrentUserRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiSignUpRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, AuthHaloRunV1alpha1AuthProviderApi, AuthHaloRunV1alpha1AuthProviderApiAxiosParamCreator, AuthHaloRunV1alpha1AuthProviderApiCreateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiDeleteauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiFactory, AuthHaloRunV1alpha1AuthProviderApiFp, AuthHaloRunV1alpha1AuthProviderApiGetauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiListauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1AuthProviderApiUpdateauthHaloRunV1alpha1AuthProviderRequest, AuthHaloRunV1alpha1UserConnectionApi, AuthHaloRunV1alpha1UserConnectionApiAxiosParamCreator, AuthHaloRunV1alpha1UserConnectionApiCreateauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiDeleteauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiFactory, AuthHaloRunV1alpha1UserConnectionApiFp, AuthHaloRunV1alpha1UserConnectionApiGetauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiListauthHaloRunV1alpha1UserConnectionRequest, AuthHaloRunV1alpha1UserConnectionApiUpdateauthHaloRunV1alpha1UserConnectionRequest, AuthProvider, AuthProviderList, AuthProviderSpec, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStats, CommentStatsVo, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, ConfigMapRef, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentWrapper, Contributor, Counter, CounterList, CounterRequest, CreateUserRequest, CustomTemplates, DashboardStats, DetailedUser, Excerpt, Extension, ExtensionDefinition, ExtensionDefinitionList, ExtensionPointDefinition, ExtensionPointDefinitionList, ExtensionPointSpec, ExtensionPointSpecTypeEnum, ExtensionSpec, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedAuthProvider, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, ListedUser, LoginApi, LoginApiAxiosParamCreator, LoginApiFactory, LoginApiFp, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemSpecTargetEnum, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1ExtensionDefinitionApi, PluginHaloRunV1alpha1ExtensionDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionDefinitionApiCreatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiDeletepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionDefinitionApiFp, PluginHaloRunV1alpha1ExtensionDefinitionApiGetpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiListpluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApi, PluginHaloRunV1alpha1ExtensionPointDefinitionApiAxiosParamCreator, PluginHaloRunV1alpha1ExtensionPointDefinitionApiCreatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiDeletepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFactory, PluginHaloRunV1alpha1ExtensionPointDefinitionApiFp, PluginHaloRunV1alpha1ExtensionPointDefinitionApiGetpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiListpluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1ExtensionPointDefinitionApiUpdatepluginHaloRunV1alpha1ExtensionPointDefinitionRequest, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, PublicKeyResponse, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Secret, SecretList, Setting, SettingForm, SettingList, SettingRef, SettingSpec, SignUpRequest, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, ThemeStatusPhaseEnum, User, UserConnection, UserConnectionList, UserConnectionSpec, UserEndpointListedUserList, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SecretApi, V1alpha1SecretApiAxiosParamCreator, V1alpha1SecretApiCreatev1alpha1SecretRequest, V1alpha1SecretApiDeletev1alpha1SecretRequest, V1alpha1SecretApiFactory, V1alpha1SecretApiFp, V1alpha1SecretApiGetv1alpha1SecretRequest, V1alpha1SecretApiListv1alpha1SecretRequest, V1alpha1SecretApiUpdatev1alpha1SecretRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
package/dist/index.mjs
CHANGED
|
@@ -3088,6 +3088,41 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3088
3088
|
options: localVarRequestOptions
|
|
3089
3089
|
};
|
|
3090
3090
|
},
|
|
3091
|
+
createUser: async (createUserRequest, options = {}) => {
|
|
3092
|
+
assertParamExists("createUser", "createUserRequest", createUserRequest);
|
|
3093
|
+
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users`;
|
|
3094
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3095
|
+
let baseOptions;
|
|
3096
|
+
if (configuration) {
|
|
3097
|
+
baseOptions = configuration.baseOptions;
|
|
3098
|
+
}
|
|
3099
|
+
const localVarRequestOptions = {
|
|
3100
|
+
method: "POST",
|
|
3101
|
+
...baseOptions,
|
|
3102
|
+
...options
|
|
3103
|
+
};
|
|
3104
|
+
const localVarHeaderParameter = {};
|
|
3105
|
+
const localVarQueryParameter = {};
|
|
3106
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3107
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3108
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3109
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3110
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3111
|
+
localVarRequestOptions.headers = {
|
|
3112
|
+
...localVarHeaderParameter,
|
|
3113
|
+
...headersFromBaseOptions,
|
|
3114
|
+
...options.headers
|
|
3115
|
+
};
|
|
3116
|
+
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
3117
|
+
createUserRequest,
|
|
3118
|
+
localVarRequestOptions,
|
|
3119
|
+
configuration
|
|
3120
|
+
);
|
|
3121
|
+
return {
|
|
3122
|
+
url: toPathString(localVarUrlObj),
|
|
3123
|
+
options: localVarRequestOptions
|
|
3124
|
+
};
|
|
3125
|
+
},
|
|
3091
3126
|
getCurrentUserDetail: async (options = {}) => {
|
|
3092
3127
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users/-`;
|
|
3093
3128
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3219,7 +3254,7 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3219
3254
|
options: localVarRequestOptions
|
|
3220
3255
|
};
|
|
3221
3256
|
},
|
|
3222
|
-
listUsers: async (sort,
|
|
3257
|
+
listUsers: async (sort, role, keyword, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
3223
3258
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/users`;
|
|
3224
3259
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3225
3260
|
let baseOptions;
|
|
@@ -3238,24 +3273,24 @@ const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator = function(configuration
|
|
|
3238
3273
|
if (sort) {
|
|
3239
3274
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
3240
3275
|
}
|
|
3241
|
-
if (keyword !== void 0) {
|
|
3242
|
-
localVarQueryParameter["keyword"] = keyword;
|
|
3243
|
-
}
|
|
3244
3276
|
if (role !== void 0) {
|
|
3245
3277
|
localVarQueryParameter["role"] = role;
|
|
3246
3278
|
}
|
|
3279
|
+
if (keyword !== void 0) {
|
|
3280
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
3281
|
+
}
|
|
3247
3282
|
if (size !== void 0) {
|
|
3248
3283
|
localVarQueryParameter["size"] = size;
|
|
3249
3284
|
}
|
|
3285
|
+
if (page !== void 0) {
|
|
3286
|
+
localVarQueryParameter["page"] = page;
|
|
3287
|
+
}
|
|
3250
3288
|
if (labelSelector) {
|
|
3251
3289
|
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3252
3290
|
}
|
|
3253
3291
|
if (fieldSelector) {
|
|
3254
3292
|
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3255
3293
|
}
|
|
3256
|
-
if (page !== void 0) {
|
|
3257
|
-
localVarQueryParameter["page"] = page;
|
|
3258
|
-
}
|
|
3259
3294
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3260
3295
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3261
3296
|
localVarRequestOptions.headers = {
|
|
@@ -3321,6 +3356,18 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
3321
3356
|
configuration
|
|
3322
3357
|
);
|
|
3323
3358
|
},
|
|
3359
|
+
async createUser(createUserRequest, options) {
|
|
3360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createUser(
|
|
3361
|
+
createUserRequest,
|
|
3362
|
+
options
|
|
3363
|
+
);
|
|
3364
|
+
return createRequestFunction(
|
|
3365
|
+
localVarAxiosArgs,
|
|
3366
|
+
globalAxios,
|
|
3367
|
+
BASE_PATH,
|
|
3368
|
+
configuration
|
|
3369
|
+
);
|
|
3370
|
+
},
|
|
3324
3371
|
async getCurrentUserDetail(options) {
|
|
3325
3372
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentUserDetail(options);
|
|
3326
3373
|
return createRequestFunction(
|
|
@@ -3367,15 +3414,15 @@ const ApiConsoleHaloRunV1alpha1UserApiFp = function(configuration) {
|
|
|
3367
3414
|
configuration
|
|
3368
3415
|
);
|
|
3369
3416
|
},
|
|
3370
|
-
async listUsers(sort,
|
|
3417
|
+
async listUsers(sort, role, keyword, size, page, labelSelector, fieldSelector, options) {
|
|
3371
3418
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listUsers(
|
|
3372
3419
|
sort,
|
|
3373
|
-
keyword,
|
|
3374
3420
|
role,
|
|
3421
|
+
keyword,
|
|
3375
3422
|
size,
|
|
3423
|
+
page,
|
|
3376
3424
|
labelSelector,
|
|
3377
3425
|
fieldSelector,
|
|
3378
|
-
page,
|
|
3379
3426
|
options
|
|
3380
3427
|
);
|
|
3381
3428
|
return createRequestFunction(
|
|
@@ -3406,6 +3453,9 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
3406
3453
|
options
|
|
3407
3454
|
).then((request) => request(axios, basePath));
|
|
3408
3455
|
},
|
|
3456
|
+
createUser(requestParameters, options) {
|
|
3457
|
+
return localVarFp.createUser(requestParameters.createUserRequest, options).then((request) => request(axios, basePath));
|
|
3458
|
+
},
|
|
3409
3459
|
getCurrentUserDetail(options) {
|
|
3410
3460
|
return localVarFp.getCurrentUserDetail(options).then((request) => request(axios, basePath));
|
|
3411
3461
|
},
|
|
@@ -3425,12 +3475,12 @@ const ApiConsoleHaloRunV1alpha1UserApiFactory = function(configuration, basePath
|
|
|
3425
3475
|
listUsers(requestParameters = {}, options) {
|
|
3426
3476
|
return localVarFp.listUsers(
|
|
3427
3477
|
requestParameters.sort,
|
|
3428
|
-
requestParameters.keyword,
|
|
3429
3478
|
requestParameters.role,
|
|
3479
|
+
requestParameters.keyword,
|
|
3430
3480
|
requestParameters.size,
|
|
3481
|
+
requestParameters.page,
|
|
3431
3482
|
requestParameters.labelSelector,
|
|
3432
3483
|
requestParameters.fieldSelector,
|
|
3433
|
-
requestParameters.page,
|
|
3434
3484
|
options
|
|
3435
3485
|
).then((request) => request(axios, basePath));
|
|
3436
3486
|
},
|
|
@@ -3447,6 +3497,9 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
3447
3497
|
options
|
|
3448
3498
|
).then((request) => request(this.axios, this.basePath));
|
|
3449
3499
|
}
|
|
3500
|
+
createUser(requestParameters, options) {
|
|
3501
|
+
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).createUser(requestParameters.createUserRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3502
|
+
}
|
|
3450
3503
|
getCurrentUserDetail(options) {
|
|
3451
3504
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).getCurrentUserDetail(options).then((request) => request(this.axios, this.basePath));
|
|
3452
3505
|
}
|
|
@@ -3466,12 +3519,12 @@ class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
3466
3519
|
listUsers(requestParameters = {}, options) {
|
|
3467
3520
|
return ApiConsoleHaloRunV1alpha1UserApiFp(this.configuration).listUsers(
|
|
3468
3521
|
requestParameters.sort,
|
|
3469
|
-
requestParameters.keyword,
|
|
3470
3522
|
requestParameters.role,
|
|
3523
|
+
requestParameters.keyword,
|
|
3471
3524
|
requestParameters.size,
|
|
3525
|
+
requestParameters.page,
|
|
3472
3526
|
requestParameters.labelSelector,
|
|
3473
3527
|
requestParameters.fieldSelector,
|
|
3474
|
-
requestParameters.page,
|
|
3475
3528
|
options
|
|
3476
3529
|
).then((request) => request(this.axios, this.basePath));
|
|
3477
3530
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halo-dev/api-client",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "@halo-dev",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"prettier": "prettier --write './src/**/*.{js,jsx,ts,tsx,json,yml,yaml}'",
|
|
49
49
|
"typecheck": "tsc --noEmit",
|
|
50
50
|
"release": "bumpp",
|
|
51
|
-
"gen": "openapi-generator-cli generate -i http://localhost:8090/v3/api-docs/all-api -g typescript-axios -c ./src/.openapi_config.yaml -o ./src --type-mappings='set=Array' && pnpm lint && pnpm prettier"
|
|
51
|
+
"gen": "openapi-generator-cli generate -i http://localhost:8090/v3/api-docs/all-api -g typescript-axios -c ./src/.openapi_config.yaml -o ./src --type-mappings='set=Array' --skip-validate-spec && pnpm lint && pnpm prettier"
|
|
52
52
|
}
|
|
53
53
|
}
|