@halo-dev/api-client 0.0.32 → 0.0.34
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 +137 -71
- package/dist/index.d.ts +301 -129
- package/dist/index.mjs +137 -71
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1673,22 +1673,22 @@ interface Excerpt {
|
|
|
1673
1673
|
interface Extension {
|
|
1674
1674
|
/**
|
|
1675
1675
|
*
|
|
1676
|
-
* @type {
|
|
1676
|
+
* @type {Metadata}
|
|
1677
1677
|
* @memberof Extension
|
|
1678
1678
|
*/
|
|
1679
|
-
|
|
1679
|
+
metadata: Metadata;
|
|
1680
1680
|
/**
|
|
1681
1681
|
*
|
|
1682
|
-
* @type {
|
|
1682
|
+
* @type {string}
|
|
1683
1683
|
* @memberof Extension
|
|
1684
1684
|
*/
|
|
1685
|
-
|
|
1685
|
+
apiVersion: string;
|
|
1686
1686
|
/**
|
|
1687
1687
|
*
|
|
1688
1688
|
* @type {string}
|
|
1689
1689
|
* @memberof Extension
|
|
1690
1690
|
*/
|
|
1691
|
-
|
|
1691
|
+
kind: string;
|
|
1692
1692
|
}
|
|
1693
1693
|
|
|
1694
1694
|
/**
|
|
@@ -5907,6 +5907,31 @@ interface ThemeSpec {
|
|
|
5907
5907
|
configMapName?: string;
|
|
5908
5908
|
}
|
|
5909
5909
|
|
|
5910
|
+
/**
|
|
5911
|
+
* Halo Next API
|
|
5912
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5913
|
+
*
|
|
5914
|
+
* The version of the OpenAPI document: 2.0.0
|
|
5915
|
+
*
|
|
5916
|
+
*
|
|
5917
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5918
|
+
* https://openapi-generator.tech
|
|
5919
|
+
* Do not edit the class manually.
|
|
5920
|
+
*/
|
|
5921
|
+
/**
|
|
5922
|
+
*
|
|
5923
|
+
* @export
|
|
5924
|
+
* @interface ThemeStatus
|
|
5925
|
+
*/
|
|
5926
|
+
interface ThemeStatus {
|
|
5927
|
+
/**
|
|
5928
|
+
*
|
|
5929
|
+
* @type {string}
|
|
5930
|
+
* @memberof ThemeStatus
|
|
5931
|
+
*/
|
|
5932
|
+
location?: string;
|
|
5933
|
+
}
|
|
5934
|
+
|
|
5910
5935
|
/**
|
|
5911
5936
|
* Halo Next API
|
|
5912
5937
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -5931,6 +5956,12 @@ interface Theme {
|
|
|
5931
5956
|
* @memberof Theme
|
|
5932
5957
|
*/
|
|
5933
5958
|
spec: ThemeSpec;
|
|
5959
|
+
/**
|
|
5960
|
+
*
|
|
5961
|
+
* @type {ThemeStatus}
|
|
5962
|
+
* @memberof Theme
|
|
5963
|
+
*/
|
|
5964
|
+
status?: ThemeStatus;
|
|
5934
5965
|
/**
|
|
5935
5966
|
*
|
|
5936
5967
|
* @type {string}
|
|
@@ -6303,9 +6334,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6303
6334
|
/**
|
|
6304
6335
|
* List comments.
|
|
6305
6336
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6306
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6307
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6308
|
-
* @param {boolean} [top] Comment top display.
|
|
6309
6337
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6310
6338
|
* @param {boolean} [approved] Comments approved.
|
|
6311
6339
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6313,14 +6341,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6313
6341
|
* @param {string} [ownerName] Commenter name.
|
|
6314
6342
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6315
6343
|
* @param {string} [subjectName] Comment subject name.
|
|
6344
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6345
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6346
|
+
* @param {boolean} [top] Comment top display.
|
|
6316
6347
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6317
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6318
6348
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6319
6349
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6350
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6320
6351
|
* @param {*} [options] Override http request option.
|
|
6321
6352
|
* @throws {RequiredError}
|
|
6322
6353
|
*/
|
|
6323
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6354
|
+
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>;
|
|
6324
6355
|
};
|
|
6325
6356
|
/**
|
|
6326
6357
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -6345,9 +6376,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6345
6376
|
/**
|
|
6346
6377
|
* List comments.
|
|
6347
6378
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6348
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6349
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6350
|
-
* @param {boolean} [top] Comment top display.
|
|
6351
6379
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6352
6380
|
* @param {boolean} [approved] Comments approved.
|
|
6353
6381
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6355,14 +6383,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6355
6383
|
* @param {string} [ownerName] Commenter name.
|
|
6356
6384
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6357
6385
|
* @param {string} [subjectName] Comment subject name.
|
|
6386
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6387
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6388
|
+
* @param {boolean} [top] Comment top display.
|
|
6358
6389
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6359
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6360
6390
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6361
6391
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6392
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6362
6393
|
* @param {*} [options] Override http request option.
|
|
6363
6394
|
* @throws {RequiredError}
|
|
6364
6395
|
*/
|
|
6365
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6396
|
+
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>>;
|
|
6366
6397
|
};
|
|
6367
6398
|
/**
|
|
6368
6399
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6387,9 +6418,6 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6387
6418
|
/**
|
|
6388
6419
|
* List comments.
|
|
6389
6420
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
6390
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6391
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6392
|
-
* @param {boolean} [top] Comment top display.
|
|
6393
6421
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6394
6422
|
* @param {boolean} [approved] Comments approved.
|
|
6395
6423
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6397,14 +6425,17 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6397
6425
|
* @param {string} [ownerName] Commenter name.
|
|
6398
6426
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6399
6427
|
* @param {string} [subjectName] Comment subject name.
|
|
6428
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6429
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6430
|
+
* @param {boolean} [top] Comment top display.
|
|
6400
6431
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6401
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6402
6432
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6403
6433
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6434
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6404
6435
|
* @param {*} [options] Override http request option.
|
|
6405
6436
|
* @throws {RequiredError}
|
|
6406
6437
|
*/
|
|
6407
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6438
|
+
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>;
|
|
6408
6439
|
};
|
|
6409
6440
|
/**
|
|
6410
6441
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6450,24 +6481,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6450
6481
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6451
6482
|
*/
|
|
6452
6483
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
6453
|
-
/**
|
|
6454
|
-
* Comments filtered by keyword.
|
|
6455
|
-
* @type {string}
|
|
6456
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6457
|
-
*/
|
|
6458
|
-
readonly keyword?: string;
|
|
6459
|
-
/**
|
|
6460
|
-
* The comment is hidden from the theme side.
|
|
6461
|
-
* @type {boolean}
|
|
6462
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6463
|
-
*/
|
|
6464
|
-
readonly hidden?: boolean;
|
|
6465
|
-
/**
|
|
6466
|
-
* Comment top display.
|
|
6467
|
-
* @type {boolean}
|
|
6468
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6469
|
-
*/
|
|
6470
|
-
readonly top?: boolean;
|
|
6471
6484
|
/**
|
|
6472
6485
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6473
6486
|
* @type {boolean}
|
|
@@ -6511,17 +6524,29 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6511
6524
|
*/
|
|
6512
6525
|
readonly subjectName?: string;
|
|
6513
6526
|
/**
|
|
6514
|
-
*
|
|
6515
|
-
* @type {
|
|
6527
|
+
* Comments filtered by keyword.
|
|
6528
|
+
* @type {string}
|
|
6516
6529
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6517
6530
|
*/
|
|
6518
|
-
readonly
|
|
6531
|
+
readonly keyword?: string;
|
|
6519
6532
|
/**
|
|
6520
|
-
* The
|
|
6533
|
+
* The comment is hidden from the theme side.
|
|
6534
|
+
* @type {boolean}
|
|
6535
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6536
|
+
*/
|
|
6537
|
+
readonly hidden?: boolean;
|
|
6538
|
+
/**
|
|
6539
|
+
* Comment top display.
|
|
6540
|
+
* @type {boolean}
|
|
6541
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6542
|
+
*/
|
|
6543
|
+
readonly top?: boolean;
|
|
6544
|
+
/**
|
|
6545
|
+
* Size of one page. Zero indicates no limit.
|
|
6521
6546
|
* @type {number}
|
|
6522
6547
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6523
6548
|
*/
|
|
6524
|
-
readonly
|
|
6549
|
+
readonly size?: number;
|
|
6525
6550
|
/**
|
|
6526
6551
|
* Label selector for filtering.
|
|
6527
6552
|
* @type {Array<string>}
|
|
@@ -6534,6 +6559,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6534
6559
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6535
6560
|
*/
|
|
6536
6561
|
readonly fieldSelector?: Array<string>;
|
|
6562
|
+
/**
|
|
6563
|
+
* The page number. Zero indicates no page.
|
|
6564
|
+
* @type {number}
|
|
6565
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6566
|
+
*/
|
|
6567
|
+
readonly page?: number;
|
|
6537
6568
|
}
|
|
6538
6569
|
/**
|
|
6539
6570
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -6793,6 +6824,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
6793
6824
|
* @throws {RequiredError}
|
|
6794
6825
|
*/
|
|
6795
6826
|
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6827
|
+
/**
|
|
6828
|
+
* List plugins using query criteria and sort params
|
|
6829
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
6830
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
6831
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
6832
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6833
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6834
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6835
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6836
|
+
* @param {*} [options] Override http request option.
|
|
6837
|
+
* @throws {RequiredError}
|
|
6838
|
+
*/
|
|
6839
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6796
6840
|
};
|
|
6797
6841
|
/**
|
|
6798
6842
|
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
@@ -6806,6 +6850,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
6806
6850
|
* @throws {RequiredError}
|
|
6807
6851
|
*/
|
|
6808
6852
|
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
6853
|
+
/**
|
|
6854
|
+
* List plugins using query criteria and sort params
|
|
6855
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
6856
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
6857
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
6858
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6859
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6860
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6861
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6862
|
+
* @param {*} [options] Override http request option.
|
|
6863
|
+
* @throws {RequiredError}
|
|
6864
|
+
*/
|
|
6865
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
6809
6866
|
};
|
|
6810
6867
|
/**
|
|
6811
6868
|
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
@@ -6819,6 +6876,19 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
6819
6876
|
* @throws {RequiredError}
|
|
6820
6877
|
*/
|
|
6821
6878
|
installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
|
|
6879
|
+
/**
|
|
6880
|
+
* List plugins using query criteria and sort params
|
|
6881
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
6882
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
6883
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
6884
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6885
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6886
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6887
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6888
|
+
* @param {*} [options] Override http request option.
|
|
6889
|
+
* @throws {RequiredError}
|
|
6890
|
+
*/
|
|
6891
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<PluginList>;
|
|
6822
6892
|
};
|
|
6823
6893
|
/**
|
|
6824
6894
|
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -6833,6 +6903,55 @@ interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
|
|
|
6833
6903
|
*/
|
|
6834
6904
|
readonly file: any;
|
|
6835
6905
|
}
|
|
6906
|
+
/**
|
|
6907
|
+
* Request parameters for listPlugins operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
6908
|
+
* @export
|
|
6909
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest
|
|
6910
|
+
*/
|
|
6911
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
6912
|
+
/**
|
|
6913
|
+
* Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
6914
|
+
* @type {Array<string>}
|
|
6915
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6916
|
+
*/
|
|
6917
|
+
readonly sort?: Array<string>;
|
|
6918
|
+
/**
|
|
6919
|
+
* Keyword of plugin name or description
|
|
6920
|
+
* @type {string}
|
|
6921
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6922
|
+
*/
|
|
6923
|
+
readonly keyword?: string;
|
|
6924
|
+
/**
|
|
6925
|
+
* Whether the plugin is enabled
|
|
6926
|
+
* @type {boolean}
|
|
6927
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6928
|
+
*/
|
|
6929
|
+
readonly enabled?: boolean;
|
|
6930
|
+
/**
|
|
6931
|
+
* Size of one page. Zero indicates no limit.
|
|
6932
|
+
* @type {number}
|
|
6933
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6934
|
+
*/
|
|
6935
|
+
readonly size?: number;
|
|
6936
|
+
/**
|
|
6937
|
+
* Label selector for filtering.
|
|
6938
|
+
* @type {Array<string>}
|
|
6939
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6940
|
+
*/
|
|
6941
|
+
readonly labelSelector?: Array<string>;
|
|
6942
|
+
/**
|
|
6943
|
+
* Field selector for filtering.
|
|
6944
|
+
* @type {Array<string>}
|
|
6945
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6946
|
+
*/
|
|
6947
|
+
readonly fieldSelector?: Array<string>;
|
|
6948
|
+
/**
|
|
6949
|
+
* The page number. Zero indicates no page.
|
|
6950
|
+
* @type {number}
|
|
6951
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
6952
|
+
*/
|
|
6953
|
+
readonly page?: number;
|
|
6954
|
+
}
|
|
6836
6955
|
/**
|
|
6837
6956
|
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
6838
6957
|
* @export
|
|
@@ -6848,6 +6967,14 @@ declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
6848
6967
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
6849
6968
|
*/
|
|
6850
6969
|
installPlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
6970
|
+
/**
|
|
6971
|
+
* List plugins using query criteria and sort params
|
|
6972
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest} requestParameters Request parameters.
|
|
6973
|
+
* @param {*} [options] Override http request option.
|
|
6974
|
+
* @throws {RequiredError}
|
|
6975
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
6976
|
+
*/
|
|
6977
|
+
listPlugins(requestParameters?: ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PluginList, any>>;
|
|
6851
6978
|
}
|
|
6852
6979
|
|
|
6853
6980
|
/**
|
|
@@ -6865,21 +6992,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6865
6992
|
/**
|
|
6866
6993
|
* List posts.
|
|
6867
6994
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6868
|
-
* @param {
|
|
6869
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6870
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6871
|
-
* @param {Array<string>} [contributor]
|
|
6995
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6872
6996
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6873
6997
|
* @param {Array<string>} [category]
|
|
6874
|
-
* @param {
|
|
6998
|
+
* @param {Array<string>} [contributor]
|
|
6999
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7000
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7001
|
+
* @param {Array<string>} [tag]
|
|
6875
7002
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6876
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6877
7003
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6878
7004
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7005
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6879
7006
|
* @param {*} [options] Override http request option.
|
|
6880
7007
|
* @throws {RequiredError}
|
|
6881
7008
|
*/
|
|
6882
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7009
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6883
7010
|
/**
|
|
6884
7011
|
* Publish a post.
|
|
6885
7012
|
* @param {string} name
|
|
@@ -6911,21 +7038,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6911
7038
|
/**
|
|
6912
7039
|
* List posts.
|
|
6913
7040
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6914
|
-
* @param {
|
|
6915
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6916
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6917
|
-
* @param {Array<string>} [contributor]
|
|
7041
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6918
7042
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6919
7043
|
* @param {Array<string>} [category]
|
|
6920
|
-
* @param {
|
|
7044
|
+
* @param {Array<string>} [contributor]
|
|
7045
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7046
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7047
|
+
* @param {Array<string>} [tag]
|
|
6921
7048
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6922
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6923
7049
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6924
7050
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7051
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6925
7052
|
* @param {*} [options] Override http request option.
|
|
6926
7053
|
* @throws {RequiredError}
|
|
6927
7054
|
*/
|
|
6928
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7055
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6929
7056
|
/**
|
|
6930
7057
|
* Publish a post.
|
|
6931
7058
|
* @param {string} name
|
|
@@ -6957,21 +7084,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6957
7084
|
/**
|
|
6958
7085
|
* List posts.
|
|
6959
7086
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6960
|
-
* @param {
|
|
6961
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6962
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
6963
|
-
* @param {Array<string>} [contributor]
|
|
7087
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6964
7088
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6965
7089
|
* @param {Array<string>} [category]
|
|
6966
|
-
* @param {
|
|
7090
|
+
* @param {Array<string>} [contributor]
|
|
7091
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7092
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7093
|
+
* @param {Array<string>} [tag]
|
|
6967
7094
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6968
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6969
7095
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6970
7096
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7097
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6971
7098
|
* @param {*} [options] Override http request option.
|
|
6972
7099
|
* @throws {RequiredError}
|
|
6973
7100
|
*/
|
|
6974
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7101
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6975
7102
|
/**
|
|
6976
7103
|
* Publish a post.
|
|
6977
7104
|
* @param {string} name
|
|
@@ -7014,23 +7141,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7014
7141
|
*/
|
|
7015
7142
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7016
7143
|
/**
|
|
7017
|
-
*
|
|
7018
|
-
* @type {
|
|
7144
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7145
|
+
* @type {boolean}
|
|
7019
7146
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7020
7147
|
*/
|
|
7021
|
-
readonly
|
|
7148
|
+
readonly sortOrder?: boolean;
|
|
7022
7149
|
/**
|
|
7023
7150
|
*
|
|
7024
|
-
* @type {'
|
|
7151
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7025
7152
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7026
7153
|
*/
|
|
7027
|
-
readonly
|
|
7154
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7028
7155
|
/**
|
|
7029
|
-
*
|
|
7030
|
-
* @type {string}
|
|
7156
|
+
*
|
|
7157
|
+
* @type {Array<string>}
|
|
7031
7158
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7032
7159
|
*/
|
|
7033
|
-
readonly
|
|
7160
|
+
readonly category?: Array<string>;
|
|
7034
7161
|
/**
|
|
7035
7162
|
*
|
|
7036
7163
|
* @type {Array<string>}
|
|
@@ -7038,35 +7165,29 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7038
7165
|
*/
|
|
7039
7166
|
readonly contributor?: Array<string>;
|
|
7040
7167
|
/**
|
|
7041
|
-
*
|
|
7042
|
-
* @type {
|
|
7168
|
+
* Posts filtered by keyword.
|
|
7169
|
+
* @type {string}
|
|
7043
7170
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7044
7171
|
*/
|
|
7045
|
-
readonly
|
|
7172
|
+
readonly keyword?: string;
|
|
7046
7173
|
/**
|
|
7047
7174
|
*
|
|
7048
|
-
* @type {
|
|
7175
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7049
7176
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7050
7177
|
*/
|
|
7051
|
-
readonly
|
|
7178
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7052
7179
|
/**
|
|
7053
|
-
*
|
|
7054
|
-
* @type {
|
|
7180
|
+
*
|
|
7181
|
+
* @type {Array<string>}
|
|
7055
7182
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7056
7183
|
*/
|
|
7057
|
-
readonly
|
|
7184
|
+
readonly tag?: Array<string>;
|
|
7058
7185
|
/**
|
|
7059
7186
|
* Size of one page. Zero indicates no limit.
|
|
7060
7187
|
* @type {number}
|
|
7061
7188
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7062
7189
|
*/
|
|
7063
7190
|
readonly size?: number;
|
|
7064
|
-
/**
|
|
7065
|
-
* The page number. Zero indicates no page.
|
|
7066
|
-
* @type {number}
|
|
7067
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7068
|
-
*/
|
|
7069
|
-
readonly page?: number;
|
|
7070
7191
|
/**
|
|
7071
7192
|
* Label selector for filtering.
|
|
7072
7193
|
* @type {Array<string>}
|
|
@@ -7079,6 +7200,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7079
7200
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7080
7201
|
*/
|
|
7081
7202
|
readonly fieldSelector?: Array<string>;
|
|
7203
|
+
/**
|
|
7204
|
+
* The page number. Zero indicates no page.
|
|
7205
|
+
* @type {number}
|
|
7206
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7207
|
+
*/
|
|
7208
|
+
readonly page?: number;
|
|
7082
7209
|
}
|
|
7083
7210
|
/**
|
|
7084
7211
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -7162,13 +7289,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
7162
7289
|
* List replies.
|
|
7163
7290
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7164
7291
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7165
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7166
7292
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7167
7293
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7294
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7168
7295
|
* @param {*} [options] Override http request option.
|
|
7169
7296
|
* @throws {RequiredError}
|
|
7170
7297
|
*/
|
|
7171
|
-
listReplies: (commentName?: string, size?: number,
|
|
7298
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7172
7299
|
};
|
|
7173
7300
|
/**
|
|
7174
7301
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -7179,13 +7306,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
7179
7306
|
* List replies.
|
|
7180
7307
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7181
7308
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7182
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7183
7309
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7184
7310
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7311
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7185
7312
|
* @param {*} [options] Override http request option.
|
|
7186
7313
|
* @throws {RequiredError}
|
|
7187
7314
|
*/
|
|
7188
|
-
listReplies(commentName?: string, size?: number,
|
|
7315
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
7189
7316
|
};
|
|
7190
7317
|
/**
|
|
7191
7318
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -7196,13 +7323,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
7196
7323
|
* List replies.
|
|
7197
7324
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7198
7325
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7199
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7200
7326
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7201
7327
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7328
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7202
7329
|
* @param {*} [options] Override http request option.
|
|
7203
7330
|
* @throws {RequiredError}
|
|
7204
7331
|
*/
|
|
7205
|
-
listReplies(commentName?: string, size?: number,
|
|
7332
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
7206
7333
|
};
|
|
7207
7334
|
/**
|
|
7208
7335
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -7222,12 +7349,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7222
7349
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7223
7350
|
*/
|
|
7224
7351
|
readonly size?: number;
|
|
7225
|
-
/**
|
|
7226
|
-
* The page number. Zero indicates no page.
|
|
7227
|
-
* @type {number}
|
|
7228
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7229
|
-
*/
|
|
7230
|
-
readonly page?: number;
|
|
7231
7352
|
/**
|
|
7232
7353
|
* Label selector for filtering.
|
|
7233
7354
|
* @type {Array<string>}
|
|
@@ -7240,6 +7361,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7240
7361
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7241
7362
|
*/
|
|
7242
7363
|
readonly fieldSelector?: Array<string>;
|
|
7364
|
+
/**
|
|
7365
|
+
* The page number. Zero indicates no page.
|
|
7366
|
+
* @type {number}
|
|
7367
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7368
|
+
*/
|
|
7369
|
+
readonly page?: number;
|
|
7243
7370
|
}
|
|
7244
7371
|
/**
|
|
7245
7372
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -7272,15 +7399,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7272
7399
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7273
7400
|
/**
|
|
7274
7401
|
* List single pages.
|
|
7275
|
-
* @param {
|
|
7402
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7403
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7404
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7405
|
+
* @param {Array<string>} [contributor]
|
|
7406
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7407
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7276
7408
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7277
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7278
7409
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7279
7410
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7411
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7280
7412
|
* @param {*} [options] Override http request option.
|
|
7281
7413
|
* @throws {RequiredError}
|
|
7282
7414
|
*/
|
|
7283
|
-
listSinglePages: (
|
|
7415
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7284
7416
|
/**
|
|
7285
7417
|
* Publish a single page.
|
|
7286
7418
|
* @param {string} name
|
|
@@ -7311,15 +7443,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7311
7443
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
7312
7444
|
/**
|
|
7313
7445
|
* List single pages.
|
|
7314
|
-
* @param {
|
|
7446
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7447
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7448
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7449
|
+
* @param {Array<string>} [contributor]
|
|
7450
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7451
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7315
7452
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7316
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7317
7453
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7318
7454
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7455
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7319
7456
|
* @param {*} [options] Override http request option.
|
|
7320
7457
|
* @throws {RequiredError}
|
|
7321
7458
|
*/
|
|
7322
|
-
listSinglePages(
|
|
7459
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: 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<ListedSinglePageList>>;
|
|
7323
7460
|
/**
|
|
7324
7461
|
* Publish a single page.
|
|
7325
7462
|
* @param {string} name
|
|
@@ -7350,15 +7487,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7350
7487
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
7351
7488
|
/**
|
|
7352
7489
|
* List single pages.
|
|
7353
|
-
* @param {
|
|
7490
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7491
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7492
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
7493
|
+
* @param {Array<string>} [contributor]
|
|
7494
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7495
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7354
7496
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7355
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7356
7497
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7357
7498
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7499
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7358
7500
|
* @param {*} [options] Override http request option.
|
|
7359
7501
|
* @throws {RequiredError}
|
|
7360
7502
|
*/
|
|
7361
|
-
listSinglePages(
|
|
7503
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7362
7504
|
/**
|
|
7363
7505
|
* Publish a single page.
|
|
7364
7506
|
* @param {string} name
|
|
@@ -7394,24 +7536,48 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
7394
7536
|
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
7395
7537
|
*/
|
|
7396
7538
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
7539
|
+
/**
|
|
7540
|
+
* SinglePage collation.
|
|
7541
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
7542
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7543
|
+
*/
|
|
7544
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7545
|
+
/**
|
|
7546
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7547
|
+
* @type {boolean}
|
|
7548
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7549
|
+
*/
|
|
7550
|
+
readonly sortOrder?: boolean;
|
|
7551
|
+
/**
|
|
7552
|
+
*
|
|
7553
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'}
|
|
7554
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7555
|
+
*/
|
|
7556
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED';
|
|
7397
7557
|
/**
|
|
7398
7558
|
*
|
|
7399
7559
|
* @type {Array<string>}
|
|
7400
7560
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7401
7561
|
*/
|
|
7402
|
-
readonly
|
|
7562
|
+
readonly contributor?: Array<string>;
|
|
7403
7563
|
/**
|
|
7404
|
-
*
|
|
7405
|
-
* @type {
|
|
7564
|
+
* SinglePages filtered by keyword.
|
|
7565
|
+
* @type {string}
|
|
7406
7566
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7407
7567
|
*/
|
|
7408
|
-
readonly
|
|
7568
|
+
readonly keyword?: string;
|
|
7409
7569
|
/**
|
|
7410
|
-
*
|
|
7570
|
+
*
|
|
7571
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7572
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7573
|
+
*/
|
|
7574
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7575
|
+
/**
|
|
7576
|
+
* Size of one page. Zero indicates no limit.
|
|
7411
7577
|
* @type {number}
|
|
7412
7578
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7413
7579
|
*/
|
|
7414
|
-
readonly
|
|
7580
|
+
readonly size?: number;
|
|
7415
7581
|
/**
|
|
7416
7582
|
* Label selector for filtering.
|
|
7417
7583
|
* @type {Array<string>}
|
|
@@ -7424,6 +7590,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7424
7590
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7425
7591
|
*/
|
|
7426
7592
|
readonly fieldSelector?: Array<string>;
|
|
7593
|
+
/**
|
|
7594
|
+
* The page number. Zero indicates no page.
|
|
7595
|
+
* @type {number}
|
|
7596
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7597
|
+
*/
|
|
7598
|
+
readonly page?: number;
|
|
7427
7599
|
}
|
|
7428
7600
|
/**
|
|
7429
7601
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -7536,7 +7708,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
7536
7708
|
* @param {*} [options] Override http request option.
|
|
7537
7709
|
* @throws {RequiredError}
|
|
7538
7710
|
*/
|
|
7539
|
-
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7711
|
+
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
7540
7712
|
};
|
|
7541
7713
|
/**
|
|
7542
7714
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -7556,7 +7728,7 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
7556
7728
|
* @param {*} [options] Override http request option.
|
|
7557
7729
|
* @throws {RequiredError}
|
|
7558
7730
|
*/
|
|
7559
|
-
reloadThemeSetting(name: string, options?: any): AxiosPromise<
|
|
7731
|
+
reloadThemeSetting(name: string, options?: any): AxiosPromise<Theme>;
|
|
7560
7732
|
};
|
|
7561
7733
|
/**
|
|
7562
7734
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -7606,7 +7778,7 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
7606
7778
|
* @throws {RequiredError}
|
|
7607
7779
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7608
7780
|
*/
|
|
7609
|
-
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7781
|
+
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
7610
7782
|
}
|
|
7611
7783
|
|
|
7612
7784
|
/**
|
|
@@ -11160,13 +11332,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
11160
11332
|
* @param {string} [group] Name of group
|
|
11161
11333
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11162
11334
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11163
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11164
11335
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11165
11336
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11337
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11166
11338
|
* @param {*} [options] Override http request option.
|
|
11167
11339
|
* @throws {RequiredError}
|
|
11168
11340
|
*/
|
|
11169
|
-
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11341
|
+
searchAttachments: (policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11170
11342
|
/**
|
|
11171
11343
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11172
11344
|
* @param {string} name Name of attachment
|
|
@@ -11228,13 +11400,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
11228
11400
|
* @param {string} [group] Name of group
|
|
11229
11401
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11230
11402
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11231
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11232
11403
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11233
11404
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11405
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11234
11406
|
* @param {*} [options] Override http request option.
|
|
11235
11407
|
* @throws {RequiredError}
|
|
11236
11408
|
*/
|
|
11237
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11409
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
11238
11410
|
/**
|
|
11239
11411
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11240
11412
|
* @param {string} name Name of attachment
|
|
@@ -11296,13 +11468,13 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
11296
11468
|
* @param {string} [group] Name of group
|
|
11297
11469
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
11298
11470
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
11299
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
11300
11471
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
11301
11472
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
11473
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
11302
11474
|
* @param {*} [options] Override http request option.
|
|
11303
11475
|
* @throws {RequiredError}
|
|
11304
11476
|
*/
|
|
11305
|
-
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number,
|
|
11477
|
+
searchAttachments(policy?: string, displayName?: string, group?: string, uploadedBy?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
11306
11478
|
/**
|
|
11307
11479
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
11308
11480
|
* @param {string} name Name of attachment
|
|
@@ -11427,12 +11599,6 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11427
11599
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11428
11600
|
*/
|
|
11429
11601
|
readonly size?: number;
|
|
11430
|
-
/**
|
|
11431
|
-
* The page number. Zero indicates no page.
|
|
11432
|
-
* @type {number}
|
|
11433
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11434
|
-
*/
|
|
11435
|
-
readonly page?: number;
|
|
11436
11602
|
/**
|
|
11437
11603
|
* Label selector for filtering.
|
|
11438
11604
|
* @type {Array<string>}
|
|
@@ -11445,6 +11611,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
11445
11611
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11446
11612
|
*/
|
|
11447
11613
|
readonly fieldSelector?: Array<string>;
|
|
11614
|
+
/**
|
|
11615
|
+
* The page number. Zero indicates no page.
|
|
11616
|
+
* @type {number}
|
|
11617
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
11618
|
+
*/
|
|
11619
|
+
readonly page?: number;
|
|
11448
11620
|
}
|
|
11449
11621
|
/**
|
|
11450
11622
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -14831,4 +15003,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
14831
15003
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
14832
15004
|
}
|
|
14833
15005
|
|
|
14834
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, 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, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, 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 };
|
|
15006
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, 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, ContentWrapper, Contributor, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiCreatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiDeletecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkApiGetcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiListcoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkApiUpdatecoreHaloRunV1alpha1LinkRequest, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiCreatecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiDeletecoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, CoreHaloRunV1alpha1LinkGroupApiGetcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiListcoreHaloRunV1alpha1LinkGroupRequest, CoreHaloRunV1alpha1LinkGroupApiUpdatecoreHaloRunV1alpha1LinkGroupRequest, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, 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, SubjectRef, Tag, TagList, TagSpec, TagStatus, 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 };
|