@halo-dev/api-client 0.0.42 → 0.0.44
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 +462 -95
- package/dist/index.d.ts +1195 -237
- package/dist/index.mjs +451 -96
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -435,6 +435,12 @@ interface AttachmentList {
|
|
|
435
435
|
* @memberof AttachmentList
|
|
436
436
|
*/
|
|
437
437
|
hasPrevious: boolean;
|
|
438
|
+
/**
|
|
439
|
+
* Indicates total pages.
|
|
440
|
+
* @type {number}
|
|
441
|
+
* @memberof AttachmentList
|
|
442
|
+
*/
|
|
443
|
+
totalPages: number;
|
|
438
444
|
}
|
|
439
445
|
|
|
440
446
|
/**
|
|
@@ -682,6 +688,12 @@ interface CategoryList {
|
|
|
682
688
|
* @memberof CategoryList
|
|
683
689
|
*/
|
|
684
690
|
hasPrevious: boolean;
|
|
691
|
+
/**
|
|
692
|
+
* Indicates total pages.
|
|
693
|
+
* @type {number}
|
|
694
|
+
* @memberof CategoryList
|
|
695
|
+
*/
|
|
696
|
+
totalPages: number;
|
|
685
697
|
}
|
|
686
698
|
|
|
687
699
|
/**
|
|
@@ -1048,6 +1060,12 @@ interface CommentList {
|
|
|
1048
1060
|
* @memberof CommentList
|
|
1049
1061
|
*/
|
|
1050
1062
|
hasPrevious: boolean;
|
|
1063
|
+
/**
|
|
1064
|
+
* Indicates total pages.
|
|
1065
|
+
* @type {number}
|
|
1066
|
+
* @memberof CommentList
|
|
1067
|
+
*/
|
|
1068
|
+
totalPages: number;
|
|
1051
1069
|
}
|
|
1052
1070
|
|
|
1053
1071
|
/**
|
|
@@ -1259,6 +1277,12 @@ interface CommentVoList {
|
|
|
1259
1277
|
* @memberof CommentVoList
|
|
1260
1278
|
*/
|
|
1261
1279
|
hasPrevious: boolean;
|
|
1280
|
+
/**
|
|
1281
|
+
* Indicates total pages.
|
|
1282
|
+
* @type {number}
|
|
1283
|
+
* @memberof CommentVoList
|
|
1284
|
+
*/
|
|
1285
|
+
totalPages: number;
|
|
1262
1286
|
}
|
|
1263
1287
|
|
|
1264
1288
|
/**
|
|
@@ -1428,6 +1452,12 @@ interface ConfigMapList {
|
|
|
1428
1452
|
* @memberof ConfigMapList
|
|
1429
1453
|
*/
|
|
1430
1454
|
hasPrevious: boolean;
|
|
1455
|
+
/**
|
|
1456
|
+
* Indicates total pages.
|
|
1457
|
+
* @type {number}
|
|
1458
|
+
* @memberof ConfigMapList
|
|
1459
|
+
*/
|
|
1460
|
+
totalPages: number;
|
|
1431
1461
|
}
|
|
1432
1462
|
|
|
1433
1463
|
/**
|
|
@@ -1534,6 +1564,12 @@ interface ContentRequest {
|
|
|
1534
1564
|
* @interface ContentResponse
|
|
1535
1565
|
*/
|
|
1536
1566
|
interface ContentResponse {
|
|
1567
|
+
/**
|
|
1568
|
+
* The headSnapshotName if updated or new name if created.
|
|
1569
|
+
* @type {string}
|
|
1570
|
+
* @memberof ContentResponse
|
|
1571
|
+
*/
|
|
1572
|
+
snapshotName: string;
|
|
1537
1573
|
/**
|
|
1538
1574
|
*
|
|
1539
1575
|
* @type {string}
|
|
@@ -1725,6 +1761,12 @@ interface CounterList {
|
|
|
1725
1761
|
* @memberof CounterList
|
|
1726
1762
|
*/
|
|
1727
1763
|
hasPrevious: boolean;
|
|
1764
|
+
/**
|
|
1765
|
+
* Indicates total pages.
|
|
1766
|
+
* @type {number}
|
|
1767
|
+
* @memberof CounterList
|
|
1768
|
+
*/
|
|
1769
|
+
totalPages: number;
|
|
1728
1770
|
}
|
|
1729
1771
|
|
|
1730
1772
|
/**
|
|
@@ -1975,10 +2017,10 @@ interface Excerpt {
|
|
|
1975
2017
|
interface Extension {
|
|
1976
2018
|
/**
|
|
1977
2019
|
*
|
|
1978
|
-
* @type {
|
|
2020
|
+
* @type {string}
|
|
1979
2021
|
* @memberof Extension
|
|
1980
2022
|
*/
|
|
1981
|
-
|
|
2023
|
+
kind: string;
|
|
1982
2024
|
/**
|
|
1983
2025
|
*
|
|
1984
2026
|
* @type {string}
|
|
@@ -1987,10 +2029,10 @@ interface Extension {
|
|
|
1987
2029
|
apiVersion: string;
|
|
1988
2030
|
/**
|
|
1989
2031
|
*
|
|
1990
|
-
* @type {
|
|
2032
|
+
* @type {Metadata}
|
|
1991
2033
|
* @memberof Extension
|
|
1992
2034
|
*/
|
|
1993
|
-
|
|
2035
|
+
metadata: Metadata;
|
|
1994
2036
|
}
|
|
1995
2037
|
|
|
1996
2038
|
/**
|
|
@@ -2221,6 +2263,12 @@ interface GroupList {
|
|
|
2221
2263
|
* @memberof GroupList
|
|
2222
2264
|
*/
|
|
2223
2265
|
hasPrevious: boolean;
|
|
2266
|
+
/**
|
|
2267
|
+
* Indicates total pages.
|
|
2268
|
+
* @type {number}
|
|
2269
|
+
* @memberof GroupList
|
|
2270
|
+
*/
|
|
2271
|
+
totalPages: number;
|
|
2224
2272
|
}
|
|
2225
2273
|
|
|
2226
2274
|
/**
|
|
@@ -2358,6 +2406,12 @@ interface ListedCommentList {
|
|
|
2358
2406
|
* @memberof ListedCommentList
|
|
2359
2407
|
*/
|
|
2360
2408
|
hasPrevious: boolean;
|
|
2409
|
+
/**
|
|
2410
|
+
* Indicates total pages.
|
|
2411
|
+
* @type {number}
|
|
2412
|
+
* @memberof ListedCommentList
|
|
2413
|
+
*/
|
|
2414
|
+
totalPages: number;
|
|
2361
2415
|
}
|
|
2362
2416
|
|
|
2363
2417
|
/**
|
|
@@ -2921,6 +2975,12 @@ interface ListedPostList {
|
|
|
2921
2975
|
* @memberof ListedPostList
|
|
2922
2976
|
*/
|
|
2923
2977
|
hasPrevious: boolean;
|
|
2978
|
+
/**
|
|
2979
|
+
* Indicates total pages.
|
|
2980
|
+
* @type {number}
|
|
2981
|
+
* @memberof ListedPostList
|
|
2982
|
+
*/
|
|
2983
|
+
totalPages: number;
|
|
2924
2984
|
}
|
|
2925
2985
|
|
|
2926
2986
|
/**
|
|
@@ -3157,6 +3217,12 @@ interface ListedReplyList {
|
|
|
3157
3217
|
* @memberof ListedReplyList
|
|
3158
3218
|
*/
|
|
3159
3219
|
hasPrevious: boolean;
|
|
3220
|
+
/**
|
|
3221
|
+
* Indicates total pages.
|
|
3222
|
+
* @type {number}
|
|
3223
|
+
* @memberof ListedReplyList
|
|
3224
|
+
*/
|
|
3225
|
+
totalPages: number;
|
|
3160
3226
|
}
|
|
3161
3227
|
|
|
3162
3228
|
/**
|
|
@@ -3523,6 +3589,12 @@ interface ListedSinglePageList {
|
|
|
3523
3589
|
* @memberof ListedSinglePageList
|
|
3524
3590
|
*/
|
|
3525
3591
|
hasPrevious: boolean;
|
|
3592
|
+
/**
|
|
3593
|
+
* Indicates total pages.
|
|
3594
|
+
* @type {number}
|
|
3595
|
+
* @memberof ListedSinglePageList
|
|
3596
|
+
*/
|
|
3597
|
+
totalPages: number;
|
|
3526
3598
|
}
|
|
3527
3599
|
|
|
3528
3600
|
/**
|
|
@@ -3864,6 +3936,12 @@ interface MenuItemList {
|
|
|
3864
3936
|
* @memberof MenuItemList
|
|
3865
3937
|
*/
|
|
3866
3938
|
hasPrevious: boolean;
|
|
3939
|
+
/**
|
|
3940
|
+
* Indicates total pages.
|
|
3941
|
+
* @type {number}
|
|
3942
|
+
* @memberof MenuItemList
|
|
3943
|
+
*/
|
|
3944
|
+
totalPages: number;
|
|
3867
3945
|
}
|
|
3868
3946
|
|
|
3869
3947
|
/**
|
|
@@ -3932,6 +4010,12 @@ interface MenuList {
|
|
|
3932
4010
|
* @memberof MenuList
|
|
3933
4011
|
*/
|
|
3934
4012
|
hasPrevious: boolean;
|
|
4013
|
+
/**
|
|
4014
|
+
* Indicates total pages.
|
|
4015
|
+
* @type {number}
|
|
4016
|
+
* @memberof MenuList
|
|
4017
|
+
*/
|
|
4018
|
+
totalPages: number;
|
|
3935
4019
|
}
|
|
3936
4020
|
|
|
3937
4021
|
/**
|
|
@@ -4099,6 +4183,12 @@ interface PersonalAccessTokenList {
|
|
|
4099
4183
|
* @memberof PersonalAccessTokenList
|
|
4100
4184
|
*/
|
|
4101
4185
|
hasPrevious: boolean;
|
|
4186
|
+
/**
|
|
4187
|
+
* Indicates total pages.
|
|
4188
|
+
* @type {number}
|
|
4189
|
+
* @memberof PersonalAccessTokenList
|
|
4190
|
+
*/
|
|
4191
|
+
totalPages: number;
|
|
4102
4192
|
}
|
|
4103
4193
|
|
|
4104
4194
|
/**
|
|
@@ -4394,6 +4484,12 @@ interface PluginList {
|
|
|
4394
4484
|
* @memberof PluginList
|
|
4395
4485
|
*/
|
|
4396
4486
|
hasPrevious: boolean;
|
|
4487
|
+
/**
|
|
4488
|
+
* Indicates total pages.
|
|
4489
|
+
* @type {number}
|
|
4490
|
+
* @memberof PluginList
|
|
4491
|
+
*/
|
|
4492
|
+
totalPages: number;
|
|
4397
4493
|
}
|
|
4398
4494
|
|
|
4399
4495
|
/**
|
|
@@ -4544,6 +4640,12 @@ interface PolicyList {
|
|
|
4544
4640
|
* @memberof PolicyList
|
|
4545
4641
|
*/
|
|
4546
4642
|
hasPrevious: boolean;
|
|
4643
|
+
/**
|
|
4644
|
+
* Indicates total pages.
|
|
4645
|
+
* @type {number}
|
|
4646
|
+
* @memberof PolicyList
|
|
4647
|
+
*/
|
|
4648
|
+
totalPages: number;
|
|
4547
4649
|
}
|
|
4548
4650
|
|
|
4549
4651
|
/**
|
|
@@ -4737,6 +4839,111 @@ interface PolicyTemplateList {
|
|
|
4737
4839
|
* @memberof PolicyTemplateList
|
|
4738
4840
|
*/
|
|
4739
4841
|
hasPrevious: boolean;
|
|
4842
|
+
/**
|
|
4843
|
+
* Indicates total pages.
|
|
4844
|
+
* @type {number}
|
|
4845
|
+
* @memberof PolicyTemplateList
|
|
4846
|
+
*/
|
|
4847
|
+
totalPages: number;
|
|
4848
|
+
}
|
|
4849
|
+
|
|
4850
|
+
/**
|
|
4851
|
+
* Halo Next API
|
|
4852
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4853
|
+
*
|
|
4854
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4855
|
+
*
|
|
4856
|
+
*
|
|
4857
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4858
|
+
* https://openapi-generator.tech
|
|
4859
|
+
* Do not edit the class manually.
|
|
4860
|
+
*/
|
|
4861
|
+
/**
|
|
4862
|
+
*
|
|
4863
|
+
* @export
|
|
4864
|
+
* @interface PostHit
|
|
4865
|
+
*/
|
|
4866
|
+
interface PostHit {
|
|
4867
|
+
/**
|
|
4868
|
+
*
|
|
4869
|
+
* @type {string}
|
|
4870
|
+
* @memberof PostHit
|
|
4871
|
+
*/
|
|
4872
|
+
name?: string;
|
|
4873
|
+
/**
|
|
4874
|
+
*
|
|
4875
|
+
* @type {string}
|
|
4876
|
+
* @memberof PostHit
|
|
4877
|
+
*/
|
|
4878
|
+
title?: string;
|
|
4879
|
+
/**
|
|
4880
|
+
*
|
|
4881
|
+
* @type {string}
|
|
4882
|
+
* @memberof PostHit
|
|
4883
|
+
*/
|
|
4884
|
+
content?: string;
|
|
4885
|
+
/**
|
|
4886
|
+
*
|
|
4887
|
+
* @type {string}
|
|
4888
|
+
* @memberof PostHit
|
|
4889
|
+
*/
|
|
4890
|
+
publishTimestamp?: string;
|
|
4891
|
+
/**
|
|
4892
|
+
*
|
|
4893
|
+
* @type {string}
|
|
4894
|
+
* @memberof PostHit
|
|
4895
|
+
*/
|
|
4896
|
+
permalink?: string;
|
|
4897
|
+
}
|
|
4898
|
+
|
|
4899
|
+
/**
|
|
4900
|
+
* Halo Next API
|
|
4901
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4902
|
+
*
|
|
4903
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4904
|
+
*
|
|
4905
|
+
*
|
|
4906
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4907
|
+
* https://openapi-generator.tech
|
|
4908
|
+
* Do not edit the class manually.
|
|
4909
|
+
*/
|
|
4910
|
+
|
|
4911
|
+
/**
|
|
4912
|
+
*
|
|
4913
|
+
* @export
|
|
4914
|
+
* @interface PostHits
|
|
4915
|
+
*/
|
|
4916
|
+
interface PostHits {
|
|
4917
|
+
/**
|
|
4918
|
+
*
|
|
4919
|
+
* @type {Array<PostHit>}
|
|
4920
|
+
* @memberof PostHits
|
|
4921
|
+
*/
|
|
4922
|
+
hits?: Array<PostHit>;
|
|
4923
|
+
/**
|
|
4924
|
+
*
|
|
4925
|
+
* @type {string}
|
|
4926
|
+
* @memberof PostHits
|
|
4927
|
+
*/
|
|
4928
|
+
keyword?: string;
|
|
4929
|
+
/**
|
|
4930
|
+
*
|
|
4931
|
+
* @type {number}
|
|
4932
|
+
* @memberof PostHits
|
|
4933
|
+
*/
|
|
4934
|
+
total?: number;
|
|
4935
|
+
/**
|
|
4936
|
+
*
|
|
4937
|
+
* @type {number}
|
|
4938
|
+
* @memberof PostHits
|
|
4939
|
+
*/
|
|
4940
|
+
limit?: number;
|
|
4941
|
+
/**
|
|
4942
|
+
*
|
|
4943
|
+
* @type {number}
|
|
4944
|
+
* @memberof PostHits
|
|
4945
|
+
*/
|
|
4946
|
+
processingTimeMillis?: number;
|
|
4740
4947
|
}
|
|
4741
4948
|
|
|
4742
4949
|
/**
|
|
@@ -4805,6 +5012,12 @@ interface PostList {
|
|
|
4805
5012
|
* @memberof PostList
|
|
4806
5013
|
*/
|
|
4807
5014
|
hasPrevious: boolean;
|
|
5015
|
+
/**
|
|
5016
|
+
* Indicates total pages.
|
|
5017
|
+
* @type {number}
|
|
5018
|
+
* @memberof PostList
|
|
5019
|
+
*/
|
|
5020
|
+
totalPages: number;
|
|
4808
5021
|
}
|
|
4809
5022
|
|
|
4810
5023
|
/**
|
|
@@ -4905,6 +5118,12 @@ interface ReplyList {
|
|
|
4905
5118
|
* @memberof ReplyList
|
|
4906
5119
|
*/
|
|
4907
5120
|
hasPrevious: boolean;
|
|
5121
|
+
/**
|
|
5122
|
+
* Indicates total pages.
|
|
5123
|
+
* @type {number}
|
|
5124
|
+
* @memberof ReplyList
|
|
5125
|
+
*/
|
|
5126
|
+
totalPages: number;
|
|
4908
5127
|
}
|
|
4909
5128
|
|
|
4910
5129
|
/**
|
|
@@ -5061,6 +5280,12 @@ interface ReplyVoList {
|
|
|
5061
5280
|
* @memberof ReplyVoList
|
|
5062
5281
|
*/
|
|
5063
5282
|
hasPrevious: boolean;
|
|
5283
|
+
/**
|
|
5284
|
+
* Indicates total pages.
|
|
5285
|
+
* @type {number}
|
|
5286
|
+
* @memberof ReplyVoList
|
|
5287
|
+
*/
|
|
5288
|
+
totalPages: number;
|
|
5064
5289
|
}
|
|
5065
5290
|
|
|
5066
5291
|
/**
|
|
@@ -5205,6 +5430,12 @@ interface ReverseProxyList {
|
|
|
5205
5430
|
* @memberof ReverseProxyList
|
|
5206
5431
|
*/
|
|
5207
5432
|
hasPrevious: boolean;
|
|
5433
|
+
/**
|
|
5434
|
+
* Indicates total pages.
|
|
5435
|
+
* @type {number}
|
|
5436
|
+
* @memberof ReverseProxyList
|
|
5437
|
+
*/
|
|
5438
|
+
totalPages: number;
|
|
5208
5439
|
}
|
|
5209
5440
|
|
|
5210
5441
|
/**
|
|
@@ -5441,6 +5672,12 @@ interface RoleBindingList {
|
|
|
5441
5672
|
* @memberof RoleBindingList
|
|
5442
5673
|
*/
|
|
5443
5674
|
hasPrevious: boolean;
|
|
5675
|
+
/**
|
|
5676
|
+
* Indicates total pages.
|
|
5677
|
+
* @type {number}
|
|
5678
|
+
* @memberof RoleBindingList
|
|
5679
|
+
*/
|
|
5680
|
+
totalPages: number;
|
|
5444
5681
|
}
|
|
5445
5682
|
|
|
5446
5683
|
/**
|
|
@@ -5509,6 +5746,12 @@ interface RoleList {
|
|
|
5509
5746
|
* @memberof RoleList
|
|
5510
5747
|
*/
|
|
5511
5748
|
hasPrevious: boolean;
|
|
5749
|
+
/**
|
|
5750
|
+
* Indicates total pages.
|
|
5751
|
+
* @type {number}
|
|
5752
|
+
* @memberof RoleList
|
|
5753
|
+
*/
|
|
5754
|
+
totalPages: number;
|
|
5512
5755
|
}
|
|
5513
5756
|
|
|
5514
5757
|
/**
|
|
@@ -5522,56 +5765,49 @@ interface RoleList {
|
|
|
5522
5765
|
* https://openapi-generator.tech
|
|
5523
5766
|
* Do not edit the class manually.
|
|
5524
5767
|
*/
|
|
5768
|
+
|
|
5525
5769
|
/**
|
|
5526
5770
|
*
|
|
5527
5771
|
* @export
|
|
5528
|
-
* @interface
|
|
5772
|
+
* @interface SearchEngineSpec
|
|
5529
5773
|
*/
|
|
5530
|
-
interface
|
|
5774
|
+
interface SearchEngineSpec {
|
|
5531
5775
|
/**
|
|
5532
5776
|
*
|
|
5533
5777
|
* @type {string}
|
|
5534
|
-
* @memberof
|
|
5778
|
+
* @memberof SearchEngineSpec
|
|
5535
5779
|
*/
|
|
5536
|
-
|
|
5780
|
+
logo?: string;
|
|
5537
5781
|
/**
|
|
5538
5782
|
*
|
|
5539
5783
|
* @type {string}
|
|
5540
|
-
* @memberof
|
|
5784
|
+
* @memberof SearchEngineSpec
|
|
5541
5785
|
*/
|
|
5542
|
-
|
|
5786
|
+
website?: string;
|
|
5543
5787
|
/**
|
|
5544
5788
|
*
|
|
5545
|
-
* @type {
|
|
5546
|
-
* @memberof
|
|
5789
|
+
* @type {string}
|
|
5790
|
+
* @memberof SearchEngineSpec
|
|
5547
5791
|
*/
|
|
5548
|
-
|
|
5549
|
-
}
|
|
5550
|
-
|
|
5551
|
-
/**
|
|
5552
|
-
* Halo Next API
|
|
5553
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5554
|
-
*
|
|
5555
|
-
* The version of the OpenAPI document: 2.0.0
|
|
5556
|
-
*
|
|
5557
|
-
*
|
|
5558
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5559
|
-
* https://openapi-generator.tech
|
|
5560
|
-
* Do not edit the class manually.
|
|
5561
|
-
*/
|
|
5562
|
-
|
|
5563
|
-
/**
|
|
5564
|
-
*
|
|
5565
|
-
* @export
|
|
5566
|
-
* @interface SettingSpec
|
|
5567
|
-
*/
|
|
5568
|
-
interface SettingSpec {
|
|
5792
|
+
displayName: string;
|
|
5569
5793
|
/**
|
|
5570
5794
|
*
|
|
5571
|
-
* @type {
|
|
5572
|
-
* @memberof
|
|
5795
|
+
* @type {string}
|
|
5796
|
+
* @memberof SearchEngineSpec
|
|
5573
5797
|
*/
|
|
5574
|
-
|
|
5798
|
+
description?: string;
|
|
5799
|
+
/**
|
|
5800
|
+
*
|
|
5801
|
+
* @type {Ref}
|
|
5802
|
+
* @memberof SearchEngineSpec
|
|
5803
|
+
*/
|
|
5804
|
+
settingRef?: Ref;
|
|
5805
|
+
/**
|
|
5806
|
+
*
|
|
5807
|
+
* @type {string}
|
|
5808
|
+
* @memberof SearchEngineSpec
|
|
5809
|
+
*/
|
|
5810
|
+
postSearchImpl?: string;
|
|
5575
5811
|
}
|
|
5576
5812
|
|
|
5577
5813
|
/**
|
|
@@ -5589,31 +5825,31 @@ interface SettingSpec {
|
|
|
5589
5825
|
/**
|
|
5590
5826
|
*
|
|
5591
5827
|
* @export
|
|
5592
|
-
* @interface
|
|
5828
|
+
* @interface SearchEngine
|
|
5593
5829
|
*/
|
|
5594
|
-
interface
|
|
5830
|
+
interface SearchEngine {
|
|
5595
5831
|
/**
|
|
5596
5832
|
*
|
|
5597
|
-
* @type {
|
|
5598
|
-
* @memberof
|
|
5833
|
+
* @type {SearchEngineSpec}
|
|
5834
|
+
* @memberof SearchEngine
|
|
5599
5835
|
*/
|
|
5600
|
-
spec:
|
|
5836
|
+
spec: SearchEngineSpec;
|
|
5601
5837
|
/**
|
|
5602
5838
|
*
|
|
5603
5839
|
* @type {string}
|
|
5604
|
-
* @memberof
|
|
5840
|
+
* @memberof SearchEngine
|
|
5605
5841
|
*/
|
|
5606
5842
|
apiVersion: string;
|
|
5607
5843
|
/**
|
|
5608
5844
|
*
|
|
5609
5845
|
* @type {string}
|
|
5610
|
-
* @memberof
|
|
5846
|
+
* @memberof SearchEngine
|
|
5611
5847
|
*/
|
|
5612
5848
|
kind: string;
|
|
5613
5849
|
/**
|
|
5614
5850
|
*
|
|
5615
5851
|
* @type {Metadata}
|
|
5616
|
-
* @memberof
|
|
5852
|
+
* @memberof SearchEngine
|
|
5617
5853
|
*/
|
|
5618
5854
|
metadata: Metadata;
|
|
5619
5855
|
}
|
|
@@ -5633,57 +5869,63 @@ interface Setting {
|
|
|
5633
5869
|
/**
|
|
5634
5870
|
*
|
|
5635
5871
|
* @export
|
|
5636
|
-
* @interface
|
|
5872
|
+
* @interface SearchEngineList
|
|
5637
5873
|
*/
|
|
5638
|
-
interface
|
|
5874
|
+
interface SearchEngineList {
|
|
5639
5875
|
/**
|
|
5640
5876
|
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
5641
5877
|
* @type {number}
|
|
5642
|
-
* @memberof
|
|
5878
|
+
* @memberof SearchEngineList
|
|
5643
5879
|
*/
|
|
5644
5880
|
page: number;
|
|
5645
5881
|
/**
|
|
5646
5882
|
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
5647
5883
|
* @type {number}
|
|
5648
|
-
* @memberof
|
|
5884
|
+
* @memberof SearchEngineList
|
|
5649
5885
|
*/
|
|
5650
5886
|
size: number;
|
|
5651
5887
|
/**
|
|
5652
5888
|
* Total elements.
|
|
5653
5889
|
* @type {number}
|
|
5654
|
-
* @memberof
|
|
5890
|
+
* @memberof SearchEngineList
|
|
5655
5891
|
*/
|
|
5656
5892
|
total: number;
|
|
5657
5893
|
/**
|
|
5658
5894
|
* A chunk of items.
|
|
5659
|
-
* @type {Array<
|
|
5660
|
-
* @memberof
|
|
5895
|
+
* @type {Array<SearchEngine>}
|
|
5896
|
+
* @memberof SearchEngineList
|
|
5661
5897
|
*/
|
|
5662
|
-
items: Array<
|
|
5898
|
+
items: Array<SearchEngine>;
|
|
5663
5899
|
/**
|
|
5664
5900
|
* Indicates whether current page is the first page.
|
|
5665
5901
|
* @type {boolean}
|
|
5666
|
-
* @memberof
|
|
5902
|
+
* @memberof SearchEngineList
|
|
5667
5903
|
*/
|
|
5668
5904
|
first: boolean;
|
|
5669
5905
|
/**
|
|
5670
5906
|
* Indicates whether current page is the last page.
|
|
5671
5907
|
* @type {boolean}
|
|
5672
|
-
* @memberof
|
|
5908
|
+
* @memberof SearchEngineList
|
|
5673
5909
|
*/
|
|
5674
5910
|
last: boolean;
|
|
5675
5911
|
/**
|
|
5676
5912
|
* Indicates whether current page has previous page.
|
|
5677
5913
|
* @type {boolean}
|
|
5678
|
-
* @memberof
|
|
5914
|
+
* @memberof SearchEngineList
|
|
5679
5915
|
*/
|
|
5680
5916
|
hasNext: boolean;
|
|
5681
5917
|
/**
|
|
5682
5918
|
* Indicates whether current page has previous page.
|
|
5683
5919
|
* @type {boolean}
|
|
5684
|
-
* @memberof
|
|
5920
|
+
* @memberof SearchEngineList
|
|
5685
5921
|
*/
|
|
5686
5922
|
hasPrevious: boolean;
|
|
5923
|
+
/**
|
|
5924
|
+
* Indicates total pages.
|
|
5925
|
+
* @type {number}
|
|
5926
|
+
* @memberof SearchEngineList
|
|
5927
|
+
*/
|
|
5928
|
+
totalPages: number;
|
|
5687
5929
|
}
|
|
5688
5930
|
|
|
5689
5931
|
/**
|
|
@@ -5697,13 +5939,194 @@ interface SettingList {
|
|
|
5697
5939
|
* https://openapi-generator.tech
|
|
5698
5940
|
* Do not edit the class manually.
|
|
5699
5941
|
*/
|
|
5700
|
-
|
|
5701
5942
|
/**
|
|
5702
5943
|
*
|
|
5703
5944
|
* @export
|
|
5704
|
-
* @interface
|
|
5945
|
+
* @interface SettingForm
|
|
5705
5946
|
*/
|
|
5706
|
-
interface
|
|
5947
|
+
interface SettingForm {
|
|
5948
|
+
/**
|
|
5949
|
+
*
|
|
5950
|
+
* @type {string}
|
|
5951
|
+
* @memberof SettingForm
|
|
5952
|
+
*/
|
|
5953
|
+
group: string;
|
|
5954
|
+
/**
|
|
5955
|
+
*
|
|
5956
|
+
* @type {string}
|
|
5957
|
+
* @memberof SettingForm
|
|
5958
|
+
*/
|
|
5959
|
+
label?: string;
|
|
5960
|
+
/**
|
|
5961
|
+
*
|
|
5962
|
+
* @type {Array<object>}
|
|
5963
|
+
* @memberof SettingForm
|
|
5964
|
+
*/
|
|
5965
|
+
formSchema: Array<object>;
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5968
|
+
/**
|
|
5969
|
+
* Halo Next API
|
|
5970
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5971
|
+
*
|
|
5972
|
+
* The version of the OpenAPI document: 2.0.0
|
|
5973
|
+
*
|
|
5974
|
+
*
|
|
5975
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5976
|
+
* https://openapi-generator.tech
|
|
5977
|
+
* Do not edit the class manually.
|
|
5978
|
+
*/
|
|
5979
|
+
|
|
5980
|
+
/**
|
|
5981
|
+
*
|
|
5982
|
+
* @export
|
|
5983
|
+
* @interface SettingSpec
|
|
5984
|
+
*/
|
|
5985
|
+
interface SettingSpec {
|
|
5986
|
+
/**
|
|
5987
|
+
*
|
|
5988
|
+
* @type {Array<SettingForm>}
|
|
5989
|
+
* @memberof SettingSpec
|
|
5990
|
+
*/
|
|
5991
|
+
forms: Array<SettingForm>;
|
|
5992
|
+
}
|
|
5993
|
+
|
|
5994
|
+
/**
|
|
5995
|
+
* Halo Next API
|
|
5996
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5997
|
+
*
|
|
5998
|
+
* The version of the OpenAPI document: 2.0.0
|
|
5999
|
+
*
|
|
6000
|
+
*
|
|
6001
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6002
|
+
* https://openapi-generator.tech
|
|
6003
|
+
* Do not edit the class manually.
|
|
6004
|
+
*/
|
|
6005
|
+
|
|
6006
|
+
/**
|
|
6007
|
+
*
|
|
6008
|
+
* @export
|
|
6009
|
+
* @interface Setting
|
|
6010
|
+
*/
|
|
6011
|
+
interface Setting {
|
|
6012
|
+
/**
|
|
6013
|
+
*
|
|
6014
|
+
* @type {SettingSpec}
|
|
6015
|
+
* @memberof Setting
|
|
6016
|
+
*/
|
|
6017
|
+
spec: SettingSpec;
|
|
6018
|
+
/**
|
|
6019
|
+
*
|
|
6020
|
+
* @type {string}
|
|
6021
|
+
* @memberof Setting
|
|
6022
|
+
*/
|
|
6023
|
+
apiVersion: string;
|
|
6024
|
+
/**
|
|
6025
|
+
*
|
|
6026
|
+
* @type {string}
|
|
6027
|
+
* @memberof Setting
|
|
6028
|
+
*/
|
|
6029
|
+
kind: string;
|
|
6030
|
+
/**
|
|
6031
|
+
*
|
|
6032
|
+
* @type {Metadata}
|
|
6033
|
+
* @memberof Setting
|
|
6034
|
+
*/
|
|
6035
|
+
metadata: Metadata;
|
|
6036
|
+
}
|
|
6037
|
+
|
|
6038
|
+
/**
|
|
6039
|
+
* Halo Next API
|
|
6040
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6041
|
+
*
|
|
6042
|
+
* The version of the OpenAPI document: 2.0.0
|
|
6043
|
+
*
|
|
6044
|
+
*
|
|
6045
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6046
|
+
* https://openapi-generator.tech
|
|
6047
|
+
* Do not edit the class manually.
|
|
6048
|
+
*/
|
|
6049
|
+
|
|
6050
|
+
/**
|
|
6051
|
+
*
|
|
6052
|
+
* @export
|
|
6053
|
+
* @interface SettingList
|
|
6054
|
+
*/
|
|
6055
|
+
interface SettingList {
|
|
6056
|
+
/**
|
|
6057
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
6058
|
+
* @type {number}
|
|
6059
|
+
* @memberof SettingList
|
|
6060
|
+
*/
|
|
6061
|
+
page: number;
|
|
6062
|
+
/**
|
|
6063
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
6064
|
+
* @type {number}
|
|
6065
|
+
* @memberof SettingList
|
|
6066
|
+
*/
|
|
6067
|
+
size: number;
|
|
6068
|
+
/**
|
|
6069
|
+
* Total elements.
|
|
6070
|
+
* @type {number}
|
|
6071
|
+
* @memberof SettingList
|
|
6072
|
+
*/
|
|
6073
|
+
total: number;
|
|
6074
|
+
/**
|
|
6075
|
+
* A chunk of items.
|
|
6076
|
+
* @type {Array<Setting>}
|
|
6077
|
+
* @memberof SettingList
|
|
6078
|
+
*/
|
|
6079
|
+
items: Array<Setting>;
|
|
6080
|
+
/**
|
|
6081
|
+
* Indicates whether current page is the first page.
|
|
6082
|
+
* @type {boolean}
|
|
6083
|
+
* @memberof SettingList
|
|
6084
|
+
*/
|
|
6085
|
+
first: boolean;
|
|
6086
|
+
/**
|
|
6087
|
+
* Indicates whether current page is the last page.
|
|
6088
|
+
* @type {boolean}
|
|
6089
|
+
* @memberof SettingList
|
|
6090
|
+
*/
|
|
6091
|
+
last: boolean;
|
|
6092
|
+
/**
|
|
6093
|
+
* Indicates whether current page has previous page.
|
|
6094
|
+
* @type {boolean}
|
|
6095
|
+
* @memberof SettingList
|
|
6096
|
+
*/
|
|
6097
|
+
hasNext: boolean;
|
|
6098
|
+
/**
|
|
6099
|
+
* Indicates whether current page has previous page.
|
|
6100
|
+
* @type {boolean}
|
|
6101
|
+
* @memberof SettingList
|
|
6102
|
+
*/
|
|
6103
|
+
hasPrevious: boolean;
|
|
6104
|
+
/**
|
|
6105
|
+
* Indicates total pages.
|
|
6106
|
+
* @type {number}
|
|
6107
|
+
* @memberof SettingList
|
|
6108
|
+
*/
|
|
6109
|
+
totalPages: number;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6112
|
+
/**
|
|
6113
|
+
* Halo Next API
|
|
6114
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6115
|
+
*
|
|
6116
|
+
* The version of the OpenAPI document: 2.0.0
|
|
6117
|
+
*
|
|
6118
|
+
*
|
|
6119
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6120
|
+
* https://openapi-generator.tech
|
|
6121
|
+
* Do not edit the class manually.
|
|
6122
|
+
*/
|
|
6123
|
+
|
|
6124
|
+
/**
|
|
6125
|
+
*
|
|
6126
|
+
* @export
|
|
6127
|
+
* @interface SinglePageList
|
|
6128
|
+
*/
|
|
6129
|
+
interface SinglePageList {
|
|
5707
6130
|
/**
|
|
5708
6131
|
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
5709
6132
|
* @type {number}
|
|
@@ -5752,6 +6175,12 @@ interface SinglePageList {
|
|
|
5752
6175
|
* @memberof SinglePageList
|
|
5753
6176
|
*/
|
|
5754
6177
|
hasPrevious: boolean;
|
|
6178
|
+
/**
|
|
6179
|
+
* Indicates total pages.
|
|
6180
|
+
* @type {number}
|
|
6181
|
+
* @memberof SinglePageList
|
|
6182
|
+
*/
|
|
6183
|
+
totalPages: number;
|
|
5755
6184
|
}
|
|
5756
6185
|
|
|
5757
6186
|
/**
|
|
@@ -5970,6 +6399,12 @@ interface SnapshotList {
|
|
|
5970
6399
|
* @memberof SnapshotList
|
|
5971
6400
|
*/
|
|
5972
6401
|
hasPrevious: boolean;
|
|
6402
|
+
/**
|
|
6403
|
+
* Indicates total pages.
|
|
6404
|
+
* @type {number}
|
|
6405
|
+
* @memberof SnapshotList
|
|
6406
|
+
*/
|
|
6407
|
+
totalPages: number;
|
|
5973
6408
|
}
|
|
5974
6409
|
|
|
5975
6410
|
/**
|
|
@@ -6038,6 +6473,12 @@ interface TagList {
|
|
|
6038
6473
|
* @memberof TagList
|
|
6039
6474
|
*/
|
|
6040
6475
|
hasPrevious: boolean;
|
|
6476
|
+
/**
|
|
6477
|
+
* Indicates total pages.
|
|
6478
|
+
* @type {number}
|
|
6479
|
+
* @memberof TagList
|
|
6480
|
+
*/
|
|
6481
|
+
totalPages: number;
|
|
6041
6482
|
}
|
|
6042
6483
|
|
|
6043
6484
|
/**
|
|
@@ -6267,6 +6708,12 @@ interface ThemeList {
|
|
|
6267
6708
|
* @memberof ThemeList
|
|
6268
6709
|
*/
|
|
6269
6710
|
hasPrevious: boolean;
|
|
6711
|
+
/**
|
|
6712
|
+
* Indicates total pages.
|
|
6713
|
+
* @type {number}
|
|
6714
|
+
* @memberof ThemeList
|
|
6715
|
+
*/
|
|
6716
|
+
totalPages: number;
|
|
6270
6717
|
}
|
|
6271
6718
|
|
|
6272
6719
|
/**
|
|
@@ -6496,6 +6943,12 @@ interface UserList {
|
|
|
6496
6943
|
* @memberof UserList
|
|
6497
6944
|
*/
|
|
6498
6945
|
hasPrevious: boolean;
|
|
6946
|
+
/**
|
|
6947
|
+
* Indicates total pages.
|
|
6948
|
+
* @type {number}
|
|
6949
|
+
* @memberof UserList
|
|
6950
|
+
*/
|
|
6951
|
+
totalPages: number;
|
|
6499
6952
|
}
|
|
6500
6953
|
|
|
6501
6954
|
/**
|
|
@@ -6579,13 +7032,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
6579
7032
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6580
7033
|
* @param {string} [group] Name of group
|
|
6581
7034
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7035
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6582
7036
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6583
7037
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6584
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6585
7038
|
* @param {*} [options] Override http request option.
|
|
6586
7039
|
* @throws {RequiredError}
|
|
6587
7040
|
*/
|
|
6588
|
-
searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7041
|
+
searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6589
7042
|
/**
|
|
6590
7043
|
*
|
|
6591
7044
|
* @param {any} file
|
|
@@ -6608,13 +7061,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
6608
7061
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6609
7062
|
* @param {string} [group] Name of group
|
|
6610
7063
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7064
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6611
7065
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6612
7066
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6613
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6614
7067
|
* @param {*} [options] Override http request option.
|
|
6615
7068
|
* @throws {RequiredError}
|
|
6616
7069
|
*/
|
|
6617
|
-
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7070
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
6618
7071
|
/**
|
|
6619
7072
|
*
|
|
6620
7073
|
* @param {any} file
|
|
@@ -6637,13 +7090,13 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
6637
7090
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
6638
7091
|
* @param {string} [group] Name of group
|
|
6639
7092
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7093
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6640
7094
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6641
7095
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6642
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6643
7096
|
* @param {*} [options] Override http request option.
|
|
6644
7097
|
* @throws {RequiredError}
|
|
6645
7098
|
*/
|
|
6646
|
-
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
7099
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
|
|
6647
7100
|
/**
|
|
6648
7101
|
*
|
|
6649
7102
|
* @param {any} file
|
|
@@ -6690,6 +7143,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
6690
7143
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6691
7144
|
*/
|
|
6692
7145
|
readonly size?: number;
|
|
7146
|
+
/**
|
|
7147
|
+
* The page number. Zero indicates no page.
|
|
7148
|
+
* @type {number}
|
|
7149
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7150
|
+
*/
|
|
7151
|
+
readonly page?: number;
|
|
6693
7152
|
/**
|
|
6694
7153
|
* Label selector for filtering.
|
|
6695
7154
|
* @type {Array<string>}
|
|
@@ -6702,12 +7161,6 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
6702
7161
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6703
7162
|
*/
|
|
6704
7163
|
readonly fieldSelector?: Array<string>;
|
|
6705
|
-
/**
|
|
6706
|
-
* The page number. Zero indicates no page.
|
|
6707
|
-
* @type {number}
|
|
6708
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6709
|
-
*/
|
|
6710
|
-
readonly page?: number;
|
|
6711
7164
|
}
|
|
6712
7165
|
/**
|
|
6713
7166
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -6782,6 +7235,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6782
7235
|
/**
|
|
6783
7236
|
* List comments.
|
|
6784
7237
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7238
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7239
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7240
|
+
* @param {boolean} [top] Comment top display.
|
|
6785
7241
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6786
7242
|
* @param {boolean} [approved] Comments approved.
|
|
6787
7243
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6789,17 +7245,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
6789
7245
|
* @param {string} [ownerName] Commenter name.
|
|
6790
7246
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6791
7247
|
* @param {string} [subjectName] Comment subject name.
|
|
6792
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6793
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6794
|
-
* @param {boolean} [top] Comment top display.
|
|
6795
7248
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7249
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6796
7250
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6797
7251
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6798
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6799
7252
|
* @param {*} [options] Override http request option.
|
|
6800
7253
|
* @throws {RequiredError}
|
|
6801
7254
|
*/
|
|
6802
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7255
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6803
7256
|
};
|
|
6804
7257
|
/**
|
|
6805
7258
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -6824,6 +7277,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6824
7277
|
/**
|
|
6825
7278
|
* List comments.
|
|
6826
7279
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7280
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7281
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7282
|
+
* @param {boolean} [top] Comment top display.
|
|
6827
7283
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6828
7284
|
* @param {boolean} [approved] Comments approved.
|
|
6829
7285
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6831,17 +7287,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
6831
7287
|
* @param {string} [ownerName] Commenter name.
|
|
6832
7288
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6833
7289
|
* @param {string} [subjectName] Comment subject name.
|
|
6834
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6835
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6836
|
-
* @param {boolean} [top] Comment top display.
|
|
6837
7290
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7291
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6838
7292
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6839
7293
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6840
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6841
7294
|
* @param {*} [options] Override http request option.
|
|
6842
7295
|
* @throws {RequiredError}
|
|
6843
7296
|
*/
|
|
6844
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7297
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
6845
7298
|
};
|
|
6846
7299
|
/**
|
|
6847
7300
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -6866,6 +7319,9 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6866
7319
|
/**
|
|
6867
7320
|
* List comments.
|
|
6868
7321
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7322
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
7323
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7324
|
+
* @param {boolean} [top] Comment top display.
|
|
6869
7325
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6870
7326
|
* @param {boolean} [approved] Comments approved.
|
|
6871
7327
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
@@ -6873,17 +7329,14 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
6873
7329
|
* @param {string} [ownerName] Commenter name.
|
|
6874
7330
|
* @param {string} [subjectKind] Comment subject kind.
|
|
6875
7331
|
* @param {string} [subjectName] Comment subject name.
|
|
6876
|
-
* @param {string} [keyword] Comments filtered by keyword.
|
|
6877
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6878
|
-
* @param {boolean} [top] Comment top display.
|
|
6879
7332
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7333
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6880
7334
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6881
7335
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6882
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6883
7336
|
* @param {*} [options] Override http request option.
|
|
6884
7337
|
* @throws {RequiredError}
|
|
6885
7338
|
*/
|
|
6886
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string,
|
|
7339
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
|
|
6887
7340
|
};
|
|
6888
7341
|
/**
|
|
6889
7342
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -6930,23 +7383,41 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6930
7383
|
*/
|
|
6931
7384
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
6932
7385
|
/**
|
|
6933
|
-
*
|
|
6934
|
-
* @type {
|
|
7386
|
+
* Comments filtered by keyword.
|
|
7387
|
+
* @type {string}
|
|
6935
7388
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6936
7389
|
*/
|
|
6937
|
-
readonly
|
|
7390
|
+
readonly keyword?: string;
|
|
6938
7391
|
/**
|
|
6939
|
-
*
|
|
7392
|
+
* The comment is hidden from the theme side.
|
|
6940
7393
|
* @type {boolean}
|
|
6941
7394
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6942
7395
|
*/
|
|
6943
|
-
readonly
|
|
7396
|
+
readonly hidden?: boolean;
|
|
6944
7397
|
/**
|
|
6945
|
-
*
|
|
7398
|
+
* Comment top display.
|
|
6946
7399
|
* @type {boolean}
|
|
6947
7400
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6948
7401
|
*/
|
|
6949
|
-
readonly
|
|
7402
|
+
readonly top?: boolean;
|
|
7403
|
+
/**
|
|
7404
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7405
|
+
* @type {boolean}
|
|
7406
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7407
|
+
*/
|
|
7408
|
+
readonly sortOrder?: boolean;
|
|
7409
|
+
/**
|
|
7410
|
+
* Comments approved.
|
|
7411
|
+
* @type {boolean}
|
|
7412
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7413
|
+
*/
|
|
7414
|
+
readonly approved?: boolean;
|
|
7415
|
+
/**
|
|
7416
|
+
* Send notifications when there are new replies.
|
|
7417
|
+
* @type {boolean}
|
|
7418
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7419
|
+
*/
|
|
7420
|
+
readonly allowNotification?: boolean;
|
|
6950
7421
|
/**
|
|
6951
7422
|
* Commenter kind.
|
|
6952
7423
|
* @type {string}
|
|
@@ -6972,29 +7443,17 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
6972
7443
|
*/
|
|
6973
7444
|
readonly subjectName?: string;
|
|
6974
7445
|
/**
|
|
6975
|
-
*
|
|
6976
|
-
* @type {
|
|
6977
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6978
|
-
*/
|
|
6979
|
-
readonly keyword?: string;
|
|
6980
|
-
/**
|
|
6981
|
-
* The comment is hidden from the theme side.
|
|
6982
|
-
* @type {boolean}
|
|
6983
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6984
|
-
*/
|
|
6985
|
-
readonly hidden?: boolean;
|
|
6986
|
-
/**
|
|
6987
|
-
* Comment top display.
|
|
6988
|
-
* @type {boolean}
|
|
7446
|
+
* Size of one page. Zero indicates no limit.
|
|
7447
|
+
* @type {number}
|
|
6989
7448
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6990
7449
|
*/
|
|
6991
|
-
readonly
|
|
7450
|
+
readonly size?: number;
|
|
6992
7451
|
/**
|
|
6993
|
-
*
|
|
7452
|
+
* The page number. Zero indicates no page.
|
|
6994
7453
|
* @type {number}
|
|
6995
7454
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6996
7455
|
*/
|
|
6997
|
-
readonly
|
|
7456
|
+
readonly page?: number;
|
|
6998
7457
|
/**
|
|
6999
7458
|
* Label selector for filtering.
|
|
7000
7459
|
* @type {Array<string>}
|
|
@@ -7007,12 +7466,6 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7007
7466
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7008
7467
|
*/
|
|
7009
7468
|
readonly fieldSelector?: Array<string>;
|
|
7010
|
-
/**
|
|
7011
|
-
* The page number. Zero indicates no page.
|
|
7012
|
-
* @type {number}
|
|
7013
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7014
|
-
*/
|
|
7015
|
-
readonly page?: number;
|
|
7016
7469
|
}
|
|
7017
7470
|
/**
|
|
7018
7471
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7209,6 +7662,58 @@ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
7209
7662
|
updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
|
|
7210
7663
|
}
|
|
7211
7664
|
|
|
7665
|
+
/**
|
|
7666
|
+
* ApiConsoleHaloRunV1alpha1IndicesApi - axios parameter creator
|
|
7667
|
+
* @export
|
|
7668
|
+
*/
|
|
7669
|
+
declare const ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7670
|
+
/**
|
|
7671
|
+
* Build or rebuild post indices for full text search
|
|
7672
|
+
* @param {*} [options] Override http request option.
|
|
7673
|
+
* @throws {RequiredError}
|
|
7674
|
+
*/
|
|
7675
|
+
buildPostIndices: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7676
|
+
};
|
|
7677
|
+
/**
|
|
7678
|
+
* ApiConsoleHaloRunV1alpha1IndicesApi - functional programming interface
|
|
7679
|
+
* @export
|
|
7680
|
+
*/
|
|
7681
|
+
declare const ApiConsoleHaloRunV1alpha1IndicesApiFp: (configuration?: Configuration) => {
|
|
7682
|
+
/**
|
|
7683
|
+
* Build or rebuild post indices for full text search
|
|
7684
|
+
* @param {*} [options] Override http request option.
|
|
7685
|
+
* @throws {RequiredError}
|
|
7686
|
+
*/
|
|
7687
|
+
buildPostIndices(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7688
|
+
};
|
|
7689
|
+
/**
|
|
7690
|
+
* ApiConsoleHaloRunV1alpha1IndicesApi - factory interface
|
|
7691
|
+
* @export
|
|
7692
|
+
*/
|
|
7693
|
+
declare const ApiConsoleHaloRunV1alpha1IndicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7694
|
+
/**
|
|
7695
|
+
* Build or rebuild post indices for full text search
|
|
7696
|
+
* @param {*} [options] Override http request option.
|
|
7697
|
+
* @throws {RequiredError}
|
|
7698
|
+
*/
|
|
7699
|
+
buildPostIndices(options?: any): AxiosPromise<void>;
|
|
7700
|
+
};
|
|
7701
|
+
/**
|
|
7702
|
+
* ApiConsoleHaloRunV1alpha1IndicesApi - object-oriented interface
|
|
7703
|
+
* @export
|
|
7704
|
+
* @class ApiConsoleHaloRunV1alpha1IndicesApi
|
|
7705
|
+
* @extends {BaseAPI}
|
|
7706
|
+
*/
|
|
7707
|
+
declare class ApiConsoleHaloRunV1alpha1IndicesApi extends BaseAPI {
|
|
7708
|
+
/**
|
|
7709
|
+
* Build or rebuild post indices for full text search
|
|
7710
|
+
* @param {*} [options] Override http request option.
|
|
7711
|
+
* @throws {RequiredError}
|
|
7712
|
+
* @memberof ApiConsoleHaloRunV1alpha1IndicesApi
|
|
7713
|
+
*/
|
|
7714
|
+
buildPostIndices(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7715
|
+
}
|
|
7716
|
+
|
|
7212
7717
|
/**
|
|
7213
7718
|
* ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
|
|
7214
7719
|
* @export
|
|
@@ -7224,16 +7729,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7224
7729
|
/**
|
|
7225
7730
|
* List plugins using query criteria and sort params
|
|
7226
7731
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7227
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7228
7732
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7733
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7229
7734
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7735
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7230
7736
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7231
7737
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7232
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7233
7738
|
* @param {*} [options] Override http request option.
|
|
7234
7739
|
* @throws {RequiredError}
|
|
7235
7740
|
*/
|
|
7236
|
-
listPlugins: (sort?: Array<string>, enabled?: boolean,
|
|
7741
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7237
7742
|
/**
|
|
7238
7743
|
* Upgrade a plugin by uploading a Jar file
|
|
7239
7744
|
* @param {string} name
|
|
@@ -7258,16 +7763,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7258
7763
|
/**
|
|
7259
7764
|
* List plugins using query criteria and sort params
|
|
7260
7765
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7261
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7262
7766
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7767
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7263
7768
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7769
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7264
7770
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7265
7771
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7266
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7267
7772
|
* @param {*} [options] Override http request option.
|
|
7268
7773
|
* @throws {RequiredError}
|
|
7269
7774
|
*/
|
|
7270
|
-
listPlugins(sort?: Array<string>, enabled?: boolean,
|
|
7775
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7271
7776
|
/**
|
|
7272
7777
|
* Upgrade a plugin by uploading a Jar file
|
|
7273
7778
|
* @param {string} name
|
|
@@ -7292,16 +7797,16 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7292
7797
|
/**
|
|
7293
7798
|
* List plugins using query criteria and sort params
|
|
7294
7799
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7295
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7296
7800
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7801
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7297
7802
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7803
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7298
7804
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7299
7805
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7300
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7301
7806
|
* @param {*} [options] Override http request option.
|
|
7302
7807
|
* @throws {RequiredError}
|
|
7303
7808
|
*/
|
|
7304
|
-
listPlugins(sort?: Array<string>, enabled?: boolean,
|
|
7809
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7305
7810
|
/**
|
|
7306
7811
|
* Upgrade a plugin by uploading a Jar file
|
|
7307
7812
|
* @param {string} name
|
|
@@ -7336,6 +7841,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7336
7841
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7337
7842
|
*/
|
|
7338
7843
|
readonly sort?: Array<string>;
|
|
7844
|
+
/**
|
|
7845
|
+
* Keyword of plugin name or description
|
|
7846
|
+
* @type {string}
|
|
7847
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7848
|
+
*/
|
|
7849
|
+
readonly keyword?: string;
|
|
7339
7850
|
/**
|
|
7340
7851
|
* Whether the plugin is enabled
|
|
7341
7852
|
* @type {boolean}
|
|
@@ -7343,17 +7854,17 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7343
7854
|
*/
|
|
7344
7855
|
readonly enabled?: boolean;
|
|
7345
7856
|
/**
|
|
7346
|
-
*
|
|
7347
|
-
* @type {
|
|
7857
|
+
* Size of one page. Zero indicates no limit.
|
|
7858
|
+
* @type {number}
|
|
7348
7859
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7349
7860
|
*/
|
|
7350
|
-
readonly
|
|
7861
|
+
readonly size?: number;
|
|
7351
7862
|
/**
|
|
7352
|
-
*
|
|
7863
|
+
* The page number. Zero indicates no page.
|
|
7353
7864
|
* @type {number}
|
|
7354
7865
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7355
7866
|
*/
|
|
7356
|
-
readonly
|
|
7867
|
+
readonly page?: number;
|
|
7357
7868
|
/**
|
|
7358
7869
|
* Label selector for filtering.
|
|
7359
7870
|
* @type {Array<string>}
|
|
@@ -7366,12 +7877,6 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7366
7877
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7367
7878
|
*/
|
|
7368
7879
|
readonly fieldSelector?: Array<string>;
|
|
7369
|
-
/**
|
|
7370
|
-
* The page number. Zero indicates no page.
|
|
7371
|
-
* @type {number}
|
|
7372
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7373
|
-
*/
|
|
7374
|
-
readonly page?: number;
|
|
7375
7880
|
}
|
|
7376
7881
|
/**
|
|
7377
7882
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7440,21 +7945,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7440
7945
|
/**
|
|
7441
7946
|
* List posts.
|
|
7442
7947
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7443
|
-
* @param {Array<string>} [contributor]
|
|
7444
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7445
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7446
|
-
* @param {Array<string>} [category]
|
|
7447
|
-
* @param {Array<string>} [tag]
|
|
7448
7948
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7449
7949
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7950
|
+
* @param {Array<string>} [tag]
|
|
7951
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7952
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7953
|
+
* @param {Array<string>} [category]
|
|
7954
|
+
* @param {Array<string>} [contributor]
|
|
7450
7955
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7956
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7451
7957
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7452
7958
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7453
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7454
7959
|
* @param {*} [options] Override http request option.
|
|
7455
7960
|
* @throws {RequiredError}
|
|
7456
7961
|
*/
|
|
7457
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
7962
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7458
7963
|
/**
|
|
7459
7964
|
* Publish a post.
|
|
7460
7965
|
* @param {string} name
|
|
@@ -7462,6 +7967,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7462
7967
|
* @throws {RequiredError}
|
|
7463
7968
|
*/
|
|
7464
7969
|
publishPost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7970
|
+
/**
|
|
7971
|
+
* Recycle a post.
|
|
7972
|
+
* @param {string} name
|
|
7973
|
+
* @param {*} [options] Override http request option.
|
|
7974
|
+
* @throws {RequiredError}
|
|
7975
|
+
*/
|
|
7976
|
+
recyclePost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7977
|
+
/**
|
|
7978
|
+
* Publish a post.
|
|
7979
|
+
* @param {string} name
|
|
7980
|
+
* @param {*} [options] Override http request option.
|
|
7981
|
+
* @throws {RequiredError}
|
|
7982
|
+
*/
|
|
7983
|
+
unpublishPost: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7465
7984
|
/**
|
|
7466
7985
|
* Update a post.
|
|
7467
7986
|
* @param {string} name
|
|
@@ -7486,21 +8005,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7486
8005
|
/**
|
|
7487
8006
|
* List posts.
|
|
7488
8007
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7489
|
-
* @param {Array<string>} [contributor]
|
|
7490
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7491
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7492
|
-
* @param {Array<string>} [category]
|
|
7493
|
-
* @param {Array<string>} [tag]
|
|
7494
8008
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7495
8009
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8010
|
+
* @param {Array<string>} [tag]
|
|
8011
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8012
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8013
|
+
* @param {Array<string>} [category]
|
|
8014
|
+
* @param {Array<string>} [contributor]
|
|
7496
8015
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8016
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7497
8017
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7498
8018
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7499
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7500
8019
|
* @param {*} [options] Override http request option.
|
|
7501
8020
|
* @throws {RequiredError}
|
|
7502
8021
|
*/
|
|
7503
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8022
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
7504
8023
|
/**
|
|
7505
8024
|
* Publish a post.
|
|
7506
8025
|
* @param {string} name
|
|
@@ -7508,6 +8027,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7508
8027
|
* @throws {RequiredError}
|
|
7509
8028
|
*/
|
|
7510
8029
|
publishPost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
8030
|
+
/**
|
|
8031
|
+
* Recycle a post.
|
|
8032
|
+
* @param {string} name
|
|
8033
|
+
* @param {*} [options] Override http request option.
|
|
8034
|
+
* @throws {RequiredError}
|
|
8035
|
+
*/
|
|
8036
|
+
recyclePost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8037
|
+
/**
|
|
8038
|
+
* Publish a post.
|
|
8039
|
+
* @param {string} name
|
|
8040
|
+
* @param {*} [options] Override http request option.
|
|
8041
|
+
* @throws {RequiredError}
|
|
8042
|
+
*/
|
|
8043
|
+
unpublishPost(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
7511
8044
|
/**
|
|
7512
8045
|
* Update a post.
|
|
7513
8046
|
* @param {string} name
|
|
@@ -7532,21 +8065,21 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7532
8065
|
/**
|
|
7533
8066
|
* List posts.
|
|
7534
8067
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7535
|
-
* @param {Array<string>} [contributor]
|
|
7536
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7537
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7538
|
-
* @param {Array<string>} [category]
|
|
7539
|
-
* @param {Array<string>} [tag]
|
|
7540
8068
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7541
8069
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8070
|
+
* @param {Array<string>} [tag]
|
|
8071
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8072
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8073
|
+
* @param {Array<string>} [category]
|
|
8074
|
+
* @param {Array<string>} [contributor]
|
|
7542
8075
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8076
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7543
8077
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7544
8078
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7545
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7546
8079
|
* @param {*} [options] Override http request option.
|
|
7547
8080
|
* @throws {RequiredError}
|
|
7548
8081
|
*/
|
|
7549
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8082
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
|
|
7550
8083
|
/**
|
|
7551
8084
|
* Publish a post.
|
|
7552
8085
|
* @param {string} name
|
|
@@ -7554,6 +8087,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7554
8087
|
* @throws {RequiredError}
|
|
7555
8088
|
*/
|
|
7556
8089
|
publishPost(name: string, options?: any): AxiosPromise<Post>;
|
|
8090
|
+
/**
|
|
8091
|
+
* Recycle a post.
|
|
8092
|
+
* @param {string} name
|
|
8093
|
+
* @param {*} [options] Override http request option.
|
|
8094
|
+
* @throws {RequiredError}
|
|
8095
|
+
*/
|
|
8096
|
+
recyclePost(name: string, options?: any): AxiosPromise<void>;
|
|
8097
|
+
/**
|
|
8098
|
+
* Publish a post.
|
|
8099
|
+
* @param {string} name
|
|
8100
|
+
* @param {*} [options] Override http request option.
|
|
8101
|
+
* @throws {RequiredError}
|
|
8102
|
+
*/
|
|
8103
|
+
unpublishPost(name: string, options?: any): AxiosPromise<Post>;
|
|
7557
8104
|
/**
|
|
7558
8105
|
* Update a post.
|
|
7559
8106
|
* @param {string} name
|
|
@@ -7588,12 +8135,24 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7588
8135
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7589
8136
|
*/
|
|
7590
8137
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8138
|
+
/**
|
|
8139
|
+
* Posts filtered by keyword.
|
|
8140
|
+
* @type {string}
|
|
8141
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8142
|
+
*/
|
|
8143
|
+
readonly keyword?: string;
|
|
8144
|
+
/**
|
|
8145
|
+
*
|
|
8146
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
8147
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8148
|
+
*/
|
|
8149
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7591
8150
|
/**
|
|
7592
8151
|
*
|
|
7593
8152
|
* @type {Array<string>}
|
|
7594
8153
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7595
8154
|
*/
|
|
7596
|
-
readonly
|
|
8155
|
+
readonly tag?: Array<string>;
|
|
7597
8156
|
/**
|
|
7598
8157
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
7599
8158
|
* @type {boolean}
|
|
@@ -7602,10 +8161,10 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7602
8161
|
readonly sortOrder?: boolean;
|
|
7603
8162
|
/**
|
|
7604
8163
|
*
|
|
7605
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8164
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
7606
8165
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7607
8166
|
*/
|
|
7608
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8167
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
7609
8168
|
/**
|
|
7610
8169
|
*
|
|
7611
8170
|
* @type {Array<string>}
|
|
@@ -7617,25 +8176,19 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7617
8176
|
* @type {Array<string>}
|
|
7618
8177
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7619
8178
|
*/
|
|
7620
|
-
readonly
|
|
7621
|
-
/**
|
|
7622
|
-
* Posts filtered by keyword.
|
|
7623
|
-
* @type {string}
|
|
7624
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7625
|
-
*/
|
|
7626
|
-
readonly keyword?: string;
|
|
8179
|
+
readonly contributor?: Array<string>;
|
|
7627
8180
|
/**
|
|
7628
|
-
*
|
|
7629
|
-
* @type {
|
|
8181
|
+
* Size of one page. Zero indicates no limit.
|
|
8182
|
+
* @type {number}
|
|
7630
8183
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7631
8184
|
*/
|
|
7632
|
-
readonly
|
|
8185
|
+
readonly size?: number;
|
|
7633
8186
|
/**
|
|
7634
|
-
*
|
|
8187
|
+
* The page number. Zero indicates no page.
|
|
7635
8188
|
* @type {number}
|
|
7636
8189
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7637
8190
|
*/
|
|
7638
|
-
readonly
|
|
8191
|
+
readonly page?: number;
|
|
7639
8192
|
/**
|
|
7640
8193
|
* Label selector for filtering.
|
|
7641
8194
|
* @type {Array<string>}
|
|
@@ -7648,12 +8201,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7648
8201
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7649
8202
|
*/
|
|
7650
8203
|
readonly fieldSelector?: Array<string>;
|
|
7651
|
-
/**
|
|
7652
|
-
* The page number. Zero indicates no page.
|
|
7653
|
-
* @type {number}
|
|
7654
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7655
|
-
*/
|
|
7656
|
-
readonly page?: number;
|
|
7657
8204
|
}
|
|
7658
8205
|
/**
|
|
7659
8206
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -7668,6 +8215,32 @@ interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest {
|
|
|
7668
8215
|
*/
|
|
7669
8216
|
readonly name: string;
|
|
7670
8217
|
}
|
|
8218
|
+
/**
|
|
8219
|
+
* Request parameters for recyclePost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
8220
|
+
* @export
|
|
8221
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest
|
|
8222
|
+
*/
|
|
8223
|
+
interface ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest {
|
|
8224
|
+
/**
|
|
8225
|
+
*
|
|
8226
|
+
* @type {string}
|
|
8227
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiRecyclePost
|
|
8228
|
+
*/
|
|
8229
|
+
readonly name: string;
|
|
8230
|
+
}
|
|
8231
|
+
/**
|
|
8232
|
+
* Request parameters for unpublishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
8233
|
+
* @export
|
|
8234
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest
|
|
8235
|
+
*/
|
|
8236
|
+
interface ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest {
|
|
8237
|
+
/**
|
|
8238
|
+
*
|
|
8239
|
+
* @type {string}
|
|
8240
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUnpublishPost
|
|
8241
|
+
*/
|
|
8242
|
+
readonly name: string;
|
|
8243
|
+
}
|
|
7671
8244
|
/**
|
|
7672
8245
|
* Request parameters for updateDraftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
7673
8246
|
* @export
|
|
@@ -7718,6 +8291,22 @@ declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
7718
8291
|
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
7719
8292
|
*/
|
|
7720
8293
|
publishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
8294
|
+
/**
|
|
8295
|
+
* Recycle a post.
|
|
8296
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest} requestParameters Request parameters.
|
|
8297
|
+
* @param {*} [options] Override http request option.
|
|
8298
|
+
* @throws {RequiredError}
|
|
8299
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
8300
|
+
*/
|
|
8301
|
+
recyclePost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8302
|
+
/**
|
|
8303
|
+
* Publish a post.
|
|
8304
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest} requestParameters Request parameters.
|
|
8305
|
+
* @param {*} [options] Override http request option.
|
|
8306
|
+
* @throws {RequiredError}
|
|
8307
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
8308
|
+
*/
|
|
8309
|
+
unpublishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
7721
8310
|
/**
|
|
7722
8311
|
* Update a post.
|
|
7723
8312
|
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
@@ -7737,13 +8326,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
7737
8326
|
* List replies.
|
|
7738
8327
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7739
8328
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8329
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7740
8330
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7741
8331
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7742
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7743
8332
|
* @param {*} [options] Override http request option.
|
|
7744
8333
|
* @throws {RequiredError}
|
|
7745
8334
|
*/
|
|
7746
|
-
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8335
|
+
listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7747
8336
|
};
|
|
7748
8337
|
/**
|
|
7749
8338
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -7754,13 +8343,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
7754
8343
|
* List replies.
|
|
7755
8344
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7756
8345
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8346
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7757
8347
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7758
8348
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7759
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7760
8349
|
* @param {*} [options] Override http request option.
|
|
7761
8350
|
* @throws {RequiredError}
|
|
7762
8351
|
*/
|
|
7763
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8352
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
7764
8353
|
};
|
|
7765
8354
|
/**
|
|
7766
8355
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -7771,13 +8360,13 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
7771
8360
|
* List replies.
|
|
7772
8361
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
7773
8362
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8363
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7774
8364
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7775
8365
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7776
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7777
8366
|
* @param {*} [options] Override http request option.
|
|
7778
8367
|
* @throws {RequiredError}
|
|
7779
8368
|
*/
|
|
7780
|
-
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8369
|
+
listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
|
|
7781
8370
|
};
|
|
7782
8371
|
/**
|
|
7783
8372
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -7797,6 +8386,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7797
8386
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7798
8387
|
*/
|
|
7799
8388
|
readonly size?: number;
|
|
8389
|
+
/**
|
|
8390
|
+
* The page number. Zero indicates no page.
|
|
8391
|
+
* @type {number}
|
|
8392
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8393
|
+
*/
|
|
8394
|
+
readonly page?: number;
|
|
7800
8395
|
/**
|
|
7801
8396
|
* Label selector for filtering.
|
|
7802
8397
|
* @type {Array<string>}
|
|
@@ -7809,12 +8404,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
7809
8404
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7810
8405
|
*/
|
|
7811
8406
|
readonly fieldSelector?: Array<string>;
|
|
7812
|
-
/**
|
|
7813
|
-
* The page number. Zero indicates no page.
|
|
7814
|
-
* @type {number}
|
|
7815
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
7816
|
-
*/
|
|
7817
|
-
readonly page?: number;
|
|
7818
8407
|
}
|
|
7819
8408
|
/**
|
|
7820
8409
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -7848,19 +8437,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7848
8437
|
/**
|
|
7849
8438
|
* List single pages.
|
|
7850
8439
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7851
|
-
* @param {Array<string>} [contributor]
|
|
7852
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7853
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7854
8440
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7855
8441
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8442
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8443
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8444
|
+
* @param {Array<string>} [contributor]
|
|
7856
8445
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8446
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7857
8447
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7858
8448
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7859
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7860
8449
|
* @param {*} [options] Override http request option.
|
|
7861
8450
|
* @throws {RequiredError}
|
|
7862
8451
|
*/
|
|
7863
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8452
|
+
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7864
8453
|
/**
|
|
7865
8454
|
* Publish a single page.
|
|
7866
8455
|
* @param {string} name
|
|
@@ -7892,19 +8481,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7892
8481
|
/**
|
|
7893
8482
|
* List single pages.
|
|
7894
8483
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7895
|
-
* @param {Array<string>} [contributor]
|
|
7896
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7897
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7898
8484
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7899
8485
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8486
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8487
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8488
|
+
* @param {Array<string>} [contributor]
|
|
7900
8489
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8490
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7901
8491
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7902
8492
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7903
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7904
8493
|
* @param {*} [options] Override http request option.
|
|
7905
8494
|
* @throws {RequiredError}
|
|
7906
8495
|
*/
|
|
7907
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8496
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
7908
8497
|
/**
|
|
7909
8498
|
* Publish a single page.
|
|
7910
8499
|
* @param {string} name
|
|
@@ -7936,19 +8525,19 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7936
8525
|
/**
|
|
7937
8526
|
* List single pages.
|
|
7938
8527
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7939
|
-
* @param {Array<string>} [contributor]
|
|
7940
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7941
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7942
8528
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7943
8529
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8530
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8531
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8532
|
+
* @param {Array<string>} [contributor]
|
|
7944
8533
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8534
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7945
8535
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7946
8536
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7947
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
7948
8537
|
* @param {*} [options] Override http request option.
|
|
7949
8538
|
* @throws {RequiredError}
|
|
7950
8539
|
*/
|
|
7951
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
8540
|
+
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
7952
8541
|
/**
|
|
7953
8542
|
* Publish a single page.
|
|
7954
8543
|
* @param {string} name
|
|
@@ -7990,12 +8579,18 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
7990
8579
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7991
8580
|
*/
|
|
7992
8581
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8582
|
+
/**
|
|
8583
|
+
* SinglePages filtered by keyword.
|
|
8584
|
+
* @type {string}
|
|
8585
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8586
|
+
*/
|
|
8587
|
+
readonly keyword?: string;
|
|
7993
8588
|
/**
|
|
7994
8589
|
*
|
|
7995
|
-
* @type {
|
|
8590
|
+
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
7996
8591
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
7997
8592
|
*/
|
|
7998
|
-
readonly
|
|
8593
|
+
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
7999
8594
|
/**
|
|
8000
8595
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8001
8596
|
* @type {boolean}
|
|
@@ -8003,29 +8598,29 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8003
8598
|
*/
|
|
8004
8599
|
readonly sortOrder?: boolean;
|
|
8005
8600
|
/**
|
|
8006
|
-
*
|
|
8007
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8008
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8009
|
-
*/
|
|
8010
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED';
|
|
8011
|
-
/**
|
|
8012
|
-
* SinglePages filtered by keyword.
|
|
8013
|
-
* @type {string}
|
|
8601
|
+
*
|
|
8602
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8014
8603
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8015
8604
|
*/
|
|
8016
|
-
readonly
|
|
8605
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8017
8606
|
/**
|
|
8018
8607
|
*
|
|
8019
|
-
* @type {
|
|
8608
|
+
* @type {Array<string>}
|
|
8020
8609
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8021
8610
|
*/
|
|
8022
|
-
readonly
|
|
8611
|
+
readonly contributor?: Array<string>;
|
|
8023
8612
|
/**
|
|
8024
8613
|
* Size of one page. Zero indicates no limit.
|
|
8025
8614
|
* @type {number}
|
|
8026
8615
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8027
8616
|
*/
|
|
8028
8617
|
readonly size?: number;
|
|
8618
|
+
/**
|
|
8619
|
+
* The page number. Zero indicates no page.
|
|
8620
|
+
* @type {number}
|
|
8621
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8622
|
+
*/
|
|
8623
|
+
readonly page?: number;
|
|
8029
8624
|
/**
|
|
8030
8625
|
* Label selector for filtering.
|
|
8031
8626
|
* @type {Array<string>}
|
|
@@ -8038,12 +8633,6 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8038
8633
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8039
8634
|
*/
|
|
8040
8635
|
readonly fieldSelector?: Array<string>;
|
|
8041
|
-
/**
|
|
8042
|
-
* The page number. Zero indicates no page.
|
|
8043
|
-
* @type {number}
|
|
8044
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8045
|
-
*/
|
|
8046
|
-
readonly page?: number;
|
|
8047
8636
|
}
|
|
8048
8637
|
/**
|
|
8049
8638
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8186,13 +8775,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8186
8775
|
* List themes.
|
|
8187
8776
|
* @param {boolean} uninstalled
|
|
8188
8777
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8778
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8189
8779
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8190
8780
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8191
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8192
8781
|
* @param {*} [options] Override http request option.
|
|
8193
8782
|
* @throws {RequiredError}
|
|
8194
8783
|
*/
|
|
8195
|
-
listThemes: (uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8784
|
+
listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8196
8785
|
/**
|
|
8197
8786
|
* Reload theme setting.
|
|
8198
8787
|
* @param {string} name
|
|
@@ -8225,13 +8814,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8225
8814
|
* List themes.
|
|
8226
8815
|
* @param {boolean} uninstalled
|
|
8227
8816
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8817
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8228
8818
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8229
8819
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8230
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8231
8820
|
* @param {*} [options] Override http request option.
|
|
8232
8821
|
* @throws {RequiredError}
|
|
8233
8822
|
*/
|
|
8234
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8823
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
8235
8824
|
/**
|
|
8236
8825
|
* Reload theme setting.
|
|
8237
8826
|
* @param {string} name
|
|
@@ -8264,13 +8853,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8264
8853
|
* List themes.
|
|
8265
8854
|
* @param {boolean} uninstalled
|
|
8266
8855
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8856
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
8267
8857
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8268
8858
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8269
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
8270
8859
|
* @param {*} [options] Override http request option.
|
|
8271
8860
|
* @throws {RequiredError}
|
|
8272
8861
|
*/
|
|
8273
|
-
listThemes(uninstalled: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>,
|
|
8862
|
+
listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
|
|
8274
8863
|
/**
|
|
8275
8864
|
* Reload theme setting.
|
|
8276
8865
|
* @param {string} name
|
|
@@ -8318,6 +8907,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8318
8907
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8319
8908
|
*/
|
|
8320
8909
|
readonly size?: number;
|
|
8910
|
+
/**
|
|
8911
|
+
* The page number. Zero indicates no page.
|
|
8912
|
+
* @type {number}
|
|
8913
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8914
|
+
*/
|
|
8915
|
+
readonly page?: number;
|
|
8321
8916
|
/**
|
|
8322
8917
|
* Label selector for filtering.
|
|
8323
8918
|
* @type {Array<string>}
|
|
@@ -8330,12 +8925,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
8330
8925
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8331
8926
|
*/
|
|
8332
8927
|
readonly fieldSelector?: Array<string>;
|
|
8333
|
-
/**
|
|
8334
|
-
* The page number. Zero indicates no page.
|
|
8335
|
-
* @type {number}
|
|
8336
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
8337
|
-
*/
|
|
8338
|
-
readonly page?: number;
|
|
8339
8928
|
}
|
|
8340
8929
|
/**
|
|
8341
8930
|
* Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -8915,6 +9504,102 @@ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
8915
9504
|
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
8916
9505
|
}
|
|
8917
9506
|
|
|
9507
|
+
/**
|
|
9508
|
+
* ApiHaloRunV1alpha1PostApi - axios parameter creator
|
|
9509
|
+
* @export
|
|
9510
|
+
*/
|
|
9511
|
+
declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9512
|
+
/**
|
|
9513
|
+
* Search posts with fuzzy query
|
|
9514
|
+
* @param {string} keyword
|
|
9515
|
+
* @param {number} [limit]
|
|
9516
|
+
* @param {string} [highlightPreTag]
|
|
9517
|
+
* @param {string} [highlightPostTag]
|
|
9518
|
+
* @param {*} [options] Override http request option.
|
|
9519
|
+
* @throws {RequiredError}
|
|
9520
|
+
*/
|
|
9521
|
+
searchPost: (keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9522
|
+
};
|
|
9523
|
+
/**
|
|
9524
|
+
* ApiHaloRunV1alpha1PostApi - functional programming interface
|
|
9525
|
+
* @export
|
|
9526
|
+
*/
|
|
9527
|
+
declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
9528
|
+
/**
|
|
9529
|
+
* Search posts with fuzzy query
|
|
9530
|
+
* @param {string} keyword
|
|
9531
|
+
* @param {number} [limit]
|
|
9532
|
+
* @param {string} [highlightPreTag]
|
|
9533
|
+
* @param {string} [highlightPostTag]
|
|
9534
|
+
* @param {*} [options] Override http request option.
|
|
9535
|
+
* @throws {RequiredError}
|
|
9536
|
+
*/
|
|
9537
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostHits>>;
|
|
9538
|
+
};
|
|
9539
|
+
/**
|
|
9540
|
+
* ApiHaloRunV1alpha1PostApi - factory interface
|
|
9541
|
+
* @export
|
|
9542
|
+
*/
|
|
9543
|
+
declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9544
|
+
/**
|
|
9545
|
+
* Search posts with fuzzy query
|
|
9546
|
+
* @param {string} keyword
|
|
9547
|
+
* @param {number} [limit]
|
|
9548
|
+
* @param {string} [highlightPreTag]
|
|
9549
|
+
* @param {string} [highlightPostTag]
|
|
9550
|
+
* @param {*} [options] Override http request option.
|
|
9551
|
+
* @throws {RequiredError}
|
|
9552
|
+
*/
|
|
9553
|
+
searchPost(keyword: string, limit?: number, highlightPreTag?: string, highlightPostTag?: string, options?: any): AxiosPromise<PostHits>;
|
|
9554
|
+
};
|
|
9555
|
+
/**
|
|
9556
|
+
* Request parameters for searchPost operation in ApiHaloRunV1alpha1PostApi.
|
|
9557
|
+
* @export
|
|
9558
|
+
* @interface ApiHaloRunV1alpha1PostApiSearchPostRequest
|
|
9559
|
+
*/
|
|
9560
|
+
interface ApiHaloRunV1alpha1PostApiSearchPostRequest {
|
|
9561
|
+
/**
|
|
9562
|
+
*
|
|
9563
|
+
* @type {string}
|
|
9564
|
+
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9565
|
+
*/
|
|
9566
|
+
readonly keyword: string;
|
|
9567
|
+
/**
|
|
9568
|
+
*
|
|
9569
|
+
* @type {number}
|
|
9570
|
+
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9571
|
+
*/
|
|
9572
|
+
readonly limit?: number;
|
|
9573
|
+
/**
|
|
9574
|
+
*
|
|
9575
|
+
* @type {string}
|
|
9576
|
+
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9577
|
+
*/
|
|
9578
|
+
readonly highlightPreTag?: string;
|
|
9579
|
+
/**
|
|
9580
|
+
*
|
|
9581
|
+
* @type {string}
|
|
9582
|
+
* @memberof ApiHaloRunV1alpha1PostApiSearchPost
|
|
9583
|
+
*/
|
|
9584
|
+
readonly highlightPostTag?: string;
|
|
9585
|
+
}
|
|
9586
|
+
/**
|
|
9587
|
+
* ApiHaloRunV1alpha1PostApi - object-oriented interface
|
|
9588
|
+
* @export
|
|
9589
|
+
* @class ApiHaloRunV1alpha1PostApi
|
|
9590
|
+
* @extends {BaseAPI}
|
|
9591
|
+
*/
|
|
9592
|
+
declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
|
|
9593
|
+
/**
|
|
9594
|
+
* Search posts with fuzzy query
|
|
9595
|
+
* @param {ApiHaloRunV1alpha1PostApiSearchPostRequest} requestParameters Request parameters.
|
|
9596
|
+
* @param {*} [options] Override http request option.
|
|
9597
|
+
* @throws {RequiredError}
|
|
9598
|
+
* @memberof ApiHaloRunV1alpha1PostApi
|
|
9599
|
+
*/
|
|
9600
|
+
searchPost(requestParameters: ApiHaloRunV1alpha1PostApiSearchPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<PostHits, any>>;
|
|
9601
|
+
}
|
|
9602
|
+
|
|
8918
9603
|
/**
|
|
8919
9604
|
* ApiHaloRunV1alpha1TrackerApi - axios parameter creator
|
|
8920
9605
|
* @export
|
|
@@ -11798,6 +12483,279 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
11798
12483
|
updatepluginHaloRunV1alpha1ReverseProxy(requestParameters: PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
11799
12484
|
}
|
|
11800
12485
|
|
|
12486
|
+
/**
|
|
12487
|
+
* PluginHaloRunV1alpha1SearchEngineApi - axios parameter creator
|
|
12488
|
+
* @export
|
|
12489
|
+
*/
|
|
12490
|
+
declare const PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12491
|
+
/**
|
|
12492
|
+
* Create plugin.halo.run/v1alpha1/SearchEngine
|
|
12493
|
+
* @param {SearchEngine} [searchEngine] Fresh searchengine
|
|
12494
|
+
* @param {*} [options] Override http request option.
|
|
12495
|
+
* @throws {RequiredError}
|
|
12496
|
+
*/
|
|
12497
|
+
createpluginHaloRunV1alpha1SearchEngine: (searchEngine?: SearchEngine, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12498
|
+
/**
|
|
12499
|
+
* Delete plugin.halo.run/v1alpha1/SearchEngine
|
|
12500
|
+
* @param {string} name Name of searchengine
|
|
12501
|
+
* @param {*} [options] Override http request option.
|
|
12502
|
+
* @throws {RequiredError}
|
|
12503
|
+
*/
|
|
12504
|
+
deletepluginHaloRunV1alpha1SearchEngine: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12505
|
+
/**
|
|
12506
|
+
* Get plugin.halo.run/v1alpha1/SearchEngine
|
|
12507
|
+
* @param {string} name Name of searchengine
|
|
12508
|
+
* @param {*} [options] Override http request option.
|
|
12509
|
+
* @throws {RequiredError}
|
|
12510
|
+
*/
|
|
12511
|
+
getpluginHaloRunV1alpha1SearchEngine: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12512
|
+
/**
|
|
12513
|
+
* List plugin.halo.run/v1alpha1/SearchEngine
|
|
12514
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
12515
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12516
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12517
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12518
|
+
* @param {*} [options] Override http request option.
|
|
12519
|
+
* @throws {RequiredError}
|
|
12520
|
+
*/
|
|
12521
|
+
listpluginHaloRunV1alpha1SearchEngine: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12522
|
+
/**
|
|
12523
|
+
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
12524
|
+
* @param {string} name Name of searchengine
|
|
12525
|
+
* @param {SearchEngine} [searchEngine] Updated searchengine
|
|
12526
|
+
* @param {*} [options] Override http request option.
|
|
12527
|
+
* @throws {RequiredError}
|
|
12528
|
+
*/
|
|
12529
|
+
updatepluginHaloRunV1alpha1SearchEngine: (name: string, searchEngine?: SearchEngine, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12530
|
+
};
|
|
12531
|
+
/**
|
|
12532
|
+
* PluginHaloRunV1alpha1SearchEngineApi - functional programming interface
|
|
12533
|
+
* @export
|
|
12534
|
+
*/
|
|
12535
|
+
declare const PluginHaloRunV1alpha1SearchEngineApiFp: (configuration?: Configuration) => {
|
|
12536
|
+
/**
|
|
12537
|
+
* Create plugin.halo.run/v1alpha1/SearchEngine
|
|
12538
|
+
* @param {SearchEngine} [searchEngine] Fresh searchengine
|
|
12539
|
+
* @param {*} [options] Override http request option.
|
|
12540
|
+
* @throws {RequiredError}
|
|
12541
|
+
*/
|
|
12542
|
+
createpluginHaloRunV1alpha1SearchEngine(searchEngine?: SearchEngine, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngine>>;
|
|
12543
|
+
/**
|
|
12544
|
+
* Delete plugin.halo.run/v1alpha1/SearchEngine
|
|
12545
|
+
* @param {string} name Name of searchengine
|
|
12546
|
+
* @param {*} [options] Override http request option.
|
|
12547
|
+
* @throws {RequiredError}
|
|
12548
|
+
*/
|
|
12549
|
+
deletepluginHaloRunV1alpha1SearchEngine(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12550
|
+
/**
|
|
12551
|
+
* Get plugin.halo.run/v1alpha1/SearchEngine
|
|
12552
|
+
* @param {string} name Name of searchengine
|
|
12553
|
+
* @param {*} [options] Override http request option.
|
|
12554
|
+
* @throws {RequiredError}
|
|
12555
|
+
*/
|
|
12556
|
+
getpluginHaloRunV1alpha1SearchEngine(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngine>>;
|
|
12557
|
+
/**
|
|
12558
|
+
* List plugin.halo.run/v1alpha1/SearchEngine
|
|
12559
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
12560
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12561
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12562
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12563
|
+
* @param {*} [options] Override http request option.
|
|
12564
|
+
* @throws {RequiredError}
|
|
12565
|
+
*/
|
|
12566
|
+
listpluginHaloRunV1alpha1SearchEngine(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngineList>>;
|
|
12567
|
+
/**
|
|
12568
|
+
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
12569
|
+
* @param {string} name Name of searchengine
|
|
12570
|
+
* @param {SearchEngine} [searchEngine] Updated searchengine
|
|
12571
|
+
* @param {*} [options] Override http request option.
|
|
12572
|
+
* @throws {RequiredError}
|
|
12573
|
+
*/
|
|
12574
|
+
updatepluginHaloRunV1alpha1SearchEngine(name: string, searchEngine?: SearchEngine, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchEngine>>;
|
|
12575
|
+
};
|
|
12576
|
+
/**
|
|
12577
|
+
* PluginHaloRunV1alpha1SearchEngineApi - factory interface
|
|
12578
|
+
* @export
|
|
12579
|
+
*/
|
|
12580
|
+
declare const PluginHaloRunV1alpha1SearchEngineApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12581
|
+
/**
|
|
12582
|
+
* Create plugin.halo.run/v1alpha1/SearchEngine
|
|
12583
|
+
* @param {SearchEngine} [searchEngine] Fresh searchengine
|
|
12584
|
+
* @param {*} [options] Override http request option.
|
|
12585
|
+
* @throws {RequiredError}
|
|
12586
|
+
*/
|
|
12587
|
+
createpluginHaloRunV1alpha1SearchEngine(searchEngine?: SearchEngine, options?: any): AxiosPromise<SearchEngine>;
|
|
12588
|
+
/**
|
|
12589
|
+
* Delete plugin.halo.run/v1alpha1/SearchEngine
|
|
12590
|
+
* @param {string} name Name of searchengine
|
|
12591
|
+
* @param {*} [options] Override http request option.
|
|
12592
|
+
* @throws {RequiredError}
|
|
12593
|
+
*/
|
|
12594
|
+
deletepluginHaloRunV1alpha1SearchEngine(name: string, options?: any): AxiosPromise<void>;
|
|
12595
|
+
/**
|
|
12596
|
+
* Get plugin.halo.run/v1alpha1/SearchEngine
|
|
12597
|
+
* @param {string} name Name of searchengine
|
|
12598
|
+
* @param {*} [options] Override http request option.
|
|
12599
|
+
* @throws {RequiredError}
|
|
12600
|
+
*/
|
|
12601
|
+
getpluginHaloRunV1alpha1SearchEngine(name: string, options?: any): AxiosPromise<SearchEngine>;
|
|
12602
|
+
/**
|
|
12603
|
+
* List plugin.halo.run/v1alpha1/SearchEngine
|
|
12604
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
12605
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
12606
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
12607
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
12608
|
+
* @param {*} [options] Override http request option.
|
|
12609
|
+
* @throws {RequiredError}
|
|
12610
|
+
*/
|
|
12611
|
+
listpluginHaloRunV1alpha1SearchEngine(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<SearchEngineList>;
|
|
12612
|
+
/**
|
|
12613
|
+
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
12614
|
+
* @param {string} name Name of searchengine
|
|
12615
|
+
* @param {SearchEngine} [searchEngine] Updated searchengine
|
|
12616
|
+
* @param {*} [options] Override http request option.
|
|
12617
|
+
* @throws {RequiredError}
|
|
12618
|
+
*/
|
|
12619
|
+
updatepluginHaloRunV1alpha1SearchEngine(name: string, searchEngine?: SearchEngine, options?: any): AxiosPromise<SearchEngine>;
|
|
12620
|
+
};
|
|
12621
|
+
/**
|
|
12622
|
+
* Request parameters for createpluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
12623
|
+
* @export
|
|
12624
|
+
* @interface PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest
|
|
12625
|
+
*/
|
|
12626
|
+
interface PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest {
|
|
12627
|
+
/**
|
|
12628
|
+
* Fresh searchengine
|
|
12629
|
+
* @type {SearchEngine}
|
|
12630
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngine
|
|
12631
|
+
*/
|
|
12632
|
+
readonly searchEngine?: SearchEngine;
|
|
12633
|
+
}
|
|
12634
|
+
/**
|
|
12635
|
+
* Request parameters for deletepluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
12636
|
+
* @export
|
|
12637
|
+
* @interface PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest
|
|
12638
|
+
*/
|
|
12639
|
+
interface PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest {
|
|
12640
|
+
/**
|
|
12641
|
+
* Name of searchengine
|
|
12642
|
+
* @type {string}
|
|
12643
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngine
|
|
12644
|
+
*/
|
|
12645
|
+
readonly name: string;
|
|
12646
|
+
}
|
|
12647
|
+
/**
|
|
12648
|
+
* Request parameters for getpluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
12649
|
+
* @export
|
|
12650
|
+
* @interface PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest
|
|
12651
|
+
*/
|
|
12652
|
+
interface PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest {
|
|
12653
|
+
/**
|
|
12654
|
+
* Name of searchengine
|
|
12655
|
+
* @type {string}
|
|
12656
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngine
|
|
12657
|
+
*/
|
|
12658
|
+
readonly name: string;
|
|
12659
|
+
}
|
|
12660
|
+
/**
|
|
12661
|
+
* Request parameters for listpluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
12662
|
+
* @export
|
|
12663
|
+
* @interface PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest
|
|
12664
|
+
*/
|
|
12665
|
+
interface PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest {
|
|
12666
|
+
/**
|
|
12667
|
+
* The page number. Zero indicates no page.
|
|
12668
|
+
* @type {number}
|
|
12669
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
12670
|
+
*/
|
|
12671
|
+
readonly page?: number;
|
|
12672
|
+
/**
|
|
12673
|
+
* Size of one page. Zero indicates no limit.
|
|
12674
|
+
* @type {number}
|
|
12675
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
12676
|
+
*/
|
|
12677
|
+
readonly size?: number;
|
|
12678
|
+
/**
|
|
12679
|
+
* Label selector for filtering.
|
|
12680
|
+
* @type {Array<string>}
|
|
12681
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
12682
|
+
*/
|
|
12683
|
+
readonly labelSelector?: Array<string>;
|
|
12684
|
+
/**
|
|
12685
|
+
* Field selector for filtering.
|
|
12686
|
+
* @type {Array<string>}
|
|
12687
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngine
|
|
12688
|
+
*/
|
|
12689
|
+
readonly fieldSelector?: Array<string>;
|
|
12690
|
+
}
|
|
12691
|
+
/**
|
|
12692
|
+
* Request parameters for updatepluginHaloRunV1alpha1SearchEngine operation in PluginHaloRunV1alpha1SearchEngineApi.
|
|
12693
|
+
* @export
|
|
12694
|
+
* @interface PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest
|
|
12695
|
+
*/
|
|
12696
|
+
interface PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest {
|
|
12697
|
+
/**
|
|
12698
|
+
* Name of searchengine
|
|
12699
|
+
* @type {string}
|
|
12700
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngine
|
|
12701
|
+
*/
|
|
12702
|
+
readonly name: string;
|
|
12703
|
+
/**
|
|
12704
|
+
* Updated searchengine
|
|
12705
|
+
* @type {SearchEngine}
|
|
12706
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngine
|
|
12707
|
+
*/
|
|
12708
|
+
readonly searchEngine?: SearchEngine;
|
|
12709
|
+
}
|
|
12710
|
+
/**
|
|
12711
|
+
* PluginHaloRunV1alpha1SearchEngineApi - object-oriented interface
|
|
12712
|
+
* @export
|
|
12713
|
+
* @class PluginHaloRunV1alpha1SearchEngineApi
|
|
12714
|
+
* @extends {BaseAPI}
|
|
12715
|
+
*/
|
|
12716
|
+
declare class PluginHaloRunV1alpha1SearchEngineApi extends BaseAPI {
|
|
12717
|
+
/**
|
|
12718
|
+
* Create plugin.halo.run/v1alpha1/SearchEngine
|
|
12719
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
12720
|
+
* @param {*} [options] Override http request option.
|
|
12721
|
+
* @throws {RequiredError}
|
|
12722
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApi
|
|
12723
|
+
*/
|
|
12724
|
+
createpluginHaloRunV1alpha1SearchEngine(requestParameters?: PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SearchEngine, any>>;
|
|
12725
|
+
/**
|
|
12726
|
+
* Delete plugin.halo.run/v1alpha1/SearchEngine
|
|
12727
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
12728
|
+
* @param {*} [options] Override http request option.
|
|
12729
|
+
* @throws {RequiredError}
|
|
12730
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApi
|
|
12731
|
+
*/
|
|
12732
|
+
deletepluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
12733
|
+
/**
|
|
12734
|
+
* Get plugin.halo.run/v1alpha1/SearchEngine
|
|
12735
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
12736
|
+
* @param {*} [options] Override http request option.
|
|
12737
|
+
* @throws {RequiredError}
|
|
12738
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApi
|
|
12739
|
+
*/
|
|
12740
|
+
getpluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SearchEngine, any>>;
|
|
12741
|
+
/**
|
|
12742
|
+
* List plugin.halo.run/v1alpha1/SearchEngine
|
|
12743
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
12744
|
+
* @param {*} [options] Override http request option.
|
|
12745
|
+
* @throws {RequiredError}
|
|
12746
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApi
|
|
12747
|
+
*/
|
|
12748
|
+
listpluginHaloRunV1alpha1SearchEngine(requestParameters?: PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SearchEngineList, any>>;
|
|
12749
|
+
/**
|
|
12750
|
+
* Update plugin.halo.run/v1alpha1/SearchEngine
|
|
12751
|
+
* @param {PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest} requestParameters Request parameters.
|
|
12752
|
+
* @param {*} [options] Override http request option.
|
|
12753
|
+
* @throws {RequiredError}
|
|
12754
|
+
* @memberof PluginHaloRunV1alpha1SearchEngineApi
|
|
12755
|
+
*/
|
|
12756
|
+
updatepluginHaloRunV1alpha1SearchEngine(requestParameters: PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SearchEngine, any>>;
|
|
12757
|
+
}
|
|
12758
|
+
|
|
11801
12759
|
/**
|
|
11802
12760
|
* StorageHaloRunV1alpha1AttachmentApi - axios parameter creator
|
|
11803
12761
|
* @export
|
|
@@ -15347,4 +16305,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15347
16305
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15348
16306
|
}
|
|
15349
16307
|
|
|
15350
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, 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, 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, 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 };
|
|
16308
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, 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, 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 };
|