@halo-dev/api-client 2.4.0-rc.1 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +376 -0
- package/dist/index.d.ts +511 -1
- package/dist/index.mjs +369 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1345,6 +1345,12 @@ interface CommentStatus {
|
|
|
1345
1345
|
* @memberof CommentStatus
|
|
1346
1346
|
*/
|
|
1347
1347
|
unreadReplyCount?: number;
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @type {number}
|
|
1351
|
+
* @memberof CommentStatus
|
|
1352
|
+
*/
|
|
1353
|
+
visibleReplyCount?: number;
|
|
1348
1354
|
}
|
|
1349
1355
|
|
|
1350
1356
|
/**
|
|
@@ -7183,6 +7189,140 @@ interface SearchEngineList {
|
|
|
7183
7189
|
totalPages: number;
|
|
7184
7190
|
}
|
|
7185
7191
|
|
|
7192
|
+
/**
|
|
7193
|
+
* Halo Next API
|
|
7194
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7195
|
+
*
|
|
7196
|
+
* The version of the OpenAPI document: 2.0.0
|
|
7197
|
+
*
|
|
7198
|
+
*
|
|
7199
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7200
|
+
* https://openapi-generator.tech
|
|
7201
|
+
* Do not edit the class manually.
|
|
7202
|
+
*/
|
|
7203
|
+
|
|
7204
|
+
/**
|
|
7205
|
+
*
|
|
7206
|
+
* @export
|
|
7207
|
+
* @interface Secret
|
|
7208
|
+
*/
|
|
7209
|
+
interface Secret {
|
|
7210
|
+
/**
|
|
7211
|
+
*
|
|
7212
|
+
* @type {string}
|
|
7213
|
+
* @memberof Secret
|
|
7214
|
+
*/
|
|
7215
|
+
apiVersion: string;
|
|
7216
|
+
/**
|
|
7217
|
+
*
|
|
7218
|
+
* @type {{ [key: string]: string; }}
|
|
7219
|
+
* @memberof Secret
|
|
7220
|
+
*/
|
|
7221
|
+
data?: {
|
|
7222
|
+
[key: string]: string;
|
|
7223
|
+
};
|
|
7224
|
+
/**
|
|
7225
|
+
*
|
|
7226
|
+
* @type {string}
|
|
7227
|
+
* @memberof Secret
|
|
7228
|
+
*/
|
|
7229
|
+
kind: string;
|
|
7230
|
+
/**
|
|
7231
|
+
*
|
|
7232
|
+
* @type {Metadata}
|
|
7233
|
+
* @memberof Secret
|
|
7234
|
+
*/
|
|
7235
|
+
metadata: Metadata;
|
|
7236
|
+
/**
|
|
7237
|
+
*
|
|
7238
|
+
* @type {{ [key: string]: string; }}
|
|
7239
|
+
* @memberof Secret
|
|
7240
|
+
*/
|
|
7241
|
+
stringData?: {
|
|
7242
|
+
[key: string]: string;
|
|
7243
|
+
};
|
|
7244
|
+
/**
|
|
7245
|
+
*
|
|
7246
|
+
* @type {string}
|
|
7247
|
+
* @memberof Secret
|
|
7248
|
+
*/
|
|
7249
|
+
type?: string;
|
|
7250
|
+
}
|
|
7251
|
+
|
|
7252
|
+
/**
|
|
7253
|
+
* Halo Next API
|
|
7254
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7255
|
+
*
|
|
7256
|
+
* The version of the OpenAPI document: 2.0.0
|
|
7257
|
+
*
|
|
7258
|
+
*
|
|
7259
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7260
|
+
* https://openapi-generator.tech
|
|
7261
|
+
* Do not edit the class manually.
|
|
7262
|
+
*/
|
|
7263
|
+
|
|
7264
|
+
/**
|
|
7265
|
+
*
|
|
7266
|
+
* @export
|
|
7267
|
+
* @interface SecretList
|
|
7268
|
+
*/
|
|
7269
|
+
interface SecretList {
|
|
7270
|
+
/**
|
|
7271
|
+
* Indicates whether current page is the first page.
|
|
7272
|
+
* @type {boolean}
|
|
7273
|
+
* @memberof SecretList
|
|
7274
|
+
*/
|
|
7275
|
+
first: boolean;
|
|
7276
|
+
/**
|
|
7277
|
+
* Indicates whether current page has previous page.
|
|
7278
|
+
* @type {boolean}
|
|
7279
|
+
* @memberof SecretList
|
|
7280
|
+
*/
|
|
7281
|
+
hasNext: boolean;
|
|
7282
|
+
/**
|
|
7283
|
+
* Indicates whether current page has previous page.
|
|
7284
|
+
* @type {boolean}
|
|
7285
|
+
* @memberof SecretList
|
|
7286
|
+
*/
|
|
7287
|
+
hasPrevious: boolean;
|
|
7288
|
+
/**
|
|
7289
|
+
* A chunk of items.
|
|
7290
|
+
* @type {Array<Secret>}
|
|
7291
|
+
* @memberof SecretList
|
|
7292
|
+
*/
|
|
7293
|
+
items: Array<Secret>;
|
|
7294
|
+
/**
|
|
7295
|
+
* Indicates whether current page is the last page.
|
|
7296
|
+
* @type {boolean}
|
|
7297
|
+
* @memberof SecretList
|
|
7298
|
+
*/
|
|
7299
|
+
last: boolean;
|
|
7300
|
+
/**
|
|
7301
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
7302
|
+
* @type {number}
|
|
7303
|
+
* @memberof SecretList
|
|
7304
|
+
*/
|
|
7305
|
+
page: number;
|
|
7306
|
+
/**
|
|
7307
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
7308
|
+
* @type {number}
|
|
7309
|
+
* @memberof SecretList
|
|
7310
|
+
*/
|
|
7311
|
+
size: number;
|
|
7312
|
+
/**
|
|
7313
|
+
* Total elements.
|
|
7314
|
+
* @type {number}
|
|
7315
|
+
* @memberof SecretList
|
|
7316
|
+
*/
|
|
7317
|
+
total: number;
|
|
7318
|
+
/**
|
|
7319
|
+
* Indicates total pages.
|
|
7320
|
+
* @type {number}
|
|
7321
|
+
* @memberof SecretList
|
|
7322
|
+
*/
|
|
7323
|
+
totalPages: number;
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7186
7326
|
/**
|
|
7187
7327
|
* Halo Next API
|
|
7188
7328
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -7364,6 +7504,38 @@ interface SettingList {
|
|
|
7364
7504
|
totalPages: number;
|
|
7365
7505
|
}
|
|
7366
7506
|
|
|
7507
|
+
/**
|
|
7508
|
+
* Halo Next API
|
|
7509
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7510
|
+
*
|
|
7511
|
+
* The version of the OpenAPI document: 2.0.0
|
|
7512
|
+
*
|
|
7513
|
+
*
|
|
7514
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7515
|
+
* https://openapi-generator.tech
|
|
7516
|
+
* Do not edit the class manually.
|
|
7517
|
+
*/
|
|
7518
|
+
|
|
7519
|
+
/**
|
|
7520
|
+
*
|
|
7521
|
+
* @export
|
|
7522
|
+
* @interface SignUpRequest
|
|
7523
|
+
*/
|
|
7524
|
+
interface SignUpRequest {
|
|
7525
|
+
/**
|
|
7526
|
+
*
|
|
7527
|
+
* @type {string}
|
|
7528
|
+
* @memberof SignUpRequest
|
|
7529
|
+
*/
|
|
7530
|
+
password: string;
|
|
7531
|
+
/**
|
|
7532
|
+
*
|
|
7533
|
+
* @type {User}
|
|
7534
|
+
* @memberof SignUpRequest
|
|
7535
|
+
*/
|
|
7536
|
+
user: User;
|
|
7537
|
+
}
|
|
7538
|
+
|
|
7367
7539
|
/**
|
|
7368
7540
|
* Halo Next API
|
|
7369
7541
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -11905,6 +12077,75 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
11905
12077
|
upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11906
12078
|
}
|
|
11907
12079
|
|
|
12080
|
+
/**
|
|
12081
|
+
* ApiHaloRunV1alpha1UserApi - axios parameter creator
|
|
12082
|
+
* @export
|
|
12083
|
+
*/
|
|
12084
|
+
declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12085
|
+
/**
|
|
12086
|
+
* Sign up a new user
|
|
12087
|
+
* @param {SignUpRequest} signUpRequest
|
|
12088
|
+
* @param {*} [options] Override http request option.
|
|
12089
|
+
* @throws {RequiredError}
|
|
12090
|
+
*/
|
|
12091
|
+
signUp: (signUpRequest: SignUpRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12092
|
+
};
|
|
12093
|
+
/**
|
|
12094
|
+
* ApiHaloRunV1alpha1UserApi - functional programming interface
|
|
12095
|
+
* @export
|
|
12096
|
+
*/
|
|
12097
|
+
declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
12098
|
+
/**
|
|
12099
|
+
* Sign up a new user
|
|
12100
|
+
* @param {SignUpRequest} signUpRequest
|
|
12101
|
+
* @param {*} [options] Override http request option.
|
|
12102
|
+
* @throws {RequiredError}
|
|
12103
|
+
*/
|
|
12104
|
+
signUp(signUpRequest: SignUpRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
12105
|
+
};
|
|
12106
|
+
/**
|
|
12107
|
+
* ApiHaloRunV1alpha1UserApi - factory interface
|
|
12108
|
+
* @export
|
|
12109
|
+
*/
|
|
12110
|
+
declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12111
|
+
/**
|
|
12112
|
+
* Sign up a new user
|
|
12113
|
+
* @param {ApiHaloRunV1alpha1UserApiSignUpRequest} requestParameters Request parameters.
|
|
12114
|
+
* @param {*} [options] Override http request option.
|
|
12115
|
+
* @throws {RequiredError}
|
|
12116
|
+
*/
|
|
12117
|
+
signUp(requestParameters: ApiHaloRunV1alpha1UserApiSignUpRequest, options?: AxiosRequestConfig): AxiosPromise<User>;
|
|
12118
|
+
};
|
|
12119
|
+
/**
|
|
12120
|
+
* Request parameters for signUp operation in ApiHaloRunV1alpha1UserApi.
|
|
12121
|
+
* @export
|
|
12122
|
+
* @interface ApiHaloRunV1alpha1UserApiSignUpRequest
|
|
12123
|
+
*/
|
|
12124
|
+
interface ApiHaloRunV1alpha1UserApiSignUpRequest {
|
|
12125
|
+
/**
|
|
12126
|
+
*
|
|
12127
|
+
* @type {SignUpRequest}
|
|
12128
|
+
* @memberof ApiHaloRunV1alpha1UserApiSignUp
|
|
12129
|
+
*/
|
|
12130
|
+
readonly signUpRequest: SignUpRequest;
|
|
12131
|
+
}
|
|
12132
|
+
/**
|
|
12133
|
+
* ApiHaloRunV1alpha1UserApi - object-oriented interface
|
|
12134
|
+
* @export
|
|
12135
|
+
* @class ApiHaloRunV1alpha1UserApi
|
|
12136
|
+
* @extends {BaseAPI}
|
|
12137
|
+
*/
|
|
12138
|
+
declare class ApiHaloRunV1alpha1UserApi extends BaseAPI {
|
|
12139
|
+
/**
|
|
12140
|
+
* Sign up a new user
|
|
12141
|
+
* @param {ApiHaloRunV1alpha1UserApiSignUpRequest} requestParameters Request parameters.
|
|
12142
|
+
* @param {*} [options] Override http request option.
|
|
12143
|
+
* @throws {RequiredError}
|
|
12144
|
+
* @memberof ApiHaloRunV1alpha1UserApi
|
|
12145
|
+
*/
|
|
12146
|
+
signUp(requestParameters: ApiHaloRunV1alpha1UserApiSignUpRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
12147
|
+
}
|
|
12148
|
+
|
|
11908
12149
|
/**
|
|
11909
12150
|
* AuthHaloRunV1alpha1AuthProviderApi - axios parameter creator
|
|
11910
12151
|
* @export
|
|
@@ -19220,6 +19461,275 @@ declare class V1alpha1RoleBindingApi extends BaseAPI {
|
|
|
19220
19461
|
updatev1alpha1RoleBinding(requestParameters: V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<RoleBinding, any>>;
|
|
19221
19462
|
}
|
|
19222
19463
|
|
|
19464
|
+
/**
|
|
19465
|
+
* V1alpha1SecretApi - axios parameter creator
|
|
19466
|
+
* @export
|
|
19467
|
+
*/
|
|
19468
|
+
declare const V1alpha1SecretApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19469
|
+
/**
|
|
19470
|
+
* Create v1alpha1/Secret
|
|
19471
|
+
* @param {Secret} [secret] Fresh secret
|
|
19472
|
+
* @param {*} [options] Override http request option.
|
|
19473
|
+
* @throws {RequiredError}
|
|
19474
|
+
*/
|
|
19475
|
+
createv1alpha1Secret: (secret?: Secret, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19476
|
+
/**
|
|
19477
|
+
* Delete v1alpha1/Secret
|
|
19478
|
+
* @param {string} name Name of secret
|
|
19479
|
+
* @param {*} [options] Override http request option.
|
|
19480
|
+
* @throws {RequiredError}
|
|
19481
|
+
*/
|
|
19482
|
+
deletev1alpha1Secret: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19483
|
+
/**
|
|
19484
|
+
* Get v1alpha1/Secret
|
|
19485
|
+
* @param {string} name Name of secret
|
|
19486
|
+
* @param {*} [options] Override http request option.
|
|
19487
|
+
* @throws {RequiredError}
|
|
19488
|
+
*/
|
|
19489
|
+
getv1alpha1Secret: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19490
|
+
/**
|
|
19491
|
+
* List v1alpha1/Secret
|
|
19492
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19493
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19494
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
19495
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
19496
|
+
* @param {*} [options] Override http request option.
|
|
19497
|
+
* @throws {RequiredError}
|
|
19498
|
+
*/
|
|
19499
|
+
listv1alpha1Secret: (size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19500
|
+
/**
|
|
19501
|
+
* Update v1alpha1/Secret
|
|
19502
|
+
* @param {string} name Name of secret
|
|
19503
|
+
* @param {Secret} [secret] Updated secret
|
|
19504
|
+
* @param {*} [options] Override http request option.
|
|
19505
|
+
* @throws {RequiredError}
|
|
19506
|
+
*/
|
|
19507
|
+
updatev1alpha1Secret: (name: string, secret?: Secret, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19508
|
+
};
|
|
19509
|
+
/**
|
|
19510
|
+
* V1alpha1SecretApi - functional programming interface
|
|
19511
|
+
* @export
|
|
19512
|
+
*/
|
|
19513
|
+
declare const V1alpha1SecretApiFp: (configuration?: Configuration) => {
|
|
19514
|
+
/**
|
|
19515
|
+
* Create v1alpha1/Secret
|
|
19516
|
+
* @param {Secret} [secret] Fresh secret
|
|
19517
|
+
* @param {*} [options] Override http request option.
|
|
19518
|
+
* @throws {RequiredError}
|
|
19519
|
+
*/
|
|
19520
|
+
createv1alpha1Secret(secret?: Secret, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
19521
|
+
/**
|
|
19522
|
+
* Delete v1alpha1/Secret
|
|
19523
|
+
* @param {string} name Name of secret
|
|
19524
|
+
* @param {*} [options] Override http request option.
|
|
19525
|
+
* @throws {RequiredError}
|
|
19526
|
+
*/
|
|
19527
|
+
deletev1alpha1Secret(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
19528
|
+
/**
|
|
19529
|
+
* Get v1alpha1/Secret
|
|
19530
|
+
* @param {string} name Name of secret
|
|
19531
|
+
* @param {*} [options] Override http request option.
|
|
19532
|
+
* @throws {RequiredError}
|
|
19533
|
+
*/
|
|
19534
|
+
getv1alpha1Secret(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
19535
|
+
/**
|
|
19536
|
+
* List v1alpha1/Secret
|
|
19537
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
19538
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
19539
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
19540
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
19541
|
+
* @param {*} [options] Override http request option.
|
|
19542
|
+
* @throws {RequiredError}
|
|
19543
|
+
*/
|
|
19544
|
+
listv1alpha1Secret(size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecretList>>;
|
|
19545
|
+
/**
|
|
19546
|
+
* Update v1alpha1/Secret
|
|
19547
|
+
* @param {string} name Name of secret
|
|
19548
|
+
* @param {Secret} [secret] Updated secret
|
|
19549
|
+
* @param {*} [options] Override http request option.
|
|
19550
|
+
* @throws {RequiredError}
|
|
19551
|
+
*/
|
|
19552
|
+
updatev1alpha1Secret(name: string, secret?: Secret, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
|
|
19553
|
+
};
|
|
19554
|
+
/**
|
|
19555
|
+
* V1alpha1SecretApi - factory interface
|
|
19556
|
+
* @export
|
|
19557
|
+
*/
|
|
19558
|
+
declare const V1alpha1SecretApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19559
|
+
/**
|
|
19560
|
+
* Create v1alpha1/Secret
|
|
19561
|
+
* @param {V1alpha1SecretApiCreatev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19562
|
+
* @param {*} [options] Override http request option.
|
|
19563
|
+
* @throws {RequiredError}
|
|
19564
|
+
*/
|
|
19565
|
+
createv1alpha1Secret(requestParameters?: V1alpha1SecretApiCreatev1alpha1SecretRequest, options?: AxiosRequestConfig): AxiosPromise<Secret>;
|
|
19566
|
+
/**
|
|
19567
|
+
* Delete v1alpha1/Secret
|
|
19568
|
+
* @param {V1alpha1SecretApiDeletev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19569
|
+
* @param {*} [options] Override http request option.
|
|
19570
|
+
* @throws {RequiredError}
|
|
19571
|
+
*/
|
|
19572
|
+
deletev1alpha1Secret(requestParameters: V1alpha1SecretApiDeletev1alpha1SecretRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
19573
|
+
/**
|
|
19574
|
+
* Get v1alpha1/Secret
|
|
19575
|
+
* @param {V1alpha1SecretApiGetv1alpha1SecretRequest} requestParameters Request parameters.
|
|
19576
|
+
* @param {*} [options] Override http request option.
|
|
19577
|
+
* @throws {RequiredError}
|
|
19578
|
+
*/
|
|
19579
|
+
getv1alpha1Secret(requestParameters: V1alpha1SecretApiGetv1alpha1SecretRequest, options?: AxiosRequestConfig): AxiosPromise<Secret>;
|
|
19580
|
+
/**
|
|
19581
|
+
* List v1alpha1/Secret
|
|
19582
|
+
* @param {V1alpha1SecretApiListv1alpha1SecretRequest} requestParameters Request parameters.
|
|
19583
|
+
* @param {*} [options] Override http request option.
|
|
19584
|
+
* @throws {RequiredError}
|
|
19585
|
+
*/
|
|
19586
|
+
listv1alpha1Secret(requestParameters?: V1alpha1SecretApiListv1alpha1SecretRequest, options?: AxiosRequestConfig): AxiosPromise<SecretList>;
|
|
19587
|
+
/**
|
|
19588
|
+
* Update v1alpha1/Secret
|
|
19589
|
+
* @param {V1alpha1SecretApiUpdatev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19590
|
+
* @param {*} [options] Override http request option.
|
|
19591
|
+
* @throws {RequiredError}
|
|
19592
|
+
*/
|
|
19593
|
+
updatev1alpha1Secret(requestParameters: V1alpha1SecretApiUpdatev1alpha1SecretRequest, options?: AxiosRequestConfig): AxiosPromise<Secret>;
|
|
19594
|
+
};
|
|
19595
|
+
/**
|
|
19596
|
+
* Request parameters for createv1alpha1Secret operation in V1alpha1SecretApi.
|
|
19597
|
+
* @export
|
|
19598
|
+
* @interface V1alpha1SecretApiCreatev1alpha1SecretRequest
|
|
19599
|
+
*/
|
|
19600
|
+
interface V1alpha1SecretApiCreatev1alpha1SecretRequest {
|
|
19601
|
+
/**
|
|
19602
|
+
* Fresh secret
|
|
19603
|
+
* @type {Secret}
|
|
19604
|
+
* @memberof V1alpha1SecretApiCreatev1alpha1Secret
|
|
19605
|
+
*/
|
|
19606
|
+
readonly secret?: Secret;
|
|
19607
|
+
}
|
|
19608
|
+
/**
|
|
19609
|
+
* Request parameters for deletev1alpha1Secret operation in V1alpha1SecretApi.
|
|
19610
|
+
* @export
|
|
19611
|
+
* @interface V1alpha1SecretApiDeletev1alpha1SecretRequest
|
|
19612
|
+
*/
|
|
19613
|
+
interface V1alpha1SecretApiDeletev1alpha1SecretRequest {
|
|
19614
|
+
/**
|
|
19615
|
+
* Name of secret
|
|
19616
|
+
* @type {string}
|
|
19617
|
+
* @memberof V1alpha1SecretApiDeletev1alpha1Secret
|
|
19618
|
+
*/
|
|
19619
|
+
readonly name: string;
|
|
19620
|
+
}
|
|
19621
|
+
/**
|
|
19622
|
+
* Request parameters for getv1alpha1Secret operation in V1alpha1SecretApi.
|
|
19623
|
+
* @export
|
|
19624
|
+
* @interface V1alpha1SecretApiGetv1alpha1SecretRequest
|
|
19625
|
+
*/
|
|
19626
|
+
interface V1alpha1SecretApiGetv1alpha1SecretRequest {
|
|
19627
|
+
/**
|
|
19628
|
+
* Name of secret
|
|
19629
|
+
* @type {string}
|
|
19630
|
+
* @memberof V1alpha1SecretApiGetv1alpha1Secret
|
|
19631
|
+
*/
|
|
19632
|
+
readonly name: string;
|
|
19633
|
+
}
|
|
19634
|
+
/**
|
|
19635
|
+
* Request parameters for listv1alpha1Secret operation in V1alpha1SecretApi.
|
|
19636
|
+
* @export
|
|
19637
|
+
* @interface V1alpha1SecretApiListv1alpha1SecretRequest
|
|
19638
|
+
*/
|
|
19639
|
+
interface V1alpha1SecretApiListv1alpha1SecretRequest {
|
|
19640
|
+
/**
|
|
19641
|
+
* Size of one page. Zero indicates no limit.
|
|
19642
|
+
* @type {number}
|
|
19643
|
+
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
19644
|
+
*/
|
|
19645
|
+
readonly size?: number;
|
|
19646
|
+
/**
|
|
19647
|
+
* Label selector for filtering.
|
|
19648
|
+
* @type {Array<string>}
|
|
19649
|
+
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
19650
|
+
*/
|
|
19651
|
+
readonly labelSelector?: Array<string>;
|
|
19652
|
+
/**
|
|
19653
|
+
* Field selector for filtering.
|
|
19654
|
+
* @type {Array<string>}
|
|
19655
|
+
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
19656
|
+
*/
|
|
19657
|
+
readonly fieldSelector?: Array<string>;
|
|
19658
|
+
/**
|
|
19659
|
+
* The page number. Zero indicates no page.
|
|
19660
|
+
* @type {number}
|
|
19661
|
+
* @memberof V1alpha1SecretApiListv1alpha1Secret
|
|
19662
|
+
*/
|
|
19663
|
+
readonly page?: number;
|
|
19664
|
+
}
|
|
19665
|
+
/**
|
|
19666
|
+
* Request parameters for updatev1alpha1Secret operation in V1alpha1SecretApi.
|
|
19667
|
+
* @export
|
|
19668
|
+
* @interface V1alpha1SecretApiUpdatev1alpha1SecretRequest
|
|
19669
|
+
*/
|
|
19670
|
+
interface V1alpha1SecretApiUpdatev1alpha1SecretRequest {
|
|
19671
|
+
/**
|
|
19672
|
+
* Name of secret
|
|
19673
|
+
* @type {string}
|
|
19674
|
+
* @memberof V1alpha1SecretApiUpdatev1alpha1Secret
|
|
19675
|
+
*/
|
|
19676
|
+
readonly name: string;
|
|
19677
|
+
/**
|
|
19678
|
+
* Updated secret
|
|
19679
|
+
* @type {Secret}
|
|
19680
|
+
* @memberof V1alpha1SecretApiUpdatev1alpha1Secret
|
|
19681
|
+
*/
|
|
19682
|
+
readonly secret?: Secret;
|
|
19683
|
+
}
|
|
19684
|
+
/**
|
|
19685
|
+
* V1alpha1SecretApi - object-oriented interface
|
|
19686
|
+
* @export
|
|
19687
|
+
* @class V1alpha1SecretApi
|
|
19688
|
+
* @extends {BaseAPI}
|
|
19689
|
+
*/
|
|
19690
|
+
declare class V1alpha1SecretApi extends BaseAPI {
|
|
19691
|
+
/**
|
|
19692
|
+
* Create v1alpha1/Secret
|
|
19693
|
+
* @param {V1alpha1SecretApiCreatev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19694
|
+
* @param {*} [options] Override http request option.
|
|
19695
|
+
* @throws {RequiredError}
|
|
19696
|
+
* @memberof V1alpha1SecretApi
|
|
19697
|
+
*/
|
|
19698
|
+
createv1alpha1Secret(requestParameters?: V1alpha1SecretApiCreatev1alpha1SecretRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Secret, any>>;
|
|
19699
|
+
/**
|
|
19700
|
+
* Delete v1alpha1/Secret
|
|
19701
|
+
* @param {V1alpha1SecretApiDeletev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19702
|
+
* @param {*} [options] Override http request option.
|
|
19703
|
+
* @throws {RequiredError}
|
|
19704
|
+
* @memberof V1alpha1SecretApi
|
|
19705
|
+
*/
|
|
19706
|
+
deletev1alpha1Secret(requestParameters: V1alpha1SecretApiDeletev1alpha1SecretRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
19707
|
+
/**
|
|
19708
|
+
* Get v1alpha1/Secret
|
|
19709
|
+
* @param {V1alpha1SecretApiGetv1alpha1SecretRequest} requestParameters Request parameters.
|
|
19710
|
+
* @param {*} [options] Override http request option.
|
|
19711
|
+
* @throws {RequiredError}
|
|
19712
|
+
* @memberof V1alpha1SecretApi
|
|
19713
|
+
*/
|
|
19714
|
+
getv1alpha1Secret(requestParameters: V1alpha1SecretApiGetv1alpha1SecretRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Secret, any>>;
|
|
19715
|
+
/**
|
|
19716
|
+
* List v1alpha1/Secret
|
|
19717
|
+
* @param {V1alpha1SecretApiListv1alpha1SecretRequest} requestParameters Request parameters.
|
|
19718
|
+
* @param {*} [options] Override http request option.
|
|
19719
|
+
* @throws {RequiredError}
|
|
19720
|
+
* @memberof V1alpha1SecretApi
|
|
19721
|
+
*/
|
|
19722
|
+
listv1alpha1Secret(requestParameters?: V1alpha1SecretApiListv1alpha1SecretRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SecretList, any>>;
|
|
19723
|
+
/**
|
|
19724
|
+
* Update v1alpha1/Secret
|
|
19725
|
+
* @param {V1alpha1SecretApiUpdatev1alpha1SecretRequest} requestParameters Request parameters.
|
|
19726
|
+
* @param {*} [options] Override http request option.
|
|
19727
|
+
* @throws {RequiredError}
|
|
19728
|
+
* @memberof V1alpha1SecretApi
|
|
19729
|
+
*/
|
|
19730
|
+
updatev1alpha1Secret(requestParameters: V1alpha1SecretApiUpdatev1alpha1SecretRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Secret, any>>;
|
|
19731
|
+
}
|
|
19732
|
+
|
|
19223
19733
|
/**
|
|
19224
19734
|
* V1alpha1SettingApi - axios parameter creator
|
|
19225
19735
|
* @export
|
|
@@ -19758,4 +20268,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
19758
20268
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
19759
20269
|
}
|
|
19760
20270
|
|
|
19761
|
-
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, 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, Setting, SettingForm, SettingList, SettingRef, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, 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, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
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 };
|