zudoku 0.18.8 → 0.19.0
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/app/main.js +2 -1
- package/dist/app/main.js.map +1 -1
- package/dist/config/validators/validate.d.ts +370 -0
- package/dist/config/validators/validate.js +12 -0
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/lib/authentication/providers/openid.js +7 -2
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/oas/graphql/index.js +0 -1
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/plugins/api-catalog/Catalog.d.ts +6 -0
- package/dist/lib/plugins/api-catalog/Catalog.js +29 -0
- package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
- package/dist/lib/plugins/api-catalog/index.d.ts +23 -0
- package/dist/lib/plugins/api-catalog/index.js +15 -0
- package/dist/lib/plugins/api-catalog/index.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/PathParams.js +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/vite/plugin-api.js +44 -1
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-component.js +1 -0
- package/dist/vite/plugin-component.js.map +1 -1
- package/lib/{OperationList-DzE32oyS.js → OperationList-DT5Fu9bC.js} +2 -2
- package/lib/{OperationList-DzE32oyS.js.map → OperationList-DT5Fu9bC.js.map} +1 -1
- package/lib/assets/{worker-CyxLedqF.js → worker-C_2va8B8.js} +1 -2
- package/lib/assets/{worker-CyxLedqF.js.map → worker-C_2va8B8.js.map} +1 -1
- package/lib/{createServer-DTiCfoql.js → createServer-BCAHdrpE.js} +1 -2
- package/lib/{createServer-DTiCfoql.js.map → createServer-BCAHdrpE.js.map} +1 -1
- package/lib/{index-NNCc1BSK.js → index-CBctPUfP.js} +4 -3
- package/lib/index-CBctPUfP.js.map +1 -0
- package/lib/zudoku.auth-openid.js +42 -37
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.openapi-worker.js +1 -1
- package/lib/zudoku.plugin-api-catalog.js +121 -0
- package/lib/zudoku.plugin-api-catalog.js.map +1 -0
- package/lib/zudoku.plugin-openapi.js +1 -1
- package/package.json +6 -2
- package/src/app/main.tsx +5 -1
- package/src/lib/authentication/providers/openid.tsx +7 -2
- package/src/lib/oas/graphql/index.ts +0 -1
- package/src/lib/plugins/api-catalog/Catalog.tsx +124 -0
- package/src/lib/plugins/api-catalog/index.tsx +50 -0
- package/src/lib/plugins/openapi/playground/PathParams.tsx +1 -0
- package/lib/index-NNCc1BSK.js.map +0 -1
|
@@ -10,53 +10,116 @@ declare const ApiSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10
10
|
input: z.ZodString;
|
|
11
11
|
}, {
|
|
12
12
|
server: z.ZodOptional<z.ZodString>;
|
|
13
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13
14
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
15
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16
|
+
label: z.ZodString;
|
|
17
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
tags: string[];
|
|
20
|
+
label: string;
|
|
21
|
+
}, {
|
|
22
|
+
tags: string[];
|
|
23
|
+
label: string;
|
|
24
|
+
}>, "many">>;
|
|
14
25
|
}>, "strip", z.ZodTypeAny, {
|
|
15
26
|
type: "url";
|
|
16
27
|
input: string;
|
|
17
28
|
server?: string | undefined;
|
|
29
|
+
id?: string | undefined;
|
|
18
30
|
navigationId?: string | undefined;
|
|
31
|
+
categories?: {
|
|
32
|
+
tags: string[];
|
|
33
|
+
label: string;
|
|
34
|
+
}[] | undefined;
|
|
19
35
|
}, {
|
|
20
36
|
type: "url";
|
|
21
37
|
input: string;
|
|
22
38
|
server?: string | undefined;
|
|
39
|
+
id?: string | undefined;
|
|
23
40
|
navigationId?: string | undefined;
|
|
41
|
+
categories?: {
|
|
42
|
+
tags: string[];
|
|
43
|
+
label: string;
|
|
44
|
+
}[] | undefined;
|
|
24
45
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
25
46
|
type: z.ZodLiteral<"file">;
|
|
26
47
|
input: z.ZodString;
|
|
27
48
|
}, {
|
|
28
49
|
server: z.ZodOptional<z.ZodString>;
|
|
50
|
+
id: z.ZodOptional<z.ZodString>;
|
|
29
51
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
52
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53
|
+
label: z.ZodString;
|
|
54
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
55
|
+
}, "strip", z.ZodTypeAny, {
|
|
56
|
+
tags: string[];
|
|
57
|
+
label: string;
|
|
58
|
+
}, {
|
|
59
|
+
tags: string[];
|
|
60
|
+
label: string;
|
|
61
|
+
}>, "many">>;
|
|
30
62
|
}>, {
|
|
31
63
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
32
64
|
}>, "strip", z.ZodTypeAny, {
|
|
33
65
|
type: "file";
|
|
34
66
|
input: string;
|
|
35
67
|
server?: string | undefined;
|
|
68
|
+
id?: string | undefined;
|
|
36
69
|
navigationId?: string | undefined;
|
|
70
|
+
categories?: {
|
|
71
|
+
tags: string[];
|
|
72
|
+
label: string;
|
|
73
|
+
}[] | undefined;
|
|
37
74
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
38
75
|
}, {
|
|
39
76
|
type: "file";
|
|
40
77
|
input: string;
|
|
41
78
|
server?: string | undefined;
|
|
79
|
+
id?: string | undefined;
|
|
42
80
|
navigationId?: string | undefined;
|
|
81
|
+
categories?: {
|
|
82
|
+
tags: string[];
|
|
83
|
+
label: string;
|
|
84
|
+
}[] | undefined;
|
|
43
85
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
44
86
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
45
87
|
type: z.ZodLiteral<"raw">;
|
|
46
88
|
input: z.ZodString;
|
|
47
89
|
}, {
|
|
48
90
|
server: z.ZodOptional<z.ZodString>;
|
|
91
|
+
id: z.ZodOptional<z.ZodString>;
|
|
49
92
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
93
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94
|
+
label: z.ZodString;
|
|
95
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
|
97
|
+
tags: string[];
|
|
98
|
+
label: string;
|
|
99
|
+
}, {
|
|
100
|
+
tags: string[];
|
|
101
|
+
label: string;
|
|
102
|
+
}>, "many">>;
|
|
50
103
|
}>, "strip", z.ZodTypeAny, {
|
|
51
104
|
type: "raw";
|
|
52
105
|
input: string;
|
|
53
106
|
server?: string | undefined;
|
|
107
|
+
id?: string | undefined;
|
|
54
108
|
navigationId?: string | undefined;
|
|
109
|
+
categories?: {
|
|
110
|
+
tags: string[];
|
|
111
|
+
label: string;
|
|
112
|
+
}[] | undefined;
|
|
55
113
|
}, {
|
|
56
114
|
type: "raw";
|
|
57
115
|
input: string;
|
|
58
116
|
server?: string | undefined;
|
|
117
|
+
id?: string | undefined;
|
|
59
118
|
navigationId?: string | undefined;
|
|
119
|
+
categories?: {
|
|
120
|
+
tags: string[];
|
|
121
|
+
label: string;
|
|
122
|
+
}[] | undefined;
|
|
60
123
|
}>]>;
|
|
61
124
|
declare const SiteMapSchema: z.ZodOptional<z.ZodObject<{
|
|
62
125
|
/**
|
|
@@ -661,106 +724,257 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
661
724
|
input: z.ZodString;
|
|
662
725
|
}, {
|
|
663
726
|
server: z.ZodOptional<z.ZodString>;
|
|
727
|
+
id: z.ZodOptional<z.ZodString>;
|
|
664
728
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
729
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
730
|
+
label: z.ZodString;
|
|
731
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
732
|
+
}, "strip", z.ZodTypeAny, {
|
|
733
|
+
tags: string[];
|
|
734
|
+
label: string;
|
|
735
|
+
}, {
|
|
736
|
+
tags: string[];
|
|
737
|
+
label: string;
|
|
738
|
+
}>, "many">>;
|
|
665
739
|
}>, "strip", z.ZodTypeAny, {
|
|
666
740
|
type: "url";
|
|
667
741
|
input: string;
|
|
668
742
|
server?: string | undefined;
|
|
743
|
+
id?: string | undefined;
|
|
669
744
|
navigationId?: string | undefined;
|
|
745
|
+
categories?: {
|
|
746
|
+
tags: string[];
|
|
747
|
+
label: string;
|
|
748
|
+
}[] | undefined;
|
|
670
749
|
}, {
|
|
671
750
|
type: "url";
|
|
672
751
|
input: string;
|
|
673
752
|
server?: string | undefined;
|
|
753
|
+
id?: string | undefined;
|
|
674
754
|
navigationId?: string | undefined;
|
|
755
|
+
categories?: {
|
|
756
|
+
tags: string[];
|
|
757
|
+
label: string;
|
|
758
|
+
}[] | undefined;
|
|
675
759
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
676
760
|
type: z.ZodLiteral<"file">;
|
|
677
761
|
input: z.ZodString;
|
|
678
762
|
}, {
|
|
679
763
|
server: z.ZodOptional<z.ZodString>;
|
|
764
|
+
id: z.ZodOptional<z.ZodString>;
|
|
680
765
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
766
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
767
|
+
label: z.ZodString;
|
|
768
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
769
|
+
}, "strip", z.ZodTypeAny, {
|
|
770
|
+
tags: string[];
|
|
771
|
+
label: string;
|
|
772
|
+
}, {
|
|
773
|
+
tags: string[];
|
|
774
|
+
label: string;
|
|
775
|
+
}>, "many">>;
|
|
681
776
|
}>, {
|
|
682
777
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
683
778
|
}>, "strip", z.ZodTypeAny, {
|
|
684
779
|
type: "file";
|
|
685
780
|
input: string;
|
|
686
781
|
server?: string | undefined;
|
|
782
|
+
id?: string | undefined;
|
|
687
783
|
navigationId?: string | undefined;
|
|
784
|
+
categories?: {
|
|
785
|
+
tags: string[];
|
|
786
|
+
label: string;
|
|
787
|
+
}[] | undefined;
|
|
688
788
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
689
789
|
}, {
|
|
690
790
|
type: "file";
|
|
691
791
|
input: string;
|
|
692
792
|
server?: string | undefined;
|
|
793
|
+
id?: string | undefined;
|
|
693
794
|
navigationId?: string | undefined;
|
|
795
|
+
categories?: {
|
|
796
|
+
tags: string[];
|
|
797
|
+
label: string;
|
|
798
|
+
}[] | undefined;
|
|
694
799
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
695
800
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
696
801
|
type: z.ZodLiteral<"raw">;
|
|
697
802
|
input: z.ZodString;
|
|
698
803
|
}, {
|
|
699
804
|
server: z.ZodOptional<z.ZodString>;
|
|
805
|
+
id: z.ZodOptional<z.ZodString>;
|
|
700
806
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
807
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
808
|
+
label: z.ZodString;
|
|
809
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
810
|
+
}, "strip", z.ZodTypeAny, {
|
|
811
|
+
tags: string[];
|
|
812
|
+
label: string;
|
|
813
|
+
}, {
|
|
814
|
+
tags: string[];
|
|
815
|
+
label: string;
|
|
816
|
+
}>, "many">>;
|
|
701
817
|
}>, "strip", z.ZodTypeAny, {
|
|
702
818
|
type: "raw";
|
|
703
819
|
input: string;
|
|
704
820
|
server?: string | undefined;
|
|
821
|
+
id?: string | undefined;
|
|
705
822
|
navigationId?: string | undefined;
|
|
823
|
+
categories?: {
|
|
824
|
+
tags: string[];
|
|
825
|
+
label: string;
|
|
826
|
+
}[] | undefined;
|
|
706
827
|
}, {
|
|
707
828
|
type: "raw";
|
|
708
829
|
input: string;
|
|
709
830
|
server?: string | undefined;
|
|
831
|
+
id?: string | undefined;
|
|
710
832
|
navigationId?: string | undefined;
|
|
833
|
+
categories?: {
|
|
834
|
+
tags: string[];
|
|
835
|
+
label: string;
|
|
836
|
+
}[] | undefined;
|
|
711
837
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
712
838
|
type: z.ZodLiteral<"url">;
|
|
713
839
|
input: z.ZodString;
|
|
714
840
|
}, {
|
|
715
841
|
server: z.ZodOptional<z.ZodString>;
|
|
842
|
+
id: z.ZodOptional<z.ZodString>;
|
|
716
843
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
844
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
845
|
+
label: z.ZodString;
|
|
846
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
847
|
+
}, "strip", z.ZodTypeAny, {
|
|
848
|
+
tags: string[];
|
|
849
|
+
label: string;
|
|
850
|
+
}, {
|
|
851
|
+
tags: string[];
|
|
852
|
+
label: string;
|
|
853
|
+
}>, "many">>;
|
|
717
854
|
}>, "strip", z.ZodTypeAny, {
|
|
718
855
|
type: "url";
|
|
719
856
|
input: string;
|
|
720
857
|
server?: string | undefined;
|
|
858
|
+
id?: string | undefined;
|
|
721
859
|
navigationId?: string | undefined;
|
|
860
|
+
categories?: {
|
|
861
|
+
tags: string[];
|
|
862
|
+
label: string;
|
|
863
|
+
}[] | undefined;
|
|
722
864
|
}, {
|
|
723
865
|
type: "url";
|
|
724
866
|
input: string;
|
|
725
867
|
server?: string | undefined;
|
|
868
|
+
id?: string | undefined;
|
|
726
869
|
navigationId?: string | undefined;
|
|
870
|
+
categories?: {
|
|
871
|
+
tags: string[];
|
|
872
|
+
label: string;
|
|
873
|
+
}[] | undefined;
|
|
727
874
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
728
875
|
type: z.ZodLiteral<"file">;
|
|
729
876
|
input: z.ZodString;
|
|
730
877
|
}, {
|
|
731
878
|
server: z.ZodOptional<z.ZodString>;
|
|
879
|
+
id: z.ZodOptional<z.ZodString>;
|
|
732
880
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
881
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
882
|
+
label: z.ZodString;
|
|
883
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
884
|
+
}, "strip", z.ZodTypeAny, {
|
|
885
|
+
tags: string[];
|
|
886
|
+
label: string;
|
|
887
|
+
}, {
|
|
888
|
+
tags: string[];
|
|
889
|
+
label: string;
|
|
890
|
+
}>, "many">>;
|
|
733
891
|
}>, {
|
|
734
892
|
postProcessors: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodUnion<[z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>, z.ZodPromise<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>]>>, "many">>;
|
|
735
893
|
}>, "strip", z.ZodTypeAny, {
|
|
736
894
|
type: "file";
|
|
737
895
|
input: string;
|
|
738
896
|
server?: string | undefined;
|
|
897
|
+
id?: string | undefined;
|
|
739
898
|
navigationId?: string | undefined;
|
|
899
|
+
categories?: {
|
|
900
|
+
tags: string[];
|
|
901
|
+
label: string;
|
|
902
|
+
}[] | undefined;
|
|
740
903
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
741
904
|
}, {
|
|
742
905
|
type: "file";
|
|
743
906
|
input: string;
|
|
744
907
|
server?: string | undefined;
|
|
908
|
+
id?: string | undefined;
|
|
745
909
|
navigationId?: string | undefined;
|
|
910
|
+
categories?: {
|
|
911
|
+
tags: string[];
|
|
912
|
+
label: string;
|
|
913
|
+
}[] | undefined;
|
|
746
914
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
747
915
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
748
916
|
type: z.ZodLiteral<"raw">;
|
|
749
917
|
input: z.ZodString;
|
|
750
918
|
}, {
|
|
751
919
|
server: z.ZodOptional<z.ZodString>;
|
|
920
|
+
id: z.ZodOptional<z.ZodString>;
|
|
752
921
|
navigationId: z.ZodOptional<z.ZodString>;
|
|
922
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
923
|
+
label: z.ZodString;
|
|
924
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
925
|
+
}, "strip", z.ZodTypeAny, {
|
|
926
|
+
tags: string[];
|
|
927
|
+
label: string;
|
|
928
|
+
}, {
|
|
929
|
+
tags: string[];
|
|
930
|
+
label: string;
|
|
931
|
+
}>, "many">>;
|
|
753
932
|
}>, "strip", z.ZodTypeAny, {
|
|
754
933
|
type: "raw";
|
|
755
934
|
input: string;
|
|
756
935
|
server?: string | undefined;
|
|
936
|
+
id?: string | undefined;
|
|
757
937
|
navigationId?: string | undefined;
|
|
938
|
+
categories?: {
|
|
939
|
+
tags: string[];
|
|
940
|
+
label: string;
|
|
941
|
+
}[] | undefined;
|
|
758
942
|
}, {
|
|
759
943
|
type: "raw";
|
|
760
944
|
input: string;
|
|
761
945
|
server?: string | undefined;
|
|
946
|
+
id?: string | undefined;
|
|
762
947
|
navigationId?: string | undefined;
|
|
948
|
+
categories?: {
|
|
949
|
+
tags: string[];
|
|
950
|
+
label: string;
|
|
951
|
+
}[] | undefined;
|
|
763
952
|
}>]>, "many">]>>;
|
|
953
|
+
catalog: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
954
|
+
navigationId: z.ZodString;
|
|
955
|
+
label: z.ZodString;
|
|
956
|
+
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
957
|
+
}, "strip", z.ZodTypeAny, {
|
|
958
|
+
label: string;
|
|
959
|
+
navigationId: string;
|
|
960
|
+
items?: string[] | undefined;
|
|
961
|
+
}, {
|
|
962
|
+
label: string;
|
|
963
|
+
navigationId: string;
|
|
964
|
+
items?: string[] | undefined;
|
|
965
|
+
}>, z.ZodArray<z.ZodObject<{
|
|
966
|
+
navigationId: z.ZodString;
|
|
967
|
+
label: z.ZodString;
|
|
968
|
+
items: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
969
|
+
}, "strip", z.ZodTypeAny, {
|
|
970
|
+
label: string;
|
|
971
|
+
navigationId: string;
|
|
972
|
+
items?: string[] | undefined;
|
|
973
|
+
}, {
|
|
974
|
+
label: string;
|
|
975
|
+
navigationId: string;
|
|
976
|
+
items?: string[] | undefined;
|
|
977
|
+
}>, "many">]>>;
|
|
764
978
|
apiKeys: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
765
979
|
enabled: z.ZodBoolean;
|
|
766
980
|
endpoint: z.ZodString;
|
|
@@ -1030,35 +1244,74 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1030
1244
|
type: "url";
|
|
1031
1245
|
input: string;
|
|
1032
1246
|
server?: string | undefined;
|
|
1247
|
+
id?: string | undefined;
|
|
1033
1248
|
navigationId?: string | undefined;
|
|
1249
|
+
categories?: {
|
|
1250
|
+
tags: string[];
|
|
1251
|
+
label: string;
|
|
1252
|
+
}[] | undefined;
|
|
1034
1253
|
} | {
|
|
1035
1254
|
type: "file";
|
|
1036
1255
|
input: string;
|
|
1037
1256
|
server?: string | undefined;
|
|
1257
|
+
id?: string | undefined;
|
|
1038
1258
|
navigationId?: string | undefined;
|
|
1259
|
+
categories?: {
|
|
1260
|
+
tags: string[];
|
|
1261
|
+
label: string;
|
|
1262
|
+
}[] | undefined;
|
|
1039
1263
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1040
1264
|
} | {
|
|
1041
1265
|
type: "raw";
|
|
1042
1266
|
input: string;
|
|
1043
1267
|
server?: string | undefined;
|
|
1268
|
+
id?: string | undefined;
|
|
1044
1269
|
navigationId?: string | undefined;
|
|
1270
|
+
categories?: {
|
|
1271
|
+
tags: string[];
|
|
1272
|
+
label: string;
|
|
1273
|
+
}[] | undefined;
|
|
1045
1274
|
} | ({
|
|
1046
1275
|
type: "url";
|
|
1047
1276
|
input: string;
|
|
1048
1277
|
server?: string | undefined;
|
|
1278
|
+
id?: string | undefined;
|
|
1049
1279
|
navigationId?: string | undefined;
|
|
1280
|
+
categories?: {
|
|
1281
|
+
tags: string[];
|
|
1282
|
+
label: string;
|
|
1283
|
+
}[] | undefined;
|
|
1050
1284
|
} | {
|
|
1051
1285
|
type: "file";
|
|
1052
1286
|
input: string;
|
|
1053
1287
|
server?: string | undefined;
|
|
1288
|
+
id?: string | undefined;
|
|
1054
1289
|
navigationId?: string | undefined;
|
|
1290
|
+
categories?: {
|
|
1291
|
+
tags: string[];
|
|
1292
|
+
label: string;
|
|
1293
|
+
}[] | undefined;
|
|
1055
1294
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1056
1295
|
} | {
|
|
1057
1296
|
type: "raw";
|
|
1058
1297
|
input: string;
|
|
1059
1298
|
server?: string | undefined;
|
|
1299
|
+
id?: string | undefined;
|
|
1060
1300
|
navigationId?: string | undefined;
|
|
1301
|
+
categories?: {
|
|
1302
|
+
tags: string[];
|
|
1303
|
+
label: string;
|
|
1304
|
+
}[] | undefined;
|
|
1061
1305
|
})[] | undefined;
|
|
1306
|
+
catalog?: {
|
|
1307
|
+
label: string;
|
|
1308
|
+
navigationId: string;
|
|
1309
|
+
items?: string[] | undefined;
|
|
1310
|
+
} | {
|
|
1311
|
+
label: string;
|
|
1312
|
+
navigationId: string;
|
|
1313
|
+
items?: string[] | undefined;
|
|
1314
|
+
}[] | undefined;
|
|
1062
1315
|
apiKeys?: {
|
|
1063
1316
|
enabled: boolean;
|
|
1064
1317
|
endpoint: string;
|
|
@@ -1237,35 +1490,74 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1237
1490
|
type: "url";
|
|
1238
1491
|
input: string;
|
|
1239
1492
|
server?: string | undefined;
|
|
1493
|
+
id?: string | undefined;
|
|
1240
1494
|
navigationId?: string | undefined;
|
|
1495
|
+
categories?: {
|
|
1496
|
+
tags: string[];
|
|
1497
|
+
label: string;
|
|
1498
|
+
}[] | undefined;
|
|
1241
1499
|
} | {
|
|
1242
1500
|
type: "file";
|
|
1243
1501
|
input: string;
|
|
1244
1502
|
server?: string | undefined;
|
|
1503
|
+
id?: string | undefined;
|
|
1245
1504
|
navigationId?: string | undefined;
|
|
1505
|
+
categories?: {
|
|
1506
|
+
tags: string[];
|
|
1507
|
+
label: string;
|
|
1508
|
+
}[] | undefined;
|
|
1246
1509
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1247
1510
|
} | {
|
|
1248
1511
|
type: "raw";
|
|
1249
1512
|
input: string;
|
|
1250
1513
|
server?: string | undefined;
|
|
1514
|
+
id?: string | undefined;
|
|
1251
1515
|
navigationId?: string | undefined;
|
|
1516
|
+
categories?: {
|
|
1517
|
+
tags: string[];
|
|
1518
|
+
label: string;
|
|
1519
|
+
}[] | undefined;
|
|
1252
1520
|
} | ({
|
|
1253
1521
|
type: "url";
|
|
1254
1522
|
input: string;
|
|
1255
1523
|
server?: string | undefined;
|
|
1524
|
+
id?: string | undefined;
|
|
1256
1525
|
navigationId?: string | undefined;
|
|
1526
|
+
categories?: {
|
|
1527
|
+
tags: string[];
|
|
1528
|
+
label: string;
|
|
1529
|
+
}[] | undefined;
|
|
1257
1530
|
} | {
|
|
1258
1531
|
type: "file";
|
|
1259
1532
|
input: string;
|
|
1260
1533
|
server?: string | undefined;
|
|
1534
|
+
id?: string | undefined;
|
|
1261
1535
|
navigationId?: string | undefined;
|
|
1536
|
+
categories?: {
|
|
1537
|
+
tags: string[];
|
|
1538
|
+
label: string;
|
|
1539
|
+
}[] | undefined;
|
|
1262
1540
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1263
1541
|
} | {
|
|
1264
1542
|
type: "raw";
|
|
1265
1543
|
input: string;
|
|
1266
1544
|
server?: string | undefined;
|
|
1545
|
+
id?: string | undefined;
|
|
1267
1546
|
navigationId?: string | undefined;
|
|
1547
|
+
categories?: {
|
|
1548
|
+
tags: string[];
|
|
1549
|
+
label: string;
|
|
1550
|
+
}[] | undefined;
|
|
1268
1551
|
})[] | undefined;
|
|
1552
|
+
catalog?: {
|
|
1553
|
+
label: string;
|
|
1554
|
+
navigationId: string;
|
|
1555
|
+
items?: string[] | undefined;
|
|
1556
|
+
} | {
|
|
1557
|
+
label: string;
|
|
1558
|
+
navigationId: string;
|
|
1559
|
+
items?: string[] | undefined;
|
|
1560
|
+
}[] | undefined;
|
|
1269
1561
|
apiKeys?: {
|
|
1270
1562
|
enabled: boolean;
|
|
1271
1563
|
endpoint: string;
|
|
@@ -1444,35 +1736,74 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1444
1736
|
type: "url";
|
|
1445
1737
|
input: string;
|
|
1446
1738
|
server?: string | undefined;
|
|
1739
|
+
id?: string | undefined;
|
|
1447
1740
|
navigationId?: string | undefined;
|
|
1741
|
+
categories?: {
|
|
1742
|
+
tags: string[];
|
|
1743
|
+
label: string;
|
|
1744
|
+
}[] | undefined;
|
|
1448
1745
|
} | {
|
|
1449
1746
|
type: "file";
|
|
1450
1747
|
input: string;
|
|
1451
1748
|
server?: string | undefined;
|
|
1749
|
+
id?: string | undefined;
|
|
1452
1750
|
navigationId?: string | undefined;
|
|
1751
|
+
categories?: {
|
|
1752
|
+
tags: string[];
|
|
1753
|
+
label: string;
|
|
1754
|
+
}[] | undefined;
|
|
1453
1755
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1454
1756
|
} | {
|
|
1455
1757
|
type: "raw";
|
|
1456
1758
|
input: string;
|
|
1457
1759
|
server?: string | undefined;
|
|
1760
|
+
id?: string | undefined;
|
|
1458
1761
|
navigationId?: string | undefined;
|
|
1762
|
+
categories?: {
|
|
1763
|
+
tags: string[];
|
|
1764
|
+
label: string;
|
|
1765
|
+
}[] | undefined;
|
|
1459
1766
|
} | ({
|
|
1460
1767
|
type: "url";
|
|
1461
1768
|
input: string;
|
|
1462
1769
|
server?: string | undefined;
|
|
1770
|
+
id?: string | undefined;
|
|
1463
1771
|
navigationId?: string | undefined;
|
|
1772
|
+
categories?: {
|
|
1773
|
+
tags: string[];
|
|
1774
|
+
label: string;
|
|
1775
|
+
}[] | undefined;
|
|
1464
1776
|
} | {
|
|
1465
1777
|
type: "file";
|
|
1466
1778
|
input: string;
|
|
1467
1779
|
server?: string | undefined;
|
|
1780
|
+
id?: string | undefined;
|
|
1468
1781
|
navigationId?: string | undefined;
|
|
1782
|
+
categories?: {
|
|
1783
|
+
tags: string[];
|
|
1784
|
+
label: string;
|
|
1785
|
+
}[] | undefined;
|
|
1469
1786
|
postProcessors?: ((args_0: z.objectInputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectOutputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectOutputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1470
1787
|
} | {
|
|
1471
1788
|
type: "raw";
|
|
1472
1789
|
input: string;
|
|
1473
1790
|
server?: string | undefined;
|
|
1791
|
+
id?: string | undefined;
|
|
1474
1792
|
navigationId?: string | undefined;
|
|
1793
|
+
categories?: {
|
|
1794
|
+
tags: string[];
|
|
1795
|
+
label: string;
|
|
1796
|
+
}[] | undefined;
|
|
1475
1797
|
})[] | undefined;
|
|
1798
|
+
catalog?: {
|
|
1799
|
+
label: string;
|
|
1800
|
+
navigationId: string;
|
|
1801
|
+
items?: string[] | undefined;
|
|
1802
|
+
} | {
|
|
1803
|
+
label: string;
|
|
1804
|
+
navigationId: string;
|
|
1805
|
+
items?: string[] | undefined;
|
|
1806
|
+
}[] | undefined;
|
|
1476
1807
|
apiKeys?: {
|
|
1477
1808
|
enabled: boolean;
|
|
1478
1809
|
endpoint: string;
|
|
@@ -1651,35 +1982,74 @@ declare const ConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1651
1982
|
type: "url";
|
|
1652
1983
|
input: string;
|
|
1653
1984
|
server?: string | undefined;
|
|
1985
|
+
id?: string | undefined;
|
|
1654
1986
|
navigationId?: string | undefined;
|
|
1987
|
+
categories?: {
|
|
1988
|
+
tags: string[];
|
|
1989
|
+
label: string;
|
|
1990
|
+
}[] | undefined;
|
|
1655
1991
|
} | {
|
|
1656
1992
|
type: "file";
|
|
1657
1993
|
input: string;
|
|
1658
1994
|
server?: string | undefined;
|
|
1995
|
+
id?: string | undefined;
|
|
1659
1996
|
navigationId?: string | undefined;
|
|
1997
|
+
categories?: {
|
|
1998
|
+
tags: string[];
|
|
1999
|
+
label: string;
|
|
2000
|
+
}[] | undefined;
|
|
1660
2001
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1661
2002
|
} | {
|
|
1662
2003
|
type: "raw";
|
|
1663
2004
|
input: string;
|
|
1664
2005
|
server?: string | undefined;
|
|
2006
|
+
id?: string | undefined;
|
|
1665
2007
|
navigationId?: string | undefined;
|
|
2008
|
+
categories?: {
|
|
2009
|
+
tags: string[];
|
|
2010
|
+
label: string;
|
|
2011
|
+
}[] | undefined;
|
|
1666
2012
|
} | ({
|
|
1667
2013
|
type: "url";
|
|
1668
2014
|
input: string;
|
|
1669
2015
|
server?: string | undefined;
|
|
2016
|
+
id?: string | undefined;
|
|
1670
2017
|
navigationId?: string | undefined;
|
|
2018
|
+
categories?: {
|
|
2019
|
+
tags: string[];
|
|
2020
|
+
label: string;
|
|
2021
|
+
}[] | undefined;
|
|
1671
2022
|
} | {
|
|
1672
2023
|
type: "file";
|
|
1673
2024
|
input: string;
|
|
1674
2025
|
server?: string | undefined;
|
|
2026
|
+
id?: string | undefined;
|
|
1675
2027
|
navigationId?: string | undefined;
|
|
2028
|
+
categories?: {
|
|
2029
|
+
tags: string[];
|
|
2030
|
+
label: string;
|
|
2031
|
+
}[] | undefined;
|
|
1676
2032
|
postProcessors?: ((args_0: z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, ...args: unknown[]) => z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | Promise<z.objectInputType<{}, z.ZodTypeAny, "passthrough">>)[] | undefined;
|
|
1677
2033
|
} | {
|
|
1678
2034
|
type: "raw";
|
|
1679
2035
|
input: string;
|
|
1680
2036
|
server?: string | undefined;
|
|
2037
|
+
id?: string | undefined;
|
|
1681
2038
|
navigationId?: string | undefined;
|
|
2039
|
+
categories?: {
|
|
2040
|
+
tags: string[];
|
|
2041
|
+
label: string;
|
|
2042
|
+
}[] | undefined;
|
|
1682
2043
|
})[] | undefined;
|
|
2044
|
+
catalog?: {
|
|
2045
|
+
label: string;
|
|
2046
|
+
navigationId: string;
|
|
2047
|
+
items?: string[] | undefined;
|
|
2048
|
+
} | {
|
|
2049
|
+
label: string;
|
|
2050
|
+
navigationId: string;
|
|
2051
|
+
items?: string[] | undefined;
|
|
2052
|
+
}[] | undefined;
|
|
1683
2053
|
apiKeys?: {
|
|
1684
2054
|
enabled: boolean;
|
|
1685
2055
|
endpoint: string;
|