@halo-dev/api-client 0.0.47 → 0.0.48
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 +167 -102
- package/dist/index.d.ts +273 -210
- package/dist/index.mjs +167 -102
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2017,22 +2017,22 @@ interface Excerpt {
|
|
|
2017
2017
|
interface Extension {
|
|
2018
2018
|
/**
|
|
2019
2019
|
*
|
|
2020
|
-
* @type {
|
|
2020
|
+
* @type {Metadata}
|
|
2021
2021
|
* @memberof Extension
|
|
2022
2022
|
*/
|
|
2023
|
-
|
|
2023
|
+
metadata: Metadata;
|
|
2024
2024
|
/**
|
|
2025
2025
|
*
|
|
2026
|
-
* @type {
|
|
2026
|
+
* @type {string}
|
|
2027
2027
|
* @memberof Extension
|
|
2028
2028
|
*/
|
|
2029
|
-
|
|
2029
|
+
apiVersion: string;
|
|
2030
2030
|
/**
|
|
2031
2031
|
*
|
|
2032
2032
|
* @type {string}
|
|
2033
2033
|
* @memberof Extension
|
|
2034
2034
|
*/
|
|
2035
|
-
|
|
2035
|
+
kind: string;
|
|
2036
2036
|
}
|
|
2037
2037
|
|
|
2038
2038
|
/**
|
|
@@ -2516,12 +2516,6 @@ interface PostSpec {
|
|
|
2516
2516
|
* @memberof PostSpec
|
|
2517
2517
|
*/
|
|
2518
2518
|
visible: PostSpecVisibleEnum;
|
|
2519
|
-
/**
|
|
2520
|
-
*
|
|
2521
|
-
* @type {number}
|
|
2522
|
-
* @memberof PostSpec
|
|
2523
|
-
*/
|
|
2524
|
-
version: number;
|
|
2525
2519
|
/**
|
|
2526
2520
|
*
|
|
2527
2521
|
* @type {number}
|
|
@@ -2622,12 +2616,6 @@ interface PostStatus {
|
|
|
2622
2616
|
* @memberof PostStatus
|
|
2623
2617
|
*/
|
|
2624
2618
|
contributors?: Array<string>;
|
|
2625
|
-
/**
|
|
2626
|
-
*
|
|
2627
|
-
* @type {Array<string>}
|
|
2628
|
-
* @memberof PostStatus
|
|
2629
|
-
*/
|
|
2630
|
-
releasedSnapshots?: Array<string>;
|
|
2631
2619
|
}
|
|
2632
2620
|
|
|
2633
2621
|
/**
|
|
@@ -3327,12 +3315,6 @@ interface SinglePageSpec {
|
|
|
3327
3315
|
* @memberof SinglePageSpec
|
|
3328
3316
|
*/
|
|
3329
3317
|
visible: SinglePageSpecVisibleEnum;
|
|
3330
|
-
/**
|
|
3331
|
-
*
|
|
3332
|
-
* @type {number}
|
|
3333
|
-
* @memberof SinglePageSpec
|
|
3334
|
-
*/
|
|
3335
|
-
version: number;
|
|
3336
3318
|
/**
|
|
3337
3319
|
*
|
|
3338
3320
|
* @type {number}
|
|
@@ -3421,12 +3403,6 @@ interface SinglePageStatus {
|
|
|
3421
3403
|
* @memberof SinglePageStatus
|
|
3422
3404
|
*/
|
|
3423
3405
|
contributors?: Array<string>;
|
|
3424
|
-
/**
|
|
3425
|
-
*
|
|
3426
|
-
* @type {Array<string>}
|
|
3427
|
-
* @memberof SinglePageStatus
|
|
3428
|
-
*/
|
|
3429
|
-
releasedSnapshots?: Array<string>;
|
|
3430
3406
|
}
|
|
3431
3407
|
|
|
3432
3408
|
/**
|
|
@@ -6268,19 +6244,13 @@ interface SnapShotSpec {
|
|
|
6268
6244
|
* @type {string}
|
|
6269
6245
|
* @memberof SnapShotSpec
|
|
6270
6246
|
*/
|
|
6271
|
-
|
|
6272
|
-
/**
|
|
6273
|
-
*
|
|
6274
|
-
* @type {number}
|
|
6275
|
-
* @memberof SnapShotSpec
|
|
6276
|
-
*/
|
|
6277
|
-
version: number;
|
|
6247
|
+
lastModifyTime?: string;
|
|
6278
6248
|
/**
|
|
6279
6249
|
*
|
|
6280
6250
|
* @type {string}
|
|
6281
6251
|
* @memberof SnapShotSpec
|
|
6282
6252
|
*/
|
|
6283
|
-
|
|
6253
|
+
owner: string;
|
|
6284
6254
|
/**
|
|
6285
6255
|
*
|
|
6286
6256
|
* @type {Array<string>}
|
|
@@ -7028,18 +6998,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7028
6998
|
/**
|
|
7029
6999
|
*
|
|
7030
7000
|
* @param {string} [policy] Name of policy
|
|
7031
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7032
7001
|
* @param {string} [displayName] Display name of attachment
|
|
7033
7002
|
* @param {string} [group] Name of group
|
|
7034
7003
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7035
7004
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7036
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7037
7005
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7038
7006
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7007
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7039
7008
|
* @param {*} [options] Override http request option.
|
|
7040
7009
|
* @throws {RequiredError}
|
|
7041
7010
|
*/
|
|
7042
|
-
searchAttachments: (policy?: string,
|
|
7011
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7043
7012
|
/**
|
|
7044
7013
|
*
|
|
7045
7014
|
* @param {any} file
|
|
@@ -7058,18 +7027,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7058
7027
|
/**
|
|
7059
7028
|
*
|
|
7060
7029
|
* @param {string} [policy] Name of policy
|
|
7061
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7062
7030
|
* @param {string} [displayName] Display name of attachment
|
|
7063
7031
|
* @param {string} [group] Name of group
|
|
7064
7032
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7065
7033
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7066
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7067
7034
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7068
7035
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7036
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7069
7037
|
* @param {*} [options] Override http request option.
|
|
7070
7038
|
* @throws {RequiredError}
|
|
7071
7039
|
*/
|
|
7072
|
-
searchAttachments(policy?: string,
|
|
7040
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7073
7041
|
/**
|
|
7074
7042
|
*
|
|
7075
7043
|
* @param {any} file
|
|
@@ -7088,18 +7056,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7088
7056
|
/**
|
|
7089
7057
|
*
|
|
7090
7058
|
* @param {string} [policy] Name of policy
|
|
7091
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7092
7059
|
* @param {string} [displayName] Display name of attachment
|
|
7093
7060
|
* @param {string} [group] Name of group
|
|
7094
7061
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7095
7062
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7096
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7097
7063
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7098
7064
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7065
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7099
7066
|
* @param {*} [options] Override http request option.
|
|
7100
7067
|
* @throws {RequiredError}
|
|
7101
7068
|
*/
|
|
7102
|
-
searchAttachments(policy?: string,
|
|
7069
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
7103
7070
|
/**
|
|
7104
7071
|
*
|
|
7105
7072
|
* @param {any} file
|
|
@@ -7122,12 +7089,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7122
7089
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7123
7090
|
*/
|
|
7124
7091
|
readonly policy?: string;
|
|
7125
|
-
/**
|
|
7126
|
-
* Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7127
|
-
* @type {Array<string>}
|
|
7128
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7129
|
-
*/
|
|
7130
|
-
readonly sort?: Array<string>;
|
|
7131
7092
|
/**
|
|
7132
7093
|
* Display name of attachment
|
|
7133
7094
|
* @type {string}
|
|
@@ -7152,12 +7113,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7152
7113
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7153
7114
|
*/
|
|
7154
7115
|
readonly size?: number;
|
|
7155
|
-
/**
|
|
7156
|
-
* The page number. Zero indicates no page.
|
|
7157
|
-
* @type {number}
|
|
7158
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7159
|
-
*/
|
|
7160
|
-
readonly page?: number;
|
|
7161
7116
|
/**
|
|
7162
7117
|
* Label selector for filtering.
|
|
7163
7118
|
* @type {Array<string>}
|
|
@@ -7170,6 +7125,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7170
7125
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7171
7126
|
*/
|
|
7172
7127
|
readonly fieldSelector?: Array<string>;
|
|
7128
|
+
/**
|
|
7129
|
+
* The page number. Zero indicates no page.
|
|
7130
|
+
* @type {number}
|
|
7131
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7132
|
+
*/
|
|
7133
|
+
readonly page?: number;
|
|
7173
7134
|
}
|
|
7174
7135
|
/**
|
|
7175
7136
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7244,9 +7205,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7244
7205
|
/**
|
|
7245
7206
|
* List comments.
|
|
7246
7207
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7247
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7248
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7249
|
-
* @param {boolean} [top] Comment top display.
|
|
7250
7208
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7251
7209
|
* @param {boolean} [approved] Comments approved.
|
|
7252
7210
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7254,14 +7212,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7254
7212
|
* @param {string} [ownerName] Commenter name.
|
|
7255
7213
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7256
7214
|
* @param {string} [subjectName] Comment subject name.
|
|
7215
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7216
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7217
|
+
* @param {boolean} [top] Comment top display.
|
|
7257
7218
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7258
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7259
7219
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7260
7220
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7221
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7261
7222
|
* @param {*} [options] Override http request option.
|
|
7262
7223
|
* @throws {RequiredError}
|
|
7263
7224
|
*/
|
|
7264
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7225
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7265
7226
|
};
|
|
7266
7227
|
/**
|
|
7267
7228
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7286,9 +7247,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7286
7247
|
/**
|
|
7287
7248
|
* List comments.
|
|
7288
7249
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7289
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7290
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7291
|
-
* @param {boolean} [top] Comment top display.
|
|
7292
7250
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7293
7251
|
* @param {boolean} [approved] Comments approved.
|
|
7294
7252
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7296,14 +7254,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7296
7254
|
* @param {string} [ownerName] Commenter name.
|
|
7297
7255
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7298
7256
|
* @param {string} [subjectName] Comment subject name.
|
|
7257
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7258
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7259
|
+
* @param {boolean} [top] Comment top display.
|
|
7299
7260
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7300
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7301
7261
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7302
7262
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7263
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7303
7264
|
* @param {*} [options] Override http request option.
|
|
7304
7265
|
* @throws {RequiredError}
|
|
7305
7266
|
*/
|
|
7306
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7267
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7307
7268
|
};
|
|
7308
7269
|
/**
|
|
7309
7270
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7328,9 +7289,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7328
7289
|
/**
|
|
7329
7290
|
* List comments.
|
|
7330
7291
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7331
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7332
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7333
|
-
* @param {boolean} [top] Comment top display.
|
|
7334
7292
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7335
7293
|
* @param {boolean} [approved] Comments approved.
|
|
7336
7294
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7338,14 +7296,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7338
7296
|
* @param {string} [ownerName] Commenter name.
|
|
7339
7297
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7340
7298
|
* @param {string} [subjectName] Comment subject name.
|
|
7299
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7300
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7301
|
+
* @param {boolean} [top] Comment top display.
|
|
7341
7302
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7342
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7343
7303
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7344
7304
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7305
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7345
7306
|
* @param {*} [options] Override http request option.
|
|
7346
7307
|
* @throws {RequiredError}
|
|
7347
7308
|
*/
|
|
7348
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7309
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
|
|
7349
7310
|
};
|
|
7350
7311
|
/**
|
|
7351
7312
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7391,24 +7352,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7391
7352
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7392
7353
|
*/
|
|
7393
7354
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7394
|
-
/**
|
|
7395
|
-
* Comments filtered by keyword.
|
|
7396
|
-
* @type {string}
|
|
7397
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7398
|
-
*/
|
|
7399
|
-
readonly keyword?: string;
|
|
7400
|
-
/**
|
|
7401
|
-
* The comment is hidden from the theme side.
|
|
7402
|
-
* @type {boolean}
|
|
7403
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7404
|
-
*/
|
|
7405
|
-
readonly hidden?: boolean;
|
|
7406
|
-
/**
|
|
7407
|
-
* Comment top display.
|
|
7408
|
-
* @type {boolean}
|
|
7409
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7410
|
-
*/
|
|
7411
|
-
readonly top?: boolean;
|
|
7412
7355
|
/**
|
|
7413
7356
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7414
7357
|
* @type {boolean}
|
|
@@ -7452,17 +7395,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7452
7395
|
*/
|
|
7453
7396
|
readonly subjectName?: string;
|
|
7454
7397
|
/**
|
|
7455
|
-
*
|
|
7456
|
-
* @type {
|
|
7398
|
+
* Comments filtered by keyword.
|
|
7399
|
+
* @type {string}
|
|
7457
7400
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7458
7401
|
*/
|
|
7459
|
-
readonly
|
|
7402
|
+
readonly keyword?: string;
|
|
7460
7403
|
/**
|
|
7461
|
-
* The
|
|
7404
|
+
* The comment is hidden from the theme side.
|
|
7405
|
+
* @type {boolean}
|
|
7406
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7407
|
+
*/
|
|
7408
|
+
readonly hidden?: boolean;
|
|
7409
|
+
/**
|
|
7410
|
+
* Comment top display.
|
|
7411
|
+
* @type {boolean}
|
|
7412
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7413
|
+
*/
|
|
7414
|
+
readonly top?: boolean;
|
|
7415
|
+
/**
|
|
7416
|
+
* Size of one page. Zero indicates no limit.
|
|
7462
7417
|
* @type {number}
|
|
7463
7418
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7464
7419
|
*/
|
|
7465
|
-
readonly
|
|
7420
|
+
readonly size?: number;
|
|
7466
7421
|
/**
|
|
7467
7422
|
* Label selector for filtering.
|
|
7468
7423
|
* @type {Array<string>}
|
|
@@ -7475,6 +7430,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7475
7430
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7476
7431
|
*/
|
|
7477
7432
|
readonly fieldSelector?: Array<string>;
|
|
7433
|
+
/**
|
|
7434
|
+
* The page number. Zero indicates no page.
|
|
7435
|
+
* @type {number}
|
|
7436
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7437
|
+
*/
|
|
7438
|
+
readonly page?: number;
|
|
7478
7439
|
}
|
|
7479
7440
|
/**
|
|
7480
7441
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7741,13 +7702,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7741
7702
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7742
7703
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7743
7704
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7744
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7745
7705
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7746
7706
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7707
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7747
7708
|
* @param {*} [options] Override http request option.
|
|
7748
7709
|
* @throws {RequiredError}
|
|
7749
7710
|
*/
|
|
7750
|
-
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
7711
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7751
7712
|
/**
|
|
7752
7713
|
* Upgrade a plugin by uploading a Jar file
|
|
7753
7714
|
* @param {string} name
|
|
@@ -7775,13 +7736,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7775
7736
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7776
7737
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7777
7738
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7778
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7779
7739
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7780
7740
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7741
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7781
7742
|
* @param {*} [options] Override http request option.
|
|
7782
7743
|
* @throws {RequiredError}
|
|
7783
7744
|
*/
|
|
7784
|
-
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
7745
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7785
7746
|
/**
|
|
7786
7747
|
* Upgrade a plugin by uploading a Jar file
|
|
7787
7748
|
* @param {string} name
|
|
@@ -7809,13 +7770,13 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7809
7770
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7810
7771
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7811
7772
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7812
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7813
7773
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7814
7774
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7775
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7815
7776
|
* @param {*} [options] Override http request option.
|
|
7816
7777
|
* @throws {RequiredError}
|
|
7817
7778
|
*/
|
|
7818
|
-
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
7779
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
7819
7780
|
/**
|
|
7820
7781
|
* Upgrade a plugin by uploading a Jar file
|
|
7821
7782
|
* @param {string} name
|
|
@@ -7868,12 +7829,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7868
7829
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7869
7830
|
*/
|
|
7870
7831
|
readonly size?: number;
|
|
7871
|
-
/**
|
|
7872
|
-
* The page number. Zero indicates no page.
|
|
7873
|
-
* @type {number}
|
|
7874
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7875
|
-
*/
|
|
7876
|
-
readonly page?: number;
|
|
7877
7832
|
/**
|
|
7878
7833
|
* Label selector for filtering.
|
|
7879
7834
|
* @type {Array<string>}
|
|
@@ -7886,6 +7841,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7886
7841
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7887
7842
|
*/
|
|
7888
7843
|
readonly fieldSelector?: Array<string>;
|
|
7844
|
+
/**
|
|
7845
|
+
* The page number. Zero indicates no page.
|
|
7846
|
+
* @type {number}
|
|
7847
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7848
|
+
*/
|
|
7849
|
+
readonly page?: number;
|
|
7889
7850
|
}
|
|
7890
7851
|
/**
|
|
7891
7852
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7954,21 +7915,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7954
7915
|
/**
|
|
7955
7916
|
* List posts.
|
|
7956
7917
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7957
|
-
* @param {Array<string>} [tag]
|
|
7958
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7959
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7960
7918
|
* @param {Array<string>} [contributor]
|
|
7961
7919
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7962
7920
|
* @param {Array<string>} [category]
|
|
7963
7921
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7922
|
+
* @param {Array<string>} [tag]
|
|
7923
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7924
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7964
7925
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7965
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7966
7926
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7967
7927
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7928
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7968
7929
|
* @param {*} [options] Override http request option.
|
|
7969
7930
|
* @throws {RequiredError}
|
|
7970
7931
|
*/
|
|
7971
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7932
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7972
7933
|
/**
|
|
7973
7934
|
* Publish a post.
|
|
7974
7935
|
* @param {string} name
|
|
@@ -7999,6 +7960,14 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7999
7960
|
* @throws {RequiredError}
|
|
8000
7961
|
*/
|
|
8001
7962
|
updateDraftPost: (name: string, postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7963
|
+
/**
|
|
7964
|
+
* Update a post\'s content.
|
|
7965
|
+
* @param {string} name
|
|
7966
|
+
* @param {Content} content
|
|
7967
|
+
* @param {*} [options] Override http request option.
|
|
7968
|
+
* @throws {RequiredError}
|
|
7969
|
+
*/
|
|
7970
|
+
updatePostContent: (name: string, content: Content, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8002
7971
|
};
|
|
8003
7972
|
/**
|
|
8004
7973
|
* ApiConsoleHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -8015,21 +7984,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8015
7984
|
/**
|
|
8016
7985
|
* List posts.
|
|
8017
7986
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8018
|
-
* @param {Array<string>} [tag]
|
|
8019
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8020
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8021
7987
|
* @param {Array<string>} [contributor]
|
|
8022
7988
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8023
7989
|
* @param {Array<string>} [category]
|
|
8024
7990
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7991
|
+
* @param {Array<string>} [tag]
|
|
7992
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7993
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8025
7994
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8026
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8027
7995
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8028
7996
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7997
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8029
7998
|
* @param {*} [options] Override http request option.
|
|
8030
7999
|
* @throws {RequiredError}
|
|
8031
8000
|
*/
|
|
8032
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8001
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8033
8002
|
/**
|
|
8034
8003
|
* Publish a post.
|
|
8035
8004
|
* @param {string} name
|
|
@@ -8060,6 +8029,14 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8060
8029
|
* @throws {RequiredError}
|
|
8061
8030
|
*/
|
|
8062
8031
|
updateDraftPost(name: string, postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
8032
|
+
/**
|
|
8033
|
+
* Update a post\'s content.
|
|
8034
|
+
* @param {string} name
|
|
8035
|
+
* @param {Content} content
|
|
8036
|
+
* @param {*} [options] Override http request option.
|
|
8037
|
+
* @throws {RequiredError}
|
|
8038
|
+
*/
|
|
8039
|
+
updatePostContent(name: string, content: Content, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
8063
8040
|
};
|
|
8064
8041
|
/**
|
|
8065
8042
|
* ApiConsoleHaloRunV1alpha1PostApi - factory interface
|
|
@@ -8076,21 +8053,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8076
8053
|
/**
|
|
8077
8054
|
* List posts.
|
|
8078
8055
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8079
|
-
* @param {Array<string>} [tag]
|
|
8080
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8081
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8082
8056
|
* @param {Array<string>} [contributor]
|
|
8083
8057
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8084
8058
|
* @param {Array<string>} [category]
|
|
8085
8059
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8060
|
+
* @param {Array<string>} [tag]
|
|
8061
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8062
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8086
8063
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8087
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8088
8064
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8089
8065
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8066
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8090
8067
|
* @param {*} [options] Override http request option.
|
|
8091
8068
|
* @throws {RequiredError}
|
|
8092
8069
|
*/
|
|
8093
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8070
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
8094
8071
|
/**
|
|
8095
8072
|
* Publish a post.
|
|
8096
8073
|
* @param {string} name
|
|
@@ -8121,6 +8098,14 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8121
8098
|
* @throws {RequiredError}
|
|
8122
8099
|
*/
|
|
8123
8100
|
updateDraftPost(name: string, postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
8101
|
+
/**
|
|
8102
|
+
* Update a post\'s content.
|
|
8103
|
+
* @param {string} name
|
|
8104
|
+
* @param {Content} content
|
|
8105
|
+
* @param {*} [options] Override http request option.
|
|
8106
|
+
* @throws {RequiredError}
|
|
8107
|
+
*/
|
|
8108
|
+
updatePostContent(name: string, content: Content, options?: any): AxiosPromise<Post>;
|
|
8124
8109
|
};
|
|
8125
8110
|
/**
|
|
8126
8111
|
* Request parameters for draftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8152,55 +8137,49 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8152
8137
|
* @type {Array<string>}
|
|
8153
8138
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8154
8139
|
*/
|
|
8155
|
-
readonly
|
|
8156
|
-
/**
|
|
8157
|
-
* Posts filtered by keyword.
|
|
8158
|
-
* @type {string}
|
|
8159
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8160
|
-
*/
|
|
8161
|
-
readonly keyword?: string;
|
|
8140
|
+
readonly contributor?: Array<string>;
|
|
8162
8141
|
/**
|
|
8163
8142
|
*
|
|
8164
|
-
* @type {'
|
|
8143
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8165
8144
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8166
8145
|
*/
|
|
8167
|
-
readonly
|
|
8146
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8168
8147
|
/**
|
|
8169
8148
|
*
|
|
8170
8149
|
* @type {Array<string>}
|
|
8171
8150
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8172
8151
|
*/
|
|
8173
|
-
readonly
|
|
8152
|
+
readonly category?: Array<string>;
|
|
8174
8153
|
/**
|
|
8175
|
-
*
|
|
8176
|
-
* @type {
|
|
8154
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8155
|
+
* @type {boolean}
|
|
8177
8156
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8178
8157
|
*/
|
|
8179
|
-
readonly
|
|
8158
|
+
readonly sortOrder?: boolean;
|
|
8180
8159
|
/**
|
|
8181
8160
|
*
|
|
8182
8161
|
* @type {Array<string>}
|
|
8183
8162
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8184
8163
|
*/
|
|
8185
|
-
readonly
|
|
8164
|
+
readonly tag?: Array<string>;
|
|
8186
8165
|
/**
|
|
8187
|
-
*
|
|
8188
|
-
* @type {
|
|
8166
|
+
* Posts filtered by keyword.
|
|
8167
|
+
* @type {string}
|
|
8189
8168
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8190
8169
|
*/
|
|
8191
|
-
readonly
|
|
8170
|
+
readonly keyword?: string;
|
|
8192
8171
|
/**
|
|
8193
|
-
*
|
|
8194
|
-
* @type {
|
|
8172
|
+
*
|
|
8173
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8195
8174
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8196
8175
|
*/
|
|
8197
|
-
readonly
|
|
8176
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8198
8177
|
/**
|
|
8199
|
-
*
|
|
8178
|
+
* Size of one page. Zero indicates no limit.
|
|
8200
8179
|
* @type {number}
|
|
8201
8180
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8202
8181
|
*/
|
|
8203
|
-
readonly
|
|
8182
|
+
readonly size?: number;
|
|
8204
8183
|
/**
|
|
8205
8184
|
* Label selector for filtering.
|
|
8206
8185
|
* @type {Array<string>}
|
|
@@ -8213,6 +8192,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8213
8192
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8214
8193
|
*/
|
|
8215
8194
|
readonly fieldSelector?: Array<string>;
|
|
8195
|
+
/**
|
|
8196
|
+
* The page number. Zero indicates no page.
|
|
8197
|
+
* @type {number}
|
|
8198
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8199
|
+
*/
|
|
8200
|
+
readonly page?: number;
|
|
8216
8201
|
}
|
|
8217
8202
|
/**
|
|
8218
8203
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8278,6 +8263,25 @@ interface ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest {
|
|
|
8278
8263
|
*/
|
|
8279
8264
|
readonly postRequest: PostRequest;
|
|
8280
8265
|
}
|
|
8266
|
+
/**
|
|
8267
|
+
* Request parameters for updatePostContent operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
8268
|
+
* @export
|
|
8269
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest
|
|
8270
|
+
*/
|
|
8271
|
+
interface ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest {
|
|
8272
|
+
/**
|
|
8273
|
+
*
|
|
8274
|
+
* @type {string}
|
|
8275
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUpdatePostContent
|
|
8276
|
+
*/
|
|
8277
|
+
readonly name: string;
|
|
8278
|
+
/**
|
|
8279
|
+
*
|
|
8280
|
+
* @type {Content}
|
|
8281
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUpdatePostContent
|
|
8282
|
+
*/
|
|
8283
|
+
readonly content: Content;
|
|
8284
|
+
}
|
|
8281
8285
|
/**
|
|
8282
8286
|
* ApiConsoleHaloRunV1alpha1PostApi - object-oriented interface
|
|
8283
8287
|
* @export
|
|
@@ -8333,6 +8337,14 @@ declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
8333
8337
|
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
8334
8338
|
*/
|
|
8335
8339
|
updateDraftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
8340
|
+
/**
|
|
8341
|
+
* Update a post\'s content.
|
|
8342
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest} requestParameters Request parameters.
|
|
8343
|
+
* @param {*} [options] Override http request option.
|
|
8344
|
+
* @throws {RequiredError}
|
|
8345
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
8346
|
+
*/
|
|
8347
|
+
updatePostContent(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
8336
8348
|
}
|
|
8337
8349
|
|
|
8338
8350
|
/**
|
|
@@ -8344,13 +8356,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8344
8356
|
* List replies.
|
|
8345
8357
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8346
8358
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8347
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8348
8359
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8349
8360
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8361
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8350
8362
|
* @param {*} [options] Override http request option.
|
|
8351
8363
|
* @throws {RequiredError}
|
|
8352
8364
|
*/
|
|
8353
|
-
listReplies: (commentName?: string, size?: number,
|
|
8365
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8354
8366
|
};
|
|
8355
8367
|
/**
|
|
8356
8368
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8361,13 +8373,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8361
8373
|
* List replies.
|
|
8362
8374
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8363
8375
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8364
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8365
8376
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8366
8377
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8378
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8367
8379
|
* @param {*} [options] Override http request option.
|
|
8368
8380
|
* @throws {RequiredError}
|
|
8369
8381
|
*/
|
|
8370
|
-
listReplies(commentName?: string, size?: number,
|
|
8382
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8371
8383
|
};
|
|
8372
8384
|
/**
|
|
8373
8385
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8378,13 +8390,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8378
8390
|
* List replies.
|
|
8379
8391
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8380
8392
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8381
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8382
8393
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8383
8394
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8395
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8384
8396
|
* @param {*} [options] Override http request option.
|
|
8385
8397
|
* @throws {RequiredError}
|
|
8386
8398
|
*/
|
|
8387
|
-
listReplies(commentName?: string, size?: number,
|
|
8399
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
8388
8400
|
};
|
|
8389
8401
|
/**
|
|
8390
8402
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8404,12 +8416,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8404
8416
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8405
8417
|
*/
|
|
8406
8418
|
readonly size?: number;
|
|
8407
|
-
/**
|
|
8408
|
-
* The page number. Zero indicates no page.
|
|
8409
|
-
* @type {number}
|
|
8410
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8411
|
-
*/
|
|
8412
|
-
readonly page?: number;
|
|
8413
8419
|
/**
|
|
8414
8420
|
* Label selector for filtering.
|
|
8415
8421
|
* @type {Array<string>}
|
|
@@ -8422,6 +8428,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8422
8428
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8423
8429
|
*/
|
|
8424
8430
|
readonly fieldSelector?: Array<string>;
|
|
8431
|
+
/**
|
|
8432
|
+
* The page number. Zero indicates no page.
|
|
8433
|
+
* @type {number}
|
|
8434
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8435
|
+
*/
|
|
8436
|
+
readonly page?: number;
|
|
8425
8437
|
}
|
|
8426
8438
|
/**
|
|
8427
8439
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8455,19 +8467,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8455
8467
|
/**
|
|
8456
8468
|
* List single pages.
|
|
8457
8469
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8458
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8459
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8460
8470
|
* @param {Array<string>} [contributor]
|
|
8461
8471
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8462
8472
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8473
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8474
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8463
8475
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8464
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8465
8476
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8466
8477
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8478
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8467
8479
|
* @param {*} [options] Override http request option.
|
|
8468
8480
|
* @throws {RequiredError}
|
|
8469
8481
|
*/
|
|
8470
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8482
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8471
8483
|
/**
|
|
8472
8484
|
* Publish a single page.
|
|
8473
8485
|
* @param {string} name
|
|
@@ -8483,6 +8495,14 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8483
8495
|
* @throws {RequiredError}
|
|
8484
8496
|
*/
|
|
8485
8497
|
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8498
|
+
/**
|
|
8499
|
+
* Update a single page\'s content.
|
|
8500
|
+
* @param {string} name
|
|
8501
|
+
* @param {Content} content
|
|
8502
|
+
* @param {*} [options] Override http request option.
|
|
8503
|
+
* @throws {RequiredError}
|
|
8504
|
+
*/
|
|
8505
|
+
updateSinglePageContent: (name: string, content: Content, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8486
8506
|
};
|
|
8487
8507
|
/**
|
|
8488
8508
|
* ApiConsoleHaloRunV1alpha1SinglePageApi - functional programming interface
|
|
@@ -8499,19 +8519,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8499
8519
|
/**
|
|
8500
8520
|
* List single pages.
|
|
8501
8521
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8502
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8503
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8504
8522
|
* @param {Array<string>} [contributor]
|
|
8505
8523
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8506
8524
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8525
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8526
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8507
8527
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8508
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8509
8528
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8510
8529
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8530
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8511
8531
|
* @param {*} [options] Override http request option.
|
|
8512
8532
|
* @throws {RequiredError}
|
|
8513
8533
|
*/
|
|
8514
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8534
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8515
8535
|
/**
|
|
8516
8536
|
* Publish a single page.
|
|
8517
8537
|
* @param {string} name
|
|
@@ -8527,6 +8547,14 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8527
8547
|
* @throws {RequiredError}
|
|
8528
8548
|
*/
|
|
8529
8549
|
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
8550
|
+
/**
|
|
8551
|
+
* Update a single page\'s content.
|
|
8552
|
+
* @param {string} name
|
|
8553
|
+
* @param {Content} content
|
|
8554
|
+
* @param {*} [options] Override http request option.
|
|
8555
|
+
* @throws {RequiredError}
|
|
8556
|
+
*/
|
|
8557
|
+
updateSinglePageContent(name: string, content: Content, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
8530
8558
|
};
|
|
8531
8559
|
/**
|
|
8532
8560
|
* ApiConsoleHaloRunV1alpha1SinglePageApi - factory interface
|
|
@@ -8543,19 +8571,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8543
8571
|
/**
|
|
8544
8572
|
* List single pages.
|
|
8545
8573
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8546
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8547
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8548
8574
|
* @param {Array<string>} [contributor]
|
|
8549
8575
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8550
8576
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8577
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8578
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8551
8579
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8552
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8553
8580
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8554
8581
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8582
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8555
8583
|
* @param {*} [options] Override http request option.
|
|
8556
8584
|
* @throws {RequiredError}
|
|
8557
8585
|
*/
|
|
8558
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8586
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8559
8587
|
/**
|
|
8560
8588
|
* Publish a single page.
|
|
8561
8589
|
* @param {string} name
|
|
@@ -8571,6 +8599,14 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8571
8599
|
* @throws {RequiredError}
|
|
8572
8600
|
*/
|
|
8573
8601
|
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
8602
|
+
/**
|
|
8603
|
+
* Update a single page\'s content.
|
|
8604
|
+
* @param {string} name
|
|
8605
|
+
* @param {Content} content
|
|
8606
|
+
* @param {*} [options] Override http request option.
|
|
8607
|
+
* @throws {RequiredError}
|
|
8608
|
+
*/
|
|
8609
|
+
updateSinglePageContent(name: string, content: Content, options?: any): AxiosPromise<Post>;
|
|
8574
8610
|
};
|
|
8575
8611
|
/**
|
|
8576
8612
|
* Request parameters for draftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8597,18 +8633,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8597
8633
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8598
8634
|
*/
|
|
8599
8635
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8600
|
-
/**
|
|
8601
|
-
* SinglePages filtered by keyword.
|
|
8602
|
-
* @type {string}
|
|
8603
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8604
|
-
*/
|
|
8605
|
-
readonly keyword?: string;
|
|
8606
|
-
/**
|
|
8607
|
-
*
|
|
8608
|
-
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8609
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8610
|
-
*/
|
|
8611
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8612
8636
|
/**
|
|
8613
8637
|
*
|
|
8614
8638
|
* @type {Array<string>}
|
|
@@ -8628,17 +8652,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8628
8652
|
*/
|
|
8629
8653
|
readonly sortOrder?: boolean;
|
|
8630
8654
|
/**
|
|
8631
|
-
*
|
|
8632
|
-
* @type {
|
|
8655
|
+
* SinglePages filtered by keyword.
|
|
8656
|
+
* @type {string}
|
|
8633
8657
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8634
8658
|
*/
|
|
8635
|
-
readonly
|
|
8659
|
+
readonly keyword?: string;
|
|
8636
8660
|
/**
|
|
8637
|
-
*
|
|
8661
|
+
*
|
|
8662
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8663
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8664
|
+
*/
|
|
8665
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8666
|
+
/**
|
|
8667
|
+
* Size of one page. Zero indicates no limit.
|
|
8638
8668
|
* @type {number}
|
|
8639
8669
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8640
8670
|
*/
|
|
8641
|
-
readonly
|
|
8671
|
+
readonly size?: number;
|
|
8642
8672
|
/**
|
|
8643
8673
|
* Label selector for filtering.
|
|
8644
8674
|
* @type {Array<string>}
|
|
@@ -8651,6 +8681,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8651
8681
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8652
8682
|
*/
|
|
8653
8683
|
readonly fieldSelector?: Array<string>;
|
|
8684
|
+
/**
|
|
8685
|
+
* The page number. Zero indicates no page.
|
|
8686
|
+
* @type {number}
|
|
8687
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8688
|
+
*/
|
|
8689
|
+
readonly page?: number;
|
|
8654
8690
|
}
|
|
8655
8691
|
/**
|
|
8656
8692
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8684,6 +8720,25 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
|
|
|
8684
8720
|
*/
|
|
8685
8721
|
readonly singlePageRequest: SinglePageRequest;
|
|
8686
8722
|
}
|
|
8723
|
+
/**
|
|
8724
|
+
* Request parameters for updateSinglePageContent operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
8725
|
+
* @export
|
|
8726
|
+
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest
|
|
8727
|
+
*/
|
|
8728
|
+
interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest {
|
|
8729
|
+
/**
|
|
8730
|
+
*
|
|
8731
|
+
* @type {string}
|
|
8732
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContent
|
|
8733
|
+
*/
|
|
8734
|
+
readonly name: string;
|
|
8735
|
+
/**
|
|
8736
|
+
*
|
|
8737
|
+
* @type {Content}
|
|
8738
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContent
|
|
8739
|
+
*/
|
|
8740
|
+
readonly content: Content;
|
|
8741
|
+
}
|
|
8687
8742
|
/**
|
|
8688
8743
|
* ApiConsoleHaloRunV1alpha1SinglePageApi - object-oriented interface
|
|
8689
8744
|
* @export
|
|
@@ -8723,6 +8778,14 @@ declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
8723
8778
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
8724
8779
|
*/
|
|
8725
8780
|
updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
8781
|
+
/**
|
|
8782
|
+
* Update a single page\'s content.
|
|
8783
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest} requestParameters Request parameters.
|
|
8784
|
+
* @param {*} [options] Override http request option.
|
|
8785
|
+
* @throws {RequiredError}
|
|
8786
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
8787
|
+
*/
|
|
8788
|
+
updateSinglePageContent(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
8726
8789
|
}
|
|
8727
8790
|
|
|
8728
8791
|
/**
|
|
@@ -8793,13 +8856,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8793
8856
|
* List themes.
|
|
8794
8857
|
* @param {boolean} uninstalled
|
|
8795
8858
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8796
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8797
8859
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8798
8860
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8861
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8799
8862
|
* @param {*} [options] Override http request option.
|
|
8800
8863
|
* @throws {RequiredError}
|
|
8801
8864
|
*/
|
|
8802
|
-
listThemes: (uninstalled: boolean, size?: number,
|
|
8865
|
+
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8803
8866
|
/**
|
|
8804
8867
|
* Reload theme setting.
|
|
8805
8868
|
* @param {string} name
|
|
@@ -8832,13 +8895,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8832
8895
|
* List themes.
|
|
8833
8896
|
* @param {boolean} uninstalled
|
|
8834
8897
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8835
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8836
8898
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8837
8899
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8900
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8838
8901
|
* @param {*} [options] Override http request option.
|
|
8839
8902
|
* @throws {RequiredError}
|
|
8840
8903
|
*/
|
|
8841
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
8904
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
8842
8905
|
/**
|
|
8843
8906
|
* Reload theme setting.
|
|
8844
8907
|
* @param {string} name
|
|
@@ -8871,13 +8934,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8871
8934
|
* List themes.
|
|
8872
8935
|
* @param {boolean} uninstalled
|
|
8873
8936
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8874
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8875
8937
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8876
8938
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8939
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8877
8940
|
* @param {*} [options] Override http request option.
|
|
8878
8941
|
* @throws {RequiredError}
|
|
8879
8942
|
*/
|
|
8880
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
8943
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
|
|
8881
8944
|
/**
|
|
8882
8945
|
* Reload theme setting.
|
|
8883
8946
|
* @param {string} name
|
|
@@ -8925,12 +8988,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8925
8988
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8926
8989
|
*/
|
|
8927
8990
|
readonly size?: number;
|
|
8928
|
-
/**
|
|
8929
|
-
* The page number. Zero indicates no page.
|
|
8930
|
-
* @type {number}
|
|
8931
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8932
|
-
*/
|
|
8933
|
-
readonly page?: number;
|
|
8934
8991
|
/**
|
|
8935
8992
|
* Label selector for filtering.
|
|
8936
8993
|
* @type {Array<string>}
|
|
@@ -8943,6 +9000,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8943
9000
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8944
9001
|
*/
|
|
8945
9002
|
readonly fieldSelector?: Array<string>;
|
|
9003
|
+
/**
|
|
9004
|
+
* The page number. Zero indicates no page.
|
|
9005
|
+
* @type {number}
|
|
9006
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9007
|
+
*/
|
|
9008
|
+
readonly page?: number;
|
|
8946
9009
|
}
|
|
8947
9010
|
/**
|
|
8948
9011
|
* Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9530,13 +9593,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9530
9593
|
/**
|
|
9531
9594
|
* Search posts with fuzzy query
|
|
9532
9595
|
* @param {string} keyword
|
|
9533
|
-
* @param {number} [limit]
|
|
9534
9596
|
* @param {string} [highlightPreTag]
|
|
9535
9597
|
* @param {string} [highlightPostTag]
|
|
9598
|
+
* @param {number} [limit]
|
|
9536
9599
|
* @param {*} [options] Override http request option.
|
|
9537
9600
|
* @throws {RequiredError}
|
|
9538
9601
|
*/
|
|
9539
|
-
searchPost: (keyword: string,
|
|
9602
|
+
searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9540
9603
|
};
|
|
9541
9604
|
/**
|
|
9542
9605
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9546,13 +9609,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9546
9609
|
/**
|
|
9547
9610
|
* Search posts with fuzzy query
|
|
9548
9611
|
* @param {string} keyword
|
|
9549
|
-
* @param {number} [limit]
|
|
9550
9612
|
* @param {string} [highlightPreTag]
|
|
9551
9613
|
* @param {string} [highlightPostTag]
|
|
9614
|
+
* @param {number} [limit]
|
|
9552
9615
|
* @param {*} [options] Override http request option.
|
|
9553
9616
|
* @throws {RequiredError}
|
|
9554
9617
|
*/
|
|
9555
|
-
searchPost(keyword: string,
|
|
9618
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9556
9619
|
};
|
|
9557
9620
|
/**
|
|
9558
9621
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9562,13 +9625,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9562
9625
|
/**
|
|
9563
9626
|
* Search posts with fuzzy query
|
|
9564
9627
|
* @param {string} keyword
|
|
9565
|
-
* @param {number} [limit]
|
|
9566
9628
|
* @param {string} [highlightPreTag]
|
|
9567
9629
|
* @param {string} [highlightPostTag]
|
|
9630
|
+
* @param {number} [limit]
|
|
9568
9631
|
* @param {*} [options] Override http request option.
|
|
9569
9632
|
* @throws {RequiredError}
|
|
9570
9633
|
*/
|
|
9571
|
-
searchPost(keyword: string,
|
|
9634
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
|
|
9572
9635
|
};
|
|
9573
9636
|
/**
|
|
9574
9637
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9584,22 +9647,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9584
9647
|
readonly keyword: string;
|
|
9585
9648
|
/**
|
|
9586
9649
|
*
|
|
9587
|
-
* @type {
|
|
9650
|
+
* @type {string}
|
|
9588
9651
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9589
9652
|
*/
|
|
9590
|
-
readonly
|
|
9653
|
+
readonly highlightPreTag?: string;
|
|
9591
9654
|
/**
|
|
9592
9655
|
*
|
|
9593
9656
|
* @type {string}
|
|
9594
9657
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9595
9658
|
*/
|
|
9596
|
-
readonly
|
|
9659
|
+
readonly highlightPostTag?: string;
|
|
9597
9660
|
/**
|
|
9598
9661
|
*
|
|
9599
|
-
* @type {
|
|
9662
|
+
* @type {number}
|
|
9600
9663
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9601
9664
|
*/
|
|
9602
|
-
readonly
|
|
9665
|
+
readonly limit?: number;
|
|
9603
9666
|
}
|
|
9604
9667
|
/**
|
|
9605
9668
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -16323,4 +16386,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
16323
16386
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
16324
16387
|
}
|
|
16325
16388
|
|
|
16326
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, 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, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, 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, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, 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, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, 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, User, UserList, UserPermission, UserSpec, UserStatus, 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 };
|
|
16389
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, 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, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, 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, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, 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, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, 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, User, UserList, UserPermission, UserSpec, UserStatus, 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 };
|