@halo-dev/api-client 0.0.61 → 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 +125 -125
- package/dist/index.d.ts +208 -208
- package/dist/index.mjs +125 -125
- 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
|
/**
|
|
@@ -7028,17 +7028,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7028
7028
|
* @param {string} [policy] Name of policy
|
|
7029
7029
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7030
7030
|
* @param {string} [displayName] Display name of attachment
|
|
7031
|
-
* @param {string} [group] Name of group
|
|
7032
7031
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7033
7032
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7033
|
+
* @param {string} [group] Name of group
|
|
7034
7034
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7035
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7036
7035
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7037
7036
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7037
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7038
7038
|
* @param {*} [options] Override http request option.
|
|
7039
7039
|
* @throws {RequiredError}
|
|
7040
7040
|
*/
|
|
7041
|
-
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>;
|
|
7042
7042
|
/**
|
|
7043
7043
|
*
|
|
7044
7044
|
* @param {any} file
|
|
@@ -7059,17 +7059,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7059
7059
|
* @param {string} [policy] Name of policy
|
|
7060
7060
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7061
7061
|
* @param {string} [displayName] Display name of attachment
|
|
7062
|
-
* @param {string} [group] Name of group
|
|
7063
7062
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7064
7063
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7064
|
+
* @param {string} [group] Name of group
|
|
7065
7065
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7066
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7067
7066
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7068
7067
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7068
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7069
7069
|
* @param {*} [options] Override http request option.
|
|
7070
7070
|
* @throws {RequiredError}
|
|
7071
7071
|
*/
|
|
7072
|
-
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>>;
|
|
7073
7073
|
/**
|
|
7074
7074
|
*
|
|
7075
7075
|
* @param {any} file
|
|
@@ -7090,17 +7090,17 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7090
7090
|
* @param {string} [policy] Name of policy
|
|
7091
7091
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7092
7092
|
* @param {string} [displayName] Display name of attachment
|
|
7093
|
-
* @param {string} [group] Name of group
|
|
7094
7093
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7095
7094
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7095
|
+
* @param {string} [group] Name of group
|
|
7096
7096
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7097
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7098
7097
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7099
7098
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7099
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7100
7100
|
* @param {*} [options] Override http request option.
|
|
7101
7101
|
* @throws {RequiredError}
|
|
7102
7102
|
*/
|
|
7103
|
-
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>;
|
|
7104
7104
|
/**
|
|
7105
7105
|
*
|
|
7106
7106
|
* @param {any} file
|
|
@@ -7135,12 +7135,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7135
7135
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7136
7136
|
*/
|
|
7137
7137
|
readonly displayName?: string;
|
|
7138
|
-
/**
|
|
7139
|
-
* Name of group
|
|
7140
|
-
* @type {string}
|
|
7141
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7142
|
-
*/
|
|
7143
|
-
readonly group?: string;
|
|
7144
7138
|
/**
|
|
7145
7139
|
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7146
7140
|
* @type {boolean}
|
|
@@ -7154,17 +7148,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7154
7148
|
*/
|
|
7155
7149
|
readonly uploadedBy?: string;
|
|
7156
7150
|
/**
|
|
7157
|
-
*
|
|
7158
|
-
* @type {
|
|
7151
|
+
* Name of group
|
|
7152
|
+
* @type {string}
|
|
7159
7153
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7160
7154
|
*/
|
|
7161
|
-
readonly
|
|
7155
|
+
readonly group?: string;
|
|
7162
7156
|
/**
|
|
7163
|
-
*
|
|
7157
|
+
* Size of one page. Zero indicates no limit.
|
|
7164
7158
|
* @type {number}
|
|
7165
7159
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7166
7160
|
*/
|
|
7167
|
-
readonly
|
|
7161
|
+
readonly size?: number;
|
|
7168
7162
|
/**
|
|
7169
7163
|
* Label selector for filtering.
|
|
7170
7164
|
* @type {Array<string>}
|
|
@@ -7177,6 +7171,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7177
7171
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7178
7172
|
*/
|
|
7179
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;
|
|
7180
7180
|
}
|
|
7181
7181
|
/**
|
|
7182
7182
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7251,9 +7251,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7251
7251
|
/**
|
|
7252
7252
|
* List comments.
|
|
7253
7253
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7254
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7255
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7256
|
-
* @param {boolean} [top] Comment top display.
|
|
7257
7254
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7258
7255
|
* @param {boolean} [approved] Comments approved.
|
|
7259
7256
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7261,14 +7258,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7261
7258
|
* @param {string} [ownerName] Commenter name.
|
|
7262
7259
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7263
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.
|
|
7264
7264
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7265
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7266
7265
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7267
7266
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7267
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7268
7268
|
* @param {*} [options] Override http request option.
|
|
7269
7269
|
* @throws {RequiredError}
|
|
7270
7270
|
*/
|
|
7271
|
-
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>;
|
|
7272
7272
|
};
|
|
7273
7273
|
/**
|
|
7274
7274
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7293,9 +7293,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7293
7293
|
/**
|
|
7294
7294
|
* List comments.
|
|
7295
7295
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7296
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7297
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7298
|
-
* @param {boolean} [top] Comment top display.
|
|
7299
7296
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7300
7297
|
* @param {boolean} [approved] Comments approved.
|
|
7301
7298
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7303,14 +7300,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7303
7300
|
* @param {string} [ownerName] Commenter name.
|
|
7304
7301
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7305
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.
|
|
7306
7306
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7307
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7308
7307
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7309
7308
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7309
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7310
7310
|
* @param {*} [options] Override http request option.
|
|
7311
7311
|
* @throws {RequiredError}
|
|
7312
7312
|
*/
|
|
7313
|
-
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>>;
|
|
7314
7314
|
};
|
|
7315
7315
|
/**
|
|
7316
7316
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7335,9 +7335,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7335
7335
|
/**
|
|
7336
7336
|
* List comments.
|
|
7337
7337
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7338
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
7339
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7340
|
-
* @param {boolean} [top] Comment top display.
|
|
7341
7338
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7342
7339
|
* @param {boolean} [approved] Comments approved.
|
|
7343
7340
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -7345,14 +7342,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7345
7342
|
* @param {string} [ownerName] Commenter name.
|
|
7346
7343
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7347
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.
|
|
7348
7348
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7349
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7350
7349
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7351
7350
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7351
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7352
7352
|
* @param {*} [options] Override http request option.
|
|
7353
7353
|
* @throws {RequiredError}
|
|
7354
7354
|
*/
|
|
7355
|
-
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>;
|
|
7356
7356
|
};
|
|
7357
7357
|
/**
|
|
7358
7358
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7398,24 +7398,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7398
7398
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7399
7399
|
*/
|
|
7400
7400
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7401
|
-
/**
|
|
7402
|
-
* Comments filtered by keyword.
|
|
7403
|
-
* @type {string}
|
|
7404
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7405
|
-
*/
|
|
7406
|
-
readonly keyword?: string;
|
|
7407
|
-
/**
|
|
7408
|
-
* The comment is hidden from the theme side.
|
|
7409
|
-
* @type {boolean}
|
|
7410
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7411
|
-
*/
|
|
7412
|
-
readonly hidden?: boolean;
|
|
7413
|
-
/**
|
|
7414
|
-
* Comment top display.
|
|
7415
|
-
* @type {boolean}
|
|
7416
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7417
|
-
*/
|
|
7418
|
-
readonly top?: boolean;
|
|
7419
7401
|
/**
|
|
7420
7402
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7421
7403
|
* @type {boolean}
|
|
@@ -7459,17 +7441,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7459
7441
|
*/
|
|
7460
7442
|
readonly subjectName?: string;
|
|
7461
7443
|
/**
|
|
7462
|
-
*
|
|
7463
|
-
* @type {
|
|
7444
|
+
* Comments filtered by keyword.
|
|
7445
|
+
* @type {string}
|
|
7464
7446
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7465
7447
|
*/
|
|
7466
|
-
readonly
|
|
7448
|
+
readonly keyword?: string;
|
|
7467
7449
|
/**
|
|
7468
|
-
* 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.
|
|
7469
7463
|
* @type {number}
|
|
7470
7464
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7471
7465
|
*/
|
|
7472
|
-
readonly
|
|
7466
|
+
readonly size?: number;
|
|
7473
7467
|
/**
|
|
7474
7468
|
* Label selector for filtering.
|
|
7475
7469
|
* @type {Array<string>}
|
|
@@ -7482,6 +7476,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7482
7476
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7483
7477
|
*/
|
|
7484
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;
|
|
7485
7485
|
}
|
|
7486
7486
|
/**
|
|
7487
7487
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7748,20 +7748,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7748
7748
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7749
7749
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7750
7750
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7751
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7752
7751
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7753
7752
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7753
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7754
7754
|
* @param {*} [options] Override http request option.
|
|
7755
7755
|
* @throws {RequiredError}
|
|
7756
7756
|
*/
|
|
7757
|
-
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
7757
|
+
listPlugins: (sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7758
7758
|
/**
|
|
7759
|
-
* Reset plugin setting
|
|
7759
|
+
* Reset the configMap of plugin setting.
|
|
7760
7760
|
* @param {string} name
|
|
7761
7761
|
* @param {*} [options] Override http request option.
|
|
7762
7762
|
* @throws {RequiredError}
|
|
7763
7763
|
*/
|
|
7764
|
-
|
|
7764
|
+
resetPluginConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7765
7765
|
/**
|
|
7766
7766
|
* Upgrade a plugin by uploading a Jar file
|
|
7767
7767
|
* @param {string} name
|
|
@@ -7789,20 +7789,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7789
7789
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7790
7790
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7791
7791
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7792
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7793
7792
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7794
7793
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7794
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7795
7795
|
* @param {*} [options] Override http request option.
|
|
7796
7796
|
* @throws {RequiredError}
|
|
7797
7797
|
*/
|
|
7798
|
-
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
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
7799
|
/**
|
|
7800
|
-
* Reset plugin setting
|
|
7800
|
+
* Reset the configMap of plugin setting.
|
|
7801
7801
|
* @param {string} name
|
|
7802
7802
|
* @param {*} [options] Override http request option.
|
|
7803
7803
|
* @throws {RequiredError}
|
|
7804
7804
|
*/
|
|
7805
|
-
|
|
7805
|
+
resetPluginConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
7806
7806
|
/**
|
|
7807
7807
|
* Upgrade a plugin by uploading a Jar file
|
|
7808
7808
|
* @param {string} name
|
|
@@ -7830,20 +7830,20 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7830
7830
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7831
7831
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7832
7832
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7833
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7834
7833
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7835
7834
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7835
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7836
7836
|
* @param {*} [options] Override http request option.
|
|
7837
7837
|
* @throws {RequiredError}
|
|
7838
7838
|
*/
|
|
7839
|
-
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number,
|
|
7839
|
+
listPlugins(sort?: Array<string>, enabled?: boolean, keyword?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
7840
7840
|
/**
|
|
7841
|
-
* Reset plugin setting
|
|
7841
|
+
* Reset the configMap of plugin setting.
|
|
7842
7842
|
* @param {string} name
|
|
7843
7843
|
* @param {*} [options] Override http request option.
|
|
7844
7844
|
* @throws {RequiredError}
|
|
7845
7845
|
*/
|
|
7846
|
-
|
|
7846
|
+
resetPluginConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
7847
7847
|
/**
|
|
7848
7848
|
* Upgrade a plugin by uploading a Jar file
|
|
7849
7849
|
* @param {string} name
|
|
@@ -7896,12 +7896,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7896
7896
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7897
7897
|
*/
|
|
7898
7898
|
readonly size?: number;
|
|
7899
|
-
/**
|
|
7900
|
-
* The page number. Zero indicates no page.
|
|
7901
|
-
* @type {number}
|
|
7902
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7903
|
-
*/
|
|
7904
|
-
readonly page?: number;
|
|
7905
7899
|
/**
|
|
7906
7900
|
* Label selector for filtering.
|
|
7907
7901
|
* @type {Array<string>}
|
|
@@ -7914,17 +7908,23 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7914
7908
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7915
7909
|
*/
|
|
7916
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
7917
|
}
|
|
7918
7918
|
/**
|
|
7919
|
-
* Request parameters for
|
|
7919
|
+
* Request parameters for resetPluginConfig operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
7920
7920
|
* @export
|
|
7921
|
-
* @interface
|
|
7921
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest
|
|
7922
7922
|
*/
|
|
7923
|
-
interface
|
|
7923
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest {
|
|
7924
7924
|
/**
|
|
7925
7925
|
*
|
|
7926
7926
|
* @type {string}
|
|
7927
|
-
* @memberof
|
|
7927
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfig
|
|
7928
7928
|
*/
|
|
7929
7929
|
readonly name: string;
|
|
7930
7930
|
}
|
|
@@ -7971,13 +7971,13 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
7971
7971
|
*/
|
|
7972
7972
|
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
7973
7973
|
/**
|
|
7974
|
-
* Reset plugin setting
|
|
7975
|
-
* @param {
|
|
7974
|
+
* Reset the configMap of plugin setting.
|
|
7975
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest} requestParameters Request parameters.
|
|
7976
7976
|
* @param {*} [options] Override http request option.
|
|
7977
7977
|
* @throws {RequiredError}
|
|
7978
7978
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
7979
7979
|
*/
|
|
7980
|
-
|
|
7980
|
+
resetPluginConfig(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
7981
7981
|
/**
|
|
7982
7982
|
* Upgrade a plugin by uploading a Jar file
|
|
7983
7983
|
* @param {ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest} requestParameters Request parameters.
|
|
@@ -8003,21 +8003,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
8003
8003
|
/**
|
|
8004
8004
|
* List posts.
|
|
8005
8005
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8006
|
-
* @param {Array<string>} [tag]
|
|
8007
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8008
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8009
8006
|
* @param {Array<string>} [contributor]
|
|
8010
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8011
8007
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8012
8008
|
* @param {Array<string>} [category]
|
|
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]
|
|
8013
8013
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8014
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8015
8014
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8016
8015
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8016
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8017
8017
|
* @param {*} [options] Override http request option.
|
|
8018
8018
|
* @throws {RequiredError}
|
|
8019
8019
|
*/
|
|
8020
|
-
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>;
|
|
8021
8021
|
/**
|
|
8022
8022
|
* Publish a post.
|
|
8023
8023
|
* @param {string} name
|
|
@@ -8072,21 +8072,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8072
8072
|
/**
|
|
8073
8073
|
* List posts.
|
|
8074
8074
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8075
|
-
* @param {Array<string>} [tag]
|
|
8076
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8077
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8078
8075
|
* @param {Array<string>} [contributor]
|
|
8079
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8080
8076
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8081
8077
|
* @param {Array<string>} [category]
|
|
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]
|
|
8082
8082
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8083
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8084
8083
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8085
8084
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8085
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8086
8086
|
* @param {*} [options] Override http request option.
|
|
8087
8087
|
* @throws {RequiredError}
|
|
8088
8088
|
*/
|
|
8089
|
-
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>>;
|
|
8090
8090
|
/**
|
|
8091
8091
|
* Publish a post.
|
|
8092
8092
|
* @param {string} name
|
|
@@ -8141,21 +8141,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8141
8141
|
/**
|
|
8142
8142
|
* List posts.
|
|
8143
8143
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8144
|
-
* @param {Array<string>} [tag]
|
|
8145
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8146
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8147
8144
|
* @param {Array<string>} [contributor]
|
|
8148
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8149
8145
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8150
8146
|
* @param {Array<string>} [category]
|
|
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]
|
|
8151
8151
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8152
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8153
8152
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8154
8153
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8154
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8155
8155
|
* @param {*} [options] Override http request option.
|
|
8156
8156
|
* @throws {RequiredError}
|
|
8157
8157
|
*/
|
|
8158
|
-
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>;
|
|
8159
8159
|
/**
|
|
8160
8160
|
* Publish a post.
|
|
8161
8161
|
* @param {string} name
|
|
@@ -8225,25 +8225,19 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8225
8225
|
* @type {Array<string>}
|
|
8226
8226
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8227
8227
|
*/
|
|
8228
|
-
readonly
|
|
8228
|
+
readonly contributor?: Array<string>;
|
|
8229
8229
|
/**
|
|
8230
8230
|
*
|
|
8231
|
-
* @type {'
|
|
8232
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8233
|
-
*/
|
|
8234
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8235
|
-
/**
|
|
8236
|
-
* Posts filtered by keyword.
|
|
8237
|
-
* @type {string}
|
|
8231
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8238
8232
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8239
8233
|
*/
|
|
8240
|
-
readonly
|
|
8234
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8241
8235
|
/**
|
|
8242
8236
|
*
|
|
8243
8237
|
* @type {Array<string>}
|
|
8244
8238
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8245
8239
|
*/
|
|
8246
|
-
readonly
|
|
8240
|
+
readonly category?: Array<string>;
|
|
8247
8241
|
/**
|
|
8248
8242
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8249
8243
|
* @type {boolean}
|
|
@@ -8252,28 +8246,28 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8252
8246
|
readonly sortOrder?: boolean;
|
|
8253
8247
|
/**
|
|
8254
8248
|
*
|
|
8255
|
-
* @type {
|
|
8249
|
+
* @type {Array<string>}
|
|
8256
8250
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8257
8251
|
*/
|
|
8258
|
-
readonly
|
|
8252
|
+
readonly tag?: Array<string>;
|
|
8259
8253
|
/**
|
|
8260
|
-
*
|
|
8261
|
-
* @type {
|
|
8254
|
+
* Posts filtered by keyword.
|
|
8255
|
+
* @type {string}
|
|
8262
8256
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8263
8257
|
*/
|
|
8264
|
-
readonly
|
|
8258
|
+
readonly keyword?: string;
|
|
8265
8259
|
/**
|
|
8266
|
-
*
|
|
8267
|
-
* @type {
|
|
8260
|
+
*
|
|
8261
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8268
8262
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8269
8263
|
*/
|
|
8270
|
-
readonly
|
|
8264
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8271
8265
|
/**
|
|
8272
|
-
*
|
|
8266
|
+
* Size of one page. Zero indicates no limit.
|
|
8273
8267
|
* @type {number}
|
|
8274
8268
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8275
8269
|
*/
|
|
8276
|
-
readonly
|
|
8270
|
+
readonly size?: number;
|
|
8277
8271
|
/**
|
|
8278
8272
|
* Label selector for filtering.
|
|
8279
8273
|
* @type {Array<string>}
|
|
@@ -8286,6 +8280,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8286
8280
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8287
8281
|
*/
|
|
8288
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;
|
|
8289
8289
|
}
|
|
8290
8290
|
/**
|
|
8291
8291
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8444,13 +8444,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8444
8444
|
* List replies.
|
|
8445
8445
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8446
8446
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8447
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8448
8447
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8449
8448
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8449
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8450
8450
|
* @param {*} [options] Override http request option.
|
|
8451
8451
|
* @throws {RequiredError}
|
|
8452
8452
|
*/
|
|
8453
|
-
listReplies: (commentName?: string, size?: number,
|
|
8453
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8454
8454
|
};
|
|
8455
8455
|
/**
|
|
8456
8456
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8461,13 +8461,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8461
8461
|
* List replies.
|
|
8462
8462
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8463
8463
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8464
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8465
8464
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8466
8465
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8466
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8467
8467
|
* @param {*} [options] Override http request option.
|
|
8468
8468
|
* @throws {RequiredError}
|
|
8469
8469
|
*/
|
|
8470
|
-
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>>;
|
|
8471
8471
|
};
|
|
8472
8472
|
/**
|
|
8473
8473
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8478,13 +8478,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8478
8478
|
* List replies.
|
|
8479
8479
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8480
8480
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8481
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8482
8481
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8483
8482
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8483
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8484
8484
|
* @param {*} [options] Override http request option.
|
|
8485
8485
|
* @throws {RequiredError}
|
|
8486
8486
|
*/
|
|
8487
|
-
listReplies(commentName?: string, size?: number,
|
|
8487
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
8488
8488
|
};
|
|
8489
8489
|
/**
|
|
8490
8490
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8504,12 +8504,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8504
8504
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8505
8505
|
*/
|
|
8506
8506
|
readonly size?: number;
|
|
8507
|
-
/**
|
|
8508
|
-
* The page number. Zero indicates no page.
|
|
8509
|
-
* @type {number}
|
|
8510
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8511
|
-
*/
|
|
8512
|
-
readonly page?: number;
|
|
8513
8507
|
/**
|
|
8514
8508
|
* Label selector for filtering.
|
|
8515
8509
|
* @type {Array<string>}
|
|
@@ -8522,6 +8516,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8522
8516
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8523
8517
|
*/
|
|
8524
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;
|
|
8525
8525
|
}
|
|
8526
8526
|
/**
|
|
8527
8527
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8555,19 +8555,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8555
8555
|
/**
|
|
8556
8556
|
* List single pages.
|
|
8557
8557
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8558
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8559
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8560
8558
|
* @param {Array<string>} [contributor]
|
|
8561
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8562
8559
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8560
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8561
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8562
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8563
8563
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8564
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8565
8564
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8566
8565
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8566
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8567
8567
|
* @param {*} [options] Override http request option.
|
|
8568
8568
|
* @throws {RequiredError}
|
|
8569
8569
|
*/
|
|
8570
|
-
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>;
|
|
8571
8571
|
/**
|
|
8572
8572
|
* Publish a single page.
|
|
8573
8573
|
* @param {string} name
|
|
@@ -8607,19 +8607,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8607
8607
|
/**
|
|
8608
8608
|
* List single pages.
|
|
8609
8609
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8610
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8611
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8612
8610
|
* @param {Array<string>} [contributor]
|
|
8613
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8614
8611
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8612
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8613
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8614
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8615
8615
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8616
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8617
8616
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8618
8617
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8618
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8619
8619
|
* @param {*} [options] Override http request option.
|
|
8620
8620
|
* @throws {RequiredError}
|
|
8621
8621
|
*/
|
|
8622
|
-
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>>;
|
|
8623
8623
|
/**
|
|
8624
8624
|
* Publish a single page.
|
|
8625
8625
|
* @param {string} name
|
|
@@ -8659,19 +8659,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8659
8659
|
/**
|
|
8660
8660
|
* List single pages.
|
|
8661
8661
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8662
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8663
|
-
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8664
8662
|
* @param {Array<string>} [contributor]
|
|
8665
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8666
8663
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8664
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8665
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8666
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8667
8667
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8668
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8669
8668
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8670
8669
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8670
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8671
8671
|
* @param {*} [options] Override http request option.
|
|
8672
8672
|
* @throws {RequiredError}
|
|
8673
8673
|
*/
|
|
8674
|
-
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>;
|
|
8675
8675
|
/**
|
|
8676
8676
|
* Publish a single page.
|
|
8677
8677
|
* @param {string} name
|
|
@@ -8723,22 +8723,16 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8723
8723
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8724
8724
|
/**
|
|
8725
8725
|
*
|
|
8726
|
-
* @type {
|
|
8727
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8728
|
-
*/
|
|
8729
|
-
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8730
|
-
/**
|
|
8731
|
-
* SinglePages filtered by keyword.
|
|
8732
|
-
* @type {string}
|
|
8726
|
+
* @type {Array<string>}
|
|
8733
8727
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8734
8728
|
*/
|
|
8735
|
-
readonly
|
|
8729
|
+
readonly contributor?: Array<string>;
|
|
8736
8730
|
/**
|
|
8737
8731
|
*
|
|
8738
|
-
* @type {
|
|
8732
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8739
8733
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8740
8734
|
*/
|
|
8741
|
-
readonly
|
|
8735
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8742
8736
|
/**
|
|
8743
8737
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8744
8738
|
* @type {boolean}
|
|
@@ -8746,23 +8740,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8746
8740
|
*/
|
|
8747
8741
|
readonly sortOrder?: boolean;
|
|
8748
8742
|
/**
|
|
8749
|
-
*
|
|
8750
|
-
* @type {
|
|
8743
|
+
* SinglePages filtered by keyword.
|
|
8744
|
+
* @type {string}
|
|
8751
8745
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8752
8746
|
*/
|
|
8753
|
-
readonly
|
|
8747
|
+
readonly keyword?: string;
|
|
8754
8748
|
/**
|
|
8755
|
-
*
|
|
8756
|
-
* @type {
|
|
8749
|
+
*
|
|
8750
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8757
8751
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8758
8752
|
*/
|
|
8759
|
-
readonly
|
|
8753
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8760
8754
|
/**
|
|
8761
|
-
*
|
|
8755
|
+
* Size of one page. Zero indicates no limit.
|
|
8762
8756
|
* @type {number}
|
|
8763
8757
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8764
8758
|
*/
|
|
8765
|
-
readonly
|
|
8759
|
+
readonly size?: number;
|
|
8766
8760
|
/**
|
|
8767
8761
|
* Label selector for filtering.
|
|
8768
8762
|
* @type {Array<string>}
|
|
@@ -8775,6 +8769,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8775
8769
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8776
8770
|
*/
|
|
8777
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;
|
|
8778
8778
|
}
|
|
8779
8779
|
/**
|
|
8780
8780
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8944,13 +8944,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8944
8944
|
* List themes.
|
|
8945
8945
|
* @param {boolean} uninstalled
|
|
8946
8946
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8947
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8948
8947
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8949
8948
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8949
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8950
8950
|
* @param {*} [options] Override http request option.
|
|
8951
8951
|
* @throws {RequiredError}
|
|
8952
8952
|
*/
|
|
8953
|
-
listThemes: (uninstalled: boolean, size?: number,
|
|
8953
|
+
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8954
8954
|
/**
|
|
8955
8955
|
* Reload theme setting.
|
|
8956
8956
|
* @param {string} name
|
|
@@ -8959,12 +8959,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8959
8959
|
*/
|
|
8960
8960
|
reload: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8961
8961
|
/**
|
|
8962
|
-
* Reset theme setting
|
|
8962
|
+
* Reset the configMap of theme setting.
|
|
8963
8963
|
* @param {string} name
|
|
8964
8964
|
* @param {*} [options] Override http request option.
|
|
8965
8965
|
* @throws {RequiredError}
|
|
8966
8966
|
*/
|
|
8967
|
-
|
|
8967
|
+
resetThemeConfig: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8968
8968
|
/**
|
|
8969
8969
|
* Upgrade theme
|
|
8970
8970
|
* @param {string} name
|
|
@@ -8990,13 +8990,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8990
8990
|
* List themes.
|
|
8991
8991
|
* @param {boolean} uninstalled
|
|
8992
8992
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8993
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8994
8993
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8995
8994
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8995
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8996
8996
|
* @param {*} [options] Override http request option.
|
|
8997
8997
|
* @throws {RequiredError}
|
|
8998
8998
|
*/
|
|
8999
|
-
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>>;
|
|
9000
9000
|
/**
|
|
9001
9001
|
* Reload theme setting.
|
|
9002
9002
|
* @param {string} name
|
|
@@ -9005,12 +9005,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
9005
9005
|
*/
|
|
9006
9006
|
reload(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
9007
9007
|
/**
|
|
9008
|
-
* Reset theme setting
|
|
9008
|
+
* Reset the configMap of theme setting.
|
|
9009
9009
|
* @param {string} name
|
|
9010
9010
|
* @param {*} [options] Override http request option.
|
|
9011
9011
|
* @throws {RequiredError}
|
|
9012
9012
|
*/
|
|
9013
|
-
|
|
9013
|
+
resetThemeConfig(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMap>>;
|
|
9014
9014
|
/**
|
|
9015
9015
|
* Upgrade theme
|
|
9016
9016
|
* @param {string} name
|
|
@@ -9036,13 +9036,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9036
9036
|
* List themes.
|
|
9037
9037
|
* @param {boolean} uninstalled
|
|
9038
9038
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9039
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9040
9039
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9041
9040
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9041
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9042
9042
|
* @param {*} [options] Override http request option.
|
|
9043
9043
|
* @throws {RequiredError}
|
|
9044
9044
|
*/
|
|
9045
|
-
listThemes(uninstalled: boolean, size?: number,
|
|
9045
|
+
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ThemeList>;
|
|
9046
9046
|
/**
|
|
9047
9047
|
* Reload theme setting.
|
|
9048
9048
|
* @param {string} name
|
|
@@ -9051,12 +9051,12 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
9051
9051
|
*/
|
|
9052
9052
|
reload(name: string, options?: any): AxiosPromise<Theme>;
|
|
9053
9053
|
/**
|
|
9054
|
-
* Reset theme setting
|
|
9054
|
+
* Reset the configMap of theme setting.
|
|
9055
9055
|
* @param {string} name
|
|
9056
9056
|
* @param {*} [options] Override http request option.
|
|
9057
9057
|
* @throws {RequiredError}
|
|
9058
9058
|
*/
|
|
9059
|
-
|
|
9059
|
+
resetThemeConfig(name: string, options?: any): AxiosPromise<ConfigMap>;
|
|
9060
9060
|
/**
|
|
9061
9061
|
* Upgrade theme
|
|
9062
9062
|
* @param {string} name
|
|
@@ -9097,12 +9097,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9097
9097
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9098
9098
|
*/
|
|
9099
9099
|
readonly size?: number;
|
|
9100
|
-
/**
|
|
9101
|
-
* The page number. Zero indicates no page.
|
|
9102
|
-
* @type {number}
|
|
9103
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9104
|
-
*/
|
|
9105
|
-
readonly page?: number;
|
|
9106
9100
|
/**
|
|
9107
9101
|
* Label selector for filtering.
|
|
9108
9102
|
* @type {Array<string>}
|
|
@@ -9115,6 +9109,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9115
9109
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9116
9110
|
*/
|
|
9117
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;
|
|
9118
9118
|
}
|
|
9119
9119
|
/**
|
|
9120
9120
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9130,15 +9130,15 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest {
|
|
|
9130
9130
|
readonly name: string;
|
|
9131
9131
|
}
|
|
9132
9132
|
/**
|
|
9133
|
-
* Request parameters for
|
|
9133
|
+
* Request parameters for resetThemeConfig operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
9134
9134
|
* @export
|
|
9135
|
-
* @interface
|
|
9135
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest
|
|
9136
9136
|
*/
|
|
9137
|
-
interface
|
|
9137
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest {
|
|
9138
9138
|
/**
|
|
9139
9139
|
*
|
|
9140
9140
|
* @type {string}
|
|
9141
|
-
* @memberof
|
|
9141
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfig
|
|
9142
9142
|
*/
|
|
9143
9143
|
readonly name: string;
|
|
9144
9144
|
}
|
|
@@ -9193,13 +9193,13 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
9193
9193
|
*/
|
|
9194
9194
|
reload(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
9195
9195
|
/**
|
|
9196
|
-
* Reset theme setting
|
|
9197
|
-
* @param {
|
|
9196
|
+
* Reset the configMap of theme setting.
|
|
9197
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest} requestParameters Request parameters.
|
|
9198
9198
|
* @param {*} [options] Override http request option.
|
|
9199
9199
|
* @throws {RequiredError}
|
|
9200
9200
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
9201
9201
|
*/
|
|
9202
|
-
|
|
9202
|
+
resetThemeConfig(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
9203
9203
|
/**
|
|
9204
9204
|
* Upgrade theme
|
|
9205
9205
|
* @param {ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest} requestParameters Request parameters.
|
|
@@ -9723,13 +9723,13 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
9723
9723
|
/**
|
|
9724
9724
|
* Search posts with fuzzy query
|
|
9725
9725
|
* @param {string} keyword
|
|
9726
|
-
* @param {number} [limit]
|
|
9727
9726
|
* @param {string} [highlightPreTag]
|
|
9728
9727
|
* @param {string} [highlightPostTag]
|
|
9728
|
+
* @param {number} [limit]
|
|
9729
9729
|
* @param {*} [options] Override http request option.
|
|
9730
9730
|
* @throws {RequiredError}
|
|
9731
9731
|
*/
|
|
9732
|
-
searchPost: (keyword: string,
|
|
9732
|
+
searchPost: (keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9733
9733
|
};
|
|
9734
9734
|
/**
|
|
9735
9735
|
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
@@ -9739,13 +9739,13 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
9739
9739
|
/**
|
|
9740
9740
|
* Search posts with fuzzy query
|
|
9741
9741
|
* @param {string} keyword
|
|
9742
|
-
* @param {number} [limit]
|
|
9743
9742
|
* @param {string} [highlightPreTag]
|
|
9744
9743
|
* @param {string} [highlightPostTag]
|
|
9744
|
+
* @param {number} [limit]
|
|
9745
9745
|
* @param {*} [options] Override http request option.
|
|
9746
9746
|
* @throws {RequiredError}
|
|
9747
9747
|
*/
|
|
9748
|
-
searchPost(keyword: string,
|
|
9748
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9749
9749
|
};
|
|
9750
9750
|
/**
|
|
9751
9751
|
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
@@ -9755,13 +9755,13 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
9755
9755
|
/**
|
|
9756
9756
|
* Search posts with fuzzy query
|
|
9757
9757
|
* @param {string} keyword
|
|
9758
|
-
* @param {number} [limit]
|
|
9759
9758
|
* @param {string} [highlightPreTag]
|
|
9760
9759
|
* @param {string} [highlightPostTag]
|
|
9760
|
+
* @param {number} [limit]
|
|
9761
9761
|
* @param {*} [options] Override http request option.
|
|
9762
9762
|
* @throws {RequiredError}
|
|
9763
9763
|
*/
|
|
9764
|
-
searchPost(keyword: string,
|
|
9764
|
+
searchPost(keyword: string, highlightPreTag?: string, highlightPostTag?: string, limit?: number, options?: any): AxiosPromise<PostHits>;
|
|
9765
9765
|
};
|
|
9766
9766
|
/**
|
|
9767
9767
|
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
@@ -9777,22 +9777,22 @@ interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
|
9777
9777
|
readonly keyword: string;
|
|
9778
9778
|
/**
|
|
9779
9779
|
*
|
|
9780
|
-
* @type {
|
|
9780
|
+
* @type {string}
|
|
9781
9781
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9782
9782
|
*/
|
|
9783
|
-
readonly
|
|
9783
|
+
readonly highlightPreTag?: string;
|
|
9784
9784
|
/**
|
|
9785
9785
|
*
|
|
9786
9786
|
* @type {string}
|
|
9787
9787
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9788
9788
|
*/
|
|
9789
|
-
readonly
|
|
9789
|
+
readonly highlightPostTag?: string;
|
|
9790
9790
|
/**
|
|
9791
9791
|
*
|
|
9792
|
-
* @type {
|
|
9792
|
+
* @type {number}
|
|
9793
9793
|
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9794
9794
|
*/
|
|
9795
|
-
readonly
|
|
9795
|
+
readonly limit?: number;
|
|
9796
9796
|
}
|
|
9797
9797
|
/**
|
|
9798
9798
|
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
@@ -16516,4 +16516,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
16516
16516
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
16517
16517
|
}
|
|
16518
16518
|
|
|
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, ApiConsoleHaloRunV1alpha1PluginApiResetPluginSettingConfigRequest, 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, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeSettingConfigRequest, 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 };
|