@halo-dev/api-client 0.0.46 → 0.0.47
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 +116 -113
- package/dist/index.d.ts +201 -192
- package/dist/index.mjs +116 -113
- 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 {string}
|
|
2021
2021
|
* @memberof Extension
|
|
2022
2022
|
*/
|
|
2023
|
-
|
|
2023
|
+
kind: string;
|
|
2024
2024
|
/**
|
|
2025
2025
|
*
|
|
2026
|
-
* @type {
|
|
2026
|
+
* @type {Metadata}
|
|
2027
2027
|
* @memberof Extension
|
|
2028
2028
|
*/
|
|
2029
|
-
|
|
2029
|
+
metadata: Metadata;
|
|
2030
2030
|
/**
|
|
2031
2031
|
*
|
|
2032
2032
|
* @type {string}
|
|
2033
2033
|
* @memberof Extension
|
|
2034
2034
|
*/
|
|
2035
|
-
|
|
2035
|
+
apiVersion: string;
|
|
2036
2036
|
}
|
|
2037
2037
|
|
|
2038
2038
|
/**
|
|
@@ -7028,17 +7028,18 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7028
7028
|
/**
|
|
7029
7029
|
*
|
|
7030
7030
|
* @param {string} [policy] Name of policy
|
|
7031
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7031
7032
|
* @param {string} [displayName] Display name of attachment
|
|
7032
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7033
7033
|
* @param {string} [group] Name of group
|
|
7034
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7034
7035
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7036
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7035
7037
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7036
7038
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7037
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7038
7039
|
* @param {*} [options] Override http request option.
|
|
7039
7040
|
* @throws {RequiredError}
|
|
7040
7041
|
*/
|
|
7041
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
7042
|
+
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7042
7043
|
/**
|
|
7043
7044
|
*
|
|
7044
7045
|
* @param {any} file
|
|
@@ -7057,17 +7058,18 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7057
7058
|
/**
|
|
7058
7059
|
*
|
|
7059
7060
|
* @param {string} [policy] Name of policy
|
|
7061
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7060
7062
|
* @param {string} [displayName] Display name of attachment
|
|
7061
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7062
7063
|
* @param {string} [group] Name of group
|
|
7064
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7063
7065
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7066
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7064
7067
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7065
7068
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7066
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7067
7069
|
* @param {*} [options] Override http request option.
|
|
7068
7070
|
* @throws {RequiredError}
|
|
7069
7071
|
*/
|
|
7070
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
7072
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7071
7073
|
/**
|
|
7072
7074
|
*
|
|
7073
7075
|
* @param {any} file
|
|
@@ -7086,17 +7088,18 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7086
7088
|
/**
|
|
7087
7089
|
*
|
|
7088
7090
|
* @param {string} [policy] Name of policy
|
|
7091
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7089
7092
|
* @param {string} [displayName] Display name of attachment
|
|
7090
|
-
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7091
7093
|
* @param {string} [group] Name of group
|
|
7094
|
+
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7092
7095
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7096
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7093
7097
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7094
7098
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7095
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7096
7099
|
* @param {*} [options] Override http request option.
|
|
7097
7100
|
* @throws {RequiredError}
|
|
7098
7101
|
*/
|
|
7099
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
7102
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, group?: string, uploadedBy?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
7100
7103
|
/**
|
|
7101
7104
|
*
|
|
7102
7105
|
* @param {any} file
|
|
@@ -7119,6 +7122,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7119
7122
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7120
7123
|
*/
|
|
7121
7124
|
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>;
|
|
7122
7131
|
/**
|
|
7123
7132
|
* Display name of attachment
|
|
7124
7133
|
* @type {string}
|
|
@@ -7126,23 +7135,29 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7126
7135
|
*/
|
|
7127
7136
|
readonly displayName?: string;
|
|
7128
7137
|
/**
|
|
7129
|
-
* Name of
|
|
7138
|
+
* Name of group
|
|
7130
7139
|
* @type {string}
|
|
7131
7140
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7132
7141
|
*/
|
|
7133
|
-
readonly
|
|
7142
|
+
readonly group?: string;
|
|
7134
7143
|
/**
|
|
7135
|
-
* Name of
|
|
7144
|
+
* Name of user who uploaded the attachment
|
|
7136
7145
|
* @type {string}
|
|
7137
7146
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7138
7147
|
*/
|
|
7139
|
-
readonly
|
|
7148
|
+
readonly uploadedBy?: string;
|
|
7140
7149
|
/**
|
|
7141
7150
|
* Size of one page. Zero indicates no limit.
|
|
7142
7151
|
* @type {number}
|
|
7143
7152
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7144
7153
|
*/
|
|
7145
7154
|
readonly size?: number;
|
|
7155
|
+
/**
|
|
7156
|
+
* The page number. Zero indicates no page.
|
|
7157
|
+
* @type {number}
|
|
7158
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7159
|
+
*/
|
|
7160
|
+
readonly page?: number;
|
|
7146
7161
|
/**
|
|
7147
7162
|
* Label selector for filtering.
|
|
7148
7163
|
* @type {Array<string>}
|
|
@@ -7155,12 +7170,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7155
7170
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7156
7171
|
*/
|
|
7157
7172
|
readonly fieldSelector?: Array<string>;
|
|
7158
|
-
/**
|
|
7159
|
-
* The page number. Zero indicates no page.
|
|
7160
|
-
* @type {number}
|
|
7161
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7162
|
-
*/
|
|
7163
|
-
readonly page?: number;
|
|
7164
7173
|
}
|
|
7165
7174
|
/**
|
|
7166
7175
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7235,6 +7244,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7235
7244
|
/**
|
|
7236
7245
|
* List comments.
|
|
7237
7246
|
* @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.
|
|
7238
7250
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7239
7251
|
* @param {boolean} [approved] Comments approved.
|
|
7240
7252
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7242,17 +7254,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7242
7254
|
* @param {string} [ownerName] Commenter name.
|
|
7243
7255
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7244
7256
|
* @param {string} [subjectName] Comment subject name.
|
|
7245
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7246
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7247
|
-
* @param {boolean} [top] Comment top display.
|
|
7248
7257
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7258
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7249
7259
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7250
7260
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7251
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7252
7261
|
* @param {*} [options] Override http request option.
|
|
7253
7262
|
* @throws {RequiredError}
|
|
7254
7263
|
*/
|
|
7255
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7264
|
+
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>;
|
|
7256
7265
|
};
|
|
7257
7266
|
/**
|
|
7258
7267
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7277,6 +7286,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7277
7286
|
/**
|
|
7278
7287
|
* List comments.
|
|
7279
7288
|
* @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.
|
|
7280
7292
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7281
7293
|
* @param {boolean} [approved] Comments approved.
|
|
7282
7294
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7284,17 +7296,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7284
7296
|
* @param {string} [ownerName] Commenter name.
|
|
7285
7297
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7286
7298
|
* @param {string} [subjectName] Comment subject name.
|
|
7287
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7288
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7289
|
-
* @param {boolean} [top] Comment top display.
|
|
7290
7299
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7300
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7291
7301
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7292
7302
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7293
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7294
7303
|
* @param {*} [options] Override http request option.
|
|
7295
7304
|
* @throws {RequiredError}
|
|
7296
7305
|
*/
|
|
7297
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7306
|
+
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>>;
|
|
7298
7307
|
};
|
|
7299
7308
|
/**
|
|
7300
7309
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7319,6 +7328,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7319
7328
|
/**
|
|
7320
7329
|
* List comments.
|
|
7321
7330
|
* @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.
|
|
7322
7334
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7323
7335
|
* @param {boolean} [approved] Comments approved.
|
|
7324
7336
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7326,17 +7338,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7326
7338
|
* @param {string} [ownerName] Commenter name.
|
|
7327
7339
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7328
7340
|
* @param {string} [subjectName] Comment subject name.
|
|
7329
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7330
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7331
|
-
* @param {boolean} [top] Comment top display.
|
|
7332
7341
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7342
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7333
7343
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7334
7344
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7335
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7336
7345
|
* @param {*} [options] Override http request option.
|
|
7337
7346
|
* @throws {RequiredError}
|
|
7338
7347
|
*/
|
|
7339
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7348
|
+
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>;
|
|
7340
7349
|
};
|
|
7341
7350
|
/**
|
|
7342
7351
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7382,6 +7391,24 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7382
7391
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7383
7392
|
*/
|
|
7384
7393
|
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;
|
|
7385
7412
|
/**
|
|
7386
7413
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7387
7414
|
* @type {boolean}
|
|
@@ -7425,29 +7452,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7425
7452
|
*/
|
|
7426
7453
|
readonly subjectName?: string;
|
|
7427
7454
|
/**
|
|
7428
|
-
*
|
|
7429
|
-
* @type {
|
|
7430
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7431
|
-
*/
|
|
7432
|
-
readonly keyword?: string;
|
|
7433
|
-
/**
|
|
7434
|
-
* The comment is hidden from the theme side.
|
|
7435
|
-
* @type {boolean}
|
|
7436
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7437
|
-
*/
|
|
7438
|
-
readonly hidden?: boolean;
|
|
7439
|
-
/**
|
|
7440
|
-
* Comment top display.
|
|
7441
|
-
* @type {boolean}
|
|
7455
|
+
* Size of one page. Zero indicates no limit.
|
|
7456
|
+
* @type {number}
|
|
7442
7457
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7443
7458
|
*/
|
|
7444
|
-
readonly
|
|
7459
|
+
readonly size?: number;
|
|
7445
7460
|
/**
|
|
7446
|
-
*
|
|
7461
|
+
* The page number. Zero indicates no page.
|
|
7447
7462
|
* @type {number}
|
|
7448
7463
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7449
7464
|
*/
|
|
7450
|
-
readonly
|
|
7465
|
+
readonly page?: number;
|
|
7451
7466
|
/**
|
|
7452
7467
|
* Label selector for filtering.
|
|
7453
7468
|
* @type {Array<string>}
|
|
@@ -7460,12 +7475,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7460
7475
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7461
7476
|
*/
|
|
7462
7477
|
readonly fieldSelector?: Array<string>;
|
|
7463
|
-
/**
|
|
7464
|
-
* The page number. Zero indicates no page.
|
|
7465
|
-
* @type {number}
|
|
7466
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7467
|
-
*/
|
|
7468
|
-
readonly page?: number;
|
|
7469
7478
|
}
|
|
7470
7479
|
/**
|
|
7471
7480
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7729,16 +7738,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7729
7738
|
/**
|
|
7730
7739
|
* List plugins using query criteria and sort params
|
|
7731
7740
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7732
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7733
7741
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7742
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7734
7743
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7744
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7735
7745
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7736
7746
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7737
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7738
7747
|
* @param {*} [options] Override http request option.
|
|
7739
7748
|
* @throws {RequiredError}
|
|
7740
7749
|
*/
|
|
7741
|
-
listPlugins: (sort?: Array<string>, keyword?: string,
|
|
7750
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7742
7751
|
/**
|
|
7743
7752
|
* Upgrade a plugin by uploading a Jar file
|
|
7744
7753
|
* @param {string} name
|
|
@@ -7763,16 +7772,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7763
7772
|
/**
|
|
7764
7773
|
* List plugins using query criteria and sort params
|
|
7765
7774
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7766
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7767
7775
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7776
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7768
7777
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7778
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7769
7779
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7770
7780
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7771
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7772
7781
|
* @param {*} [options] Override http request option.
|
|
7773
7782
|
* @throws {RequiredError}
|
|
7774
7783
|
*/
|
|
7775
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
7784
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7776
7785
|
/**
|
|
7777
7786
|
* Upgrade a plugin by uploading a Jar file
|
|
7778
7787
|
* @param {string} name
|
|
@@ -7797,16 +7806,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7797
7806
|
/**
|
|
7798
7807
|
* List plugins using query criteria and sort params
|
|
7799
7808
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7800
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7801
7809
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7810
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7802
7811
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7812
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7803
7813
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7804
7814
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7805
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7806
7815
|
* @param {*} [options] Override http request option.
|
|
7807
7816
|
* @throws {RequiredError}
|
|
7808
7817
|
*/
|
|
7809
|
-
listPlugins(sort?: Array<string>, keyword?: string,
|
|
7818
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7810
7819
|
/**
|
|
7811
7820
|
* Upgrade a plugin by uploading a Jar file
|
|
7812
7821
|
* @param {string} name
|
|
@@ -7841,6 +7850,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7841
7850
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7842
7851
|
*/
|
|
7843
7852
|
readonly sort?: Array<string>;
|
|
7853
|
+
/**
|
|
7854
|
+
* Whether the plugin is enabled
|
|
7855
|
+
* @type {boolean}
|
|
7856
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7857
|
+
*/
|
|
7858
|
+
readonly enabled?: boolean;
|
|
7844
7859
|
/**
|
|
7845
7860
|
* Keyword of plugin name or description
|
|
7846
7861
|
* @type {string}
|
|
@@ -7848,17 +7863,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7848
7863
|
*/
|
|
7849
7864
|
readonly keyword?: string;
|
|
7850
7865
|
/**
|
|
7851
|
-
*
|
|
7852
|
-
* @type {
|
|
7866
|
+
* Size of one page. Zero indicates no limit.
|
|
7867
|
+
* @type {number}
|
|
7853
7868
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7854
7869
|
*/
|
|
7855
|
-
readonly
|
|
7870
|
+
readonly size?: number;
|
|
7856
7871
|
/**
|
|
7857
|
-
*
|
|
7872
|
+
* The page number. Zero indicates no page.
|
|
7858
7873
|
* @type {number}
|
|
7859
7874
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7860
7875
|
*/
|
|
7861
|
-
readonly
|
|
7876
|
+
readonly page?: number;
|
|
7862
7877
|
/**
|
|
7863
7878
|
* Label selector for filtering.
|
|
7864
7879
|
* @type {Array<string>}
|
|
@@ -7871,12 +7886,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7871
7886
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7872
7887
|
*/
|
|
7873
7888
|
readonly fieldSelector?: Array<string>;
|
|
7874
|
-
/**
|
|
7875
|
-
* The page number. Zero indicates no page.
|
|
7876
|
-
* @type {number}
|
|
7877
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7878
|
-
*/
|
|
7879
|
-
readonly page?: number;
|
|
7880
7889
|
}
|
|
7881
7890
|
/**
|
|
7882
7891
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7945,21 +7954,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7945
7954
|
/**
|
|
7946
7955
|
* List posts.
|
|
7947
7956
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7948
|
-
* @param {
|
|
7949
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7950
|
-
* @param {Array<string>} [category]
|
|
7951
|
-
* @param {Array<string>} [contributor]
|
|
7957
|
+
* @param {Array<string>} [tag]
|
|
7952
7958
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7953
7959
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7954
|
-
* @param {Array<string>} [
|
|
7960
|
+
* @param {Array<string>} [contributor]
|
|
7961
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7962
|
+
* @param {Array<string>} [category]
|
|
7963
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7955
7964
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7965
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7956
7966
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7957
7967
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7958
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7959
7968
|
* @param {*} [options] Override http request option.
|
|
7960
7969
|
* @throws {RequiredError}
|
|
7961
7970
|
*/
|
|
7962
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7971
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7963
7972
|
/**
|
|
7964
7973
|
* Publish a post.
|
|
7965
7974
|
* @param {string} name
|
|
@@ -8006,21 +8015,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8006
8015
|
/**
|
|
8007
8016
|
* List posts.
|
|
8008
8017
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8009
|
-
* @param {
|
|
8010
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8011
|
-
* @param {Array<string>} [category]
|
|
8012
|
-
* @param {Array<string>} [contributor]
|
|
8018
|
+
* @param {Array<string>} [tag]
|
|
8013
8019
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8014
8020
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8015
|
-
* @param {Array<string>} [
|
|
8021
|
+
* @param {Array<string>} [contributor]
|
|
8022
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8023
|
+
* @param {Array<string>} [category]
|
|
8024
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8016
8025
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8026
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8017
8027
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8018
8028
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8019
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8020
8029
|
* @param {*} [options] Override http request option.
|
|
8021
8030
|
* @throws {RequiredError}
|
|
8022
8031
|
*/
|
|
8023
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8032
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8024
8033
|
/**
|
|
8025
8034
|
* Publish a post.
|
|
8026
8035
|
* @param {string} name
|
|
@@ -8067,21 +8076,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8067
8076
|
/**
|
|
8068
8077
|
* List posts.
|
|
8069
8078
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8070
|
-
* @param {
|
|
8071
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8072
|
-
* @param {Array<string>} [category]
|
|
8073
|
-
* @param {Array<string>} [contributor]
|
|
8079
|
+
* @param {Array<string>} [tag]
|
|
8074
8080
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
8075
8081
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8076
|
-
* @param {Array<string>} [
|
|
8082
|
+
* @param {Array<string>} [contributor]
|
|
8083
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8084
|
+
* @param {Array<string>} [category]
|
|
8085
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8077
8086
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8087
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8078
8088
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8079
8089
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8080
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8081
8090
|
* @param {*} [options] Override http request option.
|
|
8082
8091
|
* @throws {RequiredError}
|
|
8083
8092
|
*/
|
|
8084
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8093
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
8085
8094
|
/**
|
|
8086
8095
|
* Publish a post.
|
|
8087
8096
|
* @param {string} name
|
|
@@ -8139,23 +8148,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8139
8148
|
*/
|
|
8140
8149
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8141
8150
|
/**
|
|
8142
|
-
*
|
|
8143
|
-
* @type {
|
|
8151
|
+
*
|
|
8152
|
+
* @type {Array<string>}
|
|
8144
8153
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8145
8154
|
*/
|
|
8146
|
-
readonly
|
|
8155
|
+
readonly tag?: Array<string>;
|
|
8147
8156
|
/**
|
|
8148
|
-
*
|
|
8149
|
-
* @type {
|
|
8157
|
+
* Posts filtered by keyword.
|
|
8158
|
+
* @type {string}
|
|
8150
8159
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8151
8160
|
*/
|
|
8152
|
-
readonly
|
|
8161
|
+
readonly keyword?: string;
|
|
8153
8162
|
/**
|
|
8154
8163
|
*
|
|
8155
|
-
* @type {
|
|
8164
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8156
8165
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8157
8166
|
*/
|
|
8158
|
-
readonly
|
|
8167
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8159
8168
|
/**
|
|
8160
8169
|
*
|
|
8161
8170
|
* @type {Array<string>}
|
|
@@ -8163,29 +8172,35 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8163
8172
|
*/
|
|
8164
8173
|
readonly contributor?: Array<string>;
|
|
8165
8174
|
/**
|
|
8166
|
-
*
|
|
8167
|
-
* @type {
|
|
8175
|
+
*
|
|
8176
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8168
8177
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8169
8178
|
*/
|
|
8170
|
-
readonly
|
|
8179
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8171
8180
|
/**
|
|
8172
8181
|
*
|
|
8173
|
-
* @type {
|
|
8182
|
+
* @type {Array<string>}
|
|
8174
8183
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8175
8184
|
*/
|
|
8176
|
-
readonly
|
|
8185
|
+
readonly category?: Array<string>;
|
|
8177
8186
|
/**
|
|
8178
|
-
*
|
|
8179
|
-
* @type {
|
|
8187
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8188
|
+
* @type {boolean}
|
|
8180
8189
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8181
8190
|
*/
|
|
8182
|
-
readonly
|
|
8191
|
+
readonly sortOrder?: boolean;
|
|
8183
8192
|
/**
|
|
8184
8193
|
* Size of one page. Zero indicates no limit.
|
|
8185
8194
|
* @type {number}
|
|
8186
8195
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8187
8196
|
*/
|
|
8188
8197
|
readonly size?: number;
|
|
8198
|
+
/**
|
|
8199
|
+
* The page number. Zero indicates no page.
|
|
8200
|
+
* @type {number}
|
|
8201
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8202
|
+
*/
|
|
8203
|
+
readonly page?: number;
|
|
8189
8204
|
/**
|
|
8190
8205
|
* Label selector for filtering.
|
|
8191
8206
|
* @type {Array<string>}
|
|
@@ -8198,12 +8213,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8198
8213
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8199
8214
|
*/
|
|
8200
8215
|
readonly fieldSelector?: Array<string>;
|
|
8201
|
-
/**
|
|
8202
|
-
* The page number. Zero indicates no page.
|
|
8203
|
-
* @type {number}
|
|
8204
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8205
|
-
*/
|
|
8206
|
-
readonly page?: number;
|
|
8207
8216
|
}
|
|
8208
8217
|
/**
|
|
8209
8218
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8335,13 +8344,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8335
8344
|
* List replies.
|
|
8336
8345
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8337
8346
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8347
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8338
8348
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8339
8349
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8340
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8341
8350
|
* @param {*} [options] Override http request option.
|
|
8342
8351
|
* @throws {RequiredError}
|
|
8343
8352
|
*/
|
|
8344
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8353
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8345
8354
|
};
|
|
8346
8355
|
/**
|
|
8347
8356
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8352,13 +8361,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8352
8361
|
* List replies.
|
|
8353
8362
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8354
8363
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8364
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8355
8365
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8356
8366
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8357
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8358
8367
|
* @param {*} [options] Override http request option.
|
|
8359
8368
|
* @throws {RequiredError}
|
|
8360
8369
|
*/
|
|
8361
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8370
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8362
8371
|
};
|
|
8363
8372
|
/**
|
|
8364
8373
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8369,13 +8378,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8369
8378
|
* List replies.
|
|
8370
8379
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8371
8380
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8381
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8372
8382
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8373
8383
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8374
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8375
8384
|
* @param {*} [options] Override http request option.
|
|
8376
8385
|
* @throws {RequiredError}
|
|
8377
8386
|
*/
|
|
8378
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8387
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
8379
8388
|
};
|
|
8380
8389
|
/**
|
|
8381
8390
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8395,6 +8404,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8395
8404
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8396
8405
|
*/
|
|
8397
8406
|
readonly size?: number;
|
|
8407
|
+
/**
|
|
8408
|
+
* The page number. Zero indicates no page.
|
|
8409
|
+
* @type {number}
|
|
8410
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8411
|
+
*/
|
|
8412
|
+
readonly page?: number;
|
|
8398
8413
|
/**
|
|
8399
8414
|
* Label selector for filtering.
|
|
8400
8415
|
* @type {Array<string>}
|
|
@@ -8407,12 +8422,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8407
8422
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8408
8423
|
*/
|
|
8409
8424
|
readonly fieldSelector?: Array<string>;
|
|
8410
|
-
/**
|
|
8411
|
-
* The page number. Zero indicates no page.
|
|
8412
|
-
* @type {number}
|
|
8413
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8414
|
-
*/
|
|
8415
|
-
readonly page?: number;
|
|
8416
8425
|
}
|
|
8417
8426
|
/**
|
|
8418
8427
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8446,19 +8455,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8446
8455
|
/**
|
|
8447
8456
|
* List single pages.
|
|
8448
8457
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8449
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8450
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8451
|
-
* @param {Array<string>} [contributor]
|
|
8452
8458
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8453
8459
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8460
|
+
* @param {Array<string>} [contributor]
|
|
8461
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8462
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8454
8463
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8464
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8455
8465
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8456
8466
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8457
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8458
8467
|
* @param {*} [options] Override http request option.
|
|
8459
8468
|
* @throws {RequiredError}
|
|
8460
8469
|
*/
|
|
8461
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8470
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8462
8471
|
/**
|
|
8463
8472
|
* Publish a single page.
|
|
8464
8473
|
* @param {string} name
|
|
@@ -8490,19 +8499,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8490
8499
|
/**
|
|
8491
8500
|
* List single pages.
|
|
8492
8501
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8493
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8494
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8495
|
-
* @param {Array<string>} [contributor]
|
|
8496
8502
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8497
8503
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8504
|
+
* @param {Array<string>} [contributor]
|
|
8505
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8506
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8498
8507
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8508
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8499
8509
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8500
8510
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8501
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8502
8511
|
* @param {*} [options] Override http request option.
|
|
8503
8512
|
* @throws {RequiredError}
|
|
8504
8513
|
*/
|
|
8505
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8514
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8506
8515
|
/**
|
|
8507
8516
|
* Publish a single page.
|
|
8508
8517
|
* @param {string} name
|
|
@@ -8534,19 +8543,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8534
8543
|
/**
|
|
8535
8544
|
* List single pages.
|
|
8536
8545
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8537
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8538
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8539
|
-
* @param {Array<string>} [contributor]
|
|
8540
8546
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8541
8547
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8548
|
+
* @param {Array<string>} [contributor]
|
|
8549
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8550
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8542
8551
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8552
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8543
8553
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8544
8554
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8545
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8546
8555
|
* @param {*} [options] Override http request option.
|
|
8547
8556
|
* @throws {RequiredError}
|
|
8548
8557
|
*/
|
|
8549
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8558
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8550
8559
|
/**
|
|
8551
8560
|
* Publish a single page.
|
|
8552
8561
|
* @param {string} name
|
|
@@ -8589,17 +8598,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8589
8598
|
*/
|
|
8590
8599
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8591
8600
|
/**
|
|
8592
|
-
*
|
|
8593
|
-
* @type {
|
|
8601
|
+
* SinglePages filtered by keyword.
|
|
8602
|
+
* @type {string}
|
|
8594
8603
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8595
8604
|
*/
|
|
8596
|
-
readonly
|
|
8605
|
+
readonly keyword?: string;
|
|
8597
8606
|
/**
|
|
8598
8607
|
*
|
|
8599
|
-
* @type {'
|
|
8608
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8600
8609
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8601
8610
|
*/
|
|
8602
|
-
readonly
|
|
8611
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8603
8612
|
/**
|
|
8604
8613
|
*
|
|
8605
8614
|
* @type {Array<string>}
|
|
@@ -8607,23 +8616,29 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8607
8616
|
*/
|
|
8608
8617
|
readonly contributor?: Array<string>;
|
|
8609
8618
|
/**
|
|
8610
|
-
*
|
|
8611
|
-
* @type {
|
|
8619
|
+
*
|
|
8620
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8612
8621
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8613
8622
|
*/
|
|
8614
|
-
readonly
|
|
8623
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8615
8624
|
/**
|
|
8616
|
-
*
|
|
8617
|
-
* @type {
|
|
8625
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8626
|
+
* @type {boolean}
|
|
8618
8627
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8619
8628
|
*/
|
|
8620
|
-
readonly
|
|
8629
|
+
readonly sortOrder?: boolean;
|
|
8621
8630
|
/**
|
|
8622
8631
|
* Size of one page. Zero indicates no limit.
|
|
8623
8632
|
* @type {number}
|
|
8624
8633
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8625
8634
|
*/
|
|
8626
8635
|
readonly size?: number;
|
|
8636
|
+
/**
|
|
8637
|
+
* The page number. Zero indicates no page.
|
|
8638
|
+
* @type {number}
|
|
8639
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8640
|
+
*/
|
|
8641
|
+
readonly page?: number;
|
|
8627
8642
|
/**
|
|
8628
8643
|
* Label selector for filtering.
|
|
8629
8644
|
* @type {Array<string>}
|
|
@@ -8636,12 +8651,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8636
8651
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8637
8652
|
*/
|
|
8638
8653
|
readonly fieldSelector?: Array<string>;
|
|
8639
|
-
/**
|
|
8640
|
-
* The page number. Zero indicates no page.
|
|
8641
|
-
* @type {number}
|
|
8642
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8643
|
-
*/
|
|
8644
|
-
readonly page?: number;
|
|
8645
8654
|
}
|
|
8646
8655
|
/**
|
|
8647
8656
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8784,13 +8793,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8784
8793
|
* List themes.
|
|
8785
8794
|
* @param {boolean} uninstalled
|
|
8786
8795
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8796
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8787
8797
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8788
8798
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8789
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8790
8799
|
* @param {*} [options] Override http request option.
|
|
8791
8800
|
* @throws {RequiredError}
|
|
8792
8801
|
*/
|
|
8793
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8802
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8794
8803
|
/**
|
|
8795
8804
|
* Reload theme setting.
|
|
8796
8805
|
* @param {string} name
|
|
@@ -8823,13 +8832,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8823
8832
|
* List themes.
|
|
8824
8833
|
* @param {boolean} uninstalled
|
|
8825
8834
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8835
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8826
8836
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8827
8837
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8828
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8829
8838
|
* @param {*} [options] Override http request option.
|
|
8830
8839
|
* @throws {RequiredError}
|
|
8831
8840
|
*/
|
|
8832
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8841
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
8833
8842
|
/**
|
|
8834
8843
|
* Reload theme setting.
|
|
8835
8844
|
* @param {string} name
|
|
@@ -8862,13 +8871,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8862
8871
|
* List themes.
|
|
8863
8872
|
* @param {boolean} uninstalled
|
|
8864
8873
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8874
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8865
8875
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8866
8876
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8867
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8868
8877
|
* @param {*} [options] Override http request option.
|
|
8869
8878
|
* @throws {RequiredError}
|
|
8870
8879
|
*/
|
|
8871
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8880
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
8872
8881
|
/**
|
|
8873
8882
|
* Reload theme setting.
|
|
8874
8883
|
* @param {string} name
|
|
@@ -8916,6 +8925,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8916
8925
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8917
8926
|
*/
|
|
8918
8927
|
readonly size?: number;
|
|
8928
|
+
/**
|
|
8929
|
+
* The page number. Zero indicates no page.
|
|
8930
|
+
* @type {number}
|
|
8931
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8932
|
+
*/
|
|
8933
|
+
readonly page?: number;
|
|
8919
8934
|
/**
|
|
8920
8935
|
* Label selector for filtering.
|
|
8921
8936
|
* @type {Array<string>}
|
|
@@ -8928,12 +8943,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8928
8943
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8929
8944
|
*/
|
|
8930
8945
|
readonly fieldSelector?: Array<string>;
|
|
8931
|
-
/**
|
|
8932
|
-
* The page number. Zero indicates no page.
|
|
8933
|
-
* @type {number}
|
|
8934
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8935
|
-
*/
|
|
8936
|
-
readonly page?: number;
|
|
8937
8946
|
}
|
|
8938
8947
|
/**
|
|
8939
8948
|
* Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9521,13 +9530,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9521
9530
|
/**
|
|
9522
9531
|
* Search posts with fuzzy query
|
|
9523
9532
|
* @param {string} keyword
|
|
9533
|
+
* @param {number} [limit]
|
|
9524
9534
|
* @param {string} [highlightPreTag]
|
|
9525
9535
|
* @param {string} [highlightPostTag]
|
|
9526
|
-
* @param {number} [limit]
|
|
9527
9536
|
* @param {*} [options] Override http request option.
|
|
9528
9537
|
* @throws {RequiredError}
|
|
9529
9538
|
*/
|
|
9530
|
-
searchPost: (keyword: string,
|
|
9539
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9531
9540
|
};
|
|
9532
9541
|
/**
|
|
9533
9542
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9537,13 +9546,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9537
9546
|
/**
|
|
9538
9547
|
* Search posts with fuzzy query
|
|
9539
9548
|
* @param {string} keyword
|
|
9549
|
+
* @param {number} [limit]
|
|
9540
9550
|
* @param {string} [highlightPreTag]
|
|
9541
9551
|
* @param {string} [highlightPostTag]
|
|
9542
|
-
* @param {number} [limit]
|
|
9543
9552
|
* @param {*} [options] Override http request option.
|
|
9544
9553
|
* @throws {RequiredError}
|
|
9545
9554
|
*/
|
|
9546
|
-
searchPost(keyword: string,
|
|
9555
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9547
9556
|
};
|
|
9548
9557
|
/**
|
|
9549
9558
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9553,13 +9562,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9553
9562
|
/**
|
|
9554
9563
|
* Search posts with fuzzy query
|
|
9555
9564
|
* @param {string} keyword
|
|
9565
|
+
* @param {number} [limit]
|
|
9556
9566
|
* @param {string} [highlightPreTag]
|
|
9557
9567
|
* @param {string} [highlightPostTag]
|
|
9558
|
-
* @param {number} [limit]
|
|
9559
9568
|
* @param {*} [options] Override http request option.
|
|
9560
9569
|
* @throws {RequiredError}
|
|
9561
9570
|
*/
|
|
9562
|
-
searchPost(keyword: string,
|
|
9571
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
|
|
9563
9572
|
};
|
|
9564
9573
|
/**
|
|
9565
9574
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9575,22 +9584,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9575
9584
|
readonly keyword: string;
|
|
9576
9585
|
/**
|
|
9577
9586
|
*
|
|
9578
|
-
* @type {
|
|
9587
|
+
* @type {number}
|
|
9579
9588
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9580
9589
|
*/
|
|
9581
|
-
readonly
|
|
9590
|
+
readonly limit?: number;
|
|
9582
9591
|
/**
|
|
9583
9592
|
*
|
|
9584
9593
|
* @type {string}
|
|
9585
9594
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9586
9595
|
*/
|
|
9587
|
-
readonly
|
|
9596
|
+
readonly highlightPreTag?: string;
|
|
9588
9597
|
/**
|
|
9589
9598
|
*
|
|
9590
|
-
* @type {
|
|
9599
|
+
* @type {string}
|
|
9591
9600
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9592
9601
|
*/
|
|
9593
|
-
readonly
|
|
9602
|
+
readonly highlightPostTag?: string;
|
|
9594
9603
|
}
|
|
9595
9604
|
/**
|
|
9596
9605
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|