@mintlify/validation 0.1.10 → 0.1.11

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.
@@ -0,0 +1,158 @@
1
+ import { z } from "zod";
2
+ export declare const analyticsSchema: z.ZodObject<{
3
+ amplitude: z.ZodOptional<z.ZodObject<{
4
+ apiKey: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ apiKey: string;
7
+ }, {
8
+ apiKey: string;
9
+ }>>;
10
+ fathom: z.ZodOptional<z.ZodObject<{
11
+ siteId: z.ZodString;
12
+ }, "strip", z.ZodTypeAny, {
13
+ siteId: string;
14
+ }, {
15
+ siteId: string;
16
+ }>>;
17
+ ga4: z.ZodOptional<z.ZodObject<{
18
+ measurementId: z.ZodString;
19
+ }, "strip", z.ZodTypeAny, {
20
+ measurementId: string;
21
+ }, {
22
+ measurementId: string;
23
+ }>>;
24
+ gtm: z.ZodOptional<z.ZodObject<{
25
+ tagId: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ tagId: string;
28
+ }, {
29
+ tagId: string;
30
+ }>>;
31
+ hotjar: z.ZodOptional<z.ZodObject<{
32
+ hjid: z.ZodString;
33
+ hjsv: z.ZodString;
34
+ }, "strip", z.ZodTypeAny, {
35
+ hjid: string;
36
+ hjsv: string;
37
+ }, {
38
+ hjid: string;
39
+ hjsv: string;
40
+ }>>;
41
+ koala: z.ZodOptional<z.ZodObject<{
42
+ projectId: z.ZodEffects<z.ZodString, string, string>;
43
+ }, "strip", z.ZodTypeAny, {
44
+ projectId: string;
45
+ }, {
46
+ projectId: string;
47
+ }>>;
48
+ logrocket: z.ZodOptional<z.ZodObject<{
49
+ appId: z.ZodString;
50
+ }, "strip", z.ZodTypeAny, {
51
+ appId: string;
52
+ }, {
53
+ appId: string;
54
+ }>>;
55
+ mixpanel: z.ZodOptional<z.ZodObject<{
56
+ projectToken: z.ZodString;
57
+ }, "strip", z.ZodTypeAny, {
58
+ projectToken: string;
59
+ }, {
60
+ projectToken: string;
61
+ }>>;
62
+ pirsch: z.ZodOptional<z.ZodObject<{
63
+ id: z.ZodString;
64
+ }, "strip", z.ZodTypeAny, {
65
+ id: string;
66
+ }, {
67
+ id: string;
68
+ }>>;
69
+ posthog: z.ZodOptional<z.ZodObject<{
70
+ apiKey: z.ZodString;
71
+ apiHost: z.ZodOptional<z.ZodString>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ apiHost?: string | undefined;
74
+ apiKey: string;
75
+ }, {
76
+ apiHost?: string | undefined;
77
+ apiKey: string;
78
+ }>>;
79
+ plausible: z.ZodOptional<z.ZodObject<{
80
+ domain: z.ZodEffects<z.ZodString, string, string>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ domain: string;
83
+ }, {
84
+ domain: string;
85
+ }>>;
86
+ }, "strict", z.ZodTypeAny, {
87
+ amplitude?: {
88
+ apiKey: string;
89
+ } | undefined;
90
+ fathom?: {
91
+ siteId: string;
92
+ } | undefined;
93
+ ga4?: {
94
+ measurementId: string;
95
+ } | undefined;
96
+ gtm?: {
97
+ tagId: string;
98
+ } | undefined;
99
+ hotjar?: {
100
+ hjid: string;
101
+ hjsv: string;
102
+ } | undefined;
103
+ koala?: {
104
+ projectId: string;
105
+ } | undefined;
106
+ logrocket?: {
107
+ appId: string;
108
+ } | undefined;
109
+ mixpanel?: {
110
+ projectToken: string;
111
+ } | undefined;
112
+ pirsch?: {
113
+ id: string;
114
+ } | undefined;
115
+ posthog?: {
116
+ apiHost?: string | undefined;
117
+ apiKey: string;
118
+ } | undefined;
119
+ plausible?: {
120
+ domain: string;
121
+ } | undefined;
122
+ }, {
123
+ amplitude?: {
124
+ apiKey: string;
125
+ } | undefined;
126
+ fathom?: {
127
+ siteId: string;
128
+ } | undefined;
129
+ ga4?: {
130
+ measurementId: string;
131
+ } | undefined;
132
+ gtm?: {
133
+ tagId: string;
134
+ } | undefined;
135
+ hotjar?: {
136
+ hjid: string;
137
+ hjsv: string;
138
+ } | undefined;
139
+ koala?: {
140
+ projectId: string;
141
+ } | undefined;
142
+ logrocket?: {
143
+ appId: string;
144
+ } | undefined;
145
+ mixpanel?: {
146
+ projectToken: string;
147
+ } | undefined;
148
+ pirsch?: {
149
+ id: string;
150
+ } | undefined;
151
+ posthog?: {
152
+ apiHost?: string | undefined;
153
+ apiKey: string;
154
+ } | undefined;
155
+ plausible?: {
156
+ domain: string;
157
+ } | undefined;
158
+ }>;
@@ -0,0 +1,14 @@
1
+ import { z } from "zod";
2
+ export declare const anchorColorSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3
+ from: z.ZodString;
4
+ via: z.ZodOptional<z.ZodString>;
5
+ to: z.ZodString;
6
+ }, "strict", z.ZodTypeAny, {
7
+ via?: string | undefined;
8
+ from: string;
9
+ to: string;
10
+ }, {
11
+ via?: string | undefined;
12
+ from: string;
13
+ to: string;
14
+ }>]>;
@@ -0,0 +1,46 @@
1
+ import { z } from "zod";
2
+ export declare const anchorsSchema: z.ZodArray<z.ZodObject<{
3
+ name: z.ZodString;
4
+ url: z.ZodString;
5
+ icon: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
6
+ iconType: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "sharp-solid", "solid", "thin"]>>;
7
+ color: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
8
+ from: z.ZodString;
9
+ via: z.ZodOptional<z.ZodString>;
10
+ to: z.ZodString;
11
+ }, "strict", z.ZodTypeAny, {
12
+ via?: string | undefined;
13
+ from: string;
14
+ to: string;
15
+ }, {
16
+ via?: string | undefined;
17
+ from: string;
18
+ to: string;
19
+ }>]>>;
20
+ isDefaultHidden: z.ZodOptional<z.ZodBoolean>;
21
+ version: z.ZodOptional<z.ZodString>;
22
+ }, "strip", z.ZodTypeAny, {
23
+ icon?: string | undefined;
24
+ iconType?: "light" | "brands" | "duotone" | "sharp-solid" | "solid" | "thin" | undefined;
25
+ color?: string | {
26
+ via?: string | undefined;
27
+ from: string;
28
+ to: string;
29
+ } | undefined;
30
+ isDefaultHidden?: boolean | undefined;
31
+ version?: string | undefined;
32
+ name: string;
33
+ url: string;
34
+ }, {
35
+ icon?: string | undefined;
36
+ iconType?: "light" | "brands" | "duotone" | "sharp-solid" | "solid" | "thin" | undefined;
37
+ color?: string | {
38
+ via?: string | undefined;
39
+ from: string;
40
+ to: string;
41
+ } | undefined;
42
+ isDefaultHidden?: boolean | undefined;
43
+ version?: string | undefined;
44
+ name: string;
45
+ url: string;
46
+ }>, "many">;
@@ -0,0 +1,61 @@
1
+ import { z } from "zod";
2
+ export declare const colorsSchema: z.ZodObject<{
3
+ primary: z.ZodString;
4
+ light: z.ZodOptional<z.ZodString>;
5
+ dark: z.ZodOptional<z.ZodString>;
6
+ background: z.ZodOptional<z.ZodObject<{
7
+ light: z.ZodOptional<z.ZodString>;
8
+ dark: z.ZodOptional<z.ZodString>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ light?: string | undefined;
11
+ dark?: string | undefined;
12
+ }, {
13
+ light?: string | undefined;
14
+ dark?: string | undefined;
15
+ }>>;
16
+ anchors: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
17
+ from: z.ZodString;
18
+ via: z.ZodOptional<z.ZodString>;
19
+ to: z.ZodString;
20
+ }, "strict", z.ZodTypeAny, {
21
+ via?: string | undefined;
22
+ from: string;
23
+ to: string;
24
+ }, {
25
+ via?: string | undefined;
26
+ from: string;
27
+ to: string;
28
+ }>]>>;
29
+ ultraLight: z.ZodOptional<z.ZodAny>;
30
+ ultraDark: z.ZodOptional<z.ZodAny>;
31
+ }, "strict", z.ZodTypeAny, {
32
+ light?: string | undefined;
33
+ dark?: string | undefined;
34
+ background?: {
35
+ light?: string | undefined;
36
+ dark?: string | undefined;
37
+ } | undefined;
38
+ anchors?: string | {
39
+ via?: string | undefined;
40
+ from: string;
41
+ to: string;
42
+ } | undefined;
43
+ ultraLight?: any;
44
+ ultraDark?: any;
45
+ primary: string;
46
+ }, {
47
+ light?: string | undefined;
48
+ dark?: string | undefined;
49
+ background?: {
50
+ light?: string | undefined;
51
+ dark?: string | undefined;
52
+ } | undefined;
53
+ anchors?: string | {
54
+ via?: string | undefined;
55
+ from: string;
56
+ to: string;
57
+ } | undefined;
58
+ ultraLight?: any;
59
+ ultraDark?: any;
60
+ primary: string;
61
+ }>;