@mdxui/services 0.1.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/README.md +58 -0
- package/dist/components/index.d.ts +74 -0
- package/dist/components/index.js +615 -0
- package/dist/components/index.js.map +1 -0
- package/dist/index-D2nWoFGI.d.ts +1973 -0
- package/dist/index.d.ts +72 -0
- package/dist/index.js +1322 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas/index.d.ts +4 -0
- package/dist/schemas/index.js +591 -0
- package/dist/schemas/index.js.map +1 -0
- package/dist/shared/index.d.ts +54 -0
- package/dist/shared/index.js +63 -0
- package/dist/shared/index.js.map +1 -0
- package/package.json +109 -0
|
@@ -0,0 +1,1973 @@
|
|
|
1
|
+
import * as zod_v4_core from 'zod/v4/core';
|
|
2
|
+
import * as zod from 'zod';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
|
|
6
|
+
declare const CatalogHeroSchema: z.ZodObject<{
|
|
7
|
+
headline: z.ZodOptional<z.ZodString>;
|
|
8
|
+
subheadline: z.ZodOptional<z.ZodString>;
|
|
9
|
+
visual: z.ZodOptional<z.ZodString>;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
type CatalogHero = z.infer<typeof CatalogHeroSchema>;
|
|
12
|
+
/**
|
|
13
|
+
* Pricing summary hint for the catalog card. Drives which Pricing
|
|
14
|
+
* layout variant the renderer selects.
|
|
15
|
+
*
|
|
16
|
+
* upstream-proposal: same as CatalogShapeSchema above.
|
|
17
|
+
*/
|
|
18
|
+
declare const PricingSummarySchema: z.ZodEnum<{
|
|
19
|
+
"starting-at": "starting-at";
|
|
20
|
+
"per-call": "per-call";
|
|
21
|
+
"tier-comparison": "tier-comparison";
|
|
22
|
+
"contact-us": "contact-us";
|
|
23
|
+
}>;
|
|
24
|
+
type PricingSummary = z.infer<typeof PricingSummarySchema>;
|
|
25
|
+
/**
|
|
26
|
+
* Browse-side catalog UI shape. Produced by deriveCatalog(svc).
|
|
27
|
+
*
|
|
28
|
+
* upstream-proposal: file against mdxui — see
|
|
29
|
+
* docs/patterns/upstream-proposals.md §PR2-catalog.
|
|
30
|
+
* The shape is the data layer; LandingPagePropsSchema (already in mdxui)
|
|
31
|
+
* is the layout layer. Proposing CatalogShapeSchema as the data contract
|
|
32
|
+
* that feeds the layout.
|
|
33
|
+
*/
|
|
34
|
+
declare const CatalogShapeSchema: z.ZodObject<{
|
|
35
|
+
hero: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
headline: z.ZodOptional<z.ZodString>;
|
|
37
|
+
subheadline: z.ZodOptional<z.ZodString>;
|
|
38
|
+
visual: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, z.core.$strip>>;
|
|
40
|
+
pricingSummary: z.ZodEnum<{
|
|
41
|
+
"starting-at": "starting-at";
|
|
42
|
+
"per-call": "per-call";
|
|
43
|
+
"tier-comparison": "tier-comparison";
|
|
44
|
+
"contact-us": "contact-us";
|
|
45
|
+
}>;
|
|
46
|
+
}, z.core.$strip>;
|
|
47
|
+
type CatalogShape = z.infer<typeof CatalogShapeSchema>;
|
|
48
|
+
/**
|
|
49
|
+
* TextInputPropsSchema with `source` optional.
|
|
50
|
+
* Used for string fields without enum (plain text, email, date, etc.)
|
|
51
|
+
*/
|
|
52
|
+
declare const TextInputSchema: zod.ZodObject<{
|
|
53
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
54
|
+
label: zod.ZodOptional<zod.ZodString>;
|
|
55
|
+
placeholder: zod.ZodOptional<zod.ZodString>;
|
|
56
|
+
helperText: zod.ZodOptional<zod.ZodString>;
|
|
57
|
+
error: zod.ZodOptional<zod.ZodString>;
|
|
58
|
+
required: zod.ZodDefault<zod.ZodBoolean>;
|
|
59
|
+
disabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
60
|
+
readOnly: zod.ZodDefault<zod.ZodBoolean>;
|
|
61
|
+
autoFocus: zod.ZodDefault<zod.ZodBoolean>;
|
|
62
|
+
className: zod.ZodOptional<zod.ZodString>;
|
|
63
|
+
fullWidth: zod.ZodDefault<zod.ZodBoolean>;
|
|
64
|
+
value: zod.ZodOptional<zod.ZodString>;
|
|
65
|
+
defaultValue: zod.ZodOptional<zod.ZodString>;
|
|
66
|
+
type: zod.ZodDefault<zod.ZodEnum<{
|
|
67
|
+
search: "search";
|
|
68
|
+
text: "text";
|
|
69
|
+
email: "email";
|
|
70
|
+
url: "url";
|
|
71
|
+
tel: "tel";
|
|
72
|
+
password: "password";
|
|
73
|
+
}>>;
|
|
74
|
+
maxLength: zod.ZodOptional<zod.ZodNumber>;
|
|
75
|
+
minLength: zod.ZodOptional<zod.ZodNumber>;
|
|
76
|
+
pattern: zod.ZodOptional<zod.ZodString>;
|
|
77
|
+
showCount: zod.ZodDefault<zod.ZodBoolean>;
|
|
78
|
+
prefix: zod.ZodOptional<zod.ZodString>;
|
|
79
|
+
suffix: zod.ZodOptional<zod.ZodString>;
|
|
80
|
+
size: zod.ZodDefault<zod.ZodEnum<{
|
|
81
|
+
sm: "sm";
|
|
82
|
+
md: "md";
|
|
83
|
+
lg: "lg";
|
|
84
|
+
}>>;
|
|
85
|
+
variant: zod.ZodDefault<zod.ZodEnum<{
|
|
86
|
+
outline: "outline";
|
|
87
|
+
ghost: "ghost";
|
|
88
|
+
filled: "filled";
|
|
89
|
+
}>>;
|
|
90
|
+
autoCapitalize: zod.ZodOptional<zod.ZodEnum<{
|
|
91
|
+
none: "none";
|
|
92
|
+
sentences: "sentences";
|
|
93
|
+
words: "words";
|
|
94
|
+
characters: "characters";
|
|
95
|
+
}>>;
|
|
96
|
+
autoCorrect: zod.ZodOptional<zod.ZodBoolean>;
|
|
97
|
+
spellCheck: zod.ZodOptional<zod.ZodBoolean>;
|
|
98
|
+
clearable: zod.ZodDefault<zod.ZodBoolean>;
|
|
99
|
+
source: z.ZodOptional<z.ZodString>;
|
|
100
|
+
}, zod_v4_core.$strip>;
|
|
101
|
+
type TextInput = z.infer<typeof TextInputSchema>;
|
|
102
|
+
/**
|
|
103
|
+
* SelectInputPropsSchema with `source` optional.
|
|
104
|
+
* Used for string/number fields with `enum` constraint.
|
|
105
|
+
*/
|
|
106
|
+
declare const SelectInputSchema: zod.ZodObject<{
|
|
107
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
108
|
+
label: zod.ZodOptional<zod.ZodString>;
|
|
109
|
+
placeholder: zod.ZodOptional<zod.ZodString>;
|
|
110
|
+
helperText: zod.ZodOptional<zod.ZodString>;
|
|
111
|
+
error: zod.ZodOptional<zod.ZodString>;
|
|
112
|
+
required: zod.ZodDefault<zod.ZodBoolean>;
|
|
113
|
+
disabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
114
|
+
readOnly: zod.ZodDefault<zod.ZodBoolean>;
|
|
115
|
+
autoFocus: zod.ZodDefault<zod.ZodBoolean>;
|
|
116
|
+
className: zod.ZodOptional<zod.ZodString>;
|
|
117
|
+
fullWidth: zod.ZodDefault<zod.ZodBoolean>;
|
|
118
|
+
value: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>>;
|
|
119
|
+
defaultValue: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>>;
|
|
120
|
+
options: zod.ZodArray<zod.ZodObject<{
|
|
121
|
+
value: zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>;
|
|
122
|
+
label: zod.ZodString;
|
|
123
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
124
|
+
group: zod.ZodOptional<zod.ZodString>;
|
|
125
|
+
icon: zod.ZodOptional<zod.ZodString>;
|
|
126
|
+
description: zod.ZodOptional<zod.ZodString>;
|
|
127
|
+
}, zod_v4_core.$strip>>;
|
|
128
|
+
clearable: zod.ZodDefault<zod.ZodBoolean>;
|
|
129
|
+
searchable: zod.ZodDefault<zod.ZodBoolean>;
|
|
130
|
+
creatable: zod.ZodDefault<zod.ZodBoolean>;
|
|
131
|
+
loading: zod.ZodDefault<zod.ZodBoolean>;
|
|
132
|
+
noOptionsMessage: zod.ZodDefault<zod.ZodString>;
|
|
133
|
+
size: zod.ZodDefault<zod.ZodEnum<{
|
|
134
|
+
sm: "sm";
|
|
135
|
+
md: "md";
|
|
136
|
+
lg: "lg";
|
|
137
|
+
}>>;
|
|
138
|
+
variant: zod.ZodDefault<zod.ZodEnum<{
|
|
139
|
+
outline: "outline";
|
|
140
|
+
ghost: "ghost";
|
|
141
|
+
filled: "filled";
|
|
142
|
+
}>>;
|
|
143
|
+
source: z.ZodOptional<z.ZodString>;
|
|
144
|
+
}, zod_v4_core.$strip>;
|
|
145
|
+
type SelectInput = z.infer<typeof SelectInputSchema>;
|
|
146
|
+
/**
|
|
147
|
+
* RadioGroupInputPropsSchema with `source` optional.
|
|
148
|
+
* Used for string/number fields with enum + `options` (rich label/sub display).
|
|
149
|
+
*/
|
|
150
|
+
declare const RadioGroupInputSchema: zod.ZodObject<{
|
|
151
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
152
|
+
label: zod.ZodOptional<zod.ZodString>;
|
|
153
|
+
placeholder: zod.ZodOptional<zod.ZodString>;
|
|
154
|
+
helperText: zod.ZodOptional<zod.ZodString>;
|
|
155
|
+
error: zod.ZodOptional<zod.ZodString>;
|
|
156
|
+
required: zod.ZodDefault<zod.ZodBoolean>;
|
|
157
|
+
disabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
158
|
+
readOnly: zod.ZodDefault<zod.ZodBoolean>;
|
|
159
|
+
autoFocus: zod.ZodDefault<zod.ZodBoolean>;
|
|
160
|
+
className: zod.ZodOptional<zod.ZodString>;
|
|
161
|
+
fullWidth: zod.ZodDefault<zod.ZodBoolean>;
|
|
162
|
+
value: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>>;
|
|
163
|
+
defaultValue: zod.ZodOptional<zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>>;
|
|
164
|
+
options: zod.ZodArray<zod.ZodObject<{
|
|
165
|
+
value: zod.ZodUnion<readonly [zod.ZodString, zod.ZodNumber]>;
|
|
166
|
+
label: zod.ZodString;
|
|
167
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
168
|
+
group: zod.ZodOptional<zod.ZodString>;
|
|
169
|
+
icon: zod.ZodOptional<zod.ZodString>;
|
|
170
|
+
description: zod.ZodOptional<zod.ZodString>;
|
|
171
|
+
}, zod_v4_core.$strip>>;
|
|
172
|
+
direction: zod.ZodDefault<zod.ZodEnum<{
|
|
173
|
+
horizontal: "horizontal";
|
|
174
|
+
vertical: "vertical";
|
|
175
|
+
}>>;
|
|
176
|
+
showDescriptions: zod.ZodDefault<zod.ZodBoolean>;
|
|
177
|
+
size: zod.ZodDefault<zod.ZodEnum<{
|
|
178
|
+
sm: "sm";
|
|
179
|
+
md: "md";
|
|
180
|
+
lg: "lg";
|
|
181
|
+
}>>;
|
|
182
|
+
source: z.ZodOptional<z.ZodString>;
|
|
183
|
+
}, zod_v4_core.$strip>;
|
|
184
|
+
type RadioGroupInput = z.infer<typeof RadioGroupInputSchema>;
|
|
185
|
+
/**
|
|
186
|
+
* FileInputPropsSchema with `source` optional.
|
|
187
|
+
* Used for fields with `widget: 'image-upload'` or `format: 'uri'` + upload widget.
|
|
188
|
+
*/
|
|
189
|
+
declare const FileInputSchema: zod.ZodObject<{
|
|
190
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
191
|
+
label: zod.ZodOptional<zod.ZodString>;
|
|
192
|
+
placeholder: zod.ZodOptional<zod.ZodString>;
|
|
193
|
+
helperText: zod.ZodOptional<zod.ZodString>;
|
|
194
|
+
error: zod.ZodOptional<zod.ZodString>;
|
|
195
|
+
required: zod.ZodDefault<zod.ZodBoolean>;
|
|
196
|
+
disabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
197
|
+
readOnly: zod.ZodDefault<zod.ZodBoolean>;
|
|
198
|
+
autoFocus: zod.ZodDefault<zod.ZodBoolean>;
|
|
199
|
+
className: zod.ZodOptional<zod.ZodString>;
|
|
200
|
+
fullWidth: zod.ZodDefault<zod.ZodBoolean>;
|
|
201
|
+
value: zod.ZodOptional<zod.ZodArray<zod.ZodAny>>;
|
|
202
|
+
multiple: zod.ZodDefault<zod.ZodBoolean>;
|
|
203
|
+
accept: zod.ZodOptional<zod.ZodString>;
|
|
204
|
+
acceptedExtensions: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
205
|
+
maxSize: zod.ZodOptional<zod.ZodNumber>;
|
|
206
|
+
maxFiles: zod.ZodOptional<zod.ZodNumber>;
|
|
207
|
+
dragAndDrop: zod.ZodDefault<zod.ZodBoolean>;
|
|
208
|
+
showPreview: zod.ZodDefault<zod.ZodBoolean>;
|
|
209
|
+
showProgress: zod.ZodDefault<zod.ZodBoolean>;
|
|
210
|
+
uploadUrl: zod.ZodOptional<zod.ZodString>;
|
|
211
|
+
autoUpload: zod.ZodDefault<zod.ZodBoolean>;
|
|
212
|
+
source: z.ZodOptional<z.ZodString>;
|
|
213
|
+
}, zod_v4_core.$strip>;
|
|
214
|
+
type FileInput = z.infer<typeof FileInputSchema>;
|
|
215
|
+
declare const OrderFlowSchema: z.ZodEnum<{
|
|
216
|
+
instant: "instant";
|
|
217
|
+
guided: "guided";
|
|
218
|
+
"consultation-first": "consultation-first";
|
|
219
|
+
}>;
|
|
220
|
+
type OrderFlow = z.infer<typeof OrderFlowSchema>;
|
|
221
|
+
/**
|
|
222
|
+
* One field in an order step — the data representation used by the
|
|
223
|
+
* form renderer.
|
|
224
|
+
*
|
|
225
|
+
* upstream-proposal: same as OrderShapeSchema above.
|
|
226
|
+
*/
|
|
227
|
+
declare const OrderFieldSchema: z.ZodObject<{
|
|
228
|
+
name: z.ZodString;
|
|
229
|
+
type: z.ZodEnum<{
|
|
230
|
+
string: "string";
|
|
231
|
+
number: "number";
|
|
232
|
+
boolean: "boolean";
|
|
233
|
+
integer: "integer";
|
|
234
|
+
}>;
|
|
235
|
+
required: z.ZodBoolean;
|
|
236
|
+
title: z.ZodOptional<z.ZodString>;
|
|
237
|
+
description: z.ZodOptional<z.ZodString>;
|
|
238
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
239
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
240
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
241
|
+
email: "email";
|
|
242
|
+
date: "date";
|
|
243
|
+
"date-time": "date-time";
|
|
244
|
+
uri: "uri";
|
|
245
|
+
}>>;
|
|
246
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
247
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
248
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
249
|
+
"vin-decoder": "vin-decoder";
|
|
250
|
+
"image-upload": "image-upload";
|
|
251
|
+
}>>;
|
|
252
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
253
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
254
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
255
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
256
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
257
|
+
label: z.ZodOptional<z.ZodString>;
|
|
258
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
259
|
+
}, z.core.$strip>>>>;
|
|
260
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
261
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
262
|
+
providerId: z.ZodString;
|
|
263
|
+
resourceType: z.ZodEnum<{
|
|
264
|
+
channel: "channel";
|
|
265
|
+
"crm-record": "crm-record";
|
|
266
|
+
sequence: "sequence";
|
|
267
|
+
"phone-number": "phone-number";
|
|
268
|
+
"voice-line": "voice-line";
|
|
269
|
+
"webhook-event": "webhook-event";
|
|
270
|
+
"database-table": "database-table";
|
|
271
|
+
folder: "folder";
|
|
272
|
+
mailbox: "mailbox";
|
|
273
|
+
account: "account";
|
|
274
|
+
}>;
|
|
275
|
+
}, z.core.$strip>>;
|
|
276
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
277
|
+
providerId: z.ZodString;
|
|
278
|
+
metadataKey: z.ZodString;
|
|
279
|
+
}, z.core.$strip>>;
|
|
280
|
+
}, z.core.$strip>;
|
|
281
|
+
type OrderField = z.infer<typeof OrderFieldSchema>;
|
|
282
|
+
declare const OrderGroupSchema: z.ZodObject<{
|
|
283
|
+
id: z.ZodString;
|
|
284
|
+
title: z.ZodString;
|
|
285
|
+
description: z.ZodOptional<z.ZodString>;
|
|
286
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
287
|
+
name: z.ZodString;
|
|
288
|
+
type: z.ZodEnum<{
|
|
289
|
+
string: "string";
|
|
290
|
+
number: "number";
|
|
291
|
+
boolean: "boolean";
|
|
292
|
+
integer: "integer";
|
|
293
|
+
}>;
|
|
294
|
+
required: z.ZodBoolean;
|
|
295
|
+
title: z.ZodOptional<z.ZodString>;
|
|
296
|
+
description: z.ZodOptional<z.ZodString>;
|
|
297
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
298
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
299
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
300
|
+
email: "email";
|
|
301
|
+
date: "date";
|
|
302
|
+
"date-time": "date-time";
|
|
303
|
+
uri: "uri";
|
|
304
|
+
}>>;
|
|
305
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
306
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
307
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
308
|
+
"vin-decoder": "vin-decoder";
|
|
309
|
+
"image-upload": "image-upload";
|
|
310
|
+
}>>;
|
|
311
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
312
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
313
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
314
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
315
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
316
|
+
label: z.ZodOptional<z.ZodString>;
|
|
317
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
318
|
+
}, z.core.$strip>>>>;
|
|
319
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
320
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
321
|
+
providerId: z.ZodString;
|
|
322
|
+
resourceType: z.ZodEnum<{
|
|
323
|
+
channel: "channel";
|
|
324
|
+
"crm-record": "crm-record";
|
|
325
|
+
sequence: "sequence";
|
|
326
|
+
"phone-number": "phone-number";
|
|
327
|
+
"voice-line": "voice-line";
|
|
328
|
+
"webhook-event": "webhook-event";
|
|
329
|
+
"database-table": "database-table";
|
|
330
|
+
folder: "folder";
|
|
331
|
+
mailbox: "mailbox";
|
|
332
|
+
account: "account";
|
|
333
|
+
}>;
|
|
334
|
+
}, z.core.$strip>>;
|
|
335
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
336
|
+
providerId: z.ZodString;
|
|
337
|
+
metadataKey: z.ZodString;
|
|
338
|
+
}, z.core.$strip>>;
|
|
339
|
+
}, z.core.$strip>>>;
|
|
340
|
+
}, z.core.$strip>;
|
|
341
|
+
type OrderGroup = z.infer<typeof OrderGroupSchema>;
|
|
342
|
+
declare const OrderStepSchema: z.ZodObject<{
|
|
343
|
+
id: z.ZodString;
|
|
344
|
+
title: z.ZodOptional<z.ZodString>;
|
|
345
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
346
|
+
name: z.ZodString;
|
|
347
|
+
type: z.ZodEnum<{
|
|
348
|
+
string: "string";
|
|
349
|
+
number: "number";
|
|
350
|
+
boolean: "boolean";
|
|
351
|
+
integer: "integer";
|
|
352
|
+
}>;
|
|
353
|
+
required: z.ZodBoolean;
|
|
354
|
+
title: z.ZodOptional<z.ZodString>;
|
|
355
|
+
description: z.ZodOptional<z.ZodString>;
|
|
356
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
357
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
358
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
359
|
+
email: "email";
|
|
360
|
+
date: "date";
|
|
361
|
+
"date-time": "date-time";
|
|
362
|
+
uri: "uri";
|
|
363
|
+
}>>;
|
|
364
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
365
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
366
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
367
|
+
"vin-decoder": "vin-decoder";
|
|
368
|
+
"image-upload": "image-upload";
|
|
369
|
+
}>>;
|
|
370
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
371
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
372
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
373
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
374
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
375
|
+
label: z.ZodOptional<z.ZodString>;
|
|
376
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
377
|
+
}, z.core.$strip>>>>;
|
|
378
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
379
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
380
|
+
providerId: z.ZodString;
|
|
381
|
+
resourceType: z.ZodEnum<{
|
|
382
|
+
channel: "channel";
|
|
383
|
+
"crm-record": "crm-record";
|
|
384
|
+
sequence: "sequence";
|
|
385
|
+
"phone-number": "phone-number";
|
|
386
|
+
"voice-line": "voice-line";
|
|
387
|
+
"webhook-event": "webhook-event";
|
|
388
|
+
"database-table": "database-table";
|
|
389
|
+
folder: "folder";
|
|
390
|
+
mailbox: "mailbox";
|
|
391
|
+
account: "account";
|
|
392
|
+
}>;
|
|
393
|
+
}, z.core.$strip>>;
|
|
394
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
395
|
+
providerId: z.ZodString;
|
|
396
|
+
metadataKey: z.ZodString;
|
|
397
|
+
}, z.core.$strip>>;
|
|
398
|
+
}, z.core.$strip>>>;
|
|
399
|
+
groups: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
400
|
+
id: z.ZodString;
|
|
401
|
+
title: z.ZodString;
|
|
402
|
+
description: z.ZodOptional<z.ZodString>;
|
|
403
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
404
|
+
name: z.ZodString;
|
|
405
|
+
type: z.ZodEnum<{
|
|
406
|
+
string: "string";
|
|
407
|
+
number: "number";
|
|
408
|
+
boolean: "boolean";
|
|
409
|
+
integer: "integer";
|
|
410
|
+
}>;
|
|
411
|
+
required: z.ZodBoolean;
|
|
412
|
+
title: z.ZodOptional<z.ZodString>;
|
|
413
|
+
description: z.ZodOptional<z.ZodString>;
|
|
414
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
415
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
416
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
417
|
+
email: "email";
|
|
418
|
+
date: "date";
|
|
419
|
+
"date-time": "date-time";
|
|
420
|
+
uri: "uri";
|
|
421
|
+
}>>;
|
|
422
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
423
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
424
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
425
|
+
"vin-decoder": "vin-decoder";
|
|
426
|
+
"image-upload": "image-upload";
|
|
427
|
+
}>>;
|
|
428
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
429
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
430
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
431
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
432
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
433
|
+
label: z.ZodOptional<z.ZodString>;
|
|
434
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
435
|
+
}, z.core.$strip>>>>;
|
|
436
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
437
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
438
|
+
providerId: z.ZodString;
|
|
439
|
+
resourceType: z.ZodEnum<{
|
|
440
|
+
channel: "channel";
|
|
441
|
+
"crm-record": "crm-record";
|
|
442
|
+
sequence: "sequence";
|
|
443
|
+
"phone-number": "phone-number";
|
|
444
|
+
"voice-line": "voice-line";
|
|
445
|
+
"webhook-event": "webhook-event";
|
|
446
|
+
"database-table": "database-table";
|
|
447
|
+
folder: "folder";
|
|
448
|
+
mailbox: "mailbox";
|
|
449
|
+
account: "account";
|
|
450
|
+
}>;
|
|
451
|
+
}, z.core.$strip>>;
|
|
452
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
453
|
+
providerId: z.ZodString;
|
|
454
|
+
metadataKey: z.ZodString;
|
|
455
|
+
}, z.core.$strip>>;
|
|
456
|
+
}, z.core.$strip>>>;
|
|
457
|
+
}, z.core.$strip>>>;
|
|
458
|
+
}, z.core.$strip>;
|
|
459
|
+
type OrderStep = z.infer<typeof OrderStepSchema>;
|
|
460
|
+
declare const OrderLegalSchema: z.ZodObject<{
|
|
461
|
+
termsRequired: z.ZodBoolean;
|
|
462
|
+
privacyRequired: z.ZodBoolean;
|
|
463
|
+
}, z.core.$strip>;
|
|
464
|
+
type OrderLegal = z.infer<typeof OrderLegalSchema>;
|
|
465
|
+
/**
|
|
466
|
+
* Order-side UI shape. Produced by deriveOrder(svc).
|
|
467
|
+
*
|
|
468
|
+
* upstream-proposal: file against mdxui — see
|
|
469
|
+
* docs/patterns/upstream-proposals.md §PR2-order.
|
|
470
|
+
*/
|
|
471
|
+
declare const OrderShapeSchema: z.ZodObject<{
|
|
472
|
+
flow: z.ZodEnum<{
|
|
473
|
+
instant: "instant";
|
|
474
|
+
guided: "guided";
|
|
475
|
+
"consultation-first": "consultation-first";
|
|
476
|
+
}>;
|
|
477
|
+
steps: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
478
|
+
id: z.ZodString;
|
|
479
|
+
title: z.ZodOptional<z.ZodString>;
|
|
480
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
481
|
+
name: z.ZodString;
|
|
482
|
+
type: z.ZodEnum<{
|
|
483
|
+
string: "string";
|
|
484
|
+
number: "number";
|
|
485
|
+
boolean: "boolean";
|
|
486
|
+
integer: "integer";
|
|
487
|
+
}>;
|
|
488
|
+
required: z.ZodBoolean;
|
|
489
|
+
title: z.ZodOptional<z.ZodString>;
|
|
490
|
+
description: z.ZodOptional<z.ZodString>;
|
|
491
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
492
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
493
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
494
|
+
email: "email";
|
|
495
|
+
date: "date";
|
|
496
|
+
"date-time": "date-time";
|
|
497
|
+
uri: "uri";
|
|
498
|
+
}>>;
|
|
499
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
500
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
501
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
502
|
+
"vin-decoder": "vin-decoder";
|
|
503
|
+
"image-upload": "image-upload";
|
|
504
|
+
}>>;
|
|
505
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
506
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
507
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
508
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
509
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
510
|
+
label: z.ZodOptional<z.ZodString>;
|
|
511
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
512
|
+
}, z.core.$strip>>>>;
|
|
513
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
514
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
515
|
+
providerId: z.ZodString;
|
|
516
|
+
resourceType: z.ZodEnum<{
|
|
517
|
+
channel: "channel";
|
|
518
|
+
"crm-record": "crm-record";
|
|
519
|
+
sequence: "sequence";
|
|
520
|
+
"phone-number": "phone-number";
|
|
521
|
+
"voice-line": "voice-line";
|
|
522
|
+
"webhook-event": "webhook-event";
|
|
523
|
+
"database-table": "database-table";
|
|
524
|
+
folder: "folder";
|
|
525
|
+
mailbox: "mailbox";
|
|
526
|
+
account: "account";
|
|
527
|
+
}>;
|
|
528
|
+
}, z.core.$strip>>;
|
|
529
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
530
|
+
providerId: z.ZodString;
|
|
531
|
+
metadataKey: z.ZodString;
|
|
532
|
+
}, z.core.$strip>>;
|
|
533
|
+
}, z.core.$strip>>>;
|
|
534
|
+
groups: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
535
|
+
id: z.ZodString;
|
|
536
|
+
title: z.ZodString;
|
|
537
|
+
description: z.ZodOptional<z.ZodString>;
|
|
538
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
539
|
+
name: z.ZodString;
|
|
540
|
+
type: z.ZodEnum<{
|
|
541
|
+
string: "string";
|
|
542
|
+
number: "number";
|
|
543
|
+
boolean: "boolean";
|
|
544
|
+
integer: "integer";
|
|
545
|
+
}>;
|
|
546
|
+
required: z.ZodBoolean;
|
|
547
|
+
title: z.ZodOptional<z.ZodString>;
|
|
548
|
+
description: z.ZodOptional<z.ZodString>;
|
|
549
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
550
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
551
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
552
|
+
email: "email";
|
|
553
|
+
date: "date";
|
|
554
|
+
"date-time": "date-time";
|
|
555
|
+
uri: "uri";
|
|
556
|
+
}>>;
|
|
557
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
558
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
559
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
560
|
+
"vin-decoder": "vin-decoder";
|
|
561
|
+
"image-upload": "image-upload";
|
|
562
|
+
}>>;
|
|
563
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
564
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
565
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
566
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
567
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
568
|
+
label: z.ZodOptional<z.ZodString>;
|
|
569
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
570
|
+
}, z.core.$strip>>>>;
|
|
571
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
572
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
573
|
+
providerId: z.ZodString;
|
|
574
|
+
resourceType: z.ZodEnum<{
|
|
575
|
+
channel: "channel";
|
|
576
|
+
"crm-record": "crm-record";
|
|
577
|
+
sequence: "sequence";
|
|
578
|
+
"phone-number": "phone-number";
|
|
579
|
+
"voice-line": "voice-line";
|
|
580
|
+
"webhook-event": "webhook-event";
|
|
581
|
+
"database-table": "database-table";
|
|
582
|
+
folder: "folder";
|
|
583
|
+
mailbox: "mailbox";
|
|
584
|
+
account: "account";
|
|
585
|
+
}>;
|
|
586
|
+
}, z.core.$strip>>;
|
|
587
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
588
|
+
providerId: z.ZodString;
|
|
589
|
+
metadataKey: z.ZodString;
|
|
590
|
+
}, z.core.$strip>>;
|
|
591
|
+
}, z.core.$strip>>>;
|
|
592
|
+
}, z.core.$strip>>>;
|
|
593
|
+
}, z.core.$strip>>>>;
|
|
594
|
+
legal: z.ZodOptional<z.ZodObject<{
|
|
595
|
+
termsRequired: z.ZodBoolean;
|
|
596
|
+
privacyRequired: z.ZodBoolean;
|
|
597
|
+
}, z.core.$strip>>;
|
|
598
|
+
}, z.core.$strip>;
|
|
599
|
+
type OrderShape = z.infer<typeof OrderShapeSchema>;
|
|
600
|
+
/**
|
|
601
|
+
* Post-checkout UX archetype.
|
|
602
|
+
*
|
|
603
|
+
* sync-result-card — synchronous return, inline card
|
|
604
|
+
* document-download — file deliverable + email link
|
|
605
|
+
* async-batch-status — job-queue with polling status; download on completion
|
|
606
|
+
*/
|
|
607
|
+
declare const DeliveryUxSchema: z.ZodEnum<{
|
|
608
|
+
"sync-result-card": "sync-result-card";
|
|
609
|
+
"document-download": "document-download";
|
|
610
|
+
"async-batch-status": "async-batch-status";
|
|
611
|
+
}>;
|
|
612
|
+
type DeliveryUx = z.infer<typeof DeliveryUxSchema>;
|
|
613
|
+
/**
|
|
614
|
+
* Preview mode for the delivery surface.
|
|
615
|
+
*
|
|
616
|
+
* first-page — rendered PDF first page
|
|
617
|
+
* first-row — first N rows of a spreadsheet
|
|
618
|
+
* inline-summary — one-line text summary in the result card
|
|
619
|
+
* none — no preview
|
|
620
|
+
*/
|
|
621
|
+
declare const PreviewModeSchema: z.ZodEnum<{
|
|
622
|
+
none: "none";
|
|
623
|
+
"first-page": "first-page";
|
|
624
|
+
"first-row": "first-row";
|
|
625
|
+
"inline-summary": "inline-summary";
|
|
626
|
+
}>;
|
|
627
|
+
type PreviewMode = z.infer<typeof PreviewModeSchema>;
|
|
628
|
+
/**
|
|
629
|
+
* Delivery-side UI shape. Produced by deriveDelivery(svc).
|
|
630
|
+
*
|
|
631
|
+
* upstream-proposal: file against mdxui — see
|
|
632
|
+
* docs/patterns/upstream-proposals.md §PR2-delivery.
|
|
633
|
+
*/
|
|
634
|
+
declare const DeliveryShapeSchema: z.ZodObject<{
|
|
635
|
+
ux: z.ZodEnum<{
|
|
636
|
+
"sync-result-card": "sync-result-card";
|
|
637
|
+
"document-download": "document-download";
|
|
638
|
+
"async-batch-status": "async-batch-status";
|
|
639
|
+
}>;
|
|
640
|
+
previewMode: z.ZodEnum<{
|
|
641
|
+
none: "none";
|
|
642
|
+
"first-page": "first-page";
|
|
643
|
+
"first-row": "first-row";
|
|
644
|
+
"inline-summary": "inline-summary";
|
|
645
|
+
}>;
|
|
646
|
+
progressTimeline: z.ZodBoolean;
|
|
647
|
+
estimatedDelivery: z.ZodOptional<z.ZodString>;
|
|
648
|
+
outcomePredicate: z.ZodOptional<z.ZodString>;
|
|
649
|
+
}, z.core.$strip>;
|
|
650
|
+
type DeliveryShape = z.infer<typeof DeliveryShapeSchema>;
|
|
651
|
+
/**
|
|
652
|
+
* Column type vocabulary for the portal table renderer.
|
|
653
|
+
*
|
|
654
|
+
* upstream-proposal: same as PortalShapeSchema above.
|
|
655
|
+
*/
|
|
656
|
+
declare const PortalColumnTypeSchema: z.ZodEnum<{
|
|
657
|
+
text: "text";
|
|
658
|
+
identifier: "identifier";
|
|
659
|
+
timestamp: "timestamp";
|
|
660
|
+
currency: "currency";
|
|
661
|
+
duration: "duration";
|
|
662
|
+
status: "status";
|
|
663
|
+
evaluator: "evaluator";
|
|
664
|
+
}>;
|
|
665
|
+
type PortalColumnType = z.infer<typeof PortalColumnTypeSchema>;
|
|
666
|
+
declare const PortalColumnSchema: z.ZodObject<{
|
|
667
|
+
id: z.ZodString;
|
|
668
|
+
label: z.ZodString;
|
|
669
|
+
type: z.ZodEnum<{
|
|
670
|
+
text: "text";
|
|
671
|
+
identifier: "identifier";
|
|
672
|
+
timestamp: "timestamp";
|
|
673
|
+
currency: "currency";
|
|
674
|
+
duration: "duration";
|
|
675
|
+
status: "status";
|
|
676
|
+
evaluator: "evaluator";
|
|
677
|
+
}>;
|
|
678
|
+
}, z.core.$strip>;
|
|
679
|
+
type PortalColumn = z.infer<typeof PortalColumnSchema>;
|
|
680
|
+
/**
|
|
681
|
+
* Row action vocabulary for the portal table renderer.
|
|
682
|
+
*
|
|
683
|
+
* upstream-proposal: same as PortalShapeSchema above.
|
|
684
|
+
*/
|
|
685
|
+
declare const PortalActionKindSchema: z.ZodEnum<{
|
|
686
|
+
"view-deliverable": "view-deliverable";
|
|
687
|
+
reissue: "reissue";
|
|
688
|
+
refund: "refund";
|
|
689
|
+
"flag-for-review": "flag-for-review";
|
|
690
|
+
}>;
|
|
691
|
+
type PortalActionKind = z.infer<typeof PortalActionKindSchema>;
|
|
692
|
+
declare const PortalActionSchema: z.ZodObject<{
|
|
693
|
+
id: z.ZodString;
|
|
694
|
+
label: z.ZodString;
|
|
695
|
+
kind: z.ZodEnum<{
|
|
696
|
+
"view-deliverable": "view-deliverable";
|
|
697
|
+
reissue: "reissue";
|
|
698
|
+
refund: "refund";
|
|
699
|
+
"flag-for-review": "flag-for-review";
|
|
700
|
+
}>;
|
|
701
|
+
}, z.core.$strip>;
|
|
702
|
+
type PortalAction = z.infer<typeof PortalActionSchema>;
|
|
703
|
+
declare const PortalFilterSchema: z.ZodObject<{
|
|
704
|
+
id: z.ZodString;
|
|
705
|
+
field: z.ZodString;
|
|
706
|
+
label: z.ZodString;
|
|
707
|
+
}, z.core.$strip>;
|
|
708
|
+
type PortalFilter = z.infer<typeof PortalFilterSchema>;
|
|
709
|
+
/**
|
|
710
|
+
* Order-management UI shape. Produced by derivePortal(svc).
|
|
711
|
+
*
|
|
712
|
+
* upstream-proposal: file against mdxui — see
|
|
713
|
+
* docs/patterns/upstream-proposals.md §PR2-portal.
|
|
714
|
+
*/
|
|
715
|
+
declare const PortalShapeSchema: z.ZodObject<{
|
|
716
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
717
|
+
id: z.ZodString;
|
|
718
|
+
label: z.ZodString;
|
|
719
|
+
type: z.ZodEnum<{
|
|
720
|
+
text: "text";
|
|
721
|
+
identifier: "identifier";
|
|
722
|
+
timestamp: "timestamp";
|
|
723
|
+
currency: "currency";
|
|
724
|
+
duration: "duration";
|
|
725
|
+
status: "status";
|
|
726
|
+
evaluator: "evaluator";
|
|
727
|
+
}>;
|
|
728
|
+
}, z.core.$strip>>;
|
|
729
|
+
filters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
730
|
+
id: z.ZodString;
|
|
731
|
+
field: z.ZodString;
|
|
732
|
+
label: z.ZodString;
|
|
733
|
+
}, z.core.$strip>>>;
|
|
734
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
735
|
+
id: z.ZodString;
|
|
736
|
+
label: z.ZodString;
|
|
737
|
+
kind: z.ZodEnum<{
|
|
738
|
+
"view-deliverable": "view-deliverable";
|
|
739
|
+
reissue: "reissue";
|
|
740
|
+
refund: "refund";
|
|
741
|
+
"flag-for-review": "flag-for-review";
|
|
742
|
+
}>;
|
|
743
|
+
}, z.core.$strip>>>;
|
|
744
|
+
}, z.core.$strip>;
|
|
745
|
+
type PortalShape = z.infer<typeof PortalShapeSchema>;
|
|
746
|
+
/** Inline action with label + href + optional new-tab flag.
|
|
747
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-hero */
|
|
748
|
+
declare const SiteActionSchema: z.ZodObject<{
|
|
749
|
+
label: z.ZodString;
|
|
750
|
+
href: z.ZodString;
|
|
751
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
752
|
+
}, z.core.$strip>;
|
|
753
|
+
type SiteAction = z.infer<typeof SiteActionSchema>;
|
|
754
|
+
/**
|
|
755
|
+
* Hero composition variant identifier. Drives the dispatcher in
|
|
756
|
+
* `<Hero>` (chassis/components/landing/Hero.tsx) between `HeroSplit`
|
|
757
|
+
* (default) and `HeroStacked`.
|
|
758
|
+
*
|
|
759
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR12-hero-variant
|
|
760
|
+
* (master 2026-05-26 — illustration abstraction Phase 3; see
|
|
761
|
+
* docs/abstraction/illustrations.md §1.4 + §3).
|
|
762
|
+
*/
|
|
763
|
+
declare const HeroVariantSchema: z.ZodEnum<{
|
|
764
|
+
"split-illustration-right": "split-illustration-right";
|
|
765
|
+
"stacked-illustration-below": "stacked-illustration-below";
|
|
766
|
+
}>;
|
|
767
|
+
type HeroVariantFromSchema = z.infer<typeof HeroVariantSchema>;
|
|
768
|
+
/**
|
|
769
|
+
* HeroPropsSchema extended for Carriage's landing-page Hero component.
|
|
770
|
+
*
|
|
771
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-hero
|
|
772
|
+
*/
|
|
773
|
+
declare const HeroPropsExtendedSchema: z.ZodObject<{
|
|
774
|
+
eyebrow: z.ZodString;
|
|
775
|
+
headline: z.ZodString;
|
|
776
|
+
body: z.ZodString;
|
|
777
|
+
primary: z.ZodObject<{
|
|
778
|
+
label: z.ZodString;
|
|
779
|
+
href: z.ZodString;
|
|
780
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
781
|
+
}, z.core.$strip>;
|
|
782
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
label: z.ZodString;
|
|
784
|
+
href: z.ZodString;
|
|
785
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
787
|
+
showGlyph: z.ZodOptional<z.ZodBoolean>;
|
|
788
|
+
glyphOnMobile: z.ZodOptional<z.ZodBoolean>;
|
|
789
|
+
illustration: z.ZodOptional<z.ZodAny>;
|
|
790
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
791
|
+
"split-illustration-right": "split-illustration-right";
|
|
792
|
+
"stacked-illustration-below": "stacked-illustration-below";
|
|
793
|
+
}>>;
|
|
794
|
+
}, z.core.$strip>;
|
|
795
|
+
type HeroPropsExtended = z.infer<typeof HeroPropsExtendedSchema>;
|
|
796
|
+
/** One pricing tier with Stripe commerce fields.
|
|
797
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-pricing */
|
|
798
|
+
declare const PriceTierSchema: z.ZodObject<{
|
|
799
|
+
tierKey: z.ZodString;
|
|
800
|
+
tier: z.ZodString;
|
|
801
|
+
price: z.ZodString;
|
|
802
|
+
audience: z.ZodString;
|
|
803
|
+
features: z.ZodArray<z.ZodString>;
|
|
804
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
805
|
+
cta: z.ZodObject<{
|
|
806
|
+
label: z.ZodString;
|
|
807
|
+
href: z.ZodString;
|
|
808
|
+
}, z.core.$strip>;
|
|
809
|
+
sku: z.ZodString;
|
|
810
|
+
amountCents: z.ZodNumber;
|
|
811
|
+
currency: z.ZodEnum<{
|
|
812
|
+
usd: "usd";
|
|
813
|
+
eur: "eur";
|
|
814
|
+
gbp: "gbp";
|
|
815
|
+
}>;
|
|
816
|
+
stripeName: z.ZodString;
|
|
817
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
818
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
819
|
+
}, z.core.$strip>;
|
|
820
|
+
type PriceTier = z.infer<typeof PriceTierSchema>;
|
|
821
|
+
/**
|
|
822
|
+
* PricingPropsSchema extended for Carriage's Pricing component.
|
|
823
|
+
*
|
|
824
|
+
* `tiers` uses `.readonly()` (Zod v4+) so `z.infer<...>` produces
|
|
825
|
+
* `readonly PriceTier[]` — matching `ServiceDefinition.pricing.tiers`.
|
|
826
|
+
* The `Omit<...> & { tiers: readonly PriceTier[] }` workaround in
|
|
827
|
+
* `Pricing.tsx` is retired; the component interface is now
|
|
828
|
+
* `z.infer<typeof PricingPropsExtendedSchema>` directly.
|
|
829
|
+
*
|
|
830
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-pricing
|
|
831
|
+
*/
|
|
832
|
+
declare const PricingPropsExtendedSchema: z.ZodObject<{
|
|
833
|
+
eyebrow: z.ZodString;
|
|
834
|
+
heading: z.ZodString;
|
|
835
|
+
tiers: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
836
|
+
tierKey: z.ZodString;
|
|
837
|
+
tier: z.ZodString;
|
|
838
|
+
price: z.ZodString;
|
|
839
|
+
audience: z.ZodString;
|
|
840
|
+
features: z.ZodArray<z.ZodString>;
|
|
841
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
842
|
+
cta: z.ZodObject<{
|
|
843
|
+
label: z.ZodString;
|
|
844
|
+
href: z.ZodString;
|
|
845
|
+
}, z.core.$strip>;
|
|
846
|
+
sku: z.ZodString;
|
|
847
|
+
amountCents: z.ZodNumber;
|
|
848
|
+
currency: z.ZodEnum<{
|
|
849
|
+
usd: "usd";
|
|
850
|
+
eur: "eur";
|
|
851
|
+
gbp: "gbp";
|
|
852
|
+
}>;
|
|
853
|
+
stripeName: z.ZodString;
|
|
854
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
855
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
856
|
+
}, z.core.$strip>>>;
|
|
857
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
858
|
+
}, z.core.$strip>;
|
|
859
|
+
type PricingPropsExtended = z.infer<typeof PricingPropsExtendedSchema>;
|
|
860
|
+
/** FAQ item using Carriage's short-key convention (q/a).
|
|
861
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-faq */
|
|
862
|
+
declare const FaqItemSchema: z.ZodObject<{
|
|
863
|
+
q: z.ZodString;
|
|
864
|
+
a: z.ZodString;
|
|
865
|
+
}, z.core.$strip>;
|
|
866
|
+
type FaqItem = z.infer<typeof FaqItemSchema>;
|
|
867
|
+
/**
|
|
868
|
+
* FAQPropsSchema extended for Carriage's Faq component.
|
|
869
|
+
*
|
|
870
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-faq
|
|
871
|
+
*/
|
|
872
|
+
declare const FaqPropsExtendedSchema: z.ZodObject<{
|
|
873
|
+
eyebrow: z.ZodString;
|
|
874
|
+
heading: z.ZodString;
|
|
875
|
+
items: z.ZodArray<z.ZodObject<{
|
|
876
|
+
q: z.ZodString;
|
|
877
|
+
a: z.ZodString;
|
|
878
|
+
}, z.core.$strip>>;
|
|
879
|
+
}, z.core.$strip>;
|
|
880
|
+
type FaqPropsExtended = z.infer<typeof FaqPropsExtendedSchema>;
|
|
881
|
+
/** One numbered step in a HowItWorks section.
|
|
882
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-howitworks */
|
|
883
|
+
declare const HowItWorksStepSchema: z.ZodObject<{
|
|
884
|
+
n: z.ZodString;
|
|
885
|
+
title: z.ZodString;
|
|
886
|
+
body: z.ZodString;
|
|
887
|
+
}, z.core.$strip>;
|
|
888
|
+
type HowItWorksStep = z.infer<typeof HowItWorksStepSchema>;
|
|
889
|
+
/**
|
|
890
|
+
* Props for the HowItWorks component. No mdxui base — proposed from scratch.
|
|
891
|
+
*
|
|
892
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-howitworks
|
|
893
|
+
*/
|
|
894
|
+
declare const HowItWorksPropsSchema: z.ZodObject<{
|
|
895
|
+
eyebrow: z.ZodString;
|
|
896
|
+
heading: z.ZodString;
|
|
897
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
898
|
+
n: z.ZodString;
|
|
899
|
+
title: z.ZodString;
|
|
900
|
+
body: z.ZodString;
|
|
901
|
+
}, z.core.$strip>>;
|
|
902
|
+
stepIllustrations: z.ZodOptional<z.ZodArray<z.ZodCustom<React.ComponentType<{}>, React.ComponentType<{}>>>>;
|
|
903
|
+
}, z.core.$strip>;
|
|
904
|
+
type HowItWorksProps = z.infer<typeof HowItWorksPropsSchema>;
|
|
905
|
+
/** One numbered item in a WhatYouGet section.
|
|
906
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-whatyouget */
|
|
907
|
+
declare const WhatYouGetItemSchema: z.ZodObject<{
|
|
908
|
+
n: z.ZodString;
|
|
909
|
+
title: z.ZodString;
|
|
910
|
+
body: z.ZodString;
|
|
911
|
+
}, z.core.$strip>;
|
|
912
|
+
type WhatYouGetItem = z.infer<typeof WhatYouGetItemSchema>;
|
|
913
|
+
/**
|
|
914
|
+
* Props for the WhatYouGet component. No mdxui base — proposed from scratch.
|
|
915
|
+
*
|
|
916
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-whatyouget
|
|
917
|
+
*/
|
|
918
|
+
declare const WhatYouGetPropsSchema: z.ZodObject<{
|
|
919
|
+
eyebrow: z.ZodString;
|
|
920
|
+
heading: z.ZodString;
|
|
921
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
922
|
+
n: z.ZodString;
|
|
923
|
+
title: z.ZodString;
|
|
924
|
+
body: z.ZodString;
|
|
925
|
+
}, z.core.$strip>>;
|
|
926
|
+
}, z.core.$strip>;
|
|
927
|
+
type WhatYouGetProps = z.infer<typeof WhatYouGetPropsSchema>;
|
|
928
|
+
/**
|
|
929
|
+
* FinalCtaPropsSchema — CTASectionPropsSchema extended for Carriage.
|
|
930
|
+
*
|
|
931
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-finalcta
|
|
932
|
+
*/
|
|
933
|
+
declare const FinalCtaPropsSchema: z.ZodObject<{
|
|
934
|
+
eyebrow: z.ZodString;
|
|
935
|
+
headline: z.ZodString;
|
|
936
|
+
primary: z.ZodObject<{
|
|
937
|
+
label: z.ZodString;
|
|
938
|
+
href: z.ZodString;
|
|
939
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
940
|
+
}, z.core.$strip>;
|
|
941
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
942
|
+
label: z.ZodString;
|
|
943
|
+
href: z.ZodString;
|
|
944
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
945
|
+
}, z.core.$strip>>;
|
|
946
|
+
}, z.core.$strip>;
|
|
947
|
+
type FinalCtaProps = z.infer<typeof FinalCtaPropsSchema>;
|
|
948
|
+
/**
|
|
949
|
+
* MastheadPropsSchema — HeaderPropsSchema extended for Carriage's Masthead.
|
|
950
|
+
*
|
|
951
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-masthead
|
|
952
|
+
*/
|
|
953
|
+
declare const MastheadPropsSchema: z.ZodObject<{
|
|
954
|
+
brand: z.ZodObject<{
|
|
955
|
+
primary: z.ZodString;
|
|
956
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
957
|
+
href: z.ZodString;
|
|
958
|
+
}, z.core.$strip>;
|
|
959
|
+
cta: z.ZodOptional<z.ZodObject<{
|
|
960
|
+
label: z.ZodString;
|
|
961
|
+
href: z.ZodString;
|
|
962
|
+
}, z.core.$strip>>;
|
|
963
|
+
eyebrow: z.ZodOptional<z.ZodString>;
|
|
964
|
+
narrow: z.ZodOptional<z.ZodBoolean>;
|
|
965
|
+
}, z.core.$strip>;
|
|
966
|
+
type MastheadProps = z.infer<typeof MastheadPropsSchema>;
|
|
967
|
+
/** Flat footer link (no grouping).
|
|
968
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-footer */
|
|
969
|
+
declare const SiteFooterLinkSchema: z.ZodObject<{
|
|
970
|
+
label: z.ZodString;
|
|
971
|
+
href: z.ZodString;
|
|
972
|
+
}, z.core.$strip>;
|
|
973
|
+
type SiteFooterLink = z.infer<typeof SiteFooterLinkSchema>;
|
|
974
|
+
/**
|
|
975
|
+
* SiteFooterPropsSchema — FooterPropsSchema extended for Carriage's Footer.
|
|
976
|
+
*
|
|
977
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-footer
|
|
978
|
+
*/
|
|
979
|
+
declare const SiteFooterPropsSchema: z.ZodObject<{
|
|
980
|
+
text: z.ZodString;
|
|
981
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
982
|
+
label: z.ZodString;
|
|
983
|
+
href: z.ZodString;
|
|
984
|
+
}, z.core.$strip>>>;
|
|
985
|
+
}, z.core.$strip>;
|
|
986
|
+
type SiteFooterProps = z.infer<typeof SiteFooterPropsSchema>;
|
|
987
|
+
/**
|
|
988
|
+
* TextFieldPropsSchema — controlled text-input component props.
|
|
989
|
+
*
|
|
990
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-textfield
|
|
991
|
+
*/
|
|
992
|
+
declare const TextFieldPropsSchema: z.ZodObject<{
|
|
993
|
+
label: z.ZodString;
|
|
994
|
+
value: z.ZodString;
|
|
995
|
+
onChange: z.ZodCustom<(v: string) => void, (v: string) => void>;
|
|
996
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
997
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
998
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
999
|
+
number: "number";
|
|
1000
|
+
text: "text";
|
|
1001
|
+
email: "email";
|
|
1002
|
+
date: "date";
|
|
1003
|
+
}>>;
|
|
1004
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
mono: z.ZodOptional<z.ZodBoolean>;
|
|
1006
|
+
invalid: z.ZodOptional<z.ZodBoolean>;
|
|
1007
|
+
inputRef: z.ZodOptional<z.ZodCustom<React.Ref<HTMLInputElement>, React.Ref<HTMLInputElement>>>;
|
|
1008
|
+
autoComplete: z.ZodOptional<z.ZodString>;
|
|
1009
|
+
}, z.core.$strip>;
|
|
1010
|
+
type TextFieldProps = z.infer<typeof TextFieldPropsSchema>;
|
|
1011
|
+
/**
|
|
1012
|
+
* SelectFieldPropsSchema — controlled select-dropdown component props.
|
|
1013
|
+
*
|
|
1014
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-selectfield
|
|
1015
|
+
*/
|
|
1016
|
+
declare const SelectFieldPropsSchema: z.ZodObject<{
|
|
1017
|
+
label: z.ZodString;
|
|
1018
|
+
value: z.ZodString;
|
|
1019
|
+
onChange: z.ZodCustom<(v: string) => void, (v: string) => void>;
|
|
1020
|
+
options: z.ZodArray<z.ZodObject<{
|
|
1021
|
+
value: z.ZodString;
|
|
1022
|
+
label: z.ZodString;
|
|
1023
|
+
}, z.core.$strip>>;
|
|
1024
|
+
autoComplete: z.ZodOptional<z.ZodString>;
|
|
1025
|
+
}, z.core.$strip>;
|
|
1026
|
+
type SelectFieldProps = z.infer<typeof SelectFieldPropsSchema>;
|
|
1027
|
+
/** One option in a RadioGroup card.
|
|
1028
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-radiogroup */
|
|
1029
|
+
declare const RadioGroupOptionSchema: z.ZodObject<{
|
|
1030
|
+
value: z.ZodString;
|
|
1031
|
+
label: z.ZodString;
|
|
1032
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
}, z.core.$strip>;
|
|
1034
|
+
type RadioGroupOption = z.infer<typeof RadioGroupOptionSchema>;
|
|
1035
|
+
/**
|
|
1036
|
+
* RadioGroupPropsSchema — controlled radio-card-group component props.
|
|
1037
|
+
* Note: the generic type parameter `T extends string` from RadioGroup<T>
|
|
1038
|
+
* is represented as `z.string()` here; consumers narrow at call sites.
|
|
1039
|
+
*
|
|
1040
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-radiogroup
|
|
1041
|
+
*/
|
|
1042
|
+
declare const RadioGroupPropsSchema: z.ZodObject<{
|
|
1043
|
+
label: z.ZodString;
|
|
1044
|
+
name: z.ZodString;
|
|
1045
|
+
value: z.ZodString;
|
|
1046
|
+
onChange: z.ZodCustom<(v: string) => void, (v: string) => void>;
|
|
1047
|
+
options: z.ZodArray<z.ZodObject<{
|
|
1048
|
+
value: z.ZodString;
|
|
1049
|
+
label: z.ZodString;
|
|
1050
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
}, z.core.$strip>>;
|
|
1052
|
+
}, z.core.$strip>;
|
|
1053
|
+
type RadioGroupProps = z.infer<typeof RadioGroupPropsSchema>;
|
|
1054
|
+
/**
|
|
1055
|
+
* FieldRowPropsSchema — 2-column layout shell for side-by-side form fields.
|
|
1056
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1057
|
+
*
|
|
1058
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-fieldrow
|
|
1059
|
+
*/
|
|
1060
|
+
declare const FieldRowPropsSchema: z.ZodObject<{
|
|
1061
|
+
children: z.ZodCustom<React.ReactNode, React.ReactNode>;
|
|
1062
|
+
}, z.core.$strip>;
|
|
1063
|
+
type FieldRowProps = z.infer<typeof FieldRowPropsSchema>;
|
|
1064
|
+
/**
|
|
1065
|
+
* StepHeadingPropsSchema — numbered section header for multi-step flows.
|
|
1066
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1067
|
+
*
|
|
1068
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-stepheading
|
|
1069
|
+
*/
|
|
1070
|
+
declare const StepHeadingPropsSchema: z.ZodObject<{
|
|
1071
|
+
index: z.ZodString;
|
|
1072
|
+
eyebrow: z.ZodString;
|
|
1073
|
+
title: z.ZodString;
|
|
1074
|
+
body: z.ZodString;
|
|
1075
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1076
|
+
}, z.core.$strip>;
|
|
1077
|
+
type StepHeadingPropsFromSchema = z.infer<typeof StepHeadingPropsSchema>;
|
|
1078
|
+
/**
|
|
1079
|
+
* LogoUploadPropsSchema — controlled logo-upload widget with preview.
|
|
1080
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1081
|
+
*
|
|
1082
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-logoupload
|
|
1083
|
+
*/
|
|
1084
|
+
declare const LogoUploadPropsSchema: z.ZodObject<{
|
|
1085
|
+
value: z.ZodNullable<z.ZodString>;
|
|
1086
|
+
uploading: z.ZodBoolean;
|
|
1087
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1088
|
+
onChange: z.ZodCustom<(file: File) => void, (file: File) => void>;
|
|
1089
|
+
onClear: z.ZodCustom<() => void, () => void>;
|
|
1090
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1091
|
+
bodyText: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
}, z.core.$strip>;
|
|
1093
|
+
type LogoUploadPropsFromSchema = z.infer<typeof LogoUploadPropsSchema>;
|
|
1094
|
+
/**
|
|
1095
|
+
* ImageUploadFieldPropsSchema — form-renderer image-upload field.
|
|
1096
|
+
* Wraps LogoUpload with an internal upload state machine.
|
|
1097
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1098
|
+
*
|
|
1099
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR4-imageuploadfield
|
|
1100
|
+
*/
|
|
1101
|
+
declare const ImageUploadFieldPropsSchema: z.ZodObject<{
|
|
1102
|
+
label: z.ZodString;
|
|
1103
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1104
|
+
value: z.ZodNullable<z.ZodString>;
|
|
1105
|
+
onChange: z.ZodCustom<(url: string | null) => void, (url: string | null) => void>;
|
|
1106
|
+
}, z.core.$strip>;
|
|
1107
|
+
type ImageUploadFieldPropsFromSchema = z.infer<typeof ImageUploadFieldPropsSchema>;
|
|
1108
|
+
/**
|
|
1109
|
+
* Full Pricing discriminated union — mirrors `Pricing` from `@/chassis/types`.
|
|
1110
|
+
*/
|
|
1111
|
+
declare const PricingSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1112
|
+
eyebrow: z.ZodString;
|
|
1113
|
+
heading: z.ZodString;
|
|
1114
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1115
|
+
currency: z.ZodEnum<{
|
|
1116
|
+
usd: "usd";
|
|
1117
|
+
eur: "eur";
|
|
1118
|
+
gbp: "gbp";
|
|
1119
|
+
}>;
|
|
1120
|
+
kind: z.ZodLiteral<"tiered">;
|
|
1121
|
+
tiers: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1122
|
+
tierKey: z.ZodString;
|
|
1123
|
+
tier: z.ZodString;
|
|
1124
|
+
price: z.ZodString;
|
|
1125
|
+
audience: z.ZodString;
|
|
1126
|
+
features: z.ZodArray<z.ZodString>;
|
|
1127
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
1128
|
+
cta: z.ZodObject<{
|
|
1129
|
+
label: z.ZodString;
|
|
1130
|
+
href: z.ZodString;
|
|
1131
|
+
}, z.core.$strip>;
|
|
1132
|
+
sku: z.ZodString;
|
|
1133
|
+
amountCents: z.ZodNumber;
|
|
1134
|
+
currency: z.ZodEnum<{
|
|
1135
|
+
usd: "usd";
|
|
1136
|
+
eur: "eur";
|
|
1137
|
+
gbp: "gbp";
|
|
1138
|
+
}>;
|
|
1139
|
+
stripeName: z.ZodString;
|
|
1140
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
1141
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
}, z.core.$strip>>>;
|
|
1143
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1144
|
+
eyebrow: z.ZodString;
|
|
1145
|
+
heading: z.ZodString;
|
|
1146
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
currency: z.ZodEnum<{
|
|
1148
|
+
usd: "usd";
|
|
1149
|
+
eur: "eur";
|
|
1150
|
+
gbp: "gbp";
|
|
1151
|
+
}>;
|
|
1152
|
+
kind: z.ZodLiteral<"unit">;
|
|
1153
|
+
perUnit: z.ZodNumber;
|
|
1154
|
+
billingCadence: z.ZodString;
|
|
1155
|
+
}, z.core.$strip>]>;
|
|
1156
|
+
/** Full Pricing discriminated union — the `ReportPricing` component reads this. */
|
|
1157
|
+
type Pricing = z.infer<typeof PricingSchema>;
|
|
1158
|
+
declare const ServiceFormPropsSchema: z.ZodObject<{
|
|
1159
|
+
slug: z.ZodString;
|
|
1160
|
+
order: z.ZodObject<{
|
|
1161
|
+
flow: z.ZodEnum<{
|
|
1162
|
+
instant: "instant";
|
|
1163
|
+
guided: "guided";
|
|
1164
|
+
"consultation-first": "consultation-first";
|
|
1165
|
+
}>;
|
|
1166
|
+
steps: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1167
|
+
id: z.ZodString;
|
|
1168
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1169
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1170
|
+
name: z.ZodString;
|
|
1171
|
+
type: z.ZodEnum<{
|
|
1172
|
+
string: "string";
|
|
1173
|
+
number: "number";
|
|
1174
|
+
boolean: "boolean";
|
|
1175
|
+
integer: "integer";
|
|
1176
|
+
}>;
|
|
1177
|
+
required: z.ZodBoolean;
|
|
1178
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
1181
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
1183
|
+
email: "email";
|
|
1184
|
+
date: "date";
|
|
1185
|
+
"date-time": "date-time";
|
|
1186
|
+
uri: "uri";
|
|
1187
|
+
}>>;
|
|
1188
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
1189
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
1190
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
1191
|
+
"vin-decoder": "vin-decoder";
|
|
1192
|
+
"image-upload": "image-upload";
|
|
1193
|
+
}>>;
|
|
1194
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
1195
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1198
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
1199
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1200
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1201
|
+
}, z.core.$strip>>>>;
|
|
1202
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
1203
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
1204
|
+
providerId: z.ZodString;
|
|
1205
|
+
resourceType: z.ZodEnum<{
|
|
1206
|
+
channel: "channel";
|
|
1207
|
+
"crm-record": "crm-record";
|
|
1208
|
+
sequence: "sequence";
|
|
1209
|
+
"phone-number": "phone-number";
|
|
1210
|
+
"voice-line": "voice-line";
|
|
1211
|
+
"webhook-event": "webhook-event";
|
|
1212
|
+
"database-table": "database-table";
|
|
1213
|
+
folder: "folder";
|
|
1214
|
+
mailbox: "mailbox";
|
|
1215
|
+
account: "account";
|
|
1216
|
+
}>;
|
|
1217
|
+
}, z.core.$strip>>;
|
|
1218
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
1219
|
+
providerId: z.ZodString;
|
|
1220
|
+
metadataKey: z.ZodString;
|
|
1221
|
+
}, z.core.$strip>>;
|
|
1222
|
+
}, z.core.$strip>>>;
|
|
1223
|
+
groups: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1224
|
+
id: z.ZodString;
|
|
1225
|
+
title: z.ZodString;
|
|
1226
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
fields: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1228
|
+
name: z.ZodString;
|
|
1229
|
+
type: z.ZodEnum<{
|
|
1230
|
+
string: "string";
|
|
1231
|
+
number: "number";
|
|
1232
|
+
boolean: "boolean";
|
|
1233
|
+
integer: "integer";
|
|
1234
|
+
}>;
|
|
1235
|
+
required: z.ZodBoolean;
|
|
1236
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1238
|
+
enum: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>>;
|
|
1239
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1240
|
+
format: z.ZodOptional<z.ZodEnum<{
|
|
1241
|
+
email: "email";
|
|
1242
|
+
date: "date";
|
|
1243
|
+
"date-time": "date-time";
|
|
1244
|
+
uri: "uri";
|
|
1245
|
+
}>>;
|
|
1246
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
1247
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
1248
|
+
widget: z.ZodOptional<z.ZodEnum<{
|
|
1249
|
+
"vin-decoder": "vin-decoder";
|
|
1250
|
+
"image-upload": "image-upload";
|
|
1251
|
+
}>>;
|
|
1252
|
+
row: z.ZodOptional<z.ZodNumber>;
|
|
1253
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
1254
|
+
autocomplete: z.ZodOptional<z.ZodString>;
|
|
1255
|
+
options: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1256
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
1257
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1258
|
+
sub: z.ZodOptional<z.ZodString>;
|
|
1259
|
+
}, z.core.$strip>>>>;
|
|
1260
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodString>>>;
|
|
1261
|
+
xConnect: z.ZodOptional<z.ZodObject<{
|
|
1262
|
+
providerId: z.ZodString;
|
|
1263
|
+
resourceType: z.ZodEnum<{
|
|
1264
|
+
channel: "channel";
|
|
1265
|
+
"crm-record": "crm-record";
|
|
1266
|
+
sequence: "sequence";
|
|
1267
|
+
"phone-number": "phone-number";
|
|
1268
|
+
"voice-line": "voice-line";
|
|
1269
|
+
"webhook-event": "webhook-event";
|
|
1270
|
+
"database-table": "database-table";
|
|
1271
|
+
folder: "folder";
|
|
1272
|
+
mailbox: "mailbox";
|
|
1273
|
+
account: "account";
|
|
1274
|
+
}>;
|
|
1275
|
+
}, z.core.$strip>>;
|
|
1276
|
+
xDerivedFrom: z.ZodOptional<z.ZodObject<{
|
|
1277
|
+
providerId: z.ZodString;
|
|
1278
|
+
metadataKey: z.ZodString;
|
|
1279
|
+
}, z.core.$strip>>;
|
|
1280
|
+
}, z.core.$strip>>>;
|
|
1281
|
+
}, z.core.$strip>>>;
|
|
1282
|
+
}, z.core.$strip>>>>;
|
|
1283
|
+
legal: z.ZodOptional<z.ZodObject<{
|
|
1284
|
+
termsRequired: z.ZodBoolean;
|
|
1285
|
+
privacyRequired: z.ZodBoolean;
|
|
1286
|
+
}, z.core.$strip>>;
|
|
1287
|
+
}, z.core.$strip>;
|
|
1288
|
+
pricing: z.ZodUnion<readonly [z.ZodObject<{
|
|
1289
|
+
eyebrow: z.ZodString;
|
|
1290
|
+
heading: z.ZodString;
|
|
1291
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1292
|
+
currency: z.ZodEnum<{
|
|
1293
|
+
usd: "usd";
|
|
1294
|
+
eur: "eur";
|
|
1295
|
+
gbp: "gbp";
|
|
1296
|
+
}>;
|
|
1297
|
+
kind: z.ZodLiteral<"tiered">;
|
|
1298
|
+
tiers: z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1299
|
+
tierKey: z.ZodString;
|
|
1300
|
+
tier: z.ZodString;
|
|
1301
|
+
price: z.ZodString;
|
|
1302
|
+
audience: z.ZodString;
|
|
1303
|
+
features: z.ZodArray<z.ZodString>;
|
|
1304
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
1305
|
+
cta: z.ZodObject<{
|
|
1306
|
+
label: z.ZodString;
|
|
1307
|
+
href: z.ZodString;
|
|
1308
|
+
}, z.core.$strip>;
|
|
1309
|
+
sku: z.ZodString;
|
|
1310
|
+
amountCents: z.ZodNumber;
|
|
1311
|
+
currency: z.ZodEnum<{
|
|
1312
|
+
usd: "usd";
|
|
1313
|
+
eur: "eur";
|
|
1314
|
+
gbp: "gbp";
|
|
1315
|
+
}>;
|
|
1316
|
+
stripeName: z.ZodString;
|
|
1317
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
1318
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
}, z.core.$strip>>>;
|
|
1320
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1321
|
+
eyebrow: z.ZodString;
|
|
1322
|
+
heading: z.ZodString;
|
|
1323
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1324
|
+
currency: z.ZodEnum<{
|
|
1325
|
+
usd: "usd";
|
|
1326
|
+
eur: "eur";
|
|
1327
|
+
gbp: "gbp";
|
|
1328
|
+
}>;
|
|
1329
|
+
kind: z.ZodLiteral<"unit">;
|
|
1330
|
+
perUnit: z.ZodNumber;
|
|
1331
|
+
billingCadence: z.ZodString;
|
|
1332
|
+
}, z.core.$strip>]>;
|
|
1333
|
+
formHeadline: z.ZodOptional<z.ZodString>;
|
|
1334
|
+
formIntro: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
paymentHeadline: z.ZodOptional<z.ZodString>;
|
|
1337
|
+
}, z.core.$strip>;
|
|
1338
|
+
type ServiceFormPropsFromSchema = z.infer<typeof ServiceFormPropsSchema>;
|
|
1339
|
+
/**
|
|
1340
|
+
* CheckoutPanelPropsSchema — Stripe Elements payment panel props.
|
|
1341
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1342
|
+
*
|
|
1343
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR5-checkoutpanel
|
|
1344
|
+
*/
|
|
1345
|
+
declare const CheckoutPanelPropsSchema: z.ZodObject<{
|
|
1346
|
+
clientSecret: z.ZodString;
|
|
1347
|
+
amountCents: z.ZodNumber;
|
|
1348
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
returnUrl: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
onSuccess: z.ZodOptional<z.ZodCustom<() => Promise<void> | void, () => Promise<void> | void>>;
|
|
1351
|
+
ctaSuffix: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
onCancel: z.ZodCustom<() => void, () => void>;
|
|
1353
|
+
}, z.core.$strip>;
|
|
1354
|
+
type CheckoutPanelPropsFromSchema = z.infer<typeof CheckoutPanelPropsSchema>;
|
|
1355
|
+
/** One column in a Defensibility two-up.
|
|
1356
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR6-defensibility */
|
|
1357
|
+
declare const DefensibilityColumnSchema: z.ZodObject<{
|
|
1358
|
+
heading: z.ZodString;
|
|
1359
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1360
|
+
}, z.core.$strip>;
|
|
1361
|
+
type DefensibilityColumnFromSchema = z.infer<typeof DefensibilityColumnSchema>;
|
|
1362
|
+
/**
|
|
1363
|
+
* DefensibilityPropsSchema — two-column scope-expectations block.
|
|
1364
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1365
|
+
*
|
|
1366
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR6-defensibility
|
|
1367
|
+
*/
|
|
1368
|
+
declare const DefensibilityPropsSchema: z.ZodObject<{
|
|
1369
|
+
eyebrow: z.ZodString;
|
|
1370
|
+
heading: z.ZodString;
|
|
1371
|
+
columns: z.ZodTuple<[z.ZodObject<{
|
|
1372
|
+
heading: z.ZodString;
|
|
1373
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1374
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1375
|
+
heading: z.ZodString;
|
|
1376
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1377
|
+
}, z.core.$strip>], null>;
|
|
1378
|
+
caveat: z.ZodOptional<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1379
|
+
}, z.core.$strip>;
|
|
1380
|
+
type DefensibilityPropsFromSchema = z.infer<typeof DefensibilityPropsSchema>;
|
|
1381
|
+
/**
|
|
1382
|
+
* UpsellBannerPropsSchema — single-line upsell nudge component props.
|
|
1383
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1384
|
+
*
|
|
1385
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR6-upsell
|
|
1386
|
+
*/
|
|
1387
|
+
declare const UpsellBannerPropsSchema: z.ZodObject<{
|
|
1388
|
+
headline: z.ZodString;
|
|
1389
|
+
body: z.ZodOptional<z.ZodString>;
|
|
1390
|
+
cta: z.ZodCustom<React.ReactNode, React.ReactNode>;
|
|
1391
|
+
onActivate: z.ZodCustom<() => void, () => void>;
|
|
1392
|
+
}, z.core.$strip>;
|
|
1393
|
+
type UpsellBannerPropsFromSchema = z.infer<typeof UpsellBannerPropsSchema>;
|
|
1394
|
+
/**
|
|
1395
|
+
* UpsellCardPropsSchema — richer upsell card with body paragraph.
|
|
1396
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1397
|
+
*
|
|
1398
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR6-upsell
|
|
1399
|
+
*/
|
|
1400
|
+
declare const UpsellCardPropsSchema: z.ZodObject<{
|
|
1401
|
+
eyebrow: z.ZodString;
|
|
1402
|
+
body: z.ZodCustom<React.ReactNode, React.ReactNode>;
|
|
1403
|
+
ctaLabel: z.ZodString;
|
|
1404
|
+
onActivate: z.ZodCustom<() => void, () => void>;
|
|
1405
|
+
}, z.core.$strip>;
|
|
1406
|
+
type UpsellCardPropsFromSchema = z.infer<typeof UpsellCardPropsSchema>;
|
|
1407
|
+
/**
|
|
1408
|
+
* Inline call-to-action used by header/footer chrome.
|
|
1409
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1410
|
+
*/
|
|
1411
|
+
declare const CtaSchema: z.ZodObject<{
|
|
1412
|
+
label: z.ZodString;
|
|
1413
|
+
href: z.ZodString;
|
|
1414
|
+
}, z.core.$strip>;
|
|
1415
|
+
type Cta = z.infer<typeof CtaSchema>;
|
|
1416
|
+
/**
|
|
1417
|
+
* One breadcrumb entry for the landing-page JSON-LD BreadcrumbList.
|
|
1418
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1419
|
+
*/
|
|
1420
|
+
declare const BreadcrumbSchema: z.ZodObject<{
|
|
1421
|
+
name: z.ZodString;
|
|
1422
|
+
href: z.ZodString;
|
|
1423
|
+
}, z.core.$strip>;
|
|
1424
|
+
type Breadcrumb = z.infer<typeof BreadcrumbSchema>;
|
|
1425
|
+
/**
|
|
1426
|
+
* Static fields for the Service JSON-LD block. Dynamic fields (description,
|
|
1427
|
+
* offers) are filled at render time.
|
|
1428
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1429
|
+
*/
|
|
1430
|
+
declare const ServiceSchemaSpecSchema: z.ZodObject<{
|
|
1431
|
+
name: z.ZodString;
|
|
1432
|
+
serviceType: z.ZodString;
|
|
1433
|
+
url: z.ZodString;
|
|
1434
|
+
areaServed: z.ZodString;
|
|
1435
|
+
}, z.core.$strip>;
|
|
1436
|
+
type ServiceSchemaSpec = z.infer<typeof ServiceSchemaSpecSchema>;
|
|
1437
|
+
/** One problem card.
|
|
1438
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening */
|
|
1439
|
+
declare const ProblemItemSchema: z.ZodObject<{
|
|
1440
|
+
label: z.ZodString;
|
|
1441
|
+
cost: z.ZodString;
|
|
1442
|
+
outcome: z.ZodString;
|
|
1443
|
+
body: z.ZodString;
|
|
1444
|
+
}, z.core.$strip>;
|
|
1445
|
+
type ProblemItem = z.infer<typeof ProblemItemSchema>;
|
|
1446
|
+
/**
|
|
1447
|
+
* ProblemPropsSchema — three-card problem-framing section.
|
|
1448
|
+
* No mdxui equivalent. Proposed from scratch.
|
|
1449
|
+
*
|
|
1450
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1451
|
+
*/
|
|
1452
|
+
declare const ProblemPropsSchema: z.ZodObject<{
|
|
1453
|
+
eyebrow: z.ZodString;
|
|
1454
|
+
heading: z.ZodString;
|
|
1455
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1456
|
+
label: z.ZodString;
|
|
1457
|
+
cost: z.ZodString;
|
|
1458
|
+
outcome: z.ZodString;
|
|
1459
|
+
body: z.ZodString;
|
|
1460
|
+
}, z.core.$strip>>;
|
|
1461
|
+
}, z.core.$strip>;
|
|
1462
|
+
type ProblemProps = z.infer<typeof ProblemPropsSchema>;
|
|
1463
|
+
/**
|
|
1464
|
+
* Subset of ServiceBranding needed by the landing route.
|
|
1465
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1466
|
+
*/
|
|
1467
|
+
declare const ServiceBrandingSchema: z.ZodObject<{
|
|
1468
|
+
primary: z.ZodString;
|
|
1469
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1470
|
+
productName: z.ZodString;
|
|
1471
|
+
defaultTitle: z.ZodString;
|
|
1472
|
+
defaultDescription: z.ZodString;
|
|
1473
|
+
heroGlyph: z.ZodOptional<z.ZodString>;
|
|
1474
|
+
showHeroGlyph: z.ZodOptional<z.ZodBoolean>;
|
|
1475
|
+
og: z.ZodObject<{
|
|
1476
|
+
headline: z.ZodString;
|
|
1477
|
+
}, z.core.$strip>;
|
|
1478
|
+
}, z.core.$strip>;
|
|
1479
|
+
type ServiceBranding = z.infer<typeof ServiceBrandingSchema>;
|
|
1480
|
+
/**
|
|
1481
|
+
* All landing-page section content in one flat schema.
|
|
1482
|
+
* Corresponds to ServicePublicCopy minus the pricing sub-object (pricing lives
|
|
1483
|
+
* on Pricing directly as of iter 7f.2).
|
|
1484
|
+
*
|
|
1485
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1486
|
+
*/
|
|
1487
|
+
declare const LandingPublicCopySchema: z.ZodObject<{
|
|
1488
|
+
pageTitle: z.ZodString;
|
|
1489
|
+
pageDescription: z.ZodString;
|
|
1490
|
+
headerCta: z.ZodObject<{
|
|
1491
|
+
label: z.ZodString;
|
|
1492
|
+
href: z.ZodString;
|
|
1493
|
+
}, z.core.$strip>;
|
|
1494
|
+
hero: z.ZodObject<{
|
|
1495
|
+
eyebrow: z.ZodString;
|
|
1496
|
+
headline: z.ZodString;
|
|
1497
|
+
body: z.ZodString;
|
|
1498
|
+
primary: z.ZodObject<{
|
|
1499
|
+
label: z.ZodString;
|
|
1500
|
+
href: z.ZodString;
|
|
1501
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1502
|
+
}, z.core.$strip>;
|
|
1503
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1504
|
+
label: z.ZodString;
|
|
1505
|
+
href: z.ZodString;
|
|
1506
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1507
|
+
}, z.core.$strip>>;
|
|
1508
|
+
showGlyph: z.ZodOptional<z.ZodBoolean>;
|
|
1509
|
+
glyphOnMobile: z.ZodOptional<z.ZodBoolean>;
|
|
1510
|
+
illustration: z.ZodOptional<z.ZodAny>;
|
|
1511
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
1512
|
+
"split-illustration-right": "split-illustration-right";
|
|
1513
|
+
"stacked-illustration-below": "stacked-illustration-below";
|
|
1514
|
+
}>>;
|
|
1515
|
+
}, z.core.$strip>;
|
|
1516
|
+
problem: z.ZodObject<{
|
|
1517
|
+
eyebrow: z.ZodString;
|
|
1518
|
+
heading: z.ZodString;
|
|
1519
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1520
|
+
label: z.ZodString;
|
|
1521
|
+
cost: z.ZodString;
|
|
1522
|
+
outcome: z.ZodString;
|
|
1523
|
+
body: z.ZodString;
|
|
1524
|
+
}, z.core.$strip>>;
|
|
1525
|
+
}, z.core.$strip>;
|
|
1526
|
+
whatYouGet: z.ZodObject<{
|
|
1527
|
+
eyebrow: z.ZodString;
|
|
1528
|
+
heading: z.ZodString;
|
|
1529
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
1530
|
+
n: z.ZodString;
|
|
1531
|
+
title: z.ZodString;
|
|
1532
|
+
body: z.ZodString;
|
|
1533
|
+
}, z.core.$strip>>;
|
|
1534
|
+
}, z.core.$strip>;
|
|
1535
|
+
howItWorks: z.ZodObject<{
|
|
1536
|
+
eyebrow: z.ZodString;
|
|
1537
|
+
heading: z.ZodString;
|
|
1538
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1539
|
+
n: z.ZodString;
|
|
1540
|
+
title: z.ZodString;
|
|
1541
|
+
body: z.ZodString;
|
|
1542
|
+
}, z.core.$strip>>;
|
|
1543
|
+
stepIllustrations: z.ZodOptional<z.ZodArray<z.ZodCustom<React.ComponentType<{}>, React.ComponentType<{}>>>>;
|
|
1544
|
+
}, z.core.$strip>;
|
|
1545
|
+
defensibility: z.ZodObject<{
|
|
1546
|
+
eyebrow: z.ZodString;
|
|
1547
|
+
heading: z.ZodString;
|
|
1548
|
+
columns: z.ZodTuple<[z.ZodObject<{
|
|
1549
|
+
heading: z.ZodString;
|
|
1550
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1551
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1552
|
+
heading: z.ZodString;
|
|
1553
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1554
|
+
}, z.core.$strip>], null>;
|
|
1555
|
+
caveat: z.ZodOptional<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1556
|
+
}, z.core.$strip>;
|
|
1557
|
+
faq: z.ZodObject<{
|
|
1558
|
+
eyebrow: z.ZodString;
|
|
1559
|
+
heading: z.ZodString;
|
|
1560
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1561
|
+
q: z.ZodString;
|
|
1562
|
+
a: z.ZodString;
|
|
1563
|
+
}, z.core.$strip>>;
|
|
1564
|
+
}, z.core.$strip>;
|
|
1565
|
+
finalCta: z.ZodObject<{
|
|
1566
|
+
eyebrow: z.ZodString;
|
|
1567
|
+
headline: z.ZodString;
|
|
1568
|
+
primary: z.ZodObject<{
|
|
1569
|
+
label: z.ZodString;
|
|
1570
|
+
href: z.ZodString;
|
|
1571
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1572
|
+
}, z.core.$strip>;
|
|
1573
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1574
|
+
label: z.ZodString;
|
|
1575
|
+
href: z.ZodString;
|
|
1576
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1577
|
+
}, z.core.$strip>>;
|
|
1578
|
+
}, z.core.$strip>;
|
|
1579
|
+
footerText: z.ZodString;
|
|
1580
|
+
serviceSchema: z.ZodObject<{
|
|
1581
|
+
name: z.ZodString;
|
|
1582
|
+
serviceType: z.ZodString;
|
|
1583
|
+
url: z.ZodString;
|
|
1584
|
+
areaServed: z.ZodString;
|
|
1585
|
+
}, z.core.$strip>;
|
|
1586
|
+
breadcrumbs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1587
|
+
name: z.ZodString;
|
|
1588
|
+
href: z.ZodString;
|
|
1589
|
+
}, z.core.$strip>>>;
|
|
1590
|
+
}, z.core.$strip>;
|
|
1591
|
+
type LandingPublicCopy = z.infer<typeof LandingPublicCopySchema>;
|
|
1592
|
+
/**
|
|
1593
|
+
* Pricing prop bag for the landing-route Pricing component.
|
|
1594
|
+
*
|
|
1595
|
+
* `eyebrow` and `heading` are optional here because test fixtures and
|
|
1596
|
+
* example services may carry partial pricing objects. The landing route
|
|
1597
|
+
* guards on `pricing.kind === 'tiered'` before rendering and reads the
|
|
1598
|
+
* chrome fields directly.
|
|
1599
|
+
*
|
|
1600
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1601
|
+
*/
|
|
1602
|
+
declare const LandingPricingSchema: z.ZodObject<{
|
|
1603
|
+
kind: z.ZodEnum<{
|
|
1604
|
+
tiered: "tiered";
|
|
1605
|
+
unit: "unit";
|
|
1606
|
+
}>;
|
|
1607
|
+
eyebrow: z.ZodString;
|
|
1608
|
+
heading: z.ZodString;
|
|
1609
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1610
|
+
currency: z.ZodOptional<z.ZodEnum<{
|
|
1611
|
+
usd: "usd";
|
|
1612
|
+
eur: "eur";
|
|
1613
|
+
gbp: "gbp";
|
|
1614
|
+
}>>;
|
|
1615
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1616
|
+
tierKey: z.ZodString;
|
|
1617
|
+
tier: z.ZodString;
|
|
1618
|
+
price: z.ZodString;
|
|
1619
|
+
audience: z.ZodString;
|
|
1620
|
+
features: z.ZodArray<z.ZodString>;
|
|
1621
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
1622
|
+
cta: z.ZodObject<{
|
|
1623
|
+
label: z.ZodString;
|
|
1624
|
+
href: z.ZodString;
|
|
1625
|
+
}, z.core.$strip>;
|
|
1626
|
+
sku: z.ZodString;
|
|
1627
|
+
amountCents: z.ZodNumber;
|
|
1628
|
+
currency: z.ZodEnum<{
|
|
1629
|
+
usd: "usd";
|
|
1630
|
+
eur: "eur";
|
|
1631
|
+
gbp: "gbp";
|
|
1632
|
+
}>;
|
|
1633
|
+
stripeName: z.ZodString;
|
|
1634
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
1635
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
1636
|
+
}, z.core.$strip>>>>;
|
|
1637
|
+
perUnit: z.ZodOptional<z.ZodNumber>;
|
|
1638
|
+
billingCadence: z.ZodOptional<z.ZodString>;
|
|
1639
|
+
}, z.core.$strip>;
|
|
1640
|
+
type LandingPricing = z.infer<typeof LandingPricingSchema>;
|
|
1641
|
+
/**
|
|
1642
|
+
* ServiceArchetype $id vocabulary — the 8-member frozen set from upstream.
|
|
1643
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1644
|
+
*/
|
|
1645
|
+
declare const ServiceArchetypeIdSchema: z.ZodEnum<{
|
|
1646
|
+
"service-archetype-document-extraction": "service-archetype-document-extraction";
|
|
1647
|
+
"service-archetype-data-enrichment": "service-archetype-data-enrichment";
|
|
1648
|
+
"service-archetype-transactional-action": "service-archetype-transactional-action";
|
|
1649
|
+
"service-archetype-sourced-comparative-analysis": "service-archetype-sourced-comparative-analysis";
|
|
1650
|
+
"service-archetype-form-preparation": "service-archetype-form-preparation";
|
|
1651
|
+
"service-archetype-compliance-check": "service-archetype-compliance-check";
|
|
1652
|
+
"service-archetype-market-intelligence": "service-archetype-market-intelligence";
|
|
1653
|
+
"service-archetype-communication-automation": "service-archetype-communication-automation";
|
|
1654
|
+
}>;
|
|
1655
|
+
type ServiceArchetypeId = z.infer<typeof ServiceArchetypeIdSchema>;
|
|
1656
|
+
/**
|
|
1657
|
+
* CatalogShapeSchema widened for PR 7 — carries everything /[slug]/page.tsx needs.
|
|
1658
|
+
*
|
|
1659
|
+
* PR 2 fields (hero, pricingSummary) unchanged; PR 7 adds optional
|
|
1660
|
+
* publicCopy + branding + pricing + archetype. The landing route reads from
|
|
1661
|
+
* `catalogShape.publicCopy` when present; falls back to getRenderData for
|
|
1662
|
+
* non-absorbed products.
|
|
1663
|
+
*
|
|
1664
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR7-catalog-widening
|
|
1665
|
+
*/
|
|
1666
|
+
declare const CatalogShapeFullSchema: z.ZodObject<{
|
|
1667
|
+
hero: z.ZodOptional<z.ZodObject<{
|
|
1668
|
+
headline: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
subheadline: z.ZodOptional<z.ZodString>;
|
|
1670
|
+
visual: z.ZodOptional<z.ZodString>;
|
|
1671
|
+
}, z.core.$strip>>;
|
|
1672
|
+
pricingSummary: z.ZodEnum<{
|
|
1673
|
+
"starting-at": "starting-at";
|
|
1674
|
+
"per-call": "per-call";
|
|
1675
|
+
"tier-comparison": "tier-comparison";
|
|
1676
|
+
"contact-us": "contact-us";
|
|
1677
|
+
}>;
|
|
1678
|
+
publicCopy: z.ZodOptional<z.ZodObject<{
|
|
1679
|
+
pageTitle: z.ZodString;
|
|
1680
|
+
pageDescription: z.ZodString;
|
|
1681
|
+
headerCta: z.ZodObject<{
|
|
1682
|
+
label: z.ZodString;
|
|
1683
|
+
href: z.ZodString;
|
|
1684
|
+
}, z.core.$strip>;
|
|
1685
|
+
hero: z.ZodObject<{
|
|
1686
|
+
eyebrow: z.ZodString;
|
|
1687
|
+
headline: z.ZodString;
|
|
1688
|
+
body: z.ZodString;
|
|
1689
|
+
primary: z.ZodObject<{
|
|
1690
|
+
label: z.ZodString;
|
|
1691
|
+
href: z.ZodString;
|
|
1692
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1693
|
+
}, z.core.$strip>;
|
|
1694
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1695
|
+
label: z.ZodString;
|
|
1696
|
+
href: z.ZodString;
|
|
1697
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
+
}, z.core.$strip>>;
|
|
1699
|
+
showGlyph: z.ZodOptional<z.ZodBoolean>;
|
|
1700
|
+
glyphOnMobile: z.ZodOptional<z.ZodBoolean>;
|
|
1701
|
+
illustration: z.ZodOptional<z.ZodAny>;
|
|
1702
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
1703
|
+
"split-illustration-right": "split-illustration-right";
|
|
1704
|
+
"stacked-illustration-below": "stacked-illustration-below";
|
|
1705
|
+
}>>;
|
|
1706
|
+
}, z.core.$strip>;
|
|
1707
|
+
problem: z.ZodObject<{
|
|
1708
|
+
eyebrow: z.ZodString;
|
|
1709
|
+
heading: z.ZodString;
|
|
1710
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1711
|
+
label: z.ZodString;
|
|
1712
|
+
cost: z.ZodString;
|
|
1713
|
+
outcome: z.ZodString;
|
|
1714
|
+
body: z.ZodString;
|
|
1715
|
+
}, z.core.$strip>>;
|
|
1716
|
+
}, z.core.$strip>;
|
|
1717
|
+
whatYouGet: z.ZodObject<{
|
|
1718
|
+
eyebrow: z.ZodString;
|
|
1719
|
+
heading: z.ZodString;
|
|
1720
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
1721
|
+
n: z.ZodString;
|
|
1722
|
+
title: z.ZodString;
|
|
1723
|
+
body: z.ZodString;
|
|
1724
|
+
}, z.core.$strip>>;
|
|
1725
|
+
}, z.core.$strip>;
|
|
1726
|
+
howItWorks: z.ZodObject<{
|
|
1727
|
+
eyebrow: z.ZodString;
|
|
1728
|
+
heading: z.ZodString;
|
|
1729
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
1730
|
+
n: z.ZodString;
|
|
1731
|
+
title: z.ZodString;
|
|
1732
|
+
body: z.ZodString;
|
|
1733
|
+
}, z.core.$strip>>;
|
|
1734
|
+
stepIllustrations: z.ZodOptional<z.ZodArray<z.ZodCustom<React.ComponentType<{}>, React.ComponentType<{}>>>>;
|
|
1735
|
+
}, z.core.$strip>;
|
|
1736
|
+
defensibility: z.ZodObject<{
|
|
1737
|
+
eyebrow: z.ZodString;
|
|
1738
|
+
heading: z.ZodString;
|
|
1739
|
+
columns: z.ZodTuple<[z.ZodObject<{
|
|
1740
|
+
heading: z.ZodString;
|
|
1741
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1742
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1743
|
+
heading: z.ZodString;
|
|
1744
|
+
bullets: z.ZodArray<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1745
|
+
}, z.core.$strip>], null>;
|
|
1746
|
+
caveat: z.ZodOptional<z.ZodCustom<React.ReactNode, React.ReactNode>>;
|
|
1747
|
+
}, z.core.$strip>;
|
|
1748
|
+
faq: z.ZodObject<{
|
|
1749
|
+
eyebrow: z.ZodString;
|
|
1750
|
+
heading: z.ZodString;
|
|
1751
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1752
|
+
q: z.ZodString;
|
|
1753
|
+
a: z.ZodString;
|
|
1754
|
+
}, z.core.$strip>>;
|
|
1755
|
+
}, z.core.$strip>;
|
|
1756
|
+
finalCta: z.ZodObject<{
|
|
1757
|
+
eyebrow: z.ZodString;
|
|
1758
|
+
headline: z.ZodString;
|
|
1759
|
+
primary: z.ZodObject<{
|
|
1760
|
+
label: z.ZodString;
|
|
1761
|
+
href: z.ZodString;
|
|
1762
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1763
|
+
}, z.core.$strip>;
|
|
1764
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
1765
|
+
label: z.ZodString;
|
|
1766
|
+
href: z.ZodString;
|
|
1767
|
+
external: z.ZodOptional<z.ZodBoolean>;
|
|
1768
|
+
}, z.core.$strip>>;
|
|
1769
|
+
}, z.core.$strip>;
|
|
1770
|
+
footerText: z.ZodString;
|
|
1771
|
+
serviceSchema: z.ZodObject<{
|
|
1772
|
+
name: z.ZodString;
|
|
1773
|
+
serviceType: z.ZodString;
|
|
1774
|
+
url: z.ZodString;
|
|
1775
|
+
areaServed: z.ZodString;
|
|
1776
|
+
}, z.core.$strip>;
|
|
1777
|
+
breadcrumbs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1778
|
+
name: z.ZodString;
|
|
1779
|
+
href: z.ZodString;
|
|
1780
|
+
}, z.core.$strip>>>;
|
|
1781
|
+
}, z.core.$strip>>;
|
|
1782
|
+
branding: z.ZodOptional<z.ZodObject<{
|
|
1783
|
+
primary: z.ZodString;
|
|
1784
|
+
secondary: z.ZodOptional<z.ZodString>;
|
|
1785
|
+
productName: z.ZodString;
|
|
1786
|
+
defaultTitle: z.ZodString;
|
|
1787
|
+
defaultDescription: z.ZodString;
|
|
1788
|
+
heroGlyph: z.ZodOptional<z.ZodString>;
|
|
1789
|
+
showHeroGlyph: z.ZodOptional<z.ZodBoolean>;
|
|
1790
|
+
og: z.ZodObject<{
|
|
1791
|
+
headline: z.ZodString;
|
|
1792
|
+
}, z.core.$strip>;
|
|
1793
|
+
}, z.core.$strip>>;
|
|
1794
|
+
pricing: z.ZodOptional<z.ZodObject<{
|
|
1795
|
+
kind: z.ZodEnum<{
|
|
1796
|
+
tiered: "tiered";
|
|
1797
|
+
unit: "unit";
|
|
1798
|
+
}>;
|
|
1799
|
+
eyebrow: z.ZodString;
|
|
1800
|
+
heading: z.ZodString;
|
|
1801
|
+
footnote: z.ZodOptional<z.ZodString>;
|
|
1802
|
+
currency: z.ZodOptional<z.ZodEnum<{
|
|
1803
|
+
usd: "usd";
|
|
1804
|
+
eur: "eur";
|
|
1805
|
+
gbp: "gbp";
|
|
1806
|
+
}>>;
|
|
1807
|
+
tiers: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodObject<{
|
|
1808
|
+
tierKey: z.ZodString;
|
|
1809
|
+
tier: z.ZodString;
|
|
1810
|
+
price: z.ZodString;
|
|
1811
|
+
audience: z.ZodString;
|
|
1812
|
+
features: z.ZodArray<z.ZodString>;
|
|
1813
|
+
featured: z.ZodOptional<z.ZodBoolean>;
|
|
1814
|
+
cta: z.ZodObject<{
|
|
1815
|
+
label: z.ZodString;
|
|
1816
|
+
href: z.ZodString;
|
|
1817
|
+
}, z.core.$strip>;
|
|
1818
|
+
sku: z.ZodString;
|
|
1819
|
+
amountCents: z.ZodNumber;
|
|
1820
|
+
currency: z.ZodEnum<{
|
|
1821
|
+
usd: "usd";
|
|
1822
|
+
eur: "eur";
|
|
1823
|
+
gbp: "gbp";
|
|
1824
|
+
}>;
|
|
1825
|
+
stripeName: z.ZodString;
|
|
1826
|
+
minimumAmountCents: z.ZodOptional<z.ZodNumber>;
|
|
1827
|
+
priceSuffix: z.ZodOptional<z.ZodString>;
|
|
1828
|
+
}, z.core.$strip>>>>;
|
|
1829
|
+
perUnit: z.ZodOptional<z.ZodNumber>;
|
|
1830
|
+
billingCadence: z.ZodOptional<z.ZodString>;
|
|
1831
|
+
}, z.core.$strip>>;
|
|
1832
|
+
archetype: z.ZodOptional<z.ZodEnum<{
|
|
1833
|
+
"service-archetype-document-extraction": "service-archetype-document-extraction";
|
|
1834
|
+
"service-archetype-data-enrichment": "service-archetype-data-enrichment";
|
|
1835
|
+
"service-archetype-transactional-action": "service-archetype-transactional-action";
|
|
1836
|
+
"service-archetype-sourced-comparative-analysis": "service-archetype-sourced-comparative-analysis";
|
|
1837
|
+
"service-archetype-form-preparation": "service-archetype-form-preparation";
|
|
1838
|
+
"service-archetype-compliance-check": "service-archetype-compliance-check";
|
|
1839
|
+
"service-archetype-market-intelligence": "service-archetype-market-intelligence";
|
|
1840
|
+
"service-archetype-communication-automation": "service-archetype-communication-automation";
|
|
1841
|
+
}>>;
|
|
1842
|
+
}, z.core.$strip>;
|
|
1843
|
+
type CatalogShapeFull = z.infer<typeof CatalogShapeFullSchema>;
|
|
1844
|
+
|
|
1845
|
+
type index_Breadcrumb = Breadcrumb;
|
|
1846
|
+
declare const index_BreadcrumbSchema: typeof BreadcrumbSchema;
|
|
1847
|
+
type index_CatalogHero = CatalogHero;
|
|
1848
|
+
declare const index_CatalogHeroSchema: typeof CatalogHeroSchema;
|
|
1849
|
+
type index_CatalogShape = CatalogShape;
|
|
1850
|
+
type index_CatalogShapeFull = CatalogShapeFull;
|
|
1851
|
+
declare const index_CatalogShapeFullSchema: typeof CatalogShapeFullSchema;
|
|
1852
|
+
declare const index_CatalogShapeSchema: typeof CatalogShapeSchema;
|
|
1853
|
+
type index_CheckoutPanelPropsFromSchema = CheckoutPanelPropsFromSchema;
|
|
1854
|
+
declare const index_CheckoutPanelPropsSchema: typeof CheckoutPanelPropsSchema;
|
|
1855
|
+
type index_Cta = Cta;
|
|
1856
|
+
declare const index_CtaSchema: typeof CtaSchema;
|
|
1857
|
+
type index_DefensibilityColumnFromSchema = DefensibilityColumnFromSchema;
|
|
1858
|
+
declare const index_DefensibilityColumnSchema: typeof DefensibilityColumnSchema;
|
|
1859
|
+
type index_DefensibilityPropsFromSchema = DefensibilityPropsFromSchema;
|
|
1860
|
+
declare const index_DefensibilityPropsSchema: typeof DefensibilityPropsSchema;
|
|
1861
|
+
type index_DeliveryShape = DeliveryShape;
|
|
1862
|
+
declare const index_DeliveryShapeSchema: typeof DeliveryShapeSchema;
|
|
1863
|
+
type index_DeliveryUx = DeliveryUx;
|
|
1864
|
+
declare const index_DeliveryUxSchema: typeof DeliveryUxSchema;
|
|
1865
|
+
type index_FaqItem = FaqItem;
|
|
1866
|
+
declare const index_FaqItemSchema: typeof FaqItemSchema;
|
|
1867
|
+
type index_FaqPropsExtended = FaqPropsExtended;
|
|
1868
|
+
declare const index_FaqPropsExtendedSchema: typeof FaqPropsExtendedSchema;
|
|
1869
|
+
type index_FieldRowProps = FieldRowProps;
|
|
1870
|
+
declare const index_FieldRowPropsSchema: typeof FieldRowPropsSchema;
|
|
1871
|
+
type index_FileInput = FileInput;
|
|
1872
|
+
declare const index_FileInputSchema: typeof FileInputSchema;
|
|
1873
|
+
type index_FinalCtaProps = FinalCtaProps;
|
|
1874
|
+
declare const index_FinalCtaPropsSchema: typeof FinalCtaPropsSchema;
|
|
1875
|
+
type index_HeroPropsExtended = HeroPropsExtended;
|
|
1876
|
+
declare const index_HeroPropsExtendedSchema: typeof HeroPropsExtendedSchema;
|
|
1877
|
+
type index_HeroVariantFromSchema = HeroVariantFromSchema;
|
|
1878
|
+
declare const index_HeroVariantSchema: typeof HeroVariantSchema;
|
|
1879
|
+
type index_HowItWorksProps = HowItWorksProps;
|
|
1880
|
+
declare const index_HowItWorksPropsSchema: typeof HowItWorksPropsSchema;
|
|
1881
|
+
type index_HowItWorksStep = HowItWorksStep;
|
|
1882
|
+
declare const index_HowItWorksStepSchema: typeof HowItWorksStepSchema;
|
|
1883
|
+
type index_ImageUploadFieldPropsFromSchema = ImageUploadFieldPropsFromSchema;
|
|
1884
|
+
declare const index_ImageUploadFieldPropsSchema: typeof ImageUploadFieldPropsSchema;
|
|
1885
|
+
type index_LandingPricing = LandingPricing;
|
|
1886
|
+
declare const index_LandingPricingSchema: typeof LandingPricingSchema;
|
|
1887
|
+
type index_LandingPublicCopy = LandingPublicCopy;
|
|
1888
|
+
declare const index_LandingPublicCopySchema: typeof LandingPublicCopySchema;
|
|
1889
|
+
type index_LogoUploadPropsFromSchema = LogoUploadPropsFromSchema;
|
|
1890
|
+
declare const index_LogoUploadPropsSchema: typeof LogoUploadPropsSchema;
|
|
1891
|
+
type index_MastheadProps = MastheadProps;
|
|
1892
|
+
declare const index_MastheadPropsSchema: typeof MastheadPropsSchema;
|
|
1893
|
+
type index_OrderField = OrderField;
|
|
1894
|
+
declare const index_OrderFieldSchema: typeof OrderFieldSchema;
|
|
1895
|
+
type index_OrderFlow = OrderFlow;
|
|
1896
|
+
declare const index_OrderFlowSchema: typeof OrderFlowSchema;
|
|
1897
|
+
type index_OrderGroup = OrderGroup;
|
|
1898
|
+
declare const index_OrderGroupSchema: typeof OrderGroupSchema;
|
|
1899
|
+
type index_OrderLegal = OrderLegal;
|
|
1900
|
+
declare const index_OrderLegalSchema: typeof OrderLegalSchema;
|
|
1901
|
+
type index_OrderShape = OrderShape;
|
|
1902
|
+
declare const index_OrderShapeSchema: typeof OrderShapeSchema;
|
|
1903
|
+
type index_OrderStep = OrderStep;
|
|
1904
|
+
declare const index_OrderStepSchema: typeof OrderStepSchema;
|
|
1905
|
+
type index_PortalAction = PortalAction;
|
|
1906
|
+
type index_PortalActionKind = PortalActionKind;
|
|
1907
|
+
declare const index_PortalActionKindSchema: typeof PortalActionKindSchema;
|
|
1908
|
+
declare const index_PortalActionSchema: typeof PortalActionSchema;
|
|
1909
|
+
type index_PortalColumn = PortalColumn;
|
|
1910
|
+
declare const index_PortalColumnSchema: typeof PortalColumnSchema;
|
|
1911
|
+
type index_PortalColumnType = PortalColumnType;
|
|
1912
|
+
declare const index_PortalColumnTypeSchema: typeof PortalColumnTypeSchema;
|
|
1913
|
+
type index_PortalFilter = PortalFilter;
|
|
1914
|
+
declare const index_PortalFilterSchema: typeof PortalFilterSchema;
|
|
1915
|
+
type index_PortalShape = PortalShape;
|
|
1916
|
+
declare const index_PortalShapeSchema: typeof PortalShapeSchema;
|
|
1917
|
+
type index_PreviewMode = PreviewMode;
|
|
1918
|
+
declare const index_PreviewModeSchema: typeof PreviewModeSchema;
|
|
1919
|
+
type index_PriceTier = PriceTier;
|
|
1920
|
+
declare const index_PriceTierSchema: typeof PriceTierSchema;
|
|
1921
|
+
type index_Pricing = Pricing;
|
|
1922
|
+
type index_PricingPropsExtended = PricingPropsExtended;
|
|
1923
|
+
declare const index_PricingPropsExtendedSchema: typeof PricingPropsExtendedSchema;
|
|
1924
|
+
declare const index_PricingSchema: typeof PricingSchema;
|
|
1925
|
+
type index_PricingSummary = PricingSummary;
|
|
1926
|
+
declare const index_PricingSummarySchema: typeof PricingSummarySchema;
|
|
1927
|
+
type index_ProblemItem = ProblemItem;
|
|
1928
|
+
declare const index_ProblemItemSchema: typeof ProblemItemSchema;
|
|
1929
|
+
type index_ProblemProps = ProblemProps;
|
|
1930
|
+
declare const index_ProblemPropsSchema: typeof ProblemPropsSchema;
|
|
1931
|
+
type index_RadioGroupInput = RadioGroupInput;
|
|
1932
|
+
declare const index_RadioGroupInputSchema: typeof RadioGroupInputSchema;
|
|
1933
|
+
type index_RadioGroupOption = RadioGroupOption;
|
|
1934
|
+
declare const index_RadioGroupOptionSchema: typeof RadioGroupOptionSchema;
|
|
1935
|
+
type index_RadioGroupProps = RadioGroupProps;
|
|
1936
|
+
declare const index_RadioGroupPropsSchema: typeof RadioGroupPropsSchema;
|
|
1937
|
+
type index_SelectFieldProps = SelectFieldProps;
|
|
1938
|
+
declare const index_SelectFieldPropsSchema: typeof SelectFieldPropsSchema;
|
|
1939
|
+
type index_SelectInput = SelectInput;
|
|
1940
|
+
declare const index_SelectInputSchema: typeof SelectInputSchema;
|
|
1941
|
+
type index_ServiceArchetypeId = ServiceArchetypeId;
|
|
1942
|
+
declare const index_ServiceArchetypeIdSchema: typeof ServiceArchetypeIdSchema;
|
|
1943
|
+
type index_ServiceBranding = ServiceBranding;
|
|
1944
|
+
declare const index_ServiceBrandingSchema: typeof ServiceBrandingSchema;
|
|
1945
|
+
type index_ServiceFormPropsFromSchema = ServiceFormPropsFromSchema;
|
|
1946
|
+
declare const index_ServiceFormPropsSchema: typeof ServiceFormPropsSchema;
|
|
1947
|
+
type index_ServiceSchemaSpec = ServiceSchemaSpec;
|
|
1948
|
+
declare const index_ServiceSchemaSpecSchema: typeof ServiceSchemaSpecSchema;
|
|
1949
|
+
type index_SiteAction = SiteAction;
|
|
1950
|
+
declare const index_SiteActionSchema: typeof SiteActionSchema;
|
|
1951
|
+
type index_SiteFooterLink = SiteFooterLink;
|
|
1952
|
+
declare const index_SiteFooterLinkSchema: typeof SiteFooterLinkSchema;
|
|
1953
|
+
type index_SiteFooterProps = SiteFooterProps;
|
|
1954
|
+
declare const index_SiteFooterPropsSchema: typeof SiteFooterPropsSchema;
|
|
1955
|
+
type index_StepHeadingPropsFromSchema = StepHeadingPropsFromSchema;
|
|
1956
|
+
declare const index_StepHeadingPropsSchema: typeof StepHeadingPropsSchema;
|
|
1957
|
+
type index_TextFieldProps = TextFieldProps;
|
|
1958
|
+
declare const index_TextFieldPropsSchema: typeof TextFieldPropsSchema;
|
|
1959
|
+
type index_TextInput = TextInput;
|
|
1960
|
+
declare const index_TextInputSchema: typeof TextInputSchema;
|
|
1961
|
+
type index_UpsellBannerPropsFromSchema = UpsellBannerPropsFromSchema;
|
|
1962
|
+
declare const index_UpsellBannerPropsSchema: typeof UpsellBannerPropsSchema;
|
|
1963
|
+
type index_UpsellCardPropsFromSchema = UpsellCardPropsFromSchema;
|
|
1964
|
+
declare const index_UpsellCardPropsSchema: typeof UpsellCardPropsSchema;
|
|
1965
|
+
type index_WhatYouGetItem = WhatYouGetItem;
|
|
1966
|
+
declare const index_WhatYouGetItemSchema: typeof WhatYouGetItemSchema;
|
|
1967
|
+
type index_WhatYouGetProps = WhatYouGetProps;
|
|
1968
|
+
declare const index_WhatYouGetPropsSchema: typeof WhatYouGetPropsSchema;
|
|
1969
|
+
declare namespace index {
|
|
1970
|
+
export { type index_Breadcrumb as Breadcrumb, index_BreadcrumbSchema as BreadcrumbSchema, type index_CatalogHero as CatalogHero, index_CatalogHeroSchema as CatalogHeroSchema, type index_CatalogShape as CatalogShape, type index_CatalogShapeFull as CatalogShapeFull, index_CatalogShapeFullSchema as CatalogShapeFullSchema, index_CatalogShapeSchema as CatalogShapeSchema, type index_CheckoutPanelPropsFromSchema as CheckoutPanelPropsFromSchema, index_CheckoutPanelPropsSchema as CheckoutPanelPropsSchema, type index_Cta as Cta, index_CtaSchema as CtaSchema, type index_DefensibilityColumnFromSchema as DefensibilityColumnFromSchema, index_DefensibilityColumnSchema as DefensibilityColumnSchema, type index_DefensibilityPropsFromSchema as DefensibilityPropsFromSchema, index_DefensibilityPropsSchema as DefensibilityPropsSchema, type index_DeliveryShape as DeliveryShape, index_DeliveryShapeSchema as DeliveryShapeSchema, type index_DeliveryUx as DeliveryUx, index_DeliveryUxSchema as DeliveryUxSchema, type index_FaqItem as FaqItem, index_FaqItemSchema as FaqItemSchema, type index_FaqPropsExtended as FaqPropsExtended, index_FaqPropsExtendedSchema as FaqPropsExtendedSchema, type index_FieldRowProps as FieldRowProps, index_FieldRowPropsSchema as FieldRowPropsSchema, type index_FileInput as FileInput, index_FileInputSchema as FileInputSchema, type index_FinalCtaProps as FinalCtaProps, index_FinalCtaPropsSchema as FinalCtaPropsSchema, type index_HeroPropsExtended as HeroPropsExtended, index_HeroPropsExtendedSchema as HeroPropsExtendedSchema, type index_HeroVariantFromSchema as HeroVariantFromSchema, index_HeroVariantSchema as HeroVariantSchema, type index_HowItWorksProps as HowItWorksProps, index_HowItWorksPropsSchema as HowItWorksPropsSchema, type index_HowItWorksStep as HowItWorksStep, index_HowItWorksStepSchema as HowItWorksStepSchema, type index_ImageUploadFieldPropsFromSchema as ImageUploadFieldPropsFromSchema, index_ImageUploadFieldPropsSchema as ImageUploadFieldPropsSchema, type index_LandingPricing as LandingPricing, index_LandingPricingSchema as LandingPricingSchema, type index_LandingPublicCopy as LandingPublicCopy, index_LandingPublicCopySchema as LandingPublicCopySchema, type index_LogoUploadPropsFromSchema as LogoUploadPropsFromSchema, index_LogoUploadPropsSchema as LogoUploadPropsSchema, type index_MastheadProps as MastheadProps, index_MastheadPropsSchema as MastheadPropsSchema, type index_OrderField as OrderField, index_OrderFieldSchema as OrderFieldSchema, type index_OrderFlow as OrderFlow, index_OrderFlowSchema as OrderFlowSchema, type index_OrderGroup as OrderGroup, index_OrderGroupSchema as OrderGroupSchema, type index_OrderLegal as OrderLegal, index_OrderLegalSchema as OrderLegalSchema, type index_OrderShape as OrderShape, index_OrderShapeSchema as OrderShapeSchema, type index_OrderStep as OrderStep, index_OrderStepSchema as OrderStepSchema, type index_PortalAction as PortalAction, type index_PortalActionKind as PortalActionKind, index_PortalActionKindSchema as PortalActionKindSchema, index_PortalActionSchema as PortalActionSchema, type index_PortalColumn as PortalColumn, index_PortalColumnSchema as PortalColumnSchema, type index_PortalColumnType as PortalColumnType, index_PortalColumnTypeSchema as PortalColumnTypeSchema, type index_PortalFilter as PortalFilter, index_PortalFilterSchema as PortalFilterSchema, type index_PortalShape as PortalShape, index_PortalShapeSchema as PortalShapeSchema, type index_PreviewMode as PreviewMode, index_PreviewModeSchema as PreviewModeSchema, type index_PriceTier as PriceTier, index_PriceTierSchema as PriceTierSchema, type index_Pricing as Pricing, type index_PricingPropsExtended as PricingPropsExtended, index_PricingPropsExtendedSchema as PricingPropsExtendedSchema, index_PricingSchema as PricingSchema, type index_PricingSummary as PricingSummary, index_PricingSummarySchema as PricingSummarySchema, type index_ProblemItem as ProblemItem, index_ProblemItemSchema as ProblemItemSchema, type index_ProblemProps as ProblemProps, index_ProblemPropsSchema as ProblemPropsSchema, type index_RadioGroupInput as RadioGroupInput, index_RadioGroupInputSchema as RadioGroupInputSchema, type index_RadioGroupOption as RadioGroupOption, index_RadioGroupOptionSchema as RadioGroupOptionSchema, type index_RadioGroupProps as RadioGroupProps, index_RadioGroupPropsSchema as RadioGroupPropsSchema, type index_SelectFieldProps as SelectFieldProps, index_SelectFieldPropsSchema as SelectFieldPropsSchema, type index_SelectInput as SelectInput, index_SelectInputSchema as SelectInputSchema, type index_ServiceArchetypeId as ServiceArchetypeId, index_ServiceArchetypeIdSchema as ServiceArchetypeIdSchema, type index_ServiceBranding as ServiceBranding, index_ServiceBrandingSchema as ServiceBrandingSchema, type index_ServiceFormPropsFromSchema as ServiceFormPropsFromSchema, index_ServiceFormPropsSchema as ServiceFormPropsSchema, type index_ServiceSchemaSpec as ServiceSchemaSpec, index_ServiceSchemaSpecSchema as ServiceSchemaSpecSchema, type index_SiteAction as SiteAction, index_SiteActionSchema as SiteActionSchema, type index_SiteFooterLink as SiteFooterLink, index_SiteFooterLinkSchema as SiteFooterLinkSchema, type index_SiteFooterProps as SiteFooterProps, index_SiteFooterPropsSchema as SiteFooterPropsSchema, type index_StepHeadingPropsFromSchema as StepHeadingPropsFromSchema, index_StepHeadingPropsSchema as StepHeadingPropsSchema, type index_TextFieldProps as TextFieldProps, index_TextFieldPropsSchema as TextFieldPropsSchema, type index_TextInput as TextInput, index_TextInputSchema as TextInputSchema, type index_UpsellBannerPropsFromSchema as UpsellBannerPropsFromSchema, index_UpsellBannerPropsSchema as UpsellBannerPropsSchema, type index_UpsellCardPropsFromSchema as UpsellCardPropsFromSchema, index_UpsellCardPropsSchema as UpsellCardPropsSchema, type index_WhatYouGetItem as WhatYouGetItem, index_WhatYouGetItemSchema as WhatYouGetItemSchema, type index_WhatYouGetProps as WhatYouGetProps, index_WhatYouGetPropsSchema as WhatYouGetPropsSchema };
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
export { LandingPricingSchema as $, DeliveryShapeSchema as A, type Breadcrumb as B, type CatalogHero as C, type DefensibilityPropsFromSchema as D, type DeliveryUx as E, type FaqPropsExtended as F, DeliveryUxSchema as G, type HeroPropsExtended as H, FaqItemSchema as I, FaqPropsExtendedSchema as J, type FieldRowProps as K, FieldRowPropsSchema as L, type MastheadProps as M, type FileInput as N, FileInputSchema as O, type ProblemProps as P, FinalCtaPropsSchema as Q, HeroPropsExtendedSchema as R, type SiteFooterProps as S, type HeroVariantFromSchema as T, HeroVariantSchema as U, HowItWorksPropsSchema as V, type WhatYouGetProps as W, HowItWorksStepSchema as X, type ImageUploadFieldPropsFromSchema as Y, ImageUploadFieldPropsSchema as Z, type LandingPricing as _, type HowItWorksProps as a, type TextInput as a$, type LandingPublicCopy as a0, LandingPublicCopySchema as a1, type LogoUploadPropsFromSchema as a2, LogoUploadPropsSchema as a3, MastheadPropsSchema as a4, type OrderField as a5, OrderFieldSchema as a6, type OrderFlow as a7, OrderFlowSchema as a8, type OrderGroup as a9, ProblemItemSchema as aA, ProblemPropsSchema as aB, type RadioGroupInput as aC, RadioGroupInputSchema as aD, type RadioGroupOption as aE, RadioGroupOptionSchema as aF, type RadioGroupProps as aG, RadioGroupPropsSchema as aH, type SelectFieldProps as aI, SelectFieldPropsSchema as aJ, type SelectInput as aK, SelectInputSchema as aL, type ServiceArchetypeId as aM, ServiceArchetypeIdSchema as aN, type ServiceBranding as aO, ServiceBrandingSchema as aP, type ServiceFormPropsFromSchema as aQ, ServiceFormPropsSchema as aR, type ServiceSchemaSpec as aS, ServiceSchemaSpecSchema as aT, SiteActionSchema as aU, SiteFooterLinkSchema as aV, SiteFooterPropsSchema as aW, type StepHeadingPropsFromSchema as aX, StepHeadingPropsSchema as aY, type TextFieldProps as aZ, TextFieldPropsSchema as a_, OrderGroupSchema as aa, type OrderLegal as ab, OrderLegalSchema as ac, type OrderShape as ad, OrderShapeSchema as ae, type OrderStep as af, OrderStepSchema as ag, type PortalAction as ah, type PortalActionKind as ai, PortalActionKindSchema as aj, PortalActionSchema as ak, type PortalColumn as al, PortalColumnSchema as am, type PortalColumnType as an, PortalColumnTypeSchema as ao, type PortalFilter as ap, PortalFilterSchema as aq, type PortalShape as ar, PortalShapeSchema as as, type PreviewMode as at, PreviewModeSchema as au, PriceTierSchema as av, PricingPropsExtendedSchema as aw, PricingSchema as ax, type PricingSummary as ay, PricingSummarySchema as az, type PricingPropsExtended as b, TextInputSchema as b0, type UpsellBannerPropsFromSchema as b1, UpsellBannerPropsSchema as b2, type UpsellCardPropsFromSchema as b3, UpsellCardPropsSchema as b4, WhatYouGetItemSchema as b5, WhatYouGetPropsSchema as b6, type Pricing as c, type FinalCtaProps as d, type SiteAction as e, type ProblemItem as f, type WhatYouGetItem as g, type HowItWorksStep as h, index as i, type DefensibilityColumnFromSchema as j, type PriceTier as k, type FaqItem as l, type SiteFooterLink as m, BreadcrumbSchema as n, CatalogHeroSchema as o, type CatalogShape as p, type CatalogShapeFull as q, CatalogShapeFullSchema as r, CatalogShapeSchema as s, type CheckoutPanelPropsFromSchema as t, CheckoutPanelPropsSchema as u, type Cta as v, CtaSchema as w, DefensibilityColumnSchema as x, DefensibilityPropsSchema as y, type DeliveryShape as z };
|