@halo-dev/api-client 0.0.7 → 0.0.10
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 +435 -0
- package/dist/index.d.ts +734 -9
- package/dist/index.mjs +424 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -431,6 +431,12 @@ interface LinkGroupSpec {
|
|
|
431
431
|
* @memberof LinkGroupSpec
|
|
432
432
|
*/
|
|
433
433
|
priority?: number;
|
|
434
|
+
/**
|
|
435
|
+
* Names of links below this group.
|
|
436
|
+
* @type {Set<string>}
|
|
437
|
+
* @memberof LinkGroupSpec
|
|
438
|
+
*/
|
|
439
|
+
links?: Set<string>;
|
|
434
440
|
}
|
|
435
441
|
/**
|
|
436
442
|
*
|
|
@@ -462,12 +468,6 @@ interface LinkSpec {
|
|
|
462
468
|
* @memberof LinkSpec
|
|
463
469
|
*/
|
|
464
470
|
description?: string;
|
|
465
|
-
/**
|
|
466
|
-
*
|
|
467
|
-
* @type {string}
|
|
468
|
-
* @memberof LinkSpec
|
|
469
|
-
*/
|
|
470
|
-
groupName?: string;
|
|
471
471
|
/**
|
|
472
472
|
*
|
|
473
473
|
* @type {number}
|
|
@@ -512,6 +512,290 @@ interface LoginHistory {
|
|
|
512
512
|
*/
|
|
513
513
|
reason?: string;
|
|
514
514
|
}
|
|
515
|
+
/**
|
|
516
|
+
*
|
|
517
|
+
* @export
|
|
518
|
+
* @interface Menu
|
|
519
|
+
*/
|
|
520
|
+
interface Menu {
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @type {MenuSpec}
|
|
524
|
+
* @memberof Menu
|
|
525
|
+
*/
|
|
526
|
+
spec: MenuSpec;
|
|
527
|
+
/**
|
|
528
|
+
*
|
|
529
|
+
* @type {string}
|
|
530
|
+
* @memberof Menu
|
|
531
|
+
*/
|
|
532
|
+
apiVersion: string;
|
|
533
|
+
/**
|
|
534
|
+
*
|
|
535
|
+
* @type {string}
|
|
536
|
+
* @memberof Menu
|
|
537
|
+
*/
|
|
538
|
+
kind: string;
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @type {Metadata}
|
|
542
|
+
* @memberof Menu
|
|
543
|
+
*/
|
|
544
|
+
metadata: Metadata;
|
|
545
|
+
}
|
|
546
|
+
/**
|
|
547
|
+
*
|
|
548
|
+
* @export
|
|
549
|
+
* @interface MenuItem
|
|
550
|
+
*/
|
|
551
|
+
interface MenuItem {
|
|
552
|
+
/**
|
|
553
|
+
*
|
|
554
|
+
* @type {MenuItemSpec}
|
|
555
|
+
* @memberof MenuItem
|
|
556
|
+
*/
|
|
557
|
+
spec: MenuItemSpec;
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @type {MenuItemStatus}
|
|
561
|
+
* @memberof MenuItem
|
|
562
|
+
*/
|
|
563
|
+
status?: MenuItemStatus;
|
|
564
|
+
/**
|
|
565
|
+
*
|
|
566
|
+
* @type {string}
|
|
567
|
+
* @memberof MenuItem
|
|
568
|
+
*/
|
|
569
|
+
apiVersion: string;
|
|
570
|
+
/**
|
|
571
|
+
*
|
|
572
|
+
* @type {string}
|
|
573
|
+
* @memberof MenuItem
|
|
574
|
+
*/
|
|
575
|
+
kind: string;
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @type {Metadata}
|
|
579
|
+
* @memberof MenuItem
|
|
580
|
+
*/
|
|
581
|
+
metadata: Metadata;
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
*
|
|
585
|
+
* @export
|
|
586
|
+
* @interface MenuItemList
|
|
587
|
+
*/
|
|
588
|
+
interface MenuItemList {
|
|
589
|
+
/**
|
|
590
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
591
|
+
* @type {number}
|
|
592
|
+
* @memberof MenuItemList
|
|
593
|
+
*/
|
|
594
|
+
page: number;
|
|
595
|
+
/**
|
|
596
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
597
|
+
* @type {number}
|
|
598
|
+
* @memberof MenuItemList
|
|
599
|
+
*/
|
|
600
|
+
size: number;
|
|
601
|
+
/**
|
|
602
|
+
* Total elements.
|
|
603
|
+
* @type {number}
|
|
604
|
+
* @memberof MenuItemList
|
|
605
|
+
*/
|
|
606
|
+
total: number;
|
|
607
|
+
/**
|
|
608
|
+
* A chunk of items.
|
|
609
|
+
* @type {Array<MenuItem>}
|
|
610
|
+
* @memberof MenuItemList
|
|
611
|
+
*/
|
|
612
|
+
items: Array<MenuItem>;
|
|
613
|
+
/**
|
|
614
|
+
* Indicates whether current page is the first page.
|
|
615
|
+
* @type {boolean}
|
|
616
|
+
* @memberof MenuItemList
|
|
617
|
+
*/
|
|
618
|
+
first: boolean;
|
|
619
|
+
/**
|
|
620
|
+
* Indicates whether current page is the last page.
|
|
621
|
+
* @type {boolean}
|
|
622
|
+
* @memberof MenuItemList
|
|
623
|
+
*/
|
|
624
|
+
last: boolean;
|
|
625
|
+
/**
|
|
626
|
+
* Indicates whether current page has previous page.
|
|
627
|
+
* @type {boolean}
|
|
628
|
+
* @memberof MenuItemList
|
|
629
|
+
*/
|
|
630
|
+
hasNext: boolean;
|
|
631
|
+
/**
|
|
632
|
+
* Indicates whether current page has previous page.
|
|
633
|
+
* @type {boolean}
|
|
634
|
+
* @memberof MenuItemList
|
|
635
|
+
*/
|
|
636
|
+
hasPrevious: boolean;
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
* Page reference.
|
|
640
|
+
* @export
|
|
641
|
+
* @interface MenuItemRef
|
|
642
|
+
*/
|
|
643
|
+
interface MenuItemRef {
|
|
644
|
+
/**
|
|
645
|
+
* Reference name.
|
|
646
|
+
* @type {string}
|
|
647
|
+
* @memberof MenuItemRef
|
|
648
|
+
*/
|
|
649
|
+
name: string;
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* The spec of menu item.
|
|
653
|
+
* @export
|
|
654
|
+
* @interface MenuItemSpec
|
|
655
|
+
*/
|
|
656
|
+
interface MenuItemSpec {
|
|
657
|
+
/**
|
|
658
|
+
* The display name of menu item.
|
|
659
|
+
* @type {string}
|
|
660
|
+
* @memberof MenuItemSpec
|
|
661
|
+
*/
|
|
662
|
+
displayName?: string;
|
|
663
|
+
/**
|
|
664
|
+
* The href of this menu item.
|
|
665
|
+
* @type {string}
|
|
666
|
+
* @memberof MenuItemSpec
|
|
667
|
+
*/
|
|
668
|
+
href?: string;
|
|
669
|
+
/**
|
|
670
|
+
* The priority is for ordering.
|
|
671
|
+
* @type {number}
|
|
672
|
+
* @memberof MenuItemSpec
|
|
673
|
+
*/
|
|
674
|
+
priority?: number;
|
|
675
|
+
/**
|
|
676
|
+
* Children of this menu item
|
|
677
|
+
* @type {Set<string>}
|
|
678
|
+
* @memberof MenuItemSpec
|
|
679
|
+
*/
|
|
680
|
+
children?: Set<string>;
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @type {MenuItemRef}
|
|
684
|
+
* @memberof MenuItemSpec
|
|
685
|
+
*/
|
|
686
|
+
categoryRef?: MenuItemRef;
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @type {MenuItemRef}
|
|
690
|
+
* @memberof MenuItemSpec
|
|
691
|
+
*/
|
|
692
|
+
tagRef?: MenuItemRef;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {MenuItemRef}
|
|
696
|
+
* @memberof MenuItemSpec
|
|
697
|
+
*/
|
|
698
|
+
postRef?: MenuItemRef;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {MenuItemRef}
|
|
702
|
+
* @memberof MenuItemSpec
|
|
703
|
+
*/
|
|
704
|
+
pageRef?: MenuItemRef;
|
|
705
|
+
}
|
|
706
|
+
/**
|
|
707
|
+
* The status of menu item.
|
|
708
|
+
* @export
|
|
709
|
+
* @interface MenuItemStatus
|
|
710
|
+
*/
|
|
711
|
+
interface MenuItemStatus {
|
|
712
|
+
/**
|
|
713
|
+
* Calculated Display name of menu item.
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof MenuItemStatus
|
|
716
|
+
*/
|
|
717
|
+
displayName?: string;
|
|
718
|
+
/**
|
|
719
|
+
* Calculated href of manu item.
|
|
720
|
+
* @type {string}
|
|
721
|
+
* @memberof MenuItemStatus
|
|
722
|
+
*/
|
|
723
|
+
href?: string;
|
|
724
|
+
}
|
|
725
|
+
/**
|
|
726
|
+
*
|
|
727
|
+
* @export
|
|
728
|
+
* @interface MenuList
|
|
729
|
+
*/
|
|
730
|
+
interface MenuList {
|
|
731
|
+
/**
|
|
732
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
733
|
+
* @type {number}
|
|
734
|
+
* @memberof MenuList
|
|
735
|
+
*/
|
|
736
|
+
page: number;
|
|
737
|
+
/**
|
|
738
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
739
|
+
* @type {number}
|
|
740
|
+
* @memberof MenuList
|
|
741
|
+
*/
|
|
742
|
+
size: number;
|
|
743
|
+
/**
|
|
744
|
+
* Total elements.
|
|
745
|
+
* @type {number}
|
|
746
|
+
* @memberof MenuList
|
|
747
|
+
*/
|
|
748
|
+
total: number;
|
|
749
|
+
/**
|
|
750
|
+
* A chunk of items.
|
|
751
|
+
* @type {Array<Menu>}
|
|
752
|
+
* @memberof MenuList
|
|
753
|
+
*/
|
|
754
|
+
items: Array<Menu>;
|
|
755
|
+
/**
|
|
756
|
+
* Indicates whether current page is the first page.
|
|
757
|
+
* @type {boolean}
|
|
758
|
+
* @memberof MenuList
|
|
759
|
+
*/
|
|
760
|
+
first: boolean;
|
|
761
|
+
/**
|
|
762
|
+
* Indicates whether current page is the last page.
|
|
763
|
+
* @type {boolean}
|
|
764
|
+
* @memberof MenuList
|
|
765
|
+
*/
|
|
766
|
+
last: boolean;
|
|
767
|
+
/**
|
|
768
|
+
* Indicates whether current page has previous page.
|
|
769
|
+
* @type {boolean}
|
|
770
|
+
* @memberof MenuList
|
|
771
|
+
*/
|
|
772
|
+
hasNext: boolean;
|
|
773
|
+
/**
|
|
774
|
+
* Indicates whether current page has previous page.
|
|
775
|
+
* @type {boolean}
|
|
776
|
+
* @memberof MenuList
|
|
777
|
+
*/
|
|
778
|
+
hasPrevious: boolean;
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* The spec of menu.
|
|
782
|
+
* @export
|
|
783
|
+
* @interface MenuSpec
|
|
784
|
+
*/
|
|
785
|
+
interface MenuSpec {
|
|
786
|
+
/**
|
|
787
|
+
* The display name of the menu.
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof MenuSpec
|
|
790
|
+
*/
|
|
791
|
+
displayName: string;
|
|
792
|
+
/**
|
|
793
|
+
* Names of menu children below this menu.
|
|
794
|
+
* @type {Set<string>}
|
|
795
|
+
* @memberof MenuSpec
|
|
796
|
+
*/
|
|
797
|
+
menuItems?: Set<string>;
|
|
798
|
+
}
|
|
515
799
|
/**
|
|
516
800
|
*
|
|
517
801
|
* @export
|
|
@@ -1540,13 +1824,25 @@ interface ThemeSpec {
|
|
|
1540
1824
|
* @type {string}
|
|
1541
1825
|
* @memberof ThemeSpec
|
|
1542
1826
|
*/
|
|
1543
|
-
version
|
|
1827
|
+
version: string;
|
|
1828
|
+
/**
|
|
1829
|
+
*
|
|
1830
|
+
* @type {string}
|
|
1831
|
+
* @memberof ThemeSpec
|
|
1832
|
+
*/
|
|
1833
|
+
require: string;
|
|
1544
1834
|
/**
|
|
1545
1835
|
*
|
|
1546
1836
|
* @type {string}
|
|
1547
1837
|
* @memberof ThemeSpec
|
|
1548
1838
|
*/
|
|
1549
|
-
|
|
1839
|
+
settingName?: string;
|
|
1840
|
+
/**
|
|
1841
|
+
*
|
|
1842
|
+
* @type {string}
|
|
1843
|
+
* @memberof ThemeSpec
|
|
1844
|
+
*/
|
|
1845
|
+
configMapName?: string;
|
|
1550
1846
|
}
|
|
1551
1847
|
/**
|
|
1552
1848
|
*
|
|
@@ -1800,6 +2096,61 @@ declare class ApiHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
1800
2096
|
*/
|
|
1801
2097
|
installPlugin(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
1802
2098
|
}
|
|
2099
|
+
/**
|
|
2100
|
+
* ApiHaloRunV1alpha1ThemeApi - axios parameter creator
|
|
2101
|
+
* @export
|
|
2102
|
+
*/
|
|
2103
|
+
declare const ApiHaloRunV1alpha1ThemeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2104
|
+
/**
|
|
2105
|
+
* Install a theme by uploading a zip file.
|
|
2106
|
+
* @param {any} file
|
|
2107
|
+
* @param {*} [options] Override http request option.
|
|
2108
|
+
* @throws {RequiredError}
|
|
2109
|
+
*/
|
|
2110
|
+
installTheme: (file: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2111
|
+
};
|
|
2112
|
+
/**
|
|
2113
|
+
* ApiHaloRunV1alpha1ThemeApi - functional programming interface
|
|
2114
|
+
* @export
|
|
2115
|
+
*/
|
|
2116
|
+
declare const ApiHaloRunV1alpha1ThemeApiFp: (configuration?: Configuration) => {
|
|
2117
|
+
/**
|
|
2118
|
+
* Install a theme by uploading a zip file.
|
|
2119
|
+
* @param {any} file
|
|
2120
|
+
* @param {*} [options] Override http request option.
|
|
2121
|
+
* @throws {RequiredError}
|
|
2122
|
+
*/
|
|
2123
|
+
installTheme(file: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Theme>>;
|
|
2124
|
+
};
|
|
2125
|
+
/**
|
|
2126
|
+
* ApiHaloRunV1alpha1ThemeApi - factory interface
|
|
2127
|
+
* @export
|
|
2128
|
+
*/
|
|
2129
|
+
declare const ApiHaloRunV1alpha1ThemeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2130
|
+
/**
|
|
2131
|
+
* Install a theme by uploading a zip file.
|
|
2132
|
+
* @param {any} file
|
|
2133
|
+
* @param {*} [options] Override http request option.
|
|
2134
|
+
* @throws {RequiredError}
|
|
2135
|
+
*/
|
|
2136
|
+
installTheme(file: any, options?: any): AxiosPromise<Theme>;
|
|
2137
|
+
};
|
|
2138
|
+
/**
|
|
2139
|
+
* ApiHaloRunV1alpha1ThemeApi - object-oriented interface
|
|
2140
|
+
* @export
|
|
2141
|
+
* @class ApiHaloRunV1alpha1ThemeApi
|
|
2142
|
+
* @extends {BaseAPI}
|
|
2143
|
+
*/
|
|
2144
|
+
declare class ApiHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
2145
|
+
/**
|
|
2146
|
+
* Install a theme by uploading a zip file.
|
|
2147
|
+
* @param {any} file
|
|
2148
|
+
* @param {*} [options] Override http request option.
|
|
2149
|
+
* @throws {RequiredError}
|
|
2150
|
+
* @memberof ApiHaloRunV1alpha1ThemeApi
|
|
2151
|
+
*/
|
|
2152
|
+
installTheme(file: any, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
2153
|
+
}
|
|
1803
2154
|
/**
|
|
1804
2155
|
* ApiHaloRunV1alpha1UserApi - axios parameter creator
|
|
1805
2156
|
* @export
|
|
@@ -3306,6 +3657,380 @@ declare class V1alpha1ConfigMapApi extends BaseAPI {
|
|
|
3306
3657
|
*/
|
|
3307
3658
|
updatev1alpha1ConfigMap(name: string, configMap?: ConfigMap, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<ConfigMap, any>>;
|
|
3308
3659
|
}
|
|
3660
|
+
/**
|
|
3661
|
+
* V1alpha1MenuApi - axios parameter creator
|
|
3662
|
+
* @export
|
|
3663
|
+
*/
|
|
3664
|
+
declare const V1alpha1MenuApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3665
|
+
/**
|
|
3666
|
+
* Create v1alpha1/Menu
|
|
3667
|
+
* @param {Menu} [menu] Fresh menu
|
|
3668
|
+
* @param {*} [options] Override http request option.
|
|
3669
|
+
* @throws {RequiredError}
|
|
3670
|
+
*/
|
|
3671
|
+
createv1alpha1Menu: (menu?: Menu, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3672
|
+
/**
|
|
3673
|
+
* Delete v1alpha1/Menu
|
|
3674
|
+
* @param {string} name Name of menu
|
|
3675
|
+
* @param {*} [options] Override http request option.
|
|
3676
|
+
* @throws {RequiredError}
|
|
3677
|
+
*/
|
|
3678
|
+
deletev1alpha1Menu: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3679
|
+
/**
|
|
3680
|
+
* Get v1alpha1/Menu
|
|
3681
|
+
* @param {string} name Name of menu
|
|
3682
|
+
* @param {*} [options] Override http request option.
|
|
3683
|
+
* @throws {RequiredError}
|
|
3684
|
+
*/
|
|
3685
|
+
getv1alpha1Menu: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3686
|
+
/**
|
|
3687
|
+
* List v1alpha1/Menu
|
|
3688
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3689
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3690
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3691
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3692
|
+
* @param {*} [options] Override http request option.
|
|
3693
|
+
* @throws {RequiredError}
|
|
3694
|
+
*/
|
|
3695
|
+
listv1alpha1Menu: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3696
|
+
/**
|
|
3697
|
+
* Update v1alpha1/Menu
|
|
3698
|
+
* @param {string} name Name of menu
|
|
3699
|
+
* @param {Menu} [menu] Updated menu
|
|
3700
|
+
* @param {*} [options] Override http request option.
|
|
3701
|
+
* @throws {RequiredError}
|
|
3702
|
+
*/
|
|
3703
|
+
updatev1alpha1Menu: (name: string, menu?: Menu, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3704
|
+
};
|
|
3705
|
+
/**
|
|
3706
|
+
* V1alpha1MenuApi - functional programming interface
|
|
3707
|
+
* @export
|
|
3708
|
+
*/
|
|
3709
|
+
declare const V1alpha1MenuApiFp: (configuration?: Configuration) => {
|
|
3710
|
+
/**
|
|
3711
|
+
* Create v1alpha1/Menu
|
|
3712
|
+
* @param {Menu} [menu] Fresh menu
|
|
3713
|
+
* @param {*} [options] Override http request option.
|
|
3714
|
+
* @throws {RequiredError}
|
|
3715
|
+
*/
|
|
3716
|
+
createv1alpha1Menu(menu?: Menu, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Menu>>;
|
|
3717
|
+
/**
|
|
3718
|
+
* Delete v1alpha1/Menu
|
|
3719
|
+
* @param {string} name Name of menu
|
|
3720
|
+
* @param {*} [options] Override http request option.
|
|
3721
|
+
* @throws {RequiredError}
|
|
3722
|
+
*/
|
|
3723
|
+
deletev1alpha1Menu(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3724
|
+
/**
|
|
3725
|
+
* Get v1alpha1/Menu
|
|
3726
|
+
* @param {string} name Name of menu
|
|
3727
|
+
* @param {*} [options] Override http request option.
|
|
3728
|
+
* @throws {RequiredError}
|
|
3729
|
+
*/
|
|
3730
|
+
getv1alpha1Menu(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Menu>>;
|
|
3731
|
+
/**
|
|
3732
|
+
* List v1alpha1/Menu
|
|
3733
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3734
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3735
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3736
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3737
|
+
* @param {*} [options] Override http request option.
|
|
3738
|
+
* @throws {RequiredError}
|
|
3739
|
+
*/
|
|
3740
|
+
listv1alpha1Menu(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuList>>;
|
|
3741
|
+
/**
|
|
3742
|
+
* Update v1alpha1/Menu
|
|
3743
|
+
* @param {string} name Name of menu
|
|
3744
|
+
* @param {Menu} [menu] Updated menu
|
|
3745
|
+
* @param {*} [options] Override http request option.
|
|
3746
|
+
* @throws {RequiredError}
|
|
3747
|
+
*/
|
|
3748
|
+
updatev1alpha1Menu(name: string, menu?: Menu, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Menu>>;
|
|
3749
|
+
};
|
|
3750
|
+
/**
|
|
3751
|
+
* V1alpha1MenuApi - factory interface
|
|
3752
|
+
* @export
|
|
3753
|
+
*/
|
|
3754
|
+
declare const V1alpha1MenuApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3755
|
+
/**
|
|
3756
|
+
* Create v1alpha1/Menu
|
|
3757
|
+
* @param {Menu} [menu] Fresh menu
|
|
3758
|
+
* @param {*} [options] Override http request option.
|
|
3759
|
+
* @throws {RequiredError}
|
|
3760
|
+
*/
|
|
3761
|
+
createv1alpha1Menu(menu?: Menu, options?: any): AxiosPromise<Menu>;
|
|
3762
|
+
/**
|
|
3763
|
+
* Delete v1alpha1/Menu
|
|
3764
|
+
* @param {string} name Name of menu
|
|
3765
|
+
* @param {*} [options] Override http request option.
|
|
3766
|
+
* @throws {RequiredError}
|
|
3767
|
+
*/
|
|
3768
|
+
deletev1alpha1Menu(name: string, options?: any): AxiosPromise<void>;
|
|
3769
|
+
/**
|
|
3770
|
+
* Get v1alpha1/Menu
|
|
3771
|
+
* @param {string} name Name of menu
|
|
3772
|
+
* @param {*} [options] Override http request option.
|
|
3773
|
+
* @throws {RequiredError}
|
|
3774
|
+
*/
|
|
3775
|
+
getv1alpha1Menu(name: string, options?: any): AxiosPromise<Menu>;
|
|
3776
|
+
/**
|
|
3777
|
+
* List v1alpha1/Menu
|
|
3778
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3779
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3780
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3781
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3782
|
+
* @param {*} [options] Override http request option.
|
|
3783
|
+
* @throws {RequiredError}
|
|
3784
|
+
*/
|
|
3785
|
+
listv1alpha1Menu(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<MenuList>;
|
|
3786
|
+
/**
|
|
3787
|
+
* Update v1alpha1/Menu
|
|
3788
|
+
* @param {string} name Name of menu
|
|
3789
|
+
* @param {Menu} [menu] Updated menu
|
|
3790
|
+
* @param {*} [options] Override http request option.
|
|
3791
|
+
* @throws {RequiredError}
|
|
3792
|
+
*/
|
|
3793
|
+
updatev1alpha1Menu(name: string, menu?: Menu, options?: any): AxiosPromise<Menu>;
|
|
3794
|
+
};
|
|
3795
|
+
/**
|
|
3796
|
+
* V1alpha1MenuApi - object-oriented interface
|
|
3797
|
+
* @export
|
|
3798
|
+
* @class V1alpha1MenuApi
|
|
3799
|
+
* @extends {BaseAPI}
|
|
3800
|
+
*/
|
|
3801
|
+
declare class V1alpha1MenuApi extends BaseAPI {
|
|
3802
|
+
/**
|
|
3803
|
+
* Create v1alpha1/Menu
|
|
3804
|
+
* @param {Menu} [menu] Fresh menu
|
|
3805
|
+
* @param {*} [options] Override http request option.
|
|
3806
|
+
* @throws {RequiredError}
|
|
3807
|
+
* @memberof V1alpha1MenuApi
|
|
3808
|
+
*/
|
|
3809
|
+
createv1alpha1Menu(menu?: Menu, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Menu, any>>;
|
|
3810
|
+
/**
|
|
3811
|
+
* Delete v1alpha1/Menu
|
|
3812
|
+
* @param {string} name Name of menu
|
|
3813
|
+
* @param {*} [options] Override http request option.
|
|
3814
|
+
* @throws {RequiredError}
|
|
3815
|
+
* @memberof V1alpha1MenuApi
|
|
3816
|
+
*/
|
|
3817
|
+
deletev1alpha1Menu(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3818
|
+
/**
|
|
3819
|
+
* Get v1alpha1/Menu
|
|
3820
|
+
* @param {string} name Name of menu
|
|
3821
|
+
* @param {*} [options] Override http request option.
|
|
3822
|
+
* @throws {RequiredError}
|
|
3823
|
+
* @memberof V1alpha1MenuApi
|
|
3824
|
+
*/
|
|
3825
|
+
getv1alpha1Menu(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Menu, any>>;
|
|
3826
|
+
/**
|
|
3827
|
+
* List v1alpha1/Menu
|
|
3828
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3829
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3830
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3831
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3832
|
+
* @param {*} [options] Override http request option.
|
|
3833
|
+
* @throws {RequiredError}
|
|
3834
|
+
* @memberof V1alpha1MenuApi
|
|
3835
|
+
*/
|
|
3836
|
+
listv1alpha1Menu(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MenuList, any>>;
|
|
3837
|
+
/**
|
|
3838
|
+
* Update v1alpha1/Menu
|
|
3839
|
+
* @param {string} name Name of menu
|
|
3840
|
+
* @param {Menu} [menu] Updated menu
|
|
3841
|
+
* @param {*} [options] Override http request option.
|
|
3842
|
+
* @throws {RequiredError}
|
|
3843
|
+
* @memberof V1alpha1MenuApi
|
|
3844
|
+
*/
|
|
3845
|
+
updatev1alpha1Menu(name: string, menu?: Menu, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Menu, any>>;
|
|
3846
|
+
}
|
|
3847
|
+
/**
|
|
3848
|
+
* V1alpha1MenuItemApi - axios parameter creator
|
|
3849
|
+
* @export
|
|
3850
|
+
*/
|
|
3851
|
+
declare const V1alpha1MenuItemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3852
|
+
/**
|
|
3853
|
+
* Create v1alpha1/MenuItem
|
|
3854
|
+
* @param {MenuItem} [menuItem] Fresh menuitem
|
|
3855
|
+
* @param {*} [options] Override http request option.
|
|
3856
|
+
* @throws {RequiredError}
|
|
3857
|
+
*/
|
|
3858
|
+
createv1alpha1MenuItem: (menuItem?: MenuItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3859
|
+
/**
|
|
3860
|
+
* Delete v1alpha1/MenuItem
|
|
3861
|
+
* @param {string} name Name of menuitem
|
|
3862
|
+
* @param {*} [options] Override http request option.
|
|
3863
|
+
* @throws {RequiredError}
|
|
3864
|
+
*/
|
|
3865
|
+
deletev1alpha1MenuItem: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3866
|
+
/**
|
|
3867
|
+
* Get v1alpha1/MenuItem
|
|
3868
|
+
* @param {string} name Name of menuitem
|
|
3869
|
+
* @param {*} [options] Override http request option.
|
|
3870
|
+
* @throws {RequiredError}
|
|
3871
|
+
*/
|
|
3872
|
+
getv1alpha1MenuItem: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3873
|
+
/**
|
|
3874
|
+
* List v1alpha1/MenuItem
|
|
3875
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3876
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3877
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3878
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3879
|
+
* @param {*} [options] Override http request option.
|
|
3880
|
+
* @throws {RequiredError}
|
|
3881
|
+
*/
|
|
3882
|
+
listv1alpha1MenuItem: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3883
|
+
/**
|
|
3884
|
+
* Update v1alpha1/MenuItem
|
|
3885
|
+
* @param {string} name Name of menuitem
|
|
3886
|
+
* @param {MenuItem} [menuItem] Updated menuitem
|
|
3887
|
+
* @param {*} [options] Override http request option.
|
|
3888
|
+
* @throws {RequiredError}
|
|
3889
|
+
*/
|
|
3890
|
+
updatev1alpha1MenuItem: (name: string, menuItem?: MenuItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3891
|
+
};
|
|
3892
|
+
/**
|
|
3893
|
+
* V1alpha1MenuItemApi - functional programming interface
|
|
3894
|
+
* @export
|
|
3895
|
+
*/
|
|
3896
|
+
declare const V1alpha1MenuItemApiFp: (configuration?: Configuration) => {
|
|
3897
|
+
/**
|
|
3898
|
+
* Create v1alpha1/MenuItem
|
|
3899
|
+
* @param {MenuItem} [menuItem] Fresh menuitem
|
|
3900
|
+
* @param {*} [options] Override http request option.
|
|
3901
|
+
* @throws {RequiredError}
|
|
3902
|
+
*/
|
|
3903
|
+
createv1alpha1MenuItem(menuItem?: MenuItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItem>>;
|
|
3904
|
+
/**
|
|
3905
|
+
* Delete v1alpha1/MenuItem
|
|
3906
|
+
* @param {string} name Name of menuitem
|
|
3907
|
+
* @param {*} [options] Override http request option.
|
|
3908
|
+
* @throws {RequiredError}
|
|
3909
|
+
*/
|
|
3910
|
+
deletev1alpha1MenuItem(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3911
|
+
/**
|
|
3912
|
+
* Get v1alpha1/MenuItem
|
|
3913
|
+
* @param {string} name Name of menuitem
|
|
3914
|
+
* @param {*} [options] Override http request option.
|
|
3915
|
+
* @throws {RequiredError}
|
|
3916
|
+
*/
|
|
3917
|
+
getv1alpha1MenuItem(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItem>>;
|
|
3918
|
+
/**
|
|
3919
|
+
* List v1alpha1/MenuItem
|
|
3920
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3921
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3922
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3923
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3924
|
+
* @param {*} [options] Override http request option.
|
|
3925
|
+
* @throws {RequiredError}
|
|
3926
|
+
*/
|
|
3927
|
+
listv1alpha1MenuItem(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItemList>>;
|
|
3928
|
+
/**
|
|
3929
|
+
* Update v1alpha1/MenuItem
|
|
3930
|
+
* @param {string} name Name of menuitem
|
|
3931
|
+
* @param {MenuItem} [menuItem] Updated menuitem
|
|
3932
|
+
* @param {*} [options] Override http request option.
|
|
3933
|
+
* @throws {RequiredError}
|
|
3934
|
+
*/
|
|
3935
|
+
updatev1alpha1MenuItem(name: string, menuItem?: MenuItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MenuItem>>;
|
|
3936
|
+
};
|
|
3937
|
+
/**
|
|
3938
|
+
* V1alpha1MenuItemApi - factory interface
|
|
3939
|
+
* @export
|
|
3940
|
+
*/
|
|
3941
|
+
declare const V1alpha1MenuItemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3942
|
+
/**
|
|
3943
|
+
* Create v1alpha1/MenuItem
|
|
3944
|
+
* @param {MenuItem} [menuItem] Fresh menuitem
|
|
3945
|
+
* @param {*} [options] Override http request option.
|
|
3946
|
+
* @throws {RequiredError}
|
|
3947
|
+
*/
|
|
3948
|
+
createv1alpha1MenuItem(menuItem?: MenuItem, options?: any): AxiosPromise<MenuItem>;
|
|
3949
|
+
/**
|
|
3950
|
+
* Delete v1alpha1/MenuItem
|
|
3951
|
+
* @param {string} name Name of menuitem
|
|
3952
|
+
* @param {*} [options] Override http request option.
|
|
3953
|
+
* @throws {RequiredError}
|
|
3954
|
+
*/
|
|
3955
|
+
deletev1alpha1MenuItem(name: string, options?: any): AxiosPromise<void>;
|
|
3956
|
+
/**
|
|
3957
|
+
* Get v1alpha1/MenuItem
|
|
3958
|
+
* @param {string} name Name of menuitem
|
|
3959
|
+
* @param {*} [options] Override http request option.
|
|
3960
|
+
* @throws {RequiredError}
|
|
3961
|
+
*/
|
|
3962
|
+
getv1alpha1MenuItem(name: string, options?: any): AxiosPromise<MenuItem>;
|
|
3963
|
+
/**
|
|
3964
|
+
* List v1alpha1/MenuItem
|
|
3965
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
3966
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
3967
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
3968
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
3969
|
+
* @param {*} [options] Override http request option.
|
|
3970
|
+
* @throws {RequiredError}
|
|
3971
|
+
*/
|
|
3972
|
+
listv1alpha1MenuItem(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<MenuItemList>;
|
|
3973
|
+
/**
|
|
3974
|
+
* Update v1alpha1/MenuItem
|
|
3975
|
+
* @param {string} name Name of menuitem
|
|
3976
|
+
* @param {MenuItem} [menuItem] Updated menuitem
|
|
3977
|
+
* @param {*} [options] Override http request option.
|
|
3978
|
+
* @throws {RequiredError}
|
|
3979
|
+
*/
|
|
3980
|
+
updatev1alpha1MenuItem(name: string, menuItem?: MenuItem, options?: any): AxiosPromise<MenuItem>;
|
|
3981
|
+
};
|
|
3982
|
+
/**
|
|
3983
|
+
* V1alpha1MenuItemApi - object-oriented interface
|
|
3984
|
+
* @export
|
|
3985
|
+
* @class V1alpha1MenuItemApi
|
|
3986
|
+
* @extends {BaseAPI}
|
|
3987
|
+
*/
|
|
3988
|
+
declare class V1alpha1MenuItemApi extends BaseAPI {
|
|
3989
|
+
/**
|
|
3990
|
+
* Create v1alpha1/MenuItem
|
|
3991
|
+
* @param {MenuItem} [menuItem] Fresh menuitem
|
|
3992
|
+
* @param {*} [options] Override http request option.
|
|
3993
|
+
* @throws {RequiredError}
|
|
3994
|
+
* @memberof V1alpha1MenuItemApi
|
|
3995
|
+
*/
|
|
3996
|
+
createv1alpha1MenuItem(menuItem?: MenuItem, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MenuItem, any>>;
|
|
3997
|
+
/**
|
|
3998
|
+
* Delete v1alpha1/MenuItem
|
|
3999
|
+
* @param {string} name Name of menuitem
|
|
4000
|
+
* @param {*} [options] Override http request option.
|
|
4001
|
+
* @throws {RequiredError}
|
|
4002
|
+
* @memberof V1alpha1MenuItemApi
|
|
4003
|
+
*/
|
|
4004
|
+
deletev1alpha1MenuItem(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
4005
|
+
/**
|
|
4006
|
+
* Get v1alpha1/MenuItem
|
|
4007
|
+
* @param {string} name Name of menuitem
|
|
4008
|
+
* @param {*} [options] Override http request option.
|
|
4009
|
+
* @throws {RequiredError}
|
|
4010
|
+
* @memberof V1alpha1MenuItemApi
|
|
4011
|
+
*/
|
|
4012
|
+
getv1alpha1MenuItem(name: string, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MenuItem, any>>;
|
|
4013
|
+
/**
|
|
4014
|
+
* List v1alpha1/MenuItem
|
|
4015
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
4016
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
4017
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
4018
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
4019
|
+
* @param {*} [options] Override http request option.
|
|
4020
|
+
* @throws {RequiredError}
|
|
4021
|
+
* @memberof V1alpha1MenuItemApi
|
|
4022
|
+
*/
|
|
4023
|
+
listv1alpha1MenuItem(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MenuItemList, any>>;
|
|
4024
|
+
/**
|
|
4025
|
+
* Update v1alpha1/MenuItem
|
|
4026
|
+
* @param {string} name Name of menuitem
|
|
4027
|
+
* @param {MenuItem} [menuItem] Updated menuitem
|
|
4028
|
+
* @param {*} [options] Override http request option.
|
|
4029
|
+
* @throws {RequiredError}
|
|
4030
|
+
* @memberof V1alpha1MenuItemApi
|
|
4031
|
+
*/
|
|
4032
|
+
updatev1alpha1MenuItem(name: string, menuItem?: MenuItem, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<MenuItem, any>>;
|
|
4033
|
+
}
|
|
3309
4034
|
/**
|
|
3310
4035
|
* V1alpha1PersonalAccessTokenApi - axios parameter creator
|
|
3311
4036
|
* @export
|
|
@@ -4242,4 +4967,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
4242
4967
|
updatev1alpha1User(name: string, user?: User, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
4243
4968
|
}
|
|
4244
4969
|
|
|
4245
|
-
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Author, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|
|
4970
|
+
export { ApiHaloRunV1alpha1PluginApi, ApiHaloRunV1alpha1PluginApiAxiosParamCreator, ApiHaloRunV1alpha1PluginApiFactory, ApiHaloRunV1alpha1PluginApiFp, ApiHaloRunV1alpha1ThemeApi, ApiHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiHaloRunV1alpha1ThemeApiFactory, ApiHaloRunV1alpha1ThemeApiFp, ApiHaloRunV1alpha1UserApi, ApiHaloRunV1alpha1UserApiAxiosParamCreator, ApiHaloRunV1alpha1UserApiFactory, ApiHaloRunV1alpha1UserApiFp, Apple, AppleSpec, ApplesControllerApi, ApplesControllerApiAxiosParamCreator, ApplesControllerApiFactory, ApplesControllerApiFp, Author, ChangePasswordRequest, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, CoreHaloRunV1alpha1LinkApi, CoreHaloRunV1alpha1LinkApiAxiosParamCreator, CoreHaloRunV1alpha1LinkApiFactory, CoreHaloRunV1alpha1LinkApiFp, CoreHaloRunV1alpha1LinkGroupApi, CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator, CoreHaloRunV1alpha1LinkGroupApiFactory, CoreHaloRunV1alpha1LinkGroupApiFp, FileReverseProxyProvider, GrantRequest, License, Link, LinkGroup, LinkGroupSpec, LinkSpec, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemRef, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, PolicyRule, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, RunHaloTemplateV1alpha1AppleApi, RunHaloTemplateV1alpha1AppleApiAxiosParamCreator, RunHaloTemplateV1alpha1AppleApiFactory, RunHaloTemplateV1alpha1AppleApiFp, Setting, SettingList, SettingSpec, Subject, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeList, ThemeSpec, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|