@halo-dev/api-client 0.0.20 → 0.0.22

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
@@ -927,6 +927,49 @@ interface Comment {
927
927
  metadata: Metadata;
928
928
  }
929
929
 
930
+ /**
931
+ * Halo Next API
932
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
933
+ *
934
+ * The version of the OpenAPI document: 2.0.0
935
+ *
936
+ *
937
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
938
+ * https://openapi-generator.tech
939
+ * Do not edit the class manually.
940
+ */
941
+ /**
942
+ *
943
+ * @export
944
+ * @interface CommentEmailOwner
945
+ */
946
+ interface CommentEmailOwner {
947
+ /**
948
+ *
949
+ * @type {string}
950
+ * @memberof CommentEmailOwner
951
+ */
952
+ email?: string;
953
+ /**
954
+ *
955
+ * @type {string}
956
+ * @memberof CommentEmailOwner
957
+ */
958
+ avatar?: string;
959
+ /**
960
+ *
961
+ * @type {string}
962
+ * @memberof CommentEmailOwner
963
+ */
964
+ displayName?: string;
965
+ /**
966
+ *
967
+ * @type {string}
968
+ * @memberof CommentEmailOwner
969
+ */
970
+ website?: string;
971
+ }
972
+
930
973
  /**
931
974
  * Halo Next API
932
975
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -995,6 +1038,56 @@ interface CommentList {
995
1038
  hasPrevious: boolean;
996
1039
  }
997
1040
 
1041
+ /**
1042
+ * Halo Next API
1043
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
1044
+ *
1045
+ * The version of the OpenAPI document: 2.0.0
1046
+ *
1047
+ *
1048
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1049
+ * https://openapi-generator.tech
1050
+ * Do not edit the class manually.
1051
+ */
1052
+
1053
+ /**
1054
+ *
1055
+ * @export
1056
+ * @interface CommentRequest
1057
+ */
1058
+ interface CommentRequest {
1059
+ /**
1060
+ *
1061
+ * @type {Ref}
1062
+ * @memberof CommentRequest
1063
+ */
1064
+ subjectRef: Ref;
1065
+ /**
1066
+ *
1067
+ * @type {CommentEmailOwner}
1068
+ * @memberof CommentRequest
1069
+ */
1070
+ owner?: CommentEmailOwner;
1071
+ /**
1072
+ *
1073
+ * @type {string}
1074
+ * @memberof CommentRequest
1075
+ */
1076
+ raw: string;
1077
+ /**
1078
+ *
1079
+ * @type {string}
1080
+ * @memberof CommentRequest
1081
+ */
1082
+ content: string;
1083
+ /**
1084
+ *
1085
+ * @type {boolean}
1086
+ * @memberof CommentRequest
1087
+ */
1088
+ allowNotification?: boolean;
1089
+ }
1090
+
998
1091
  /**
999
1092
  * Halo Next API
1000
1093
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -1419,16 +1512,16 @@ interface Extension {
1419
1512
  kind: string;
1420
1513
  /**
1421
1514
  *
1422
- * @type {string}
1515
+ * @type {Metadata}
1423
1516
  * @memberof Extension
1424
1517
  */
1425
- apiVersion: string;
1518
+ metadata: Metadata;
1426
1519
  /**
1427
1520
  *
1428
- * @type {Metadata}
1521
+ * @type {string}
1429
1522
  * @memberof Extension
1430
1523
  */
1431
- metadata: Metadata;
1524
+ apiVersion: string;
1432
1525
  }
1433
1526
 
1434
1527
  /**
@@ -1770,7 +1863,7 @@ interface ListedComment {
1770
1863
  * @type {OwnerInfo}
1771
1864
  * @memberof ListedComment
1772
1865
  */
1773
- owner?: OwnerInfo;
1866
+ owner: OwnerInfo;
1774
1867
  /**
1775
1868
  *
1776
1869
  * @type {Extension}
@@ -2337,6 +2430,242 @@ interface ListedPostList {
2337
2430
  hasPrevious: boolean;
2338
2431
  }
2339
2432
 
2433
+ /**
2434
+ * Halo Next API
2435
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2436
+ *
2437
+ * The version of the OpenAPI document: 2.0.0
2438
+ *
2439
+ *
2440
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2441
+ * https://openapi-generator.tech
2442
+ * Do not edit the class manually.
2443
+ */
2444
+
2445
+ /**
2446
+ *
2447
+ * @export
2448
+ * @interface ReplySpec
2449
+ */
2450
+ interface ReplySpec {
2451
+ /**
2452
+ *
2453
+ * @type {string}
2454
+ * @memberof ReplySpec
2455
+ */
2456
+ raw: string;
2457
+ /**
2458
+ *
2459
+ * @type {string}
2460
+ * @memberof ReplySpec
2461
+ */
2462
+ content: string;
2463
+ /**
2464
+ *
2465
+ * @type {CommentOwner}
2466
+ * @memberof ReplySpec
2467
+ */
2468
+ owner: CommentOwner;
2469
+ /**
2470
+ *
2471
+ * @type {string}
2472
+ * @memberof ReplySpec
2473
+ */
2474
+ userAgent?: string;
2475
+ /**
2476
+ *
2477
+ * @type {string}
2478
+ * @memberof ReplySpec
2479
+ */
2480
+ ipAddress?: string;
2481
+ /**
2482
+ *
2483
+ * @type {number}
2484
+ * @memberof ReplySpec
2485
+ */
2486
+ priority: number;
2487
+ /**
2488
+ *
2489
+ * @type {boolean}
2490
+ * @memberof ReplySpec
2491
+ */
2492
+ top: boolean;
2493
+ /**
2494
+ *
2495
+ * @type {boolean}
2496
+ * @memberof ReplySpec
2497
+ */
2498
+ allowNotification: boolean;
2499
+ /**
2500
+ *
2501
+ * @type {boolean}
2502
+ * @memberof ReplySpec
2503
+ */
2504
+ approved: boolean;
2505
+ /**
2506
+ *
2507
+ * @type {boolean}
2508
+ * @memberof ReplySpec
2509
+ */
2510
+ hidden: boolean;
2511
+ /**
2512
+ *
2513
+ * @type {string}
2514
+ * @memberof ReplySpec
2515
+ */
2516
+ commentName: string;
2517
+ /**
2518
+ *
2519
+ * @type {string}
2520
+ * @memberof ReplySpec
2521
+ */
2522
+ quoteReply?: string;
2523
+ }
2524
+
2525
+ /**
2526
+ * Halo Next API
2527
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2528
+ *
2529
+ * The version of the OpenAPI document: 2.0.0
2530
+ *
2531
+ *
2532
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2533
+ * https://openapi-generator.tech
2534
+ * Do not edit the class manually.
2535
+ */
2536
+
2537
+ /**
2538
+ *
2539
+ * @export
2540
+ * @interface Reply
2541
+ */
2542
+ interface Reply {
2543
+ /**
2544
+ *
2545
+ * @type {ReplySpec}
2546
+ * @memberof Reply
2547
+ */
2548
+ spec: ReplySpec;
2549
+ /**
2550
+ *
2551
+ * @type {string}
2552
+ * @memberof Reply
2553
+ */
2554
+ apiVersion: string;
2555
+ /**
2556
+ *
2557
+ * @type {string}
2558
+ * @memberof Reply
2559
+ */
2560
+ kind: string;
2561
+ /**
2562
+ *
2563
+ * @type {Metadata}
2564
+ * @memberof Reply
2565
+ */
2566
+ metadata: Metadata;
2567
+ }
2568
+
2569
+ /**
2570
+ * Halo Next API
2571
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2572
+ *
2573
+ * The version of the OpenAPI document: 2.0.0
2574
+ *
2575
+ *
2576
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2577
+ * https://openapi-generator.tech
2578
+ * Do not edit the class manually.
2579
+ */
2580
+
2581
+ /**
2582
+ * A chunk of items.
2583
+ * @export
2584
+ * @interface ListedReply
2585
+ */
2586
+ interface ListedReply {
2587
+ /**
2588
+ *
2589
+ * @type {Reply}
2590
+ * @memberof ListedReply
2591
+ */
2592
+ reply: Reply;
2593
+ /**
2594
+ *
2595
+ * @type {OwnerInfo}
2596
+ * @memberof ListedReply
2597
+ */
2598
+ owner: OwnerInfo;
2599
+ }
2600
+
2601
+ /**
2602
+ * Halo Next API
2603
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
2604
+ *
2605
+ * The version of the OpenAPI document: 2.0.0
2606
+ *
2607
+ *
2608
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2609
+ * https://openapi-generator.tech
2610
+ * Do not edit the class manually.
2611
+ */
2612
+
2613
+ /**
2614
+ *
2615
+ * @export
2616
+ * @interface ListedReplyList
2617
+ */
2618
+ interface ListedReplyList {
2619
+ /**
2620
+ * Page number, starts from 1. If not set or equal to 0, it means no pagination.
2621
+ * @type {number}
2622
+ * @memberof ListedReplyList
2623
+ */
2624
+ page: number;
2625
+ /**
2626
+ * Size of each page. If not set or equal to 0, it means no pagination.
2627
+ * @type {number}
2628
+ * @memberof ListedReplyList
2629
+ */
2630
+ size: number;
2631
+ /**
2632
+ * Total elements.
2633
+ * @type {number}
2634
+ * @memberof ListedReplyList
2635
+ */
2636
+ total: number;
2637
+ /**
2638
+ * A chunk of items.
2639
+ * @type {Array<ListedReply>}
2640
+ * @memberof ListedReplyList
2641
+ */
2642
+ items: Array<ListedReply>;
2643
+ /**
2644
+ * Indicates whether current page is the first page.
2645
+ * @type {boolean}
2646
+ * @memberof ListedReplyList
2647
+ */
2648
+ first: boolean;
2649
+ /**
2650
+ * Indicates whether current page is the last page.
2651
+ * @type {boolean}
2652
+ * @memberof ListedReplyList
2653
+ */
2654
+ last: boolean;
2655
+ /**
2656
+ * Indicates whether current page has previous page.
2657
+ * @type {boolean}
2658
+ * @memberof ListedReplyList
2659
+ */
2660
+ hasNext: boolean;
2661
+ /**
2662
+ * Indicates whether current page has previous page.
2663
+ * @type {boolean}
2664
+ * @memberof ListedReplyList
2665
+ */
2666
+ hasPrevious: boolean;
2667
+ }
2668
+
2340
2669
  /**
2341
2670
  * Halo Next API
2342
2671
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -3918,165 +4247,41 @@ interface PostList {
3918
4247
  */
3919
4248
  size: number;
3920
4249
  /**
3921
- * Total elements.
3922
- * @type {number}
3923
- * @memberof PostList
3924
- */
3925
- total: number;
3926
- /**
3927
- * A chunk of items.
3928
- * @type {Array<Post>}
3929
- * @memberof PostList
3930
- */
3931
- items: Array<Post>;
3932
- /**
3933
- * Indicates whether current page is the first page.
3934
- * @type {boolean}
3935
- * @memberof PostList
3936
- */
3937
- first: boolean;
3938
- /**
3939
- * Indicates whether current page is the last page.
3940
- * @type {boolean}
3941
- * @memberof PostList
3942
- */
3943
- last: boolean;
3944
- /**
3945
- * Indicates whether current page has previous page.
3946
- * @type {boolean}
3947
- * @memberof PostList
3948
- */
3949
- hasNext: boolean;
3950
- /**
3951
- * Indicates whether current page has previous page.
3952
- * @type {boolean}
3953
- * @memberof PostList
3954
- */
3955
- hasPrevious: boolean;
3956
- }
3957
-
3958
- /**
3959
- * Halo Next API
3960
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3961
- *
3962
- * The version of the OpenAPI document: 2.0.0
3963
- *
3964
- *
3965
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3966
- * https://openapi-generator.tech
3967
- * Do not edit the class manually.
3968
- */
3969
-
3970
- /**
3971
- *
3972
- * @export
3973
- * @interface PostRequest
3974
- */
3975
- interface PostRequest {
3976
- /**
3977
- *
3978
- * @type {Post}
3979
- * @memberof PostRequest
3980
- */
3981
- post: Post;
3982
- /**
3983
- *
3984
- * @type {Content}
3985
- * @memberof PostRequest
3986
- */
3987
- content: Content;
3988
- }
3989
-
3990
- /**
3991
- * Halo Next API
3992
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3993
- *
3994
- * The version of the OpenAPI document: 2.0.0
3995
- *
3996
- *
3997
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3998
- * https://openapi-generator.tech
3999
- * Do not edit the class manually.
4000
- */
4001
-
4002
- /**
4003
- *
4004
- * @export
4005
- * @interface ReplySpec
4006
- */
4007
- interface ReplySpec {
4008
- /**
4009
- *
4010
- * @type {string}
4011
- * @memberof ReplySpec
4012
- */
4013
- raw: string;
4014
- /**
4015
- *
4016
- * @type {string}
4017
- * @memberof ReplySpec
4018
- */
4019
- content: string;
4020
- /**
4021
- *
4022
- * @type {CommentOwner}
4023
- * @memberof ReplySpec
4024
- */
4025
- owner: CommentOwner;
4026
- /**
4027
- *
4028
- * @type {string}
4029
- * @memberof ReplySpec
4030
- */
4031
- userAgent?: string;
4032
- /**
4033
- *
4034
- * @type {string}
4035
- * @memberof ReplySpec
4036
- */
4037
- ipAddress?: string;
4038
- /**
4039
- *
4250
+ * Total elements.
4040
4251
  * @type {number}
4041
- * @memberof ReplySpec
4252
+ * @memberof PostList
4042
4253
  */
4043
- priority: number;
4254
+ total: number;
4044
4255
  /**
4045
- *
4046
- * @type {boolean}
4047
- * @memberof ReplySpec
4256
+ * A chunk of items.
4257
+ * @type {Array<Post>}
4258
+ * @memberof PostList
4048
4259
  */
4049
- top: boolean;
4260
+ items: Array<Post>;
4050
4261
  /**
4051
- *
4262
+ * Indicates whether current page is the first page.
4052
4263
  * @type {boolean}
4053
- * @memberof ReplySpec
4264
+ * @memberof PostList
4054
4265
  */
4055
- allowNotification: boolean;
4266
+ first: boolean;
4056
4267
  /**
4057
- *
4268
+ * Indicates whether current page is the last page.
4058
4269
  * @type {boolean}
4059
- * @memberof ReplySpec
4270
+ * @memberof PostList
4060
4271
  */
4061
- approved: boolean;
4272
+ last: boolean;
4062
4273
  /**
4063
- *
4274
+ * Indicates whether current page has previous page.
4064
4275
  * @type {boolean}
4065
- * @memberof ReplySpec
4066
- */
4067
- hidden: boolean;
4068
- /**
4069
- *
4070
- * @type {string}
4071
- * @memberof ReplySpec
4276
+ * @memberof PostList
4072
4277
  */
4073
- commentName: string;
4278
+ hasNext: boolean;
4074
4279
  /**
4075
- *
4076
- * @type {string}
4077
- * @memberof ReplySpec
4280
+ * Indicates whether current page has previous page.
4281
+ * @type {boolean}
4282
+ * @memberof PostList
4078
4283
  */
4079
- quoteReply?: string;
4284
+ hasPrevious: boolean;
4080
4285
  }
4081
4286
 
4082
4287
  /**
@@ -4094,33 +4299,21 @@ interface ReplySpec {
4094
4299
  /**
4095
4300
  *
4096
4301
  * @export
4097
- * @interface Reply
4302
+ * @interface PostRequest
4098
4303
  */
4099
- interface Reply {
4100
- /**
4101
- *
4102
- * @type {ReplySpec}
4103
- * @memberof Reply
4104
- */
4105
- spec: ReplySpec;
4106
- /**
4107
- *
4108
- * @type {string}
4109
- * @memberof Reply
4110
- */
4111
- apiVersion: string;
4304
+ interface PostRequest {
4112
4305
  /**
4113
4306
  *
4114
- * @type {string}
4115
- * @memberof Reply
4307
+ * @type {Post}
4308
+ * @memberof PostRequest
4116
4309
  */
4117
- kind: string;
4310
+ post: Post;
4118
4311
  /**
4119
4312
  *
4120
- * @type {Metadata}
4121
- * @memberof Reply
4313
+ * @type {Content}
4314
+ * @memberof PostRequest
4122
4315
  */
4123
- metadata: Metadata;
4316
+ content: Content;
4124
4317
  }
4125
4318
 
4126
4319
  /**
@@ -4191,6 +4384,56 @@ interface ReplyList {
4191
4384
  hasPrevious: boolean;
4192
4385
  }
4193
4386
 
4387
+ /**
4388
+ * Halo Next API
4389
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4390
+ *
4391
+ * The version of the OpenAPI document: 2.0.0
4392
+ *
4393
+ *
4394
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4395
+ * https://openapi-generator.tech
4396
+ * Do not edit the class manually.
4397
+ */
4398
+
4399
+ /**
4400
+ *
4401
+ * @export
4402
+ * @interface ReplyRequest
4403
+ */
4404
+ interface ReplyRequest {
4405
+ /**
4406
+ *
4407
+ * @type {string}
4408
+ * @memberof ReplyRequest
4409
+ */
4410
+ raw: string;
4411
+ /**
4412
+ *
4413
+ * @type {string}
4414
+ * @memberof ReplyRequest
4415
+ */
4416
+ content: string;
4417
+ /**
4418
+ *
4419
+ * @type {boolean}
4420
+ * @memberof ReplyRequest
4421
+ */
4422
+ allowNotification?: boolean;
4423
+ /**
4424
+ *
4425
+ * @type {CommentEmailOwner}
4426
+ * @memberof ReplyRequest
4427
+ */
4428
+ owner?: CommentEmailOwner;
4429
+ /**
4430
+ *
4431
+ * @type {string}
4432
+ * @memberof ReplyRequest
4433
+ */
4434
+ quoteReply?: string;
4435
+ }
4436
+
4194
4437
  /**
4195
4438
  * Halo Next API
4196
4439
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -5600,9 +5843,25 @@ interface UserPermission {
5600
5843
  * @export
5601
5844
  */
5602
5845
  declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
5846
+ /**
5847
+ * Create a comment.
5848
+ * @param {CommentRequest} commentRequest
5849
+ * @param {*} [options] Override http request option.
5850
+ * @throws {RequiredError}
5851
+ */
5852
+ createComment: (commentRequest: CommentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5853
+ /**
5854
+ * Create a reply.
5855
+ * @param {string} name
5856
+ * @param {ReplyRequest} replyRequest
5857
+ * @param {*} [options] Override http request option.
5858
+ * @throws {RequiredError}
5859
+ */
5860
+ createReply: (name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5603
5861
  /**
5604
5862
  * List comments.
5605
5863
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5864
+ * @param {string} [keyword] Comments filtered by keyword.
5606
5865
  * @param {boolean} [hidden] The comment is hidden from the theme side.
5607
5866
  * @param {boolean} [top] Comment top display.
5608
5867
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
@@ -5619,16 +5878,32 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
5619
5878
  * @param {*} [options] Override http request option.
5620
5879
  * @throws {RequiredError}
5621
5880
  */
5622
- listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>;
5881
+ 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>;
5623
5882
  };
5624
5883
  /**
5625
5884
  * ApiHaloRunV1alpha1CommentApi - functional programming interface
5626
5885
  * @export
5627
5886
  */
5628
5887
  declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
5888
+ /**
5889
+ * Create a comment.
5890
+ * @param {CommentRequest} commentRequest
5891
+ * @param {*} [options] Override http request option.
5892
+ * @throws {RequiredError}
5893
+ */
5894
+ createComment(commentRequest: CommentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Comment>>;
5895
+ /**
5896
+ * Create a reply.
5897
+ * @param {string} name
5898
+ * @param {ReplyRequest} replyRequest
5899
+ * @param {*} [options] Override http request option.
5900
+ * @throws {RequiredError}
5901
+ */
5902
+ createReply(name: string, replyRequest: ReplyRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Reply>>;
5629
5903
  /**
5630
5904
  * List comments.
5631
5905
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5906
+ * @param {string} [keyword] Comments filtered by keyword.
5632
5907
  * @param {boolean} [hidden] The comment is hidden from the theme side.
5633
5908
  * @param {boolean} [top] Comment top display.
5634
5909
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
@@ -5645,16 +5920,32 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
5645
5920
  * @param {*} [options] Override http request option.
5646
5921
  * @throws {RequiredError}
5647
5922
  */
5648
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>>;
5923
+ 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>>;
5649
5924
  };
5650
5925
  /**
5651
5926
  * ApiHaloRunV1alpha1CommentApi - factory interface
5652
5927
  * @export
5653
5928
  */
5654
5929
  declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5930
+ /**
5931
+ * Create a comment.
5932
+ * @param {CommentRequest} commentRequest
5933
+ * @param {*} [options] Override http request option.
5934
+ * @throws {RequiredError}
5935
+ */
5936
+ createComment(commentRequest: CommentRequest, options?: any): AxiosPromise<Comment>;
5937
+ /**
5938
+ * Create a reply.
5939
+ * @param {string} name
5940
+ * @param {ReplyRequest} replyRequest
5941
+ * @param {*} [options] Override http request option.
5942
+ * @throws {RequiredError}
5943
+ */
5944
+ createReply(name: string, replyRequest: ReplyRequest, options?: any): AxiosPromise<Reply>;
5655
5945
  /**
5656
5946
  * List comments.
5657
5947
  * @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
5948
+ * @param {string} [keyword] Comments filtered by keyword.
5658
5949
  * @param {boolean} [hidden] The comment is hidden from the theme side.
5659
5950
  * @param {boolean} [top] Comment top display.
5660
5951
  * @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
@@ -5671,8 +5962,40 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
5671
5962
  * @param {*} [options] Override http request option.
5672
5963
  * @throws {RequiredError}
5673
5964
  */
5674
- listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', 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>;
5965
+ 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>;
5675
5966
  };
5967
+ /**
5968
+ * Request parameters for createComment operation in ApiHaloRunV1alpha1CommentApi.
5969
+ * @export
5970
+ * @interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest
5971
+ */
5972
+ interface ApiHaloRunV1alpha1CommentApiCreateCommentRequest {
5973
+ /**
5974
+ *
5975
+ * @type {CommentRequest}
5976
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateComment
5977
+ */
5978
+ readonly commentRequest: CommentRequest;
5979
+ }
5980
+ /**
5981
+ * Request parameters for createReply operation in ApiHaloRunV1alpha1CommentApi.
5982
+ * @export
5983
+ * @interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest
5984
+ */
5985
+ interface ApiHaloRunV1alpha1CommentApiCreateReplyRequest {
5986
+ /**
5987
+ *
5988
+ * @type {string}
5989
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
5990
+ */
5991
+ readonly name: string;
5992
+ /**
5993
+ *
5994
+ * @type {ReplyRequest}
5995
+ * @memberof ApiHaloRunV1alpha1CommentApiCreateReply
5996
+ */
5997
+ readonly replyRequest: ReplyRequest;
5998
+ }
5676
5999
  /**
5677
6000
  * Request parameters for listComments operation in ApiHaloRunV1alpha1CommentApi.
5678
6001
  * @export
@@ -5685,6 +6008,12 @@ interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
5685
6008
  * @memberof ApiHaloRunV1alpha1CommentApiListComments
5686
6009
  */
5687
6010
  readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
6011
+ /**
6012
+ * Comments filtered by keyword.
6013
+ * @type {string}
6014
+ * @memberof ApiHaloRunV1alpha1CommentApiListComments
6015
+ */
6016
+ readonly keyword?: string;
5688
6017
  /**
5689
6018
  * The comment is hidden from the theme side.
5690
6019
  * @type {boolean}
@@ -5771,6 +6100,22 @@ interface ApiHaloRunV1alpha1CommentApiListCommentsRequest {
5771
6100
  * @extends {BaseAPI}
5772
6101
  */
5773
6102
  declare class ApiHaloRunV1alpha1CommentApi extends BaseAPI {
6103
+ /**
6104
+ * Create a comment.
6105
+ * @param {ApiHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
6106
+ * @param {*} [options] Override http request option.
6107
+ * @throws {RequiredError}
6108
+ * @memberof ApiHaloRunV1alpha1CommentApi
6109
+ */
6110
+ createComment(requestParameters: ApiHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
6111
+ /**
6112
+ * Create a reply.
6113
+ * @param {ApiHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
6114
+ * @param {*} [options] Override http request option.
6115
+ * @throws {RequiredError}
6116
+ * @memberof ApiHaloRunV1alpha1CommentApi
6117
+ */
6118
+ createReply(requestParameters: ApiHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
5774
6119
  /**
5775
6120
  * List comments.
5776
6121
  * @param {ApiHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
@@ -6078,8 +6423,8 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
6078
6423
  /**
6079
6424
  * List posts.
6080
6425
  * @param {Array<string>} [tags]
6081
- * @param {Array<string>} [categories]
6082
6426
  * @param {Array<string>} [contributors]
6427
+ * @param {Array<string>} [categories]
6083
6428
  * @param {number} [size] Size of one page. Zero indicates no limit.
6084
6429
  * @param {number} [page] The page number. Zero indicates no page.
6085
6430
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -6087,7 +6432,7 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
6087
6432
  * @param {*} [options] Override http request option.
6088
6433
  * @throws {RequiredError}
6089
6434
  */
6090
- listPosts: (tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6435
+ listPosts: (tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6091
6436
  /**
6092
6437
  * Publish a post.
6093
6438
  * @param {string} name
@@ -6119,8 +6464,8 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6119
6464
  /**
6120
6465
  * List posts.
6121
6466
  * @param {Array<string>} [tags]
6122
- * @param {Array<string>} [categories]
6123
6467
  * @param {Array<string>} [contributors]
6468
+ * @param {Array<string>} [categories]
6124
6469
  * @param {number} [size] Size of one page. Zero indicates no limit.
6125
6470
  * @param {number} [page] The page number. Zero indicates no page.
6126
6471
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -6128,7 +6473,7 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
6128
6473
  * @param {*} [options] Override http request option.
6129
6474
  * @throws {RequiredError}
6130
6475
  */
6131
- listPosts(tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6476
+ listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
6132
6477
  /**
6133
6478
  * Publish a post.
6134
6479
  * @param {string} name
@@ -6160,8 +6505,8 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
6160
6505
  /**
6161
6506
  * List posts.
6162
6507
  * @param {Array<string>} [tags]
6163
- * @param {Array<string>} [categories]
6164
6508
  * @param {Array<string>} [contributors]
6509
+ * @param {Array<string>} [categories]
6165
6510
  * @param {number} [size] Size of one page. Zero indicates no limit.
6166
6511
  * @param {number} [page] The page number. Zero indicates no page.
6167
6512
  * @param {Array<string>} [labelSelector] Label selector for filtering.
@@ -6169,7 +6514,7 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
6169
6514
  * @param {*} [options] Override http request option.
6170
6515
  * @throws {RequiredError}
6171
6516
  */
6172
- listPosts(tags?: Array<string>, categories?: Array<string>, contributors?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
6517
+ listPosts(tags?: Array<string>, contributors?: Array<string>, categories?: Array<string>, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedPostList>;
6173
6518
  /**
6174
6519
  * Publish a post.
6175
6520
  * @param {string} name
@@ -6216,13 +6561,13 @@ interface ApiHaloRunV1alpha1PostApiListPostsRequest {
6216
6561
  * @type {Array<string>}
6217
6562
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
6218
6563
  */
6219
- readonly categories?: Array<string>;
6564
+ readonly contributors?: Array<string>;
6220
6565
  /**
6221
6566
  *
6222
6567
  * @type {Array<string>}
6223
6568
  * @memberof ApiHaloRunV1alpha1PostApiListPosts
6224
6569
  */
6225
- readonly contributors?: Array<string>;
6570
+ readonly categories?: Array<string>;
6226
6571
  /**
6227
6572
  * Size of one page. Zero indicates no limit.
6228
6573
  * @type {number}
@@ -6321,6 +6666,111 @@ declare class ApiHaloRunV1alpha1PostApi extends BaseAPI {
6321
6666
  updateDraftPost(requestParameters: ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
6322
6667
  }
6323
6668
 
6669
+ /**
6670
+ * ApiHaloRunV1alpha1ReplyApi - axios parameter creator
6671
+ * @export
6672
+ */
6673
+ declare const ApiHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
6674
+ /**
6675
+ * List replies.
6676
+ * @param {string} [commentName] Replies filtered by commentName.
6677
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6678
+ * @param {number} [page] The page number. Zero indicates no page.
6679
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6680
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6681
+ * @param {*} [options] Override http request option.
6682
+ * @throws {RequiredError}
6683
+ */
6684
+ listReplies: (commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6685
+ };
6686
+ /**
6687
+ * ApiHaloRunV1alpha1ReplyApi - functional programming interface
6688
+ * @export
6689
+ */
6690
+ declare const ApiHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
6691
+ /**
6692
+ * List replies.
6693
+ * @param {string} [commentName] Replies filtered by commentName.
6694
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6695
+ * @param {number} [page] The page number. Zero indicates no page.
6696
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6697
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6698
+ * @param {*} [options] Override http request option.
6699
+ * @throws {RequiredError}
6700
+ */
6701
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
6702
+ };
6703
+ /**
6704
+ * ApiHaloRunV1alpha1ReplyApi - factory interface
6705
+ * @export
6706
+ */
6707
+ declare const ApiHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6708
+ /**
6709
+ * List replies.
6710
+ * @param {string} [commentName] Replies filtered by commentName.
6711
+ * @param {number} [size] Size of one page. Zero indicates no limit.
6712
+ * @param {number} [page] The page number. Zero indicates no page.
6713
+ * @param {Array<string>} [labelSelector] Label selector for filtering.
6714
+ * @param {Array<string>} [fieldSelector] Field selector for filtering.
6715
+ * @param {*} [options] Override http request option.
6716
+ * @throws {RequiredError}
6717
+ */
6718
+ listReplies(commentName?: string, size?: number, page?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<ListedReplyList>;
6719
+ };
6720
+ /**
6721
+ * Request parameters for listReplies operation in ApiHaloRunV1alpha1ReplyApi.
6722
+ * @export
6723
+ * @interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest
6724
+ */
6725
+ interface ApiHaloRunV1alpha1ReplyApiListRepliesRequest {
6726
+ /**
6727
+ * Replies filtered by commentName.
6728
+ * @type {string}
6729
+ * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6730
+ */
6731
+ readonly commentName?: string;
6732
+ /**
6733
+ * Size of one page. Zero indicates no limit.
6734
+ * @type {number}
6735
+ * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6736
+ */
6737
+ readonly size?: number;
6738
+ /**
6739
+ * The page number. Zero indicates no page.
6740
+ * @type {number}
6741
+ * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6742
+ */
6743
+ readonly page?: number;
6744
+ /**
6745
+ * Label selector for filtering.
6746
+ * @type {Array<string>}
6747
+ * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6748
+ */
6749
+ readonly labelSelector?: Array<string>;
6750
+ /**
6751
+ * Field selector for filtering.
6752
+ * @type {Array<string>}
6753
+ * @memberof ApiHaloRunV1alpha1ReplyApiListReplies
6754
+ */
6755
+ readonly fieldSelector?: Array<string>;
6756
+ }
6757
+ /**
6758
+ * ApiHaloRunV1alpha1ReplyApi - object-oriented interface
6759
+ * @export
6760
+ * @class ApiHaloRunV1alpha1ReplyApi
6761
+ * @extends {BaseAPI}
6762
+ */
6763
+ declare class ApiHaloRunV1alpha1ReplyApi extends BaseAPI {
6764
+ /**
6765
+ * List replies.
6766
+ * @param {ApiHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
6767
+ * @param {*} [options] Override http request option.
6768
+ * @throws {RequiredError}
6769
+ * @memberof ApiHaloRunV1alpha1ReplyApi
6770
+ */
6771
+ listReplies(requestParameters?: ApiHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedReplyList, any>>;
6772
+ }
6773
+
6324
6774
  /**
6325
6775
  * ApiHaloRunV1alpha1SinglePageApi - axios parameter creator
6326
6776
  * @export
@@ -12997,4 +13447,4 @@ declare class V1alpha1UserApi extends BaseAPI {
12997
13447
  updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
12998
13448
  }
12999
13449
 
13000
- export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentList, CommentOwner, CommentSpec, CommentStatus, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };
13450
+ export { ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateCommentRequest, ApiHaloRunV1alpha1CommentApiCreateReplyRequest, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiListCommentsRequest, ApiHaloRunV1alpha1ContentApi, ApiHaloRunV1alpha1ContentApiAxiosParamCreator, ApiHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiFactory, ApiHaloRunV1alpha1ContentApiFp, ApiHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1PluginApiInstallPluginRequest, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiDraftPostRequest, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiListPostsRequest, ApiHaloRunV1alpha1PostApiPublishPostRequest, ApiHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiHaloRunV1alpha1ReplyApi, ApiHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiHaloRunV1alpha1ReplyApiFactory, ApiHaloRunV1alpha1ReplyApiFp, ApiHaloRunV1alpha1ReplyApiListRepliesRequest, ApiHaloRunV1alpha1SinglePageApi, ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiFactory, ApiHaloRunV1alpha1SinglePageApiFp, ApiHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiChangePasswordRequest, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1UserApiGetPermissionsRequest, ApiHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, SubjectRef, Tag, TagList, TagSpec, TagStatus, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest };