@halo-dev/api-client 0.0.26 → 0.0.28
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 +251 -13
- package/dist/index.d.ts +681 -112
- package/dist/index.mjs +248 -14
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1132,6 +1132,167 @@ interface CommentRequest {
|
|
|
1132
1132
|
allowNotification?: boolean;
|
|
1133
1133
|
}
|
|
1134
1134
|
|
|
1135
|
+
/**
|
|
1136
|
+
* Halo Next API
|
|
1137
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1138
|
+
*
|
|
1139
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1140
|
+
*
|
|
1141
|
+
*
|
|
1142
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1143
|
+
* https://openapi-generator.tech
|
|
1144
|
+
* Do not edit the class manually.
|
|
1145
|
+
*/
|
|
1146
|
+
/**
|
|
1147
|
+
*
|
|
1148
|
+
* @export
|
|
1149
|
+
* @interface OwnerInfo
|
|
1150
|
+
*/
|
|
1151
|
+
interface OwnerInfo {
|
|
1152
|
+
/**
|
|
1153
|
+
*
|
|
1154
|
+
* @type {string}
|
|
1155
|
+
* @memberof OwnerInfo
|
|
1156
|
+
*/
|
|
1157
|
+
kind?: string;
|
|
1158
|
+
/**
|
|
1159
|
+
*
|
|
1160
|
+
* @type {string}
|
|
1161
|
+
* @memberof OwnerInfo
|
|
1162
|
+
*/
|
|
1163
|
+
name?: string;
|
|
1164
|
+
/**
|
|
1165
|
+
*
|
|
1166
|
+
* @type {string}
|
|
1167
|
+
* @memberof OwnerInfo
|
|
1168
|
+
*/
|
|
1169
|
+
displayName?: string;
|
|
1170
|
+
/**
|
|
1171
|
+
*
|
|
1172
|
+
* @type {string}
|
|
1173
|
+
* @memberof OwnerInfo
|
|
1174
|
+
*/
|
|
1175
|
+
avatar?: string;
|
|
1176
|
+
/**
|
|
1177
|
+
*
|
|
1178
|
+
* @type {string}
|
|
1179
|
+
* @memberof OwnerInfo
|
|
1180
|
+
*/
|
|
1181
|
+
email?: string;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* Halo Next API
|
|
1186
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1187
|
+
*
|
|
1188
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1189
|
+
*
|
|
1190
|
+
*
|
|
1191
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1192
|
+
* https://openapi-generator.tech
|
|
1193
|
+
* Do not edit the class manually.
|
|
1194
|
+
*/
|
|
1195
|
+
|
|
1196
|
+
/**
|
|
1197
|
+
* A chunk of items.
|
|
1198
|
+
* @export
|
|
1199
|
+
* @interface CommentVo
|
|
1200
|
+
*/
|
|
1201
|
+
interface CommentVo {
|
|
1202
|
+
/**
|
|
1203
|
+
*
|
|
1204
|
+
* @type {Metadata}
|
|
1205
|
+
* @memberof CommentVo
|
|
1206
|
+
*/
|
|
1207
|
+
metadata: Metadata;
|
|
1208
|
+
/**
|
|
1209
|
+
*
|
|
1210
|
+
* @type {CommentSpec}
|
|
1211
|
+
* @memberof CommentVo
|
|
1212
|
+
*/
|
|
1213
|
+
spec: CommentSpec;
|
|
1214
|
+
/**
|
|
1215
|
+
*
|
|
1216
|
+
* @type {CommentStatus}
|
|
1217
|
+
* @memberof CommentVo
|
|
1218
|
+
*/
|
|
1219
|
+
status?: CommentStatus;
|
|
1220
|
+
/**
|
|
1221
|
+
*
|
|
1222
|
+
* @type {OwnerInfo}
|
|
1223
|
+
* @memberof CommentVo
|
|
1224
|
+
*/
|
|
1225
|
+
owner: OwnerInfo;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* Halo Next API
|
|
1230
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1231
|
+
*
|
|
1232
|
+
* The version of the OpenAPI document: 2.0.0
|
|
1233
|
+
*
|
|
1234
|
+
*
|
|
1235
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1236
|
+
* https://openapi-generator.tech
|
|
1237
|
+
* Do not edit the class manually.
|
|
1238
|
+
*/
|
|
1239
|
+
|
|
1240
|
+
/**
|
|
1241
|
+
*
|
|
1242
|
+
* @export
|
|
1243
|
+
* @interface CommentVoList
|
|
1244
|
+
*/
|
|
1245
|
+
interface CommentVoList {
|
|
1246
|
+
/**
|
|
1247
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
1248
|
+
* @type {number}
|
|
1249
|
+
* @memberof CommentVoList
|
|
1250
|
+
*/
|
|
1251
|
+
page: number;
|
|
1252
|
+
/**
|
|
1253
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
1254
|
+
* @type {number}
|
|
1255
|
+
* @memberof CommentVoList
|
|
1256
|
+
*/
|
|
1257
|
+
size: number;
|
|
1258
|
+
/**
|
|
1259
|
+
* Total elements.
|
|
1260
|
+
* @type {number}
|
|
1261
|
+
* @memberof CommentVoList
|
|
1262
|
+
*/
|
|
1263
|
+
total: number;
|
|
1264
|
+
/**
|
|
1265
|
+
* A chunk of items.
|
|
1266
|
+
* @type {Array<CommentVo>}
|
|
1267
|
+
* @memberof CommentVoList
|
|
1268
|
+
*/
|
|
1269
|
+
items: Array<CommentVo>;
|
|
1270
|
+
/**
|
|
1271
|
+
* Indicates whether current page is the first page.
|
|
1272
|
+
* @type {boolean}
|
|
1273
|
+
* @memberof CommentVoList
|
|
1274
|
+
*/
|
|
1275
|
+
first: boolean;
|
|
1276
|
+
/**
|
|
1277
|
+
* Indicates whether current page is the last page.
|
|
1278
|
+
* @type {boolean}
|
|
1279
|
+
* @memberof CommentVoList
|
|
1280
|
+
*/
|
|
1281
|
+
last: boolean;
|
|
1282
|
+
/**
|
|
1283
|
+
* Indicates whether current page has previous page.
|
|
1284
|
+
* @type {boolean}
|
|
1285
|
+
* @memberof CommentVoList
|
|
1286
|
+
*/
|
|
1287
|
+
hasNext: boolean;
|
|
1288
|
+
/**
|
|
1289
|
+
* Indicates whether current page has previous page.
|
|
1290
|
+
* @type {boolean}
|
|
1291
|
+
* @memberof CommentVoList
|
|
1292
|
+
*/
|
|
1293
|
+
hasPrevious: boolean;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1135
1296
|
/**
|
|
1136
1297
|
* Halo Next API
|
|
1137
1298
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1550,16 +1711,16 @@ interface Excerpt {
|
|
|
1550
1711
|
interface Extension {
|
|
1551
1712
|
/**
|
|
1552
1713
|
*
|
|
1553
|
-
* @type {
|
|
1714
|
+
* @type {string}
|
|
1554
1715
|
* @memberof Extension
|
|
1555
1716
|
*/
|
|
1556
|
-
|
|
1717
|
+
apiVersion: string;
|
|
1557
1718
|
/**
|
|
1558
1719
|
*
|
|
1559
|
-
* @type {
|
|
1720
|
+
* @type {Metadata}
|
|
1560
1721
|
* @memberof Extension
|
|
1561
1722
|
*/
|
|
1562
|
-
|
|
1723
|
+
metadata: Metadata;
|
|
1563
1724
|
/**
|
|
1564
1725
|
*
|
|
1565
1726
|
* @type {string}
|
|
@@ -1829,55 +1990,6 @@ interface License {
|
|
|
1829
1990
|
url?: string;
|
|
1830
1991
|
}
|
|
1831
1992
|
|
|
1832
|
-
/**
|
|
1833
|
-
* Halo Next API
|
|
1834
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
1835
|
-
*
|
|
1836
|
-
* The version of the OpenAPI document: 2.0.0
|
|
1837
|
-
*
|
|
1838
|
-
*
|
|
1839
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1840
|
-
* https://openapi-generator.tech
|
|
1841
|
-
* Do not edit the class manually.
|
|
1842
|
-
*/
|
|
1843
|
-
/**
|
|
1844
|
-
*
|
|
1845
|
-
* @export
|
|
1846
|
-
* @interface OwnerInfo
|
|
1847
|
-
*/
|
|
1848
|
-
interface OwnerInfo {
|
|
1849
|
-
/**
|
|
1850
|
-
*
|
|
1851
|
-
* @type {string}
|
|
1852
|
-
* @memberof OwnerInfo
|
|
1853
|
-
*/
|
|
1854
|
-
kind?: string;
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @type {string}
|
|
1858
|
-
* @memberof OwnerInfo
|
|
1859
|
-
*/
|
|
1860
|
-
name?: string;
|
|
1861
|
-
/**
|
|
1862
|
-
*
|
|
1863
|
-
* @type {string}
|
|
1864
|
-
* @memberof OwnerInfo
|
|
1865
|
-
*/
|
|
1866
|
-
displayName?: string;
|
|
1867
|
-
/**
|
|
1868
|
-
*
|
|
1869
|
-
* @type {string}
|
|
1870
|
-
* @memberof OwnerInfo
|
|
1871
|
-
*/
|
|
1872
|
-
avatar?: string;
|
|
1873
|
-
/**
|
|
1874
|
-
*
|
|
1875
|
-
* @type {string}
|
|
1876
|
-
* @memberof OwnerInfo
|
|
1877
|
-
*/
|
|
1878
|
-
email?: string;
|
|
1879
|
-
}
|
|
1880
|
-
|
|
1881
1993
|
/**
|
|
1882
1994
|
* Halo Next API
|
|
1883
1995
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4504,23 +4616,29 @@ interface ReplyRequest {
|
|
|
4504
4616
|
*/
|
|
4505
4617
|
|
|
4506
4618
|
/**
|
|
4507
|
-
*
|
|
4619
|
+
* A chunk of items.
|
|
4508
4620
|
* @export
|
|
4509
|
-
* @interface
|
|
4621
|
+
* @interface ReplyVo
|
|
4510
4622
|
*/
|
|
4511
|
-
interface
|
|
4623
|
+
interface ReplyVo {
|
|
4512
4624
|
/**
|
|
4513
4625
|
*
|
|
4514
|
-
* @type {
|
|
4515
|
-
* @memberof
|
|
4626
|
+
* @type {Metadata}
|
|
4627
|
+
* @memberof ReplyVo
|
|
4516
4628
|
*/
|
|
4517
|
-
|
|
4629
|
+
metadata: Metadata;
|
|
4518
4630
|
/**
|
|
4519
4631
|
*
|
|
4520
|
-
* @type {
|
|
4521
|
-
* @memberof
|
|
4632
|
+
* @type {ReplySpec}
|
|
4633
|
+
* @memberof ReplyVo
|
|
4522
4634
|
*/
|
|
4523
|
-
|
|
4635
|
+
spec: ReplySpec;
|
|
4636
|
+
/**
|
|
4637
|
+
*
|
|
4638
|
+
* @type {OwnerInfo}
|
|
4639
|
+
* @memberof ReplyVo
|
|
4640
|
+
*/
|
|
4641
|
+
owner: OwnerInfo;
|
|
4524
4642
|
}
|
|
4525
4643
|
|
|
4526
4644
|
/**
|
|
@@ -4538,42 +4656,142 @@ interface ReverseProxyRule {
|
|
|
4538
4656
|
/**
|
|
4539
4657
|
*
|
|
4540
4658
|
* @export
|
|
4541
|
-
* @interface
|
|
4659
|
+
* @interface ReplyVoList
|
|
4542
4660
|
*/
|
|
4543
|
-
interface
|
|
4661
|
+
interface ReplyVoList {
|
|
4544
4662
|
/**
|
|
4545
|
-
*
|
|
4546
|
-
* @type {
|
|
4547
|
-
* @memberof
|
|
4663
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
4664
|
+
* @type {number}
|
|
4665
|
+
* @memberof ReplyVoList
|
|
4548
4666
|
*/
|
|
4549
|
-
|
|
4667
|
+
page: number;
|
|
4550
4668
|
/**
|
|
4551
|
-
*
|
|
4552
|
-
* @type {
|
|
4553
|
-
* @memberof
|
|
4669
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
4670
|
+
* @type {number}
|
|
4671
|
+
* @memberof ReplyVoList
|
|
4554
4672
|
*/
|
|
4555
|
-
|
|
4673
|
+
size: number;
|
|
4556
4674
|
/**
|
|
4557
|
-
*
|
|
4558
|
-
* @type {
|
|
4559
|
-
* @memberof
|
|
4675
|
+
* Total elements.
|
|
4676
|
+
* @type {number}
|
|
4677
|
+
* @memberof ReplyVoList
|
|
4560
4678
|
*/
|
|
4561
|
-
|
|
4679
|
+
total: number;
|
|
4562
4680
|
/**
|
|
4563
|
-
*
|
|
4564
|
-
* @type {
|
|
4565
|
-
* @memberof
|
|
4681
|
+
* A chunk of items.
|
|
4682
|
+
* @type {Array<ReplyVo>}
|
|
4683
|
+
* @memberof ReplyVoList
|
|
4566
4684
|
*/
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4685
|
+
items: Array<ReplyVo>;
|
|
4686
|
+
/**
|
|
4687
|
+
* Indicates whether current page is the first page.
|
|
4688
|
+
* @type {boolean}
|
|
4689
|
+
* @memberof ReplyVoList
|
|
4690
|
+
*/
|
|
4691
|
+
first: boolean;
|
|
4692
|
+
/**
|
|
4693
|
+
* Indicates whether current page is the last page.
|
|
4694
|
+
* @type {boolean}
|
|
4695
|
+
* @memberof ReplyVoList
|
|
4696
|
+
*/
|
|
4697
|
+
last: boolean;
|
|
4698
|
+
/**
|
|
4699
|
+
* Indicates whether current page has previous page.
|
|
4700
|
+
* @type {boolean}
|
|
4701
|
+
* @memberof ReplyVoList
|
|
4702
|
+
*/
|
|
4703
|
+
hasNext: boolean;
|
|
4704
|
+
/**
|
|
4705
|
+
* Indicates whether current page has previous page.
|
|
4706
|
+
* @type {boolean}
|
|
4707
|
+
* @memberof ReplyVoList
|
|
4708
|
+
*/
|
|
4709
|
+
hasPrevious: boolean;
|
|
4710
|
+
}
|
|
4711
|
+
|
|
4712
|
+
/**
|
|
4713
|
+
* Halo Next API
|
|
4714
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4715
|
+
*
|
|
4716
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4717
|
+
*
|
|
4718
|
+
*
|
|
4719
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4720
|
+
* https://openapi-generator.tech
|
|
4721
|
+
* Do not edit the class manually.
|
|
4722
|
+
*/
|
|
4723
|
+
|
|
4724
|
+
/**
|
|
4725
|
+
*
|
|
4726
|
+
* @export
|
|
4727
|
+
* @interface ReverseProxyRule
|
|
4728
|
+
*/
|
|
4729
|
+
interface ReverseProxyRule {
|
|
4730
|
+
/**
|
|
4731
|
+
*
|
|
4732
|
+
* @type {string}
|
|
4733
|
+
* @memberof ReverseProxyRule
|
|
4734
|
+
*/
|
|
4735
|
+
path?: string;
|
|
4736
|
+
/**
|
|
4737
|
+
*
|
|
4738
|
+
* @type {FileReverseProxyProvider}
|
|
4739
|
+
* @memberof ReverseProxyRule
|
|
4740
|
+
*/
|
|
4741
|
+
file?: FileReverseProxyProvider;
|
|
4742
|
+
}
|
|
4743
|
+
|
|
4744
|
+
/**
|
|
4745
|
+
* Halo Next API
|
|
4746
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4747
|
+
*
|
|
4748
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4749
|
+
*
|
|
4750
|
+
*
|
|
4751
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4752
|
+
* https://openapi-generator.tech
|
|
4753
|
+
* Do not edit the class manually.
|
|
4754
|
+
*/
|
|
4755
|
+
|
|
4756
|
+
/**
|
|
4757
|
+
*
|
|
4758
|
+
* @export
|
|
4759
|
+
* @interface ReverseProxy
|
|
4760
|
+
*/
|
|
4761
|
+
interface ReverseProxy {
|
|
4762
|
+
/**
|
|
4763
|
+
*
|
|
4764
|
+
* @type {Array<ReverseProxyRule>}
|
|
4765
|
+
* @memberof ReverseProxy
|
|
4766
|
+
*/
|
|
4767
|
+
rules?: Array<ReverseProxyRule>;
|
|
4768
|
+
/**
|
|
4769
|
+
*
|
|
4770
|
+
* @type {string}
|
|
4771
|
+
* @memberof ReverseProxy
|
|
4772
|
+
*/
|
|
4773
|
+
apiVersion: string;
|
|
4774
|
+
/**
|
|
4775
|
+
*
|
|
4776
|
+
* @type {string}
|
|
4777
|
+
* @memberof ReverseProxy
|
|
4778
|
+
*/
|
|
4779
|
+
kind: string;
|
|
4780
|
+
/**
|
|
4781
|
+
*
|
|
4782
|
+
* @type {Metadata}
|
|
4783
|
+
* @memberof ReverseProxy
|
|
4784
|
+
*/
|
|
4785
|
+
metadata: Metadata;
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4788
|
+
/**
|
|
4789
|
+
* Halo Next API
|
|
4790
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4791
|
+
*
|
|
4792
|
+
* The version of the OpenAPI document: 2.0.0
|
|
4793
|
+
*
|
|
4794
|
+
*
|
|
4577
4795
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4578
4796
|
* https://openapi-generator.tech
|
|
4579
4797
|
* Do not edit the class manually.
|
|
@@ -6506,13 +6724,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6506
6724
|
/**
|
|
6507
6725
|
* List posts.
|
|
6508
6726
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6509
|
-
* @param {Array<string>} [contributor]
|
|
6510
6727
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6511
6728
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6512
6729
|
* @param {Array<string>} [category]
|
|
6513
|
-
* @param {Array<string>} [
|
|
6514
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6730
|
+
* @param {Array<string>} [contributor]
|
|
6515
6731
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6732
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6733
|
+
* @param {Array<string>} [tag]
|
|
6516
6734
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6517
6735
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6518
6736
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6520,7 +6738,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
6520
6738
|
* @param {*} [options] Override http request option.
|
|
6521
6739
|
* @throws {RequiredError}
|
|
6522
6740
|
*/
|
|
6523
|
-
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6741
|
+
listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6524
6742
|
/**
|
|
6525
6743
|
* Publish a post.
|
|
6526
6744
|
* @param {string} name
|
|
@@ -6552,13 +6770,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6552
6770
|
/**
|
|
6553
6771
|
* List posts.
|
|
6554
6772
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6555
|
-
* @param {Array<string>} [contributor]
|
|
6556
6773
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6557
6774
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6558
6775
|
* @param {Array<string>} [category]
|
|
6559
|
-
* @param {Array<string>} [
|
|
6560
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6776
|
+
* @param {Array<string>} [contributor]
|
|
6561
6777
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6778
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6779
|
+
* @param {Array<string>} [tag]
|
|
6562
6780
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6563
6781
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6564
6782
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6566,7 +6784,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
6566
6784
|
* @param {*} [options] Override http request option.
|
|
6567
6785
|
* @throws {RequiredError}
|
|
6568
6786
|
*/
|
|
6569
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6787
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6570
6788
|
/**
|
|
6571
6789
|
* Publish a post.
|
|
6572
6790
|
* @param {string} name
|
|
@@ -6598,13 +6816,13 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6598
6816
|
/**
|
|
6599
6817
|
* List posts.
|
|
6600
6818
|
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
6601
|
-
* @param {Array<string>} [contributor]
|
|
6602
6819
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
6603
6820
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED'} [publishPhase]
|
|
6604
6821
|
* @param {Array<string>} [category]
|
|
6605
|
-
* @param {Array<string>} [
|
|
6606
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6822
|
+
* @param {Array<string>} [contributor]
|
|
6607
6823
|
* @param {string} [keyword] Posts filtered by keyword.
|
|
6824
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
6825
|
+
* @param {Array<string>} [tag]
|
|
6608
6826
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6609
6827
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6610
6828
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
@@ -6612,7 +6830,7 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
6612
6830
|
* @param {*} [options] Override http request option.
|
|
6613
6831
|
* @throws {RequiredError}
|
|
6614
6832
|
*/
|
|
6615
|
-
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME',
|
|
6833
|
+
listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED', category?: Array<string>, contributor?: Array<string>, keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6616
6834
|
/**
|
|
6617
6835
|
* Publish a post.
|
|
6618
6836
|
* @param {string} name
|
|
@@ -6654,12 +6872,6 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6654
6872
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6655
6873
|
*/
|
|
6656
6874
|
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
6657
|
-
/**
|
|
6658
|
-
*
|
|
6659
|
-
* @type {Array<string>}
|
|
6660
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6661
|
-
*/
|
|
6662
|
-
readonly contributor?: Array<string>;
|
|
6663
6875
|
/**
|
|
6664
6876
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
6665
6877
|
* @type {boolean}
|
|
@@ -6683,7 +6895,13 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6683
6895
|
* @type {Array<string>}
|
|
6684
6896
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6685
6897
|
*/
|
|
6686
|
-
readonly
|
|
6898
|
+
readonly contributor?: Array<string>;
|
|
6899
|
+
/**
|
|
6900
|
+
* Posts filtered by keyword.
|
|
6901
|
+
* @type {string}
|
|
6902
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6903
|
+
*/
|
|
6904
|
+
readonly keyword?: string;
|
|
6687
6905
|
/**
|
|
6688
6906
|
*
|
|
6689
6907
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
@@ -6691,11 +6909,11 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
6691
6909
|
*/
|
|
6692
6910
|
readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
|
|
6693
6911
|
/**
|
|
6694
|
-
*
|
|
6695
|
-
* @type {string}
|
|
6912
|
+
*
|
|
6913
|
+
* @type {Array<string>}
|
|
6696
6914
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6697
6915
|
*/
|
|
6698
|
-
readonly
|
|
6916
|
+
readonly tag?: Array<string>;
|
|
6699
6917
|
/**
|
|
6700
6918
|
* Size of one page. Zero indicates no limit.
|
|
6701
6919
|
* @type {number}
|
|
@@ -7151,6 +7369,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
7151
7369
|
* @throws {RequiredError}
|
|
7152
7370
|
*/
|
|
7153
7371
|
installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7372
|
+
/**
|
|
7373
|
+
* Reload theme setting.
|
|
7374
|
+
* @param {string} name
|
|
7375
|
+
* @param {*} [options] Override http request option.
|
|
7376
|
+
* @throws {RequiredError}
|
|
7377
|
+
*/
|
|
7378
|
+
reloadThemeSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7154
7379
|
};
|
|
7155
7380
|
/**
|
|
7156
7381
|
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
@@ -7164,6 +7389,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
7164
7389
|
* @throws {RequiredError}
|
|
7165
7390
|
*/
|
|
7166
7391
|
installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
7392
|
+
/**
|
|
7393
|
+
* Reload theme setting.
|
|
7394
|
+
* @param {string} name
|
|
7395
|
+
* @param {*} [options] Override http request option.
|
|
7396
|
+
* @throws {RequiredError}
|
|
7397
|
+
*/
|
|
7398
|
+
reloadThemeSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Setting>>;
|
|
7167
7399
|
};
|
|
7168
7400
|
/**
|
|
7169
7401
|
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
@@ -7177,6 +7409,13 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
7177
7409
|
* @throws {RequiredError}
|
|
7178
7410
|
*/
|
|
7179
7411
|
installTheme(file: any, options?: any): AxiosPromise<Theme>;
|
|
7412
|
+
/**
|
|
7413
|
+
* Reload theme setting.
|
|
7414
|
+
* @param {string} name
|
|
7415
|
+
* @param {*} [options] Override http request option.
|
|
7416
|
+
* @throws {RequiredError}
|
|
7417
|
+
*/
|
|
7418
|
+
reloadThemeSetting(name: string, options?: any): AxiosPromise<Setting>;
|
|
7180
7419
|
};
|
|
7181
7420
|
/**
|
|
7182
7421
|
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -7191,6 +7430,19 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
|
|
|
7191
7430
|
*/
|
|
7192
7431
|
readonly file: any;
|
|
7193
7432
|
}
|
|
7433
|
+
/**
|
|
7434
|
+
* Request parameters for reloadThemeSetting operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
7435
|
+
* @export
|
|
7436
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest
|
|
7437
|
+
*/
|
|
7438
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest {
|
|
7439
|
+
/**
|
|
7440
|
+
*
|
|
7441
|
+
* @type {string}
|
|
7442
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSetting
|
|
7443
|
+
*/
|
|
7444
|
+
readonly name: string;
|
|
7445
|
+
}
|
|
7194
7446
|
/**
|
|
7195
7447
|
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
7196
7448
|
* @export
|
|
@@ -7206,6 +7458,14 @@ declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
7206
7458
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7207
7459
|
*/
|
|
7208
7460
|
installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
7461
|
+
/**
|
|
7462
|
+
* Reload theme setting.
|
|
7463
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest} requestParameters Request parameters.
|
|
7464
|
+
* @param {*} [options] Override http request option.
|
|
7465
|
+
* @throws {RequiredError}
|
|
7466
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
7467
|
+
*/
|
|
7468
|
+
reloadThemeSetting(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Setting, any>>;
|
|
7209
7469
|
}
|
|
7210
7470
|
|
|
7211
7471
|
/**
|
|
@@ -7404,6 +7664,315 @@ declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
|
7404
7664
|
grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
7405
7665
|
}
|
|
7406
7666
|
|
|
7667
|
+
/**
|
|
7668
|
+
* ApiHaloRunV1alpha1CommentApi - axios parameter creator
|
|
7669
|
+
* @export
|
|
7670
|
+
*/
|
|
7671
|
+
declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7672
|
+
/**
|
|
7673
|
+
* Create a comment.
|
|
7674
|
+
* @param {CommentRequest} commentRequest
|
|
7675
|
+
* @param {*} [options] Override http request option.
|
|
7676
|
+
* @throws {RequiredError}
|
|
7677
|
+
*/
|
|
7678
|
+
createComment1: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7679
|
+
/**
|
|
7680
|
+
* Create a reply.
|
|
7681
|
+
* @param {string} name
|
|
7682
|
+
* @param {ReplyRequest} replyRequest
|
|
7683
|
+
* @param {*} [options] Override http request option.
|
|
7684
|
+
* @throws {RequiredError}
|
|
7685
|
+
*/
|
|
7686
|
+
createReply1: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7687
|
+
/**
|
|
7688
|
+
* Get a comment.
|
|
7689
|
+
* @param {string} name
|
|
7690
|
+
* @param {*} [options] Override http request option.
|
|
7691
|
+
* @throws {RequiredError}
|
|
7692
|
+
*/
|
|
7693
|
+
getComment: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7694
|
+
/**
|
|
7695
|
+
* List comment replies.
|
|
7696
|
+
* @param {string} name
|
|
7697
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7698
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7699
|
+
* @param {*} [options] Override http request option.
|
|
7700
|
+
* @throws {RequiredError}
|
|
7701
|
+
*/
|
|
7702
|
+
listCommentReplies: (name: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7703
|
+
/**
|
|
7704
|
+
* List comments.
|
|
7705
|
+
* @param {string} name The comment subject name.
|
|
7706
|
+
* @param {string} version The comment subject version.
|
|
7707
|
+
* @param {string} kind The comment subject kind.
|
|
7708
|
+
* @param {string} [group] The comment subject group.
|
|
7709
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7710
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7711
|
+
* @param {*} [options] Override http request option.
|
|
7712
|
+
* @throws {RequiredError}
|
|
7713
|
+
*/
|
|
7714
|
+
listComments1: (name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7715
|
+
};
|
|
7716
|
+
/**
|
|
7717
|
+
* ApiHaloRunV1alpha1CommentApi - functional programming interface
|
|
7718
|
+
* @export
|
|
7719
|
+
*/
|
|
7720
|
+
declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
|
|
7721
|
+
/**
|
|
7722
|
+
* Create a comment.
|
|
7723
|
+
* @param {CommentRequest} commentRequest
|
|
7724
|
+
* @param {*} [options] Override http request option.
|
|
7725
|
+
* @throws {RequiredError}
|
|
7726
|
+
*/
|
|
7727
|
+
createComment1(commentRequest: CommentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
|
|
7728
|
+
/**
|
|
7729
|
+
* Create a reply.
|
|
7730
|
+
* @param {string} name
|
|
7731
|
+
* @param {ReplyRequest} replyRequest
|
|
7732
|
+
* @param {*} [options] Override http request option.
|
|
7733
|
+
* @throws {RequiredError}
|
|
7734
|
+
*/
|
|
7735
|
+
createReply1(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
|
|
7736
|
+
/**
|
|
7737
|
+
* Get a comment.
|
|
7738
|
+
* @param {string} name
|
|
7739
|
+
* @param {*} [options] Override http request option.
|
|
7740
|
+
* @throws {RequiredError}
|
|
7741
|
+
*/
|
|
7742
|
+
getComment(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
|
|
7743
|
+
/**
|
|
7744
|
+
* List comment replies.
|
|
7745
|
+
* @param {string} name
|
|
7746
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7747
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7748
|
+
* @param {*} [options] Override http request option.
|
|
7749
|
+
* @throws {RequiredError}
|
|
7750
|
+
*/
|
|
7751
|
+
listCommentReplies(name: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
|
|
7752
|
+
/**
|
|
7753
|
+
* List comments.
|
|
7754
|
+
* @param {string} name The comment subject name.
|
|
7755
|
+
* @param {string} version The comment subject version.
|
|
7756
|
+
* @param {string} kind The comment subject kind.
|
|
7757
|
+
* @param {string} [group] The comment subject group.
|
|
7758
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7759
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7760
|
+
* @param {*} [options] Override http request option.
|
|
7761
|
+
* @throws {RequiredError}
|
|
7762
|
+
*/
|
|
7763
|
+
listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
|
|
7764
|
+
};
|
|
7765
|
+
/**
|
|
7766
|
+
* ApiHaloRunV1alpha1CommentApi - factory interface
|
|
7767
|
+
* @export
|
|
7768
|
+
*/
|
|
7769
|
+
declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7770
|
+
/**
|
|
7771
|
+
* Create a comment.
|
|
7772
|
+
* @param {CommentRequest} commentRequest
|
|
7773
|
+
* @param {*} [options] Override http request option.
|
|
7774
|
+
* @throws {RequiredError}
|
|
7775
|
+
*/
|
|
7776
|
+
createComment1(commentRequest: CommentRequest, options?: any): AxiosPromise<Comment>;
|
|
7777
|
+
/**
|
|
7778
|
+
* Create a reply.
|
|
7779
|
+
* @param {string} name
|
|
7780
|
+
* @param {ReplyRequest} replyRequest
|
|
7781
|
+
* @param {*} [options] Override http request option.
|
|
7782
|
+
* @throws {RequiredError}
|
|
7783
|
+
*/
|
|
7784
|
+
createReply1(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
7785
|
+
/**
|
|
7786
|
+
* Get a comment.
|
|
7787
|
+
* @param {string} name
|
|
7788
|
+
* @param {*} [options] Override http request option.
|
|
7789
|
+
* @throws {RequiredError}
|
|
7790
|
+
*/
|
|
7791
|
+
getComment(name: string, options?: any): AxiosPromise<CommentVoList>;
|
|
7792
|
+
/**
|
|
7793
|
+
* List comment replies.
|
|
7794
|
+
* @param {string} name
|
|
7795
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7796
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7797
|
+
* @param {*} [options] Override http request option.
|
|
7798
|
+
* @throws {RequiredError}
|
|
7799
|
+
*/
|
|
7800
|
+
listCommentReplies(name: string, size?: number, page?: number, options?: any): AxiosPromise<ReplyVoList>;
|
|
7801
|
+
/**
|
|
7802
|
+
* List comments.
|
|
7803
|
+
* @param {string} name The comment subject name.
|
|
7804
|
+
* @param {string} version The comment subject version.
|
|
7805
|
+
* @param {string} kind The comment subject kind.
|
|
7806
|
+
* @param {string} [group] The comment subject group.
|
|
7807
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7808
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
7809
|
+
* @param {*} [options] Override http request option.
|
|
7810
|
+
* @throws {RequiredError}
|
|
7811
|
+
*/
|
|
7812
|
+
listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: any): AxiosPromise<CommentVoList>;
|
|
7813
|
+
};
|
|
7814
|
+
/**
|
|
7815
|
+
* Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7816
|
+
* @export
|
|
7817
|
+
* @interface ApiHaloRunV1alpha1CommentApiCreateComment1Request
|
|
7818
|
+
*/
|
|
7819
|
+
interface ApiHaloRunV1alpha1CommentApiCreateComment1Request {
|
|
7820
|
+
/**
|
|
7821
|
+
*
|
|
7822
|
+
* @type {CommentRequest}
|
|
7823
|
+
* @memberof ApiHaloRunV1alpha1CommentApiCreateComment1
|
|
7824
|
+
*/
|
|
7825
|
+
readonly commentRequest: CommentRequest;
|
|
7826
|
+
}
|
|
7827
|
+
/**
|
|
7828
|
+
* Request parameters for createReply1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7829
|
+
* @export
|
|
7830
|
+
* @interface ApiHaloRunV1alpha1CommentApiCreateReply1Request
|
|
7831
|
+
*/
|
|
7832
|
+
interface ApiHaloRunV1alpha1CommentApiCreateReply1Request {
|
|
7833
|
+
/**
|
|
7834
|
+
*
|
|
7835
|
+
* @type {string}
|
|
7836
|
+
* @memberof ApiHaloRunV1alpha1CommentApiCreateReply1
|
|
7837
|
+
*/
|
|
7838
|
+
readonly name: string;
|
|
7839
|
+
/**
|
|
7840
|
+
*
|
|
7841
|
+
* @type {ReplyRequest}
|
|
7842
|
+
* @memberof ApiHaloRunV1alpha1CommentApiCreateReply1
|
|
7843
|
+
*/
|
|
7844
|
+
readonly replyRequest: ReplyRequest;
|
|
7845
|
+
}
|
|
7846
|
+
/**
|
|
7847
|
+
* Request parameters for getComment operation in ApiHaloRunV1alpha1CommentApi.
|
|
7848
|
+
* @export
|
|
7849
|
+
* @interface ApiHaloRunV1alpha1CommentApiGetCommentRequest
|
|
7850
|
+
*/
|
|
7851
|
+
interface ApiHaloRunV1alpha1CommentApiGetCommentRequest {
|
|
7852
|
+
/**
|
|
7853
|
+
*
|
|
7854
|
+
* @type {string}
|
|
7855
|
+
* @memberof ApiHaloRunV1alpha1CommentApiGetComment
|
|
7856
|
+
*/
|
|
7857
|
+
readonly name: string;
|
|
7858
|
+
}
|
|
7859
|
+
/**
|
|
7860
|
+
* Request parameters for listCommentReplies operation in ApiHaloRunV1alpha1CommentApi.
|
|
7861
|
+
* @export
|
|
7862
|
+
* @interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest
|
|
7863
|
+
*/
|
|
7864
|
+
interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
|
|
7865
|
+
/**
|
|
7866
|
+
*
|
|
7867
|
+
* @type {string}
|
|
7868
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
7869
|
+
*/
|
|
7870
|
+
readonly name: string;
|
|
7871
|
+
/**
|
|
7872
|
+
* Size of one page. Zero indicates no limit.
|
|
7873
|
+
* @type {number}
|
|
7874
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
7875
|
+
*/
|
|
7876
|
+
readonly size?: number;
|
|
7877
|
+
/**
|
|
7878
|
+
* The page number. Zero indicates no page.
|
|
7879
|
+
* @type {number}
|
|
7880
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
7881
|
+
*/
|
|
7882
|
+
readonly page?: number;
|
|
7883
|
+
}
|
|
7884
|
+
/**
|
|
7885
|
+
* Request parameters for listComments1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
7886
|
+
* @export
|
|
7887
|
+
* @interface ApiHaloRunV1alpha1CommentApiListComments1Request
|
|
7888
|
+
*/
|
|
7889
|
+
interface ApiHaloRunV1alpha1CommentApiListComments1Request {
|
|
7890
|
+
/**
|
|
7891
|
+
* The comment subject name.
|
|
7892
|
+
* @type {string}
|
|
7893
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7894
|
+
*/
|
|
7895
|
+
readonly name: string;
|
|
7896
|
+
/**
|
|
7897
|
+
* The comment subject version.
|
|
7898
|
+
* @type {string}
|
|
7899
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7900
|
+
*/
|
|
7901
|
+
readonly version: string;
|
|
7902
|
+
/**
|
|
7903
|
+
* The comment subject kind.
|
|
7904
|
+
* @type {string}
|
|
7905
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7906
|
+
*/
|
|
7907
|
+
readonly kind: string;
|
|
7908
|
+
/**
|
|
7909
|
+
* The comment subject group.
|
|
7910
|
+
* @type {string}
|
|
7911
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7912
|
+
*/
|
|
7913
|
+
readonly group?: string;
|
|
7914
|
+
/**
|
|
7915
|
+
* Size of one page. Zero indicates no limit.
|
|
7916
|
+
* @type {number}
|
|
7917
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7918
|
+
*/
|
|
7919
|
+
readonly size?: number;
|
|
7920
|
+
/**
|
|
7921
|
+
* The page number. Zero indicates no page.
|
|
7922
|
+
* @type {number}
|
|
7923
|
+
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
7924
|
+
*/
|
|
7925
|
+
readonly page?: number;
|
|
7926
|
+
}
|
|
7927
|
+
/**
|
|
7928
|
+
* ApiHaloRunV1alpha1CommentApi - object-oriented interface
|
|
7929
|
+
* @export
|
|
7930
|
+
* @class ApiHaloRunV1alpha1CommentApi
|
|
7931
|
+
* @extends {BaseAPI}
|
|
7932
|
+
*/
|
|
7933
|
+
declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
7934
|
+
/**
|
|
7935
|
+
* Create a comment.
|
|
7936
|
+
* @param {ApiHaloRunV1alpha1CommentApiCreateComment1Request} requestParameters Request parameters.
|
|
7937
|
+
* @param {*} [options] Override http request option.
|
|
7938
|
+
* @throws {RequiredError}
|
|
7939
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
7940
|
+
*/
|
|
7941
|
+
createComment1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateComment1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
|
|
7942
|
+
/**
|
|
7943
|
+
* Create a reply.
|
|
7944
|
+
* @param {ApiHaloRunV1alpha1CommentApiCreateReply1Request} requestParameters Request parameters.
|
|
7945
|
+
* @param {*} [options] Override http request option.
|
|
7946
|
+
* @throws {RequiredError}
|
|
7947
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
7948
|
+
*/
|
|
7949
|
+
createReply1(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReply1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
|
|
7950
|
+
/**
|
|
7951
|
+
* Get a comment.
|
|
7952
|
+
* @param {ApiHaloRunV1alpha1CommentApiGetCommentRequest} requestParameters Request parameters.
|
|
7953
|
+
* @param {*} [options] Override http request option.
|
|
7954
|
+
* @throws {RequiredError}
|
|
7955
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
7956
|
+
*/
|
|
7957
|
+
getComment(requestParameters: ApiHaloRunV1alpha1CommentApiGetCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
7958
|
+
/**
|
|
7959
|
+
* List comment replies.
|
|
7960
|
+
* @param {ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest} requestParameters Request parameters.
|
|
7961
|
+
* @param {*} [options] Override http request option.
|
|
7962
|
+
* @throws {RequiredError}
|
|
7963
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
7964
|
+
*/
|
|
7965
|
+
listCommentReplies(requestParameters: ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ReplyVoList, any>>;
|
|
7966
|
+
/**
|
|
7967
|
+
* List comments.
|
|
7968
|
+
* @param {ApiHaloRunV1alpha1CommentApiListComments1Request} requestParameters Request parameters.
|
|
7969
|
+
* @param {*} [options] Override http request option.
|
|
7970
|
+
* @throws {RequiredError}
|
|
7971
|
+
* @memberof ApiHaloRunV1alpha1CommentApi
|
|
7972
|
+
*/
|
|
7973
|
+
listComments1(requestParameters: ApiHaloRunV1alpha1CommentApiListComments1Request, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<CommentVoList, any>>;
|
|
7974
|
+
}
|
|
7975
|
+
|
|
7407
7976
|
/**
|
|
7408
7977
|
* ContentHaloRunV1alpha1CategoryApi - axios parameter creator
|
|
7409
7978
|
* @export
|
|
@@ -13575,4 +14144,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
13575
14144
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13576
14145
|
}
|
|
13577
14146
|
|
|
13578
|
-
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, 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, 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, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|
|
14147
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadThemeSettingRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, 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, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
|