@zekidev/schemas 2.0.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/index.cjs +54743 -0
- package/dist/index.d.cts +263 -0
- package/dist/index.d.ts +263 -0
- package/dist/index.js +54704 -0
- package/package.json +35 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
import * as sanity from 'sanity';
|
|
2
|
+
|
|
3
|
+
declare const ctaButton: {
|
|
4
|
+
type: "object";
|
|
5
|
+
name: "ctaButton";
|
|
6
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
7
|
+
preview?: sanity.PreviewConfig<{
|
|
8
|
+
title: string;
|
|
9
|
+
subtitle: string;
|
|
10
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
declare const heroSection: {
|
|
14
|
+
type: "object";
|
|
15
|
+
name: "hero";
|
|
16
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
17
|
+
preview?: sanity.PreviewConfig<{
|
|
18
|
+
title: string;
|
|
19
|
+
subtitle: string;
|
|
20
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
declare const faqSection: {
|
|
24
|
+
type: "object";
|
|
25
|
+
name: "faq";
|
|
26
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
27
|
+
preview?: sanity.PreviewConfig<{
|
|
28
|
+
title: string;
|
|
29
|
+
subtitle: string;
|
|
30
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
declare const gallerySection: {
|
|
34
|
+
type: "object";
|
|
35
|
+
name: "gallery";
|
|
36
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
37
|
+
preview?: sanity.PreviewConfig<{
|
|
38
|
+
title: string;
|
|
39
|
+
subtitle: string;
|
|
40
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
declare const kpisSection: {
|
|
44
|
+
type: "object";
|
|
45
|
+
name: "kpis";
|
|
46
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
47
|
+
preview?: sanity.PreviewConfig<{
|
|
48
|
+
title: string;
|
|
49
|
+
subtitle: string;
|
|
50
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
declare const cardsSection: {
|
|
54
|
+
type: "object";
|
|
55
|
+
name: "cards";
|
|
56
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
57
|
+
preview?: sanity.PreviewConfig<{
|
|
58
|
+
title: string;
|
|
59
|
+
subtitle: string;
|
|
60
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
declare const scrollableSection: {
|
|
64
|
+
type: "object";
|
|
65
|
+
name: "scrollable";
|
|
66
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
67
|
+
preview?: sanity.PreviewConfig<{
|
|
68
|
+
title: string;
|
|
69
|
+
subtitle: string;
|
|
70
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
declare const tabsSection: {
|
|
74
|
+
type: "object";
|
|
75
|
+
name: "tabsSection";
|
|
76
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
77
|
+
preview?: sanity.PreviewConfig<{
|
|
78
|
+
title: string;
|
|
79
|
+
subtitle: string;
|
|
80
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
declare const testimonialsSection: {
|
|
84
|
+
type: "object";
|
|
85
|
+
name: "testimonials";
|
|
86
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
87
|
+
preview?: sanity.PreviewConfig<{
|
|
88
|
+
title: string;
|
|
89
|
+
subtitle: string;
|
|
90
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
declare const logosSection: {
|
|
94
|
+
type: "object";
|
|
95
|
+
name: "logos";
|
|
96
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
97
|
+
preview?: sanity.PreviewConfig<{
|
|
98
|
+
title: string;
|
|
99
|
+
subtitle: string;
|
|
100
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
declare const ctaSection: {
|
|
104
|
+
type: "object";
|
|
105
|
+
name: "cta";
|
|
106
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
107
|
+
preview?: sanity.PreviewConfig<{
|
|
108
|
+
title: string;
|
|
109
|
+
subtitle: string;
|
|
110
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
declare const featuresSection: {
|
|
114
|
+
type: "object";
|
|
115
|
+
name: "features";
|
|
116
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
117
|
+
preview?: sanity.PreviewConfig<{
|
|
118
|
+
title: string;
|
|
119
|
+
subtitle: string;
|
|
120
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
declare const stepsSection: {
|
|
124
|
+
type: "object";
|
|
125
|
+
name: "steps";
|
|
126
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
127
|
+
preview?: sanity.PreviewConfig<{
|
|
128
|
+
title: string;
|
|
129
|
+
subtitle: string;
|
|
130
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
declare const teamSection: {
|
|
134
|
+
type: "object";
|
|
135
|
+
name: "team";
|
|
136
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
137
|
+
preview?: sanity.PreviewConfig<{
|
|
138
|
+
title: string;
|
|
139
|
+
subtitle: string;
|
|
140
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
declare const contactSection: {
|
|
144
|
+
type: "object";
|
|
145
|
+
name: "contact";
|
|
146
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
147
|
+
preview?: sanity.PreviewConfig<{
|
|
148
|
+
title: string;
|
|
149
|
+
subtitle: string;
|
|
150
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
declare const bannerSection: {
|
|
154
|
+
type: "object";
|
|
155
|
+
name: "banner";
|
|
156
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
157
|
+
preview?: sanity.PreviewConfig<{
|
|
158
|
+
title: string;
|
|
159
|
+
subtitle: string;
|
|
160
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
declare const mapsSection: {
|
|
164
|
+
type: "object";
|
|
165
|
+
name: "maps";
|
|
166
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
167
|
+
preview?: sanity.PreviewConfig<{
|
|
168
|
+
title: string;
|
|
169
|
+
subtitle: string;
|
|
170
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
declare const iframeSection: {
|
|
174
|
+
type: "object";
|
|
175
|
+
name: "iframe";
|
|
176
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
177
|
+
preview?: sanity.PreviewConfig<{
|
|
178
|
+
title: string;
|
|
179
|
+
subtitle: string;
|
|
180
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
declare const comparisonSection: {
|
|
184
|
+
type: "object";
|
|
185
|
+
name: "comparison";
|
|
186
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
187
|
+
preview?: sanity.PreviewConfig<{
|
|
188
|
+
title: string;
|
|
189
|
+
subtitle: string;
|
|
190
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
declare const duplexSection: {
|
|
194
|
+
type: "object";
|
|
195
|
+
name: "duplex";
|
|
196
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
197
|
+
preview?: sanity.PreviewConfig<{
|
|
198
|
+
title: string;
|
|
199
|
+
subtitle: string;
|
|
200
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
declare const richtextSection: {
|
|
204
|
+
type: "object";
|
|
205
|
+
name: "richtext";
|
|
206
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
207
|
+
preview?: sanity.PreviewConfig<{
|
|
208
|
+
title: string;
|
|
209
|
+
subtitle: string;
|
|
210
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
declare const videoSection: {
|
|
214
|
+
type: "object";
|
|
215
|
+
name: "videoSection";
|
|
216
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
217
|
+
preview?: sanity.PreviewConfig<{
|
|
218
|
+
title: string;
|
|
219
|
+
subtitle: string;
|
|
220
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
declare const eventRegistrationSection: {
|
|
224
|
+
type: "object";
|
|
225
|
+
name: "eventRegistration";
|
|
226
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
227
|
+
preview?: sanity.PreviewConfig<{
|
|
228
|
+
title: string;
|
|
229
|
+
variant: string;
|
|
230
|
+
}, Record<"title" | "variant", any>> | undefined;
|
|
231
|
+
};
|
|
232
|
+
|
|
233
|
+
declare const newsletterSection: {
|
|
234
|
+
type: "object";
|
|
235
|
+
name: "newsletter";
|
|
236
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
237
|
+
preview?: sanity.PreviewConfig<{
|
|
238
|
+
title: string;
|
|
239
|
+
variant: string;
|
|
240
|
+
}, Record<"title" | "variant", any>> | undefined;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
declare const downloadsSection: {
|
|
244
|
+
type: "object";
|
|
245
|
+
name: "downloads";
|
|
246
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
247
|
+
preview?: sanity.PreviewConfig<{
|
|
248
|
+
title: string;
|
|
249
|
+
variant: string;
|
|
250
|
+
groups: string;
|
|
251
|
+
}, Record<"groups" | "title" | "variant", any>> | undefined;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
declare const siteSettings: {
|
|
255
|
+
type: "document";
|
|
256
|
+
name: "siteSettings";
|
|
257
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
258
|
+
preview?: sanity.PreviewConfig<{
|
|
259
|
+
title: string;
|
|
260
|
+
}, Record<"title", any>> | undefined;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
export { bannerSection, cardsSection, comparisonSection, contactSection, ctaButton, ctaSection, downloadsSection, duplexSection, eventRegistrationSection, faqSection, featuresSection, gallerySection, heroSection, iframeSection, kpisSection, logosSection, mapsSection, newsletterSection, richtextSection, scrollableSection, siteSettings, stepsSection, tabsSection, teamSection, testimonialsSection, videoSection };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
import * as sanity from 'sanity';
|
|
2
|
+
|
|
3
|
+
declare const ctaButton: {
|
|
4
|
+
type: "object";
|
|
5
|
+
name: "ctaButton";
|
|
6
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
7
|
+
preview?: sanity.PreviewConfig<{
|
|
8
|
+
title: string;
|
|
9
|
+
subtitle: string;
|
|
10
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
declare const heroSection: {
|
|
14
|
+
type: "object";
|
|
15
|
+
name: "hero";
|
|
16
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
17
|
+
preview?: sanity.PreviewConfig<{
|
|
18
|
+
title: string;
|
|
19
|
+
subtitle: string;
|
|
20
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
declare const faqSection: {
|
|
24
|
+
type: "object";
|
|
25
|
+
name: "faq";
|
|
26
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
27
|
+
preview?: sanity.PreviewConfig<{
|
|
28
|
+
title: string;
|
|
29
|
+
subtitle: string;
|
|
30
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
declare const gallerySection: {
|
|
34
|
+
type: "object";
|
|
35
|
+
name: "gallery";
|
|
36
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
37
|
+
preview?: sanity.PreviewConfig<{
|
|
38
|
+
title: string;
|
|
39
|
+
subtitle: string;
|
|
40
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
declare const kpisSection: {
|
|
44
|
+
type: "object";
|
|
45
|
+
name: "kpis";
|
|
46
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
47
|
+
preview?: sanity.PreviewConfig<{
|
|
48
|
+
title: string;
|
|
49
|
+
subtitle: string;
|
|
50
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
declare const cardsSection: {
|
|
54
|
+
type: "object";
|
|
55
|
+
name: "cards";
|
|
56
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
57
|
+
preview?: sanity.PreviewConfig<{
|
|
58
|
+
title: string;
|
|
59
|
+
subtitle: string;
|
|
60
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
declare const scrollableSection: {
|
|
64
|
+
type: "object";
|
|
65
|
+
name: "scrollable";
|
|
66
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
67
|
+
preview?: sanity.PreviewConfig<{
|
|
68
|
+
title: string;
|
|
69
|
+
subtitle: string;
|
|
70
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
declare const tabsSection: {
|
|
74
|
+
type: "object";
|
|
75
|
+
name: "tabsSection";
|
|
76
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
77
|
+
preview?: sanity.PreviewConfig<{
|
|
78
|
+
title: string;
|
|
79
|
+
subtitle: string;
|
|
80
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
declare const testimonialsSection: {
|
|
84
|
+
type: "object";
|
|
85
|
+
name: "testimonials";
|
|
86
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
87
|
+
preview?: sanity.PreviewConfig<{
|
|
88
|
+
title: string;
|
|
89
|
+
subtitle: string;
|
|
90
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
declare const logosSection: {
|
|
94
|
+
type: "object";
|
|
95
|
+
name: "logos";
|
|
96
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
97
|
+
preview?: sanity.PreviewConfig<{
|
|
98
|
+
title: string;
|
|
99
|
+
subtitle: string;
|
|
100
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
declare const ctaSection: {
|
|
104
|
+
type: "object";
|
|
105
|
+
name: "cta";
|
|
106
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
107
|
+
preview?: sanity.PreviewConfig<{
|
|
108
|
+
title: string;
|
|
109
|
+
subtitle: string;
|
|
110
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
declare const featuresSection: {
|
|
114
|
+
type: "object";
|
|
115
|
+
name: "features";
|
|
116
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
117
|
+
preview?: sanity.PreviewConfig<{
|
|
118
|
+
title: string;
|
|
119
|
+
subtitle: string;
|
|
120
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
declare const stepsSection: {
|
|
124
|
+
type: "object";
|
|
125
|
+
name: "steps";
|
|
126
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
127
|
+
preview?: sanity.PreviewConfig<{
|
|
128
|
+
title: string;
|
|
129
|
+
subtitle: string;
|
|
130
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
declare const teamSection: {
|
|
134
|
+
type: "object";
|
|
135
|
+
name: "team";
|
|
136
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
137
|
+
preview?: sanity.PreviewConfig<{
|
|
138
|
+
title: string;
|
|
139
|
+
subtitle: string;
|
|
140
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
declare const contactSection: {
|
|
144
|
+
type: "object";
|
|
145
|
+
name: "contact";
|
|
146
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
147
|
+
preview?: sanity.PreviewConfig<{
|
|
148
|
+
title: string;
|
|
149
|
+
subtitle: string;
|
|
150
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
declare const bannerSection: {
|
|
154
|
+
type: "object";
|
|
155
|
+
name: "banner";
|
|
156
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
157
|
+
preview?: sanity.PreviewConfig<{
|
|
158
|
+
title: string;
|
|
159
|
+
subtitle: string;
|
|
160
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
declare const mapsSection: {
|
|
164
|
+
type: "object";
|
|
165
|
+
name: "maps";
|
|
166
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
167
|
+
preview?: sanity.PreviewConfig<{
|
|
168
|
+
title: string;
|
|
169
|
+
subtitle: string;
|
|
170
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
declare const iframeSection: {
|
|
174
|
+
type: "object";
|
|
175
|
+
name: "iframe";
|
|
176
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
177
|
+
preview?: sanity.PreviewConfig<{
|
|
178
|
+
title: string;
|
|
179
|
+
subtitle: string;
|
|
180
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
declare const comparisonSection: {
|
|
184
|
+
type: "object";
|
|
185
|
+
name: "comparison";
|
|
186
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
187
|
+
preview?: sanity.PreviewConfig<{
|
|
188
|
+
title: string;
|
|
189
|
+
subtitle: string;
|
|
190
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
declare const duplexSection: {
|
|
194
|
+
type: "object";
|
|
195
|
+
name: "duplex";
|
|
196
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
197
|
+
preview?: sanity.PreviewConfig<{
|
|
198
|
+
title: string;
|
|
199
|
+
subtitle: string;
|
|
200
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
declare const richtextSection: {
|
|
204
|
+
type: "object";
|
|
205
|
+
name: "richtext";
|
|
206
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
207
|
+
preview?: sanity.PreviewConfig<{
|
|
208
|
+
title: string;
|
|
209
|
+
subtitle: string;
|
|
210
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
declare const videoSection: {
|
|
214
|
+
type: "object";
|
|
215
|
+
name: "videoSection";
|
|
216
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
217
|
+
preview?: sanity.PreviewConfig<{
|
|
218
|
+
title: string;
|
|
219
|
+
subtitle: string;
|
|
220
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
declare const eventRegistrationSection: {
|
|
224
|
+
type: "object";
|
|
225
|
+
name: "eventRegistration";
|
|
226
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
227
|
+
preview?: sanity.PreviewConfig<{
|
|
228
|
+
title: string;
|
|
229
|
+
variant: string;
|
|
230
|
+
}, Record<"title" | "variant", any>> | undefined;
|
|
231
|
+
};
|
|
232
|
+
|
|
233
|
+
declare const newsletterSection: {
|
|
234
|
+
type: "object";
|
|
235
|
+
name: "newsletter";
|
|
236
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
237
|
+
preview?: sanity.PreviewConfig<{
|
|
238
|
+
title: string;
|
|
239
|
+
variant: string;
|
|
240
|
+
}, Record<"title" | "variant", any>> | undefined;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
declare const downloadsSection: {
|
|
244
|
+
type: "object";
|
|
245
|
+
name: "downloads";
|
|
246
|
+
} & Omit<sanity.ObjectDefinition, "preview"> & {
|
|
247
|
+
preview?: sanity.PreviewConfig<{
|
|
248
|
+
title: string;
|
|
249
|
+
variant: string;
|
|
250
|
+
groups: string;
|
|
251
|
+
}, Record<"groups" | "title" | "variant", any>> | undefined;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
declare const siteSettings: {
|
|
255
|
+
type: "document";
|
|
256
|
+
name: "siteSettings";
|
|
257
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
258
|
+
preview?: sanity.PreviewConfig<{
|
|
259
|
+
title: string;
|
|
260
|
+
}, Record<"title", any>> | undefined;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
export { bannerSection, cardsSection, comparisonSection, contactSection, ctaButton, ctaSection, downloadsSection, duplexSection, eventRegistrationSection, faqSection, featuresSection, gallerySection, heroSection, iframeSection, kpisSection, logosSection, mapsSection, newsletterSection, richtextSection, scrollableSection, siteSettings, stepsSection, tabsSection, teamSection, testimonialsSection, videoSection };
|