@halo-dev/api-client 0.0.63-beta.0 → 0.0.64
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 +113 -113
- package/dist/index.d.ts +192 -192
- package/dist/index.mjs +113 -113
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2203,22 +2203,22 @@ interface Excerpt {
|
|
|
2203
2203
|
interface Extension {
|
|
2204
2204
|
/**
|
|
2205
2205
|
*
|
|
2206
|
-
* @type {
|
|
2206
|
+
* @type {string}
|
|
2207
2207
|
* @memberof Extension
|
|
2208
2208
|
*/
|
|
2209
|
-
|
|
2209
|
+
kind: string;
|
|
2210
2210
|
/**
|
|
2211
2211
|
*
|
|
2212
|
-
* @type {
|
|
2212
|
+
* @type {Metadata}
|
|
2213
2213
|
* @memberof Extension
|
|
2214
2214
|
*/
|
|
2215
|
-
|
|
2215
|
+
metadata: Metadata;
|
|
2216
2216
|
/**
|
|
2217
2217
|
*
|
|
2218
2218
|
* @type {string}
|
|
2219
2219
|
* @memberof Extension
|
|
2220
2220
|
*/
|
|
2221
|
-
|
|
2221
|
+
apiVersion: string;
|
|
2222
2222
|
}
|
|
2223
2223
|
|
|
2224
2224
|
/**
|
|
@@ -7209,17 +7209,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7209
7209
|
* @param {string} [policy] Name of policy
|
|
7210
7210
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7211
7211
|
* @param {string} [displayName] Display name of attachment
|
|
7212
|
+
* @param {string} [group] Name of group
|
|
7212
7213
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7213
7214
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7214
|
-
* @param {string} [group] Name of group
|
|
7215
7215
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7216
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7216
7217
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7217
7218
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7218
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7219
7219
|
* @param {*} [options] Override http request option.
|
|
7220
7220
|
* @throws {RequiredError}
|
|
7221
7221
|
*/
|
|
7222
|
-
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7222
|
+
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7223
7223
|
/**
|
|
7224
7224
|
*
|
|
7225
7225
|
* @param {any} file
|
|
@@ -7240,17 +7240,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7240
7240
|
* @param {string} [policy] Name of policy
|
|
7241
7241
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7242
7242
|
* @param {string} [displayName] Display name of attachment
|
|
7243
|
+
* @param {string} [group] Name of group
|
|
7243
7244
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7244
7245
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7245
|
-
* @param {string} [group] Name of group
|
|
7246
7246
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7247
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7247
7248
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7248
7249
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7249
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7250
7250
|
* @param {*} [options] Override http request option.
|
|
7251
7251
|
* @throws {RequiredError}
|
|
7252
7252
|
*/
|
|
7253
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7253
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7254
7254
|
/**
|
|
7255
7255
|
*
|
|
7256
7256
|
* @param {any} file
|
|
@@ -7271,17 +7271,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7271
7271
|
* @param {string} [policy] Name of policy
|
|
7272
7272
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7273
7273
|
* @param {string} [displayName] Display name of attachment
|
|
7274
|
+
* @param {string} [group] Name of group
|
|
7274
7275
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7275
7276
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7276
|
-
* @param {string} [group] Name of group
|
|
7277
7277
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7278
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7278
7279
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7279
7280
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7280
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7281
7281
|
* @param {*} [options] Override http request option.
|
|
7282
7282
|
* @throws {RequiredError}
|
|
7283
7283
|
*/
|
|
7284
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string,
|
|
7284
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, ungrouped?: boolean, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
7285
7285
|
/**
|
|
7286
7286
|
*
|
|
7287
7287
|
* @param {any} file
|
|
@@ -7316,6 +7316,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7316
7316
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7317
7317
|
*/
|
|
7318
7318
|
readonly displayName?: string;
|
|
7319
|
+
/**
|
|
7320
|
+
* Name of group
|
|
7321
|
+
* @type {string}
|
|
7322
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7323
|
+
*/
|
|
7324
|
+
readonly group?: string;
|
|
7319
7325
|
/**
|
|
7320
7326
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7321
7327
|
* @type {boolean}
|
|
@@ -7329,17 +7335,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7329
7335
|
*/
|
|
7330
7336
|
readonly uploadedBy?: string;
|
|
7331
7337
|
/**
|
|
7332
|
-
*
|
|
7333
|
-
* @type {
|
|
7338
|
+
* Size of one page. Zero indicates no limit.
|
|
7339
|
+
* @type {number}
|
|
7334
7340
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7335
7341
|
*/
|
|
7336
|
-
readonly
|
|
7342
|
+
readonly size?: number;
|
|
7337
7343
|
/**
|
|
7338
|
-
*
|
|
7344
|
+
* The page number. Zero indicates no page.
|
|
7339
7345
|
* @type {number}
|
|
7340
7346
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7341
7347
|
*/
|
|
7342
|
-
readonly
|
|
7348
|
+
readonly page?: number;
|
|
7343
7349
|
/**
|
|
7344
7350
|
* Label selector for filtering.
|
|
7345
7351
|
* @type {Array<string>}
|
|
@@ -7352,12 +7358,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7352
7358
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7353
7359
|
*/
|
|
7354
7360
|
readonly fieldSelector?: Array<string>;
|
|
7355
|
-
/**
|
|
7356
|
-
* The page number. Zero indicates no page.
|
|
7357
|
-
* @type {number}
|
|
7358
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7359
|
-
*/
|
|
7360
|
-
readonly page?: number;
|
|
7361
7361
|
}
|
|
7362
7362
|
/**
|
|
7363
7363
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7432,6 +7432,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7432
7432
|
/**
|
|
7433
7433
|
* List comments.
|
|
7434
7434
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7435
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7436
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7437
|
+
* @param {boolean} [top] Comment top display.
|
|
7435
7438
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7436
7439
|
* @param {boolean} [approved] Comments approved.
|
|
7437
7440
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7439,17 +7442,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7439
7442
|
* @param {string} [ownerName] Commenter name.
|
|
7440
7443
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7441
7444
|
* @param {string} [subjectName] Comment subject name.
|
|
7442
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7443
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7444
|
-
* @param {boolean} [top] Comment top display.
|
|
7445
7445
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7446
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7446
7447
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7447
7448
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7448
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7449
7449
|
* @param {*} [options] Override http request option.
|
|
7450
7450
|
* @throws {RequiredError}
|
|
7451
7451
|
*/
|
|
7452
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7452
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7453
7453
|
};
|
|
7454
7454
|
/**
|
|
7455
7455
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7474,6 +7474,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7474
7474
|
/**
|
|
7475
7475
|
* List comments.
|
|
7476
7476
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7477
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7478
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7479
|
+
* @param {boolean} [top] Comment top display.
|
|
7477
7480
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7478
7481
|
* @param {boolean} [approved] Comments approved.
|
|
7479
7482
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7481,17 +7484,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7481
7484
|
* @param {string} [ownerName] Commenter name.
|
|
7482
7485
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7483
7486
|
* @param {string} [subjectName] Comment subject name.
|
|
7484
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7485
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7486
|
-
* @param {boolean} [top] Comment top display.
|
|
7487
7487
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7488
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7488
7489
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7489
7490
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7490
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7491
7491
|
* @param {*} [options] Override http request option.
|
|
7492
7492
|
* @throws {RequiredError}
|
|
7493
7493
|
*/
|
|
7494
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7494
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7495
7495
|
};
|
|
7496
7496
|
/**
|
|
7497
7497
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7516,6 +7516,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7516
7516
|
/**
|
|
7517
7517
|
* List comments.
|
|
7518
7518
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7519
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7520
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7521
|
+
* @param {boolean} [top] Comment top display.
|
|
7519
7522
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7520
7523
|
* @param {boolean} [approved] Comments approved.
|
|
7521
7524
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7523,17 +7526,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7523
7526
|
* @param {string} [ownerName] Commenter name.
|
|
7524
7527
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7525
7528
|
* @param {string} [subjectName] Comment subject name.
|
|
7526
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7527
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7528
|
-
* @param {boolean} [top] Comment top display.
|
|
7529
7529
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7530
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7530
7531
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7531
7532
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7532
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7533
7533
|
* @param {*} [options] Override http request option.
|
|
7534
7534
|
* @throws {RequiredError}
|
|
7535
7535
|
*/
|
|
7536
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7536
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
|
|
7537
7537
|
};
|
|
7538
7538
|
/**
|
|
7539
7539
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7579,6 +7579,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7579
7579
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7580
7580
|
*/
|
|
7581
7581
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7582
|
+
/**
|
|
7583
|
+
* Comments filtered by keyword.
|
|
7584
|
+
* @type {string}
|
|
7585
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7586
|
+
*/
|
|
7587
|
+
readonly keyword?: string;
|
|
7588
|
+
/**
|
|
7589
|
+
* The comment is hidden from the theme side.
|
|
7590
|
+
* @type {boolean}
|
|
7591
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7592
|
+
*/
|
|
7593
|
+
readonly hidden?: boolean;
|
|
7594
|
+
/**
|
|
7595
|
+
* Comment top display.
|
|
7596
|
+
* @type {boolean}
|
|
7597
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7598
|
+
*/
|
|
7599
|
+
readonly top?: boolean;
|
|
7582
7600
|
/**
|
|
7583
7601
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7584
7602
|
* @type {boolean}
|
|
@@ -7622,29 +7640,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7622
7640
|
*/
|
|
7623
7641
|
readonly subjectName?: string;
|
|
7624
7642
|
/**
|
|
7625
|
-
*
|
|
7626
|
-
* @type {
|
|
7627
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7628
|
-
*/
|
|
7629
|
-
readonly keyword?: string;
|
|
7630
|
-
/**
|
|
7631
|
-
* The comment is hidden from the theme side.
|
|
7632
|
-
* @type {boolean}
|
|
7633
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7634
|
-
*/
|
|
7635
|
-
readonly hidden?: boolean;
|
|
7636
|
-
/**
|
|
7637
|
-
* Comment top display.
|
|
7638
|
-
* @type {boolean}
|
|
7643
|
+
* Size of one page. Zero indicates no limit.
|
|
7644
|
+
* @type {number}
|
|
7639
7645
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7640
7646
|
*/
|
|
7641
|
-
readonly
|
|
7647
|
+
readonly size?: number;
|
|
7642
7648
|
/**
|
|
7643
|
-
*
|
|
7649
|
+
* The page number. Zero indicates no page.
|
|
7644
7650
|
* @type {number}
|
|
7645
7651
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7646
7652
|
*/
|
|
7647
|
-
readonly
|
|
7653
|
+
readonly page?: number;
|
|
7648
7654
|
/**
|
|
7649
7655
|
* Label selector for filtering.
|
|
7650
7656
|
* @type {Array<string>}
|
|
@@ -7657,12 +7663,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7657
7663
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7658
7664
|
*/
|
|
7659
7665
|
readonly fieldSelector?: Array<string>;
|
|
7660
|
-
/**
|
|
7661
|
-
* The page number. Zero indicates no page.
|
|
7662
|
-
* @type {number}
|
|
7663
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7664
|
-
*/
|
|
7665
|
-
readonly page?: number;
|
|
7666
7666
|
}
|
|
7667
7667
|
/**
|
|
7668
7668
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7926,16 +7926,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7926
7926
|
/**
|
|
7927
7927
|
* List plugins using query criteria and sort params
|
|
7928
7928
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7929
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7930
7929
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7930
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7931
7931
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7932
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7932
7933
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7933
7934
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7934
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7935
7935
|
* @param {*} [options] Override http request option.
|
|
7936
7936
|
* @throws {RequiredError}
|
|
7937
7937
|
*/
|
|
7938
|
-
listPlugins: (sort?: Array<string>, enabled?: boolean,
|
|
7938
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7939
7939
|
/**
|
|
7940
7940
|
* Reset the configMap of plugin setting.
|
|
7941
7941
|
* @param {string} name
|
|
@@ -7967,16 +7967,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7967
7967
|
/**
|
|
7968
7968
|
* List plugins using query criteria and sort params
|
|
7969
7969
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7970
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7971
7970
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7971
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7972
7972
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7973
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7973
7974
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7974
7975
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7975
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7976
7976
|
* @param {*} [options] Override http request option.
|
|
7977
7977
|
* @throws {RequiredError}
|
|
7978
7978
|
*/
|
|
7979
|
-
listPlugins(sort?: Array<string>, enabled?: boolean,
|
|
7979
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7980
7980
|
/**
|
|
7981
7981
|
* Reset the configMap of plugin setting.
|
|
7982
7982
|
* @param {string} name
|
|
@@ -8008,16 +8008,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
8008
8008
|
/**
|
|
8009
8009
|
* List plugins using query criteria and sort params
|
|
8010
8010
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
8011
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8012
8011
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
8012
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
8013
8013
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8014
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8014
8015
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8015
8016
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8016
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8017
8017
|
* @param {*} [options] Override http request option.
|
|
8018
8018
|
* @throws {RequiredError}
|
|
8019
8019
|
*/
|
|
8020
|
-
listPlugins(sort?: Array<string>, enabled?: boolean,
|
|
8020
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
8021
8021
|
/**
|
|
8022
8022
|
* Reset the configMap of plugin setting.
|
|
8023
8023
|
* @param {string} name
|
|
@@ -8059,6 +8059,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8059
8059
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8060
8060
|
*/
|
|
8061
8061
|
readonly sort?: Array<string>;
|
|
8062
|
+
/**
|
|
8063
|
+
* Keyword of plugin name or description
|
|
8064
|
+
* @type {string}
|
|
8065
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8066
|
+
*/
|
|
8067
|
+
readonly keyword?: string;
|
|
8062
8068
|
/**
|
|
8063
8069
|
* Whether the plugin is enabled
|
|
8064
8070
|
* @type {boolean}
|
|
@@ -8066,17 +8072,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8066
8072
|
*/
|
|
8067
8073
|
readonly enabled?: boolean;
|
|
8068
8074
|
/**
|
|
8069
|
-
*
|
|
8070
|
-
* @type {
|
|
8075
|
+
* Size of one page. Zero indicates no limit.
|
|
8076
|
+
* @type {number}
|
|
8071
8077
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8072
8078
|
*/
|
|
8073
|
-
readonly
|
|
8079
|
+
readonly size?: number;
|
|
8074
8080
|
/**
|
|
8075
|
-
*
|
|
8081
|
+
* The page number. Zero indicates no page.
|
|
8076
8082
|
* @type {number}
|
|
8077
8083
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8078
8084
|
*/
|
|
8079
|
-
readonly
|
|
8085
|
+
readonly page?: number;
|
|
8080
8086
|
/**
|
|
8081
8087
|
* Label selector for filtering.
|
|
8082
8088
|
* @type {Array<string>}
|
|
@@ -8089,12 +8095,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
8089
8095
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8090
8096
|
*/
|
|
8091
8097
|
readonly fieldSelector?: Array<string>;
|
|
8092
|
-
/**
|
|
8093
|
-
* The page number. Zero indicates no page.
|
|
8094
|
-
* @type {number}
|
|
8095
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
8096
|
-
*/
|
|
8097
|
-
readonly page?: number;
|
|
8098
8098
|
}
|
|
8099
8099
|
/**
|
|
8100
8100
|
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -8184,21 +8184,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8184
8184
|
/**
|
|
8185
8185
|
* List posts.
|
|
8186
8186
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8187
|
-
* @param {
|
|
8187
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8188
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8189
|
+
* @param {Array<string>} [tag]
|
|
8190
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8188
8191
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8189
8192
|
* @param {Array<string>} [category]
|
|
8190
|
-
* @param {
|
|
8191
|
-
* @param {Array<string>} [tag]
|
|
8192
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8193
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8193
|
+
* @param {Array<string>} [contributor]
|
|
8194
8194
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8195
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8195
8196
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8196
8197
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8197
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8198
8198
|
* @param {*} [options] Override http request option.
|
|
8199
8199
|
* @throws {RequiredError}
|
|
8200
8200
|
*/
|
|
8201
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8201
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8202
8202
|
/**
|
|
8203
8203
|
* Publish a post.
|
|
8204
8204
|
* @param {string} name
|
|
@@ -8253,21 +8253,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8253
8253
|
/**
|
|
8254
8254
|
* List posts.
|
|
8255
8255
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8256
|
-
* @param {
|
|
8256
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8257
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8258
|
+
* @param {Array<string>} [tag]
|
|
8259
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8257
8260
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8258
8261
|
* @param {Array<string>} [category]
|
|
8259
|
-
* @param {
|
|
8260
|
-
* @param {Array<string>} [tag]
|
|
8261
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8262
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8262
|
+
* @param {Array<string>} [contributor]
|
|
8263
8263
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8264
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8264
8265
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8265
8266
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8266
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8267
8267
|
* @param {*} [options] Override http request option.
|
|
8268
8268
|
* @throws {RequiredError}
|
|
8269
8269
|
*/
|
|
8270
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8270
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8271
8271
|
/**
|
|
8272
8272
|
* Publish a post.
|
|
8273
8273
|
* @param {string} name
|
|
@@ -8322,21 +8322,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8322
8322
|
/**
|
|
8323
8323
|
* List posts.
|
|
8324
8324
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8325
|
-
* @param {
|
|
8325
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8326
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8327
|
+
* @param {Array<string>} [tag]
|
|
8328
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8326
8329
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8327
8330
|
* @param {Array<string>} [category]
|
|
8328
|
-
* @param {
|
|
8329
|
-
* @param {Array<string>} [tag]
|
|
8330
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8331
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8331
|
+
* @param {Array<string>} [contributor]
|
|
8332
8332
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8333
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8333
8334
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8334
8335
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8335
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8336
8336
|
* @param {*} [options] Override http request option.
|
|
8337
8337
|
* @throws {RequiredError}
|
|
8338
8338
|
*/
|
|
8339
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8339
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
8340
8340
|
/**
|
|
8341
8341
|
* Publish a post.
|
|
8342
8342
|
* @param {string} name
|
|
@@ -8403,22 +8403,22 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8403
8403
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8404
8404
|
/**
|
|
8405
8405
|
*
|
|
8406
|
-
* @type {
|
|
8406
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8407
8407
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8408
8408
|
*/
|
|
8409
|
-
readonly
|
|
8409
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8410
8410
|
/**
|
|
8411
|
-
*
|
|
8412
|
-
* @type {
|
|
8411
|
+
* Posts filtered by keyword.
|
|
8412
|
+
* @type {string}
|
|
8413
8413
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8414
8414
|
*/
|
|
8415
|
-
readonly
|
|
8415
|
+
readonly keyword?: string;
|
|
8416
8416
|
/**
|
|
8417
8417
|
*
|
|
8418
8418
|
* @type {Array<string>}
|
|
8419
8419
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8420
8420
|
*/
|
|
8421
|
-
readonly
|
|
8421
|
+
readonly tag?: Array<string>;
|
|
8422
8422
|
/**
|
|
8423
8423
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8424
8424
|
* @type {boolean}
|
|
@@ -8427,28 +8427,34 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8427
8427
|
readonly sortOrder?: boolean;
|
|
8428
8428
|
/**
|
|
8429
8429
|
*
|
|
8430
|
-
* @type {
|
|
8430
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8431
8431
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8432
8432
|
*/
|
|
8433
|
-
readonly
|
|
8433
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8434
8434
|
/**
|
|
8435
|
-
*
|
|
8436
|
-
* @type {string}
|
|
8435
|
+
*
|
|
8436
|
+
* @type {Array<string>}
|
|
8437
8437
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8438
8438
|
*/
|
|
8439
|
-
readonly
|
|
8439
|
+
readonly category?: Array<string>;
|
|
8440
8440
|
/**
|
|
8441
8441
|
*
|
|
8442
|
-
* @type {
|
|
8442
|
+
* @type {Array<string>}
|
|
8443
8443
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8444
8444
|
*/
|
|
8445
|
-
readonly
|
|
8445
|
+
readonly contributor?: Array<string>;
|
|
8446
8446
|
/**
|
|
8447
8447
|
* Size of one page. Zero indicates no limit.
|
|
8448
8448
|
* @type {number}
|
|
8449
8449
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8450
8450
|
*/
|
|
8451
8451
|
readonly size?: number;
|
|
8452
|
+
/**
|
|
8453
|
+
* The page number. Zero indicates no page.
|
|
8454
|
+
* @type {number}
|
|
8455
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8456
|
+
*/
|
|
8457
|
+
readonly page?: number;
|
|
8452
8458
|
/**
|
|
8453
8459
|
* Label selector for filtering.
|
|
8454
8460
|
* @type {Array<string>}
|
|
@@ -8461,12 +8467,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8461
8467
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8462
8468
|
*/
|
|
8463
8469
|
readonly fieldSelector?: Array<string>;
|
|
8464
|
-
/**
|
|
8465
|
-
* The page number. Zero indicates no page.
|
|
8466
|
-
* @type {number}
|
|
8467
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8468
|
-
*/
|
|
8469
|
-
readonly page?: number;
|
|
8470
8470
|
}
|
|
8471
8471
|
/**
|
|
8472
8472
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8625,13 +8625,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8625
8625
|
* List replies.
|
|
8626
8626
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8627
8627
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8628
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8628
8629
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8629
8630
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8630
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8631
8631
|
* @param {*} [options] Override http request option.
|
|
8632
8632
|
* @throws {RequiredError}
|
|
8633
8633
|
*/
|
|
8634
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8634
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8635
8635
|
};
|
|
8636
8636
|
/**
|
|
8637
8637
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8642,13 +8642,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8642
8642
|
* List replies.
|
|
8643
8643
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8644
8644
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8645
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8645
8646
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8646
8647
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8647
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8648
8648
|
* @param {*} [options] Override http request option.
|
|
8649
8649
|
* @throws {RequiredError}
|
|
8650
8650
|
*/
|
|
8651
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8651
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8652
8652
|
};
|
|
8653
8653
|
/**
|
|
8654
8654
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8659,13 +8659,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8659
8659
|
* List replies.
|
|
8660
8660
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8661
8661
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8662
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8662
8663
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8663
8664
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8664
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8665
8665
|
* @param {*} [options] Override http request option.
|
|
8666
8666
|
* @throws {RequiredError}
|
|
8667
8667
|
*/
|
|
8668
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8668
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
8669
8669
|
};
|
|
8670
8670
|
/**
|
|
8671
8671
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8685,6 +8685,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8685
8685
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8686
8686
|
*/
|
|
8687
8687
|
readonly size?: number;
|
|
8688
|
+
/**
|
|
8689
|
+
* The page number. Zero indicates no page.
|
|
8690
|
+
* @type {number}
|
|
8691
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8692
|
+
*/
|
|
8693
|
+
readonly page?: number;
|
|
8688
8694
|
/**
|
|
8689
8695
|
* Label selector for filtering.
|
|
8690
8696
|
* @type {Array<string>}
|
|
@@ -8697,12 +8703,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8697
8703
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8698
8704
|
*/
|
|
8699
8705
|
readonly fieldSelector?: Array<string>;
|
|
8700
|
-
/**
|
|
8701
|
-
* The page number. Zero indicates no page.
|
|
8702
|
-
* @type {number}
|
|
8703
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8704
|
-
*/
|
|
8705
|
-
readonly page?: number;
|
|
8706
8706
|
}
|
|
8707
8707
|
/**
|
|
8708
8708
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8736,19 +8736,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8736
8736
|
/**
|
|
8737
8737
|
* List single pages.
|
|
8738
8738
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8739
|
-
* @param {Array<string>} [contributor]
|
|
8740
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8741
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8742
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8743
8739
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8740
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8741
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8742
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8743
|
+
* @param {Array<string>} [contributor]
|
|
8744
8744
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8745
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8745
8746
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8746
8747
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8747
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8748
8748
|
* @param {*} [options] Override http request option.
|
|
8749
8749
|
* @throws {RequiredError}
|
|
8750
8750
|
*/
|
|
8751
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8751
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8752
8752
|
/**
|
|
8753
8753
|
* Publish a single page.
|
|
8754
8754
|
* @param {string} name
|
|
@@ -8788,19 +8788,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8788
8788
|
/**
|
|
8789
8789
|
* List single pages.
|
|
8790
8790
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8791
|
-
* @param {Array<string>} [contributor]
|
|
8792
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8793
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8794
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8795
8791
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8792
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8793
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8794
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8795
|
+
* @param {Array<string>} [contributor]
|
|
8796
8796
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8797
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8797
8798
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8798
8799
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8799
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8800
8800
|
* @param {*} [options] Override http request option.
|
|
8801
8801
|
* @throws {RequiredError}
|
|
8802
8802
|
*/
|
|
8803
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8803
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8804
8804
|
/**
|
|
8805
8805
|
* Publish a single page.
|
|
8806
8806
|
* @param {string} name
|
|
@@ -8840,19 +8840,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8840
8840
|
/**
|
|
8841
8841
|
* List single pages.
|
|
8842
8842
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8843
|
-
* @param {Array<string>} [contributor]
|
|
8844
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8845
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8846
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8847
8843
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8844
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8845
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8846
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8847
|
+
* @param {Array<string>} [contributor]
|
|
8848
8848
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8849
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8849
8850
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8850
8851
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8851
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8852
8852
|
* @param {*} [options] Override http request option.
|
|
8853
8853
|
* @throws {RequiredError}
|
|
8854
8854
|
*/
|
|
8855
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8855
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', keyword?: string, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8856
8856
|
/**
|
|
8857
8857
|
* Publish a single page.
|
|
8858
8858
|
* @param {string} name
|
|
@@ -8904,16 +8904,16 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8904
8904
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8905
8905
|
/**
|
|
8906
8906
|
*
|
|
8907
|
-
* @type {
|
|
8907
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8908
8908
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8909
8909
|
*/
|
|
8910
|
-
readonly
|
|
8910
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8911
8911
|
/**
|
|
8912
|
-
*
|
|
8913
|
-
* @type {
|
|
8912
|
+
* SinglePages filtered by keyword.
|
|
8913
|
+
* @type {string}
|
|
8914
8914
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8915
8915
|
*/
|
|
8916
|
-
readonly
|
|
8916
|
+
readonly keyword?: string;
|
|
8917
8917
|
/**
|
|
8918
8918
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8919
8919
|
* @type {boolean}
|
|
@@ -8921,23 +8921,29 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8921
8921
|
*/
|
|
8922
8922
|
readonly sortOrder?: boolean;
|
|
8923
8923
|
/**
|
|
8924
|
-
*
|
|
8925
|
-
* @type {
|
|
8924
|
+
*
|
|
8925
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8926
8926
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8927
8927
|
*/
|
|
8928
|
-
readonly
|
|
8928
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8929
8929
|
/**
|
|
8930
8930
|
*
|
|
8931
|
-
* @type {
|
|
8931
|
+
* @type {Array<string>}
|
|
8932
8932
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8933
8933
|
*/
|
|
8934
|
-
readonly
|
|
8934
|
+
readonly contributor?: Array<string>;
|
|
8935
8935
|
/**
|
|
8936
8936
|
* Size of one page. Zero indicates no limit.
|
|
8937
8937
|
* @type {number}
|
|
8938
8938
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8939
8939
|
*/
|
|
8940
8940
|
readonly size?: number;
|
|
8941
|
+
/**
|
|
8942
|
+
* The page number. Zero indicates no page.
|
|
8943
|
+
* @type {number}
|
|
8944
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8945
|
+
*/
|
|
8946
|
+
readonly page?: number;
|
|
8941
8947
|
/**
|
|
8942
8948
|
* Label selector for filtering.
|
|
8943
8949
|
* @type {Array<string>}
|
|
@@ -8950,12 +8956,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8950
8956
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8951
8957
|
*/
|
|
8952
8958
|
readonly fieldSelector?: Array<string>;
|
|
8953
|
-
/**
|
|
8954
|
-
* The page number. Zero indicates no page.
|
|
8955
|
-
* @type {number}
|
|
8956
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8957
|
-
*/
|
|
8958
|
-
readonly page?: number;
|
|
8959
8959
|
}
|
|
8960
8960
|
/**
|
|
8961
8961
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -9125,13 +9125,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
9125
9125
|
* List themes.
|
|
9126
9126
|
* @param {boolean} uninstalled
|
|
9127
9127
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9128
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9128
9129
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9129
9130
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9130
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9131
9131
|
* @param {*} [options] Override http request option.
|
|
9132
9132
|
* @throws {RequiredError}
|
|
9133
9133
|
*/
|
|
9134
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9134
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9135
9135
|
/**
|
|
9136
9136
|
* Reload theme setting.
|
|
9137
9137
|
* @param {string} name
|
|
@@ -9171,13 +9171,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9171
9171
|
* List themes.
|
|
9172
9172
|
* @param {boolean} uninstalled
|
|
9173
9173
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9174
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9174
9175
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9175
9176
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9176
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9177
9177
|
* @param {*} [options] Override http request option.
|
|
9178
9178
|
* @throws {RequiredError}
|
|
9179
9179
|
*/
|
|
9180
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9180
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
9181
9181
|
/**
|
|
9182
9182
|
* Reload theme setting.
|
|
9183
9183
|
* @param {string} name
|
|
@@ -9217,13 +9217,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9217
9217
|
* List themes.
|
|
9218
9218
|
* @param {boolean} uninstalled
|
|
9219
9219
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9220
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9220
9221
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9221
9222
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9222
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9223
9223
|
* @param {*} [options] Override http request option.
|
|
9224
9224
|
* @throws {RequiredError}
|
|
9225
9225
|
*/
|
|
9226
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
9226
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
9227
9227
|
/**
|
|
9228
9228
|
* Reload theme setting.
|
|
9229
9229
|
* @param {string} name
|
|
@@ -9278,6 +9278,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9278
9278
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9279
9279
|
*/
|
|
9280
9280
|
readonly size?: number;
|
|
9281
|
+
/**
|
|
9282
|
+
* The page number. Zero indicates no page.
|
|
9283
|
+
* @type {number}
|
|
9284
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9285
|
+
*/
|
|
9286
|
+
readonly page?: number;
|
|
9281
9287
|
/**
|
|
9282
9288
|
* Label selector for filtering.
|
|
9283
9289
|
* @type {Array<string>}
|
|
@@ -9290,12 +9296,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9290
9296
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9291
9297
|
*/
|
|
9292
9298
|
readonly fieldSelector?: Array<string>;
|
|
9293
|
-
/**
|
|
9294
|
-
* The page number. Zero indicates no page.
|
|
9295
|
-
* @type {number}
|
|
9296
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9297
|
-
*/
|
|
9298
|
-
readonly page?: number;
|
|
9299
9299
|
}
|
|
9300
9300
|
/**
|
|
9301
9301
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9904,13 +9904,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9904
9904
|
/**
|
|
9905
9905
|
* Search posts with fuzzy query
|
|
9906
9906
|
* @param {string} keyword
|
|
9907
|
+
* @param {number} [limit]
|
|
9907
9908
|
* @param {string} [highlightPreTag]
|
|
9908
9909
|
* @param {string} [highlightPostTag]
|
|
9909
|
-
* @param {number} [limit]
|
|
9910
9910
|
* @param {*} [options] Override http request option.
|
|
9911
9911
|
* @throws {RequiredError}
|
|
9912
9912
|
*/
|
|
9913
|
-
searchPost: (keyword: string,
|
|
9913
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9914
9914
|
};
|
|
9915
9915
|
/**
|
|
9916
9916
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9920,13 +9920,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9920
9920
|
/**
|
|
9921
9921
|
* Search posts with fuzzy query
|
|
9922
9922
|
* @param {string} keyword
|
|
9923
|
+
* @param {number} [limit]
|
|
9923
9924
|
* @param {string} [highlightPreTag]
|
|
9924
9925
|
* @param {string} [highlightPostTag]
|
|
9925
|
-
* @param {number} [limit]
|
|
9926
9926
|
* @param {*} [options] Override http request option.
|
|
9927
9927
|
* @throws {RequiredError}
|
|
9928
9928
|
*/
|
|
9929
|
-
searchPost(keyword: string,
|
|
9929
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9930
9930
|
};
|
|
9931
9931
|
/**
|
|
9932
9932
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9936,13 +9936,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9936
9936
|
/**
|
|
9937
9937
|
* Search posts with fuzzy query
|
|
9938
9938
|
* @param {string} keyword
|
|
9939
|
+
* @param {number} [limit]
|
|
9939
9940
|
* @param {string} [highlightPreTag]
|
|
9940
9941
|
* @param {string} [highlightPostTag]
|
|
9941
|
-
* @param {number} [limit]
|
|
9942
9942
|
* @param {*} [options] Override http request option.
|
|
9943
9943
|
* @throws {RequiredError}
|
|
9944
9944
|
*/
|
|
9945
|
-
searchPost(keyword: string,
|
|
9945
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
|
|
9946
9946
|
};
|
|
9947
9947
|
/**
|
|
9948
9948
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9958,22 +9958,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9958
9958
|
readonly keyword: string;
|
|
9959
9959
|
/**
|
|
9960
9960
|
*
|
|
9961
|
-
* @type {
|
|
9961
|
+
* @type {number}
|
|
9962
9962
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9963
9963
|
*/
|
|
9964
|
-
readonly
|
|
9964
|
+
readonly limit?: number;
|
|
9965
9965
|
/**
|
|
9966
9966
|
*
|
|
9967
9967
|
* @type {string}
|
|
9968
9968
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9969
9969
|
*/
|
|
9970
|
-
readonly
|
|
9970
|
+
readonly highlightPreTag?: string;
|
|
9971
9971
|
/**
|
|
9972
9972
|
*
|
|
9973
|
-
* @type {
|
|
9973
|
+
* @type {string}
|
|
9974
9974
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9975
9975
|
*/
|
|
9976
|
-
readonly
|
|
9976
|
+
readonly highlightPostTag?: string;
|
|
9977
9977
|
}
|
|
9978
9978
|
/**
|
|
9979
9979
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|