@halo-dev/api-client 0.0.21 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +237 -164
- package/dist/index.d.ts +729 -479
- package/dist/index.mjs +205 -137
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -534,6 +534,50 @@ interface CategorySpec {
|
|
|
534
534
|
* https://openapi-generator.tech
|
|
535
535
|
* Do not edit the class manually.
|
|
536
536
|
*/
|
|
537
|
+
/**
|
|
538
|
+
*
|
|
539
|
+
* @export
|
|
540
|
+
* @interface CompactPost
|
|
541
|
+
*/
|
|
542
|
+
interface CompactPost {
|
|
543
|
+
/**
|
|
544
|
+
*
|
|
545
|
+
* @type {string}
|
|
546
|
+
* @memberof CompactPost
|
|
547
|
+
*/
|
|
548
|
+
name?: string;
|
|
549
|
+
/**
|
|
550
|
+
*
|
|
551
|
+
* @type {string}
|
|
552
|
+
* @memberof CompactPost
|
|
553
|
+
*/
|
|
554
|
+
visible?: CompactPostVisibleEnum;
|
|
555
|
+
/**
|
|
556
|
+
*
|
|
557
|
+
* @type {boolean}
|
|
558
|
+
* @memberof CompactPost
|
|
559
|
+
*/
|
|
560
|
+
published?: boolean;
|
|
561
|
+
}
|
|
562
|
+
declare const CompactPostVisibleEnum: {
|
|
563
|
+
readonly Public: "PUBLIC";
|
|
564
|
+
readonly Internal: "INTERNAL";
|
|
565
|
+
readonly Private: "PRIVATE";
|
|
566
|
+
};
|
|
567
|
+
declare type CompactPostVisibleEnum = typeof CompactPostVisibleEnum[keyof typeof CompactPostVisibleEnum];
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* Halo Next API
|
|
571
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
572
|
+
*
|
|
573
|
+
* The version of the OpenAPI document: 2.0.0
|
|
574
|
+
*
|
|
575
|
+
*
|
|
576
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
577
|
+
* https://openapi-generator.tech
|
|
578
|
+
* Do not edit the class manually.
|
|
579
|
+
*/
|
|
580
|
+
|
|
537
581
|
/**
|
|
538
582
|
*
|
|
539
583
|
* @export
|
|
@@ -548,10 +592,10 @@ interface CategoryStatus {
|
|
|
548
592
|
permalink?: string;
|
|
549
593
|
/**
|
|
550
594
|
*
|
|
551
|
-
* @type {Array<
|
|
595
|
+
* @type {Array<CompactPost>}
|
|
552
596
|
* @memberof CategoryStatus
|
|
553
597
|
*/
|
|
554
|
-
posts?: Array<
|
|
598
|
+
posts?: Array<CompactPost>;
|
|
555
599
|
}
|
|
556
600
|
|
|
557
601
|
/**
|
|
@@ -1509,7 +1553,7 @@ interface Extension {
|
|
|
1509
1553
|
* @type {string}
|
|
1510
1554
|
* @memberof Extension
|
|
1511
1555
|
*/
|
|
1512
|
-
|
|
1556
|
+
apiVersion: string;
|
|
1513
1557
|
/**
|
|
1514
1558
|
*
|
|
1515
1559
|
* @type {Metadata}
|
|
@@ -1521,7 +1565,7 @@ interface Extension {
|
|
|
1521
1565
|
* @type {string}
|
|
1522
1566
|
* @memberof Extension
|
|
1523
1567
|
*/
|
|
1524
|
-
|
|
1568
|
+
kind: string;
|
|
1525
1569
|
}
|
|
1526
1570
|
|
|
1527
1571
|
/**
|
|
@@ -1863,7 +1907,7 @@ interface ListedComment {
|
|
|
1863
1907
|
* @type {OwnerInfo}
|
|
1864
1908
|
* @memberof ListedComment
|
|
1865
1909
|
*/
|
|
1866
|
-
owner
|
|
1910
|
+
owner: OwnerInfo;
|
|
1867
1911
|
/**
|
|
1868
1912
|
*
|
|
1869
1913
|
* @type {Extension}
|
|
@@ -2248,6 +2292,7 @@ interface TagSpec {
|
|
|
2248
2292
|
* https://openapi-generator.tech
|
|
2249
2293
|
* Do not edit the class manually.
|
|
2250
2294
|
*/
|
|
2295
|
+
|
|
2251
2296
|
/**
|
|
2252
2297
|
*
|
|
2253
2298
|
* @export
|
|
@@ -2262,10 +2307,10 @@ interface TagStatus {
|
|
|
2262
2307
|
permalink?: string;
|
|
2263
2308
|
/**
|
|
2264
2309
|
*
|
|
2265
|
-
* @type {Array<
|
|
2310
|
+
* @type {Array<CompactPost>}
|
|
2266
2311
|
* @memberof TagStatus
|
|
2267
2312
|
*/
|
|
2268
|
-
posts?: Array<
|
|
2313
|
+
posts?: Array<CompactPost>;
|
|
2269
2314
|
}
|
|
2270
2315
|
|
|
2271
2316
|
/**
|
|
@@ -2430,6 +2475,242 @@ interface ListedPostList {
|
|
|
2430
2475
|
hasPrevious: boolean;
|
|
2431
2476
|
}
|
|
2432
2477
|
|
|
2478
|
+
/**
|
|
2479
|
+
* Halo Next API
|
|
2480
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2481
|
+
*
|
|
2482
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2483
|
+
*
|
|
2484
|
+
*
|
|
2485
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2486
|
+
* https://openapi-generator.tech
|
|
2487
|
+
* Do not edit the class manually.
|
|
2488
|
+
*/
|
|
2489
|
+
|
|
2490
|
+
/**
|
|
2491
|
+
*
|
|
2492
|
+
* @export
|
|
2493
|
+
* @interface ReplySpec
|
|
2494
|
+
*/
|
|
2495
|
+
interface ReplySpec {
|
|
2496
|
+
/**
|
|
2497
|
+
*
|
|
2498
|
+
* @type {string}
|
|
2499
|
+
* @memberof ReplySpec
|
|
2500
|
+
*/
|
|
2501
|
+
raw: string;
|
|
2502
|
+
/**
|
|
2503
|
+
*
|
|
2504
|
+
* @type {string}
|
|
2505
|
+
* @memberof ReplySpec
|
|
2506
|
+
*/
|
|
2507
|
+
content: string;
|
|
2508
|
+
/**
|
|
2509
|
+
*
|
|
2510
|
+
* @type {CommentOwner}
|
|
2511
|
+
* @memberof ReplySpec
|
|
2512
|
+
*/
|
|
2513
|
+
owner: CommentOwner;
|
|
2514
|
+
/**
|
|
2515
|
+
*
|
|
2516
|
+
* @type {string}
|
|
2517
|
+
* @memberof ReplySpec
|
|
2518
|
+
*/
|
|
2519
|
+
userAgent?: string;
|
|
2520
|
+
/**
|
|
2521
|
+
*
|
|
2522
|
+
* @type {string}
|
|
2523
|
+
* @memberof ReplySpec
|
|
2524
|
+
*/
|
|
2525
|
+
ipAddress?: string;
|
|
2526
|
+
/**
|
|
2527
|
+
*
|
|
2528
|
+
* @type {number}
|
|
2529
|
+
* @memberof ReplySpec
|
|
2530
|
+
*/
|
|
2531
|
+
priority: number;
|
|
2532
|
+
/**
|
|
2533
|
+
*
|
|
2534
|
+
* @type {boolean}
|
|
2535
|
+
* @memberof ReplySpec
|
|
2536
|
+
*/
|
|
2537
|
+
top: boolean;
|
|
2538
|
+
/**
|
|
2539
|
+
*
|
|
2540
|
+
* @type {boolean}
|
|
2541
|
+
* @memberof ReplySpec
|
|
2542
|
+
*/
|
|
2543
|
+
allowNotification: boolean;
|
|
2544
|
+
/**
|
|
2545
|
+
*
|
|
2546
|
+
* @type {boolean}
|
|
2547
|
+
* @memberof ReplySpec
|
|
2548
|
+
*/
|
|
2549
|
+
approved: boolean;
|
|
2550
|
+
/**
|
|
2551
|
+
*
|
|
2552
|
+
* @type {boolean}
|
|
2553
|
+
* @memberof ReplySpec
|
|
2554
|
+
*/
|
|
2555
|
+
hidden: boolean;
|
|
2556
|
+
/**
|
|
2557
|
+
*
|
|
2558
|
+
* @type {string}
|
|
2559
|
+
* @memberof ReplySpec
|
|
2560
|
+
*/
|
|
2561
|
+
commentName: string;
|
|
2562
|
+
/**
|
|
2563
|
+
*
|
|
2564
|
+
* @type {string}
|
|
2565
|
+
* @memberof ReplySpec
|
|
2566
|
+
*/
|
|
2567
|
+
quoteReply?: string;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
/**
|
|
2571
|
+
* Halo Next API
|
|
2572
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2573
|
+
*
|
|
2574
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2575
|
+
*
|
|
2576
|
+
*
|
|
2577
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2578
|
+
* https://openapi-generator.tech
|
|
2579
|
+
* Do not edit the class manually.
|
|
2580
|
+
*/
|
|
2581
|
+
|
|
2582
|
+
/**
|
|
2583
|
+
*
|
|
2584
|
+
* @export
|
|
2585
|
+
* @interface Reply
|
|
2586
|
+
*/
|
|
2587
|
+
interface Reply {
|
|
2588
|
+
/**
|
|
2589
|
+
*
|
|
2590
|
+
* @type {ReplySpec}
|
|
2591
|
+
* @memberof Reply
|
|
2592
|
+
*/
|
|
2593
|
+
spec: ReplySpec;
|
|
2594
|
+
/**
|
|
2595
|
+
*
|
|
2596
|
+
* @type {string}
|
|
2597
|
+
* @memberof Reply
|
|
2598
|
+
*/
|
|
2599
|
+
apiVersion: string;
|
|
2600
|
+
/**
|
|
2601
|
+
*
|
|
2602
|
+
* @type {string}
|
|
2603
|
+
* @memberof Reply
|
|
2604
|
+
*/
|
|
2605
|
+
kind: string;
|
|
2606
|
+
/**
|
|
2607
|
+
*
|
|
2608
|
+
* @type {Metadata}
|
|
2609
|
+
* @memberof Reply
|
|
2610
|
+
*/
|
|
2611
|
+
metadata: Metadata;
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
/**
|
|
2615
|
+
* Halo Next API
|
|
2616
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2617
|
+
*
|
|
2618
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2619
|
+
*
|
|
2620
|
+
*
|
|
2621
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2622
|
+
* https://openapi-generator.tech
|
|
2623
|
+
* Do not edit the class manually.
|
|
2624
|
+
*/
|
|
2625
|
+
|
|
2626
|
+
/**
|
|
2627
|
+
* A chunk of items.
|
|
2628
|
+
* @export
|
|
2629
|
+
* @interface ListedReply
|
|
2630
|
+
*/
|
|
2631
|
+
interface ListedReply {
|
|
2632
|
+
/**
|
|
2633
|
+
*
|
|
2634
|
+
* @type {Reply}
|
|
2635
|
+
* @memberof ListedReply
|
|
2636
|
+
*/
|
|
2637
|
+
reply: Reply;
|
|
2638
|
+
/**
|
|
2639
|
+
*
|
|
2640
|
+
* @type {OwnerInfo}
|
|
2641
|
+
* @memberof ListedReply
|
|
2642
|
+
*/
|
|
2643
|
+
owner: OwnerInfo;
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
/**
|
|
2647
|
+
* Halo Next API
|
|
2648
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
2649
|
+
*
|
|
2650
|
+
* The version of the OpenAPI document: 2.0.0
|
|
2651
|
+
*
|
|
2652
|
+
*
|
|
2653
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2654
|
+
* https://openapi-generator.tech
|
|
2655
|
+
* Do not edit the class manually.
|
|
2656
|
+
*/
|
|
2657
|
+
|
|
2658
|
+
/**
|
|
2659
|
+
*
|
|
2660
|
+
* @export
|
|
2661
|
+
* @interface ListedReplyList
|
|
2662
|
+
*/
|
|
2663
|
+
interface ListedReplyList {
|
|
2664
|
+
/**
|
|
2665
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
2666
|
+
* @type {number}
|
|
2667
|
+
* @memberof ListedReplyList
|
|
2668
|
+
*/
|
|
2669
|
+
page: number;
|
|
2670
|
+
/**
|
|
2671
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
2672
|
+
* @type {number}
|
|
2673
|
+
* @memberof ListedReplyList
|
|
2674
|
+
*/
|
|
2675
|
+
size: number;
|
|
2676
|
+
/**
|
|
2677
|
+
* Total elements.
|
|
2678
|
+
* @type {number}
|
|
2679
|
+
* @memberof ListedReplyList
|
|
2680
|
+
*/
|
|
2681
|
+
total: number;
|
|
2682
|
+
/**
|
|
2683
|
+
* A chunk of items.
|
|
2684
|
+
* @type {Array<ListedReply>}
|
|
2685
|
+
* @memberof ListedReplyList
|
|
2686
|
+
*/
|
|
2687
|
+
items: Array<ListedReply>;
|
|
2688
|
+
/**
|
|
2689
|
+
* Indicates whether current page is the first page.
|
|
2690
|
+
* @type {boolean}
|
|
2691
|
+
* @memberof ListedReplyList
|
|
2692
|
+
*/
|
|
2693
|
+
first: boolean;
|
|
2694
|
+
/**
|
|
2695
|
+
* Indicates whether current page is the last page.
|
|
2696
|
+
* @type {boolean}
|
|
2697
|
+
* @memberof ListedReplyList
|
|
2698
|
+
*/
|
|
2699
|
+
last: boolean;
|
|
2700
|
+
/**
|
|
2701
|
+
* Indicates whether current page has previous page.
|
|
2702
|
+
* @type {boolean}
|
|
2703
|
+
* @memberof ListedReplyList
|
|
2704
|
+
*/
|
|
2705
|
+
hasNext: boolean;
|
|
2706
|
+
/**
|
|
2707
|
+
* Indicates whether current page has previous page.
|
|
2708
|
+
* @type {boolean}
|
|
2709
|
+
* @memberof ListedReplyList
|
|
2710
|
+
*/
|
|
2711
|
+
hasPrevious: boolean;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2433
2714
|
/**
|
|
2434
2715
|
* Halo Next API
|
|
2435
2716
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4039,137 +4320,13 @@ interface PostList {
|
|
|
4039
4320
|
* @type {boolean}
|
|
4040
4321
|
* @memberof PostList
|
|
4041
4322
|
*/
|
|
4042
|
-
hasNext: boolean;
|
|
4043
|
-
/**
|
|
4044
|
-
* Indicates whether current page has previous page.
|
|
4045
|
-
* @type {boolean}
|
|
4046
|
-
* @memberof PostList
|
|
4047
|
-
*/
|
|
4048
|
-
hasPrevious: boolean;
|
|
4049
|
-
}
|
|
4050
|
-
|
|
4051
|
-
/**
|
|
4052
|
-
* Halo Next API
|
|
4053
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4054
|
-
*
|
|
4055
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4056
|
-
*
|
|
4057
|
-
*
|
|
4058
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4059
|
-
* https://openapi-generator.tech
|
|
4060
|
-
* Do not edit the class manually.
|
|
4061
|
-
*/
|
|
4062
|
-
|
|
4063
|
-
/**
|
|
4064
|
-
*
|
|
4065
|
-
* @export
|
|
4066
|
-
* @interface PostRequest
|
|
4067
|
-
*/
|
|
4068
|
-
interface PostRequest {
|
|
4069
|
-
/**
|
|
4070
|
-
*
|
|
4071
|
-
* @type {Post}
|
|
4072
|
-
* @memberof PostRequest
|
|
4073
|
-
*/
|
|
4074
|
-
post: Post;
|
|
4075
|
-
/**
|
|
4076
|
-
*
|
|
4077
|
-
* @type {Content}
|
|
4078
|
-
* @memberof PostRequest
|
|
4079
|
-
*/
|
|
4080
|
-
content: Content;
|
|
4081
|
-
}
|
|
4082
|
-
|
|
4083
|
-
/**
|
|
4084
|
-
* Halo Next API
|
|
4085
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4086
|
-
*
|
|
4087
|
-
* The version of the OpenAPI document: 2.0.0
|
|
4088
|
-
*
|
|
4089
|
-
*
|
|
4090
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4091
|
-
* https://openapi-generator.tech
|
|
4092
|
-
* Do not edit the class manually.
|
|
4093
|
-
*/
|
|
4094
|
-
|
|
4095
|
-
/**
|
|
4096
|
-
*
|
|
4097
|
-
* @export
|
|
4098
|
-
* @interface ReplySpec
|
|
4099
|
-
*/
|
|
4100
|
-
interface ReplySpec {
|
|
4101
|
-
/**
|
|
4102
|
-
*
|
|
4103
|
-
* @type {string}
|
|
4104
|
-
* @memberof ReplySpec
|
|
4105
|
-
*/
|
|
4106
|
-
raw: string;
|
|
4107
|
-
/**
|
|
4108
|
-
*
|
|
4109
|
-
* @type {string}
|
|
4110
|
-
* @memberof ReplySpec
|
|
4111
|
-
*/
|
|
4112
|
-
content: string;
|
|
4113
|
-
/**
|
|
4114
|
-
*
|
|
4115
|
-
* @type {CommentOwner}
|
|
4116
|
-
* @memberof ReplySpec
|
|
4117
|
-
*/
|
|
4118
|
-
owner: CommentOwner;
|
|
4119
|
-
/**
|
|
4120
|
-
*
|
|
4121
|
-
* @type {string}
|
|
4122
|
-
* @memberof ReplySpec
|
|
4123
|
-
*/
|
|
4124
|
-
userAgent?: string;
|
|
4125
|
-
/**
|
|
4126
|
-
*
|
|
4127
|
-
* @type {string}
|
|
4128
|
-
* @memberof ReplySpec
|
|
4129
|
-
*/
|
|
4130
|
-
ipAddress?: string;
|
|
4131
|
-
/**
|
|
4132
|
-
*
|
|
4133
|
-
* @type {number}
|
|
4134
|
-
* @memberof ReplySpec
|
|
4135
|
-
*/
|
|
4136
|
-
priority: number;
|
|
4137
|
-
/**
|
|
4138
|
-
*
|
|
4139
|
-
* @type {boolean}
|
|
4140
|
-
* @memberof ReplySpec
|
|
4141
|
-
*/
|
|
4142
|
-
top: boolean;
|
|
4143
|
-
/**
|
|
4144
|
-
*
|
|
4145
|
-
* @type {boolean}
|
|
4146
|
-
* @memberof ReplySpec
|
|
4147
|
-
*/
|
|
4148
|
-
allowNotification: boolean;
|
|
4149
|
-
/**
|
|
4150
|
-
*
|
|
4151
|
-
* @type {boolean}
|
|
4152
|
-
* @memberof ReplySpec
|
|
4153
|
-
*/
|
|
4154
|
-
approved: boolean;
|
|
4155
|
-
/**
|
|
4156
|
-
*
|
|
4157
|
-
* @type {boolean}
|
|
4158
|
-
* @memberof ReplySpec
|
|
4159
|
-
*/
|
|
4160
|
-
hidden: boolean;
|
|
4161
|
-
/**
|
|
4162
|
-
*
|
|
4163
|
-
* @type {string}
|
|
4164
|
-
* @memberof ReplySpec
|
|
4165
|
-
*/
|
|
4166
|
-
commentName: string;
|
|
4167
|
-
/**
|
|
4168
|
-
*
|
|
4169
|
-
* @type {string}
|
|
4170
|
-
* @memberof ReplySpec
|
|
4323
|
+
hasNext: boolean;
|
|
4324
|
+
/**
|
|
4325
|
+
* Indicates whether current page has previous page.
|
|
4326
|
+
* @type {boolean}
|
|
4327
|
+
* @memberof PostList
|
|
4171
4328
|
*/
|
|
4172
|
-
|
|
4329
|
+
hasPrevious: boolean;
|
|
4173
4330
|
}
|
|
4174
4331
|
|
|
4175
4332
|
/**
|
|
@@ -4187,33 +4344,21 @@ interface ReplySpec {
|
|
|
4187
4344
|
/**
|
|
4188
4345
|
*
|
|
4189
4346
|
* @export
|
|
4190
|
-
* @interface
|
|
4347
|
+
* @interface PostRequest
|
|
4191
4348
|
*/
|
|
4192
|
-
interface
|
|
4193
|
-
/**
|
|
4194
|
-
*
|
|
4195
|
-
* @type {ReplySpec}
|
|
4196
|
-
* @memberof Reply
|
|
4197
|
-
*/
|
|
4198
|
-
spec: ReplySpec;
|
|
4199
|
-
/**
|
|
4200
|
-
*
|
|
4201
|
-
* @type {string}
|
|
4202
|
-
* @memberof Reply
|
|
4203
|
-
*/
|
|
4204
|
-
apiVersion: string;
|
|
4349
|
+
interface PostRequest {
|
|
4205
4350
|
/**
|
|
4206
4351
|
*
|
|
4207
|
-
* @type {
|
|
4208
|
-
* @memberof
|
|
4352
|
+
* @type {Post}
|
|
4353
|
+
* @memberof PostRequest
|
|
4209
4354
|
*/
|
|
4210
|
-
|
|
4355
|
+
post: Post;
|
|
4211
4356
|
/**
|
|
4212
4357
|
*
|
|
4213
|
-
* @type {
|
|
4214
|
-
* @memberof
|
|
4358
|
+
* @type {Content}
|
|
4359
|
+
* @memberof PostRequest
|
|
4215
4360
|
*/
|
|
4216
|
-
|
|
4361
|
+
content: Content;
|
|
4217
4362
|
}
|
|
4218
4363
|
|
|
4219
4364
|
/**
|
|
@@ -5739,10 +5884,10 @@ interface UserPermission {
|
|
|
5739
5884
|
}
|
|
5740
5885
|
|
|
5741
5886
|
/**
|
|
5742
|
-
*
|
|
5887
|
+
* ApiConsoleHaloRunV1alpha1CommentApi - axios parameter creator
|
|
5743
5888
|
* @export
|
|
5744
5889
|
*/
|
|
5745
|
-
declare const
|
|
5890
|
+
declare const ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5746
5891
|
/**
|
|
5747
5892
|
* Create a comment.
|
|
5748
5893
|
* @param {CommentRequest} commentRequest
|
|
@@ -5761,30 +5906,30 @@ declare const ApiHaloRunV1alpha1CommentApiAxiosParamCreator: (configuration?: Co
|
|
|
5761
5906
|
/**
|
|
5762
5907
|
* List comments.
|
|
5763
5908
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5764
|
-
* @param {
|
|
5765
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5766
|
-
* @param {boolean} [top] Comment top display.
|
|
5909
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5767
5910
|
* @param {boolean} [approved] Comments approved.
|
|
5768
5911
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5769
5912
|
* @param {string} [ownerKind] Commenter kind.
|
|
5770
5913
|
* @param {string} [ownerName] Commenter name.
|
|
5771
5914
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5772
5915
|
* @param {string} [subjectName] Comment subject name.
|
|
5773
|
-
* @param {
|
|
5916
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5917
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5918
|
+
* @param {boolean} [top] Comment top display.
|
|
5774
5919
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5775
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5776
5920
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5777
5921
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5922
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5778
5923
|
* @param {*} [options] Override http request option.
|
|
5779
5924
|
* @throws {RequiredError}
|
|
5780
5925
|
*/
|
|
5781
|
-
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
5926
|
+
listComments: (sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5782
5927
|
};
|
|
5783
5928
|
/**
|
|
5784
|
-
*
|
|
5929
|
+
* ApiConsoleHaloRunV1alpha1CommentApi - functional programming interface
|
|
5785
5930
|
* @export
|
|
5786
5931
|
*/
|
|
5787
|
-
declare const
|
|
5932
|
+
declare const ApiConsoleHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) => {
|
|
5788
5933
|
/**
|
|
5789
5934
|
* Create a comment.
|
|
5790
5935
|
* @param {CommentRequest} commentRequest
|
|
@@ -5803,30 +5948,30 @@ declare const ApiHaloRunV1alpha1CommentApiFp: (configuration?: Configuration) =>
|
|
|
5803
5948
|
/**
|
|
5804
5949
|
* List comments.
|
|
5805
5950
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5806
|
-
* @param {
|
|
5807
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5808
|
-
* @param {boolean} [top] Comment top display.
|
|
5951
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5809
5952
|
* @param {boolean} [approved] Comments approved.
|
|
5810
5953
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5811
5954
|
* @param {string} [ownerKind] Commenter kind.
|
|
5812
5955
|
* @param {string} [ownerName] Commenter name.
|
|
5813
5956
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5814
5957
|
* @param {string} [subjectName] Comment subject name.
|
|
5815
|
-
* @param {
|
|
5958
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
5959
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5960
|
+
* @param {boolean} [top] Comment top display.
|
|
5816
5961
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5817
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5818
5962
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5819
5963
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
5964
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5820
5965
|
* @param {*} [options] Override http request option.
|
|
5821
5966
|
* @throws {RequiredError}
|
|
5822
5967
|
*/
|
|
5823
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
5968
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedCommentList>>;
|
|
5824
5969
|
};
|
|
5825
5970
|
/**
|
|
5826
|
-
*
|
|
5971
|
+
* ApiConsoleHaloRunV1alpha1CommentApi - factory interface
|
|
5827
5972
|
* @export
|
|
5828
5973
|
*/
|
|
5829
|
-
declare const
|
|
5974
|
+
declare const ApiConsoleHaloRunV1alpha1CommentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5830
5975
|
/**
|
|
5831
5976
|
* Create a comment.
|
|
5832
5977
|
* @param {CommentRequest} commentRequest
|
|
@@ -5845,192 +5990,192 @@ declare const ApiHaloRunV1alpha1CommentApiFactory: (configuration?: Configuratio
|
|
|
5845
5990
|
/**
|
|
5846
5991
|
* List comments.
|
|
5847
5992
|
* @param {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'} [sort] Comment collation.
|
|
5848
|
-
* @param {
|
|
5849
|
-
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
5850
|
-
* @param {boolean} [top] Comment top display.
|
|
5993
|
+
* @param {boolean} [sortOrder] ascending order If it is true; otherwise, it is in descending order.
|
|
5851
5994
|
* @param {boolean} [approved] Comments approved.
|
|
5852
5995
|
* @param {boolean} [allowNotification] Send notifications when there are new replies.
|
|
5853
5996
|
* @param {string} [ownerKind] Commenter kind.
|
|
5854
5997
|
* @param {string} [ownerName] Commenter name.
|
|
5855
5998
|
* @param {string} [subjectKind] Comment subject kind.
|
|
5856
5999
|
* @param {string} [subjectName] Comment subject name.
|
|
5857
|
-
* @param {
|
|
6000
|
+
* @param {string} [keyword] Comments filtered by keyword.
|
|
6001
|
+
* @param {boolean} [hidden] The comment is hidden from the theme side.
|
|
6002
|
+
* @param {boolean} [top] Comment top display.
|
|
5858
6003
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
5859
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
5860
6004
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
5861
6005
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6006
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
5862
6007
|
* @param {*} [options] Override http request option.
|
|
5863
6008
|
* @throws {RequiredError}
|
|
5864
6009
|
*/
|
|
5865
|
-
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME',
|
|
6010
|
+
listComments(sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME', sortOrder?: boolean, approved?: boolean, allowNotification?: boolean, ownerKind?: string, ownerName?: string, subjectKind?: string, subjectName?: string, keyword?: string, hidden?: boolean, top?: boolean, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedCommentList>;
|
|
5866
6011
|
};
|
|
5867
6012
|
/**
|
|
5868
|
-
* Request parameters for createComment operation in
|
|
6013
|
+
* Request parameters for createComment operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
5869
6014
|
* @export
|
|
5870
|
-
* @interface
|
|
6015
|
+
* @interface ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest
|
|
5871
6016
|
*/
|
|
5872
|
-
interface
|
|
6017
|
+
interface ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest {
|
|
5873
6018
|
/**
|
|
5874
6019
|
*
|
|
5875
6020
|
* @type {CommentRequest}
|
|
5876
|
-
* @memberof
|
|
6021
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateComment
|
|
5877
6022
|
*/
|
|
5878
6023
|
readonly commentRequest: CommentRequest;
|
|
5879
6024
|
}
|
|
5880
6025
|
/**
|
|
5881
|
-
* Request parameters for createReply operation in
|
|
6026
|
+
* Request parameters for createReply operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
5882
6027
|
* @export
|
|
5883
|
-
* @interface
|
|
6028
|
+
* @interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest
|
|
5884
6029
|
*/
|
|
5885
|
-
interface
|
|
6030
|
+
interface ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest {
|
|
5886
6031
|
/**
|
|
5887
6032
|
*
|
|
5888
6033
|
* @type {string}
|
|
5889
|
-
* @memberof
|
|
6034
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateReply
|
|
5890
6035
|
*/
|
|
5891
6036
|
readonly name: string;
|
|
5892
6037
|
/**
|
|
5893
6038
|
*
|
|
5894
6039
|
* @type {ReplyRequest}
|
|
5895
|
-
* @memberof
|
|
6040
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiCreateReply
|
|
5896
6041
|
*/
|
|
5897
6042
|
readonly replyRequest: ReplyRequest;
|
|
5898
6043
|
}
|
|
5899
6044
|
/**
|
|
5900
|
-
* Request parameters for listComments operation in
|
|
6045
|
+
* Request parameters for listComments operation in ApiConsoleHaloRunV1alpha1CommentApi.
|
|
5901
6046
|
* @export
|
|
5902
|
-
* @interface
|
|
6047
|
+
* @interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest
|
|
5903
6048
|
*/
|
|
5904
|
-
interface
|
|
6049
|
+
interface ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest {
|
|
5905
6050
|
/**
|
|
5906
6051
|
* Comment collation.
|
|
5907
6052
|
* @type {'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME'}
|
|
5908
|
-
* @memberof
|
|
6053
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5909
6054
|
*/
|
|
5910
6055
|
readonly sort?: 'LAST_REPLY_TIME' | 'REPLY_COUNT' | 'CREATE_TIME';
|
|
5911
6056
|
/**
|
|
5912
|
-
*
|
|
5913
|
-
* @type {string}
|
|
5914
|
-
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5915
|
-
*/
|
|
5916
|
-
readonly keyword?: string;
|
|
5917
|
-
/**
|
|
5918
|
-
* The comment is hidden from the theme side.
|
|
5919
|
-
* @type {boolean}
|
|
5920
|
-
* @memberof ApiHaloRunV1alpha1CommentApiListComments
|
|
5921
|
-
*/
|
|
5922
|
-
readonly hidden?: boolean;
|
|
5923
|
-
/**
|
|
5924
|
-
* Comment top display.
|
|
6057
|
+
* ascending order If it is true; otherwise, it is in descending order.
|
|
5925
6058
|
* @type {boolean}
|
|
5926
|
-
* @memberof
|
|
6059
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5927
6060
|
*/
|
|
5928
|
-
readonly
|
|
6061
|
+
readonly sortOrder?: boolean;
|
|
5929
6062
|
/**
|
|
5930
6063
|
* Comments approved.
|
|
5931
6064
|
* @type {boolean}
|
|
5932
|
-
* @memberof
|
|
6065
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5933
6066
|
*/
|
|
5934
6067
|
readonly approved?: boolean;
|
|
5935
6068
|
/**
|
|
5936
6069
|
* Send notifications when there are new replies.
|
|
5937
6070
|
* @type {boolean}
|
|
5938
|
-
* @memberof
|
|
6071
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5939
6072
|
*/
|
|
5940
6073
|
readonly allowNotification?: boolean;
|
|
5941
6074
|
/**
|
|
5942
6075
|
* Commenter kind.
|
|
5943
6076
|
* @type {string}
|
|
5944
|
-
* @memberof
|
|
6077
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5945
6078
|
*/
|
|
5946
6079
|
readonly ownerKind?: string;
|
|
5947
6080
|
/**
|
|
5948
6081
|
* Commenter name.
|
|
5949
6082
|
* @type {string}
|
|
5950
|
-
* @memberof
|
|
6083
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5951
6084
|
*/
|
|
5952
6085
|
readonly ownerName?: string;
|
|
5953
6086
|
/**
|
|
5954
6087
|
* Comment subject kind.
|
|
5955
6088
|
* @type {string}
|
|
5956
|
-
* @memberof
|
|
6089
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5957
6090
|
*/
|
|
5958
6091
|
readonly subjectKind?: string;
|
|
5959
6092
|
/**
|
|
5960
6093
|
* Comment subject name.
|
|
5961
6094
|
* @type {string}
|
|
5962
|
-
* @memberof
|
|
6095
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5963
6096
|
*/
|
|
5964
6097
|
readonly subjectName?: string;
|
|
5965
6098
|
/**
|
|
5966
|
-
*
|
|
6099
|
+
* Comments filtered by keyword.
|
|
6100
|
+
* @type {string}
|
|
6101
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6102
|
+
*/
|
|
6103
|
+
readonly keyword?: string;
|
|
6104
|
+
/**
|
|
6105
|
+
* The comment is hidden from the theme side.
|
|
5967
6106
|
* @type {boolean}
|
|
5968
|
-
* @memberof
|
|
6107
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5969
6108
|
*/
|
|
5970
|
-
readonly
|
|
6109
|
+
readonly hidden?: boolean;
|
|
5971
6110
|
/**
|
|
5972
|
-
*
|
|
5973
|
-
* @type {
|
|
5974
|
-
* @memberof
|
|
6111
|
+
* Comment top display.
|
|
6112
|
+
* @type {boolean}
|
|
6113
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5975
6114
|
*/
|
|
5976
|
-
readonly
|
|
6115
|
+
readonly top?: boolean;
|
|
5977
6116
|
/**
|
|
5978
|
-
*
|
|
6117
|
+
* Size of one page. Zero indicates no limit.
|
|
5979
6118
|
* @type {number}
|
|
5980
|
-
* @memberof
|
|
6119
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5981
6120
|
*/
|
|
5982
|
-
readonly
|
|
6121
|
+
readonly size?: number;
|
|
5983
6122
|
/**
|
|
5984
6123
|
* Label selector for filtering.
|
|
5985
6124
|
* @type {Array<string>}
|
|
5986
|
-
* @memberof
|
|
6125
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5987
6126
|
*/
|
|
5988
6127
|
readonly labelSelector?: Array<string>;
|
|
5989
6128
|
/**
|
|
5990
6129
|
* Field selector for filtering.
|
|
5991
6130
|
* @type {Array<string>}
|
|
5992
|
-
* @memberof
|
|
6131
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
5993
6132
|
*/
|
|
5994
6133
|
readonly fieldSelector?: Array<string>;
|
|
6134
|
+
/**
|
|
6135
|
+
* The page number. Zero indicates no page.
|
|
6136
|
+
* @type {number}
|
|
6137
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApiListComments
|
|
6138
|
+
*/
|
|
6139
|
+
readonly page?: number;
|
|
5995
6140
|
}
|
|
5996
6141
|
/**
|
|
5997
|
-
*
|
|
6142
|
+
* ApiConsoleHaloRunV1alpha1CommentApi - object-oriented interface
|
|
5998
6143
|
* @export
|
|
5999
|
-
* @class
|
|
6144
|
+
* @class ApiConsoleHaloRunV1alpha1CommentApi
|
|
6000
6145
|
* @extends {BaseAPI}
|
|
6001
6146
|
*/
|
|
6002
|
-
declare class
|
|
6147
|
+
declare class ApiConsoleHaloRunV1alpha1CommentApi extends BaseAPI {
|
|
6003
6148
|
/**
|
|
6004
6149
|
* Create a comment.
|
|
6005
|
-
* @param {
|
|
6150
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest} requestParameters Request parameters.
|
|
6006
6151
|
* @param {*} [options] Override http request option.
|
|
6007
6152
|
* @throws {RequiredError}
|
|
6008
|
-
* @memberof
|
|
6153
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApi
|
|
6009
6154
|
*/
|
|
6010
|
-
createComment(requestParameters:
|
|
6155
|
+
createComment(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Comment, any>>;
|
|
6011
6156
|
/**
|
|
6012
6157
|
* Create a reply.
|
|
6013
|
-
* @param {
|
|
6158
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest} requestParameters Request parameters.
|
|
6014
6159
|
* @param {*} [options] Override http request option.
|
|
6015
6160
|
* @throws {RequiredError}
|
|
6016
|
-
* @memberof
|
|
6161
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApi
|
|
6017
6162
|
*/
|
|
6018
|
-
createReply(requestParameters:
|
|
6163
|
+
createReply(requestParameters: ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Reply, any>>;
|
|
6019
6164
|
/**
|
|
6020
6165
|
* List comments.
|
|
6021
|
-
* @param {
|
|
6166
|
+
* @param {ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest} requestParameters Request parameters.
|
|
6022
6167
|
* @param {*} [options] Override http request option.
|
|
6023
6168
|
* @throws {RequiredError}
|
|
6024
|
-
* @memberof
|
|
6169
|
+
* @memberof ApiConsoleHaloRunV1alpha1CommentApi
|
|
6025
6170
|
*/
|
|
6026
|
-
listComments(requestParameters?:
|
|
6171
|
+
listComments(requestParameters?: ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedCommentList, any>>;
|
|
6027
6172
|
}
|
|
6028
6173
|
|
|
6029
6174
|
/**
|
|
6030
|
-
*
|
|
6175
|
+
* ApiConsoleHaloRunV1alpha1ContentApi - axios parameter creator
|
|
6031
6176
|
* @export
|
|
6032
6177
|
*/
|
|
6033
|
-
declare const
|
|
6178
|
+
declare const ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6034
6179
|
/**
|
|
6035
6180
|
* Draft a snapshot content.
|
|
6036
6181
|
* @param {ContentRequest} contentRequest
|
|
@@ -6063,10 +6208,10 @@ declare const ApiHaloRunV1alpha1ContentApiAxiosParamCreator: (configuration?: Co
|
|
|
6063
6208
|
updateSnapshotContent: (snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6064
6209
|
};
|
|
6065
6210
|
/**
|
|
6066
|
-
*
|
|
6211
|
+
* ApiConsoleHaloRunV1alpha1ContentApi - functional programming interface
|
|
6067
6212
|
* @export
|
|
6068
6213
|
*/
|
|
6069
|
-
declare const
|
|
6214
|
+
declare const ApiConsoleHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) => {
|
|
6070
6215
|
/**
|
|
6071
6216
|
* Draft a snapshot content.
|
|
6072
6217
|
* @param {ContentRequest} contentRequest
|
|
@@ -6099,10 +6244,10 @@ declare const ApiHaloRunV1alpha1ContentApiFp: (configuration?: Configuration) =>
|
|
|
6099
6244
|
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentWrapper>>;
|
|
6100
6245
|
};
|
|
6101
6246
|
/**
|
|
6102
|
-
*
|
|
6247
|
+
* ApiConsoleHaloRunV1alpha1ContentApi - factory interface
|
|
6103
6248
|
* @export
|
|
6104
6249
|
*/
|
|
6105
|
-
declare const
|
|
6250
|
+
declare const ApiConsoleHaloRunV1alpha1ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6106
6251
|
/**
|
|
6107
6252
|
* Draft a snapshot content.
|
|
6108
6253
|
* @param {ContentRequest} contentRequest
|
|
@@ -6135,115 +6280,115 @@ declare const ApiHaloRunV1alpha1ContentApiFactory: (configuration?: Configuratio
|
|
|
6135
6280
|
updateSnapshotContent(snapshotName: string, contentRequest: ContentRequest, options?: any): AxiosPromise<ContentWrapper>;
|
|
6136
6281
|
};
|
|
6137
6282
|
/**
|
|
6138
|
-
* Request parameters for draftSnapshotContent operation in
|
|
6283
|
+
* Request parameters for draftSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
6139
6284
|
* @export
|
|
6140
|
-
* @interface
|
|
6285
|
+
* @interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest
|
|
6141
6286
|
*/
|
|
6142
|
-
interface
|
|
6287
|
+
interface ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest {
|
|
6143
6288
|
/**
|
|
6144
6289
|
*
|
|
6145
6290
|
* @type {ContentRequest}
|
|
6146
|
-
* @memberof
|
|
6291
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContent
|
|
6147
6292
|
*/
|
|
6148
6293
|
readonly contentRequest: ContentRequest;
|
|
6149
6294
|
}
|
|
6150
6295
|
/**
|
|
6151
|
-
* Request parameters for obtainSnapshotContent operation in
|
|
6296
|
+
* Request parameters for obtainSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
6152
6297
|
* @export
|
|
6153
|
-
* @interface
|
|
6298
|
+
* @interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest
|
|
6154
6299
|
*/
|
|
6155
|
-
interface
|
|
6300
|
+
interface ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest {
|
|
6156
6301
|
/**
|
|
6157
6302
|
*
|
|
6158
6303
|
* @type {string}
|
|
6159
|
-
* @memberof
|
|
6304
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContent
|
|
6160
6305
|
*/
|
|
6161
6306
|
readonly snapshotName: string;
|
|
6162
6307
|
}
|
|
6163
6308
|
/**
|
|
6164
|
-
* Request parameters for publishSnapshotContent operation in
|
|
6309
|
+
* Request parameters for publishSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
6165
6310
|
* @export
|
|
6166
|
-
* @interface
|
|
6311
|
+
* @interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest
|
|
6167
6312
|
*/
|
|
6168
|
-
interface
|
|
6313
|
+
interface ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest {
|
|
6169
6314
|
/**
|
|
6170
6315
|
*
|
|
6171
6316
|
* @type {string}
|
|
6172
|
-
* @memberof
|
|
6317
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
|
|
6173
6318
|
*/
|
|
6174
6319
|
readonly snapshotName: string;
|
|
6175
6320
|
/**
|
|
6176
6321
|
*
|
|
6177
6322
|
* @type {SubjectRef}
|
|
6178
|
-
* @memberof
|
|
6323
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContent
|
|
6179
6324
|
*/
|
|
6180
6325
|
readonly subjectRef: SubjectRef;
|
|
6181
6326
|
}
|
|
6182
6327
|
/**
|
|
6183
|
-
* Request parameters for updateSnapshotContent operation in
|
|
6328
|
+
* Request parameters for updateSnapshotContent operation in ApiConsoleHaloRunV1alpha1ContentApi.
|
|
6184
6329
|
* @export
|
|
6185
|
-
* @interface
|
|
6330
|
+
* @interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest
|
|
6186
6331
|
*/
|
|
6187
|
-
interface
|
|
6332
|
+
interface ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest {
|
|
6188
6333
|
/**
|
|
6189
6334
|
*
|
|
6190
6335
|
* @type {string}
|
|
6191
|
-
* @memberof
|
|
6336
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
|
|
6192
6337
|
*/
|
|
6193
6338
|
readonly snapshotName: string;
|
|
6194
6339
|
/**
|
|
6195
6340
|
*
|
|
6196
6341
|
* @type {ContentRequest}
|
|
6197
|
-
* @memberof
|
|
6342
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContent
|
|
6198
6343
|
*/
|
|
6199
6344
|
readonly contentRequest: ContentRequest;
|
|
6200
6345
|
}
|
|
6201
6346
|
/**
|
|
6202
|
-
*
|
|
6347
|
+
* ApiConsoleHaloRunV1alpha1ContentApi - object-oriented interface
|
|
6203
6348
|
* @export
|
|
6204
|
-
* @class
|
|
6349
|
+
* @class ApiConsoleHaloRunV1alpha1ContentApi
|
|
6205
6350
|
* @extends {BaseAPI}
|
|
6206
6351
|
*/
|
|
6207
|
-
declare class
|
|
6352
|
+
declare class ApiConsoleHaloRunV1alpha1ContentApi extends BaseAPI {
|
|
6208
6353
|
/**
|
|
6209
6354
|
* Draft a snapshot content.
|
|
6210
|
-
* @param {
|
|
6355
|
+
* @param {ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest} requestParameters Request parameters.
|
|
6211
6356
|
* @param {*} [options] Override http request option.
|
|
6212
6357
|
* @throws {RequiredError}
|
|
6213
|
-
* @memberof
|
|
6358
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
6214
6359
|
*/
|
|
6215
|
-
draftSnapshotContent(requestParameters:
|
|
6360
|
+
draftSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
|
|
6216
6361
|
/**
|
|
6217
6362
|
* Obtain a snapshot content.
|
|
6218
|
-
* @param {
|
|
6363
|
+
* @param {ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest} requestParameters Request parameters.
|
|
6219
6364
|
* @param {*} [options] Override http request option.
|
|
6220
6365
|
* @throws {RequiredError}
|
|
6221
|
-
* @memberof
|
|
6366
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
6222
6367
|
*/
|
|
6223
|
-
obtainSnapshotContent(requestParameters:
|
|
6368
|
+
obtainSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
|
|
6224
6369
|
/**
|
|
6225
6370
|
* Publish a snapshot content.
|
|
6226
|
-
* @param {
|
|
6371
|
+
* @param {ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest} requestParameters Request parameters.
|
|
6227
6372
|
* @param {*} [options] Override http request option.
|
|
6228
6373
|
* @throws {RequiredError}
|
|
6229
|
-
* @memberof
|
|
6374
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
6230
6375
|
*/
|
|
6231
|
-
publishSnapshotContent(requestParameters:
|
|
6376
|
+
publishSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
|
|
6232
6377
|
/**
|
|
6233
6378
|
* Update a snapshot content.
|
|
6234
|
-
* @param {
|
|
6379
|
+
* @param {ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest} requestParameters Request parameters.
|
|
6235
6380
|
* @param {*} [options] Override http request option.
|
|
6236
6381
|
* @throws {RequiredError}
|
|
6237
|
-
* @memberof
|
|
6382
|
+
* @memberof ApiConsoleHaloRunV1alpha1ContentApi
|
|
6238
6383
|
*/
|
|
6239
|
-
updateSnapshotContent(requestParameters:
|
|
6384
|
+
updateSnapshotContent(requestParameters: ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ContentWrapper, any>>;
|
|
6240
6385
|
}
|
|
6241
6386
|
|
|
6242
6387
|
/**
|
|
6243
|
-
*
|
|
6388
|
+
* ApiConsoleHaloRunV1alpha1PluginApi - axios parameter creator
|
|
6244
6389
|
* @export
|
|
6245
6390
|
*/
|
|
6246
|
-
declare const
|
|
6391
|
+
declare const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6247
6392
|
/**
|
|
6248
6393
|
* Install a plugin by uploading a Jar file.
|
|
6249
6394
|
* @param {any} file
|
|
@@ -6253,10 +6398,10 @@ declare const ApiHaloRunV1alpha1PluginApiAxiosParamCreator: (configuration?: Con
|
|
|
6253
6398
|
installPlugin: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6254
6399
|
};
|
|
6255
6400
|
/**
|
|
6256
|
-
*
|
|
6401
|
+
* ApiConsoleHaloRunV1alpha1PluginApi - functional programming interface
|
|
6257
6402
|
* @export
|
|
6258
6403
|
*/
|
|
6259
|
-
declare const
|
|
6404
|
+
declare const ApiConsoleHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) => {
|
|
6260
6405
|
/**
|
|
6261
6406
|
* Install a plugin by uploading a Jar file.
|
|
6262
6407
|
* @param {any} file
|
|
@@ -6266,10 +6411,10 @@ declare const ApiHaloRunV1alpha1PluginApiFp: (configuration?: Configuration) =>
|
|
|
6266
6411
|
installPlugin(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Plugin>>;
|
|
6267
6412
|
};
|
|
6268
6413
|
/**
|
|
6269
|
-
*
|
|
6414
|
+
* ApiConsoleHaloRunV1alpha1PluginApi - factory interface
|
|
6270
6415
|
* @export
|
|
6271
6416
|
*/
|
|
6272
|
-
declare const
|
|
6417
|
+
declare const ApiConsoleHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6273
6418
|
/**
|
|
6274
6419
|
* Install a plugin by uploading a Jar file.
|
|
6275
6420
|
* @param {any} file
|
|
@@ -6279,40 +6424,40 @@ declare const ApiHaloRunV1alpha1PluginApiFactory: (configuration?: Configuration
|
|
|
6279
6424
|
installPlugin(file: any, options?: any): AxiosPromise<Plugin>;
|
|
6280
6425
|
};
|
|
6281
6426
|
/**
|
|
6282
|
-
* Request parameters for installPlugin operation in
|
|
6427
|
+
* Request parameters for installPlugin operation in ApiConsoleHaloRunV1alpha1PluginApi.
|
|
6283
6428
|
* @export
|
|
6284
|
-
* @interface
|
|
6429
|
+
* @interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest
|
|
6285
6430
|
*/
|
|
6286
|
-
interface
|
|
6431
|
+
interface ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest {
|
|
6287
6432
|
/**
|
|
6288
6433
|
*
|
|
6289
6434
|
* @type {any}
|
|
6290
|
-
* @memberof
|
|
6435
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApiInstallPlugin
|
|
6291
6436
|
*/
|
|
6292
6437
|
readonly file: any;
|
|
6293
6438
|
}
|
|
6294
6439
|
/**
|
|
6295
|
-
*
|
|
6440
|
+
* ApiConsoleHaloRunV1alpha1PluginApi - object-oriented interface
|
|
6296
6441
|
* @export
|
|
6297
|
-
* @class
|
|
6442
|
+
* @class ApiConsoleHaloRunV1alpha1PluginApi
|
|
6298
6443
|
* @extends {BaseAPI}
|
|
6299
6444
|
*/
|
|
6300
|
-
declare class
|
|
6445
|
+
declare class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
6301
6446
|
/**
|
|
6302
6447
|
* Install a plugin by uploading a Jar file.
|
|
6303
|
-
* @param {
|
|
6448
|
+
* @param {ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest} requestParameters Request parameters.
|
|
6304
6449
|
* @param {*} [options] Override http request option.
|
|
6305
6450
|
* @throws {RequiredError}
|
|
6306
|
-
* @memberof
|
|
6451
|
+
* @memberof ApiConsoleHaloRunV1alpha1PluginApi
|
|
6307
6452
|
*/
|
|
6308
|
-
installPlugin(requestParameters:
|
|
6453
|
+
installPlugin(requestParameters: ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Plugin, any>>;
|
|
6309
6454
|
}
|
|
6310
6455
|
|
|
6311
6456
|
/**
|
|
6312
|
-
*
|
|
6457
|
+
* ApiConsoleHaloRunV1alpha1PostApi - axios parameter creator
|
|
6313
6458
|
* @export
|
|
6314
6459
|
*/
|
|
6315
|
-
declare const
|
|
6460
|
+
declare const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6316
6461
|
/**
|
|
6317
6462
|
* Draft a post.
|
|
6318
6463
|
* @param {PostRequest} postRequest
|
|
@@ -6322,17 +6467,17 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
6322
6467
|
draftPost: (postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6323
6468
|
/**
|
|
6324
6469
|
* List posts.
|
|
6325
|
-
* @param {Array<string>} [tags]
|
|
6326
|
-
* @param {Array<string>} [categories]
|
|
6327
6470
|
* @param {Array<string>} [contributors]
|
|
6471
|
+
* @param {Array<string>} [categories]
|
|
6472
|
+
* @param {Array<string>} [tags]
|
|
6328
6473
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6329
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6330
6474
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6331
6475
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6476
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6332
6477
|
* @param {*} [options] Override http request option.
|
|
6333
6478
|
* @throws {RequiredError}
|
|
6334
6479
|
*/
|
|
6335
|
-
listPosts: (
|
|
6480
|
+
listPosts: (contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6336
6481
|
/**
|
|
6337
6482
|
* Publish a post.
|
|
6338
6483
|
* @param {string} name
|
|
@@ -6350,10 +6495,10 @@ declare const ApiHaloRunV1alpha1PostApiAxiosParamCreator: (configuration?: Confi
|
|
|
6350
6495
|
updateDraftPost: (name: string, postRequest: PostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6351
6496
|
};
|
|
6352
6497
|
/**
|
|
6353
|
-
*
|
|
6498
|
+
* ApiConsoleHaloRunV1alpha1PostApi - functional programming interface
|
|
6354
6499
|
* @export
|
|
6355
6500
|
*/
|
|
6356
|
-
declare const
|
|
6501
|
+
declare const ApiConsoleHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
6357
6502
|
/**
|
|
6358
6503
|
* Draft a post.
|
|
6359
6504
|
* @param {PostRequest} postRequest
|
|
@@ -6363,17 +6508,17 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
6363
6508
|
draftPost(postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
6364
6509
|
/**
|
|
6365
6510
|
* List posts.
|
|
6366
|
-
* @param {Array<string>} [tags]
|
|
6367
|
-
* @param {Array<string>} [categories]
|
|
6368
6511
|
* @param {Array<string>} [contributors]
|
|
6512
|
+
* @param {Array<string>} [categories]
|
|
6513
|
+
* @param {Array<string>} [tags]
|
|
6369
6514
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6370
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6371
6515
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6372
6516
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6517
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6373
6518
|
* @param {*} [options] Override http request option.
|
|
6374
6519
|
* @throws {RequiredError}
|
|
6375
6520
|
*/
|
|
6376
|
-
listPosts(
|
|
6521
|
+
listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedPostList>>;
|
|
6377
6522
|
/**
|
|
6378
6523
|
* Publish a post.
|
|
6379
6524
|
* @param {string} name
|
|
@@ -6391,10 +6536,10 @@ declare const ApiHaloRunV1alpha1PostApiFp: (configuration?: Configuration) => {
|
|
|
6391
6536
|
updateDraftPost(name: string, postRequest: PostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Post>>;
|
|
6392
6537
|
};
|
|
6393
6538
|
/**
|
|
6394
|
-
*
|
|
6539
|
+
* ApiConsoleHaloRunV1alpha1PostApi - factory interface
|
|
6395
6540
|
* @export
|
|
6396
6541
|
*/
|
|
6397
|
-
declare const
|
|
6542
|
+
declare const ApiConsoleHaloRunV1alpha1PostApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6398
6543
|
/**
|
|
6399
6544
|
* Draft a post.
|
|
6400
6545
|
* @param {PostRequest} postRequest
|
|
@@ -6404,17 +6549,17 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
6404
6549
|
draftPost(postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
6405
6550
|
/**
|
|
6406
6551
|
* List posts.
|
|
6407
|
-
* @param {Array<string>} [tags]
|
|
6408
|
-
* @param {Array<string>} [categories]
|
|
6409
6552
|
* @param {Array<string>} [contributors]
|
|
6553
|
+
* @param {Array<string>} [categories]
|
|
6554
|
+
* @param {Array<string>} [tags]
|
|
6410
6555
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6411
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6412
6556
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6413
6557
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6558
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6414
6559
|
* @param {*} [options] Override http request option.
|
|
6415
6560
|
* @throws {RequiredError}
|
|
6416
6561
|
*/
|
|
6417
|
-
listPosts(
|
|
6562
|
+
listPosts(contributors?: Array<string>, categories?: Array<string>, tags?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedPostList>;
|
|
6418
6563
|
/**
|
|
6419
6564
|
* Publish a post.
|
|
6420
6565
|
* @param {string} name
|
|
@@ -6432,145 +6577,250 @@ declare const ApiHaloRunV1alpha1PostApiFactory: (configuration?: Configuration,
|
|
|
6432
6577
|
updateDraftPost(name: string, postRequest: PostRequest, options?: any): AxiosPromise<Post>;
|
|
6433
6578
|
};
|
|
6434
6579
|
/**
|
|
6435
|
-
* Request parameters for draftPost operation in
|
|
6580
|
+
* Request parameters for draftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
6436
6581
|
* @export
|
|
6437
|
-
* @interface
|
|
6582
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest
|
|
6438
6583
|
*/
|
|
6439
|
-
interface
|
|
6584
|
+
interface ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest {
|
|
6440
6585
|
/**
|
|
6441
6586
|
*
|
|
6442
6587
|
* @type {PostRequest}
|
|
6443
|
-
* @memberof
|
|
6588
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiDraftPost
|
|
6444
6589
|
*/
|
|
6445
6590
|
readonly postRequest: PostRequest;
|
|
6446
6591
|
}
|
|
6447
6592
|
/**
|
|
6448
|
-
* Request parameters for listPosts operation in
|
|
6593
|
+
* Request parameters for listPosts operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
6449
6594
|
* @export
|
|
6450
|
-
* @interface
|
|
6595
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest
|
|
6451
6596
|
*/
|
|
6452
|
-
interface
|
|
6597
|
+
interface ApiConsoleHaloRunV1alpha1PostApiListPostsRequest {
|
|
6453
6598
|
/**
|
|
6454
6599
|
*
|
|
6455
6600
|
* @type {Array<string>}
|
|
6456
|
-
* @memberof
|
|
6601
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6457
6602
|
*/
|
|
6458
|
-
readonly
|
|
6603
|
+
readonly contributors?: Array<string>;
|
|
6459
6604
|
/**
|
|
6460
6605
|
*
|
|
6461
6606
|
* @type {Array<string>}
|
|
6462
|
-
* @memberof
|
|
6607
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6463
6608
|
*/
|
|
6464
6609
|
readonly categories?: Array<string>;
|
|
6465
6610
|
/**
|
|
6466
6611
|
*
|
|
6467
6612
|
* @type {Array<string>}
|
|
6468
|
-
* @memberof
|
|
6613
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6469
6614
|
*/
|
|
6470
|
-
readonly
|
|
6615
|
+
readonly tags?: Array<string>;
|
|
6471
6616
|
/**
|
|
6472
6617
|
* Size of one page. Zero indicates no limit.
|
|
6473
6618
|
* @type {number}
|
|
6474
|
-
* @memberof
|
|
6619
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6475
6620
|
*/
|
|
6476
6621
|
readonly size?: number;
|
|
6477
|
-
/**
|
|
6478
|
-
* The page number. Zero indicates no page.
|
|
6479
|
-
* @type {number}
|
|
6480
|
-
* @memberof ApiHaloRunV1alpha1PostApiListPosts
|
|
6481
|
-
*/
|
|
6482
|
-
readonly page?: number;
|
|
6483
6622
|
/**
|
|
6484
6623
|
* Label selector for filtering.
|
|
6485
6624
|
* @type {Array<string>}
|
|
6486
|
-
* @memberof
|
|
6625
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6487
6626
|
*/
|
|
6488
6627
|
readonly labelSelector?: Array<string>;
|
|
6489
6628
|
/**
|
|
6490
6629
|
* Field selector for filtering.
|
|
6491
6630
|
* @type {Array<string>}
|
|
6492
|
-
* @memberof
|
|
6631
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6493
6632
|
*/
|
|
6494
6633
|
readonly fieldSelector?: Array<string>;
|
|
6634
|
+
/**
|
|
6635
|
+
* The page number. Zero indicates no page.
|
|
6636
|
+
* @type {number}
|
|
6637
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiListPosts
|
|
6638
|
+
*/
|
|
6639
|
+
readonly page?: number;
|
|
6495
6640
|
}
|
|
6496
6641
|
/**
|
|
6497
|
-
* Request parameters for publishPost operation in
|
|
6642
|
+
* Request parameters for publishPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
6498
6643
|
* @export
|
|
6499
|
-
* @interface
|
|
6644
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest
|
|
6500
6645
|
*/
|
|
6501
|
-
interface
|
|
6646
|
+
interface ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest {
|
|
6502
6647
|
/**
|
|
6503
6648
|
*
|
|
6504
6649
|
* @type {string}
|
|
6505
|
-
* @memberof
|
|
6650
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiPublishPost
|
|
6506
6651
|
*/
|
|
6507
6652
|
readonly name: string;
|
|
6508
6653
|
}
|
|
6509
6654
|
/**
|
|
6510
|
-
* Request parameters for updateDraftPost operation in
|
|
6655
|
+
* Request parameters for updateDraftPost operation in ApiConsoleHaloRunV1alpha1PostApi.
|
|
6511
6656
|
* @export
|
|
6512
|
-
* @interface
|
|
6657
|
+
* @interface ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest
|
|
6513
6658
|
*/
|
|
6514
|
-
interface
|
|
6659
|
+
interface ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest {
|
|
6515
6660
|
/**
|
|
6516
6661
|
*
|
|
6517
6662
|
* @type {string}
|
|
6518
|
-
* @memberof
|
|
6663
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPost
|
|
6519
6664
|
*/
|
|
6520
6665
|
readonly name: string;
|
|
6521
6666
|
/**
|
|
6522
6667
|
*
|
|
6523
6668
|
* @type {PostRequest}
|
|
6524
|
-
* @memberof
|
|
6669
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPost
|
|
6525
6670
|
*/
|
|
6526
6671
|
readonly postRequest: PostRequest;
|
|
6527
6672
|
}
|
|
6528
6673
|
/**
|
|
6529
|
-
*
|
|
6674
|
+
* ApiConsoleHaloRunV1alpha1PostApi - object-oriented interface
|
|
6530
6675
|
* @export
|
|
6531
|
-
* @class
|
|
6676
|
+
* @class ApiConsoleHaloRunV1alpha1PostApi
|
|
6532
6677
|
* @extends {BaseAPI}
|
|
6533
6678
|
*/
|
|
6534
|
-
declare class
|
|
6679
|
+
declare class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
6535
6680
|
/**
|
|
6536
6681
|
* Draft a post.
|
|
6537
|
-
* @param {
|
|
6682
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest} requestParameters Request parameters.
|
|
6538
6683
|
* @param {*} [options] Override http request option.
|
|
6539
6684
|
* @throws {RequiredError}
|
|
6540
|
-
* @memberof
|
|
6685
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
6541
6686
|
*/
|
|
6542
|
-
draftPost(requestParameters:
|
|
6687
|
+
draftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6543
6688
|
/**
|
|
6544
6689
|
* List posts.
|
|
6545
|
-
* @param {
|
|
6690
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiListPostsRequest} requestParameters Request parameters.
|
|
6546
6691
|
* @param {*} [options] Override http request option.
|
|
6547
6692
|
* @throws {RequiredError}
|
|
6548
|
-
* @memberof
|
|
6693
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
6549
6694
|
*/
|
|
6550
|
-
listPosts(requestParameters?:
|
|
6695
|
+
listPosts(requestParameters?: ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedPostList, any>>;
|
|
6551
6696
|
/**
|
|
6552
6697
|
* Publish a post.
|
|
6553
|
-
* @param {
|
|
6698
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest} requestParameters Request parameters.
|
|
6554
6699
|
* @param {*} [options] Override http request option.
|
|
6555
6700
|
* @throws {RequiredError}
|
|
6556
|
-
* @memberof
|
|
6701
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
6557
6702
|
*/
|
|
6558
|
-
publishPost(requestParameters:
|
|
6703
|
+
publishPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6559
6704
|
/**
|
|
6560
6705
|
* Update a post.
|
|
6561
|
-
* @param {
|
|
6706
|
+
* @param {ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest} requestParameters Request parameters.
|
|
6707
|
+
* @param {*} [options] Override http request option.
|
|
6708
|
+
* @throws {RequiredError}
|
|
6709
|
+
* @memberof ApiConsoleHaloRunV1alpha1PostApi
|
|
6710
|
+
*/
|
|
6711
|
+
updateDraftPost(requestParameters: ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Post, any>>;
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6714
|
+
/**
|
|
6715
|
+
* ApiConsoleHaloRunV1alpha1ReplyApi - axios parameter creator
|
|
6716
|
+
* @export
|
|
6717
|
+
*/
|
|
6718
|
+
declare const ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6719
|
+
/**
|
|
6720
|
+
* List replies.
|
|
6721
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6722
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6723
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6724
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6725
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6726
|
+
* @param {*} [options] Override http request option.
|
|
6727
|
+
* @throws {RequiredError}
|
|
6728
|
+
*/
|
|
6729
|
+
listReplies: (commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6730
|
+
};
|
|
6731
|
+
/**
|
|
6732
|
+
* ApiConsoleHaloRunV1alpha1ReplyApi - functional programming interface
|
|
6733
|
+
* @export
|
|
6734
|
+
*/
|
|
6735
|
+
declare const ApiConsoleHaloRunV1alpha1ReplyApiFp: (configuration?: Configuration) => {
|
|
6736
|
+
/**
|
|
6737
|
+
* List replies.
|
|
6738
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6739
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6740
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6741
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6742
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6743
|
+
* @param {*} [options] Override http request option.
|
|
6744
|
+
* @throws {RequiredError}
|
|
6745
|
+
*/
|
|
6746
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedReplyList>>;
|
|
6747
|
+
};
|
|
6748
|
+
/**
|
|
6749
|
+
* ApiConsoleHaloRunV1alpha1ReplyApi - factory interface
|
|
6750
|
+
* @export
|
|
6751
|
+
*/
|
|
6752
|
+
declare const ApiConsoleHaloRunV1alpha1ReplyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6753
|
+
/**
|
|
6754
|
+
* List replies.
|
|
6755
|
+
* @param {string} [commentName] Replies filtered by commentName.
|
|
6756
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6757
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6758
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6759
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6760
|
+
* @param {*} [options] Override http request option.
|
|
6761
|
+
* @throws {RequiredError}
|
|
6762
|
+
*/
|
|
6763
|
+
listReplies(commentName?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedReplyList>;
|
|
6764
|
+
};
|
|
6765
|
+
/**
|
|
6766
|
+
* Request parameters for listReplies operation in ApiConsoleHaloRunV1alpha1ReplyApi.
|
|
6767
|
+
* @export
|
|
6768
|
+
* @interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest
|
|
6769
|
+
*/
|
|
6770
|
+
interface ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest {
|
|
6771
|
+
/**
|
|
6772
|
+
* Replies filtered by commentName.
|
|
6773
|
+
* @type {string}
|
|
6774
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6775
|
+
*/
|
|
6776
|
+
readonly commentName?: string;
|
|
6777
|
+
/**
|
|
6778
|
+
* Size of one page. Zero indicates no limit.
|
|
6779
|
+
* @type {number}
|
|
6780
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6781
|
+
*/
|
|
6782
|
+
readonly size?: number;
|
|
6783
|
+
/**
|
|
6784
|
+
* Label selector for filtering.
|
|
6785
|
+
* @type {Array<string>}
|
|
6786
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6787
|
+
*/
|
|
6788
|
+
readonly labelSelector?: Array<string>;
|
|
6789
|
+
/**
|
|
6790
|
+
* Field selector for filtering.
|
|
6791
|
+
* @type {Array<string>}
|
|
6792
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6793
|
+
*/
|
|
6794
|
+
readonly fieldSelector?: Array<string>;
|
|
6795
|
+
/**
|
|
6796
|
+
* The page number. Zero indicates no page.
|
|
6797
|
+
* @type {number}
|
|
6798
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApiListReplies
|
|
6799
|
+
*/
|
|
6800
|
+
readonly page?: number;
|
|
6801
|
+
}
|
|
6802
|
+
/**
|
|
6803
|
+
* ApiConsoleHaloRunV1alpha1ReplyApi - object-oriented interface
|
|
6804
|
+
* @export
|
|
6805
|
+
* @class ApiConsoleHaloRunV1alpha1ReplyApi
|
|
6806
|
+
* @extends {BaseAPI}
|
|
6807
|
+
*/
|
|
6808
|
+
declare class ApiConsoleHaloRunV1alpha1ReplyApi extends BaseAPI {
|
|
6809
|
+
/**
|
|
6810
|
+
* List replies.
|
|
6811
|
+
* @param {ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest} requestParameters Request parameters.
|
|
6562
6812
|
* @param {*} [options] Override http request option.
|
|
6563
6813
|
* @throws {RequiredError}
|
|
6564
|
-
* @memberof
|
|
6814
|
+
* @memberof ApiConsoleHaloRunV1alpha1ReplyApi
|
|
6565
6815
|
*/
|
|
6566
|
-
|
|
6816
|
+
listReplies(requestParameters?: ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedReplyList, any>>;
|
|
6567
6817
|
}
|
|
6568
6818
|
|
|
6569
6819
|
/**
|
|
6570
|
-
*
|
|
6820
|
+
* ApiConsoleHaloRunV1alpha1SinglePageApi - axios parameter creator
|
|
6571
6821
|
* @export
|
|
6572
6822
|
*/
|
|
6573
|
-
declare const
|
|
6823
|
+
declare const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6574
6824
|
/**
|
|
6575
6825
|
* Draft a single page.
|
|
6576
6826
|
* @param {SinglePageRequest} singlePageRequest
|
|
@@ -6582,13 +6832,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
|
|
|
6582
6832
|
* List single pages.
|
|
6583
6833
|
* @param {Array<string>} [contributors]
|
|
6584
6834
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6585
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6586
6835
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6587
6836
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6837
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6588
6838
|
* @param {*} [options] Override http request option.
|
|
6589
6839
|
* @throws {RequiredError}
|
|
6590
6840
|
*/
|
|
6591
|
-
listSinglePages: (contributors?: Array<string>, size?: number,
|
|
6841
|
+
listSinglePages: (contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6592
6842
|
/**
|
|
6593
6843
|
* Publish a single page.
|
|
6594
6844
|
* @param {string} name
|
|
@@ -6606,10 +6856,10 @@ declare const ApiHaloRunV1alpha1SinglePageApiAxiosParamCreator: (configuration?:
|
|
|
6606
6856
|
updateDraftSinglePage: (name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6607
6857
|
};
|
|
6608
6858
|
/**
|
|
6609
|
-
*
|
|
6859
|
+
* ApiConsoleHaloRunV1alpha1SinglePageApi - functional programming interface
|
|
6610
6860
|
* @export
|
|
6611
6861
|
*/
|
|
6612
|
-
declare const
|
|
6862
|
+
declare const ApiConsoleHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration) => {
|
|
6613
6863
|
/**
|
|
6614
6864
|
* Draft a single page.
|
|
6615
6865
|
* @param {SinglePageRequest} singlePageRequest
|
|
@@ -6621,13 +6871,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
|
|
|
6621
6871
|
* List single pages.
|
|
6622
6872
|
* @param {Array<string>} [contributors]
|
|
6623
6873
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6624
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6625
6874
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6626
6875
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6876
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6627
6877
|
* @param {*} [options] Override http request option.
|
|
6628
6878
|
* @throws {RequiredError}
|
|
6629
6879
|
*/
|
|
6630
|
-
listSinglePages(contributors?: Array<string>, size?: number,
|
|
6880
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListedSinglePageList>>;
|
|
6631
6881
|
/**
|
|
6632
6882
|
* Publish a single page.
|
|
6633
6883
|
* @param {string} name
|
|
@@ -6645,10 +6895,10 @@ declare const ApiHaloRunV1alpha1SinglePageApiFp: (configuration?: Configuration)
|
|
|
6645
6895
|
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SinglePage>>;
|
|
6646
6896
|
};
|
|
6647
6897
|
/**
|
|
6648
|
-
*
|
|
6898
|
+
* ApiConsoleHaloRunV1alpha1SinglePageApi - factory interface
|
|
6649
6899
|
* @export
|
|
6650
6900
|
*/
|
|
6651
|
-
declare const
|
|
6901
|
+
declare const ApiConsoleHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6652
6902
|
/**
|
|
6653
6903
|
* Draft a single page.
|
|
6654
6904
|
* @param {SinglePageRequest} singlePageRequest
|
|
@@ -6660,13 +6910,13 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
|
|
|
6660
6910
|
* List single pages.
|
|
6661
6911
|
* @param {Array<string>} [contributors]
|
|
6662
6912
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
6663
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
6664
6913
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
6665
6914
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
6915
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
6666
6916
|
* @param {*} [options] Override http request option.
|
|
6667
6917
|
* @throws {RequiredError}
|
|
6668
6918
|
*/
|
|
6669
|
-
listSinglePages(contributors?: Array<string>, size?: number,
|
|
6919
|
+
listSinglePages(contributors?: Array<string>, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<ListedSinglePageList>;
|
|
6670
6920
|
/**
|
|
6671
6921
|
* Publish a single page.
|
|
6672
6922
|
* @param {string} name
|
|
@@ -6684,133 +6934,133 @@ declare const ApiHaloRunV1alpha1SinglePageApiFactory: (configuration?: Configura
|
|
|
6684
6934
|
updateDraftSinglePage(name: string, singlePageRequest: SinglePageRequest, options?: any): AxiosPromise<SinglePage>;
|
|
6685
6935
|
};
|
|
6686
6936
|
/**
|
|
6687
|
-
* Request parameters for draftSinglePage operation in
|
|
6937
|
+
* Request parameters for draftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
6688
6938
|
* @export
|
|
6689
|
-
* @interface
|
|
6939
|
+
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest
|
|
6690
6940
|
*/
|
|
6691
|
-
interface
|
|
6941
|
+
interface ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest {
|
|
6692
6942
|
/**
|
|
6693
6943
|
*
|
|
6694
6944
|
* @type {SinglePageRequest}
|
|
6695
|
-
* @memberof
|
|
6945
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePage
|
|
6696
6946
|
*/
|
|
6697
6947
|
readonly singlePageRequest: SinglePageRequest;
|
|
6698
6948
|
}
|
|
6699
6949
|
/**
|
|
6700
|
-
* Request parameters for listSinglePages operation in
|
|
6950
|
+
* Request parameters for listSinglePages operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
6701
6951
|
* @export
|
|
6702
|
-
* @interface
|
|
6952
|
+
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest
|
|
6703
6953
|
*/
|
|
6704
|
-
interface
|
|
6954
|
+
interface ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest {
|
|
6705
6955
|
/**
|
|
6706
6956
|
*
|
|
6707
6957
|
* @type {Array<string>}
|
|
6708
|
-
* @memberof
|
|
6958
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6709
6959
|
*/
|
|
6710
6960
|
readonly contributors?: Array<string>;
|
|
6711
6961
|
/**
|
|
6712
6962
|
* Size of one page. Zero indicates no limit.
|
|
6713
6963
|
* @type {number}
|
|
6714
|
-
* @memberof
|
|
6964
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6715
6965
|
*/
|
|
6716
6966
|
readonly size?: number;
|
|
6717
|
-
/**
|
|
6718
|
-
* The page number. Zero indicates no page.
|
|
6719
|
-
* @type {number}
|
|
6720
|
-
* @memberof ApiHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6721
|
-
*/
|
|
6722
|
-
readonly page?: number;
|
|
6723
6967
|
/**
|
|
6724
6968
|
* Label selector for filtering.
|
|
6725
6969
|
* @type {Array<string>}
|
|
6726
|
-
* @memberof
|
|
6970
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6727
6971
|
*/
|
|
6728
6972
|
readonly labelSelector?: Array<string>;
|
|
6729
6973
|
/**
|
|
6730
6974
|
* Field selector for filtering.
|
|
6731
6975
|
* @type {Array<string>}
|
|
6732
|
-
* @memberof
|
|
6976
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6733
6977
|
*/
|
|
6734
6978
|
readonly fieldSelector?: Array<string>;
|
|
6979
|
+
/**
|
|
6980
|
+
* The page number. Zero indicates no page.
|
|
6981
|
+
* @type {number}
|
|
6982
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePages
|
|
6983
|
+
*/
|
|
6984
|
+
readonly page?: number;
|
|
6735
6985
|
}
|
|
6736
6986
|
/**
|
|
6737
|
-
* Request parameters for publishSinglePage operation in
|
|
6987
|
+
* Request parameters for publishSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
6738
6988
|
* @export
|
|
6739
|
-
* @interface
|
|
6989
|
+
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest
|
|
6740
6990
|
*/
|
|
6741
|
-
interface
|
|
6991
|
+
interface ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest {
|
|
6742
6992
|
/**
|
|
6743
6993
|
*
|
|
6744
6994
|
* @type {string}
|
|
6745
|
-
* @memberof
|
|
6995
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePage
|
|
6746
6996
|
*/
|
|
6747
6997
|
readonly name: string;
|
|
6748
6998
|
}
|
|
6749
6999
|
/**
|
|
6750
|
-
* Request parameters for updateDraftSinglePage operation in
|
|
7000
|
+
* Request parameters for updateDraftSinglePage operation in ApiConsoleHaloRunV1alpha1SinglePageApi.
|
|
6751
7001
|
* @export
|
|
6752
|
-
* @interface
|
|
7002
|
+
* @interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest
|
|
6753
7003
|
*/
|
|
6754
|
-
interface
|
|
7004
|
+
interface ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest {
|
|
6755
7005
|
/**
|
|
6756
7006
|
*
|
|
6757
7007
|
* @type {string}
|
|
6758
|
-
* @memberof
|
|
7008
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6759
7009
|
*/
|
|
6760
7010
|
readonly name: string;
|
|
6761
7011
|
/**
|
|
6762
7012
|
*
|
|
6763
7013
|
* @type {SinglePageRequest}
|
|
6764
|
-
* @memberof
|
|
7014
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePage
|
|
6765
7015
|
*/
|
|
6766
7016
|
readonly singlePageRequest: SinglePageRequest;
|
|
6767
7017
|
}
|
|
6768
7018
|
/**
|
|
6769
|
-
*
|
|
7019
|
+
* ApiConsoleHaloRunV1alpha1SinglePageApi - object-oriented interface
|
|
6770
7020
|
* @export
|
|
6771
|
-
* @class
|
|
7021
|
+
* @class ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
6772
7022
|
* @extends {BaseAPI}
|
|
6773
7023
|
*/
|
|
6774
|
-
declare class
|
|
7024
|
+
declare class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
6775
7025
|
/**
|
|
6776
7026
|
* Draft a single page.
|
|
6777
|
-
* @param {
|
|
7027
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest} requestParameters Request parameters.
|
|
6778
7028
|
* @param {*} [options] Override http request option.
|
|
6779
7029
|
* @throws {RequiredError}
|
|
6780
|
-
* @memberof
|
|
7030
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
6781
7031
|
*/
|
|
6782
|
-
draftSinglePage(requestParameters:
|
|
7032
|
+
draftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6783
7033
|
/**
|
|
6784
7034
|
* List single pages.
|
|
6785
|
-
* @param {
|
|
7035
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest} requestParameters Request parameters.
|
|
6786
7036
|
* @param {*} [options] Override http request option.
|
|
6787
7037
|
* @throws {RequiredError}
|
|
6788
|
-
* @memberof
|
|
7038
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
6789
7039
|
*/
|
|
6790
|
-
listSinglePages(requestParameters?:
|
|
7040
|
+
listSinglePages(requestParameters?: ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ListedSinglePageList, any>>;
|
|
6791
7041
|
/**
|
|
6792
7042
|
* Publish a single page.
|
|
6793
|
-
* @param {
|
|
7043
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest} requestParameters Request parameters.
|
|
6794
7044
|
* @param {*} [options] Override http request option.
|
|
6795
7045
|
* @throws {RequiredError}
|
|
6796
|
-
* @memberof
|
|
7046
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
6797
7047
|
*/
|
|
6798
|
-
publishSinglePage(requestParameters:
|
|
7048
|
+
publishSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6799
7049
|
/**
|
|
6800
7050
|
* Update a single page.
|
|
6801
|
-
* @param {
|
|
7051
|
+
* @param {ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest} requestParameters Request parameters.
|
|
6802
7052
|
* @param {*} [options] Override http request option.
|
|
6803
7053
|
* @throws {RequiredError}
|
|
6804
|
-
* @memberof
|
|
7054
|
+
* @memberof ApiConsoleHaloRunV1alpha1SinglePageApi
|
|
6805
7055
|
*/
|
|
6806
|
-
updateDraftSinglePage(requestParameters:
|
|
7056
|
+
updateDraftSinglePage(requestParameters: ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<SinglePage, any>>;
|
|
6807
7057
|
}
|
|
6808
7058
|
|
|
6809
7059
|
/**
|
|
6810
|
-
*
|
|
7060
|
+
* ApiConsoleHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
6811
7061
|
* @export
|
|
6812
7062
|
*/
|
|
6813
|
-
declare const
|
|
7063
|
+
declare const ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6814
7064
|
/**
|
|
6815
7065
|
* Install a theme by uploading a zip file.
|
|
6816
7066
|
* @param {any} file
|
|
@@ -6820,10 +7070,10 @@ declare const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Conf
|
|
|
6820
7070
|
installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6821
7071
|
};
|
|
6822
7072
|
/**
|
|
6823
|
-
*
|
|
7073
|
+
* ApiConsoleHaloRunV1alpha1ThemeApi - functional programming interface
|
|
6824
7074
|
* @export
|
|
6825
7075
|
*/
|
|
6826
|
-
declare const
|
|
7076
|
+
declare const ApiConsoleHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
6827
7077
|
/**
|
|
6828
7078
|
* Install a theme by uploading a zip file.
|
|
6829
7079
|
* @param {any} file
|
|
@@ -6833,10 +7083,10 @@ declare const ApiHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
|
6833
7083
|
installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
6834
7084
|
};
|
|
6835
7085
|
/**
|
|
6836
|
-
*
|
|
7086
|
+
* ApiConsoleHaloRunV1alpha1ThemeApi - factory interface
|
|
6837
7087
|
* @export
|
|
6838
7088
|
*/
|
|
6839
|
-
declare const
|
|
7089
|
+
declare const ApiConsoleHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6840
7090
|
/**
|
|
6841
7091
|
* Install a theme by uploading a zip file.
|
|
6842
7092
|
* @param {any} file
|
|
@@ -6846,40 +7096,40 @@ declare const ApiHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration,
|
|
|
6846
7096
|
installTheme(file: any, options?: any): AxiosPromise<Theme>;
|
|
6847
7097
|
};
|
|
6848
7098
|
/**
|
|
6849
|
-
* Request parameters for installTheme operation in
|
|
7099
|
+
* Request parameters for installTheme operation in ApiConsoleHaloRunV1alpha1ThemeApi.
|
|
6850
7100
|
* @export
|
|
6851
|
-
* @interface
|
|
7101
|
+
* @interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest
|
|
6852
7102
|
*/
|
|
6853
|
-
interface
|
|
7103
|
+
interface ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest {
|
|
6854
7104
|
/**
|
|
6855
7105
|
*
|
|
6856
7106
|
* @type {any}
|
|
6857
|
-
* @memberof
|
|
7107
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApiInstallTheme
|
|
6858
7108
|
*/
|
|
6859
7109
|
readonly file: any;
|
|
6860
7110
|
}
|
|
6861
7111
|
/**
|
|
6862
|
-
*
|
|
7112
|
+
* ApiConsoleHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
6863
7113
|
* @export
|
|
6864
|
-
* @class
|
|
7114
|
+
* @class ApiConsoleHaloRunV1alpha1ThemeApi
|
|
6865
7115
|
* @extends {BaseAPI}
|
|
6866
7116
|
*/
|
|
6867
|
-
declare class
|
|
7117
|
+
declare class ApiConsoleHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
6868
7118
|
/**
|
|
6869
7119
|
* Install a theme by uploading a zip file.
|
|
6870
|
-
* @param {
|
|
7120
|
+
* @param {ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest} requestParameters Request parameters.
|
|
6871
7121
|
* @param {*} [options] Override http request option.
|
|
6872
7122
|
* @throws {RequiredError}
|
|
6873
|
-
* @memberof
|
|
7123
|
+
* @memberof ApiConsoleHaloRunV1alpha1ThemeApi
|
|
6874
7124
|
*/
|
|
6875
|
-
installTheme(requestParameters:
|
|
7125
|
+
installTheme(requestParameters: ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
6876
7126
|
}
|
|
6877
7127
|
|
|
6878
7128
|
/**
|
|
6879
|
-
*
|
|
7129
|
+
* ApiConsoleHaloRunV1alpha1UserApi - axios parameter creator
|
|
6880
7130
|
* @export
|
|
6881
7131
|
*/
|
|
6882
|
-
declare const
|
|
7132
|
+
declare const ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6883
7133
|
/**
|
|
6884
7134
|
* Change password of user.
|
|
6885
7135
|
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
@@ -6911,10 +7161,10 @@ declare const ApiHaloRunV1alpha1UserApiAxiosParamCreator: (configuration?: Confi
|
|
|
6911
7161
|
grantPermission: (name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6912
7162
|
};
|
|
6913
7163
|
/**
|
|
6914
|
-
*
|
|
7164
|
+
* ApiConsoleHaloRunV1alpha1UserApi - functional programming interface
|
|
6915
7165
|
* @export
|
|
6916
7166
|
*/
|
|
6917
|
-
declare const
|
|
7167
|
+
declare const ApiConsoleHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
6918
7168
|
/**
|
|
6919
7169
|
* Change password of user.
|
|
6920
7170
|
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
@@ -6946,10 +7196,10 @@ declare const ApiHaloRunV1alpha1UserApiFp: (configuration?: Configuration) => {
|
|
|
6946
7196
|
grantPermission(name: string, grantRequest: GrantRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6947
7197
|
};
|
|
6948
7198
|
/**
|
|
6949
|
-
*
|
|
7199
|
+
* ApiConsoleHaloRunV1alpha1UserApi - factory interface
|
|
6950
7200
|
* @export
|
|
6951
7201
|
*/
|
|
6952
|
-
declare const
|
|
7202
|
+
declare const ApiConsoleHaloRunV1alpha1UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6953
7203
|
/**
|
|
6954
7204
|
* Change password of user.
|
|
6955
7205
|
* @param {string} name Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
@@ -6981,94 +7231,94 @@ declare const ApiHaloRunV1alpha1UserApiFactory: (configuration?: Configuration,
|
|
|
6981
7231
|
grantPermission(name: string, grantRequest: GrantRequest, options?: any): AxiosPromise<User>;
|
|
6982
7232
|
};
|
|
6983
7233
|
/**
|
|
6984
|
-
* Request parameters for changePassword operation in
|
|
7234
|
+
* Request parameters for changePassword operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
6985
7235
|
* @export
|
|
6986
|
-
* @interface
|
|
7236
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest
|
|
6987
7237
|
*/
|
|
6988
|
-
interface
|
|
7238
|
+
interface ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest {
|
|
6989
7239
|
/**
|
|
6990
7240
|
* Name of user. If the name is equal to \'-\', it will change the password of current user.
|
|
6991
7241
|
* @type {string}
|
|
6992
|
-
* @memberof
|
|
7242
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiChangePassword
|
|
6993
7243
|
*/
|
|
6994
7244
|
readonly name: string;
|
|
6995
7245
|
/**
|
|
6996
7246
|
*
|
|
6997
7247
|
* @type {ChangePasswordRequest}
|
|
6998
|
-
* @memberof
|
|
7248
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiChangePassword
|
|
6999
7249
|
*/
|
|
7000
7250
|
readonly changePasswordRequest: ChangePasswordRequest;
|
|
7001
7251
|
}
|
|
7002
7252
|
/**
|
|
7003
|
-
* Request parameters for getPermissions operation in
|
|
7253
|
+
* Request parameters for getPermissions operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
7004
7254
|
* @export
|
|
7005
|
-
* @interface
|
|
7255
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest
|
|
7006
7256
|
*/
|
|
7007
|
-
interface
|
|
7257
|
+
interface ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest {
|
|
7008
7258
|
/**
|
|
7009
7259
|
* User name
|
|
7010
7260
|
* @type {string}
|
|
7011
|
-
* @memberof
|
|
7261
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiGetPermissions
|
|
7012
7262
|
*/
|
|
7013
7263
|
readonly name: string;
|
|
7014
7264
|
}
|
|
7015
7265
|
/**
|
|
7016
|
-
* Request parameters for grantPermission operation in
|
|
7266
|
+
* Request parameters for grantPermission operation in ApiConsoleHaloRunV1alpha1UserApi.
|
|
7017
7267
|
* @export
|
|
7018
|
-
* @interface
|
|
7268
|
+
* @interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest
|
|
7019
7269
|
*/
|
|
7020
|
-
interface
|
|
7270
|
+
interface ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest {
|
|
7021
7271
|
/**
|
|
7022
7272
|
* User name
|
|
7023
7273
|
* @type {string}
|
|
7024
|
-
* @memberof
|
|
7274
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiGrantPermission
|
|
7025
7275
|
*/
|
|
7026
7276
|
readonly name: string;
|
|
7027
7277
|
/**
|
|
7028
7278
|
*
|
|
7029
7279
|
* @type {GrantRequest}
|
|
7030
|
-
* @memberof
|
|
7280
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApiGrantPermission
|
|
7031
7281
|
*/
|
|
7032
7282
|
readonly grantRequest: GrantRequest;
|
|
7033
7283
|
}
|
|
7034
7284
|
/**
|
|
7035
|
-
*
|
|
7285
|
+
* ApiConsoleHaloRunV1alpha1UserApi - object-oriented interface
|
|
7036
7286
|
* @export
|
|
7037
|
-
* @class
|
|
7287
|
+
* @class ApiConsoleHaloRunV1alpha1UserApi
|
|
7038
7288
|
* @extends {BaseAPI}
|
|
7039
7289
|
*/
|
|
7040
|
-
declare class
|
|
7290
|
+
declare class ApiConsoleHaloRunV1alpha1UserApi extends BaseAPI {
|
|
7041
7291
|
/**
|
|
7042
7292
|
* Change password of user.
|
|
7043
|
-
* @param {
|
|
7293
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest} requestParameters Request parameters.
|
|
7044
7294
|
* @param {*} [options] Override http request option.
|
|
7045
7295
|
* @throws {RequiredError}
|
|
7046
|
-
* @memberof
|
|
7296
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
7047
7297
|
*/
|
|
7048
|
-
changePassword(requestParameters:
|
|
7298
|
+
changePassword(requestParameters: ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
7049
7299
|
/**
|
|
7050
7300
|
* Get current user detail
|
|
7051
7301
|
* @param {*} [options] Override http request option.
|
|
7052
7302
|
* @throws {RequiredError}
|
|
7053
|
-
* @memberof
|
|
7303
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
7054
7304
|
*/
|
|
7055
7305
|
getCurrentUserDetail(options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
7056
7306
|
/**
|
|
7057
7307
|
* Get permissions of user
|
|
7058
|
-
* @param {
|
|
7308
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest} requestParameters Request parameters.
|
|
7059
7309
|
* @param {*} [options] Override http request option.
|
|
7060
7310
|
* @throws {RequiredError}
|
|
7061
|
-
* @memberof
|
|
7311
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
7062
7312
|
*/
|
|
7063
|
-
getPermissions(requestParameters:
|
|
7313
|
+
getPermissions(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<UserPermission, any>>;
|
|
7064
7314
|
/**
|
|
7065
7315
|
* Grant permissions to user
|
|
7066
|
-
* @param {
|
|
7316
|
+
* @param {ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest} requestParameters Request parameters.
|
|
7067
7317
|
* @param {*} [options] Override http request option.
|
|
7068
7318
|
* @throws {RequiredError}
|
|
7069
|
-
* @memberof
|
|
7319
|
+
* @memberof ApiConsoleHaloRunV1alpha1UserApi
|
|
7070
7320
|
*/
|
|
7071
|
-
grantPermission(requestParameters:
|
|
7321
|
+
grantPermission(requestParameters: ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
7072
7322
|
}
|
|
7073
7323
|
|
|
7074
7324
|
/**
|
|
@@ -9568,16 +9818,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator: (configurati
|
|
|
9568
9818
|
*
|
|
9569
9819
|
* @param {string} [policy] Name of policy
|
|
9570
9820
|
* @param {string} [displayName] Display name of attachment
|
|
9571
|
-
* @param {string} [group] Name of group
|
|
9572
9821
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9822
|
+
* @param {string} [group] Name of group
|
|
9573
9823
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9574
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9575
9824
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9576
9825
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9826
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9577
9827
|
* @param {*} [options] Override http request option.
|
|
9578
9828
|
* @throws {RequiredError}
|
|
9579
9829
|
*/
|
|
9580
|
-
searchAttachments: (policy?: string, displayName?: string,
|
|
9830
|
+
searchAttachments: (policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9581
9831
|
/**
|
|
9582
9832
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9583
9833
|
* @param {string} name Name of attachment
|
|
@@ -9636,16 +9886,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFp: (configuration?: Configurat
|
|
|
9636
9886
|
*
|
|
9637
9887
|
* @param {string} [policy] Name of policy
|
|
9638
9888
|
* @param {string} [displayName] Display name of attachment
|
|
9639
|
-
* @param {string} [group] Name of group
|
|
9640
9889
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9890
|
+
* @param {string} [group] Name of group
|
|
9641
9891
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9642
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9643
9892
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9644
9893
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9894
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9645
9895
|
* @param {*} [options] Override http request option.
|
|
9646
9896
|
* @throws {RequiredError}
|
|
9647
9897
|
*/
|
|
9648
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9898
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttachmentList>>;
|
|
9649
9899
|
/**
|
|
9650
9900
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9651
9901
|
* @param {string} name Name of attachment
|
|
@@ -9704,16 +9954,16 @@ declare const StorageHaloRunV1alpha1AttachmentApiFactory: (configuration?: Confi
|
|
|
9704
9954
|
*
|
|
9705
9955
|
* @param {string} [policy] Name of policy
|
|
9706
9956
|
* @param {string} [displayName] Display name of attachment
|
|
9707
|
-
* @param {string} [group] Name of group
|
|
9708
9957
|
* @param {string} [uploadedBy] Name of user who uploaded the attachment
|
|
9958
|
+
* @param {string} [group] Name of group
|
|
9709
9959
|
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
9710
|
-
* @param {number} [page] The page number. Zero indicates no page.
|
|
9711
9960
|
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
9712
9961
|
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
9962
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
9713
9963
|
* @param {*} [options] Override http request option.
|
|
9714
9964
|
* @throws {RequiredError}
|
|
9715
9965
|
*/
|
|
9716
|
-
searchAttachments(policy?: string, displayName?: string,
|
|
9966
|
+
searchAttachments(policy?: string, displayName?: string, uploadedBy?: string, group?: string, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, page?: number, options?: any): AxiosPromise<AttachmentList>;
|
|
9717
9967
|
/**
|
|
9718
9968
|
* Update storage.halo.run/v1alpha1/Attachment
|
|
9719
9969
|
* @param {string} name Name of attachment
|
|
@@ -9821,29 +10071,23 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9821
10071
|
*/
|
|
9822
10072
|
readonly displayName?: string;
|
|
9823
10073
|
/**
|
|
9824
|
-
* Name of
|
|
10074
|
+
* Name of user who uploaded the attachment
|
|
9825
10075
|
* @type {string}
|
|
9826
10076
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9827
10077
|
*/
|
|
9828
|
-
readonly
|
|
10078
|
+
readonly uploadedBy?: string;
|
|
9829
10079
|
/**
|
|
9830
|
-
* Name of
|
|
10080
|
+
* Name of group
|
|
9831
10081
|
* @type {string}
|
|
9832
10082
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9833
10083
|
*/
|
|
9834
|
-
readonly
|
|
10084
|
+
readonly group?: string;
|
|
9835
10085
|
/**
|
|
9836
10086
|
* Size of one page. Zero indicates no limit.
|
|
9837
10087
|
* @type {number}
|
|
9838
10088
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9839
10089
|
*/
|
|
9840
10090
|
readonly size?: number;
|
|
9841
|
-
/**
|
|
9842
|
-
* The page number. Zero indicates no page.
|
|
9843
|
-
* @type {number}
|
|
9844
|
-
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9845
|
-
*/
|
|
9846
|
-
readonly page?: number;
|
|
9847
10091
|
/**
|
|
9848
10092
|
* Label selector for filtering.
|
|
9849
10093
|
* @type {Array<string>}
|
|
@@ -9856,6 +10100,12 @@ interface StorageHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest {
|
|
|
9856
10100
|
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
9857
10101
|
*/
|
|
9858
10102
|
readonly fieldSelector?: Array<string>;
|
|
10103
|
+
/**
|
|
10104
|
+
* The page number. Zero indicates no page.
|
|
10105
|
+
* @type {number}
|
|
10106
|
+
* @memberof StorageHaloRunV1alpha1AttachmentApiSearchAttachments
|
|
10107
|
+
*/
|
|
10108
|
+
readonly page?: number;
|
|
9859
10109
|
}
|
|
9860
10110
|
/**
|
|
9861
10111
|
* Request parameters for updatestorageHaloRunV1alpha1Attachment operation in StorageHaloRunV1alpha1AttachmentApi.
|
|
@@ -13242,4 +13492,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
13242
13492
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
13243
13493
|
}
|
|
13244
13494
|
|
|
13245
|
-
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, 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, 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 };
|
|
13495
|
+
export { ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiPublishSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CompactPost, CompactPostVisibleEnum, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentWrapper, Contributor, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, Setting, 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 };
|