@mintlify/validation 0.1.278 → 0.1.280
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/mint-config/schemas/v2/index.d.ts +170 -70
- package/dist/mint-config/schemas/v2/properties/api.d.ts +26 -10
- package/dist/mint-config/schemas/v2/properties/api.js +8 -3
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +34 -14
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +34 -14
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +34 -14
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +34 -14
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +26 -10
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +34 -14
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +20 -16
- package/dist/mint-config/validateConfig.d.ts +40 -20
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/apiPlaygroundInputs.d.ts +8 -0
- package/dist/types/apiPlaygroundInputs.js +1 -0
- package/dist/types/deployment/auth.d.ts +61 -0
- package/dist/types/deployment/auth.js +1 -0
- package/dist/types/deployment/deploymentEntitlements.d.ts +4 -0
- package/dist/types/deployment/deploymentEntitlements.js +18 -0
- package/dist/types/deployment/deploymentFeedback.d.ts +5 -0
- package/dist/types/deployment/deploymentFeedback.js +1 -0
- package/dist/types/deployment/entitlementConfiguration.d.ts +3 -0
- package/dist/types/deployment/entitlementConfiguration.js +1 -0
- package/dist/types/deployment/gitSource.d.ts +20 -0
- package/dist/types/deployment/gitSource.js +1 -0
- package/dist/types/deployment/index.d.ts +55 -0
- package/dist/types/deployment/index.js +7 -0
- package/dist/types/deployment/sourceCheck.d.ts +9 -0
- package/dist/types/deployment/sourceCheck.js +3 -0
- package/dist/types/deployment/stripe.d.ts +15 -0
- package/dist/types/deployment/stripe.js +1 -0
- package/dist/types/deployment/trieve.d.ts +8 -0
- package/dist/types/deployment/trieve.js +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +3 -0
- package/dist/types/serverStaticProps.d.ts +3 -2
- package/dist/types/userInfo.d.ts +8 -0
- package/dist/types/userInfo.js +1 -0
- package/package.json +3 -3
|
@@ -69,16 +69,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
69
69
|
languages?: string[] | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
72
|
-
auth: z.ZodOptional<z.
|
|
73
|
-
|
|
72
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
73
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
74
|
+
name: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
77
|
+
name?: string | undefined;
|
|
78
|
+
}, {
|
|
79
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
80
|
+
name?: string | undefined;
|
|
81
|
+
}>>;
|
|
74
82
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
75
83
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
auth?:
|
|
77
|
-
|
|
84
|
+
auth?: {
|
|
85
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
86
|
+
name?: string | undefined;
|
|
87
|
+
} | undefined;
|
|
78
88
|
server?: string | string[] | undefined;
|
|
79
89
|
}, {
|
|
80
|
-
auth?:
|
|
81
|
-
|
|
90
|
+
auth?: {
|
|
91
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
92
|
+
name?: string | undefined;
|
|
93
|
+
} | undefined;
|
|
82
94
|
server?: string | string[] | undefined;
|
|
83
95
|
}>>;
|
|
84
96
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94,8 +106,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
94
106
|
languages?: string[] | undefined;
|
|
95
107
|
} | undefined;
|
|
96
108
|
mdx?: {
|
|
97
|
-
auth?:
|
|
98
|
-
|
|
109
|
+
auth?: {
|
|
110
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
111
|
+
name?: string | undefined;
|
|
112
|
+
} | undefined;
|
|
99
113
|
server?: string | string[] | undefined;
|
|
100
114
|
} | undefined;
|
|
101
115
|
}, {
|
|
@@ -111,8 +125,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
111
125
|
languages?: string[] | undefined;
|
|
112
126
|
} | undefined;
|
|
113
127
|
mdx?: {
|
|
114
|
-
auth?:
|
|
115
|
-
|
|
128
|
+
auth?: {
|
|
129
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
130
|
+
name?: string | undefined;
|
|
131
|
+
} | undefined;
|
|
116
132
|
server?: string | string[] | undefined;
|
|
117
133
|
} | undefined;
|
|
118
134
|
}>>;
|
|
@@ -3857,8 +3873,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3857
3873
|
languages?: string[] | undefined;
|
|
3858
3874
|
} | undefined;
|
|
3859
3875
|
mdx?: {
|
|
3860
|
-
auth?:
|
|
3861
|
-
|
|
3876
|
+
auth?: {
|
|
3877
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3878
|
+
name?: string | undefined;
|
|
3879
|
+
} | undefined;
|
|
3862
3880
|
server?: string | string[] | undefined;
|
|
3863
3881
|
} | undefined;
|
|
3864
3882
|
} | undefined;
|
|
@@ -4735,8 +4753,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4735
4753
|
languages?: string[] | undefined;
|
|
4736
4754
|
} | undefined;
|
|
4737
4755
|
mdx?: {
|
|
4738
|
-
auth?:
|
|
4739
|
-
|
|
4756
|
+
auth?: {
|
|
4757
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4758
|
+
name?: string | undefined;
|
|
4759
|
+
} | undefined;
|
|
4740
4760
|
server?: string | string[] | undefined;
|
|
4741
4761
|
} | undefined;
|
|
4742
4762
|
} | undefined;
|
|
@@ -4943,16 +4963,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4943
4963
|
languages?: string[] | undefined;
|
|
4944
4964
|
}>>;
|
|
4945
4965
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
4946
|
-
auth: z.ZodOptional<z.
|
|
4947
|
-
|
|
4966
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
4967
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
4968
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4969
|
+
}, "strip", z.ZodTypeAny, {
|
|
4970
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4971
|
+
name?: string | undefined;
|
|
4972
|
+
}, {
|
|
4973
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4974
|
+
name?: string | undefined;
|
|
4975
|
+
}>>;
|
|
4948
4976
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
4949
4977
|
}, "strip", z.ZodTypeAny, {
|
|
4950
|
-
auth?:
|
|
4951
|
-
|
|
4978
|
+
auth?: {
|
|
4979
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4980
|
+
name?: string | undefined;
|
|
4981
|
+
} | undefined;
|
|
4952
4982
|
server?: string | string[] | undefined;
|
|
4953
4983
|
}, {
|
|
4954
|
-
auth?:
|
|
4955
|
-
|
|
4984
|
+
auth?: {
|
|
4985
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4986
|
+
name?: string | undefined;
|
|
4987
|
+
} | undefined;
|
|
4956
4988
|
server?: string | string[] | undefined;
|
|
4957
4989
|
}>>;
|
|
4958
4990
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4968,8 +5000,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4968
5000
|
languages?: string[] | undefined;
|
|
4969
5001
|
} | undefined;
|
|
4970
5002
|
mdx?: {
|
|
4971
|
-
auth?:
|
|
4972
|
-
|
|
5003
|
+
auth?: {
|
|
5004
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
5005
|
+
name?: string | undefined;
|
|
5006
|
+
} | undefined;
|
|
4973
5007
|
server?: string | string[] | undefined;
|
|
4974
5008
|
} | undefined;
|
|
4975
5009
|
}, {
|
|
@@ -4985,8 +5019,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4985
5019
|
languages?: string[] | undefined;
|
|
4986
5020
|
} | undefined;
|
|
4987
5021
|
mdx?: {
|
|
4988
|
-
auth?:
|
|
4989
|
-
|
|
5022
|
+
auth?: {
|
|
5023
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
5024
|
+
name?: string | undefined;
|
|
5025
|
+
} | undefined;
|
|
4990
5026
|
server?: string | string[] | undefined;
|
|
4991
5027
|
} | undefined;
|
|
4992
5028
|
}>>;
|
|
@@ -8731,8 +8767,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8731
8767
|
languages?: string[] | undefined;
|
|
8732
8768
|
} | undefined;
|
|
8733
8769
|
mdx?: {
|
|
8734
|
-
auth?:
|
|
8735
|
-
|
|
8770
|
+
auth?: {
|
|
8771
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
8772
|
+
name?: string | undefined;
|
|
8773
|
+
} | undefined;
|
|
8736
8774
|
server?: string | string[] | undefined;
|
|
8737
8775
|
} | undefined;
|
|
8738
8776
|
} | undefined;
|
|
@@ -9609,8 +9647,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9609
9647
|
languages?: string[] | undefined;
|
|
9610
9648
|
} | undefined;
|
|
9611
9649
|
mdx?: {
|
|
9612
|
-
auth?:
|
|
9613
|
-
|
|
9650
|
+
auth?: {
|
|
9651
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9652
|
+
name?: string | undefined;
|
|
9653
|
+
} | undefined;
|
|
9614
9654
|
server?: string | string[] | undefined;
|
|
9615
9655
|
} | undefined;
|
|
9616
9656
|
} | undefined;
|
|
@@ -9817,16 +9857,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9817
9857
|
languages?: string[] | undefined;
|
|
9818
9858
|
}>>;
|
|
9819
9859
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
9820
|
-
auth: z.ZodOptional<z.
|
|
9821
|
-
|
|
9860
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
9861
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
9862
|
+
name: z.ZodOptional<z.ZodString>;
|
|
9863
|
+
}, "strip", z.ZodTypeAny, {
|
|
9864
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9865
|
+
name?: string | undefined;
|
|
9866
|
+
}, {
|
|
9867
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9868
|
+
name?: string | undefined;
|
|
9869
|
+
}>>;
|
|
9822
9870
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
9823
9871
|
}, "strip", z.ZodTypeAny, {
|
|
9824
|
-
auth?:
|
|
9825
|
-
|
|
9872
|
+
auth?: {
|
|
9873
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9874
|
+
name?: string | undefined;
|
|
9875
|
+
} | undefined;
|
|
9826
9876
|
server?: string | string[] | undefined;
|
|
9827
9877
|
}, {
|
|
9828
|
-
auth?:
|
|
9829
|
-
|
|
9878
|
+
auth?: {
|
|
9879
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9880
|
+
name?: string | undefined;
|
|
9881
|
+
} | undefined;
|
|
9830
9882
|
server?: string | string[] | undefined;
|
|
9831
9883
|
}>>;
|
|
9832
9884
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9842,8 +9894,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9842
9894
|
languages?: string[] | undefined;
|
|
9843
9895
|
} | undefined;
|
|
9844
9896
|
mdx?: {
|
|
9845
|
-
auth?:
|
|
9846
|
-
|
|
9897
|
+
auth?: {
|
|
9898
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9899
|
+
name?: string | undefined;
|
|
9900
|
+
} | undefined;
|
|
9847
9901
|
server?: string | string[] | undefined;
|
|
9848
9902
|
} | undefined;
|
|
9849
9903
|
}, {
|
|
@@ -9859,8 +9913,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9859
9913
|
languages?: string[] | undefined;
|
|
9860
9914
|
} | undefined;
|
|
9861
9915
|
mdx?: {
|
|
9862
|
-
auth?:
|
|
9863
|
-
|
|
9916
|
+
auth?: {
|
|
9917
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
9918
|
+
name?: string | undefined;
|
|
9919
|
+
} | undefined;
|
|
9864
9920
|
server?: string | string[] | undefined;
|
|
9865
9921
|
} | undefined;
|
|
9866
9922
|
}>>;
|
|
@@ -13605,8 +13661,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13605
13661
|
languages?: string[] | undefined;
|
|
13606
13662
|
} | undefined;
|
|
13607
13663
|
mdx?: {
|
|
13608
|
-
auth?:
|
|
13609
|
-
|
|
13664
|
+
auth?: {
|
|
13665
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
13666
|
+
name?: string | undefined;
|
|
13667
|
+
} | undefined;
|
|
13610
13668
|
server?: string | string[] | undefined;
|
|
13611
13669
|
} | undefined;
|
|
13612
13670
|
} | undefined;
|
|
@@ -14483,8 +14541,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14483
14541
|
languages?: string[] | undefined;
|
|
14484
14542
|
} | undefined;
|
|
14485
14543
|
mdx?: {
|
|
14486
|
-
auth?:
|
|
14487
|
-
|
|
14544
|
+
auth?: {
|
|
14545
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14546
|
+
name?: string | undefined;
|
|
14547
|
+
} | undefined;
|
|
14488
14548
|
server?: string | string[] | undefined;
|
|
14489
14549
|
} | undefined;
|
|
14490
14550
|
} | undefined;
|
|
@@ -14691,16 +14751,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14691
14751
|
languages?: string[] | undefined;
|
|
14692
14752
|
}>>;
|
|
14693
14753
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
14694
|
-
auth: z.ZodOptional<z.
|
|
14695
|
-
|
|
14754
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
14755
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
14756
|
+
name: z.ZodOptional<z.ZodString>;
|
|
14757
|
+
}, "strip", z.ZodTypeAny, {
|
|
14758
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14759
|
+
name?: string | undefined;
|
|
14760
|
+
}, {
|
|
14761
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14762
|
+
name?: string | undefined;
|
|
14763
|
+
}>>;
|
|
14696
14764
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
14697
14765
|
}, "strip", z.ZodTypeAny, {
|
|
14698
|
-
auth?:
|
|
14699
|
-
|
|
14766
|
+
auth?: {
|
|
14767
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14768
|
+
name?: string | undefined;
|
|
14769
|
+
} | undefined;
|
|
14700
14770
|
server?: string | string[] | undefined;
|
|
14701
14771
|
}, {
|
|
14702
|
-
auth?:
|
|
14703
|
-
|
|
14772
|
+
auth?: {
|
|
14773
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14774
|
+
name?: string | undefined;
|
|
14775
|
+
} | undefined;
|
|
14704
14776
|
server?: string | string[] | undefined;
|
|
14705
14777
|
}>>;
|
|
14706
14778
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14716,8 +14788,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14716
14788
|
languages?: string[] | undefined;
|
|
14717
14789
|
} | undefined;
|
|
14718
14790
|
mdx?: {
|
|
14719
|
-
auth?:
|
|
14720
|
-
|
|
14791
|
+
auth?: {
|
|
14792
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14793
|
+
name?: string | undefined;
|
|
14794
|
+
} | undefined;
|
|
14721
14795
|
server?: string | string[] | undefined;
|
|
14722
14796
|
} | undefined;
|
|
14723
14797
|
}, {
|
|
@@ -14733,8 +14807,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14733
14807
|
languages?: string[] | undefined;
|
|
14734
14808
|
} | undefined;
|
|
14735
14809
|
mdx?: {
|
|
14736
|
-
auth?:
|
|
14737
|
-
|
|
14810
|
+
auth?: {
|
|
14811
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
14812
|
+
name?: string | undefined;
|
|
14813
|
+
} | undefined;
|
|
14738
14814
|
server?: string | string[] | undefined;
|
|
14739
14815
|
} | undefined;
|
|
14740
14816
|
}>>;
|
|
@@ -18479,8 +18555,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
18479
18555
|
languages?: string[] | undefined;
|
|
18480
18556
|
} | undefined;
|
|
18481
18557
|
mdx?: {
|
|
18482
|
-
auth?:
|
|
18483
|
-
|
|
18558
|
+
auth?: {
|
|
18559
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
18560
|
+
name?: string | undefined;
|
|
18561
|
+
} | undefined;
|
|
18484
18562
|
server?: string | string[] | undefined;
|
|
18485
18563
|
} | undefined;
|
|
18486
18564
|
} | undefined;
|
|
@@ -19357,8 +19435,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19357
19435
|
languages?: string[] | undefined;
|
|
19358
19436
|
} | undefined;
|
|
19359
19437
|
mdx?: {
|
|
19360
|
-
auth?:
|
|
19361
|
-
|
|
19438
|
+
auth?: {
|
|
19439
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19440
|
+
name?: string | undefined;
|
|
19441
|
+
} | undefined;
|
|
19362
19442
|
server?: string | string[] | undefined;
|
|
19363
19443
|
} | undefined;
|
|
19364
19444
|
} | undefined;
|
|
@@ -19565,16 +19645,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19565
19645
|
languages?: string[] | undefined;
|
|
19566
19646
|
}>>;
|
|
19567
19647
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
19568
|
-
auth: z.ZodOptional<z.
|
|
19569
|
-
|
|
19648
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
19649
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
19650
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19651
|
+
}, "strip", z.ZodTypeAny, {
|
|
19652
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19653
|
+
name?: string | undefined;
|
|
19654
|
+
}, {
|
|
19655
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19656
|
+
name?: string | undefined;
|
|
19657
|
+
}>>;
|
|
19570
19658
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
19571
19659
|
}, "strip", z.ZodTypeAny, {
|
|
19572
|
-
auth?:
|
|
19573
|
-
|
|
19660
|
+
auth?: {
|
|
19661
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19662
|
+
name?: string | undefined;
|
|
19663
|
+
} | undefined;
|
|
19574
19664
|
server?: string | string[] | undefined;
|
|
19575
19665
|
}, {
|
|
19576
|
-
auth?:
|
|
19577
|
-
|
|
19666
|
+
auth?: {
|
|
19667
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19668
|
+
name?: string | undefined;
|
|
19669
|
+
} | undefined;
|
|
19578
19670
|
server?: string | string[] | undefined;
|
|
19579
19671
|
}>>;
|
|
19580
19672
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19590,8 +19682,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19590
19682
|
languages?: string[] | undefined;
|
|
19591
19683
|
} | undefined;
|
|
19592
19684
|
mdx?: {
|
|
19593
|
-
auth?:
|
|
19594
|
-
|
|
19685
|
+
auth?: {
|
|
19686
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19687
|
+
name?: string | undefined;
|
|
19688
|
+
} | undefined;
|
|
19595
19689
|
server?: string | string[] | undefined;
|
|
19596
19690
|
} | undefined;
|
|
19597
19691
|
}, {
|
|
@@ -19607,8 +19701,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
19607
19701
|
languages?: string[] | undefined;
|
|
19608
19702
|
} | undefined;
|
|
19609
19703
|
mdx?: {
|
|
19610
|
-
auth?:
|
|
19611
|
-
|
|
19704
|
+
auth?: {
|
|
19705
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
19706
|
+
name?: string | undefined;
|
|
19707
|
+
} | undefined;
|
|
19612
19708
|
server?: string | string[] | undefined;
|
|
19613
19709
|
} | undefined;
|
|
19614
19710
|
}>>;
|
|
@@ -23353,8 +23449,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
23353
23449
|
languages?: string[] | undefined;
|
|
23354
23450
|
} | undefined;
|
|
23355
23451
|
mdx?: {
|
|
23356
|
-
auth?:
|
|
23357
|
-
|
|
23452
|
+
auth?: {
|
|
23453
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
23454
|
+
name?: string | undefined;
|
|
23455
|
+
} | undefined;
|
|
23358
23456
|
server?: string | string[] | undefined;
|
|
23359
23457
|
} | undefined;
|
|
23360
23458
|
} | undefined;
|
|
@@ -24231,8 +24329,10 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
24231
24329
|
languages?: string[] | undefined;
|
|
24232
24330
|
} | undefined;
|
|
24233
24331
|
mdx?: {
|
|
24234
|
-
auth?:
|
|
24235
|
-
|
|
24332
|
+
auth?: {
|
|
24333
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
24334
|
+
name?: string | undefined;
|
|
24335
|
+
} | undefined;
|
|
24236
24336
|
server?: string | string[] | undefined;
|
|
24237
24337
|
} | undefined;
|
|
24238
24338
|
} | undefined;
|
|
@@ -28,16 +28,28 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
28
28
|
languages?: string[] | undefined;
|
|
29
29
|
}>>;
|
|
30
30
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
31
|
-
auth: z.ZodOptional<z.
|
|
32
|
-
|
|
31
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
32
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
33
|
+
name: z.ZodOptional<z.ZodString>;
|
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
|
35
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
36
|
+
name?: string | undefined;
|
|
37
|
+
}, {
|
|
38
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
39
|
+
name?: string | undefined;
|
|
40
|
+
}>>;
|
|
33
41
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
34
42
|
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
auth?:
|
|
36
|
-
|
|
43
|
+
auth?: {
|
|
44
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
45
|
+
name?: string | undefined;
|
|
46
|
+
} | undefined;
|
|
37
47
|
server?: string | string[] | undefined;
|
|
38
48
|
}, {
|
|
39
|
-
auth?:
|
|
40
|
-
|
|
49
|
+
auth?: {
|
|
50
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
51
|
+
name?: string | undefined;
|
|
52
|
+
} | undefined;
|
|
41
53
|
server?: string | string[] | undefined;
|
|
42
54
|
}>>;
|
|
43
55
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -53,8 +65,10 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
53
65
|
languages?: string[] | undefined;
|
|
54
66
|
} | undefined;
|
|
55
67
|
mdx?: {
|
|
56
|
-
auth?:
|
|
57
|
-
|
|
68
|
+
auth?: {
|
|
69
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
70
|
+
name?: string | undefined;
|
|
71
|
+
} | undefined;
|
|
58
72
|
server?: string | string[] | undefined;
|
|
59
73
|
} | undefined;
|
|
60
74
|
}, {
|
|
@@ -70,8 +84,10 @@ export declare const apiSchema: z.ZodObject<{
|
|
|
70
84
|
languages?: string[] | undefined;
|
|
71
85
|
} | undefined;
|
|
72
86
|
mdx?: {
|
|
73
|
-
auth?:
|
|
74
|
-
|
|
87
|
+
auth?: {
|
|
88
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
89
|
+
name?: string | undefined;
|
|
90
|
+
} | undefined;
|
|
75
91
|
server?: string | string[] | undefined;
|
|
76
92
|
} | undefined;
|
|
77
93
|
}>;
|
|
@@ -28,10 +28,15 @@ export const apiSchema = z
|
|
|
28
28
|
mdx: z
|
|
29
29
|
.object({
|
|
30
30
|
auth: z
|
|
31
|
-
.
|
|
31
|
+
.object({
|
|
32
|
+
method: z
|
|
33
|
+
.enum(['bearer', 'basic', 'key', 'cobo'])
|
|
34
|
+
.optional()
|
|
35
|
+
.describe('Authentication method for the API'),
|
|
36
|
+
name: z.string().optional().describe('Authentication name for the API'),
|
|
37
|
+
})
|
|
32
38
|
.optional()
|
|
33
|
-
.describe('Authentication
|
|
34
|
-
name: z.string().optional(),
|
|
39
|
+
.describe('Authentication configuration for the API'),
|
|
35
40
|
server: z
|
|
36
41
|
.union([z.string().url(), z.array(z.string().url())])
|
|
37
42
|
.optional()
|
|
@@ -68,16 +68,28 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
68
68
|
languages?: string[] | undefined;
|
|
69
69
|
}>>;
|
|
70
70
|
mdx: z.ZodOptional<z.ZodObject<{
|
|
71
|
-
auth: z.ZodOptional<z.
|
|
72
|
-
|
|
71
|
+
auth: z.ZodOptional<z.ZodObject<{
|
|
72
|
+
method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
|
|
73
|
+
name: z.ZodOptional<z.ZodString>;
|
|
74
|
+
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
76
|
+
name?: string | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
79
|
+
name?: string | undefined;
|
|
80
|
+
}>>;
|
|
73
81
|
server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
74
82
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
auth?:
|
|
76
|
-
|
|
83
|
+
auth?: {
|
|
84
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
85
|
+
name?: string | undefined;
|
|
86
|
+
} | undefined;
|
|
77
87
|
server?: string | string[] | undefined;
|
|
78
88
|
}, {
|
|
79
|
-
auth?:
|
|
80
|
-
|
|
89
|
+
auth?: {
|
|
90
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
91
|
+
name?: string | undefined;
|
|
92
|
+
} | undefined;
|
|
81
93
|
server?: string | string[] | undefined;
|
|
82
94
|
}>>;
|
|
83
95
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93,8 +105,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
93
105
|
languages?: string[] | undefined;
|
|
94
106
|
} | undefined;
|
|
95
107
|
mdx?: {
|
|
96
|
-
auth?:
|
|
97
|
-
|
|
108
|
+
auth?: {
|
|
109
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
110
|
+
name?: string | undefined;
|
|
111
|
+
} | undefined;
|
|
98
112
|
server?: string | string[] | undefined;
|
|
99
113
|
} | undefined;
|
|
100
114
|
}, {
|
|
@@ -110,8 +124,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
110
124
|
languages?: string[] | undefined;
|
|
111
125
|
} | undefined;
|
|
112
126
|
mdx?: {
|
|
113
|
-
auth?:
|
|
114
|
-
|
|
127
|
+
auth?: {
|
|
128
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
129
|
+
name?: string | undefined;
|
|
130
|
+
} | undefined;
|
|
115
131
|
server?: string | string[] | undefined;
|
|
116
132
|
} | undefined;
|
|
117
133
|
}>>;
|
|
@@ -3856,8 +3872,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
3856
3872
|
languages?: string[] | undefined;
|
|
3857
3873
|
} | undefined;
|
|
3858
3874
|
mdx?: {
|
|
3859
|
-
auth?:
|
|
3860
|
-
|
|
3875
|
+
auth?: {
|
|
3876
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
3877
|
+
name?: string | undefined;
|
|
3878
|
+
} | undefined;
|
|
3861
3879
|
server?: string | string[] | undefined;
|
|
3862
3880
|
} | undefined;
|
|
3863
3881
|
} | undefined;
|
|
@@ -4734,8 +4752,10 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
4734
4752
|
languages?: string[] | undefined;
|
|
4735
4753
|
} | undefined;
|
|
4736
4754
|
mdx?: {
|
|
4737
|
-
auth?:
|
|
4738
|
-
|
|
4755
|
+
auth?: {
|
|
4756
|
+
method?: "key" | "bearer" | "basic" | "cobo" | undefined;
|
|
4757
|
+
name?: string | undefined;
|
|
4758
|
+
} | undefined;
|
|
4739
4759
|
server?: string | string[] | undefined;
|
|
4740
4760
|
} | undefined;
|
|
4741
4761
|
} | undefined;
|