@halo-dev/api-client 0.0.60 → 0.0.62
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 +175 -113
- package/dist/index.d.ts +289 -199
- package/dist/index.mjs +175 -113
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2022,22 +2022,22 @@ interface Excerpt {
|
|
|
2022
2022
|
interface Extension {
|
|
2023
2023
|
/**
|
|
2024
2024
|
*
|
|
2025
|
-
* @type {
|
|
2025
|
+
* @type {Metadata}
|
|
2026
2026
|
* @memberof Extension
|
|
2027
2027
|
*/
|
|
2028
|
-
|
|
2028
|
+
metadata: Metadata;
|
|
2029
2029
|
/**
|
|
2030
2030
|
*
|
|
2031
|
-
* @type {
|
|
2031
|
+
* @type {string}
|
|
2032
2032
|
* @memberof Extension
|
|
2033
2033
|
*/
|
|
2034
|
-
|
|
2034
|
+
apiVersion: string;
|
|
2035
2035
|
/**
|
|
2036
2036
|
*
|
|
2037
2037
|
* @type {string}
|
|
2038
2038
|
* @memberof Extension
|
|
2039
2039
|
*/
|
|
2040
|
-
|
|
2040
|
+
kind: string;
|
|
2041
2041
|
}
|
|
2042
2042
|
|
|
2043
2043
|
/**
|
|
@@ -6811,6 +6811,12 @@ interface UserStatus {
|
|
|
6811
6811
|
* @memberof UserStatus
|
|
6812
6812
|
*/
|
|
6813
6813
|
lastLoginAt?: string;
|
|
6814
|
+
/**
|
|
6815
|
+
*
|
|
6816
|
+
* @type {string}
|
|
6817
|
+
* @memberof UserStatus
|
|
6818
|
+
*/
|
|
6819
|
+
permalink?: string;
|
|
6814
6820
|
/**
|
|
6815
6821
|
*
|
|
6816
6822
|
* @type {Array<LoginHistory>}
|
|
@@ -7022,17 +7028,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7022
7028
|
* @param {string} [policy] Name of policy
|
|
7023
7029
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7024
7030
|
* @param {string} [displayName] Display name of attachment
|
|
7025
|
-
* @param {string} [group] Name of group
|
|
7026
7031
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7027
7032
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7033
|
+
* @param {string} [group] Name of group
|
|
7028
7034
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7029
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7030
7035
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7031
7036
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7037
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7032
7038
|
* @param {*} [options] Override http request option.
|
|
7033
7039
|
* @throws {RequiredError}
|
|
7034
7040
|
*/
|
|
7035
|
-
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string,
|
|
7041
|
+
searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7036
7042
|
/**
|
|
7037
7043
|
*
|
|
7038
7044
|
* @param {any} file
|
|
@@ -7053,17 +7059,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7053
7059
|
* @param {string} [policy] Name of policy
|
|
7054
7060
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7055
7061
|
* @param {string} [displayName] Display name of attachment
|
|
7056
|
-
* @param {string} [group] Name of group
|
|
7057
7062
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7058
7063
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7064
|
+
* @param {string} [group] Name of group
|
|
7059
7065
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7060
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7061
7066
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7062
7067
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7068
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7063
7069
|
* @param {*} [options] Override http request option.
|
|
7064
7070
|
* @throws {RequiredError}
|
|
7065
7071
|
*/
|
|
7066
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string,
|
|
7072
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7067
7073
|
/**
|
|
7068
7074
|
*
|
|
7069
7075
|
* @param {any} file
|
|
@@ -7084,17 +7090,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7084
7090
|
* @param {string} [policy] Name of policy
|
|
7085
7091
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7086
7092
|
* @param {string} [displayName] Display name of attachment
|
|
7087
|
-
* @param {string} [group] Name of group
|
|
7088
7093
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7089
7094
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7095
|
+
* @param {string} [group] Name of group
|
|
7090
7096
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7091
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7092
7097
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7093
7098
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7099
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7094
7100
|
* @param {*} [options] Override http request option.
|
|
7095
7101
|
* @throws {RequiredError}
|
|
7096
7102
|
*/
|
|
7097
|
-
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string,
|
|
7103
|
+
searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
7098
7104
|
/**
|
|
7099
7105
|
*
|
|
7100
7106
|
* @param {any} file
|
|
@@ -7129,12 +7135,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7129
7135
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7130
7136
|
*/
|
|
7131
7137
|
readonly displayName?: string;
|
|
7132
|
-
/**
|
|
7133
|
-
* Name of group
|
|
7134
|
-
* @type {string}
|
|
7135
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7136
|
-
*/
|
|
7137
|
-
readonly group?: string;
|
|
7138
7138
|
/**
|
|
7139
7139
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7140
7140
|
* @type {boolean}
|
|
@@ -7148,17 +7148,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7148
7148
|
*/
|
|
7149
7149
|
readonly uploadedBy?: string;
|
|
7150
7150
|
/**
|
|
7151
|
-
*
|
|
7152
|
-
* @type {
|
|
7151
|
+
* Name of group
|
|
7152
|
+
* @type {string}
|
|
7153
7153
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7154
7154
|
*/
|
|
7155
|
-
readonly
|
|
7155
|
+
readonly group?: string;
|
|
7156
7156
|
/**
|
|
7157
|
-
*
|
|
7157
|
+
* Size of one page. Zero indicates no limit.
|
|
7158
7158
|
* @type {number}
|
|
7159
7159
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7160
7160
|
*/
|
|
7161
|
-
readonly
|
|
7161
|
+
readonly size?: number;
|
|
7162
7162
|
/**
|
|
7163
7163
|
* Label selector for filtering.
|
|
7164
7164
|
* @type {Array<string>}
|
|
@@ -7171,6 +7171,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7171
7171
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7172
7172
|
*/
|
|
7173
7173
|
readonly fieldSelector?: Array<string>;
|
|
7174
|
+
/**
|
|
7175
|
+
* The page number. Zero indicates no page.
|
|
7176
|
+
* @type {number}
|
|
7177
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7178
|
+
*/
|
|
7179
|
+
readonly page?: number;
|
|
7174
7180
|
}
|
|
7175
7181
|
/**
|
|
7176
7182
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7245,9 +7251,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7245
7251
|
/**
|
|
7246
7252
|
* List comments.
|
|
7247
7253
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7248
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7249
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7250
|
-
* @param {boolean} [top] Comment top display.
|
|
7251
7254
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7252
7255
|
* @param {boolean} [approved] Comments approved.
|
|
7253
7256
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7255,14 +7258,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7255
7258
|
* @param {string} [ownerName] Commenter name.
|
|
7256
7259
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7257
7260
|
* @param {string} [subjectName] Comment subject name.
|
|
7261
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7262
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7263
|
+
* @param {boolean} [top] Comment top display.
|
|
7258
7264
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7259
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7260
7265
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7261
7266
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7267
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7262
7268
|
* @param {*} [options] Override http request option.
|
|
7263
7269
|
* @throws {RequiredError}
|
|
7264
7270
|
*/
|
|
7265
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7271
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7266
7272
|
};
|
|
7267
7273
|
/**
|
|
7268
7274
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7287,9 +7293,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7287
7293
|
/**
|
|
7288
7294
|
* List comments.
|
|
7289
7295
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7290
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7291
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7292
|
-
* @param {boolean} [top] Comment top display.
|
|
7293
7296
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7294
7297
|
* @param {boolean} [approved] Comments approved.
|
|
7295
7298
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7297,14 +7300,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7297
7300
|
* @param {string} [ownerName] Commenter name.
|
|
7298
7301
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7299
7302
|
* @param {string} [subjectName] Comment subject name.
|
|
7303
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7304
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7305
|
+
* @param {boolean} [top] Comment top display.
|
|
7300
7306
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7301
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7302
7307
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7303
7308
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7309
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7304
7310
|
* @param {*} [options] Override http request option.
|
|
7305
7311
|
* @throws {RequiredError}
|
|
7306
7312
|
*/
|
|
7307
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7313
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7308
7314
|
};
|
|
7309
7315
|
/**
|
|
7310
7316
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7329,9 +7335,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7329
7335
|
/**
|
|
7330
7336
|
* List comments.
|
|
7331
7337
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7332
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7333
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7334
|
-
* @param {boolean} [top] Comment top display.
|
|
7335
7338
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7336
7339
|
* @param {boolean} [approved] Comments approved.
|
|
7337
7340
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7339,14 +7342,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7339
7342
|
* @param {string} [ownerName] Commenter name.
|
|
7340
7343
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7341
7344
|
* @param {string} [subjectName] Comment subject name.
|
|
7345
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7346
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7347
|
+
* @param {boolean} [top] Comment top display.
|
|
7342
7348
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7343
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7344
7349
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7345
7350
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7351
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7346
7352
|
* @param {*} [options] Override http request option.
|
|
7347
7353
|
* @throws {RequiredError}
|
|
7348
7354
|
*/
|
|
7349
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
7355
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
|
|
7350
7356
|
};
|
|
7351
7357
|
/**
|
|
7352
7358
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7392,24 +7398,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7392
7398
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7393
7399
|
*/
|
|
7394
7400
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7395
|
-
/**
|
|
7396
|
-
* Comments filtered by keyword.
|
|
7397
|
-
* @type {string}
|
|
7398
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7399
|
-
*/
|
|
7400
|
-
readonly keyword?: string;
|
|
7401
|
-
/**
|
|
7402
|
-
* The comment is hidden from the theme side.
|
|
7403
|
-
* @type {boolean}
|
|
7404
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7405
|
-
*/
|
|
7406
|
-
readonly hidden?: boolean;
|
|
7407
|
-
/**
|
|
7408
|
-
* Comment top display.
|
|
7409
|
-
* @type {boolean}
|
|
7410
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7411
|
-
*/
|
|
7412
|
-
readonly top?: boolean;
|
|
7413
7401
|
/**
|
|
7414
7402
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7415
7403
|
* @type {boolean}
|
|
@@ -7453,17 +7441,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7453
7441
|
*/
|
|
7454
7442
|
readonly subjectName?: string;
|
|
7455
7443
|
/**
|
|
7456
|
-
*
|
|
7457
|
-
* @type {
|
|
7444
|
+
* Comments filtered by keyword.
|
|
7445
|
+
* @type {string}
|
|
7458
7446
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7459
7447
|
*/
|
|
7460
|
-
readonly
|
|
7448
|
+
readonly keyword?: string;
|
|
7461
7449
|
/**
|
|
7462
|
-
* The
|
|
7450
|
+
* The comment is hidden from the theme side.
|
|
7451
|
+
* @type {boolean}
|
|
7452
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7453
|
+
*/
|
|
7454
|
+
readonly hidden?: boolean;
|
|
7455
|
+
/**
|
|
7456
|
+
* Comment top display.
|
|
7457
|
+
* @type {boolean}
|
|
7458
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7459
|
+
*/
|
|
7460
|
+
readonly top?: boolean;
|
|
7461
|
+
/**
|
|
7462
|
+
* Size of one page. Zero indicates no limit.
|
|
7463
7463
|
* @type {number}
|
|
7464
7464
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7465
7465
|
*/
|
|
7466
|
-
readonly
|
|
7466
|
+
readonly size?: number;
|
|
7467
7467
|
/**
|
|
7468
7468
|
* Label selector for filtering.
|
|
7469
7469
|
* @type {Array<string>}
|
|
@@ -7476,6 +7476,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7476
7476
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7477
7477
|
*/
|
|
7478
7478
|
readonly fieldSelector?: Array<string>;
|
|
7479
|
+
/**
|
|
7480
|
+
* The page number. Zero indicates no page.
|
|
7481
|
+
* @type {number}
|
|
7482
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7483
|
+
*/
|
|
7484
|
+
readonly page?: number;
|
|
7479
7485
|
}
|
|
7480
7486
|
/**
|
|
7481
7487
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7739,16 +7745,23 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7739
7745
|
/**
|
|
7740
7746
|
* List plugins using query criteria and sort params
|
|
7741
7747
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7742
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7743
7748
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7749
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7744
7750
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7745
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7746
7751
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7747
7752
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7753
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7748
7754
|
* @param {*} [options] Override http request option.
|
|
7749
7755
|
* @throws {RequiredError}
|
|
7750
7756
|
*/
|
|
7751
|
-
listPlugins: (sort?: Array<string>,
|
|
7757
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7758
|
+
/**
|
|
7759
|
+
* Reset the configMap of plugin setting.
|
|
7760
|
+
* @param {string} name
|
|
7761
|
+
* @param {*} [options] Override http request option.
|
|
7762
|
+
* @throws {RequiredError}
|
|
7763
|
+
*/
|
|
7764
|
+
resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7752
7765
|
/**
|
|
7753
7766
|
* Upgrade a plugin by uploading a Jar file
|
|
7754
7767
|
* @param {string} name
|
|
@@ -7773,16 +7786,23 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7773
7786
|
/**
|
|
7774
7787
|
* List plugins using query criteria and sort params
|
|
7775
7788
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7776
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7777
7789
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7790
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7778
7791
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7779
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7780
7792
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7781
7793
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7794
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7795
|
+
* @param {*} [options] Override http request option.
|
|
7796
|
+
* @throws {RequiredError}
|
|
7797
|
+
*/
|
|
7798
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7799
|
+
/**
|
|
7800
|
+
* Reset the configMap of plugin setting.
|
|
7801
|
+
* @param {string} name
|
|
7782
7802
|
* @param {*} [options] Override http request option.
|
|
7783
7803
|
* @throws {RequiredError}
|
|
7784
7804
|
*/
|
|
7785
|
-
|
|
7805
|
+
resetPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
7786
7806
|
/**
|
|
7787
7807
|
* Upgrade a plugin by uploading a Jar file
|
|
7788
7808
|
* @param {string} name
|
|
@@ -7807,16 +7827,23 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7807
7827
|
/**
|
|
7808
7828
|
* List plugins using query criteria and sort params
|
|
7809
7829
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7810
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7811
7830
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7831
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7812
7832
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7813
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7814
7833
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7815
7834
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7835
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7816
7836
|
* @param {*} [options] Override http request option.
|
|
7817
7837
|
* @throws {RequiredError}
|
|
7818
7838
|
*/
|
|
7819
|
-
listPlugins(sort?: Array<string>,
|
|
7839
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
7840
|
+
/**
|
|
7841
|
+
* Reset the configMap of plugin setting.
|
|
7842
|
+
* @param {string} name
|
|
7843
|
+
* @param {*} [options] Override http request option.
|
|
7844
|
+
* @throws {RequiredError}
|
|
7845
|
+
*/
|
|
7846
|
+
resetPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
7820
7847
|
/**
|
|
7821
7848
|
* Upgrade a plugin by uploading a Jar file
|
|
7822
7849
|
* @param {string} name
|
|
@@ -7851,12 +7878,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7851
7878
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7852
7879
|
*/
|
|
7853
7880
|
readonly sort?: Array<string>;
|
|
7854
|
-
/**
|
|
7855
|
-
* Keyword of plugin name or description
|
|
7856
|
-
* @type {string}
|
|
7857
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7858
|
-
*/
|
|
7859
|
-
readonly keyword?: string;
|
|
7860
7881
|
/**
|
|
7861
7882
|
* Whether the plugin is enabled
|
|
7862
7883
|
* @type {boolean}
|
|
@@ -7864,17 +7885,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7864
7885
|
*/
|
|
7865
7886
|
readonly enabled?: boolean;
|
|
7866
7887
|
/**
|
|
7867
|
-
*
|
|
7868
|
-
* @type {
|
|
7888
|
+
* Keyword of plugin name or description
|
|
7889
|
+
* @type {string}
|
|
7869
7890
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7870
7891
|
*/
|
|
7871
|
-
readonly
|
|
7892
|
+
readonly keyword?: string;
|
|
7872
7893
|
/**
|
|
7873
|
-
*
|
|
7894
|
+
* Size of one page. Zero indicates no limit.
|
|
7874
7895
|
* @type {number}
|
|
7875
7896
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7876
7897
|
*/
|
|
7877
|
-
readonly
|
|
7898
|
+
readonly size?: number;
|
|
7878
7899
|
/**
|
|
7879
7900
|
* Label selector for filtering.
|
|
7880
7901
|
* @type {Array<string>}
|
|
@@ -7887,6 +7908,25 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7887
7908
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7888
7909
|
*/
|
|
7889
7910
|
readonly fieldSelector?: Array<string>;
|
|
7911
|
+
/**
|
|
7912
|
+
* The page number. Zero indicates no page.
|
|
7913
|
+
* @type {number}
|
|
7914
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7915
|
+
*/
|
|
7916
|
+
readonly page?: number;
|
|
7917
|
+
}
|
|
7918
|
+
/**
|
|
7919
|
+
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
7920
|
+
* @export
|
|
7921
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest
|
|
7922
|
+
*/
|
|
7923
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest {
|
|
7924
|
+
/**
|
|
7925
|
+
*
|
|
7926
|
+
* @type {string}
|
|
7927
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfig
|
|
7928
|
+
*/
|
|
7929
|
+
readonly name: string;
|
|
7890
7930
|
}
|
|
7891
7931
|
/**
|
|
7892
7932
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7930,6 +7970,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
7930
7970
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7931
7971
|
*/
|
|
7932
7972
|
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
7973
|
+
/**
|
|
7974
|
+
* Reset the configMap of plugin setting.
|
|
7975
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest} requestParameters Request parameters.
|
|
7976
|
+
* @param {*} [options] Override http request option.
|
|
7977
|
+
* @throws {RequiredError}
|
|
7978
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7979
|
+
*/
|
|
7980
|
+
resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
7933
7981
|
/**
|
|
7934
7982
|
* Upgrade a plugin by uploading a Jar file
|
|
7935
7983
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
@@ -7955,21 +8003,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7955
8003
|
/**
|
|
7956
8004
|
* List posts.
|
|
7957
8005
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7958
|
-
* @param {string} [
|
|
7959
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7960
|
-
* @param {Array<string>} [tag]
|
|
7961
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8006
|
+
* @param {Array<string>} [contributor]
|
|
7962
8007
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7963
8008
|
* @param {Array<string>} [category]
|
|
7964
|
-
* @param {
|
|
8009
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8010
|
+
* @param {Array<string>} [tag]
|
|
8011
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8012
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7965
8013
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7966
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7967
8014
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7968
8015
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8016
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7969
8017
|
* @param {*} [options] Override http request option.
|
|
7970
8018
|
* @throws {RequiredError}
|
|
7971
8019
|
*/
|
|
7972
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8020
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7973
8021
|
/**
|
|
7974
8022
|
* Publish a post.
|
|
7975
8023
|
* @param {string} name
|
|
@@ -8024,21 +8072,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8024
8072
|
/**
|
|
8025
8073
|
* List posts.
|
|
8026
8074
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8027
|
-
* @param {string} [
|
|
8028
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8029
|
-
* @param {Array<string>} [tag]
|
|
8030
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8075
|
+
* @param {Array<string>} [contributor]
|
|
8031
8076
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8032
8077
|
* @param {Array<string>} [category]
|
|
8033
|
-
* @param {
|
|
8078
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8079
|
+
* @param {Array<string>} [tag]
|
|
8080
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8081
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8034
8082
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8035
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8036
8083
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8037
8084
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8085
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8038
8086
|
* @param {*} [options] Override http request option.
|
|
8039
8087
|
* @throws {RequiredError}
|
|
8040
8088
|
*/
|
|
8041
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8089
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8042
8090
|
/**
|
|
8043
8091
|
* Publish a post.
|
|
8044
8092
|
* @param {string} name
|
|
@@ -8093,21 +8141,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8093
8141
|
/**
|
|
8094
8142
|
* List posts.
|
|
8095
8143
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8096
|
-
* @param {string} [
|
|
8097
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8098
|
-
* @param {Array<string>} [tag]
|
|
8099
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8144
|
+
* @param {Array<string>} [contributor]
|
|
8100
8145
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8101
8146
|
* @param {Array<string>} [category]
|
|
8102
|
-
* @param {
|
|
8147
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8148
|
+
* @param {Array<string>} [tag]
|
|
8149
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8150
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8103
8151
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8104
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8105
8152
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8106
8153
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8154
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8107
8155
|
* @param {*} [options] Override http request option.
|
|
8108
8156
|
* @throws {RequiredError}
|
|
8109
8157
|
*/
|
|
8110
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8158
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, sortOrder?: boolean, tag?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
8111
8159
|
/**
|
|
8112
8160
|
* Publish a post.
|
|
8113
8161
|
* @param {string} name
|
|
@@ -8173,23 +8221,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8173
8221
|
*/
|
|
8174
8222
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8175
8223
|
/**
|
|
8176
|
-
*
|
|
8177
|
-
* @type {string}
|
|
8224
|
+
*
|
|
8225
|
+
* @type {Array<string>}
|
|
8178
8226
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8179
8227
|
*/
|
|
8180
|
-
readonly
|
|
8228
|
+
readonly contributor?: Array<string>;
|
|
8181
8229
|
/**
|
|
8182
8230
|
*
|
|
8183
|
-
* @type {'
|
|
8231
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8184
8232
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8185
8233
|
*/
|
|
8186
|
-
readonly
|
|
8234
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8187
8235
|
/**
|
|
8188
8236
|
*
|
|
8189
8237
|
* @type {Array<string>}
|
|
8190
8238
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8191
8239
|
*/
|
|
8192
|
-
readonly
|
|
8240
|
+
readonly category?: Array<string>;
|
|
8193
8241
|
/**
|
|
8194
8242
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8195
8243
|
* @type {boolean}
|
|
@@ -8198,34 +8246,28 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8198
8246
|
readonly sortOrder?: boolean;
|
|
8199
8247
|
/**
|
|
8200
8248
|
*
|
|
8201
|
-
* @type {
|
|
8249
|
+
* @type {Array<string>}
|
|
8202
8250
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8203
8251
|
*/
|
|
8204
|
-
readonly
|
|
8252
|
+
readonly tag?: Array<string>;
|
|
8205
8253
|
/**
|
|
8206
|
-
*
|
|
8207
|
-
* @type {
|
|
8254
|
+
* Posts filtered by keyword.
|
|
8255
|
+
* @type {string}
|
|
8208
8256
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8209
8257
|
*/
|
|
8210
|
-
readonly
|
|
8258
|
+
readonly keyword?: string;
|
|
8211
8259
|
/**
|
|
8212
8260
|
*
|
|
8213
|
-
* @type {
|
|
8261
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8214
8262
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8215
8263
|
*/
|
|
8216
|
-
readonly
|
|
8264
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8217
8265
|
/**
|
|
8218
8266
|
* Size of one page. Zero indicates no limit.
|
|
8219
8267
|
* @type {number}
|
|
8220
8268
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8221
8269
|
*/
|
|
8222
8270
|
readonly size?: number;
|
|
8223
|
-
/**
|
|
8224
|
-
* The page number. Zero indicates no page.
|
|
8225
|
-
* @type {number}
|
|
8226
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8227
|
-
*/
|
|
8228
|
-
readonly page?: number;
|
|
8229
8271
|
/**
|
|
8230
8272
|
* Label selector for filtering.
|
|
8231
8273
|
* @type {Array<string>}
|
|
@@ -8238,6 +8280,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8238
8280
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8239
8281
|
*/
|
|
8240
8282
|
readonly fieldSelector?: Array<string>;
|
|
8283
|
+
/**
|
|
8284
|
+
* The page number. Zero indicates no page.
|
|
8285
|
+
* @type {number}
|
|
8286
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8287
|
+
*/
|
|
8288
|
+
readonly page?: number;
|
|
8241
8289
|
}
|
|
8242
8290
|
/**
|
|
8243
8291
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8396,13 +8444,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8396
8444
|
* List replies.
|
|
8397
8445
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8398
8446
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8399
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8400
8447
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8401
8448
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8449
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8402
8450
|
* @param {*} [options] Override http request option.
|
|
8403
8451
|
* @throws {RequiredError}
|
|
8404
8452
|
*/
|
|
8405
|
-
listReplies: (commentName?: string, size?: number,
|
|
8453
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8406
8454
|
};
|
|
8407
8455
|
/**
|
|
8408
8456
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8413,13 +8461,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8413
8461
|
* List replies.
|
|
8414
8462
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8415
8463
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8416
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8417
8464
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8418
8465
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8466
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8419
8467
|
* @param {*} [options] Override http request option.
|
|
8420
8468
|
* @throws {RequiredError}
|
|
8421
8469
|
*/
|
|
8422
|
-
listReplies(commentName?: string, size?: number,
|
|
8470
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8423
8471
|
};
|
|
8424
8472
|
/**
|
|
8425
8473
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8430,13 +8478,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8430
8478
|
* List replies.
|
|
8431
8479
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8432
8480
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8433
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8434
8481
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8435
8482
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8483
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8436
8484
|
* @param {*} [options] Override http request option.
|
|
8437
8485
|
* @throws {RequiredError}
|
|
8438
8486
|
*/
|
|
8439
|
-
listReplies(commentName?: string, size?: number,
|
|
8487
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
8440
8488
|
};
|
|
8441
8489
|
/**
|
|
8442
8490
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8456,12 +8504,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8456
8504
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8457
8505
|
*/
|
|
8458
8506
|
readonly size?: number;
|
|
8459
|
-
/**
|
|
8460
|
-
* The page number. Zero indicates no page.
|
|
8461
|
-
* @type {number}
|
|
8462
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8463
|
-
*/
|
|
8464
|
-
readonly page?: number;
|
|
8465
8507
|
/**
|
|
8466
8508
|
* Label selector for filtering.
|
|
8467
8509
|
* @type {Array<string>}
|
|
@@ -8474,6 +8516,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8474
8516
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8475
8517
|
*/
|
|
8476
8518
|
readonly fieldSelector?: Array<string>;
|
|
8519
|
+
/**
|
|
8520
|
+
* The page number. Zero indicates no page.
|
|
8521
|
+
* @type {number}
|
|
8522
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8523
|
+
*/
|
|
8524
|
+
readonly page?: number;
|
|
8477
8525
|
}
|
|
8478
8526
|
/**
|
|
8479
8527
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8507,19 +8555,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8507
8555
|
/**
|
|
8508
8556
|
* List single pages.
|
|
8509
8557
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8558
|
+
* @param {Array<string>} [contributor]
|
|
8559
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8560
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8510
8561
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8511
8562
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8512
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8513
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8514
|
-
* @param {Array<string>} [contributor]
|
|
8515
8563
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8516
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8517
8564
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8518
8565
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8566
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8519
8567
|
* @param {*} [options] Override http request option.
|
|
8520
8568
|
* @throws {RequiredError}
|
|
8521
8569
|
*/
|
|
8522
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8570
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8523
8571
|
/**
|
|
8524
8572
|
* Publish a single page.
|
|
8525
8573
|
* @param {string} name
|
|
@@ -8559,19 +8607,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8559
8607
|
/**
|
|
8560
8608
|
* List single pages.
|
|
8561
8609
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8610
|
+
* @param {Array<string>} [contributor]
|
|
8611
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8612
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8562
8613
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8563
8614
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8564
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8565
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8566
|
-
* @param {Array<string>} [contributor]
|
|
8567
8615
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8568
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8569
8616
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8570
8617
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8618
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8571
8619
|
* @param {*} [options] Override http request option.
|
|
8572
8620
|
* @throws {RequiredError}
|
|
8573
8621
|
*/
|
|
8574
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8622
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8575
8623
|
/**
|
|
8576
8624
|
* Publish a single page.
|
|
8577
8625
|
* @param {string} name
|
|
@@ -8611,19 +8659,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8611
8659
|
/**
|
|
8612
8660
|
* List single pages.
|
|
8613
8661
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8662
|
+
* @param {Array<string>} [contributor]
|
|
8663
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8664
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8614
8665
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8615
8666
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8616
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8617
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8618
|
-
* @param {Array<string>} [contributor]
|
|
8619
8667
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8620
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8621
8668
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8622
8669
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8670
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8623
8671
|
* @param {*} [options] Override http request option.
|
|
8624
8672
|
* @throws {RequiredError}
|
|
8625
8673
|
*/
|
|
8626
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8674
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', sortOrder?: boolean, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8627
8675
|
/**
|
|
8628
8676
|
* Publish a single page.
|
|
8629
8677
|
* @param {string} name
|
|
@@ -8674,17 +8722,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8674
8722
|
*/
|
|
8675
8723
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8676
8724
|
/**
|
|
8677
|
-
*
|
|
8678
|
-
* @type {string}
|
|
8725
|
+
*
|
|
8726
|
+
* @type {Array<string>}
|
|
8679
8727
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8680
8728
|
*/
|
|
8681
|
-
readonly
|
|
8729
|
+
readonly contributor?: Array<string>;
|
|
8682
8730
|
/**
|
|
8683
8731
|
*
|
|
8684
|
-
* @type {'
|
|
8732
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8685
8733
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8686
8734
|
*/
|
|
8687
|
-
readonly
|
|
8735
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8688
8736
|
/**
|
|
8689
8737
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8690
8738
|
* @type {boolean}
|
|
@@ -8692,29 +8740,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8692
8740
|
*/
|
|
8693
8741
|
readonly sortOrder?: boolean;
|
|
8694
8742
|
/**
|
|
8695
|
-
*
|
|
8696
|
-
* @type {
|
|
8743
|
+
* SinglePages filtered by keyword.
|
|
8744
|
+
* @type {string}
|
|
8697
8745
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8698
8746
|
*/
|
|
8699
|
-
readonly
|
|
8747
|
+
readonly keyword?: string;
|
|
8700
8748
|
/**
|
|
8701
8749
|
*
|
|
8702
|
-
* @type {
|
|
8750
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8703
8751
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8704
8752
|
*/
|
|
8705
|
-
readonly
|
|
8753
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8706
8754
|
/**
|
|
8707
8755
|
* Size of one page. Zero indicates no limit.
|
|
8708
8756
|
* @type {number}
|
|
8709
8757
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8710
8758
|
*/
|
|
8711
8759
|
readonly size?: number;
|
|
8712
|
-
/**
|
|
8713
|
-
* The page number. Zero indicates no page.
|
|
8714
|
-
* @type {number}
|
|
8715
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8716
|
-
*/
|
|
8717
|
-
readonly page?: number;
|
|
8718
8760
|
/**
|
|
8719
8761
|
* Label selector for filtering.
|
|
8720
8762
|
* @type {Array<string>}
|
|
@@ -8727,6 +8769,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8727
8769
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8728
8770
|
*/
|
|
8729
8771
|
readonly fieldSelector?: Array<string>;
|
|
8772
|
+
/**
|
|
8773
|
+
* The page number. Zero indicates no page.
|
|
8774
|
+
* @type {number}
|
|
8775
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8776
|
+
*/
|
|
8777
|
+
readonly page?: number;
|
|
8730
8778
|
}
|
|
8731
8779
|
/**
|
|
8732
8780
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8896,13 +8944,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8896
8944
|
* List themes.
|
|
8897
8945
|
* @param {boolean} uninstalled
|
|
8898
8946
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8899
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8900
8947
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8901
8948
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8949
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8902
8950
|
* @param {*} [options] Override http request option.
|
|
8903
8951
|
* @throws {RequiredError}
|
|
8904
8952
|
*/
|
|
8905
|
-
listThemes: (uninstalled: boolean, size?: number,
|
|
8953
|
+
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8906
8954
|
/**
|
|
8907
8955
|
* Reload theme setting.
|
|
8908
8956
|
* @param {string} name
|
|
@@ -8910,6 +8958,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8910
8958
|
* @throws {RequiredError}
|
|
8911
8959
|
*/
|
|
8912
8960
|
reload: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8961
|
+
/**
|
|
8962
|
+
* Reset the configMap of theme setting.
|
|
8963
|
+
* @param {string} name
|
|
8964
|
+
* @param {*} [options] Override http request option.
|
|
8965
|
+
* @throws {RequiredError}
|
|
8966
|
+
*/
|
|
8967
|
+
resetThemeConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8913
8968
|
/**
|
|
8914
8969
|
* Upgrade theme
|
|
8915
8970
|
* @param {string} name
|
|
@@ -8935,13 +8990,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8935
8990
|
* List themes.
|
|
8936
8991
|
* @param {boolean} uninstalled
|
|
8937
8992
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8938
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8939
8993
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8940
8994
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8995
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8941
8996
|
* @param {*} [options] Override http request option.
|
|
8942
8997
|
* @throws {RequiredError}
|
|
8943
8998
|
*/
|
|
8944
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
8999
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
8945
9000
|
/**
|
|
8946
9001
|
* Reload theme setting.
|
|
8947
9002
|
* @param {string} name
|
|
@@ -8949,6 +9004,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8949
9004
|
* @throws {RequiredError}
|
|
8950
9005
|
*/
|
|
8951
9006
|
reload(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
9007
|
+
/**
|
|
9008
|
+
* Reset the configMap of theme setting.
|
|
9009
|
+
* @param {string} name
|
|
9010
|
+
* @param {*} [options] Override http request option.
|
|
9011
|
+
* @throws {RequiredError}
|
|
9012
|
+
*/
|
|
9013
|
+
resetThemeConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
8952
9014
|
/**
|
|
8953
9015
|
* Upgrade theme
|
|
8954
9016
|
* @param {string} name
|
|
@@ -8974,13 +9036,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8974
9036
|
* List themes.
|
|
8975
9037
|
* @param {boolean} uninstalled
|
|
8976
9038
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8977
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8978
9039
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8979
9040
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9041
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8980
9042
|
* @param {*} [options] Override http request option.
|
|
8981
9043
|
* @throws {RequiredError}
|
|
8982
9044
|
*/
|
|
8983
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
9045
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
|
|
8984
9046
|
/**
|
|
8985
9047
|
* Reload theme setting.
|
|
8986
9048
|
* @param {string} name
|
|
@@ -8988,6 +9050,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8988
9050
|
* @throws {RequiredError}
|
|
8989
9051
|
*/
|
|
8990
9052
|
reload(name: string, options?: any): AxiosPromise<Theme>;
|
|
9053
|
+
/**
|
|
9054
|
+
* Reset the configMap of theme setting.
|
|
9055
|
+
* @param {string} name
|
|
9056
|
+
* @param {*} [options] Override http request option.
|
|
9057
|
+
* @throws {RequiredError}
|
|
9058
|
+
*/
|
|
9059
|
+
resetThemeConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
8991
9060
|
/**
|
|
8992
9061
|
* Upgrade theme
|
|
8993
9062
|
* @param {string} name
|
|
@@ -9028,12 +9097,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9028
9097
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9029
9098
|
*/
|
|
9030
9099
|
readonly size?: number;
|
|
9031
|
-
/**
|
|
9032
|
-
* The page number. Zero indicates no page.
|
|
9033
|
-
* @type {number}
|
|
9034
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9035
|
-
*/
|
|
9036
|
-
readonly page?: number;
|
|
9037
9100
|
/**
|
|
9038
9101
|
* Label selector for filtering.
|
|
9039
9102
|
* @type {Array<string>}
|
|
@@ -9046,6 +9109,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9046
9109
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9047
9110
|
*/
|
|
9048
9111
|
readonly fieldSelector?: Array<string>;
|
|
9112
|
+
/**
|
|
9113
|
+
* The page number. Zero indicates no page.
|
|
9114
|
+
* @type {number}
|
|
9115
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9116
|
+
*/
|
|
9117
|
+
readonly page?: number;
|
|
9049
9118
|
}
|
|
9050
9119
|
/**
|
|
9051
9120
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9060,6 +9129,19 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest {
|
|
|
9060
9129
|
*/
|
|
9061
9130
|
readonly name: string;
|
|
9062
9131
|
}
|
|
9132
|
+
/**
|
|
9133
|
+
* Request parameters for resetThemeConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9134
|
+
* @export
|
|
9135
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest
|
|
9136
|
+
*/
|
|
9137
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest {
|
|
9138
|
+
/**
|
|
9139
|
+
*
|
|
9140
|
+
* @type {string}
|
|
9141
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfig
|
|
9142
|
+
*/
|
|
9143
|
+
readonly name: string;
|
|
9144
|
+
}
|
|
9063
9145
|
/**
|
|
9064
9146
|
* Request parameters for upgradeTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9065
9147
|
* @export
|
|
@@ -9110,6 +9192,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
9110
9192
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
9111
9193
|
*/
|
|
9112
9194
|
reload(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
9195
|
+
/**
|
|
9196
|
+
* Reset the configMap of theme setting.
|
|
9197
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest} requestParameters Request parameters.
|
|
9198
|
+
* @param {*} [options] Override http request option.
|
|
9199
|
+
* @throws {RequiredError}
|
|
9200
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
9201
|
+
*/
|
|
9202
|
+
resetThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
9113
9203
|
/**
|
|
9114
9204
|
* Upgrade theme
|
|
9115
9205
|
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
|
|
@@ -9633,13 +9723,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9633
9723
|
/**
|
|
9634
9724
|
* Search posts with fuzzy query
|
|
9635
9725
|
* @param {string} keyword
|
|
9636
|
-
* @param {number} [limit]
|
|
9637
9726
|
* @param {string} [highlightPreTag]
|
|
9638
9727
|
* @param {string} [highlightPostTag]
|
|
9728
|
+
* @param {number} [limit]
|
|
9639
9729
|
* @param {*} [options] Override http request option.
|
|
9640
9730
|
* @throws {RequiredError}
|
|
9641
9731
|
*/
|
|
9642
|
-
searchPost: (keyword: string,
|
|
9732
|
+
searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9643
9733
|
};
|
|
9644
9734
|
/**
|
|
9645
9735
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9649,13 +9739,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9649
9739
|
/**
|
|
9650
9740
|
* Search posts with fuzzy query
|
|
9651
9741
|
* @param {string} keyword
|
|
9652
|
-
* @param {number} [limit]
|
|
9653
9742
|
* @param {string} [highlightPreTag]
|
|
9654
9743
|
* @param {string} [highlightPostTag]
|
|
9744
|
+
* @param {number} [limit]
|
|
9655
9745
|
* @param {*} [options] Override http request option.
|
|
9656
9746
|
* @throws {RequiredError}
|
|
9657
9747
|
*/
|
|
9658
|
-
searchPost(keyword: string,
|
|
9748
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9659
9749
|
};
|
|
9660
9750
|
/**
|
|
9661
9751
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9665,13 +9755,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9665
9755
|
/**
|
|
9666
9756
|
* Search posts with fuzzy query
|
|
9667
9757
|
* @param {string} keyword
|
|
9668
|
-
* @param {number} [limit]
|
|
9669
9758
|
* @param {string} [highlightPreTag]
|
|
9670
9759
|
* @param {string} [highlightPostTag]
|
|
9760
|
+
* @param {number} [limit]
|
|
9671
9761
|
* @param {*} [options] Override http request option.
|
|
9672
9762
|
* @throws {RequiredError}
|
|
9673
9763
|
*/
|
|
9674
|
-
searchPost(keyword: string,
|
|
9764
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
|
|
9675
9765
|
};
|
|
9676
9766
|
/**
|
|
9677
9767
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9687,22 +9777,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9687
9777
|
readonly keyword: string;
|
|
9688
9778
|
/**
|
|
9689
9779
|
*
|
|
9690
|
-
* @type {
|
|
9780
|
+
* @type {string}
|
|
9691
9781
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9692
9782
|
*/
|
|
9693
|
-
readonly
|
|
9783
|
+
readonly highlightPreTag?: string;
|
|
9694
9784
|
/**
|
|
9695
9785
|
*
|
|
9696
9786
|
* @type {string}
|
|
9697
9787
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9698
9788
|
*/
|
|
9699
|
-
readonly
|
|
9789
|
+
readonly highlightPostTag?: string;
|
|
9700
9790
|
/**
|
|
9701
9791
|
*
|
|
9702
|
-
* @type {
|
|
9792
|
+
* @type {number}
|
|
9703
9793
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9704
9794
|
*/
|
|
9705
|
-
readonly
|
|
9795
|
+
readonly limit?: number;
|
|
9706
9796
|
}
|
|
9707
9797
|
/**
|
|
9708
9798
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -9759,21 +9849,21 @@ declare const ApiHaloRunV1alpha1TrackerApiFp: (configuration?: Configuration) =>
|
|
|
9759
9849
|
* @param {*} [options] Override http request option.
|
|
9760
9850
|
* @throws {RequiredError}
|
|
9761
9851
|
*/
|
|
9762
|
-
count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9852
|
+
count(counterRequest: CounterRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9763
9853
|
/**
|
|
9764
9854
|
* Downvote an extension resource.
|
|
9765
9855
|
* @param {VoteRequest} voteRequest
|
|
9766
9856
|
* @param {*} [options] Override http request option.
|
|
9767
9857
|
* @throws {RequiredError}
|
|
9768
9858
|
*/
|
|
9769
|
-
downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9859
|
+
downvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9770
9860
|
/**
|
|
9771
9861
|
* Upvote an extension resource.
|
|
9772
9862
|
* @param {VoteRequest} voteRequest
|
|
9773
9863
|
* @param {*} [options] Override http request option.
|
|
9774
9864
|
* @throws {RequiredError}
|
|
9775
9865
|
*/
|
|
9776
|
-
upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
9866
|
+
upvote(voteRequest: VoteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9777
9867
|
};
|
|
9778
9868
|
/**
|
|
9779
9869
|
* ApiHaloRunV1alpha1TrackerApi - factory interface
|
|
@@ -9786,21 +9876,21 @@ declare const ApiHaloRunV1alpha1TrackerApiFactory: (configuration?: Configuratio
|
|
|
9786
9876
|
* @param {*} [options] Override http request option.
|
|
9787
9877
|
* @throws {RequiredError}
|
|
9788
9878
|
*/
|
|
9789
|
-
count(counterRequest: CounterRequest, options?: any): AxiosPromise<
|
|
9879
|
+
count(counterRequest: CounterRequest, options?: any): AxiosPromise<void>;
|
|
9790
9880
|
/**
|
|
9791
9881
|
* Downvote an extension resource.
|
|
9792
9882
|
* @param {VoteRequest} voteRequest
|
|
9793
9883
|
* @param {*} [options] Override http request option.
|
|
9794
9884
|
* @throws {RequiredError}
|
|
9795
9885
|
*/
|
|
9796
|
-
downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<
|
|
9886
|
+
downvote(voteRequest: VoteRequest, options?: any): AxiosPromise<void>;
|
|
9797
9887
|
/**
|
|
9798
9888
|
* Upvote an extension resource.
|
|
9799
9889
|
* @param {VoteRequest} voteRequest
|
|
9800
9890
|
* @param {*} [options] Override http request option.
|
|
9801
9891
|
* @throws {RequiredError}
|
|
9802
9892
|
*/
|
|
9803
|
-
upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<
|
|
9893
|
+
upvote(voteRequest: VoteRequest, options?: any): AxiosPromise<void>;
|
|
9804
9894
|
};
|
|
9805
9895
|
/**
|
|
9806
9896
|
* Request parameters for count operation in ApiHaloRunV1alpha1TrackerApi.
|
|
@@ -9855,7 +9945,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
9855
9945
|
* @throws {RequiredError}
|
|
9856
9946
|
* @memberof ApiHaloRunV1alpha1TrackerApi
|
|
9857
9947
|
*/
|
|
9858
|
-
count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
9948
|
+
count(requestParameters: ApiHaloRunV1alpha1TrackerApiCountRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9859
9949
|
/**
|
|
9860
9950
|
* Downvote an extension resource.
|
|
9861
9951
|
* @param {ApiHaloRunV1alpha1TrackerApiDownvoteRequest} requestParameters Request parameters.
|
|
@@ -9863,7 +9953,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
9863
9953
|
* @throws {RequiredError}
|
|
9864
9954
|
* @memberof ApiHaloRunV1alpha1TrackerApi
|
|
9865
9955
|
*/
|
|
9866
|
-
downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
9956
|
+
downvote(requestParameters: ApiHaloRunV1alpha1TrackerApiDownvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9867
9957
|
/**
|
|
9868
9958
|
* Upvote an extension resource.
|
|
9869
9959
|
* @param {ApiHaloRunV1alpha1TrackerApiUpvoteRequest} requestParameters Request parameters.
|
|
@@ -9871,7 +9961,7 @@ declare class ApiHaloRunV1alpha1TrackerApi extends BaseAPI {
|
|
|
9871
9961
|
* @throws {RequiredError}
|
|
9872
9962
|
* @memberof ApiHaloRunV1alpha1TrackerApi
|
|
9873
9963
|
*/
|
|
9874
|
-
upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
9964
|
+
upvote(requestParameters: ApiHaloRunV1alpha1TrackerApiUpvoteRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9875
9965
|
}
|
|
9876
9966
|
|
|
9877
9967
|
/**
|
|
@@ -16426,4 +16516,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
16426
16516
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
16427
16517
|
}
|
|
16428
16518
|
|
|
16429
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
16519
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|