@halo-dev/api-client 0.0.55 → 0.0.57

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.d.ts CHANGED
@@ -423,6 +423,12 @@ interface AttachmentList {
423
423
  * @memberof AttachmentList
424
424
  */
425
425
  last: boolean;
426
+ /**
427
+ * Indicates total pages.
428
+ * @type {number}
429
+ * @memberof AttachmentList
430
+ */
431
+ totalPages: number;
426
432
  /**
427
433
  * Indicates whether current page has previous page.
428
434
  * @type {boolean}
@@ -435,12 +441,6 @@ interface AttachmentList {
435
441
  * @memberof AttachmentList
436
442
  */
437
443
  hasPrevious: boolean;
438
- /**
439
- * Indicates total pages.
440
- * @type {number}
441
- * @memberof AttachmentList
442
- */
443
- totalPages: number;
444
444
  }
445
445
 
446
446
  /**
@@ -676,6 +676,12 @@ interface CategoryList {
676
676
  * @memberof CategoryList
677
677
  */
678
678
  last: boolean;
679
+ /**
680
+ * Indicates total pages.
681
+ * @type {number}
682
+ * @memberof CategoryList
683
+ */
684
+ totalPages: number;
679
685
  /**
680
686
  * Indicates whether current page has previous page.
681
687
  * @type {boolean}
@@ -688,12 +694,6 @@ interface CategoryList {
688
694
  * @memberof CategoryList
689
695
  */
690
696
  hasPrevious: boolean;
691
- /**
692
- * Indicates total pages.
693
- * @type {number}
694
- * @memberof CategoryList
695
- */
696
- totalPages: number;
697
697
  }
698
698
 
699
699
  /**
@@ -1054,6 +1054,12 @@ interface CommentList {
1054
1054
  * @memberof CommentList
1055
1055
  */
1056
1056
  last: boolean;
1057
+ /**
1058
+ * Indicates total pages.
1059
+ * @type {number}
1060
+ * @memberof CommentList
1061
+ */
1062
+ totalPages: number;
1057
1063
  /**
1058
1064
  * Indicates whether current page has previous page.
1059
1065
  * @type {boolean}
@@ -1066,12 +1072,6 @@ interface CommentList {
1066
1072
  * @memberof CommentList
1067
1073
  */
1068
1074
  hasPrevious: boolean;
1069
- /**
1070
- * Indicates total pages.
1071
- * @type {number}
1072
- * @memberof CommentList
1073
- */
1074
- totalPages: number;
1075
1075
  }
1076
1076
 
1077
1077
  /**
@@ -1271,6 +1271,12 @@ interface CommentVoList {
1271
1271
  * @memberof CommentVoList
1272
1272
  */
1273
1273
  last: boolean;
1274
+ /**
1275
+ * Indicates total pages.
1276
+ * @type {number}
1277
+ * @memberof CommentVoList
1278
+ */
1279
+ totalPages: number;
1274
1280
  /**
1275
1281
  * Indicates whether current page has previous page.
1276
1282
  * @type {boolean}
@@ -1283,12 +1289,6 @@ interface CommentVoList {
1283
1289
  * @memberof CommentVoList
1284
1290
  */
1285
1291
  hasPrevious: boolean;
1286
- /**
1287
- * Indicates total pages.
1288
- * @type {number}
1289
- * @memberof CommentVoList
1290
- */
1291
- totalPages: number;
1292
1292
  }
1293
1293
 
1294
1294
  /**
@@ -1446,6 +1446,12 @@ interface ConfigMapList {
1446
1446
  * @memberof ConfigMapList
1447
1447
  */
1448
1448
  last: boolean;
1449
+ /**
1450
+ * Indicates total pages.
1451
+ * @type {number}
1452
+ * @memberof ConfigMapList
1453
+ */
1454
+ totalPages: number;
1449
1455
  /**
1450
1456
  * Indicates whether current page has previous page.
1451
1457
  * @type {boolean}
@@ -1458,12 +1464,6 @@ interface ConfigMapList {
1458
1464
  * @memberof ConfigMapList
1459
1465
  */
1460
1466
  hasPrevious: boolean;
1461
- /**
1462
- * Indicates total pages.
1463
- * @type {number}
1464
- * @memberof ConfigMapList
1465
- */
1466
- totalPages: number;
1467
1467
  }
1468
1468
 
1469
1469
  /**
@@ -1755,6 +1755,12 @@ interface CounterList {
1755
1755
  * @memberof CounterList
1756
1756
  */
1757
1757
  last: boolean;
1758
+ /**
1759
+ * Indicates total pages.
1760
+ * @type {number}
1761
+ * @memberof CounterList
1762
+ */
1763
+ totalPages: number;
1758
1764
  /**
1759
1765
  * Indicates whether current page has previous page.
1760
1766
  * @type {boolean}
@@ -1767,12 +1773,6 @@ interface CounterList {
1767
1773
  * @memberof CounterList
1768
1774
  */
1769
1775
  hasPrevious: boolean;
1770
- /**
1771
- * Indicates total pages.
1772
- * @type {number}
1773
- * @memberof CounterList
1774
- */
1775
- totalPages: number;
1776
1776
  }
1777
1777
 
1778
1778
  /**
@@ -2026,19 +2026,19 @@ interface Extension {
2026
2026
  * @type {string}
2027
2027
  * @memberof Extension
2028
2028
  */
2029
- apiVersion: string;
2029
+ kind: string;
2030
2030
  /**
2031
2031
  *
2032
- * @type {string}
2032
+ * @type {Metadata}
2033
2033
  * @memberof Extension
2034
2034
  */
2035
- kind: string;
2035
+ metadata: Metadata;
2036
2036
  /**
2037
2037
  *
2038
- * @type {Metadata}
2038
+ * @type {string}
2039
2039
  * @memberof Extension
2040
2040
  */
2041
- metadata: Metadata;
2041
+ apiVersion: string;
2042
2042
  }
2043
2043
 
2044
2044
  /**
@@ -2257,6 +2257,12 @@ interface GroupList {
2257
2257
  * @memberof GroupList
2258
2258
  */
2259
2259
  last: boolean;
2260
+ /**
2261
+ * Indicates total pages.
2262
+ * @type {number}
2263
+ * @memberof GroupList
2264
+ */
2265
+ totalPages: number;
2260
2266
  /**
2261
2267
  * Indicates whether current page has previous page.
2262
2268
  * @type {boolean}
@@ -2269,12 +2275,6 @@ interface GroupList {
2269
2275
  * @memberof GroupList
2270
2276
  */
2271
2277
  hasPrevious: boolean;
2272
- /**
2273
- * Indicates total pages.
2274
- * @type {number}
2275
- * @memberof GroupList
2276
- */
2277
- totalPages: number;
2278
2278
  }
2279
2279
 
2280
2280
  /**
@@ -2400,6 +2400,12 @@ interface ListedCommentList {
2400
2400
  * @memberof ListedCommentList
2401
2401
  */
2402
2402
  last: boolean;
2403
+ /**
2404
+ * Indicates total pages.
2405
+ * @type {number}
2406
+ * @memberof ListedCommentList
2407
+ */
2408
+ totalPages: number;
2403
2409
  /**
2404
2410
  * Indicates whether current page has previous page.
2405
2411
  * @type {boolean}
@@ -2412,12 +2418,6 @@ interface ListedCommentList {
2412
2418
  * @memberof ListedCommentList
2413
2419
  */
2414
2420
  hasPrevious: boolean;
2415
- /**
2416
- * Indicates total pages.
2417
- * @type {number}
2418
- * @memberof ListedCommentList
2419
- */
2420
- totalPages: number;
2421
2421
  }
2422
2422
 
2423
2423
  /**
@@ -2957,6 +2957,12 @@ interface ListedPostList {
2957
2957
  * @memberof ListedPostList
2958
2958
  */
2959
2959
  last: boolean;
2960
+ /**
2961
+ * Indicates total pages.
2962
+ * @type {number}
2963
+ * @memberof ListedPostList
2964
+ */
2965
+ totalPages: number;
2960
2966
  /**
2961
2967
  * Indicates whether current page has previous page.
2962
2968
  * @type {boolean}
@@ -2969,12 +2975,6 @@ interface ListedPostList {
2969
2975
  * @memberof ListedPostList
2970
2976
  */
2971
2977
  hasPrevious: boolean;
2972
- /**
2973
- * Indicates total pages.
2974
- * @type {number}
2975
- * @memberof ListedPostList
2976
- */
2977
- totalPages: number;
2978
2978
  }
2979
2979
 
2980
2980
  /**
@@ -3205,6 +3205,12 @@ interface ListedReplyList {
3205
3205
  * @memberof ListedReplyList
3206
3206
  */
3207
3207
  last: boolean;
3208
+ /**
3209
+ * Indicates total pages.
3210
+ * @type {number}
3211
+ * @memberof ListedReplyList
3212
+ */
3213
+ totalPages: number;
3208
3214
  /**
3209
3215
  * Indicates whether current page has previous page.
3210
3216
  * @type {boolean}
@@ -3217,12 +3223,6 @@ interface ListedReplyList {
3217
3223
  * @memberof ListedReplyList
3218
3224
  */
3219
3225
  hasPrevious: boolean;
3220
- /**
3221
- * Indicates total pages.
3222
- * @type {number}
3223
- * @memberof ListedReplyList
3224
- */
3225
- totalPages: number;
3226
3226
  }
3227
3227
 
3228
3228
  /**
@@ -3565,6 +3565,12 @@ interface ListedSinglePageList {
3565
3565
  * @memberof ListedSinglePageList
3566
3566
  */
3567
3567
  last: boolean;
3568
+ /**
3569
+ * Indicates total pages.
3570
+ * @type {number}
3571
+ * @memberof ListedSinglePageList
3572
+ */
3573
+ totalPages: number;
3568
3574
  /**
3569
3575
  * Indicates whether current page has previous page.
3570
3576
  * @type {boolean}
@@ -3577,12 +3583,6 @@ interface ListedSinglePageList {
3577
3583
  * @memberof ListedSinglePageList
3578
3584
  */
3579
3585
  hasPrevious: boolean;
3580
- /**
3581
- * Indicates total pages.
3582
- * @type {number}
3583
- * @memberof ListedSinglePageList
3584
- */
3585
- totalPages: number;
3586
3586
  }
3587
3587
 
3588
3588
  /**
@@ -3756,25 +3756,7 @@ interface MenuItemSpec {
3756
3756
  * @type {Ref}
3757
3757
  * @memberof MenuItemSpec
3758
3758
  */
3759
- categoryRef?: Ref;
3760
- /**
3761
- *
3762
- * @type {Ref}
3763
- * @memberof MenuItemSpec
3764
- */
3765
- tagRef?: Ref;
3766
- /**
3767
- *
3768
- * @type {Ref}
3769
- * @memberof MenuItemSpec
3770
- */
3771
- postRef?: Ref;
3772
- /**
3773
- *
3774
- * @type {Ref}
3775
- * @memberof MenuItemSpec
3776
- */
3777
- singlePageRef?: Ref;
3759
+ targetRef?: Ref;
3778
3760
  }
3779
3761
 
3780
3762
  /**
@@ -3912,6 +3894,12 @@ interface MenuItemList {
3912
3894
  * @memberof MenuItemList
3913
3895
  */
3914
3896
  last: boolean;
3897
+ /**
3898
+ * Indicates total pages.
3899
+ * @type {number}
3900
+ * @memberof MenuItemList
3901
+ */
3902
+ totalPages: number;
3915
3903
  /**
3916
3904
  * Indicates whether current page has previous page.
3917
3905
  * @type {boolean}
@@ -3924,12 +3912,6 @@ interface MenuItemList {
3924
3912
  * @memberof MenuItemList
3925
3913
  */
3926
3914
  hasPrevious: boolean;
3927
- /**
3928
- * Indicates total pages.
3929
- * @type {number}
3930
- * @memberof MenuItemList
3931
- */
3932
- totalPages: number;
3933
3915
  }
3934
3916
 
3935
3917
  /**
@@ -3986,6 +3968,12 @@ interface MenuList {
3986
3968
  * @memberof MenuList
3987
3969
  */
3988
3970
  last: boolean;
3971
+ /**
3972
+ * Indicates total pages.
3973
+ * @type {number}
3974
+ * @memberof MenuList
3975
+ */
3976
+ totalPages: number;
3989
3977
  /**
3990
3978
  * Indicates whether current page has previous page.
3991
3979
  * @type {boolean}
@@ -3998,12 +3986,6 @@ interface MenuList {
3998
3986
  * @memberof MenuList
3999
3987
  */
4000
3988
  hasPrevious: boolean;
4001
- /**
4002
- * Indicates total pages.
4003
- * @type {number}
4004
- * @memberof MenuList
4005
- */
4006
- totalPages: number;
4007
3989
  }
4008
3990
 
4009
3991
  /**
@@ -4159,6 +4141,12 @@ interface PersonalAccessTokenList {
4159
4141
  * @memberof PersonalAccessTokenList
4160
4142
  */
4161
4143
  last: boolean;
4144
+ /**
4145
+ * Indicates total pages.
4146
+ * @type {number}
4147
+ * @memberof PersonalAccessTokenList
4148
+ */
4149
+ totalPages: number;
4162
4150
  /**
4163
4151
  * Indicates whether current page has previous page.
4164
4152
  * @type {boolean}
@@ -4171,12 +4159,6 @@ interface PersonalAccessTokenList {
4171
4159
  * @memberof PersonalAccessTokenList
4172
4160
  */
4173
4161
  hasPrevious: boolean;
4174
- /**
4175
- * Indicates total pages.
4176
- * @type {number}
4177
- * @memberof PersonalAccessTokenList
4178
- */
4179
- totalPages: number;
4180
4162
  }
4181
4163
 
4182
4164
  /**
@@ -4460,6 +4442,12 @@ interface PluginList {
4460
4442
  * @memberof PluginList
4461
4443
  */
4462
4444
  last: boolean;
4445
+ /**
4446
+ * Indicates total pages.
4447
+ * @type {number}
4448
+ * @memberof PluginList
4449
+ */
4450
+ totalPages: number;
4463
4451
  /**
4464
4452
  * Indicates whether current page has previous page.
4465
4453
  * @type {boolean}
@@ -4472,12 +4460,6 @@ interface PluginList {
4472
4460
  * @memberof PluginList
4473
4461
  */
4474
4462
  hasPrevious: boolean;
4475
- /**
4476
- * Indicates total pages.
4477
- * @type {number}
4478
- * @memberof PluginList
4479
- */
4480
- totalPages: number;
4481
4463
  }
4482
4464
 
4483
4465
  /**
@@ -4616,6 +4598,12 @@ interface PolicyList {
4616
4598
  * @memberof PolicyList
4617
4599
  */
4618
4600
  last: boolean;
4601
+ /**
4602
+ * Indicates total pages.
4603
+ * @type {number}
4604
+ * @memberof PolicyList
4605
+ */
4606
+ totalPages: number;
4619
4607
  /**
4620
4608
  * Indicates whether current page has previous page.
4621
4609
  * @type {boolean}
@@ -4628,12 +4616,6 @@ interface PolicyList {
4628
4616
  * @memberof PolicyList
4629
4617
  */
4630
4618
  hasPrevious: boolean;
4631
- /**
4632
- * Indicates total pages.
4633
- * @type {number}
4634
- * @memberof PolicyList
4635
- */
4636
- totalPages: number;
4637
4619
  }
4638
4620
 
4639
4621
  /**
@@ -4815,6 +4797,12 @@ interface PolicyTemplateList {
4815
4797
  * @memberof PolicyTemplateList
4816
4798
  */
4817
4799
  last: boolean;
4800
+ /**
4801
+ * Indicates total pages.
4802
+ * @type {number}
4803
+ * @memberof PolicyTemplateList
4804
+ */
4805
+ totalPages: number;
4818
4806
  /**
4819
4807
  * Indicates whether current page has previous page.
4820
4808
  * @type {boolean}
@@ -4827,12 +4815,6 @@ interface PolicyTemplateList {
4827
4815
  * @memberof PolicyTemplateList
4828
4816
  */
4829
4817
  hasPrevious: boolean;
4830
- /**
4831
- * Indicates total pages.
4832
- * @type {number}
4833
- * @memberof PolicyTemplateList
4834
- */
4835
- totalPages: number;
4836
4818
  }
4837
4819
 
4838
4820
  /**
@@ -4988,6 +4970,12 @@ interface PostList {
4988
4970
  * @memberof PostList
4989
4971
  */
4990
4972
  last: boolean;
4973
+ /**
4974
+ * Indicates total pages.
4975
+ * @type {number}
4976
+ * @memberof PostList
4977
+ */
4978
+ totalPages: number;
4991
4979
  /**
4992
4980
  * Indicates whether current page has previous page.
4993
4981
  * @type {boolean}
@@ -5000,12 +4988,6 @@ interface PostList {
5000
4988
  * @memberof PostList
5001
4989
  */
5002
4990
  hasPrevious: boolean;
5003
- /**
5004
- * Indicates total pages.
5005
- * @type {number}
5006
- * @memberof PostList
5007
- */
5008
- totalPages: number;
5009
4991
  }
5010
4992
 
5011
4993
  /**
@@ -5094,6 +5076,12 @@ interface ReplyList {
5094
5076
  * @memberof ReplyList
5095
5077
  */
5096
5078
  last: boolean;
5079
+ /**
5080
+ * Indicates total pages.
5081
+ * @type {number}
5082
+ * @memberof ReplyList
5083
+ */
5084
+ totalPages: number;
5097
5085
  /**
5098
5086
  * Indicates whether current page has previous page.
5099
5087
  * @type {boolean}
@@ -5106,12 +5094,6 @@ interface ReplyList {
5106
5094
  * @memberof ReplyList
5107
5095
  */
5108
5096
  hasPrevious: boolean;
5109
- /**
5110
- * Indicates total pages.
5111
- * @type {number}
5112
- * @memberof ReplyList
5113
- */
5114
- totalPages: number;
5115
5097
  }
5116
5098
 
5117
5099
  /**
@@ -5257,23 +5239,23 @@ interface ReplyVoList {
5257
5239
  */
5258
5240
  last: boolean;
5259
5241
  /**
5260
- * Indicates whether current page has previous page.
5261
- * @type {boolean}
5262
- * @memberof ReplyVoList
5242
+ * Indicates total pages.
5243
+ * @type {number}
5244
+ * @memberof ReplyVoList
5263
5245
  */
5264
- hasNext: boolean;
5246
+ totalPages: number;
5265
5247
  /**
5266
5248
  * Indicates whether current page has previous page.
5267
5249
  * @type {boolean}
5268
5250
  * @memberof ReplyVoList
5269
5251
  */
5270
- hasPrevious: boolean;
5252
+ hasNext: boolean;
5271
5253
  /**
5272
- * Indicates total pages.
5273
- * @type {number}
5254
+ * Indicates whether current page has previous page.
5255
+ * @type {boolean}
5274
5256
  * @memberof ReplyVoList
5275
5257
  */
5276
- totalPages: number;
5258
+ hasPrevious: boolean;
5277
5259
  }
5278
5260
 
5279
5261
  /**
@@ -5406,6 +5388,12 @@ interface ReverseProxyList {
5406
5388
  * @memberof ReverseProxyList
5407
5389
  */
5408
5390
  last: boolean;
5391
+ /**
5392
+ * Indicates total pages.
5393
+ * @type {number}
5394
+ * @memberof ReverseProxyList
5395
+ */
5396
+ totalPages: number;
5409
5397
  /**
5410
5398
  * Indicates whether current page has previous page.
5411
5399
  * @type {boolean}
@@ -5418,12 +5406,6 @@ interface ReverseProxyList {
5418
5406
  * @memberof ReverseProxyList
5419
5407
  */
5420
5408
  hasPrevious: boolean;
5421
- /**
5422
- * Indicates total pages.
5423
- * @type {number}
5424
- * @memberof ReverseProxyList
5425
- */
5426
- totalPages: number;
5427
5409
  }
5428
5410
 
5429
5411
  /**
@@ -5648,6 +5630,12 @@ interface RoleBindingList {
5648
5630
  * @memberof RoleBindingList
5649
5631
  */
5650
5632
  last: boolean;
5633
+ /**
5634
+ * Indicates total pages.
5635
+ * @type {number}
5636
+ * @memberof RoleBindingList
5637
+ */
5638
+ totalPages: number;
5651
5639
  /**
5652
5640
  * Indicates whether current page has previous page.
5653
5641
  * @type {boolean}
@@ -5660,12 +5648,6 @@ interface RoleBindingList {
5660
5648
  * @memberof RoleBindingList
5661
5649
  */
5662
5650
  hasPrevious: boolean;
5663
- /**
5664
- * Indicates total pages.
5665
- * @type {number}
5666
- * @memberof RoleBindingList
5667
- */
5668
- totalPages: number;
5669
5651
  }
5670
5652
 
5671
5653
  /**
@@ -5722,6 +5704,12 @@ interface RoleList {
5722
5704
  * @memberof RoleList
5723
5705
  */
5724
5706
  last: boolean;
5707
+ /**
5708
+ * Indicates total pages.
5709
+ * @type {number}
5710
+ * @memberof RoleList
5711
+ */
5712
+ totalPages: number;
5725
5713
  /**
5726
5714
  * Indicates whether current page has previous page.
5727
5715
  * @type {boolean}
@@ -5734,12 +5722,6 @@ interface RoleList {
5734
5722
  * @memberof RoleList
5735
5723
  */
5736
5724
  hasPrevious: boolean;
5737
- /**
5738
- * Indicates total pages.
5739
- * @type {number}
5740
- * @memberof RoleList
5741
- */
5742
- totalPages: number;
5743
5725
  }
5744
5726
 
5745
5727
  /**
@@ -5896,6 +5878,12 @@ interface SearchEngineList {
5896
5878
  * @memberof SearchEngineList
5897
5879
  */
5898
5880
  last: boolean;
5881
+ /**
5882
+ * Indicates total pages.
5883
+ * @type {number}
5884
+ * @memberof SearchEngineList
5885
+ */
5886
+ totalPages: number;
5899
5887
  /**
5900
5888
  * Indicates whether current page has previous page.
5901
5889
  * @type {boolean}
@@ -5908,12 +5896,6 @@ interface SearchEngineList {
5908
5896
  * @memberof SearchEngineList
5909
5897
  */
5910
5898
  hasPrevious: boolean;
5911
- /**
5912
- * Indicates total pages.
5913
- * @type {number}
5914
- * @memberof SearchEngineList
5915
- */
5916
- totalPages: number;
5917
5899
  }
5918
5900
 
5919
5901
  /**
@@ -6077,6 +6059,12 @@ interface SettingList {
6077
6059
  * @memberof SettingList
6078
6060
  */
6079
6061
  last: boolean;
6062
+ /**
6063
+ * Indicates total pages.
6064
+ * @type {number}
6065
+ * @memberof SettingList
6066
+ */
6067
+ totalPages: number;
6080
6068
  /**
6081
6069
  * Indicates whether current page has previous page.
6082
6070
  * @type {boolean}
@@ -6089,12 +6077,6 @@ interface SettingList {
6089
6077
  * @memberof SettingList
6090
6078
  */
6091
6079
  hasPrevious: boolean;
6092
- /**
6093
- * Indicates total pages.
6094
- * @type {number}
6095
- * @memberof SettingList
6096
- */
6097
- totalPages: number;
6098
6080
  }
6099
6081
 
6100
6082
  /**
@@ -6151,6 +6133,12 @@ interface SinglePageList {
6151
6133
  * @memberof SinglePageList
6152
6134
  */
6153
6135
  last: boolean;
6136
+ /**
6137
+ * Indicates total pages.
6138
+ * @type {number}
6139
+ * @memberof SinglePageList
6140
+ */
6141
+ totalPages: number;
6154
6142
  /**
6155
6143
  * Indicates whether current page has previous page.
6156
6144
  * @type {boolean}
@@ -6163,12 +6151,6 @@ interface SinglePageList {
6163
6151
  * @memberof SinglePageList
6164
6152
  */
6165
6153
  hasPrevious: boolean;
6166
- /**
6167
- * Indicates total pages.
6168
- * @type {number}
6169
- * @memberof SinglePageList
6170
- */
6171
- totalPages: number;
6172
6154
  }
6173
6155
 
6174
6156
  /**
@@ -6369,6 +6351,12 @@ interface SnapshotList {
6369
6351
  * @memberof SnapshotList
6370
6352
  */
6371
6353
  last: boolean;
6354
+ /**
6355
+ * Indicates total pages.
6356
+ * @type {number}
6357
+ * @memberof SnapshotList
6358
+ */
6359
+ totalPages: number;
6372
6360
  /**
6373
6361
  * Indicates whether current page has previous page.
6374
6362
  * @type {boolean}
@@ -6381,12 +6369,6 @@ interface SnapshotList {
6381
6369
  * @memberof SnapshotList
6382
6370
  */
6383
6371
  hasPrevious: boolean;
6384
- /**
6385
- * Indicates total pages.
6386
- * @type {number}
6387
- * @memberof SnapshotList
6388
- */
6389
- totalPages: number;
6390
6372
  }
6391
6373
 
6392
6374
  /**
@@ -6443,6 +6425,12 @@ interface TagList {
6443
6425
  * @memberof TagList
6444
6426
  */
6445
6427
  last: boolean;
6428
+ /**
6429
+ * Indicates total pages.
6430
+ * @type {number}
6431
+ * @memberof TagList
6432
+ */
6433
+ totalPages: number;
6446
6434
  /**
6447
6435
  * Indicates whether current page has previous page.
6448
6436
  * @type {boolean}
@@ -6455,12 +6443,6 @@ interface TagList {
6455
6443
  * @memberof TagList
6456
6444
  */
6457
6445
  hasPrevious: boolean;
6458
- /**
6459
- * Indicates total pages.
6460
- * @type {number}
6461
- * @memberof TagList
6462
- */
6463
- totalPages: number;
6464
6446
  }
6465
6447
 
6466
6448
  /**
@@ -6678,6 +6660,12 @@ interface ThemeList {
6678
6660
  * @memberof ThemeList
6679
6661
  */
6680
6662
  last: boolean;
6663
+ /**
6664
+ * Indicates total pages.
6665
+ * @type {number}
6666
+ * @memberof ThemeList
6667
+ */
6668
+ totalPages: number;
6681
6669
  /**
6682
6670
  * Indicates whether current page has previous page.
6683
6671
  * @type {boolean}
@@ -6690,12 +6678,6 @@ interface ThemeList {
6690
6678
  * @memberof ThemeList
6691
6679
  */
6692
6680
  hasPrevious: boolean;
6693
- /**
6694
- * Indicates total pages.
6695
- * @type {number}
6696
- * @memberof ThemeList
6697
- */
6698
- totalPages: number;
6699
6681
  }
6700
6682
 
6701
6683
  /**
@@ -6913,6 +6895,12 @@ interface UserList {
6913
6895
  * @memberof UserList
6914
6896
  */
6915
6897
  last: boolean;
6898
+ /**
6899
+ * Indicates total pages.
6900
+ * @type {number}
6901
+ * @memberof UserList
6902
+ */
6903
+ totalPages: number;
6916
6904
  /**
6917
6905
  * Indicates whether current page has previous page.
6918
6906
  * @type {boolean}
@@ -6925,12 +6913,6 @@ interface UserList {
6925
6913
  * @memberof UserList
6926
6914
  */
6927
6915
  hasPrevious: boolean;
6928
- /**
6929
- * Indicates total pages.
6930
- * @type {number}
6931
- * @memberof UserList
6932
- */
6933
- totalPages: number;
6934
6916
  }
6935
6917
 
6936
6918
  /**
@@ -7009,29 +6991,29 @@ interface VoteRequest {
7009
6991
  declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configuration?: Configuration) => {
7010
6992
  /**
7011
6993
  *
6994
+ * @param {string} [group] Name of group
6995
+ * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
6996
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
7012
6997
  * @param {string} [policy] Name of policy
7013
6998
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7014
6999
  * @param {string} [displayName] Display name of attachment
7015
- * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7016
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
7017
- * @param {string} [group] Name of group
7018
- * @param {number} [size] Size of one page. Zero indicates no limit.
7019
7000
  * @param {number} [page] The page number. Zero indicates no page.
7020
7001
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7021
7002
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7003
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7022
7004
  * @param {*} [options] Override http request option.
7023
7005
  * @throws {RequiredError}
7024
7006
  */
7025
- searchAttachments: (policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7007
+ searchAttachments: (group?: string, ungrouped?: boolean, uploadedBy?: string, policy?: string, sort?: Array<string>, displayName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7026
7008
  /**
7027
7009
  *
7028
- * @param {any} file
7029
7010
  * @param {string} policyName Storage policy name
7011
+ * @param {any} file
7030
7012
  * @param {string} [groupName] The name of the group to which the attachment belongs
7031
7013
  * @param {*} [options] Override http request option.
7032
7014
  * @throws {RequiredError}
7033
7015
  */
7034
- uploadAttachment: (file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7016
+ uploadAttachment: (policyName: string, file: any, groupName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7035
7017
  };
7036
7018
  /**
7037
7019
  * ApiConsoleHaloRunV1alpha1AttachmentApi - functional programming interface
@@ -7040,29 +7022,29 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configur
7040
7022
  declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configuration) => {
7041
7023
  /**
7042
7024
  *
7025
+ * @param {string} [group] Name of group
7026
+ * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7027
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
7043
7028
  * @param {string} [policy] Name of policy
7044
7029
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7045
7030
  * @param {string} [displayName] Display name of attachment
7046
- * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7047
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
7048
- * @param {string} [group] Name of group
7049
- * @param {number} [size] Size of one page. Zero indicates no limit.
7050
7031
  * @param {number} [page] The page number. Zero indicates no page.
7051
7032
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7052
7033
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7034
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7053
7035
  * @param {*} [options] Override http request option.
7054
7036
  * @throws {RequiredError}
7055
7037
  */
7056
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
7038
+ searchAttachments(group?: string, ungrouped?: boolean, uploadedBy?: string, policy?: 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
7039
  /**
7058
7040
  *
7059
- * @param {any} file
7060
7041
  * @param {string} policyName Storage policy name
7042
+ * @param {any} file
7061
7043
  * @param {string} [groupName] The name of the group to which the attachment belongs
7062
7044
  * @param {*} [options] Override http request option.
7063
7045
  * @throws {RequiredError}
7064
7046
  */
7065
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
7047
+ uploadAttachment(policyName: string, file: any, groupName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Attachment>>;
7066
7048
  };
7067
7049
  /**
7068
7050
  * ApiConsoleHaloRunV1alpha1AttachmentApi - factory interface
@@ -7071,29 +7053,29 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFp: (configuration?: Configu
7071
7053
  declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
7072
7054
  /**
7073
7055
  *
7056
+ * @param {string} [group] Name of group
7057
+ * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7058
+ * @param {string} [uploadedBy] Name of user who uploaded the attachment
7074
7059
  * @param {string} [policy] Name of policy
7075
7060
  * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp, size
7076
7061
  * @param {string} [displayName] Display name of attachment
7077
- * @param {boolean} [ungrouped] Filter attachments without group. This parameter will ignore group parameter.
7078
- * @param {string} [uploadedBy] Name of user who uploaded the attachment
7079
- * @param {string} [group] Name of group
7080
- * @param {number} [size] Size of one page. Zero indicates no limit.
7081
7062
  * @param {number} [page] The page number. Zero indicates no page.
7082
7063
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7083
7064
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7065
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7084
7066
  * @param {*} [options] Override http request option.
7085
7067
  * @throws {RequiredError}
7086
7068
  */
7087
- searchAttachments(policy?: string, sort?: Array<string>, displayName?: string, ungrouped?: boolean, uploadedBy?: string, group?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AttachmentList>;
7069
+ searchAttachments(group?: string, ungrouped?: boolean, uploadedBy?: string, policy?: string, sort?: Array<string>, displayName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<AttachmentList>;
7088
7070
  /**
7089
7071
  *
7090
- * @param {any} file
7091
7072
  * @param {string} policyName Storage policy name
7073
+ * @param {any} file
7092
7074
  * @param {string} [groupName] The name of the group to which the attachment belongs
7093
7075
  * @param {*} [options] Override http request option.
7094
7076
  * @throws {RequiredError}
7095
7077
  */
7096
- uploadAttachment(file: any, policyName: string, groupName?: string, options?: any): AxiosPromise<Attachment>;
7078
+ uploadAttachment(policyName: string, file: any, groupName?: string, options?: any): AxiosPromise<Attachment>;
7097
7079
  };
7098
7080
  /**
7099
7081
  * Request parameters for searchAttachments operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
@@ -7102,23 +7084,11 @@ declare const ApiConsoleHaloRunV1alpha1AttachmentApiFactory: (configuration?: Co
7102
7084
  */
7103
7085
  interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7104
7086
  /**
7105
- * Name of policy
7106
- * @type {string}
7107
- * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7108
- */
7109
- readonly policy?: string;
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>;
7116
- /**
7117
- * Display name of attachment
7087
+ * Name of group
7118
7088
  * @type {string}
7119
7089
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7120
7090
  */
7121
- readonly displayName?: string;
7091
+ readonly group?: string;
7122
7092
  /**
7123
7093
  * Filter attachments without group. This parameter will ignore group parameter.
7124
7094
  * @type {boolean}
@@ -7132,17 +7102,23 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7132
7102
  */
7133
7103
  readonly uploadedBy?: string;
7134
7104
  /**
7135
- * Name of group
7105
+ * Name of policy
7136
7106
  * @type {string}
7137
7107
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7138
7108
  */
7139
- readonly group?: string;
7109
+ readonly policy?: string;
7140
7110
  /**
7141
- * Size of one page. Zero indicates no limit.
7142
- * @type {number}
7111
+ * Sort property and direction of the list result. Supported fields: creationTimestamp, size
7112
+ * @type {Array<string>}
7143
7113
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7144
7114
  */
7145
- readonly size?: number;
7115
+ readonly sort?: Array<string>;
7116
+ /**
7117
+ * Display name of attachment
7118
+ * @type {string}
7119
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7120
+ */
7121
+ readonly displayName?: string;
7146
7122
  /**
7147
7123
  * The page number. Zero indicates no page.
7148
7124
  * @type {number}
@@ -7161,6 +7137,12 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7161
7137
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7162
7138
  */
7163
7139
  readonly fieldSelector?: Array<string>;
7140
+ /**
7141
+ * Size of one page. Zero indicates no limit.
7142
+ * @type {number}
7143
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachments
7144
+ */
7145
+ readonly size?: number;
7164
7146
  }
7165
7147
  /**
7166
7148
  * Request parameters for uploadAttachment operation in ApiConsoleHaloRunV1alpha1AttachmentApi.
@@ -7168,18 +7150,18 @@ interface ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
7168
7150
  * @interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest
7169
7151
  */
7170
7152
  interface ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest {
7171
- /**
7172
- *
7173
- * @type {any}
7174
- * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
7175
- */
7176
- readonly file: any;
7177
7153
  /**
7178
7154
  * Storage policy name
7179
7155
  * @type {string}
7180
7156
  * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
7181
7157
  */
7182
7158
  readonly policyName: string;
7159
+ /**
7160
+ *
7161
+ * @type {any}
7162
+ * @memberof ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachment
7163
+ */
7164
+ readonly file: any;
7183
7165
  /**
7184
7166
  * The name of the group to which the attachment belongs
7185
7167
  * @type {string}
@@ -7234,25 +7216,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configurati
7234
7216
  createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7235
7217
  /**
7236
7218
  * List comments.
7237
- * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7219
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7238
7220
  * @param {string} [keyword] Comments filtered by keyword.
7221
+ * @param {boolean} [approved] Comments approved.
7239
7222
  * @param {boolean} [hidden] The comment is hidden from the theme side.
7240
7223
  * @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
7224
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
7244
7225
  * @param {string} [ownerKind] Commenter kind.
7245
7226
  * @param {string} [ownerName] Commenter name.
7246
7227
  * @param {string} [subjectKind] Comment subject kind.
7247
7228
  * @param {string} [subjectName] Comment subject name.
7248
- * @param {number} [size] Size of one page. Zero indicates no limit.
7229
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7249
7230
  * @param {number} [page] The page number. Zero indicates no page.
7250
7231
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7251
7232
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7233
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7252
7234
  * @param {*} [options] Override http request option.
7253
7235
  * @throws {RequiredError}
7254
7236
  */
7255
- listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7237
+ 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
7238
  };
7257
7239
  /**
7258
7240
  * ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
@@ -7276,25 +7258,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configurat
7276
7258
  createReply(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
7277
7259
  /**
7278
7260
  * List comments.
7279
- * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7261
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7280
7262
  * @param {string} [keyword] Comments filtered by keyword.
7263
+ * @param {boolean} [approved] Comments approved.
7281
7264
  * @param {boolean} [hidden] The comment is hidden from the theme side.
7282
7265
  * @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
7266
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
7286
7267
  * @param {string} [ownerKind] Commenter kind.
7287
7268
  * @param {string} [ownerName] Commenter name.
7288
7269
  * @param {string} [subjectKind] Comment subject kind.
7289
7270
  * @param {string} [subjectName] Comment subject name.
7290
- * @param {number} [size] Size of one page. Zero indicates no limit.
7271
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7291
7272
  * @param {number} [page] The page number. Zero indicates no page.
7292
7273
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7293
7274
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7275
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7294
7276
  * @param {*} [options] Override http request option.
7295
7277
  * @throws {RequiredError}
7296
7278
  */
7297
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
7279
+ 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
7280
  };
7299
7281
  /**
7300
7282
  * ApiConsoleHaloRunV1alpha1CommentApi - factory interface
@@ -7318,25 +7300,25 @@ declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Confi
7318
7300
  createReply(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
7319
7301
  /**
7320
7302
  * List comments.
7321
- * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7303
+ * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7322
7304
  * @param {string} [keyword] Comments filtered by keyword.
7305
+ * @param {boolean} [approved] Comments approved.
7323
7306
  * @param {boolean} [hidden] The comment is hidden from the theme side.
7324
7307
  * @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
7308
  * @param {boolean} [allowNotification] Send notifications when there are new replies.
7328
7309
  * @param {string} [ownerKind] Commenter kind.
7329
7310
  * @param {string} [ownerName] Commenter name.
7330
7311
  * @param {string} [subjectKind] Comment subject kind.
7331
7312
  * @param {string} [subjectName] Comment subject name.
7332
- * @param {number} [size] Size of one page. Zero indicates no limit.
7313
+ * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
7333
7314
  * @param {number} [page] The page number. Zero indicates no page.
7334
7315
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7335
7316
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7317
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7336
7318
  * @param {*} [options] Override http request option.
7337
7319
  * @throws {RequiredError}
7338
7320
  */
7339
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', keyword?: string, hidden?: boolean, top?: boolean, sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedCommentList>;
7321
+ 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
7322
  };
7341
7323
  /**
7342
7324
  * Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
@@ -7377,17 +7359,23 @@ interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest {
7377
7359
  */
7378
7360
  interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7379
7361
  /**
7380
- * Comment collation.
7381
- * @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
7362
+ * ascending order If it is true; otherwise, it is in descending order.
7363
+ * @type {boolean}
7382
7364
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7383
7365
  */
7384
- readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
7366
+ readonly sortOrder?: boolean;
7385
7367
  /**
7386
7368
  * Comments filtered by keyword.
7387
7369
  * @type {string}
7388
7370
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7389
7371
  */
7390
7372
  readonly keyword?: string;
7373
+ /**
7374
+ * Comments approved.
7375
+ * @type {boolean}
7376
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7377
+ */
7378
+ readonly approved?: boolean;
7391
7379
  /**
7392
7380
  * The comment is hidden from the theme side.
7393
7381
  * @type {boolean}
@@ -7401,23 +7389,11 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7401
7389
  */
7402
7390
  readonly top?: boolean;
7403
7391
  /**
7404
- * ascending order If it is true; otherwise, it is in descending order.
7392
+ * Send notifications when there are new replies.
7405
7393
  * @type {boolean}
7406
7394
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7407
7395
  */
7408
- readonly sortOrder?: boolean;
7409
- /**
7410
- * Comments approved.
7411
- * @type {boolean}
7412
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7413
- */
7414
- readonly approved?: boolean;
7415
- /**
7416
- * Send notifications when there are new replies.
7417
- * @type {boolean}
7418
- * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7419
- */
7420
- readonly allowNotification?: boolean;
7396
+ readonly allowNotification?: boolean;
7421
7397
  /**
7422
7398
  * Commenter kind.
7423
7399
  * @type {string}
@@ -7443,11 +7419,11 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7443
7419
  */
7444
7420
  readonly subjectName?: string;
7445
7421
  /**
7446
- * Size of one page. Zero indicates no limit.
7447
- * @type {number}
7422
+ * Comment collation.
7423
+ * @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
7448
7424
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7449
7425
  */
7450
- readonly size?: number;
7426
+ readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
7451
7427
  /**
7452
7428
  * The page number. Zero indicates no page.
7453
7429
  * @type {number}
@@ -7466,6 +7442,12 @@ interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
7466
7442
  * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7467
7443
  */
7468
7444
  readonly fieldSelector?: Array<string>;
7445
+ /**
7446
+ * Size of one page. Zero indicates no limit.
7447
+ * @type {number}
7448
+ * @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
7449
+ */
7450
+ readonly size?: number;
7469
7451
  }
7470
7452
  /**
7471
7453
  * ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
@@ -7728,17 +7710,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuratio
7728
7710
  installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7729
7711
  /**
7730
7712
  * 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
7713
  * @param {boolean} [enabled] Whether the plugin is enabled
7734
- * @param {number} [size] Size of one page. Zero indicates no limit.
7714
+ * @param {string} [keyword] Keyword of plugin name or description
7715
+ * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7735
7716
  * @param {number} [page] The page number. Zero indicates no page.
7736
7717
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7737
7718
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7719
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7738
7720
  * @param {*} [options] Override http request option.
7739
7721
  * @throws {RequiredError}
7740
7722
  */
7741
- listPlugins: (sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7723
+ listPlugins: (enabled?: boolean, keyword?: string, sort?: Array<string>, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7742
7724
  /**
7743
7725
  * Upgrade a plugin by uploading a Jar file
7744
7726
  * @param {string} name
@@ -7762,17 +7744,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configurati
7762
7744
  installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
7763
7745
  /**
7764
7746
  * 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
7747
  * @param {boolean} [enabled] Whether the plugin is enabled
7768
- * @param {number} [size] Size of one page. Zero indicates no limit.
7748
+ * @param {string} [keyword] Keyword of plugin name or description
7749
+ * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7769
7750
  * @param {number} [page] The page number. Zero indicates no page.
7770
7751
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7771
7752
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7753
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7772
7754
  * @param {*} [options] Override http request option.
7773
7755
  * @throws {RequiredError}
7774
7756
  */
7775
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PluginList>>;
7757
+ 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
7758
  /**
7777
7759
  * Upgrade a plugin by uploading a Jar file
7778
7760
  * @param {string} name
@@ -7796,17 +7778,17 @@ declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Config
7796
7778
  installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
7797
7779
  /**
7798
7780
  * 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
7781
  * @param {boolean} [enabled] Whether the plugin is enabled
7802
- * @param {number} [size] Size of one page. Zero indicates no limit.
7782
+ * @param {string} [keyword] Keyword of plugin name or description
7783
+ * @param {Array<string>} [sort] Sort property and direction of the list result. Supported fields: creationTimestamp
7803
7784
  * @param {number} [page] The page number. Zero indicates no page.
7804
7785
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7805
7786
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7787
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7806
7788
  * @param {*} [options] Override http request option.
7807
7789
  * @throws {RequiredError}
7808
7790
  */
7809
- listPlugins(sort?: Array<string>, keyword?: string, enabled?: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<PluginList>;
7791
+ listPlugins(enabled?: boolean, keyword?: string, sort?: Array<string>, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<PluginList>;
7810
7792
  /**
7811
7793
  * Upgrade a plugin by uploading a Jar file
7812
7794
  * @param {string} name
@@ -7836,11 +7818,11 @@ interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
7836
7818
  */
7837
7819
  interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7838
7820
  /**
7839
- * Sort property and direction of the list result. Supported fields: creationTimestamp
7840
- * @type {Array<string>}
7821
+ * Whether the plugin is enabled
7822
+ * @type {boolean}
7841
7823
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7842
7824
  */
7843
- readonly sort?: Array<string>;
7825
+ readonly enabled?: boolean;
7844
7826
  /**
7845
7827
  * Keyword of plugin name or description
7846
7828
  * @type {string}
@@ -7848,17 +7830,11 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7848
7830
  */
7849
7831
  readonly keyword?: string;
7850
7832
  /**
7851
- * Whether the plugin is enabled
7852
- * @type {boolean}
7853
- * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7854
- */
7855
- readonly enabled?: boolean;
7856
- /**
7857
- * Size of one page. Zero indicates no limit.
7858
- * @type {number}
7833
+ * Sort property and direction of the list result. Supported fields: creationTimestamp
7834
+ * @type {Array<string>}
7859
7835
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7860
7836
  */
7861
- readonly size?: number;
7837
+ readonly sort?: Array<string>;
7862
7838
  /**
7863
7839
  * The page number. Zero indicates no page.
7864
7840
  * @type {number}
@@ -7877,6 +7853,12 @@ interface ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest {
7877
7853
  * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7878
7854
  */
7879
7855
  readonly fieldSelector?: Array<string>;
7856
+ /**
7857
+ * Size of one page. Zero indicates no limit.
7858
+ * @type {number}
7859
+ * @memberof ApiConsoleHaloRunV1alpha1PluginApiListPlugins
7860
+ */
7861
+ readonly size?: number;
7880
7862
  }
7881
7863
  /**
7882
7864
  * Request parameters for upgradePlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
@@ -7944,22 +7926,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?
7944
7926
  draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7945
7927
  /**
7946
7928
  * 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]
7929
+ * @param {Array<string>} [contributor]
7950
7930
  * @param {Array<string>} [tag]
7951
7931
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
7932
+ * @param {string} [keyword] Posts filtered by keyword.
7952
7933
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
7934
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
7953
7935
  * @param {Array<string>} [category]
7954
- * @param {Array<string>} [contributor]
7955
- * @param {number} [size] Size of one page. Zero indicates no limit.
7936
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
7956
7937
  * @param {number} [page] The page number. Zero indicates no page.
7957
7938
  * @param {Array<string>} [labelSelector] Label selector for filtering.
7958
7939
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
7940
+ * @param {number} [size] Size of one page. Zero indicates no limit.
7959
7941
  * @param {*} [options] Override http request option.
7960
7942
  * @throws {RequiredError}
7961
7943
  */
7962
- listPosts: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7944
+ listPosts: (contributor?: Array<string>, tag?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<string>, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7963
7945
  /**
7964
7946
  * Publish a post.
7965
7947
  * @param {string} name
@@ -8013,22 +7995,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration
8013
7995
  draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
8014
7996
  /**
8015
7997
  * 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]
7998
+ * @param {Array<string>} [contributor]
8019
7999
  * @param {Array<string>} [tag]
8020
8000
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8001
+ * @param {string} [keyword] Posts filtered by keyword.
8021
8002
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8003
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8022
8004
  * @param {Array<string>} [category]
8023
- * @param {Array<string>} [contributor]
8024
- * @param {number} [size] Size of one page. Zero indicates no limit.
8005
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8025
8006
  * @param {number} [page] The page number. Zero indicates no page.
8026
8007
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8027
8008
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8009
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8028
8010
  * @param {*} [options] Override http request option.
8029
8011
  * @throws {RequiredError}
8030
8012
  */
8031
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
8013
+ listPosts(contributor?: Array<string>, tag?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<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
8014
  /**
8033
8015
  * Publish a post.
8034
8016
  * @param {string} name
@@ -8082,22 +8064,22 @@ declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configur
8082
8064
  draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
8083
8065
  /**
8084
8066
  * 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]
8067
+ * @param {Array<string>} [contributor]
8088
8068
  * @param {Array<string>} [tag]
8089
8069
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8070
+ * @param {string} [keyword] Posts filtered by keyword.
8090
8071
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8072
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8091
8073
  * @param {Array<string>} [category]
8092
- * @param {Array<string>} [contributor]
8093
- * @param {number} [size] Size of one page. Zero indicates no limit.
8074
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] Post collation.
8094
8075
  * @param {number} [page] The page number. Zero indicates no page.
8095
8076
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8096
8077
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8078
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8097
8079
  * @param {*} [options] Override http request option.
8098
8080
  * @throws {RequiredError}
8099
8081
  */
8100
- listPosts(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', tag?: Array<string>, sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', category?: Array<string>, contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
8082
+ listPosts(contributor?: Array<string>, tag?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', category?: Array<string>, sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedPostList>;
8101
8083
  /**
8102
8084
  * Publish a post.
8103
8085
  * @param {string} name
@@ -8156,24 +8138,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
8156
8138
  * @interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest
8157
8139
  */
8158
8140
  interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8159
- /**
8160
- * Post collation.
8161
- * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
8162
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8163
- */
8164
- readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8165
- /**
8166
- * Posts filtered by keyword.
8167
- * @type {string}
8168
- * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8169
- */
8170
- readonly keyword?: string;
8171
8141
  /**
8172
8142
  *
8173
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8143
+ * @type {Array<string>}
8174
8144
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8175
8145
  */
8176
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8146
+ readonly contributor?: Array<string>;
8177
8147
  /**
8178
8148
  *
8179
8149
  * @type {Array<string>}
@@ -8186,6 +8156,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8186
8156
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8187
8157
  */
8188
8158
  readonly sortOrder?: boolean;
8159
+ /**
8160
+ * Posts filtered by keyword.
8161
+ * @type {string}
8162
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8163
+ */
8164
+ readonly keyword?: string;
8189
8165
  /**
8190
8166
  *
8191
8167
  * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
@@ -8194,22 +8170,22 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8194
8170
  readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8195
8171
  /**
8196
8172
  *
8197
- * @type {Array<string>}
8173
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8198
8174
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8199
8175
  */
8200
- readonly category?: Array<string>;
8176
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8201
8177
  /**
8202
8178
  *
8203
8179
  * @type {Array<string>}
8204
8180
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8205
8181
  */
8206
- readonly contributor?: Array<string>;
8182
+ readonly category?: Array<string>;
8207
8183
  /**
8208
- * Size of one page. Zero indicates no limit.
8209
- * @type {number}
8184
+ * Post collation.
8185
+ * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
8210
8186
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8211
8187
  */
8212
- readonly size?: number;
8188
+ readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8213
8189
  /**
8214
8190
  * The page number. Zero indicates no page.
8215
8191
  * @type {number}
@@ -8228,6 +8204,12 @@ interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
8228
8204
  * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8229
8205
  */
8230
8206
  readonly fieldSelector?: Array<string>;
8207
+ /**
8208
+ * Size of one page. Zero indicates no limit.
8209
+ * @type {number}
8210
+ * @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
8211
+ */
8212
+ readonly size?: number;
8231
8213
  }
8232
8214
  /**
8233
8215
  * Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
@@ -8385,14 +8367,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration
8385
8367
  /**
8386
8368
  * List replies.
8387
8369
  * @param {string} [commentName] Replies filtered by commentName.
8388
- * @param {number} [size] Size of one page. Zero indicates no limit.
8389
8370
  * @param {number} [page] The page number. Zero indicates no page.
8390
8371
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8391
8372
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8373
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8392
8374
  * @param {*} [options] Override http request option.
8393
8375
  * @throws {RequiredError}
8394
8376
  */
8395
- listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8377
+ listReplies: (commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8396
8378
  };
8397
8379
  /**
8398
8380
  * ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
@@ -8402,14 +8384,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuratio
8402
8384
  /**
8403
8385
  * List replies.
8404
8386
  * @param {string} [commentName] Replies filtered by commentName.
8405
- * @param {number} [size] Size of one page. Zero indicates no limit.
8406
8387
  * @param {number} [page] The page number. Zero indicates no page.
8407
8388
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8408
8389
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8390
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8409
8391
  * @param {*} [options] Override http request option.
8410
8392
  * @throws {RequiredError}
8411
8393
  */
8412
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8394
+ listReplies(commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
8413
8395
  };
8414
8396
  /**
8415
8397
  * ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
@@ -8419,14 +8401,14 @@ declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configu
8419
8401
  /**
8420
8402
  * List replies.
8421
8403
  * @param {string} [commentName] Replies filtered by commentName.
8422
- * @param {number} [size] Size of one page. Zero indicates no limit.
8423
8404
  * @param {number} [page] The page number. Zero indicates no page.
8424
8405
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8425
8406
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8407
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8426
8408
  * @param {*} [options] Override http request option.
8427
8409
  * @throws {RequiredError}
8428
8410
  */
8429
- listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
8411
+ listReplies(commentName?: string, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedReplyList>;
8430
8412
  };
8431
8413
  /**
8432
8414
  * Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
@@ -8440,12 +8422,6 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8440
8422
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8441
8423
  */
8442
8424
  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
8425
  /**
8450
8426
  * The page number. Zero indicates no page.
8451
8427
  * @type {number}
@@ -8464,6 +8440,12 @@ interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
8464
8440
  * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8465
8441
  */
8466
8442
  readonly fieldSelector?: Array<string>;
8443
+ /**
8444
+ * Size of one page. Zero indicates no limit.
8445
+ * @type {number}
8446
+ * @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
8447
+ */
8448
+ readonly size?: number;
8467
8449
  }
8468
8450
  /**
8469
8451
  * ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
@@ -8496,20 +8478,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configur
8496
8478
  draftSinglePage: (singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8497
8479
  /**
8498
8480
  * List single pages.
8499
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8500
- * @param {string} [keyword] SinglePages filtered by keyword.
8501
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8481
+ * @param {Array<string>} [contributor]
8502
8482
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8483
+ * @param {string} [keyword] SinglePages filtered by keyword.
8503
8484
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8504
- * @param {Array<string>} [contributor]
8505
- * @param {number} [size] Size of one page. Zero indicates no limit.
8485
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8486
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8506
8487
  * @param {number} [page] The page number. Zero indicates no page.
8507
8488
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8508
8489
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8490
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8509
8491
  * @param {*} [options] Override http request option.
8510
8492
  * @throws {RequiredError}
8511
8493
  */
8512
- listSinglePages: (sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8494
+ listSinglePages: (contributor?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8513
8495
  /**
8514
8496
  * Publish a single page.
8515
8497
  * @param {string} name
@@ -8548,20 +8530,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configu
8548
8530
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
8549
8531
  /**
8550
8532
  * List single pages.
8551
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8552
- * @param {string} [keyword] SinglePages filtered by keyword.
8553
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8533
+ * @param {Array<string>} [contributor]
8554
8534
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8535
+ * @param {string} [keyword] SinglePages filtered by keyword.
8555
8536
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8556
- * @param {Array<string>} [contributor]
8557
- * @param {number} [size] Size of one page. Zero indicates no limit.
8537
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8538
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8558
8539
  * @param {number} [page] The page number. Zero indicates no page.
8559
8540
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8560
8541
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8542
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8561
8543
  * @param {*} [options] Override http request option.
8562
8544
  * @throws {RequiredError}
8563
8545
  */
8564
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
8546
+ listSinglePages(contributor?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', 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
8547
  /**
8566
8548
  * Publish a single page.
8567
8549
  * @param {string} name
@@ -8600,20 +8582,20 @@ declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Co
8600
8582
  draftSinglePage(singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
8601
8583
  /**
8602
8584
  * List single pages.
8603
- * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8604
- * @param {string} [keyword] SinglePages filtered by keyword.
8605
- * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8585
+ * @param {Array<string>} [contributor]
8606
8586
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
8587
+ * @param {string} [keyword] SinglePages filtered by keyword.
8607
8588
  * @param {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'} [publishPhase]
8608
- * @param {Array<string>} [contributor]
8609
- * @param {number} [size] Size of one page. Zero indicates no limit.
8589
+ * @param {'PUBLIC' | 'INTERNAL' | 'PRIVATE'} [visible]
8590
+ * @param {'PUBLISH_TIME' | 'CREATE_TIME'} [sort] SinglePage collation.
8610
8591
  * @param {number} [page] The page number. Zero indicates no page.
8611
8592
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8612
8593
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8594
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8613
8595
  * @param {*} [options] Override http request option.
8614
8596
  * @throws {RequiredError}
8615
8597
  */
8616
- listSinglePages(sort?: 'PUBLISH_TIME' | 'CREATE_TIME', keyword?: string, visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sortOrder?: boolean, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', contributor?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedSinglePageList>;
8598
+ listSinglePages(contributor?: Array<string>, sortOrder?: boolean, keyword?: string, publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED', visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE', sort?: 'PUBLISH_TIME' | 'CREATE_TIME', page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ListedSinglePageList>;
8617
8599
  /**
8618
8600
  * Publish a single page.
8619
8601
  * @param {string} name
@@ -8657,30 +8639,24 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
8657
8639
  * @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
8658
8640
  */
8659
8641
  interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8660
- /**
8661
- * SinglePage collation.
8662
- * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
8663
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8664
- */
8665
- readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8666
- /**
8667
- * SinglePages filtered by keyword.
8668
- * @type {string}
8669
- * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8670
- */
8671
- readonly keyword?: string;
8672
8642
  /**
8673
8643
  *
8674
- * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8644
+ * @type {Array<string>}
8675
8645
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8676
8646
  */
8677
- readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8647
+ readonly contributor?: Array<string>;
8678
8648
  /**
8679
8649
  * ascending order If it is true; otherwise, it is in descending order.
8680
8650
  * @type {boolean}
8681
8651
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8682
8652
  */
8683
8653
  readonly sortOrder?: boolean;
8654
+ /**
8655
+ * SinglePages filtered by keyword.
8656
+ * @type {string}
8657
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8658
+ */
8659
+ readonly keyword?: string;
8684
8660
  /**
8685
8661
  *
8686
8662
  * @type {'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED'}
@@ -8689,16 +8665,16 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8689
8665
  readonly publishPhase?: 'DRAFT' | 'PENDING_APPROVAL' | 'PUBLISHED' | 'FAILED';
8690
8666
  /**
8691
8667
  *
8692
- * @type {Array<string>}
8668
+ * @type {'PUBLIC' | 'INTERNAL' | 'PRIVATE'}
8693
8669
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8694
8670
  */
8695
- readonly contributor?: Array<string>;
8671
+ readonly visible?: 'PUBLIC' | 'INTERNAL' | 'PRIVATE';
8696
8672
  /**
8697
- * Size of one page. Zero indicates no limit.
8698
- * @type {number}
8673
+ * SinglePage collation.
8674
+ * @type {'PUBLISH_TIME' | 'CREATE_TIME'}
8699
8675
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8700
8676
  */
8701
- readonly size?: number;
8677
+ readonly sort?: 'PUBLISH_TIME' | 'CREATE_TIME';
8702
8678
  /**
8703
8679
  * The page number. Zero indicates no page.
8704
8680
  * @type {number}
@@ -8717,6 +8693,12 @@ interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
8717
8693
  * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8718
8694
  */
8719
8695
  readonly fieldSelector?: Array<string>;
8696
+ /**
8697
+ * Size of one page. Zero indicates no limit.
8698
+ * @type {number}
8699
+ * @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
8700
+ */
8701
+ readonly size?: number;
8720
8702
  }
8721
8703
  /**
8722
8704
  * Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
@@ -8885,14 +8867,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration
8885
8867
  /**
8886
8868
  * List themes.
8887
8869
  * @param {boolean} uninstalled
8888
- * @param {number} [size] Size of one page. Zero indicates no limit.
8889
8870
  * @param {number} [page] The page number. Zero indicates no page.
8890
8871
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8891
8872
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8873
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8892
8874
  * @param {*} [options] Override http request option.
8893
8875
  * @throws {RequiredError}
8894
8876
  */
8895
- listThemes: (uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8877
+ listThemes: (uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8896
8878
  /**
8897
8879
  * Reload theme setting.
8898
8880
  * @param {string} name
@@ -8924,14 +8906,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuratio
8924
8906
  /**
8925
8907
  * List themes.
8926
8908
  * @param {boolean} uninstalled
8927
- * @param {number} [size] Size of one page. Zero indicates no limit.
8928
8909
  * @param {number} [page] The page number. Zero indicates no page.
8929
8910
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8930
8911
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8912
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8931
8913
  * @param {*} [options] Override http request option.
8932
8914
  * @throws {RequiredError}
8933
8915
  */
8934
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
8916
+ listThemes(uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThemeList>>;
8935
8917
  /**
8936
8918
  * Reload theme setting.
8937
8919
  * @param {string} name
@@ -8963,14 +8945,14 @@ declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configu
8963
8945
  /**
8964
8946
  * List themes.
8965
8947
  * @param {boolean} uninstalled
8966
- * @param {number} [size] Size of one page. Zero indicates no limit.
8967
8948
  * @param {number} [page] The page number. Zero indicates no page.
8968
8949
  * @param {Array<string>} [labelSelector] Label selector for filtering.
8969
8950
  * @param {Array<string>} [fieldSelector] Field selector for filtering.
8951
+ * @param {number} [size] Size of one page. Zero indicates no limit.
8970
8952
  * @param {*} [options] Override http request option.
8971
8953
  * @throws {RequiredError}
8972
8954
  */
8973
- listThemes(uninstalled: boolean, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ThemeList>;
8955
+ listThemes(uninstalled: boolean, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, size?: number, options?: any): AxiosPromise<ThemeList>;
8974
8956
  /**
8975
8957
  * Reload theme setting.
8976
8958
  * @param {string} name
@@ -9012,12 +8994,6 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9012
8994
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9013
8995
  */
9014
8996
  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
8997
  /**
9022
8998
  * The page number. Zero indicates no page.
9023
8999
  * @type {number}
@@ -9036,6 +9012,12 @@ interface ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest {
9036
9012
  * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9037
9013
  */
9038
9014
  readonly fieldSelector?: Array<string>;
9015
+ /**
9016
+ * Size of one page. Zero indicates no limit.
9017
+ * @type {number}
9018
+ * @memberof ApiConsoleHaloRunV1alpha1ThemeApiListThemes
9019
+ */
9020
+ readonly size?: number;
9039
9021
  }
9040
9022
  /**
9041
9023
  * Request parameters for reload operation in ApiConsoleHaloRunV1alpha1ThemeApi.
@@ -9336,24 +9318,24 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
9336
9318
  /**
9337
9319
  * List comment replies.
9338
9320
  * @param {string} name
9339
- * @param {number} [size] Size of one page. Zero indicates no limit.
9340
9321
  * @param {number} [page] The page number. Zero indicates no page.
9322
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9341
9323
  * @param {*} [options] Override http request option.
9342
9324
  * @throws {RequiredError}
9343
9325
  */
9344
- listCommentReplies: (name: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9326
+ listCommentReplies: (name: string, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9345
9327
  /**
9346
9328
  * List comments.
9329
+ * @param {string} kind The comment subject kind.
9347
9330
  * @param {string} name The comment subject name.
9348
9331
  * @param {string} version The comment subject version.
9349
- * @param {string} kind The comment subject kind.
9350
9332
  * @param {string} [group] The comment subject group.
9351
- * @param {number} [size] Size of one page. Zero indicates no limit.
9352
9333
  * @param {number} [page] The page number. Zero indicates no page.
9334
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9353
9335
  * @param {*} [options] Override http request option.
9354
9336
  * @throws {RequiredError}
9355
9337
  */
9356
- listComments1: (name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9338
+ listComments1: (kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9357
9339
  };
9358
9340
  /**
9359
9341
  * ApiHaloRunV1alpha1CommentApi - functional programming interface
@@ -9385,24 +9367,24 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
9385
9367
  /**
9386
9368
  * List comment replies.
9387
9369
  * @param {string} name
9388
- * @param {number} [size] Size of one page. Zero indicates no limit.
9389
9370
  * @param {number} [page] The page number. Zero indicates no page.
9371
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9390
9372
  * @param {*} [options] Override http request option.
9391
9373
  * @throws {RequiredError}
9392
9374
  */
9393
- listCommentReplies(name: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
9375
+ listCommentReplies(name: string, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReplyVoList>>;
9394
9376
  /**
9395
9377
  * List comments.
9378
+ * @param {string} kind The comment subject kind.
9396
9379
  * @param {string} name The comment subject name.
9397
9380
  * @param {string} version The comment subject version.
9398
- * @param {string} kind The comment subject kind.
9399
9381
  * @param {string} [group] The comment subject group.
9400
- * @param {number} [size] Size of one page. Zero indicates no limit.
9401
9382
  * @param {number} [page] The page number. Zero indicates no page.
9383
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9402
9384
  * @param {*} [options] Override http request option.
9403
9385
  * @throws {RequiredError}
9404
9386
  */
9405
- listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
9387
+ listComments1(kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommentVoList>>;
9406
9388
  };
9407
9389
  /**
9408
9390
  * ApiHaloRunV1alpha1CommentApi - factory interface
@@ -9434,24 +9416,24 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
9434
9416
  /**
9435
9417
  * List comment replies.
9436
9418
  * @param {string} name
9437
- * @param {number} [size] Size of one page. Zero indicates no limit.
9438
9419
  * @param {number} [page] The page number. Zero indicates no page.
9420
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9439
9421
  * @param {*} [options] Override http request option.
9440
9422
  * @throws {RequiredError}
9441
9423
  */
9442
- listCommentReplies(name: string, size?: number, page?: number, options?: any): AxiosPromise<ReplyVoList>;
9424
+ listCommentReplies(name: string, page?: number, size?: number, options?: any): AxiosPromise<ReplyVoList>;
9443
9425
  /**
9444
9426
  * List comments.
9427
+ * @param {string} kind The comment subject kind.
9445
9428
  * @param {string} name The comment subject name.
9446
9429
  * @param {string} version The comment subject version.
9447
- * @param {string} kind The comment subject kind.
9448
9430
  * @param {string} [group] The comment subject group.
9449
- * @param {number} [size] Size of one page. Zero indicates no limit.
9450
9431
  * @param {number} [page] The page number. Zero indicates no page.
9432
+ * @param {number} [size] Size of one page. Zero indicates no limit.
9451
9433
  * @param {*} [options] Override http request option.
9452
9434
  * @throws {RequiredError}
9453
9435
  */
9454
- listComments1(name: string, version: string, kind: string, group?: string, size?: number, page?: number, options?: any): AxiosPromise<CommentVoList>;
9436
+ listComments1(kind: string, name: string, version: string, group?: string, page?: number, size?: number, options?: any): AxiosPromise<CommentVoList>;
9455
9437
  };
9456
9438
  /**
9457
9439
  * Request parameters for createComment1 operation in ApiHaloRunV1alpha1CommentApi.
@@ -9511,17 +9493,17 @@ interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
9511
9493
  */
9512
9494
  readonly name: string;
9513
9495
  /**
9514
- * Size of one page. Zero indicates no limit.
9496
+ * The page number. Zero indicates no page.
9515
9497
  * @type {number}
9516
9498
  * @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
9517
9499
  */
9518
- readonly size?: number;
9500
+ readonly page?: number;
9519
9501
  /**
9520
- * The page number. Zero indicates no page.
9502
+ * Size of one page. Zero indicates no limit.
9521
9503
  * @type {number}
9522
9504
  * @memberof ApiHaloRunV1alpha1CommentApiListCommentReplies
9523
9505
  */
9524
- readonly page?: number;
9506
+ readonly size?: number;
9525
9507
  }
9526
9508
  /**
9527
9509
  * Request parameters for listComments1 operation in ApiHaloRunV1alpha1CommentApi.
@@ -9530,23 +9512,23 @@ interface ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest {
9530
9512
  */
9531
9513
  interface ApiHaloRunV1alpha1CommentApiListComments1Request {
9532
9514
  /**
9533
- * The comment subject name.
9515
+ * The comment subject kind.
9534
9516
  * @type {string}
9535
9517
  * @memberof ApiHaloRunV1alpha1CommentApiListComments1
9536
9518
  */
9537
- readonly name: string;
9519
+ readonly kind: string;
9538
9520
  /**
9539
- * The comment subject version.
9521
+ * The comment subject name.
9540
9522
  * @type {string}
9541
9523
  * @memberof ApiHaloRunV1alpha1CommentApiListComments1
9542
9524
  */
9543
- readonly version: string;
9525
+ readonly name: string;
9544
9526
  /**
9545
- * The comment subject kind.
9527
+ * The comment subject version.
9546
9528
  * @type {string}
9547
9529
  * @memberof ApiHaloRunV1alpha1CommentApiListComments1
9548
9530
  */
9549
- readonly kind: string;
9531
+ readonly version: string;
9550
9532
  /**
9551
9533
  * The comment subject group.
9552
9534
  * @type {string}
@@ -9554,17 +9536,17 @@ interface ApiHaloRunV1alpha1CommentApiListComments1Request {
9554
9536
  */
9555
9537
  readonly group?: string;
9556
9538
  /**
9557
- * Size of one page. Zero indicates no limit.
9539
+ * The page number. Zero indicates no page.
9558
9540
  * @type {number}
9559
9541
  * @memberof ApiHaloRunV1alpha1CommentApiListComments1
9560
9542
  */
9561
- readonly size?: number;
9543
+ readonly page?: number;
9562
9544
  /**
9563
- * The page number. Zero indicates no page.
9545
+ * Size of one page. Zero indicates no limit.
9564
9546
  * @type {number}
9565
9547
  * @memberof ApiHaloRunV1alpha1CommentApiListComments1
9566
9548
  */
9567
- readonly page?: number;
9549
+ readonly size?: number;
9568
9550
  }
9569
9551
  /**
9570
9552
  * ApiHaloRunV1alpha1CommentApi - object-oriented interface