@halo-dev/api-client 0.0.55 → 0.0.56
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 +139 -139
- package/dist/index.d.ts +486 -489
- package/dist/index.mjs +139 -139
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -129,50 +129,6 @@ declare class BaseAPI {
|
|
|
129
129
|
* https://openapi-generator.tech
|
|
130
130
|
* Do not edit the class manually.
|
|
131
131
|
*/
|
|
132
|
-
/**
|
|
133
|
-
* Extension reference object. The name is mandatory
|
|
134
|
-
* @export
|
|
135
|
-
* @interface Ref
|
|
136
|
-
*/
|
|
137
|
-
interface Ref {
|
|
138
|
-
/**
|
|
139
|
-
* Extension group
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof Ref
|
|
142
|
-
*/
|
|
143
|
-
group?: string;
|
|
144
|
-
/**
|
|
145
|
-
* Extension version
|
|
146
|
-
* @type {string}
|
|
147
|
-
* @memberof Ref
|
|
148
|
-
*/
|
|
149
|
-
version?: string;
|
|
150
|
-
/**
|
|
151
|
-
* Extension kind
|
|
152
|
-
* @type {string}
|
|
153
|
-
* @memberof Ref
|
|
154
|
-
*/
|
|
155
|
-
kind?: string;
|
|
156
|
-
/**
|
|
157
|
-
* Extension name. This field is mandatory
|
|
158
|
-
* @type {string}
|
|
159
|
-
* @memberof Ref
|
|
160
|
-
*/
|
|
161
|
-
name: string;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
/**
|
|
165
|
-
* Halo Next API
|
|
166
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
167
|
-
*
|
|
168
|
-
* The version of the OpenAPI document: 2.0.0
|
|
169
|
-
*
|
|
170
|
-
*
|
|
171
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
172
|
-
* https://openapi-generator.tech
|
|
173
|
-
* Do not edit the class manually.
|
|
174
|
-
*/
|
|
175
|
-
|
|
176
132
|
/**
|
|
177
133
|
*
|
|
178
134
|
* @export
|
|
@@ -186,23 +142,23 @@ interface AttachmentSpec {
|
|
|
186
142
|
*/
|
|
187
143
|
displayName?: string;
|
|
188
144
|
/**
|
|
189
|
-
*
|
|
190
|
-
* @type {
|
|
145
|
+
* Group name
|
|
146
|
+
* @type {string}
|
|
191
147
|
* @memberof AttachmentSpec
|
|
192
148
|
*/
|
|
193
|
-
|
|
149
|
+
groupName?: string;
|
|
194
150
|
/**
|
|
195
|
-
*
|
|
196
|
-
* @type {
|
|
151
|
+
* Policy name
|
|
152
|
+
* @type {string}
|
|
197
153
|
* @memberof AttachmentSpec
|
|
198
154
|
*/
|
|
199
|
-
|
|
155
|
+
policyName?: string;
|
|
200
156
|
/**
|
|
201
|
-
*
|
|
202
|
-
* @type {
|
|
157
|
+
* Name of User who uploads the attachment
|
|
158
|
+
* @type {string}
|
|
203
159
|
* @memberof AttachmentSpec
|
|
204
160
|
*/
|
|
205
|
-
|
|
161
|
+
ownerName?: string;
|
|
206
162
|
/**
|
|
207
163
|
* Media type of attachment
|
|
208
164
|
* @type {string}
|
|
@@ -423,6 +379,12 @@ interface AttachmentList {
|
|
|
423
379
|
* @memberof AttachmentList
|
|
424
380
|
*/
|
|
425
381
|
last: boolean;
|
|
382
|
+
/**
|
|
383
|
+
* Indicates total pages.
|
|
384
|
+
* @type {number}
|
|
385
|
+
* @memberof AttachmentList
|
|
386
|
+
*/
|
|
387
|
+
totalPages: number;
|
|
426
388
|
/**
|
|
427
389
|
* Indicates whether current page has previous page.
|
|
428
390
|
* @type {boolean}
|
|
@@ -435,12 +397,6 @@ interface AttachmentList {
|
|
|
435
397
|
* @memberof AttachmentList
|
|
436
398
|
*/
|
|
437
399
|
hasPrevious: boolean;
|
|
438
|
-
/**
|
|
439
|
-
* Indicates total pages.
|
|
440
|
-
* @type {number}
|
|
441
|
-
* @memberof AttachmentList
|
|
442
|
-
*/
|
|
443
|
-
totalPages: number;
|
|
444
400
|
}
|
|
445
401
|
|
|
446
402
|
/**
|
|
@@ -676,6 +632,12 @@ interface CategoryList {
|
|
|
676
632
|
* @memberof CategoryList
|
|
677
633
|
*/
|
|
678
634
|
last: boolean;
|
|
635
|
+
/**
|
|
636
|
+
* Indicates total pages.
|
|
637
|
+
* @type {number}
|
|
638
|
+
* @memberof CategoryList
|
|
639
|
+
*/
|
|
640
|
+
totalPages: number;
|
|
679
641
|
/**
|
|
680
642
|
* Indicates whether current page has previous page.
|
|
681
643
|
* @type {boolean}
|
|
@@ -688,12 +650,6 @@ interface CategoryList {
|
|
|
688
650
|
* @memberof CategoryList
|
|
689
651
|
*/
|
|
690
652
|
hasPrevious: boolean;
|
|
691
|
-
/**
|
|
692
|
-
* Indicates total pages.
|
|
693
|
-
* @type {number}
|
|
694
|
-
* @memberof CategoryList
|
|
695
|
-
*/
|
|
696
|
-
totalPages: number;
|
|
697
653
|
}
|
|
698
654
|
|
|
699
655
|
/**
|
|
@@ -766,6 +722,49 @@ interface CommentOwner {
|
|
|
766
722
|
};
|
|
767
723
|
}
|
|
768
724
|
|
|
725
|
+
/**
|
|
726
|
+
* Halo Next API
|
|
727
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
728
|
+
*
|
|
729
|
+
* The version of the OpenAPI document: 2.0.0
|
|
730
|
+
*
|
|
731
|
+
*
|
|
732
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
733
|
+
* https://openapi-generator.tech
|
|
734
|
+
* Do not edit the class manually.
|
|
735
|
+
*/
|
|
736
|
+
/**
|
|
737
|
+
* Extension reference object. The name is mandatory
|
|
738
|
+
* @export
|
|
739
|
+
* @interface Ref
|
|
740
|
+
*/
|
|
741
|
+
interface Ref {
|
|
742
|
+
/**
|
|
743
|
+
* Extension group
|
|
744
|
+
* @type {string}
|
|
745
|
+
* @memberof Ref
|
|
746
|
+
*/
|
|
747
|
+
group?: string;
|
|
748
|
+
/**
|
|
749
|
+
* Extension version
|
|
750
|
+
* @type {string}
|
|
751
|
+
* @memberof Ref
|
|
752
|
+
*/
|
|
753
|
+
version?: string;
|
|
754
|
+
/**
|
|
755
|
+
* Extension kind
|
|
756
|
+
* @type {string}
|
|
757
|
+
* @memberof Ref
|
|
758
|
+
*/
|
|
759
|
+
kind?: string;
|
|
760
|
+
/**
|
|
761
|
+
* Extension name. This field is mandatory
|
|
762
|
+
* @type {string}
|
|
763
|
+
* @memberof Ref
|
|
764
|
+
*/
|
|
765
|
+
name: string;
|
|
766
|
+
}
|
|
767
|
+
|
|
769
768
|
/**
|
|
770
769
|
* Halo Next API
|
|
771
770
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -1054,6 +1053,12 @@ interface CommentList {
|
|
|
1054
1053
|
* @memberof CommentList
|
|
1055
1054
|
*/
|
|
1056
1055
|
last: boolean;
|
|
1056
|
+
/**
|
|
1057
|
+
* Indicates total pages.
|
|
1058
|
+
* @type {number}
|
|
1059
|
+
* @memberof CommentList
|
|
1060
|
+
*/
|
|
1061
|
+
totalPages: number;
|
|
1057
1062
|
/**
|
|
1058
1063
|
* Indicates whether current page has previous page.
|
|
1059
1064
|
* @type {boolean}
|
|
@@ -1066,12 +1071,6 @@ interface CommentList {
|
|
|
1066
1071
|
* @memberof CommentList
|
|
1067
1072
|
*/
|
|
1068
1073
|
hasPrevious: boolean;
|
|
1069
|
-
/**
|
|
1070
|
-
* Indicates total pages.
|
|
1071
|
-
* @type {number}
|
|
1072
|
-
* @memberof CommentList
|
|
1073
|
-
*/
|
|
1074
|
-
totalPages: number;
|
|
1075
1074
|
}
|
|
1076
1075
|
|
|
1077
1076
|
/**
|
|
@@ -1271,6 +1270,12 @@ interface CommentVoList {
|
|
|
1271
1270
|
* @memberof CommentVoList
|
|
1272
1271
|
*/
|
|
1273
1272
|
last: boolean;
|
|
1273
|
+
/**
|
|
1274
|
+
* Indicates total pages.
|
|
1275
|
+
* @type {number}
|
|
1276
|
+
* @memberof CommentVoList
|
|
1277
|
+
*/
|
|
1278
|
+
totalPages: number;
|
|
1274
1279
|
/**
|
|
1275
1280
|
* Indicates whether current page has previous page.
|
|
1276
1281
|
* @type {boolean}
|
|
@@ -1283,12 +1288,6 @@ interface CommentVoList {
|
|
|
1283
1288
|
* @memberof CommentVoList
|
|
1284
1289
|
*/
|
|
1285
1290
|
hasPrevious: boolean;
|
|
1286
|
-
/**
|
|
1287
|
-
* Indicates total pages.
|
|
1288
|
-
* @type {number}
|
|
1289
|
-
* @memberof CommentVoList
|
|
1290
|
-
*/
|
|
1291
|
-
totalPages: number;
|
|
1292
1291
|
}
|
|
1293
1292
|
|
|
1294
1293
|
/**
|
|
@@ -1446,6 +1445,12 @@ interface ConfigMapList {
|
|
|
1446
1445
|
* @memberof ConfigMapList
|
|
1447
1446
|
*/
|
|
1448
1447
|
last: boolean;
|
|
1448
|
+
/**
|
|
1449
|
+
* Indicates total pages.
|
|
1450
|
+
* @type {number}
|
|
1451
|
+
* @memberof ConfigMapList
|
|
1452
|
+
*/
|
|
1453
|
+
totalPages: number;
|
|
1449
1454
|
/**
|
|
1450
1455
|
* Indicates whether current page has previous page.
|
|
1451
1456
|
* @type {boolean}
|
|
@@ -1458,12 +1463,6 @@ interface ConfigMapList {
|
|
|
1458
1463
|
* @memberof ConfigMapList
|
|
1459
1464
|
*/
|
|
1460
1465
|
hasPrevious: boolean;
|
|
1461
|
-
/**
|
|
1462
|
-
* Indicates total pages.
|
|
1463
|
-
* @type {number}
|
|
1464
|
-
* @memberof ConfigMapList
|
|
1465
|
-
*/
|
|
1466
|
-
totalPages: number;
|
|
1467
1466
|
}
|
|
1468
1467
|
|
|
1469
1468
|
/**
|
|
@@ -1755,6 +1754,12 @@ interface CounterList {
|
|
|
1755
1754
|
* @memberof CounterList
|
|
1756
1755
|
*/
|
|
1757
1756
|
last: boolean;
|
|
1757
|
+
/**
|
|
1758
|
+
* Indicates total pages.
|
|
1759
|
+
* @type {number}
|
|
1760
|
+
* @memberof CounterList
|
|
1761
|
+
*/
|
|
1762
|
+
totalPages: number;
|
|
1758
1763
|
/**
|
|
1759
1764
|
* Indicates whether current page has previous page.
|
|
1760
1765
|
* @type {boolean}
|
|
@@ -1767,12 +1772,6 @@ interface CounterList {
|
|
|
1767
1772
|
* @memberof CounterList
|
|
1768
1773
|
*/
|
|
1769
1774
|
hasPrevious: boolean;
|
|
1770
|
-
/**
|
|
1771
|
-
* Indicates total pages.
|
|
1772
|
-
* @type {number}
|
|
1773
|
-
* @memberof CounterList
|
|
1774
|
-
*/
|
|
1775
|
-
totalPages: number;
|
|
1776
1775
|
}
|
|
1777
1776
|
|
|
1778
1777
|
/**
|
|
@@ -2026,19 +2025,19 @@ interface Extension {
|
|
|
2026
2025
|
* @type {string}
|
|
2027
2026
|
* @memberof Extension
|
|
2028
2027
|
*/
|
|
2029
|
-
|
|
2028
|
+
kind: string;
|
|
2030
2029
|
/**
|
|
2031
2030
|
*
|
|
2032
|
-
* @type {
|
|
2031
|
+
* @type {Metadata}
|
|
2033
2032
|
* @memberof Extension
|
|
2034
2033
|
*/
|
|
2035
|
-
|
|
2034
|
+
metadata: Metadata;
|
|
2036
2035
|
/**
|
|
2037
2036
|
*
|
|
2038
|
-
* @type {
|
|
2037
|
+
* @type {string}
|
|
2039
2038
|
* @memberof Extension
|
|
2040
2039
|
*/
|
|
2041
|
-
|
|
2040
|
+
apiVersion: string;
|
|
2042
2041
|
}
|
|
2043
2042
|
|
|
2044
2043
|
/**
|
|
@@ -2257,6 +2256,12 @@ interface GroupList {
|
|
|
2257
2256
|
* @memberof GroupList
|
|
2258
2257
|
*/
|
|
2259
2258
|
last: boolean;
|
|
2259
|
+
/**
|
|
2260
|
+
* Indicates total pages.
|
|
2261
|
+
* @type {number}
|
|
2262
|
+
* @memberof GroupList
|
|
2263
|
+
*/
|
|
2264
|
+
totalPages: number;
|
|
2260
2265
|
/**
|
|
2261
2266
|
* Indicates whether current page has previous page.
|
|
2262
2267
|
* @type {boolean}
|
|
@@ -2269,12 +2274,6 @@ interface GroupList {
|
|
|
2269
2274
|
* @memberof GroupList
|
|
2270
2275
|
*/
|
|
2271
2276
|
hasPrevious: boolean;
|
|
2272
|
-
/**
|
|
2273
|
-
* Indicates total pages.
|
|
2274
|
-
* @type {number}
|
|
2275
|
-
* @memberof GroupList
|
|
2276
|
-
*/
|
|
2277
|
-
totalPages: number;
|
|
2278
2277
|
}
|
|
2279
2278
|
|
|
2280
2279
|
/**
|
|
@@ -2400,6 +2399,12 @@ interface ListedCommentList {
|
|
|
2400
2399
|
* @memberof ListedCommentList
|
|
2401
2400
|
*/
|
|
2402
2401
|
last: boolean;
|
|
2402
|
+
/**
|
|
2403
|
+
* Indicates total pages.
|
|
2404
|
+
* @type {number}
|
|
2405
|
+
* @memberof ListedCommentList
|
|
2406
|
+
*/
|
|
2407
|
+
totalPages: number;
|
|
2403
2408
|
/**
|
|
2404
2409
|
* Indicates whether current page has previous page.
|
|
2405
2410
|
* @type {boolean}
|
|
@@ -2412,12 +2417,6 @@ interface ListedCommentList {
|
|
|
2412
2417
|
* @memberof ListedCommentList
|
|
2413
2418
|
*/
|
|
2414
2419
|
hasPrevious: boolean;
|
|
2415
|
-
/**
|
|
2416
|
-
* Indicates total pages.
|
|
2417
|
-
* @type {number}
|
|
2418
|
-
* @memberof ListedCommentList
|
|
2419
|
-
*/
|
|
2420
|
-
totalPages: number;
|
|
2421
2420
|
}
|
|
2422
2421
|
|
|
2423
2422
|
/**
|
|
@@ -2957,6 +2956,12 @@ interface ListedPostList {
|
|
|
2957
2956
|
* @memberof ListedPostList
|
|
2958
2957
|
*/
|
|
2959
2958
|
last: boolean;
|
|
2959
|
+
/**
|
|
2960
|
+
* Indicates total pages.
|
|
2961
|
+
* @type {number}
|
|
2962
|
+
* @memberof ListedPostList
|
|
2963
|
+
*/
|
|
2964
|
+
totalPages: number;
|
|
2960
2965
|
/**
|
|
2961
2966
|
* Indicates whether current page has previous page.
|
|
2962
2967
|
* @type {boolean}
|
|
@@ -2969,12 +2974,6 @@ interface ListedPostList {
|
|
|
2969
2974
|
* @memberof ListedPostList
|
|
2970
2975
|
*/
|
|
2971
2976
|
hasPrevious: boolean;
|
|
2972
|
-
/**
|
|
2973
|
-
* Indicates total pages.
|
|
2974
|
-
* @type {number}
|
|
2975
|
-
* @memberof ListedPostList
|
|
2976
|
-
*/
|
|
2977
|
-
totalPages: number;
|
|
2978
2977
|
}
|
|
2979
2978
|
|
|
2980
2979
|
/**
|
|
@@ -3205,6 +3204,12 @@ interface ListedReplyList {
|
|
|
3205
3204
|
* @memberof ListedReplyList
|
|
3206
3205
|
*/
|
|
3207
3206
|
last: boolean;
|
|
3207
|
+
/**
|
|
3208
|
+
* Indicates total pages.
|
|
3209
|
+
* @type {number}
|
|
3210
|
+
* @memberof ListedReplyList
|
|
3211
|
+
*/
|
|
3212
|
+
totalPages: number;
|
|
3208
3213
|
/**
|
|
3209
3214
|
* Indicates whether current page has previous page.
|
|
3210
3215
|
* @type {boolean}
|
|
@@ -3217,12 +3222,6 @@ interface ListedReplyList {
|
|
|
3217
3222
|
* @memberof ListedReplyList
|
|
3218
3223
|
*/
|
|
3219
3224
|
hasPrevious: boolean;
|
|
3220
|
-
/**
|
|
3221
|
-
* Indicates total pages.
|
|
3222
|
-
* @type {number}
|
|
3223
|
-
* @memberof ListedReplyList
|
|
3224
|
-
*/
|
|
3225
|
-
totalPages: number;
|
|
3226
3225
|
}
|
|
3227
3226
|
|
|
3228
3227
|
/**
|
|
@@ -3565,6 +3564,12 @@ interface ListedSinglePageList {
|
|
|
3565
3564
|
* @memberof ListedSinglePageList
|
|
3566
3565
|
*/
|
|
3567
3566
|
last: boolean;
|
|
3567
|
+
/**
|
|
3568
|
+
* Indicates total pages.
|
|
3569
|
+
* @type {number}
|
|
3570
|
+
* @memberof ListedSinglePageList
|
|
3571
|
+
*/
|
|
3572
|
+
totalPages: number;
|
|
3568
3573
|
/**
|
|
3569
3574
|
* Indicates whether current page has previous page.
|
|
3570
3575
|
* @type {boolean}
|
|
@@ -3577,12 +3582,6 @@ interface ListedSinglePageList {
|
|
|
3577
3582
|
* @memberof ListedSinglePageList
|
|
3578
3583
|
*/
|
|
3579
3584
|
hasPrevious: boolean;
|
|
3580
|
-
/**
|
|
3581
|
-
* Indicates total pages.
|
|
3582
|
-
* @type {number}
|
|
3583
|
-
* @memberof ListedSinglePageList
|
|
3584
|
-
*/
|
|
3585
|
-
totalPages: number;
|
|
3586
3585
|
}
|
|
3587
3586
|
|
|
3588
3587
|
/**
|
|
@@ -3912,6 +3911,12 @@ interface MenuItemList {
|
|
|
3912
3911
|
* @memberof MenuItemList
|
|
3913
3912
|
*/
|
|
3914
3913
|
last: boolean;
|
|
3914
|
+
/**
|
|
3915
|
+
* Indicates total pages.
|
|
3916
|
+
* @type {number}
|
|
3917
|
+
* @memberof MenuItemList
|
|
3918
|
+
*/
|
|
3919
|
+
totalPages: number;
|
|
3915
3920
|
/**
|
|
3916
3921
|
* Indicates whether current page has previous page.
|
|
3917
3922
|
* @type {boolean}
|
|
@@ -3924,12 +3929,6 @@ interface MenuItemList {
|
|
|
3924
3929
|
* @memberof MenuItemList
|
|
3925
3930
|
*/
|
|
3926
3931
|
hasPrevious: boolean;
|
|
3927
|
-
/**
|
|
3928
|
-
* Indicates total pages.
|
|
3929
|
-
* @type {number}
|
|
3930
|
-
* @memberof MenuItemList
|
|
3931
|
-
*/
|
|
3932
|
-
totalPages: number;
|
|
3933
3932
|
}
|
|
3934
3933
|
|
|
3935
3934
|
/**
|
|
@@ -3986,6 +3985,12 @@ interface MenuList {
|
|
|
3986
3985
|
* @memberof MenuList
|
|
3987
3986
|
*/
|
|
3988
3987
|
last: boolean;
|
|
3988
|
+
/**
|
|
3989
|
+
* Indicates total pages.
|
|
3990
|
+
* @type {number}
|
|
3991
|
+
* @memberof MenuList
|
|
3992
|
+
*/
|
|
3993
|
+
totalPages: number;
|
|
3989
3994
|
/**
|
|
3990
3995
|
* Indicates whether current page has previous page.
|
|
3991
3996
|
* @type {boolean}
|
|
@@ -3998,12 +4003,6 @@ interface MenuList {
|
|
|
3998
4003
|
* @memberof MenuList
|
|
3999
4004
|
*/
|
|
4000
4005
|
hasPrevious: boolean;
|
|
4001
|
-
/**
|
|
4002
|
-
* Indicates total pages.
|
|
4003
|
-
* @type {number}
|
|
4004
|
-
* @memberof MenuList
|
|
4005
|
-
*/
|
|
4006
|
-
totalPages: number;
|
|
4007
4006
|
}
|
|
4008
4007
|
|
|
4009
4008
|
/**
|
|
@@ -4159,6 +4158,12 @@ interface PersonalAccessTokenList {
|
|
|
4159
4158
|
* @memberof PersonalAccessTokenList
|
|
4160
4159
|
*/
|
|
4161
4160
|
last: boolean;
|
|
4161
|
+
/**
|
|
4162
|
+
* Indicates total pages.
|
|
4163
|
+
* @type {number}
|
|
4164
|
+
* @memberof PersonalAccessTokenList
|
|
4165
|
+
*/
|
|
4166
|
+
totalPages: number;
|
|
4162
4167
|
/**
|
|
4163
4168
|
* Indicates whether current page has previous page.
|
|
4164
4169
|
* @type {boolean}
|
|
@@ -4171,12 +4176,6 @@ interface PersonalAccessTokenList {
|
|
|
4171
4176
|
* @memberof PersonalAccessTokenList
|
|
4172
4177
|
*/
|
|
4173
4178
|
hasPrevious: boolean;
|
|
4174
|
-
/**
|
|
4175
|
-
* Indicates total pages.
|
|
4176
|
-
* @type {number}
|
|
4177
|
-
* @memberof PersonalAccessTokenList
|
|
4178
|
-
*/
|
|
4179
|
-
totalPages: number;
|
|
4180
4179
|
}
|
|
4181
4180
|
|
|
4182
4181
|
/**
|
|
@@ -4460,6 +4459,12 @@ interface PluginList {
|
|
|
4460
4459
|
* @memberof PluginList
|
|
4461
4460
|
*/
|
|
4462
4461
|
last: boolean;
|
|
4462
|
+
/**
|
|
4463
|
+
* Indicates total pages.
|
|
4464
|
+
* @type {number}
|
|
4465
|
+
* @memberof PluginList
|
|
4466
|
+
*/
|
|
4467
|
+
totalPages: number;
|
|
4463
4468
|
/**
|
|
4464
4469
|
* Indicates whether current page has previous page.
|
|
4465
4470
|
* @type {boolean}
|
|
@@ -4472,12 +4477,6 @@ interface PluginList {
|
|
|
4472
4477
|
* @memberof PluginList
|
|
4473
4478
|
*/
|
|
4474
4479
|
hasPrevious: boolean;
|
|
4475
|
-
/**
|
|
4476
|
-
* Indicates total pages.
|
|
4477
|
-
* @type {number}
|
|
4478
|
-
* @memberof PluginList
|
|
4479
|
-
*/
|
|
4480
|
-
totalPages: number;
|
|
4481
4480
|
}
|
|
4482
4481
|
|
|
4483
4482
|
/**
|
|
@@ -4491,7 +4490,6 @@ interface PluginList {
|
|
|
4491
4490
|
* https://openapi-generator.tech
|
|
4492
4491
|
* Do not edit the class manually.
|
|
4493
4492
|
*/
|
|
4494
|
-
|
|
4495
4493
|
/**
|
|
4496
4494
|
*
|
|
4497
4495
|
* @export
|
|
@@ -4505,17 +4503,17 @@ interface PolicySpec {
|
|
|
4505
4503
|
*/
|
|
4506
4504
|
displayName: string;
|
|
4507
4505
|
/**
|
|
4508
|
-
*
|
|
4509
|
-
* @type {
|
|
4506
|
+
* Reference name of PolicyTemplate
|
|
4507
|
+
* @type {string}
|
|
4510
4508
|
* @memberof PolicySpec
|
|
4511
4509
|
*/
|
|
4512
|
-
|
|
4510
|
+
templateName: string;
|
|
4513
4511
|
/**
|
|
4514
|
-
*
|
|
4515
|
-
* @type {
|
|
4512
|
+
* Reference name of ConfigMap extension
|
|
4513
|
+
* @type {string}
|
|
4516
4514
|
* @memberof PolicySpec
|
|
4517
4515
|
*/
|
|
4518
|
-
|
|
4516
|
+
configMapName?: string;
|
|
4519
4517
|
}
|
|
4520
4518
|
|
|
4521
4519
|
/**
|
|
@@ -4616,6 +4614,12 @@ interface PolicyList {
|
|
|
4616
4614
|
* @memberof PolicyList
|
|
4617
4615
|
*/
|
|
4618
4616
|
last: boolean;
|
|
4617
|
+
/**
|
|
4618
|
+
* Indicates total pages.
|
|
4619
|
+
* @type {number}
|
|
4620
|
+
* @memberof PolicyList
|
|
4621
|
+
*/
|
|
4622
|
+
totalPages: number;
|
|
4619
4623
|
/**
|
|
4620
4624
|
* Indicates whether current page has previous page.
|
|
4621
4625
|
* @type {boolean}
|
|
@@ -4628,12 +4632,6 @@ interface PolicyList {
|
|
|
4628
4632
|
* @memberof PolicyList
|
|
4629
4633
|
*/
|
|
4630
4634
|
hasPrevious: boolean;
|
|
4631
|
-
/**
|
|
4632
|
-
* Indicates total pages.
|
|
4633
|
-
* @type {number}
|
|
4634
|
-
* @memberof PolicyList
|
|
4635
|
-
*/
|
|
4636
|
-
totalPages: number;
|
|
4637
4635
|
}
|
|
4638
4636
|
|
|
4639
4637
|
/**
|
|
@@ -4696,7 +4694,6 @@ interface PolicyRule {
|
|
|
4696
4694
|
* https://openapi-generator.tech
|
|
4697
4695
|
* Do not edit the class manually.
|
|
4698
4696
|
*/
|
|
4699
|
-
|
|
4700
4697
|
/**
|
|
4701
4698
|
*
|
|
4702
4699
|
* @export
|
|
@@ -4711,10 +4708,10 @@ interface PolicyTemplateSpec {
|
|
|
4711
4708
|
displayName?: string;
|
|
4712
4709
|
/**
|
|
4713
4710
|
*
|
|
4714
|
-
* @type {
|
|
4711
|
+
* @type {string}
|
|
4715
4712
|
* @memberof PolicyTemplateSpec
|
|
4716
4713
|
*/
|
|
4717
|
-
|
|
4714
|
+
settingName: string;
|
|
4718
4715
|
}
|
|
4719
4716
|
|
|
4720
4717
|
/**
|
|
@@ -4815,6 +4812,12 @@ interface PolicyTemplateList {
|
|
|
4815
4812
|
* @memberof PolicyTemplateList
|
|
4816
4813
|
*/
|
|
4817
4814
|
last: boolean;
|
|
4815
|
+
/**
|
|
4816
|
+
* Indicates total pages.
|
|
4817
|
+
* @type {number}
|
|
4818
|
+
* @memberof PolicyTemplateList
|
|
4819
|
+
*/
|
|
4820
|
+
totalPages: number;
|
|
4818
4821
|
/**
|
|
4819
4822
|
* Indicates whether current page has previous page.
|
|
4820
4823
|
* @type {boolean}
|
|
@@ -4827,12 +4830,6 @@ interface PolicyTemplateList {
|
|
|
4827
4830
|
* @memberof PolicyTemplateList
|
|
4828
4831
|
*/
|
|
4829
4832
|
hasPrevious: boolean;
|
|
4830
|
-
/**
|
|
4831
|
-
* Indicates total pages.
|
|
4832
|
-
* @type {number}
|
|
4833
|
-
* @memberof PolicyTemplateList
|
|
4834
|
-
*/
|
|
4835
|
-
totalPages: number;
|
|
4836
4833
|
}
|
|
4837
4834
|
|
|
4838
4835
|
/**
|
|
@@ -4988,6 +4985,12 @@ interface PostList {
|
|
|
4988
4985
|
* @memberof PostList
|
|
4989
4986
|
*/
|
|
4990
4987
|
last: boolean;
|
|
4988
|
+
/**
|
|
4989
|
+
* Indicates total pages.
|
|
4990
|
+
* @type {number}
|
|
4991
|
+
* @memberof PostList
|
|
4992
|
+
*/
|
|
4993
|
+
totalPages: number;
|
|
4991
4994
|
/**
|
|
4992
4995
|
* Indicates whether current page has previous page.
|
|
4993
4996
|
* @type {boolean}
|
|
@@ -5000,12 +5003,6 @@ interface PostList {
|
|
|
5000
5003
|
* @memberof PostList
|
|
5001
5004
|
*/
|
|
5002
5005
|
hasPrevious: boolean;
|
|
5003
|
-
/**
|
|
5004
|
-
* Indicates total pages.
|
|
5005
|
-
* @type {number}
|
|
5006
|
-
* @memberof PostList
|
|
5007
|
-
*/
|
|
5008
|
-
totalPages: number;
|
|
5009
5006
|
}
|
|
5010
5007
|
|
|
5011
5008
|
/**
|
|
@@ -5094,6 +5091,12 @@ interface ReplyList {
|
|
|
5094
5091
|
* @memberof ReplyList
|
|
5095
5092
|
*/
|
|
5096
5093
|
last: boolean;
|
|
5094
|
+
/**
|
|
5095
|
+
* Indicates total pages.
|
|
5096
|
+
* @type {number}
|
|
5097
|
+
* @memberof ReplyList
|
|
5098
|
+
*/
|
|
5099
|
+
totalPages: number;
|
|
5097
5100
|
/**
|
|
5098
5101
|
* Indicates whether current page has previous page.
|
|
5099
5102
|
* @type {boolean}
|
|
@@ -5106,12 +5109,6 @@ interface ReplyList {
|
|
|
5106
5109
|
* @memberof ReplyList
|
|
5107
5110
|
*/
|
|
5108
5111
|
hasPrevious: boolean;
|
|
5109
|
-
/**
|
|
5110
|
-
* Indicates total pages.
|
|
5111
|
-
* @type {number}
|
|
5112
|
-
* @memberof ReplyList
|
|
5113
|
-
*/
|
|
5114
|
-
totalPages: number;
|
|
5115
5112
|
}
|
|
5116
5113
|
|
|
5117
5114
|
/**
|
|
@@ -5256,6 +5253,12 @@ interface ReplyVoList {
|
|
|
5256
5253
|
* @memberof ReplyVoList
|
|
5257
5254
|
*/
|
|
5258
5255
|
last: boolean;
|
|
5256
|
+
/**
|
|
5257
|
+
* Indicates total pages.
|
|
5258
|
+
* @type {number}
|
|
5259
|
+
* @memberof ReplyVoList
|
|
5260
|
+
*/
|
|
5261
|
+
totalPages: number;
|
|
5259
5262
|
/**
|
|
5260
5263
|
* Indicates whether current page has previous page.
|
|
5261
5264
|
* @type {boolean}
|
|
@@ -5268,12 +5271,6 @@ interface ReplyVoList {
|
|
|
5268
5271
|
* @memberof ReplyVoList
|
|
5269
5272
|
*/
|
|
5270
5273
|
hasPrevious: boolean;
|
|
5271
|
-
/**
|
|
5272
|
-
* Indicates total pages.
|
|
5273
|
-
* @type {number}
|
|
5274
|
-
* @memberof ReplyVoList
|
|
5275
|
-
*/
|
|
5276
|
-
totalPages: number;
|
|
5277
5274
|
}
|
|
5278
5275
|
|
|
5279
5276
|
/**
|
|
@@ -5406,6 +5403,12 @@ interface ReverseProxyList {
|
|
|
5406
5403
|
* @memberof ReverseProxyList
|
|
5407
5404
|
*/
|
|
5408
5405
|
last: boolean;
|
|
5406
|
+
/**
|
|
5407
|
+
* Indicates total pages.
|
|
5408
|
+
* @type {number}
|
|
5409
|
+
* @memberof ReverseProxyList
|
|
5410
|
+
*/
|
|
5411
|
+
totalPages: number;
|
|
5409
5412
|
/**
|
|
5410
5413
|
* Indicates whether current page has previous page.
|
|
5411
5414
|
* @type {boolean}
|
|
@@ -5418,12 +5421,6 @@ interface ReverseProxyList {
|
|
|
5418
5421
|
* @memberof ReverseProxyList
|
|
5419
5422
|
*/
|
|
5420
5423
|
hasPrevious: boolean;
|
|
5421
|
-
/**
|
|
5422
|
-
* Indicates total pages.
|
|
5423
|
-
* @type {number}
|
|
5424
|
-
* @memberof ReverseProxyList
|
|
5425
|
-
*/
|
|
5426
|
-
totalPages: number;
|
|
5427
5424
|
}
|
|
5428
5425
|
|
|
5429
5426
|
/**
|
|
@@ -5648,6 +5645,12 @@ interface RoleBindingList {
|
|
|
5648
5645
|
* @memberof RoleBindingList
|
|
5649
5646
|
*/
|
|
5650
5647
|
last: boolean;
|
|
5648
|
+
/**
|
|
5649
|
+
* Indicates total pages.
|
|
5650
|
+
* @type {number}
|
|
5651
|
+
* @memberof RoleBindingList
|
|
5652
|
+
*/
|
|
5653
|
+
totalPages: number;
|
|
5651
5654
|
/**
|
|
5652
5655
|
* Indicates whether current page has previous page.
|
|
5653
5656
|
* @type {boolean}
|
|
@@ -5660,12 +5663,6 @@ interface RoleBindingList {
|
|
|
5660
5663
|
* @memberof RoleBindingList
|
|
5661
5664
|
*/
|
|
5662
5665
|
hasPrevious: boolean;
|
|
5663
|
-
/**
|
|
5664
|
-
* Indicates total pages.
|
|
5665
|
-
* @type {number}
|
|
5666
|
-
* @memberof RoleBindingList
|
|
5667
|
-
*/
|
|
5668
|
-
totalPages: number;
|
|
5669
5666
|
}
|
|
5670
5667
|
|
|
5671
5668
|
/**
|
|
@@ -5722,6 +5719,12 @@ interface RoleList {
|
|
|
5722
5719
|
* @memberof RoleList
|
|
5723
5720
|
*/
|
|
5724
5721
|
last: boolean;
|
|
5722
|
+
/**
|
|
5723
|
+
* Indicates total pages.
|
|
5724
|
+
* @type {number}
|
|
5725
|
+
* @memberof RoleList
|
|
5726
|
+
*/
|
|
5727
|
+
totalPages: number;
|
|
5725
5728
|
/**
|
|
5726
5729
|
* Indicates whether current page has previous page.
|
|
5727
5730
|
* @type {boolean}
|
|
@@ -5734,12 +5737,6 @@ interface RoleList {
|
|
|
5734
5737
|
* @memberof RoleList
|
|
5735
5738
|
*/
|
|
5736
5739
|
hasPrevious: boolean;
|
|
5737
|
-
/**
|
|
5738
|
-
* Indicates total pages.
|
|
5739
|
-
* @type {number}
|
|
5740
|
-
* @memberof RoleList
|
|
5741
|
-
*/
|
|
5742
|
-
totalPages: number;
|
|
5743
5740
|
}
|
|
5744
5741
|
|
|
5745
5742
|
/**
|
|
@@ -5896,6 +5893,12 @@ interface SearchEngineList {
|
|
|
5896
5893
|
* @memberof SearchEngineList
|
|
5897
5894
|
*/
|
|
5898
5895
|
last: boolean;
|
|
5896
|
+
/**
|
|
5897
|
+
* Indicates total pages.
|
|
5898
|
+
* @type {number}
|
|
5899
|
+
* @memberof SearchEngineList
|
|
5900
|
+
*/
|
|
5901
|
+
totalPages: number;
|
|
5899
5902
|
/**
|
|
5900
5903
|
* Indicates whether current page has previous page.
|
|
5901
5904
|
* @type {boolean}
|
|
@@ -5908,12 +5911,6 @@ interface SearchEngineList {
|
|
|
5908
5911
|
* @memberof SearchEngineList
|
|
5909
5912
|
*/
|
|
5910
5913
|
hasPrevious: boolean;
|
|
5911
|
-
/**
|
|
5912
|
-
* Indicates total pages.
|
|
5913
|
-
* @type {number}
|
|
5914
|
-
* @memberof SearchEngineList
|
|
5915
|
-
*/
|
|
5916
|
-
totalPages: number;
|
|
5917
5914
|
}
|
|
5918
5915
|
|
|
5919
5916
|
/**
|
|
@@ -6077,6 +6074,12 @@ interface SettingList {
|
|
|
6077
6074
|
* @memberof SettingList
|
|
6078
6075
|
*/
|
|
6079
6076
|
last: boolean;
|
|
6077
|
+
/**
|
|
6078
|
+
* Indicates total pages.
|
|
6079
|
+
* @type {number}
|
|
6080
|
+
* @memberof SettingList
|
|
6081
|
+
*/
|
|
6082
|
+
totalPages: number;
|
|
6080
6083
|
/**
|
|
6081
6084
|
* Indicates whether current page has previous page.
|
|
6082
6085
|
* @type {boolean}
|
|
@@ -6089,12 +6092,6 @@ interface SettingList {
|
|
|
6089
6092
|
* @memberof SettingList
|
|
6090
6093
|
*/
|
|
6091
6094
|
hasPrevious: boolean;
|
|
6092
|
-
/**
|
|
6093
|
-
* Indicates total pages.
|
|
6094
|
-
* @type {number}
|
|
6095
|
-
* @memberof SettingList
|
|
6096
|
-
*/
|
|
6097
|
-
totalPages: number;
|
|
6098
6095
|
}
|
|
6099
6096
|
|
|
6100
6097
|
/**
|
|
@@ -6151,6 +6148,12 @@ interface SinglePageList {
|
|
|
6151
6148
|
* @memberof SinglePageList
|
|
6152
6149
|
*/
|
|
6153
6150
|
last: boolean;
|
|
6151
|
+
/**
|
|
6152
|
+
* Indicates total pages.
|
|
6153
|
+
* @type {number}
|
|
6154
|
+
* @memberof SinglePageList
|
|
6155
|
+
*/
|
|
6156
|
+
totalPages: number;
|
|
6154
6157
|
/**
|
|
6155
6158
|
* Indicates whether current page has previous page.
|
|
6156
6159
|
* @type {boolean}
|
|
@@ -6163,12 +6166,6 @@ interface SinglePageList {
|
|
|
6163
6166
|
* @memberof SinglePageList
|
|
6164
6167
|
*/
|
|
6165
6168
|
hasPrevious: boolean;
|
|
6166
|
-
/**
|
|
6167
|
-
* Indicates total pages.
|
|
6168
|
-
* @type {number}
|
|
6169
|
-
* @memberof SinglePageList
|
|
6170
|
-
*/
|
|
6171
|
-
totalPages: number;
|
|
6172
6169
|
}
|
|
6173
6170
|
|
|
6174
6171
|
/**
|
|
@@ -6369,6 +6366,12 @@ interface SnapshotList {
|
|
|
6369
6366
|
* @memberof SnapshotList
|
|
6370
6367
|
*/
|
|
6371
6368
|
last: boolean;
|
|
6369
|
+
/**
|
|
6370
|
+
* Indicates total pages.
|
|
6371
|
+
* @type {number}
|
|
6372
|
+
* @memberof SnapshotList
|
|
6373
|
+
*/
|
|
6374
|
+
totalPages: number;
|
|
6372
6375
|
/**
|
|
6373
6376
|
* Indicates whether current page has previous page.
|
|
6374
6377
|
* @type {boolean}
|
|
@@ -6381,12 +6384,6 @@ interface SnapshotList {
|
|
|
6381
6384
|
* @memberof SnapshotList
|
|
6382
6385
|
*/
|
|
6383
6386
|
hasPrevious: boolean;
|
|
6384
|
-
/**
|
|
6385
|
-
* Indicates total pages.
|
|
6386
|
-
* @type {number}
|
|
6387
|
-
* @memberof SnapshotList
|
|
6388
|
-
*/
|
|
6389
|
-
totalPages: number;
|
|
6390
6387
|
}
|
|
6391
6388
|
|
|
6392
6389
|
/**
|
|
@@ -6443,6 +6440,12 @@ interface TagList {
|
|
|
6443
6440
|
* @memberof TagList
|
|
6444
6441
|
*/
|
|
6445
6442
|
last: boolean;
|
|
6443
|
+
/**
|
|
6444
|
+
* Indicates total pages.
|
|
6445
|
+
* @type {number}
|
|
6446
|
+
* @memberof TagList
|
|
6447
|
+
*/
|
|
6448
|
+
totalPages: number;
|
|
6446
6449
|
/**
|
|
6447
6450
|
* Indicates whether current page has previous page.
|
|
6448
6451
|
* @type {boolean}
|
|
@@ -6455,12 +6458,6 @@ interface TagList {
|
|
|
6455
6458
|
* @memberof TagList
|
|
6456
6459
|
*/
|
|
6457
6460
|
hasPrevious: boolean;
|
|
6458
|
-
/**
|
|
6459
|
-
* Indicates total pages.
|
|
6460
|
-
* @type {number}
|
|
6461
|
-
* @memberof TagList
|
|
6462
|
-
*/
|
|
6463
|
-
totalPages: number;
|
|
6464
6461
|
}
|
|
6465
6462
|
|
|
6466
6463
|
/**
|
|
@@ -6678,6 +6675,12 @@ interface ThemeList {
|
|
|
6678
6675
|
* @memberof ThemeList
|
|
6679
6676
|
*/
|
|
6680
6677
|
last: boolean;
|
|
6678
|
+
/**
|
|
6679
|
+
* Indicates total pages.
|
|
6680
|
+
* @type {number}
|
|
6681
|
+
* @memberof ThemeList
|
|
6682
|
+
*/
|
|
6683
|
+
totalPages: number;
|
|
6681
6684
|
/**
|
|
6682
6685
|
* Indicates whether current page has previous page.
|
|
6683
6686
|
* @type {boolean}
|
|
@@ -6690,12 +6693,6 @@ interface ThemeList {
|
|
|
6690
6693
|
* @memberof ThemeList
|
|
6691
6694
|
*/
|
|
6692
6695
|
hasPrevious: boolean;
|
|
6693
|
-
/**
|
|
6694
|
-
* Indicates total pages.
|
|
6695
|
-
* @type {number}
|
|
6696
|
-
* @memberof ThemeList
|
|
6697
|
-
*/
|
|
6698
|
-
totalPages: number;
|
|
6699
6696
|
}
|
|
6700
6697
|
|
|
6701
6698
|
/**
|
|
@@ -6913,6 +6910,12 @@ interface UserList {
|
|
|
6913
6910
|
* @memberof UserList
|
|
6914
6911
|
*/
|
|
6915
6912
|
last: boolean;
|
|
6913
|
+
/**
|
|
6914
|
+
* Indicates total pages.
|
|
6915
|
+
* @type {number}
|
|
6916
|
+
* @memberof UserList
|
|
6917
|
+
*/
|
|
6918
|
+
totalPages: number;
|
|
6916
6919
|
/**
|
|
6917
6920
|
* Indicates whether current page has previous page.
|
|
6918
6921
|
* @type {boolean}
|
|
@@ -6925,12 +6928,6 @@ interface UserList {
|
|
|
6925
6928
|
* @memberof UserList
|
|
6926
6929
|
*/
|
|
6927
6930
|
hasPrevious: boolean;
|
|
6928
|
-
/**
|
|
6929
|
-
* Indicates total pages.
|
|
6930
|
-
* @type {number}
|
|
6931
|
-
* @memberof UserList
|
|
6932
|
-
*/
|
|
6933
|
-
totalPages: number;
|
|
6934
6931
|
}
|
|
6935
6932
|
|
|
6936
6933
|
/**
|
|
@@ -7009,29 +7006,29 @@ interface VoteRequest {
|
|
|
7009
7006
|
declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7010
7007
|
/**
|
|
7011
7008
|
*
|
|
7012
|
-
* @param {string} [policy] Name of policy
|
|
7013
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7014
|
-
* @param {string} [displayName] Display name of attachment
|
|
7015
7009
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7016
7010
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7011
|
+
* @param {string} [policy] Name of policy
|
|
7017
7012
|
* @param {string} [group] Name of group
|
|
7018
|
-
* @param {
|
|
7013
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7014
|
+
* @param {string} [displayName] Display name of attachment
|
|
7019
7015
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7020
7016
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7021
7017
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7018
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7022
7019
|
* @param {*} [options] Override http request option.
|
|
7023
7020
|
* @throws {RequiredError}
|
|
7024
7021
|
*/
|
|
7025
|
-
searchAttachments: (
|
|
7022
|
+
searchAttachments: (ungrouped?: boolean, uploadedBy?: string, policy?: string, group?: string, sort?: Array<string>, displayName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7026
7023
|
/**
|
|
7027
7024
|
*
|
|
7028
|
-
* @param {any} file
|
|
7029
7025
|
* @param {string} policyName Storage policy name
|
|
7026
|
+
* @param {any} file
|
|
7030
7027
|
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7031
7028
|
* @param {*} [options] Override http request option.
|
|
7032
7029
|
* @throws {RequiredError}
|
|
7033
7030
|
*/
|
|
7034
|
-
uploadAttachment: (
|
|
7031
|
+
uploadAttachment: (policyName: string, file: any, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7035
7032
|
};
|
|
7036
7033
|
/**
|
|
7037
7034
|
* ApiConsoleHaloRunV1alpha1AttachmentApi - functional programming interface
|
|
@@ -7040,29 +7037,29 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
|
|
|
7040
7037
|
declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configuration) => {
|
|
7041
7038
|
/**
|
|
7042
7039
|
*
|
|
7043
|
-
* @param {string} [policy] Name of policy
|
|
7044
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7045
|
-
* @param {string} [displayName] Display name of attachment
|
|
7046
7040
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7047
7041
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7042
|
+
* @param {string} [policy] Name of policy
|
|
7048
7043
|
* @param {string} [group] Name of group
|
|
7049
|
-
* @param {
|
|
7044
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7045
|
+
* @param {string} [displayName] Display name of attachment
|
|
7050
7046
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7051
7047
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7052
7048
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7049
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7053
7050
|
* @param {*} [options] Override http request option.
|
|
7054
7051
|
* @throws {RequiredError}
|
|
7055
7052
|
*/
|
|
7056
|
-
searchAttachments(
|
|
7053
|
+
searchAttachments(ungrouped?: boolean, uploadedBy?: string, policy?: string, group?: string, sort?: Array<string>, displayName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
7057
7054
|
/**
|
|
7058
7055
|
*
|
|
7059
|
-
* @param {any} file
|
|
7060
7056
|
* @param {string} policyName Storage policy name
|
|
7057
|
+
* @param {any} file
|
|
7061
7058
|
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7062
7059
|
* @param {*} [options] Override http request option.
|
|
7063
7060
|
* @throws {RequiredError}
|
|
7064
7061
|
*/
|
|
7065
|
-
uploadAttachment(
|
|
7062
|
+
uploadAttachment(policyName: string, file: any, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
|
|
7066
7063
|
};
|
|
7067
7064
|
/**
|
|
7068
7065
|
* ApiConsoleHaloRunV1alpha1AttachmentApi - factory interface
|
|
@@ -7071,29 +7068,29 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
|
|
|
7071
7068
|
declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7072
7069
|
/**
|
|
7073
7070
|
*
|
|
7074
|
-
* @param {string} [policy] Name of policy
|
|
7075
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7076
|
-
* @param {string} [displayName] Display name of attachment
|
|
7077
7071
|
* @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
|
|
7078
7072
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
7073
|
+
* @param {string} [policy] Name of policy
|
|
7079
7074
|
* @param {string} [group] Name of group
|
|
7080
|
-
* @param {
|
|
7075
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7076
|
+
* @param {string} [displayName] Display name of attachment
|
|
7081
7077
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7082
7078
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7083
7079
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7080
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7084
7081
|
* @param {*} [options] Override http request option.
|
|
7085
7082
|
* @throws {RequiredError}
|
|
7086
7083
|
*/
|
|
7087
|
-
searchAttachments(
|
|
7084
|
+
searchAttachments(ungrouped?: boolean, uploadedBy?: string, policy?: string, group?: string, sort?: Array<string>, displayName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
7088
7085
|
/**
|
|
7089
7086
|
*
|
|
7090
|
-
* @param {any} file
|
|
7091
7087
|
* @param {string} policyName Storage policy name
|
|
7088
|
+
* @param {any} file
|
|
7092
7089
|
* @param {string} [groupName] The name of the group to which the attachment belongs
|
|
7093
7090
|
* @param {*} [options] Override http request option.
|
|
7094
7091
|
* @throws {RequiredError}
|
|
7095
7092
|
*/
|
|
7096
|
-
uploadAttachment(
|
|
7093
|
+
uploadAttachment(policyName: string, file: any, groupName?: string, options?: any): AxiosPromise<Attachment>;
|
|
7097
7094
|
};
|
|
7098
7095
|
/**
|
|
7099
7096
|
* Request parameters for searchAttachments operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7102,35 +7099,23 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
|
|
|
7102
7099
|
*/
|
|
7103
7100
|
interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
7104
7101
|
/**
|
|
7105
|
-
*
|
|
7106
|
-
* @type {
|
|
7102
|
+
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7103
|
+
* @type {boolean}
|
|
7107
7104
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7108
7105
|
*/
|
|
7109
|
-
readonly
|
|
7110
|
-
/**
|
|
7111
|
-
* Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7112
|
-
* @type {Array<string>}
|
|
7113
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7114
|
-
*/
|
|
7115
|
-
readonly sort?: Array<string>;
|
|
7106
|
+
readonly ungrouped?: boolean;
|
|
7116
7107
|
/**
|
|
7117
|
-
*
|
|
7108
|
+
* Name of user who uploaded the attachment
|
|
7118
7109
|
* @type {string}
|
|
7119
7110
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7120
7111
|
*/
|
|
7121
|
-
readonly
|
|
7122
|
-
/**
|
|
7123
|
-
* Filter attachments without group. This parameter will ignore group parameter.
|
|
7124
|
-
* @type {boolean}
|
|
7125
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7126
|
-
*/
|
|
7127
|
-
readonly ungrouped?: boolean;
|
|
7112
|
+
readonly uploadedBy?: string;
|
|
7128
7113
|
/**
|
|
7129
|
-
* Name of
|
|
7114
|
+
* Name of policy
|
|
7130
7115
|
* @type {string}
|
|
7131
7116
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7132
7117
|
*/
|
|
7133
|
-
readonly
|
|
7118
|
+
readonly policy?: string;
|
|
7134
7119
|
/**
|
|
7135
7120
|
* Name of group
|
|
7136
7121
|
* @type {string}
|
|
@@ -7138,11 +7123,17 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7138
7123
|
*/
|
|
7139
7124
|
readonly group?: string;
|
|
7140
7125
|
/**
|
|
7141
|
-
*
|
|
7142
|
-
* @type {
|
|
7126
|
+
* Sort property and direction of the list result. Supported fields: creationTimestamp, size
|
|
7127
|
+
* @type {Array<string>}
|
|
7143
7128
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7144
7129
|
*/
|
|
7145
|
-
readonly
|
|
7130
|
+
readonly sort?: Array<string>;
|
|
7131
|
+
/**
|
|
7132
|
+
* Display name of attachment
|
|
7133
|
+
* @type {string}
|
|
7134
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7135
|
+
*/
|
|
7136
|
+
readonly displayName?: string;
|
|
7146
7137
|
/**
|
|
7147
7138
|
* The page number. Zero indicates no page.
|
|
7148
7139
|
* @type {number}
|
|
@@ -7161,6 +7152,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7161
7152
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7162
7153
|
*/
|
|
7163
7154
|
readonly fieldSelector?: Array<string>;
|
|
7155
|
+
/**
|
|
7156
|
+
* Size of one page. Zero indicates no limit.
|
|
7157
|
+
* @type {number}
|
|
7158
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
7159
|
+
*/
|
|
7160
|
+
readonly size?: number;
|
|
7164
7161
|
}
|
|
7165
7162
|
/**
|
|
7166
7163
|
* Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
|
|
@@ -7168,18 +7165,18 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
7168
7165
|
* @interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
|
|
7169
7166
|
*/
|
|
7170
7167
|
interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
|
|
7171
|
-
/**
|
|
7172
|
-
*
|
|
7173
|
-
* @type {any}
|
|
7174
|
-
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
|
|
7175
|
-
*/
|
|
7176
|
-
readonly file: any;
|
|
7177
7168
|
/**
|
|
7178
7169
|
* Storage policy name
|
|
7179
7170
|
* @type {string}
|
|
7180
7171
|
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
|
|
7181
7172
|
*/
|
|
7182
7173
|
readonly policyName: string;
|
|
7174
|
+
/**
|
|
7175
|
+
*
|
|
7176
|
+
* @type {any}
|
|
7177
|
+
* @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
|
|
7178
|
+
*/
|
|
7179
|
+
readonly file: any;
|
|
7183
7180
|
/**
|
|
7184
7181
|
* The name of the group to which the attachment belongs
|
|
7185
7182
|
* @type {string}
|
|
@@ -7234,25 +7231,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
|
|
|
7234
7231
|
createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7235
7232
|
/**
|
|
7236
7233
|
* List comments.
|
|
7237
|
-
* @param {
|
|
7234
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7238
7235
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
7236
|
+
* @param {boolean} [approved] Comments approved.
|
|
7239
7237
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7240
7238
|
* @param {boolean} [top] Comment top display.
|
|
7241
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7242
|
-
* @param {boolean} [approved] Comments approved.
|
|
7243
7239
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7244
7240
|
* @param {string} [ownerKind] Commenter kind.
|
|
7245
7241
|
* @param {string} [ownerName] Commenter name.
|
|
7246
7242
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7247
7243
|
* @param {string} [subjectName] Comment subject name.
|
|
7248
|
-
* @param {
|
|
7244
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7249
7245
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7250
7246
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7251
7247
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7248
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7252
7249
|
* @param {*} [options] Override http request option.
|
|
7253
7250
|
* @throws {RequiredError}
|
|
7254
7251
|
*/
|
|
7255
|
-
listComments: (
|
|
7252
|
+
listComments: (sortOrder?: boolean, keyword?: string, approved?: boolean, hidden?: boolean, top?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7256
7253
|
};
|
|
7257
7254
|
/**
|
|
7258
7255
|
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -7276,25 +7273,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
|
|
|
7276
7273
|
createReply(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
|
|
7277
7274
|
/**
|
|
7278
7275
|
* List comments.
|
|
7279
|
-
* @param {
|
|
7276
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7280
7277
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
7278
|
+
* @param {boolean} [approved] Comments approved.
|
|
7281
7279
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7282
7280
|
* @param {boolean} [top] Comment top display.
|
|
7283
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7284
|
-
* @param {boolean} [approved] Comments approved.
|
|
7285
7281
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7286
7282
|
* @param {string} [ownerKind] Commenter kind.
|
|
7287
7283
|
* @param {string} [ownerName] Commenter name.
|
|
7288
7284
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7289
7285
|
* @param {string} [subjectName] Comment subject name.
|
|
7290
|
-
* @param {
|
|
7286
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7291
7287
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7292
7288
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7293
7289
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7290
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7294
7291
|
* @param {*} [options] Override http request option.
|
|
7295
7292
|
* @throws {RequiredError}
|
|
7296
7293
|
*/
|
|
7297
|
-
listComments(
|
|
7294
|
+
listComments(sortOrder?: boolean, keyword?: string, approved?: boolean, hidden?: boolean, top?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
7298
7295
|
};
|
|
7299
7296
|
/**
|
|
7300
7297
|
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -7318,25 +7315,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
|
|
|
7318
7315
|
createReply(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
|
|
7319
7316
|
/**
|
|
7320
7317
|
* List comments.
|
|
7321
|
-
* @param {
|
|
7318
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7322
7319
|
* @param {string} [keyword] Comments filtered by keyword.
|
|
7320
|
+
* @param {boolean} [approved] Comments approved.
|
|
7323
7321
|
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
7324
7322
|
* @param {boolean} [top] Comment top display.
|
|
7325
|
-
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7326
|
-
* @param {boolean} [approved] Comments approved.
|
|
7327
7323
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
7328
7324
|
* @param {string} [ownerKind] Commenter kind.
|
|
7329
7325
|
* @param {string} [ownerName] Commenter name.
|
|
7330
7326
|
* @param {string} [subjectKind] Comment subject kind.
|
|
7331
7327
|
* @param {string} [subjectName] Comment subject name.
|
|
7332
|
-
* @param {
|
|
7328
|
+
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
7333
7329
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7334
7330
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7335
7331
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7332
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7336
7333
|
* @param {*} [options] Override http request option.
|
|
7337
7334
|
* @throws {RequiredError}
|
|
7338
7335
|
*/
|
|
7339
|
-
listComments(
|
|
7336
|
+
listComments(sortOrder?: boolean, keyword?: string, approved?: boolean, hidden?: boolean, top?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedCommentList>;
|
|
7340
7337
|
};
|
|
7341
7338
|
/**
|
|
7342
7339
|
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
@@ -7377,11 +7374,11 @@ interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest {
|
|
|
7377
7374
|
*/
|
|
7378
7375
|
interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
7379
7376
|
/**
|
|
7380
|
-
*
|
|
7381
|
-
* @type {
|
|
7377
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
7378
|
+
* @type {boolean}
|
|
7382
7379
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7383
7380
|
*/
|
|
7384
|
-
readonly
|
|
7381
|
+
readonly sortOrder?: boolean;
|
|
7385
7382
|
/**
|
|
7386
7383
|
* Comments filtered by keyword.
|
|
7387
7384
|
* @type {string}
|
|
@@ -7389,29 +7386,23 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7389
7386
|
*/
|
|
7390
7387
|
readonly keyword?: string;
|
|
7391
7388
|
/**
|
|
7392
|
-
*
|
|
7393
|
-
* @type {boolean}
|
|
7394
|
-
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7395
|
-
*/
|
|
7396
|
-
readonly hidden?: boolean;
|
|
7397
|
-
/**
|
|
7398
|
-
* Comment top display.
|
|
7389
|
+
* Comments approved.
|
|
7399
7390
|
* @type {boolean}
|
|
7400
7391
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7401
7392
|
*/
|
|
7402
|
-
readonly
|
|
7393
|
+
readonly approved?: boolean;
|
|
7403
7394
|
/**
|
|
7404
|
-
*
|
|
7395
|
+
* The comment is hidden from the theme side.
|
|
7405
7396
|
* @type {boolean}
|
|
7406
7397
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7407
7398
|
*/
|
|
7408
|
-
readonly
|
|
7399
|
+
readonly hidden?: boolean;
|
|
7409
7400
|
/**
|
|
7410
|
-
*
|
|
7401
|
+
* Comment top display.
|
|
7411
7402
|
* @type {boolean}
|
|
7412
7403
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7413
7404
|
*/
|
|
7414
|
-
readonly
|
|
7405
|
+
readonly top?: boolean;
|
|
7415
7406
|
/**
|
|
7416
7407
|
* Send notifications when there are new replies.
|
|
7417
7408
|
* @type {boolean}
|
|
@@ -7443,11 +7434,11 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7443
7434
|
*/
|
|
7444
7435
|
readonly subjectName?: string;
|
|
7445
7436
|
/**
|
|
7446
|
-
*
|
|
7447
|
-
* @type {
|
|
7437
|
+
* Comment collation.
|
|
7438
|
+
* @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
|
|
7448
7439
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7449
7440
|
*/
|
|
7450
|
-
readonly
|
|
7441
|
+
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
7451
7442
|
/**
|
|
7452
7443
|
* The page number. Zero indicates no page.
|
|
7453
7444
|
* @type {number}
|
|
@@ -7466,6 +7457,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
|
7466
7457
|
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7467
7458
|
*/
|
|
7468
7459
|
readonly fieldSelector?: Array<string>;
|
|
7460
|
+
/**
|
|
7461
|
+
* Size of one page. Zero indicates no limit.
|
|
7462
|
+
* @type {number}
|
|
7463
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
7464
|
+
*/
|
|
7465
|
+
readonly size?: number;
|
|
7469
7466
|
}
|
|
7470
7467
|
/**
|
|
7471
7468
|
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
@@ -7728,17 +7725,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
|
|
|
7728
7725
|
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7729
7726
|
/**
|
|
7730
7727
|
* List plugins using query criteria and sort params
|
|
7731
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7732
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7733
7728
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7734
|
-
* @param {
|
|
7729
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7730
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7735
7731
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7736
7732
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7737
7733
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7734
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7738
7735
|
* @param {*} [options] Override http request option.
|
|
7739
7736
|
* @throws {RequiredError}
|
|
7740
7737
|
*/
|
|
7741
|
-
listPlugins: (
|
|
7738
|
+
listPlugins: (enabled?: boolean, keyword?: string, sort?: Array<string>, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7742
7739
|
/**
|
|
7743
7740
|
* Upgrade a plugin by uploading a Jar file
|
|
7744
7741
|
* @param {string} name
|
|
@@ -7762,17 +7759,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
|
|
|
7762
7759
|
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
7763
7760
|
/**
|
|
7764
7761
|
* List plugins using query criteria and sort params
|
|
7765
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7766
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7767
7762
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7768
|
-
* @param {
|
|
7763
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7764
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7769
7765
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7770
7766
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7771
7767
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7768
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7772
7769
|
* @param {*} [options] Override http request option.
|
|
7773
7770
|
* @throws {RequiredError}
|
|
7774
7771
|
*/
|
|
7775
|
-
listPlugins(
|
|
7772
|
+
listPlugins(enabled?: boolean, keyword?: string, sort?: Array<string>, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
|
|
7776
7773
|
/**
|
|
7777
7774
|
* Upgrade a plugin by uploading a Jar file
|
|
7778
7775
|
* @param {string} name
|
|
@@ -7796,17 +7793,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
|
|
|
7796
7793
|
installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
|
|
7797
7794
|
/**
|
|
7798
7795
|
* List plugins using query criteria and sort params
|
|
7799
|
-
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7800
|
-
* @param {string} [keyword] Keyword of plugin name or description
|
|
7801
7796
|
* @param {boolean} [enabled] Whether the plugin is enabled
|
|
7802
|
-
* @param {
|
|
7797
|
+
* @param {string} [keyword] Keyword of plugin name or description
|
|
7798
|
+
* @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7803
7799
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7804
7800
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7805
7801
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7802
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7806
7803
|
* @param {*} [options] Override http request option.
|
|
7807
7804
|
* @throws {RequiredError}
|
|
7808
7805
|
*/
|
|
7809
|
-
listPlugins(
|
|
7806
|
+
listPlugins(enabled?: boolean, keyword?: string, sort?: Array<string>, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<PluginList>;
|
|
7810
7807
|
/**
|
|
7811
7808
|
* Upgrade a plugin by uploading a Jar file
|
|
7812
7809
|
* @param {string} name
|
|
@@ -7836,11 +7833,11 @@ interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
|
|
|
7836
7833
|
*/
|
|
7837
7834
|
interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
7838
7835
|
/**
|
|
7839
|
-
*
|
|
7840
|
-
* @type {
|
|
7836
|
+
* Whether the plugin is enabled
|
|
7837
|
+
* @type {boolean}
|
|
7841
7838
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7842
7839
|
*/
|
|
7843
|
-
readonly
|
|
7840
|
+
readonly enabled?: boolean;
|
|
7844
7841
|
/**
|
|
7845
7842
|
* Keyword of plugin name or description
|
|
7846
7843
|
* @type {string}
|
|
@@ -7848,17 +7845,11 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7848
7845
|
*/
|
|
7849
7846
|
readonly keyword?: string;
|
|
7850
7847
|
/**
|
|
7851
|
-
*
|
|
7852
|
-
* @type {
|
|
7853
|
-
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7854
|
-
*/
|
|
7855
|
-
readonly enabled?: boolean;
|
|
7856
|
-
/**
|
|
7857
|
-
* Size of one page. Zero indicates no limit.
|
|
7858
|
-
* @type {number}
|
|
7848
|
+
* Sort property and direction of the list result. Supported fields: creationTimestamp
|
|
7849
|
+
* @type {Array<string>}
|
|
7859
7850
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7860
7851
|
*/
|
|
7861
|
-
readonly
|
|
7852
|
+
readonly sort?: Array<string>;
|
|
7862
7853
|
/**
|
|
7863
7854
|
* The page number. Zero indicates no page.
|
|
7864
7855
|
* @type {number}
|
|
@@ -7877,6 +7868,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
|
|
|
7877
7868
|
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7878
7869
|
*/
|
|
7879
7870
|
readonly fieldSelector?: Array<string>;
|
|
7871
|
+
/**
|
|
7872
|
+
* Size of one page. Zero indicates no limit.
|
|
7873
|
+
* @type {number}
|
|
7874
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
|
|
7875
|
+
*/
|
|
7876
|
+
readonly size?: number;
|
|
7880
7877
|
}
|
|
7881
7878
|
/**
|
|
7882
7879
|
* Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
@@ -7944,22 +7941,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
|
|
|
7944
7941
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7945
7942
|
/**
|
|
7946
7943
|
* List posts.
|
|
7947
|
-
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7948
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
7949
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7950
7944
|
* @param {Array<string>} [tag]
|
|
7951
|
-
* @param {
|
|
7945
|
+
* @param {Array<string>} [contributor]
|
|
7952
7946
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
7947
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
7953
7948
|
* @param {Array<string>} [category]
|
|
7954
|
-
* @param {
|
|
7955
|
-
* @param {
|
|
7949
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
7950
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
7951
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
7956
7952
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
7957
7953
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
7958
7954
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
7955
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
7959
7956
|
* @param {*} [options] Override http request option.
|
|
7960
7957
|
* @throws {RequiredError}
|
|
7961
7958
|
*/
|
|
7962
|
-
listPosts: (
|
|
7959
|
+
listPosts: (tag?: Array<string>, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<string>, sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7963
7960
|
/**
|
|
7964
7961
|
* Publish a post.
|
|
7965
7962
|
* @param {string} name
|
|
@@ -8013,22 +8010,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
|
|
|
8013
8010
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
8014
8011
|
/**
|
|
8015
8012
|
* List posts.
|
|
8016
|
-
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8017
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8018
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8019
8013
|
* @param {Array<string>} [tag]
|
|
8020
|
-
* @param {
|
|
8014
|
+
* @param {Array<string>} [contributor]
|
|
8021
8015
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8016
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8022
8017
|
* @param {Array<string>} [category]
|
|
8023
|
-
* @param {
|
|
8024
|
-
* @param {
|
|
8018
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8019
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8020
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8025
8021
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8026
8022
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8027
8023
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8024
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8028
8025
|
* @param {*} [options] Override http request option.
|
|
8029
8026
|
* @throws {RequiredError}
|
|
8030
8027
|
*/
|
|
8031
|
-
listPosts(
|
|
8028
|
+
listPosts(tag?: Array<string>, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<string>, sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
8032
8029
|
/**
|
|
8033
8030
|
* Publish a post.
|
|
8034
8031
|
* @param {string} name
|
|
@@ -8082,22 +8079,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
|
|
|
8082
8079
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
8083
8080
|
/**
|
|
8084
8081
|
* List posts.
|
|
8085
|
-
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8086
|
-
* @param {string} [keyword] Posts filtered by keyword.
|
|
8087
|
-
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8088
8082
|
* @param {Array<string>} [tag]
|
|
8089
|
-
* @param {
|
|
8083
|
+
* @param {Array<string>} [contributor]
|
|
8090
8084
|
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8085
|
+
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8091
8086
|
* @param {Array<string>} [category]
|
|
8092
|
-
* @param {
|
|
8093
|
-
* @param {
|
|
8087
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8088
|
+
* @param {string} [keyword] Posts filtered by keyword.
|
|
8089
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
|
|
8094
8090
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8095
8091
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8096
8092
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8093
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8097
8094
|
* @param {*} [options] Override http request option.
|
|
8098
8095
|
* @throws {RequiredError}
|
|
8099
8096
|
*/
|
|
8100
|
-
listPosts(
|
|
8097
|
+
listPosts(tag?: Array<string>, contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<string>, sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
8101
8098
|
/**
|
|
8102
8099
|
* Publish a post.
|
|
8103
8100
|
* @param {string} name
|
|
@@ -8157,17 +8154,23 @@ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
|
|
|
8157
8154
|
*/
|
|
8158
8155
|
interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
8159
8156
|
/**
|
|
8160
|
-
*
|
|
8161
|
-
* @type {
|
|
8157
|
+
*
|
|
8158
|
+
* @type {Array<string>}
|
|
8162
8159
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8163
8160
|
*/
|
|
8164
|
-
readonly
|
|
8161
|
+
readonly tag?: Array<string>;
|
|
8165
8162
|
/**
|
|
8166
|
-
*
|
|
8167
|
-
* @type {string}
|
|
8163
|
+
*
|
|
8164
|
+
* @type {Array<string>}
|
|
8168
8165
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8169
8166
|
*/
|
|
8170
|
-
readonly
|
|
8167
|
+
readonly contributor?: Array<string>;
|
|
8168
|
+
/**
|
|
8169
|
+
*
|
|
8170
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8171
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8172
|
+
*/
|
|
8173
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8171
8174
|
/**
|
|
8172
8175
|
*
|
|
8173
8176
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
@@ -8179,7 +8182,7 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8179
8182
|
* @type {Array<string>}
|
|
8180
8183
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8181
8184
|
*/
|
|
8182
|
-
readonly
|
|
8185
|
+
readonly category?: Array<string>;
|
|
8183
8186
|
/**
|
|
8184
8187
|
* ascending order If it is true; otherwise, it is in descending order.
|
|
8185
8188
|
* @type {boolean}
|
|
@@ -8187,29 +8190,17 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8187
8190
|
*/
|
|
8188
8191
|
readonly sortOrder?: boolean;
|
|
8189
8192
|
/**
|
|
8190
|
-
*
|
|
8191
|
-
* @type {
|
|
8192
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8193
|
-
*/
|
|
8194
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8195
|
-
/**
|
|
8196
|
-
*
|
|
8197
|
-
* @type {Array<string>}
|
|
8198
|
-
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8199
|
-
*/
|
|
8200
|
-
readonly category?: Array<string>;
|
|
8201
|
-
/**
|
|
8202
|
-
*
|
|
8203
|
-
* @type {Array<string>}
|
|
8193
|
+
* Posts filtered by keyword.
|
|
8194
|
+
* @type {string}
|
|
8204
8195
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8205
8196
|
*/
|
|
8206
|
-
readonly
|
|
8197
|
+
readonly keyword?: string;
|
|
8207
8198
|
/**
|
|
8208
|
-
*
|
|
8209
|
-
* @type {
|
|
8199
|
+
* Post collation.
|
|
8200
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
8210
8201
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8211
8202
|
*/
|
|
8212
|
-
readonly
|
|
8203
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8213
8204
|
/**
|
|
8214
8205
|
* The page number. Zero indicates no page.
|
|
8215
8206
|
* @type {number}
|
|
@@ -8228,6 +8219,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
|
8228
8219
|
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8229
8220
|
*/
|
|
8230
8221
|
readonly fieldSelector?: Array<string>;
|
|
8222
|
+
/**
|
|
8223
|
+
* Size of one page. Zero indicates no limit.
|
|
8224
|
+
* @type {number}
|
|
8225
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
8226
|
+
*/
|
|
8227
|
+
readonly size?: number;
|
|
8231
8228
|
}
|
|
8232
8229
|
/**
|
|
8233
8230
|
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
@@ -8385,14 +8382,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
|
|
|
8385
8382
|
/**
|
|
8386
8383
|
* List replies.
|
|
8387
8384
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8388
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8389
8385
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8390
8386
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8391
8387
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8388
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8392
8389
|
* @param {*} [options] Override http request option.
|
|
8393
8390
|
* @throws {RequiredError}
|
|
8394
8391
|
*/
|
|
8395
|
-
listReplies: (commentName?: string,
|
|
8392
|
+
listReplies: (commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8396
8393
|
};
|
|
8397
8394
|
/**
|
|
8398
8395
|
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
@@ -8402,14 +8399,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
|
|
|
8402
8399
|
/**
|
|
8403
8400
|
* List replies.
|
|
8404
8401
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8405
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8406
8402
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8407
8403
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8408
8404
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8405
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8409
8406
|
* @param {*} [options] Override http request option.
|
|
8410
8407
|
* @throws {RequiredError}
|
|
8411
8408
|
*/
|
|
8412
|
-
listReplies(commentName?: string,
|
|
8409
|
+
listReplies(commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
8413
8410
|
};
|
|
8414
8411
|
/**
|
|
8415
8412
|
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
@@ -8419,14 +8416,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
|
|
|
8419
8416
|
/**
|
|
8420
8417
|
* List replies.
|
|
8421
8418
|
* @param {string} [commentName] Replies filtered by commentName.
|
|
8422
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8423
8419
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8424
8420
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8425
8421
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8422
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8426
8423
|
* @param {*} [options] Override http request option.
|
|
8427
8424
|
* @throws {RequiredError}
|
|
8428
8425
|
*/
|
|
8429
|
-
listReplies(commentName?: string,
|
|
8426
|
+
listReplies(commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
8430
8427
|
};
|
|
8431
8428
|
/**
|
|
8432
8429
|
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
@@ -8440,12 +8437,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8440
8437
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8441
8438
|
*/
|
|
8442
8439
|
readonly commentName?: string;
|
|
8443
|
-
/**
|
|
8444
|
-
* Size of one page. Zero indicates no limit.
|
|
8445
|
-
* @type {number}
|
|
8446
|
-
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8447
|
-
*/
|
|
8448
|
-
readonly size?: number;
|
|
8449
8440
|
/**
|
|
8450
8441
|
* The page number. Zero indicates no page.
|
|
8451
8442
|
* @type {number}
|
|
@@ -8464,6 +8455,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
|
8464
8455
|
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8465
8456
|
*/
|
|
8466
8457
|
readonly fieldSelector?: Array<string>;
|
|
8458
|
+
/**
|
|
8459
|
+
* Size of one page. Zero indicates no limit.
|
|
8460
|
+
* @type {number}
|
|
8461
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
8462
|
+
*/
|
|
8463
|
+
readonly size?: number;
|
|
8467
8464
|
}
|
|
8468
8465
|
/**
|
|
8469
8466
|
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
@@ -8496,20 +8493,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
|
|
|
8496
8493
|
draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8497
8494
|
/**
|
|
8498
8495
|
* List single pages.
|
|
8499
|
-
* @param {
|
|
8500
|
-
* @param {
|
|
8496
|
+
* @param {Array<string>} [contributor]
|
|
8497
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8501
8498
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8502
8499
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8503
|
-
* @param {
|
|
8504
|
-
* @param {
|
|
8505
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8500
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8501
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8506
8502
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8507
8503
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8508
8504
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8505
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8509
8506
|
* @param {*} [options] Override http request option.
|
|
8510
8507
|
* @throws {RequiredError}
|
|
8511
8508
|
*/
|
|
8512
|
-
listSinglePages: (
|
|
8509
|
+
listSinglePages: (contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8513
8510
|
/**
|
|
8514
8511
|
* Publish a single page.
|
|
8515
8512
|
* @param {string} name
|
|
@@ -8548,20 +8545,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
|
|
|
8548
8545
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
8549
8546
|
/**
|
|
8550
8547
|
* List single pages.
|
|
8551
|
-
* @param {
|
|
8552
|
-
* @param {
|
|
8548
|
+
* @param {Array<string>} [contributor]
|
|
8549
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8553
8550
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8554
8551
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8555
|
-
* @param {
|
|
8556
|
-
* @param {
|
|
8557
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8552
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8553
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8558
8554
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8559
8555
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8560
8556
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8557
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8561
8558
|
* @param {*} [options] Override http request option.
|
|
8562
8559
|
* @throws {RequiredError}
|
|
8563
8560
|
*/
|
|
8564
|
-
listSinglePages(
|
|
8561
|
+
listSinglePages(contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
8565
8562
|
/**
|
|
8566
8563
|
* Publish a single page.
|
|
8567
8564
|
* @param {string} name
|
|
@@ -8600,20 +8597,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
|
|
|
8600
8597
|
draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
8601
8598
|
/**
|
|
8602
8599
|
* List single pages.
|
|
8603
|
-
* @param {
|
|
8604
|
-
* @param {
|
|
8600
|
+
* @param {Array<string>} [contributor]
|
|
8601
|
+
* @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
|
|
8605
8602
|
* @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
|
|
8606
8603
|
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
8607
|
-
* @param {
|
|
8608
|
-
* @param {
|
|
8609
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8604
|
+
* @param {string} [keyword] SinglePages filtered by keyword.
|
|
8605
|
+
* @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
|
|
8610
8606
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8611
8607
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8612
8608
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8609
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8613
8610
|
* @param {*} [options] Override http request option.
|
|
8614
8611
|
* @throws {RequiredError}
|
|
8615
8612
|
*/
|
|
8616
|
-
listSinglePages(
|
|
8613
|
+
listSinglePages(contributor?: Array<string>, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, keyword?: string, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
8617
8614
|
/**
|
|
8618
8615
|
* Publish a single page.
|
|
8619
8616
|
* @param {string} name
|
|
@@ -8658,17 +8655,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
|
8658
8655
|
*/
|
|
8659
8656
|
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
8660
8657
|
/**
|
|
8661
|
-
*
|
|
8662
|
-
* @type {
|
|
8658
|
+
*
|
|
8659
|
+
* @type {Array<string>}
|
|
8663
8660
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8664
8661
|
*/
|
|
8665
|
-
readonly
|
|
8662
|
+
readonly contributor?: Array<string>;
|
|
8666
8663
|
/**
|
|
8667
|
-
*
|
|
8668
|
-
* @type {
|
|
8664
|
+
*
|
|
8665
|
+
* @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
|
|
8669
8666
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8670
8667
|
*/
|
|
8671
|
-
readonly
|
|
8668
|
+
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8672
8669
|
/**
|
|
8673
8670
|
*
|
|
8674
8671
|
* @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
|
|
@@ -8682,23 +8679,17 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8682
8679
|
*/
|
|
8683
8680
|
readonly sortOrder?: boolean;
|
|
8684
8681
|
/**
|
|
8685
|
-
*
|
|
8686
|
-
* @type {
|
|
8687
|
-
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8688
|
-
*/
|
|
8689
|
-
readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
|
|
8690
|
-
/**
|
|
8691
|
-
*
|
|
8692
|
-
* @type {Array<string>}
|
|
8682
|
+
* SinglePages filtered by keyword.
|
|
8683
|
+
* @type {string}
|
|
8693
8684
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8694
8685
|
*/
|
|
8695
|
-
readonly
|
|
8686
|
+
readonly keyword?: string;
|
|
8696
8687
|
/**
|
|
8697
|
-
*
|
|
8698
|
-
* @type {
|
|
8688
|
+
* SinglePage collation.
|
|
8689
|
+
* @type {'PUBLISH_TIME' | 'CREATE_TIME'}
|
|
8699
8690
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8700
8691
|
*/
|
|
8701
|
-
readonly
|
|
8692
|
+
readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
|
|
8702
8693
|
/**
|
|
8703
8694
|
* The page number. Zero indicates no page.
|
|
8704
8695
|
* @type {number}
|
|
@@ -8717,6 +8708,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
|
8717
8708
|
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8718
8709
|
*/
|
|
8719
8710
|
readonly fieldSelector?: Array<string>;
|
|
8711
|
+
/**
|
|
8712
|
+
* Size of one page. Zero indicates no limit.
|
|
8713
|
+
* @type {number}
|
|
8714
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
8715
|
+
*/
|
|
8716
|
+
readonly size?: number;
|
|
8720
8717
|
}
|
|
8721
8718
|
/**
|
|
8722
8719
|
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
@@ -8885,14 +8882,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
|
|
|
8885
8882
|
/**
|
|
8886
8883
|
* List themes.
|
|
8887
8884
|
* @param {boolean} uninstalled
|
|
8888
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8889
8885
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8890
8886
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8891
8887
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8888
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8892
8889
|
* @param {*} [options] Override http request option.
|
|
8893
8890
|
* @throws {RequiredError}
|
|
8894
8891
|
*/
|
|
8895
|
-
listThemes: (uninstalled: boolean,
|
|
8892
|
+
listThemes: (uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8896
8893
|
/**
|
|
8897
8894
|
* Reload theme setting.
|
|
8898
8895
|
* @param {string} name
|
|
@@ -8924,14 +8921,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
|
|
|
8924
8921
|
/**
|
|
8925
8922
|
* List themes.
|
|
8926
8923
|
* @param {boolean} uninstalled
|
|
8927
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8928
8924
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8929
8925
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8930
8926
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8927
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8931
8928
|
* @param {*} [options] Override http request option.
|
|
8932
8929
|
* @throws {RequiredError}
|
|
8933
8930
|
*/
|
|
8934
|
-
listThemes(uninstalled: boolean,
|
|
8931
|
+
listThemes(uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
|
|
8935
8932
|
/**
|
|
8936
8933
|
* Reload theme setting.
|
|
8937
8934
|
* @param {string} name
|
|
@@ -8963,14 +8960,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
|
|
|
8963
8960
|
/**
|
|
8964
8961
|
* List themes.
|
|
8965
8962
|
* @param {boolean} uninstalled
|
|
8966
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8967
8963
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
8968
8964
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
8969
8965
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
8966
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
8970
8967
|
* @param {*} [options] Override http request option.
|
|
8971
8968
|
* @throws {RequiredError}
|
|
8972
8969
|
*/
|
|
8973
|
-
listThemes(uninstalled: boolean,
|
|
8970
|
+
listThemes(uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ThemeList>;
|
|
8974
8971
|
/**
|
|
8975
8972
|
* Reload theme setting.
|
|
8976
8973
|
* @param {string} name
|
|
@@ -9012,12 +9009,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9012
9009
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9013
9010
|
*/
|
|
9014
9011
|
readonly uninstalled: boolean;
|
|
9015
|
-
/**
|
|
9016
|
-
* Size of one page. Zero indicates no limit.
|
|
9017
|
-
* @type {number}
|
|
9018
|
-
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9019
|
-
*/
|
|
9020
|
-
readonly size?: number;
|
|
9021
9012
|
/**
|
|
9022
9013
|
* The page number. Zero indicates no page.
|
|
9023
9014
|
* @type {number}
|
|
@@ -9036,6 +9027,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
|
|
|
9036
9027
|
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9037
9028
|
*/
|
|
9038
9029
|
readonly fieldSelector?: Array<string>;
|
|
9030
|
+
/**
|
|
9031
|
+
* Size of one page. Zero indicates no limit.
|
|
9032
|
+
* @type {number}
|
|
9033
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
|
|
9034
|
+
*/
|
|
9035
|
+
readonly size?: number;
|
|
9039
9036
|
}
|
|
9040
9037
|
/**
|
|
9041
9038
|
* Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
@@ -9336,24 +9333,24 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
|
|
|
9336
9333
|
/**
|
|
9337
9334
|
* List comment replies.
|
|
9338
9335
|
* @param {string} name
|
|
9339
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9340
9336
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9337
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9341
9338
|
* @param {*} [options] Override http request option.
|
|
9342
9339
|
* @throws {RequiredError}
|
|
9343
9340
|
*/
|
|
9344
|
-
listCommentReplies: (name: string,
|
|
9341
|
+
listCommentReplies: (name: string, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9345
9342
|
/**
|
|
9346
9343
|
* List comments.
|
|
9344
|
+
* @param {string} kind The comment subject kind.
|
|
9347
9345
|
* @param {string} name The comment subject name.
|
|
9348
9346
|
* @param {string} version The comment subject version.
|
|
9349
|
-
* @param {string} kind The comment subject kind.
|
|
9350
9347
|
* @param {string} [group] The comment subject group.
|
|
9351
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9352
9348
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9349
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9353
9350
|
* @param {*} [options] Override http request option.
|
|
9354
9351
|
* @throws {RequiredError}
|
|
9355
9352
|
*/
|
|
9356
|
-
listComments1: (
|
|
9353
|
+
listComments1: (kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9357
9354
|
};
|
|
9358
9355
|
/**
|
|
9359
9356
|
* ApiHaloRunV1alpha1CommentApi - functional programming interface
|
|
@@ -9385,24 +9382,24 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
|
|
|
9385
9382
|
/**
|
|
9386
9383
|
* List comment replies.
|
|
9387
9384
|
* @param {string} name
|
|
9388
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9389
9385
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9386
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9390
9387
|
* @param {*} [options] Override http request option.
|
|
9391
9388
|
* @throws {RequiredError}
|
|
9392
9389
|
*/
|
|
9393
|
-
listCommentReplies(name: string,
|
|
9390
|
+
listCommentReplies(name: string, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
|
|
9394
9391
|
/**
|
|
9395
9392
|
* List comments.
|
|
9393
|
+
* @param {string} kind The comment subject kind.
|
|
9396
9394
|
* @param {string} name The comment subject name.
|
|
9397
9395
|
* @param {string} version The comment subject version.
|
|
9398
|
-
* @param {string} kind The comment subject kind.
|
|
9399
9396
|
* @param {string} [group] The comment subject group.
|
|
9400
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9401
9397
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9398
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9402
9399
|
* @param {*} [options] Override http request option.
|
|
9403
9400
|
* @throws {RequiredError}
|
|
9404
9401
|
*/
|
|
9405
|
-
listComments1(
|
|
9402
|
+
listComments1(kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
|
|
9406
9403
|
};
|
|
9407
9404
|
/**
|
|
9408
9405
|
* ApiHaloRunV1alpha1CommentApi - factory interface
|
|
@@ -9434,24 +9431,24 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
|
|
|
9434
9431
|
/**
|
|
9435
9432
|
* List comment replies.
|
|
9436
9433
|
* @param {string} name
|
|
9437
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9438
9434
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9435
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9439
9436
|
* @param {*} [options] Override http request option.
|
|
9440
9437
|
* @throws {RequiredError}
|
|
9441
9438
|
*/
|
|
9442
|
-
listCommentReplies(name: string,
|
|
9439
|
+
listCommentReplies(name: string, page?: number, size?: number, options?: any): AxiosPromise<ReplyVoList>;
|
|
9443
9440
|
/**
|
|
9444
9441
|
* List comments.
|
|
9442
|
+
* @param {string} kind The comment subject kind.
|
|
9445
9443
|
* @param {string} name The comment subject name.
|
|
9446
9444
|
* @param {string} version The comment subject version.
|
|
9447
|
-
* @param {string} kind The comment subject kind.
|
|
9448
9445
|
* @param {string} [group] The comment subject group.
|
|
9449
|
-
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9450
9446
|
* @param {number} [page] The page number. Zero indicates no page.
|
|
9447
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9451
9448
|
* @param {*} [options] Override http request option.
|
|
9452
9449
|
* @throws {RequiredError}
|
|
9453
9450
|
*/
|
|
9454
|
-
listComments1(
|
|
9451
|
+
listComments1(kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: any): AxiosPromise<CommentVoList>;
|
|
9455
9452
|
};
|
|
9456
9453
|
/**
|
|
9457
9454
|
* Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
@@ -9511,17 +9508,17 @@ interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
|
|
|
9511
9508
|
*/
|
|
9512
9509
|
readonly name: string;
|
|
9513
9510
|
/**
|
|
9514
|
-
*
|
|
9511
|
+
* The page number. Zero indicates no page.
|
|
9515
9512
|
* @type {number}
|
|
9516
9513
|
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
9517
9514
|
*/
|
|
9518
|
-
readonly
|
|
9515
|
+
readonly page?: number;
|
|
9519
9516
|
/**
|
|
9520
|
-
*
|
|
9517
|
+
* Size of one page. Zero indicates no limit.
|
|
9521
9518
|
* @type {number}
|
|
9522
9519
|
* @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
|
|
9523
9520
|
*/
|
|
9524
|
-
readonly
|
|
9521
|
+
readonly size?: number;
|
|
9525
9522
|
}
|
|
9526
9523
|
/**
|
|
9527
9524
|
* Request parameters for listComments1 operation in ApiHaloRunV1alpha1CommentApi.
|
|
@@ -9530,23 +9527,23 @@ interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
|
|
|
9530
9527
|
*/
|
|
9531
9528
|
interface ApiHaloRunV1alpha1CommentApiListComments1Request {
|
|
9532
9529
|
/**
|
|
9533
|
-
* The comment subject
|
|
9530
|
+
* The comment subject kind.
|
|
9534
9531
|
* @type {string}
|
|
9535
9532
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
9536
9533
|
*/
|
|
9537
|
-
readonly
|
|
9534
|
+
readonly kind: string;
|
|
9538
9535
|
/**
|
|
9539
|
-
* The comment subject
|
|
9536
|
+
* The comment subject name.
|
|
9540
9537
|
* @type {string}
|
|
9541
9538
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
9542
9539
|
*/
|
|
9543
|
-
readonly
|
|
9540
|
+
readonly name: string;
|
|
9544
9541
|
/**
|
|
9545
|
-
* The comment subject
|
|
9542
|
+
* The comment subject version.
|
|
9546
9543
|
* @type {string}
|
|
9547
9544
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
9548
9545
|
*/
|
|
9549
|
-
readonly
|
|
9546
|
+
readonly version: string;
|
|
9550
9547
|
/**
|
|
9551
9548
|
* The comment subject group.
|
|
9552
9549
|
* @type {string}
|
|
@@ -9554,17 +9551,17 @@ interface ApiHaloRunV1alpha1CommentApiListComments1Request {
|
|
|
9554
9551
|
*/
|
|
9555
9552
|
readonly group?: string;
|
|
9556
9553
|
/**
|
|
9557
|
-
*
|
|
9554
|
+
* The page number. Zero indicates no page.
|
|
9558
9555
|
* @type {number}
|
|
9559
9556
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
9560
9557
|
*/
|
|
9561
|
-
readonly
|
|
9558
|
+
readonly page?: number;
|
|
9562
9559
|
/**
|
|
9563
|
-
*
|
|
9560
|
+
* Size of one page. Zero indicates no limit.
|
|
9564
9561
|
* @type {number}
|
|
9565
9562
|
* @memberof ApiHaloRunV1alpha1CommentApiListComments1
|
|
9566
9563
|
*/
|
|
9567
|
-
readonly
|
|
9564
|
+
readonly size?: number;
|
|
9568
9565
|
}
|
|
9569
9566
|
/**
|
|
9570
9567
|
* ApiHaloRunV1alpha1CommentApi - object-oriented interface
|