@halo-dev/api-client 0.0.43 → 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 +411 -44
- package/dist/index.d.ts +1086 -134
- package/dist/index.mjs +400 -45
- 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
|
/**
|
|
@@ -1731,6 +1761,12 @@ interface CounterList {
|
|
|
1731
1761
|
* @memberof CounterList
|
|
1732
1762
|
*/
|
|
1733
1763
|
hasPrevious: boolean;
|
|
1764
|
+
/**
|
|
1765
|
+
* Indicates total pages.
|
|
1766
|
+
* @type {number}
|
|
1767
|
+
* @memberof CounterList
|
|
1768
|
+
*/
|
|
1769
|
+
totalPages: number;
|
|
1734
1770
|
}
|
|
1735
1771
|
|
|
1736
1772
|
/**
|
|
@@ -1987,16 +2023,16 @@ interface Extension {
|
|
|
1987
2023
|
kind: string;
|
|
1988
2024
|
/**
|
|
1989
2025
|
*
|
|
1990
|
-
* @type {
|
|
2026
|
+
* @type {string}
|
|
1991
2027
|
* @memberof Extension
|
|
1992
2028
|
*/
|
|
1993
|
-
|
|
2029
|
+
apiVersion: string;
|
|
1994
2030
|
/**
|
|
1995
2031
|
*
|
|
1996
|
-
* @type {
|
|
2032
|
+
* @type {Metadata}
|
|
1997
2033
|
* @memberof Extension
|
|
1998
2034
|
*/
|
|
1999
|
-
|
|
2035
|
+
metadata: Metadata;
|
|
2000
2036
|
}
|
|
2001
2037
|
|
|
2002
2038
|
/**
|
|
@@ -2227,6 +2263,12 @@ interface GroupList {
|
|
|
2227
2263
|
* @memberof GroupList
|
|
2228
2264
|
*/
|
|
2229
2265
|
hasPrevious: boolean;
|
|
2266
|
+
/**
|
|
2267
|
+
* Indicates total pages.
|
|
2268
|
+
* @type {number}
|
|
2269
|
+
* @memberof GroupList
|
|
2270
|
+
*/
|
|
2271
|
+
totalPages: number;
|
|
2230
2272
|
}
|
|
2231
2273
|
|
|
2232
2274
|
/**
|
|
@@ -2364,6 +2406,12 @@ interface ListedCommentList {
|
|
|
2364
2406
|
* @memberof ListedCommentList
|
|
2365
2407
|
*/
|
|
2366
2408
|
hasPrevious: boolean;
|
|
2409
|
+
/**
|
|
2410
|
+
* Indicates total pages.
|
|
2411
|
+
* @type {number}
|
|
2412
|
+
* @memberof ListedCommentList
|
|
2413
|
+
*/
|
|
2414
|
+
totalPages: number;
|
|
2367
2415
|
}
|
|
2368
2416
|
|
|
2369
2417
|
/**
|
|
@@ -2927,6 +2975,12 @@ interface ListedPostList {
|
|
|
2927
2975
|
* @memberof ListedPostList
|
|
2928
2976
|
*/
|
|
2929
2977
|
hasPrevious: boolean;
|
|
2978
|
+
/**
|
|
2979
|
+
* Indicates total pages.
|
|
2980
|
+
* @type {number}
|
|
2981
|
+
* @memberof ListedPostList
|
|
2982
|
+
*/
|
|
2983
|
+
totalPages: number;
|
|
2930
2984
|
}
|
|
2931
2985
|
|
|
2932
2986
|
/**
|
|
@@ -3163,6 +3217,12 @@ interface ListedReplyList {
|
|
|
3163
3217
|
* @memberof ListedReplyList
|
|
3164
3218
|
*/
|
|
3165
3219
|
hasPrevious: boolean;
|
|
3220
|
+
/**
|
|
3221
|
+
* Indicates total pages.
|
|
3222
|
+
* @type {number}
|
|
3223
|
+
* @memberof ListedReplyList
|
|
3224
|
+
*/
|
|
3225
|
+
totalPages: number;
|
|
3166
3226
|
}
|
|
3167
3227
|
|
|
3168
3228
|
/**
|
|
@@ -3529,6 +3589,12 @@ interface ListedSinglePageList {
|
|
|
3529
3589
|
* @memberof ListedSinglePageList
|
|
3530
3590
|
*/
|
|
3531
3591
|
hasPrevious: boolean;
|
|
3592
|
+
/**
|
|
3593
|
+
* Indicates total pages.
|
|
3594
|
+
* @type {number}
|
|
3595
|
+
* @memberof ListedSinglePageList
|
|
3596
|
+
*/
|
|
3597
|
+
totalPages: number;
|
|
3532
3598
|
}
|
|
3533
3599
|
|
|
3534
3600
|
/**
|
|
@@ -3870,6 +3936,12 @@ interface MenuItemList {
|
|
|
3870
3936
|
* @memberof MenuItemList
|
|
3871
3937
|
*/
|
|
3872
3938
|
hasPrevious: boolean;
|
|
3939
|
+
/**
|
|
3940
|
+
* Indicates total pages.
|
|
3941
|
+
* @type {number}
|
|
3942
|
+
* @memberof MenuItemList
|
|
3943
|
+
*/
|
|
3944
|
+
totalPages: number;
|
|
3873
3945
|
}
|
|
3874
3946
|
|
|
3875
3947
|
/**
|
|
@@ -3938,6 +4010,12 @@ interface MenuList {
|
|
|
3938
4010
|
* @memberof MenuList
|
|
3939
4011
|
*/
|
|
3940
4012
|
hasPrevious: boolean;
|
|
4013
|
+
/**
|
|
4014
|
+
* Indicates total pages.
|
|
4015
|
+
* @type {number}
|
|
4016
|
+
* @memberof MenuList
|
|
4017
|
+
*/
|
|
4018
|
+
totalPages: number;
|
|
3941
4019
|
}
|
|
3942
4020
|
|
|
3943
4021
|
/**
|
|
@@ -4105,6 +4183,12 @@ interface PersonalAccessTokenList {
|
|
|
4105
4183
|
* @memberof PersonalAccessTokenList
|
|
4106
4184
|
*/
|
|
4107
4185
|
hasPrevious: boolean;
|
|
4186
|
+
/**
|
|
4187
|
+
* Indicates total pages.
|
|
4188
|
+
* @type {number}
|
|
4189
|
+
* @memberof PersonalAccessTokenList
|
|
4190
|
+
*/
|
|
4191
|
+
totalPages: number;
|
|
4108
4192
|
}
|
|
4109
4193
|
|
|
4110
4194
|
/**
|
|
@@ -4400,6 +4484,12 @@ interface PluginList {
|
|
|
4400
4484
|
* @memberof PluginList
|
|
4401
4485
|
*/
|
|
4402
4486
|
hasPrevious: boolean;
|
|
4487
|
+
/**
|
|
4488
|
+
* Indicates total pages.
|
|
4489
|
+
* @type {number}
|
|
4490
|
+
* @memberof PluginList
|
|
4491
|
+
*/
|
|
4492
|
+
totalPages: number;
|
|
4403
4493
|
}
|
|
4404
4494
|
|
|
4405
4495
|
/**
|
|
@@ -4550,6 +4640,12 @@ interface PolicyList {
|
|
|
4550
4640
|
* @memberof PolicyList
|
|
4551
4641
|
*/
|
|
4552
4642
|
hasPrevious: boolean;
|
|
4643
|
+
/**
|
|
4644
|
+
* Indicates total pages.
|
|
4645
|
+
* @type {number}
|
|
4646
|
+
* @memberof PolicyList
|
|
4647
|
+
*/
|
|
4648
|
+
totalPages: number;
|
|
4553
4649
|
}
|
|
4554
4650
|
|
|
4555
4651
|
/**
|
|
@@ -4743,6 +4839,111 @@ interface PolicyTemplateList {
|
|
|
4743
4839
|
* @memberof PolicyTemplateList
|
|
4744
4840
|
*/
|
|
4745
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;
|
|
4746
4947
|
}
|
|
4747
4948
|
|
|
4748
4949
|
/**
|
|
@@ -4811,6 +5012,12 @@ interface PostList {
|
|
|
4811
5012
|
* @memberof PostList
|
|
4812
5013
|
*/
|
|
4813
5014
|
hasPrevious: boolean;
|
|
5015
|
+
/**
|
|
5016
|
+
* Indicates total pages.
|
|
5017
|
+
* @type {number}
|
|
5018
|
+
* @memberof PostList
|
|
5019
|
+
*/
|
|
5020
|
+
totalPages: number;
|
|
4814
5021
|
}
|
|
4815
5022
|
|
|
4816
5023
|
/**
|
|
@@ -4911,6 +5118,12 @@ interface ReplyList {
|
|
|
4911
5118
|
* @memberof ReplyList
|
|
4912
5119
|
*/
|
|
4913
5120
|
hasPrevious: boolean;
|
|
5121
|
+
/**
|
|
5122
|
+
* Indicates total pages.
|
|
5123
|
+
* @type {number}
|
|
5124
|
+
* @memberof ReplyList
|
|
5125
|
+
*/
|
|
5126
|
+
totalPages: number;
|
|
4914
5127
|
}
|
|
4915
5128
|
|
|
4916
5129
|
/**
|
|
@@ -5067,6 +5280,12 @@ interface ReplyVoList {
|
|
|
5067
5280
|
* @memberof ReplyVoList
|
|
5068
5281
|
*/
|
|
5069
5282
|
hasPrevious: boolean;
|
|
5283
|
+
/**
|
|
5284
|
+
* Indicates total pages.
|
|
5285
|
+
* @type {number}
|
|
5286
|
+
* @memberof ReplyVoList
|
|
5287
|
+
*/
|
|
5288
|
+
totalPages: number;
|
|
5070
5289
|
}
|
|
5071
5290
|
|
|
5072
5291
|
/**
|
|
@@ -5211,6 +5430,12 @@ interface ReverseProxyList {
|
|
|
5211
5430
|
* @memberof ReverseProxyList
|
|
5212
5431
|
*/
|
|
5213
5432
|
hasPrevious: boolean;
|
|
5433
|
+
/**
|
|
5434
|
+
* Indicates total pages.
|
|
5435
|
+
* @type {number}
|
|
5436
|
+
* @memberof ReverseProxyList
|
|
5437
|
+
*/
|
|
5438
|
+
totalPages: number;
|
|
5214
5439
|
}
|
|
5215
5440
|
|
|
5216
5441
|
/**
|
|
@@ -5447,6 +5672,12 @@ interface RoleBindingList {
|
|
|
5447
5672
|
* @memberof RoleBindingList
|
|
5448
5673
|
*/
|
|
5449
5674
|
hasPrevious: boolean;
|
|
5675
|
+
/**
|
|
5676
|
+
* Indicates total pages.
|
|
5677
|
+
* @type {number}
|
|
5678
|
+
* @memberof RoleBindingList
|
|
5679
|
+
*/
|
|
5680
|
+
totalPages: number;
|
|
5450
5681
|
}
|
|
5451
5682
|
|
|
5452
5683
|
/**
|
|
@@ -5515,6 +5746,12 @@ interface RoleList {
|
|
|
5515
5746
|
* @memberof RoleList
|
|
5516
5747
|
*/
|
|
5517
5748
|
hasPrevious: boolean;
|
|
5749
|
+
/**
|
|
5750
|
+
* Indicates total pages.
|
|
5751
|
+
* @type {number}
|
|
5752
|
+
* @memberof RoleList
|
|
5753
|
+
*/
|
|
5754
|
+
totalPages: number;
|
|
5518
5755
|
}
|
|
5519
5756
|
|
|
5520
5757
|
/**
|
|
@@ -5528,56 +5765,49 @@ interface RoleList {
|
|
|
5528
5765
|
* https://openapi-generator.tech
|
|
5529
5766
|
* Do not edit the class manually.
|
|
5530
5767
|
*/
|
|
5768
|
+
|
|
5531
5769
|
/**
|
|
5532
5770
|
*
|
|
5533
5771
|
* @export
|
|
5534
|
-
* @interface
|
|
5772
|
+
* @interface SearchEngineSpec
|
|
5535
5773
|
*/
|
|
5536
|
-
interface
|
|
5774
|
+
interface SearchEngineSpec {
|
|
5537
5775
|
/**
|
|
5538
5776
|
*
|
|
5539
5777
|
* @type {string}
|
|
5540
|
-
* @memberof
|
|
5778
|
+
* @memberof SearchEngineSpec
|
|
5541
5779
|
*/
|
|
5542
|
-
|
|
5780
|
+
logo?: string;
|
|
5543
5781
|
/**
|
|
5544
5782
|
*
|
|
5545
5783
|
* @type {string}
|
|
5546
|
-
* @memberof
|
|
5784
|
+
* @memberof SearchEngineSpec
|
|
5547
5785
|
*/
|
|
5548
|
-
|
|
5786
|
+
website?: string;
|
|
5549
5787
|
/**
|
|
5550
5788
|
*
|
|
5551
|
-
* @type {
|
|
5552
|
-
* @memberof
|
|
5789
|
+
* @type {string}
|
|
5790
|
+
* @memberof SearchEngineSpec
|
|
5553
5791
|
*/
|
|
5554
|
-
|
|
5555
|
-
}
|
|
5556
|
-
|
|
5557
|
-
/**
|
|
5558
|
-
* Halo Next API
|
|
5559
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5560
|
-
*
|
|
5561
|
-
* The version of the OpenAPI document: 2.0.0
|
|
5562
|
-
*
|
|
5563
|
-
*
|
|
5564
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5565
|
-
* https://openapi-generator.tech
|
|
5566
|
-
* Do not edit the class manually.
|
|
5567
|
-
*/
|
|
5568
|
-
|
|
5569
|
-
/**
|
|
5570
|
-
*
|
|
5571
|
-
* @export
|
|
5572
|
-
* @interface SettingSpec
|
|
5573
|
-
*/
|
|
5574
|
-
interface SettingSpec {
|
|
5792
|
+
displayName: string;
|
|
5575
5793
|
/**
|
|
5576
5794
|
*
|
|
5577
|
-
* @type {
|
|
5578
|
-
* @memberof
|
|
5795
|
+
* @type {string}
|
|
5796
|
+
* @memberof SearchEngineSpec
|
|
5579
5797
|
*/
|
|
5580
|
-
|
|
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;
|
|
5581
5811
|
}
|
|
5582
5812
|
|
|
5583
5813
|
/**
|
|
@@ -5595,31 +5825,31 @@ interface SettingSpec {
|
|
|
5595
5825
|
/**
|
|
5596
5826
|
*
|
|
5597
5827
|
* @export
|
|
5598
|
-
* @interface
|
|
5828
|
+
* @interface SearchEngine
|
|
5599
5829
|
*/
|
|
5600
|
-
interface
|
|
5830
|
+
interface SearchEngine {
|
|
5601
5831
|
/**
|
|
5602
5832
|
*
|
|
5603
|
-
* @type {
|
|
5604
|
-
* @memberof
|
|
5833
|
+
* @type {SearchEngineSpec}
|
|
5834
|
+
* @memberof SearchEngine
|
|
5605
5835
|
*/
|
|
5606
|
-
spec:
|
|
5836
|
+
spec: SearchEngineSpec;
|
|
5607
5837
|
/**
|
|
5608
5838
|
*
|
|
5609
5839
|
* @type {string}
|
|
5610
|
-
* @memberof
|
|
5840
|
+
* @memberof SearchEngine
|
|
5611
5841
|
*/
|
|
5612
5842
|
apiVersion: string;
|
|
5613
5843
|
/**
|
|
5614
5844
|
*
|
|
5615
5845
|
* @type {string}
|
|
5616
|
-
* @memberof
|
|
5846
|
+
* @memberof SearchEngine
|
|
5617
5847
|
*/
|
|
5618
5848
|
kind: string;
|
|
5619
5849
|
/**
|
|
5620
5850
|
*
|
|
5621
5851
|
* @type {Metadata}
|
|
5622
|
-
* @memberof
|
|
5852
|
+
* @memberof SearchEngine
|
|
5623
5853
|
*/
|
|
5624
5854
|
metadata: Metadata;
|
|
5625
5855
|
}
|
|
@@ -5639,57 +5869,63 @@ interface Setting {
|
|
|
5639
5869
|
/**
|
|
5640
5870
|
*
|
|
5641
5871
|
* @export
|
|
5642
|
-
* @interface
|
|
5872
|
+
* @interface SearchEngineList
|
|
5643
5873
|
*/
|
|
5644
|
-
interface
|
|
5874
|
+
interface SearchEngineList {
|
|
5645
5875
|
/**
|
|
5646
5876
|
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
5647
5877
|
* @type {number}
|
|
5648
|
-
* @memberof
|
|
5878
|
+
* @memberof SearchEngineList
|
|
5649
5879
|
*/
|
|
5650
5880
|
page: number;
|
|
5651
5881
|
/**
|
|
5652
5882
|
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
5653
5883
|
* @type {number}
|
|
5654
|
-
* @memberof
|
|
5884
|
+
* @memberof SearchEngineList
|
|
5655
5885
|
*/
|
|
5656
5886
|
size: number;
|
|
5657
5887
|
/**
|
|
5658
5888
|
* Total elements.
|
|
5659
5889
|
* @type {number}
|
|
5660
|
-
* @memberof
|
|
5890
|
+
* @memberof SearchEngineList
|
|
5661
5891
|
*/
|
|
5662
5892
|
total: number;
|
|
5663
5893
|
/**
|
|
5664
5894
|
* A chunk of items.
|
|
5665
|
-
* @type {Array<
|
|
5666
|
-
* @memberof
|
|
5895
|
+
* @type {Array<SearchEngine>}
|
|
5896
|
+
* @memberof SearchEngineList
|
|
5667
5897
|
*/
|
|
5668
|
-
items: Array<
|
|
5898
|
+
items: Array<SearchEngine>;
|
|
5669
5899
|
/**
|
|
5670
5900
|
* Indicates whether current page is the first page.
|
|
5671
5901
|
* @type {boolean}
|
|
5672
|
-
* @memberof
|
|
5902
|
+
* @memberof SearchEngineList
|
|
5673
5903
|
*/
|
|
5674
5904
|
first: boolean;
|
|
5675
5905
|
/**
|
|
5676
5906
|
* Indicates whether current page is the last page.
|
|
5677
5907
|
* @type {boolean}
|
|
5678
|
-
* @memberof
|
|
5908
|
+
* @memberof SearchEngineList
|
|
5679
5909
|
*/
|
|
5680
5910
|
last: boolean;
|
|
5681
5911
|
/**
|
|
5682
5912
|
* Indicates whether current page has previous page.
|
|
5683
5913
|
* @type {boolean}
|
|
5684
|
-
* @memberof
|
|
5914
|
+
* @memberof SearchEngineList
|
|
5685
5915
|
*/
|
|
5686
5916
|
hasNext: boolean;
|
|
5687
5917
|
/**
|
|
5688
5918
|
* Indicates whether current page has previous page.
|
|
5689
5919
|
* @type {boolean}
|
|
5690
|
-
* @memberof
|
|
5920
|
+
* @memberof SearchEngineList
|
|
5691
5921
|
*/
|
|
5692
5922
|
hasPrevious: boolean;
|
|
5923
|
+
/**
|
|
5924
|
+
* Indicates total pages.
|
|
5925
|
+
* @type {number}
|
|
5926
|
+
* @memberof SearchEngineList
|
|
5927
|
+
*/
|
|
5928
|
+
totalPages: number;
|
|
5693
5929
|
}
|
|
5694
5930
|
|
|
5695
5931
|
/**
|
|
@@ -5703,17 +5939,198 @@ interface SettingList {
|
|
|
5703
5939
|
* https://openapi-generator.tech
|
|
5704
5940
|
* Do not edit the class manually.
|
|
5705
5941
|
*/
|
|
5706
|
-
|
|
5707
5942
|
/**
|
|
5708
5943
|
*
|
|
5709
5944
|
* @export
|
|
5710
|
-
* @interface
|
|
5945
|
+
* @interface SettingForm
|
|
5711
5946
|
*/
|
|
5712
|
-
interface
|
|
5947
|
+
interface SettingForm {
|
|
5713
5948
|
/**
|
|
5714
|
-
*
|
|
5715
|
-
* @type {
|
|
5716
|
-
* @memberof
|
|
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 {
|
|
6130
|
+
/**
|
|
6131
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
6132
|
+
* @type {number}
|
|
6133
|
+
* @memberof SinglePageList
|
|
5717
6134
|
*/
|
|
5718
6135
|
page: number;
|
|
5719
6136
|
/**
|
|
@@ -5758,6 +6175,12 @@ interface SinglePageList {
|
|
|
5758
6175
|
* @memberof SinglePageList
|
|
5759
6176
|
*/
|
|
5760
6177
|
hasPrevious: boolean;
|
|
6178
|
+
/**
|
|
6179
|
+
* Indicates total pages.
|
|
6180
|
+
* @type {number}
|
|
6181
|
+
* @memberof SinglePageList
|
|
6182
|
+
*/
|
|
6183
|
+
totalPages: number;
|
|
5761
6184
|
}
|
|
5762
6185
|
|
|
5763
6186
|
/**
|
|
@@ -5976,6 +6399,12 @@ interface SnapshotList {
|
|
|
5976
6399
|
* @memberof SnapshotList
|
|
5977
6400
|
*/
|
|
5978
6401
|
hasPrevious: boolean;
|
|
6402
|
+
/**
|
|
6403
|
+
* Indicates total pages.
|
|
6404
|
+
* @type {number}
|
|
6405
|
+
* @memberof SnapshotList
|
|
6406
|
+
*/
|
|
6407
|
+
totalPages: number;
|
|
5979
6408
|
}
|
|
5980
6409
|
|
|
5981
6410
|
/**
|
|
@@ -6044,6 +6473,12 @@ interface TagList {
|
|
|
6044
6473
|
* @memberof TagList
|
|
6045
6474
|
*/
|
|
6046
6475
|
hasPrevious: boolean;
|
|
6476
|
+
/**
|
|
6477
|
+
* Indicates total pages.
|
|
6478
|
+
* @type {number}
|
|
6479
|
+
* @memberof TagList
|
|
6480
|
+
*/
|
|
6481
|
+
totalPages: number;
|
|
6047
6482
|
}
|
|
6048
6483
|
|
|
6049
6484
|
/**
|
|
@@ -6273,6 +6708,12 @@ interface ThemeList {
|
|
|
6273
6708
|
* @memberof ThemeList
|
|
6274
6709
|
*/
|
|
6275
6710
|
hasPrevious: boolean;
|
|
6711
|
+
/**
|
|
6712
|
+
* Indicates total pages.
|
|
6713
|
+
* @type {number}
|
|
6714
|
+
* @memberof ThemeList
|
|
6715
|
+
*/
|
|
6716
|
+
totalPages: number;
|
|
6276
6717
|
}
|
|
6277
6718
|
|
|
6278
6719
|
/**
|
|
@@ -6502,6 +6943,12 @@ interface UserList {
|
|
|
6502
6943
|
* @memberof UserList
|
|
6503
6944
|
*/
|
|
6504
6945
|
hasPrevious: boolean;
|
|
6946
|
+
/**
|
|
6947
|
+
* Indicates total pages.
|
|
6948
|
+
* @type {number}
|
|
6949
|
+
* @memberof UserList
|
|
6950
|
+
*/
|
|
6951
|
+
totalPages: number;
|
|
6505
6952
|
}
|
|
6506
6953
|
|
|
6507
6954
|
/**
|
|
@@ -6582,8 +7029,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
6582
7029
|
*
|
|
6583
7030
|
* @param {string} [policy] Name of policy
|
|
6584
7031
|
* @param {string} [displayName] Display name of attachment
|
|
6585
|
-
* @param {string} [group] Name of group
|
|
6586
7032
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7033
|
+
* @param {string} [group] Name of group
|
|
6587
7034
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6588
7035
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6589
7036
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6591,7 +7038,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
6591
7038
|
* @param {*} [options] Override http request option.
|
|
6592
7039
|
* @throws {RequiredError}
|
|
6593
7040
|
*/
|
|
6594
|
-
searchAttachments: (policy?: string, displayName?: 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>;
|
|
6595
7042
|
/**
|
|
6596
7043
|
*
|
|
6597
7044
|
* @param {any} file
|
|
@@ -6611,8 +7058,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
6611
7058
|
*
|
|
6612
7059
|
* @param {string} [policy] Name of policy
|
|
6613
7060
|
* @param {string} [displayName] Display name of attachment
|
|
6614
|
-
* @param {string} [group] Name of group
|
|
6615
7061
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7062
|
+
* @param {string} [group] Name of group
|
|
6616
7063
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6617
7064
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6618
7065
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6620,7 +7067,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
6620
7067
|
* @param {*} [options] Override http request option.
|
|
6621
7068
|
* @throws {RequiredError}
|
|
6622
7069
|
*/
|
|
6623
|
-
searchAttachments(policy?: string, displayName?: 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>>;
|
|
6624
7071
|
/**
|
|
6625
7072
|
*
|
|
6626
7073
|
* @param {any} file
|
|
@@ -6640,8 +7087,8 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
6640
7087
|
*
|
|
6641
7088
|
* @param {string} [policy] Name of policy
|
|
6642
7089
|
* @param {string} [displayName] Display name of attachment
|
|
6643
|
-
* @param {string} [group] Name of group
|
|
6644
7090
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7091
|
+
* @param {string} [group] Name of group
|
|
6645
7092
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6646
7093
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
6647
7094
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -6649,7 +7096,7 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
6649
7096
|
* @param {*} [options] Override http request option.
|
|
6650
7097
|
* @throws {RequiredError}
|
|
6651
7098
|
*/
|
|
6652
|
-
searchAttachments(policy?: string, displayName?: 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>;
|
|
6653
7100
|
/**
|
|
6654
7101
|
*
|
|
6655
7102
|
* @param {any} file
|
|
@@ -6679,17 +7126,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
6679
7126
|
*/
|
|
6680
7127
|
readonly displayName?: string;
|
|
6681
7128
|
/**
|
|
6682
|
-
* Name of
|
|
7129
|
+
* Name of user who uploaded the attachment
|
|
6683
7130
|
* @type {string}
|
|
6684
7131
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6685
7132
|
*/
|
|
6686
|
-
readonly
|
|
7133
|
+
readonly uploadedBy?: string;
|
|
6687
7134
|
/**
|
|
6688
|
-
* Name of
|
|
7135
|
+
* Name of group
|
|
6689
7136
|
* @type {string}
|
|
6690
7137
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
6691
7138
|
*/
|
|
6692
|
-
readonly
|
|
7139
|
+
readonly group?: string;
|
|
6693
7140
|
/**
|
|
6694
7141
|
* Size of one page. Zero indicates no limit.
|
|
6695
7142
|
* @type {number}
|
|
@@ -7215,6 +7662,58 @@ declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
|
7215
7662
|
updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentResponse, any>>;
|
|
7216
7663
|
}
|
|
7217
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
|
+
|
|
7218
7717
|
/**
|
|
7219
7718
|
* ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
|
|
7220
7719
|
* @export
|
|
@@ -7230,8 +7729,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7230
7729
|
/**
|
|
7231
7730
|
* List plugins using query criteria and sort params
|
|
7232
7731
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7233
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7234
7732
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7733
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7235
7734
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7236
7735
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7237
7736
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7239,7 +7738,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7239
7738
|
* @param {*} [options] Override http request option.
|
|
7240
7739
|
* @throws {RequiredError}
|
|
7241
7740
|
*/
|
|
7242
|
-
listPlugins: (sort?: Array<string>,
|
|
7741
|
+
listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7243
7742
|
/**
|
|
7244
7743
|
* Upgrade a plugin by uploading a Jar file
|
|
7245
7744
|
* @param {string} name
|
|
@@ -7264,8 +7763,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7264
7763
|
/**
|
|
7265
7764
|
* List plugins using query criteria and sort params
|
|
7266
7765
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7267
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7268
7766
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7767
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7269
7768
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7270
7769
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7271
7770
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7273,7 +7772,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7273
7772
|
* @param {*} [options] Override http request option.
|
|
7274
7773
|
* @throws {RequiredError}
|
|
7275
7774
|
*/
|
|
7276
|
-
listPlugins(sort?: Array<string>,
|
|
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>>;
|
|
7277
7776
|
/**
|
|
7278
7777
|
* Upgrade a plugin by uploading a Jar file
|
|
7279
7778
|
* @param {string} name
|
|
@@ -7298,8 +7797,8 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7298
7797
|
/**
|
|
7299
7798
|
* List plugins using query criteria and sort params
|
|
7300
7799
|
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7301
|
-
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7302
7800
|
* @param {string} [keyword] Keyword of plugin name or description
|
|
7801
|
+
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7303
7802
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7304
7803
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7305
7804
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7307,7 +7806,7 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7307
7806
|
* @param {*} [options] Override http request option.
|
|
7308
7807
|
* @throws {RequiredError}
|
|
7309
7808
|
*/
|
|
7310
|
-
listPlugins(sort?: Array<string>,
|
|
7809
|
+
listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
|
|
7311
7810
|
/**
|
|
7312
7811
|
* Upgrade a plugin by uploading a Jar file
|
|
7313
7812
|
* @param {string} name
|
|
@@ -7342,18 +7841,18 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7342
7841
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7343
7842
|
*/
|
|
7344
7843
|
readonly sort?: Array<string>;
|
|
7345
|
-
/**
|
|
7346
|
-
* Whether the plugin is enabled
|
|
7347
|
-
* @type {boolean}
|
|
7348
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7349
|
-
*/
|
|
7350
|
-
readonly enabled?: boolean;
|
|
7351
7844
|
/**
|
|
7352
7845
|
* Keyword of plugin name or description
|
|
7353
7846
|
* @type {string}
|
|
7354
7847
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7355
7848
|
*/
|
|
7356
7849
|
readonly keyword?: string;
|
|
7850
|
+
/**
|
|
7851
|
+
* Whether the plugin is enabled
|
|
7852
|
+
* @type {boolean}
|
|
7853
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7854
|
+
*/
|
|
7855
|
+
readonly enabled?: boolean;
|
|
7357
7856
|
/**
|
|
7358
7857
|
* Size of one page. Zero indicates no limit.
|
|
7359
7858
|
* @type {number}
|
|
@@ -7446,13 +7945,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7446
7945
|
/**
|
|
7447
7946
|
* List posts.
|
|
7448
7947
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7449
|
-
* @param {Array<string>} [tag]
|
|
7450
7948
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7451
7949
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7452
|
-
* @param {Array<string>} [
|
|
7453
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7454
|
-
* @param {Array<string>} [category]
|
|
7950
|
+
* @param {Array<string>} [tag]
|
|
7455
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]
|
|
7456
7955
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7457
7956
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7458
7957
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7460,7 +7959,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7460
7959
|
* @param {*} [options] Override http request option.
|
|
7461
7960
|
* @throws {RequiredError}
|
|
7462
7961
|
*/
|
|
7463
|
-
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>;
|
|
7464
7963
|
/**
|
|
7465
7964
|
* Publish a post.
|
|
7466
7965
|
* @param {string} name
|
|
@@ -7468,6 +7967,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7468
7967
|
* @throws {RequiredError}
|
|
7469
7968
|
*/
|
|
7470
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>;
|
|
7471
7984
|
/**
|
|
7472
7985
|
* Update a post.
|
|
7473
7986
|
* @param {string} name
|
|
@@ -7492,13 +8005,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7492
8005
|
/**
|
|
7493
8006
|
* List posts.
|
|
7494
8007
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7495
|
-
* @param {Array<string>} [tag]
|
|
7496
8008
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7497
8009
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7498
|
-
* @param {Array<string>} [
|
|
7499
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7500
|
-
* @param {Array<string>} [category]
|
|
8010
|
+
* @param {Array<string>} [tag]
|
|
7501
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]
|
|
7502
8015
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7503
8016
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7504
8017
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7506,7 +8019,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7506
8019
|
* @param {*} [options] Override http request option.
|
|
7507
8020
|
* @throws {RequiredError}
|
|
7508
8021
|
*/
|
|
7509
|
-
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>>;
|
|
7510
8023
|
/**
|
|
7511
8024
|
* Publish a post.
|
|
7512
8025
|
* @param {string} name
|
|
@@ -7514,6 +8027,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
7514
8027
|
* @throws {RequiredError}
|
|
7515
8028
|
*/
|
|
7516
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>>;
|
|
7517
8044
|
/**
|
|
7518
8045
|
* Update a post.
|
|
7519
8046
|
* @param {string} name
|
|
@@ -7538,13 +8065,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7538
8065
|
/**
|
|
7539
8066
|
* List posts.
|
|
7540
8067
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7541
|
-
* @param {Array<string>} [tag]
|
|
7542
8068
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
7543
8069
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7544
|
-
* @param {Array<string>} [
|
|
7545
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7546
|
-
* @param {Array<string>} [category]
|
|
8070
|
+
* @param {Array<string>} [tag]
|
|
7547
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]
|
|
7548
8075
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7549
8076
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7550
8077
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7552,7 +8079,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7552
8079
|
* @param {*} [options] Override http request option.
|
|
7553
8080
|
* @throws {RequiredError}
|
|
7554
8081
|
*/
|
|
7555
|
-
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>;
|
|
7556
8083
|
/**
|
|
7557
8084
|
* Publish a post.
|
|
7558
8085
|
* @param {string} name
|
|
@@ -7560,6 +8087,20 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
7560
8087
|
* @throws {RequiredError}
|
|
7561
8088
|
*/
|
|
7562
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>;
|
|
7563
8104
|
/**
|
|
7564
8105
|
* Update a post.
|
|
7565
8106
|
* @param {string} name
|
|
@@ -7594,12 +8135,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7594
8135
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7595
8136
|
*/
|
|
7596
8137
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
7597
|
-
/**
|
|
7598
|
-
*
|
|
7599
|
-
* @type {Array<string>}
|
|
7600
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7601
|
-
*/
|
|
7602
|
-
readonly tag?: Array<string>;
|
|
7603
8138
|
/**
|
|
7604
8139
|
* Posts filtered by keyword.
|
|
7605
8140
|
* @type {string}
|
|
@@ -7617,13 +8152,19 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7617
8152
|
* @type {Array<string>}
|
|
7618
8153
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7619
8154
|
*/
|
|
7620
|
-
readonly
|
|
8155
|
+
readonly tag?: Array<string>;
|
|
8156
|
+
/**
|
|
8157
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8158
|
+
* @type {boolean}
|
|
8159
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8160
|
+
*/
|
|
8161
|
+
readonly sortOrder?: boolean;
|
|
7621
8162
|
/**
|
|
7622
8163
|
*
|
|
7623
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8164
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
7624
8165
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7625
8166
|
*/
|
|
7626
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8167
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
7627
8168
|
/**
|
|
7628
8169
|
*
|
|
7629
8170
|
* @type {Array<string>}
|
|
@@ -7631,11 +8172,11 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7631
8172
|
*/
|
|
7632
8173
|
readonly category?: Array<string>;
|
|
7633
8174
|
/**
|
|
7634
|
-
*
|
|
7635
|
-
* @type {
|
|
8175
|
+
*
|
|
8176
|
+
* @type {Array<string>}
|
|
7636
8177
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7637
8178
|
*/
|
|
7638
|
-
readonly
|
|
8179
|
+
readonly contributor?: Array<string>;
|
|
7639
8180
|
/**
|
|
7640
8181
|
* Size of one page. Zero indicates no limit.
|
|
7641
8182
|
* @type {number}
|
|
@@ -7659,18 +8200,44 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
7659
8200
|
* @type {Array<string>}
|
|
7660
8201
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
7661
8202
|
*/
|
|
7662
|
-
readonly fieldSelector?: Array<string>;
|
|
8203
|
+
readonly fieldSelector?: Array<string>;
|
|
8204
|
+
}
|
|
8205
|
+
/**
|
|
8206
|
+
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
8207
|
+
* @export
|
|
8208
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest
|
|
8209
|
+
*/
|
|
8210
|
+
interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest {
|
|
8211
|
+
/**
|
|
8212
|
+
*
|
|
8213
|
+
* @type {string}
|
|
8214
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiPublishPost
|
|
8215
|
+
*/
|
|
8216
|
+
readonly name: string;
|
|
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;
|
|
7663
8230
|
}
|
|
7664
8231
|
/**
|
|
7665
|
-
* Request parameters for
|
|
8232
|
+
* Request parameters for unpublishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
7666
8233
|
* @export
|
|
7667
|
-
* @interface
|
|
8234
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest
|
|
7668
8235
|
*/
|
|
7669
|
-
interface
|
|
8236
|
+
interface ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest {
|
|
7670
8237
|
/**
|
|
7671
8238
|
*
|
|
7672
8239
|
* @type {string}
|
|
7673
|
-
* @memberof
|
|
8240
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUnpublishPost
|
|
7674
8241
|
*/
|
|
7675
8242
|
readonly name: string;
|
|
7676
8243
|
}
|
|
@@ -7724,6 +8291,22 @@ declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
7724
8291
|
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
7725
8292
|
*/
|
|
7726
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>>;
|
|
7727
8310
|
/**
|
|
7728
8311
|
* Update a post.
|
|
7729
8312
|
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
@@ -7856,9 +8439,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7856
8439
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7857
8440
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7858
8441
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7859
|
-
* @param {Array<string>} [contributor]
|
|
7860
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7861
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]
|
|
7862
8445
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7863
8446
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7864
8447
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7866,7 +8449,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
7866
8449
|
* @param {*} [options] Override http request option.
|
|
7867
8450
|
* @throws {RequiredError}
|
|
7868
8451
|
*/
|
|
7869
|
-
listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
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>;
|
|
7870
8453
|
/**
|
|
7871
8454
|
* Publish a single page.
|
|
7872
8455
|
* @param {string} name
|
|
@@ -7900,9 +8483,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7900
8483
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7901
8484
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7902
8485
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7903
|
-
* @param {Array<string>} [contributor]
|
|
7904
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7905
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]
|
|
7906
8489
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7907
8490
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7908
8491
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7910,7 +8493,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
7910
8493
|
* @param {*} [options] Override http request option.
|
|
7911
8494
|
* @throws {RequiredError}
|
|
7912
8495
|
*/
|
|
7913
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
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>>;
|
|
7914
8497
|
/**
|
|
7915
8498
|
* Publish a single page.
|
|
7916
8499
|
* @param {string} name
|
|
@@ -7944,9 +8527,9 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7944
8527
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
7945
8528
|
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
7946
8529
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7947
|
-
* @param {Array<string>} [contributor]
|
|
7948
|
-
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PENDING' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7949
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]
|
|
7950
8533
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7951
8534
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7952
8535
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
@@ -7954,7 +8537,7 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
7954
8537
|
* @param {*} [options] Override http request option.
|
|
7955
8538
|
* @throws {RequiredError}
|
|
7956
8539
|
*/
|
|
7957
|
-
listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE',
|
|
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>;
|
|
7958
8541
|
/**
|
|
7959
8542
|
* Publish a single page.
|
|
7960
8543
|
* @param {string} name
|
|
@@ -8009,23 +8592,23 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8009
8592
|
*/
|
|
8010
8593
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
8011
8594
|
/**
|
|
8012
|
-
*
|
|
8013
|
-
* @type {
|
|
8595
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
8596
|
+
* @type {boolean}
|
|
8014
8597
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8015
8598
|
*/
|
|
8016
|
-
readonly
|
|
8599
|
+
readonly sortOrder?: boolean;
|
|
8017
8600
|
/**
|
|
8018
8601
|
*
|
|
8019
|
-
* @type {'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8602
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8020
8603
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8021
8604
|
*/
|
|
8022
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | '
|
|
8605
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8023
8606
|
/**
|
|
8024
|
-
*
|
|
8025
|
-
* @type {
|
|
8607
|
+
*
|
|
8608
|
+
* @type {Array<string>}
|
|
8026
8609
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8027
8610
|
*/
|
|
8028
|
-
readonly
|
|
8611
|
+
readonly contributor?: Array<string>;
|
|
8029
8612
|
/**
|
|
8030
8613
|
* Size of one page. Zero indicates no limit.
|
|
8031
8614
|
* @type {number}
|
|
@@ -8921,6 +9504,102 @@ declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
|
8921
9504
|
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
8922
9505
|
}
|
|
8923
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
|
+
|
|
8924
9603
|
/**
|
|
8925
9604
|
* ApiHaloRunV1alpha1TrackerApi - axios parameter creator
|
|
8926
9605
|
* @export
|
|
@@ -11804,6 +12483,279 @@ declare class PluginHaloRunV1alpha1ReverseProxyApi extends BaseAPI {
|
|
|
11804
12483
|
updatepluginHaloRunV1alpha1ReverseProxy(requestParameters: PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReverseProxy, any>>;
|
|
11805
12484
|
}
|
|
11806
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
|
+
|
|
11807
12759
|
/**
|
|
11808
12760
|
* StorageHaloRunV1alpha1AttachmentApi - axios parameter creator
|
|
11809
12761
|
* @export
|
|
@@ -15353,4 +16305,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
15353
16305
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
15354
16306
|
}
|
|
15355
16307
|
|
|
15356
|
-
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 };
|