@nfcard/validation 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.
@@ -0,0 +1,4352 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const webAddressSchema: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
4
+ declare function sanitizeHttpUrl(raw: unknown): string;
5
+ /** Plain-text label — strip tags/control chars, cap length. */
6
+ declare function sanitizeText(raw: unknown, max?: number): string;
7
+ declare const socialLinksSchema: z.ZodObject<{
8
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
9
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
10
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
11
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
12
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
13
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
14
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
15
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
16
+ }, "strip", z.ZodTypeAny, {
17
+ facebook: string;
18
+ linkedin: string;
19
+ instagram: string;
20
+ x: string;
21
+ youtube: string;
22
+ tiktok: string;
23
+ customUrl: string;
24
+ customUrlLabel: string;
25
+ }, {
26
+ facebook?: string | undefined;
27
+ linkedin?: string | undefined;
28
+ instagram?: string | undefined;
29
+ x?: string | undefined;
30
+ youtube?: string | undefined;
31
+ tiktok?: string | undefined;
32
+ customUrl?: string | undefined;
33
+ customUrlLabel?: string | undefined;
34
+ }>;
35
+ declare const userDataSchema: z.ZodObject<{
36
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
37
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
38
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
39
+ email: z.ZodString;
40
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
41
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
42
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
43
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
44
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
45
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
46
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
47
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
48
+ socialLinks: z.ZodOptional<z.ZodObject<{
49
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
50
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
51
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
52
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
53
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
54
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
55
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
56
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ facebook: string;
59
+ linkedin: string;
60
+ instagram: string;
61
+ x: string;
62
+ youtube: string;
63
+ tiktok: string;
64
+ customUrl: string;
65
+ customUrlLabel: string;
66
+ }, {
67
+ facebook?: string | undefined;
68
+ linkedin?: string | undefined;
69
+ instagram?: string | undefined;
70
+ x?: string | undefined;
71
+ youtube?: string | undefined;
72
+ tiktok?: string | undefined;
73
+ customUrl?: string | undefined;
74
+ customUrlLabel?: string | undefined;
75
+ }>>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ email: string;
78
+ firstName?: string | undefined;
79
+ lastName?: string | undefined;
80
+ position?: string | undefined;
81
+ phone?: string | undefined;
82
+ phoneCountryCode?: string | undefined;
83
+ location?: string | undefined;
84
+ company?: string | undefined;
85
+ website?: string | undefined;
86
+ bio?: string | undefined;
87
+ profilePhotoUrl?: string | undefined;
88
+ companyLogoUrl?: string | undefined;
89
+ socialLinks?: {
90
+ facebook: string;
91
+ linkedin: string;
92
+ instagram: string;
93
+ x: string;
94
+ youtube: string;
95
+ tiktok: string;
96
+ customUrl: string;
97
+ customUrlLabel: string;
98
+ } | undefined;
99
+ }, {
100
+ email: string;
101
+ firstName?: string | undefined;
102
+ lastName?: string | undefined;
103
+ position?: string | undefined;
104
+ phone?: string | undefined;
105
+ phoneCountryCode?: string | undefined;
106
+ location?: string | undefined;
107
+ company?: string | undefined;
108
+ website?: string | undefined;
109
+ bio?: string | undefined;
110
+ profilePhotoUrl?: string | undefined;
111
+ companyLogoUrl?: string | undefined;
112
+ socialLinks?: {
113
+ facebook?: string | undefined;
114
+ linkedin?: string | undefined;
115
+ instagram?: string | undefined;
116
+ x?: string | undefined;
117
+ youtube?: string | undefined;
118
+ tiktok?: string | undefined;
119
+ customUrl?: string | undefined;
120
+ customUrlLabel?: string | undefined;
121
+ } | undefined;
122
+ }>;
123
+ declare const cardElementsSchema: z.ZodObject<{
124
+ showName: z.ZodBoolean;
125
+ showPosition: z.ZodBoolean;
126
+ showEmail: z.ZodBoolean;
127
+ showPhone: z.ZodBoolean;
128
+ showCompany: z.ZodBoolean;
129
+ showLogo: z.ZodBoolean;
130
+ showQr: z.ZodBoolean;
131
+ showPhoto: z.ZodBoolean;
132
+ }, "strip", z.ZodTypeAny, {
133
+ showName: boolean;
134
+ showPosition: boolean;
135
+ showEmail: boolean;
136
+ showPhone: boolean;
137
+ showCompany: boolean;
138
+ showLogo: boolean;
139
+ showQr: boolean;
140
+ showPhoto: boolean;
141
+ }, {
142
+ showName: boolean;
143
+ showPosition: boolean;
144
+ showEmail: boolean;
145
+ showPhone: boolean;
146
+ showCompany: boolean;
147
+ showLogo: boolean;
148
+ showQr: boolean;
149
+ showPhoto: boolean;
150
+ }>;
151
+ declare const materialSchema: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
152
+ declare const comboIdSchema: z.ZodEnum<["A1", "A2", "B1", "B2", "C1", "C2", "D1", "D2", "E1", "E2"]>;
153
+ declare const contactDetailTogglesSchema: z.ZodObject<{
154
+ showEmail: z.ZodOptional<z.ZodBoolean>;
155
+ showPhone: z.ZodOptional<z.ZodBoolean>;
156
+ showLocation: z.ZodOptional<z.ZodBoolean>;
157
+ }, "strip", z.ZodTypeAny, {
158
+ showEmail?: boolean | undefined;
159
+ showPhone?: boolean | undefined;
160
+ showLocation?: boolean | undefined;
161
+ }, {
162
+ showEmail?: boolean | undefined;
163
+ showPhone?: boolean | undefined;
164
+ showLocation?: boolean | undefined;
165
+ }>;
166
+ declare const physicalContentOverridesSchema: z.ZodObject<{
167
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
168
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
169
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
170
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
171
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
172
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
173
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ position?: string | undefined;
176
+ email?: string | undefined;
177
+ phone?: string | undefined;
178
+ phoneCountryCode?: string | undefined;
179
+ location?: string | undefined;
180
+ company?: string | undefined;
181
+ displayName?: string | undefined;
182
+ }, {
183
+ position?: string | undefined;
184
+ email?: string | undefined;
185
+ phone?: string | undefined;
186
+ phoneCountryCode?: string | undefined;
187
+ location?: string | undefined;
188
+ company?: string | undefined;
189
+ displayName?: string | undefined;
190
+ }>;
191
+ declare const physicalConfigSchema: z.ZodEffects<z.ZodObject<{
192
+ material: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
193
+ colour: z.ZodOptional<z.ZodString>;
194
+ comboId: z.ZodEnum<["A1", "A2", "B1", "B2", "C1", "C2", "D1", "D2", "E1", "E2"]>;
195
+ frontElements: z.ZodObject<{
196
+ showName: z.ZodBoolean;
197
+ showPosition: z.ZodBoolean;
198
+ showEmail: z.ZodBoolean;
199
+ showPhone: z.ZodBoolean;
200
+ showCompany: z.ZodBoolean;
201
+ showLogo: z.ZodBoolean;
202
+ showQr: z.ZodBoolean;
203
+ showPhoto: z.ZodBoolean;
204
+ }, "strip", z.ZodTypeAny, {
205
+ showName: boolean;
206
+ showPosition: boolean;
207
+ showEmail: boolean;
208
+ showPhone: boolean;
209
+ showCompany: boolean;
210
+ showLogo: boolean;
211
+ showQr: boolean;
212
+ showPhoto: boolean;
213
+ }, {
214
+ showName: boolean;
215
+ showPosition: boolean;
216
+ showEmail: boolean;
217
+ showPhone: boolean;
218
+ showCompany: boolean;
219
+ showLogo: boolean;
220
+ showQr: boolean;
221
+ showPhoto: boolean;
222
+ }>;
223
+ backElements: z.ZodObject<{
224
+ showName: z.ZodBoolean;
225
+ showPosition: z.ZodBoolean;
226
+ showEmail: z.ZodBoolean;
227
+ showPhone: z.ZodBoolean;
228
+ showCompany: z.ZodBoolean;
229
+ showLogo: z.ZodBoolean;
230
+ showQr: z.ZodBoolean;
231
+ showPhoto: z.ZodBoolean;
232
+ }, "strip", z.ZodTypeAny, {
233
+ showName: boolean;
234
+ showPosition: boolean;
235
+ showEmail: boolean;
236
+ showPhone: boolean;
237
+ showCompany: boolean;
238
+ showLogo: boolean;
239
+ showQr: boolean;
240
+ showPhoto: boolean;
241
+ }, {
242
+ showName: boolean;
243
+ showPosition: boolean;
244
+ showEmail: boolean;
245
+ showPhone: boolean;
246
+ showCompany: boolean;
247
+ showLogo: boolean;
248
+ showQr: boolean;
249
+ showPhoto: boolean;
250
+ }>;
251
+ qrTargetUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
252
+ customDesignRequest: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
253
+ frontContactToggles: z.ZodOptional<z.ZodObject<{
254
+ showEmail: z.ZodOptional<z.ZodBoolean>;
255
+ showPhone: z.ZodOptional<z.ZodBoolean>;
256
+ showLocation: z.ZodOptional<z.ZodBoolean>;
257
+ }, "strip", z.ZodTypeAny, {
258
+ showEmail?: boolean | undefined;
259
+ showPhone?: boolean | undefined;
260
+ showLocation?: boolean | undefined;
261
+ }, {
262
+ showEmail?: boolean | undefined;
263
+ showPhone?: boolean | undefined;
264
+ showLocation?: boolean | undefined;
265
+ }>>;
266
+ backContactToggles: z.ZodOptional<z.ZodObject<{
267
+ showEmail: z.ZodOptional<z.ZodBoolean>;
268
+ showPhone: z.ZodOptional<z.ZodBoolean>;
269
+ showLocation: z.ZodOptional<z.ZodBoolean>;
270
+ }, "strip", z.ZodTypeAny, {
271
+ showEmail?: boolean | undefined;
272
+ showPhone?: boolean | undefined;
273
+ showLocation?: boolean | undefined;
274
+ }, {
275
+ showEmail?: boolean | undefined;
276
+ showPhone?: boolean | undefined;
277
+ showLocation?: boolean | undefined;
278
+ }>>;
279
+ contentOverrides: z.ZodOptional<z.ZodObject<{
280
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
281
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
282
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
283
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
284
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
285
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
286
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ position?: string | undefined;
289
+ email?: string | undefined;
290
+ phone?: string | undefined;
291
+ phoneCountryCode?: string | undefined;
292
+ location?: string | undefined;
293
+ company?: string | undefined;
294
+ displayName?: string | undefined;
295
+ }, {
296
+ position?: string | undefined;
297
+ email?: string | undefined;
298
+ phone?: string | undefined;
299
+ phoneCountryCode?: string | undefined;
300
+ location?: string | undefined;
301
+ company?: string | undefined;
302
+ displayName?: string | undefined;
303
+ }>>;
304
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
305
+ }, "strip", z.ZodTypeAny, {
306
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
307
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
308
+ frontElements: {
309
+ showName: boolean;
310
+ showPosition: boolean;
311
+ showEmail: boolean;
312
+ showPhone: boolean;
313
+ showCompany: boolean;
314
+ showLogo: boolean;
315
+ showQr: boolean;
316
+ showPhoto: boolean;
317
+ };
318
+ backElements: {
319
+ showName: boolean;
320
+ showPosition: boolean;
321
+ showEmail: boolean;
322
+ showPhone: boolean;
323
+ showCompany: boolean;
324
+ showLogo: boolean;
325
+ showQr: boolean;
326
+ showPhoto: boolean;
327
+ };
328
+ companyLogoUrl?: string | undefined;
329
+ colour?: string | undefined;
330
+ qrTargetUrl?: string | undefined;
331
+ customDesignRequest?: string | undefined;
332
+ frontContactToggles?: {
333
+ showEmail?: boolean | undefined;
334
+ showPhone?: boolean | undefined;
335
+ showLocation?: boolean | undefined;
336
+ } | undefined;
337
+ backContactToggles?: {
338
+ showEmail?: boolean | undefined;
339
+ showPhone?: boolean | undefined;
340
+ showLocation?: boolean | undefined;
341
+ } | undefined;
342
+ contentOverrides?: {
343
+ position?: string | undefined;
344
+ email?: string | undefined;
345
+ phone?: string | undefined;
346
+ phoneCountryCode?: string | undefined;
347
+ location?: string | undefined;
348
+ company?: string | undefined;
349
+ displayName?: string | undefined;
350
+ } | undefined;
351
+ }, {
352
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
353
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
354
+ frontElements: {
355
+ showName: boolean;
356
+ showPosition: boolean;
357
+ showEmail: boolean;
358
+ showPhone: boolean;
359
+ showCompany: boolean;
360
+ showLogo: boolean;
361
+ showQr: boolean;
362
+ showPhoto: boolean;
363
+ };
364
+ backElements: {
365
+ showName: boolean;
366
+ showPosition: boolean;
367
+ showEmail: boolean;
368
+ showPhone: boolean;
369
+ showCompany: boolean;
370
+ showLogo: boolean;
371
+ showQr: boolean;
372
+ showPhoto: boolean;
373
+ };
374
+ companyLogoUrl?: string | undefined;
375
+ colour?: string | undefined;
376
+ qrTargetUrl?: string | undefined;
377
+ customDesignRequest?: string | undefined;
378
+ frontContactToggles?: {
379
+ showEmail?: boolean | undefined;
380
+ showPhone?: boolean | undefined;
381
+ showLocation?: boolean | undefined;
382
+ } | undefined;
383
+ backContactToggles?: {
384
+ showEmail?: boolean | undefined;
385
+ showPhone?: boolean | undefined;
386
+ showLocation?: boolean | undefined;
387
+ } | undefined;
388
+ contentOverrides?: {
389
+ position?: string | undefined;
390
+ email?: string | undefined;
391
+ phone?: string | undefined;
392
+ phoneCountryCode?: string | undefined;
393
+ location?: string | undefined;
394
+ company?: string | undefined;
395
+ displayName?: string | undefined;
396
+ } | undefined;
397
+ }>, {
398
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
399
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
400
+ frontElements: {
401
+ showName: boolean;
402
+ showPosition: boolean;
403
+ showEmail: boolean;
404
+ showPhone: boolean;
405
+ showCompany: boolean;
406
+ showLogo: boolean;
407
+ showQr: boolean;
408
+ showPhoto: boolean;
409
+ };
410
+ backElements: {
411
+ showName: boolean;
412
+ showPosition: boolean;
413
+ showEmail: boolean;
414
+ showPhone: boolean;
415
+ showCompany: boolean;
416
+ showLogo: boolean;
417
+ showQr: boolean;
418
+ showPhoto: boolean;
419
+ };
420
+ companyLogoUrl?: string | undefined;
421
+ colour?: string | undefined;
422
+ qrTargetUrl?: string | undefined;
423
+ customDesignRequest?: string | undefined;
424
+ frontContactToggles?: {
425
+ showEmail?: boolean | undefined;
426
+ showPhone?: boolean | undefined;
427
+ showLocation?: boolean | undefined;
428
+ } | undefined;
429
+ backContactToggles?: {
430
+ showEmail?: boolean | undefined;
431
+ showPhone?: boolean | undefined;
432
+ showLocation?: boolean | undefined;
433
+ } | undefined;
434
+ contentOverrides?: {
435
+ position?: string | undefined;
436
+ email?: string | undefined;
437
+ phone?: string | undefined;
438
+ phoneCountryCode?: string | undefined;
439
+ location?: string | undefined;
440
+ company?: string | undefined;
441
+ displayName?: string | undefined;
442
+ } | undefined;
443
+ }, {
444
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
445
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
446
+ frontElements: {
447
+ showName: boolean;
448
+ showPosition: boolean;
449
+ showEmail: boolean;
450
+ showPhone: boolean;
451
+ showCompany: boolean;
452
+ showLogo: boolean;
453
+ showQr: boolean;
454
+ showPhoto: boolean;
455
+ };
456
+ backElements: {
457
+ showName: boolean;
458
+ showPosition: boolean;
459
+ showEmail: boolean;
460
+ showPhone: boolean;
461
+ showCompany: boolean;
462
+ showLogo: boolean;
463
+ showQr: boolean;
464
+ showPhoto: boolean;
465
+ };
466
+ companyLogoUrl?: string | undefined;
467
+ colour?: string | undefined;
468
+ qrTargetUrl?: string | undefined;
469
+ customDesignRequest?: string | undefined;
470
+ frontContactToggles?: {
471
+ showEmail?: boolean | undefined;
472
+ showPhone?: boolean | undefined;
473
+ showLocation?: boolean | undefined;
474
+ } | undefined;
475
+ backContactToggles?: {
476
+ showEmail?: boolean | undefined;
477
+ showPhone?: boolean | undefined;
478
+ showLocation?: boolean | undefined;
479
+ } | undefined;
480
+ contentOverrides?: {
481
+ position?: string | undefined;
482
+ email?: string | undefined;
483
+ phone?: string | undefined;
484
+ phoneCountryCode?: string | undefined;
485
+ location?: string | undefined;
486
+ company?: string | undefined;
487
+ displayName?: string | undefined;
488
+ } | undefined;
489
+ }>;
490
+ declare const digitalVisibilitySchema: z.ZodObject<{
491
+ showName: z.ZodOptional<z.ZodBoolean>;
492
+ showPosition: z.ZodOptional<z.ZodBoolean>;
493
+ showCompany: z.ZodOptional<z.ZodBoolean>;
494
+ showEmail: z.ZodOptional<z.ZodBoolean>;
495
+ showPhone: z.ZodOptional<z.ZodBoolean>;
496
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
497
+ showLocation: z.ZodOptional<z.ZodBoolean>;
498
+ showBio: z.ZodOptional<z.ZodBoolean>;
499
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
500
+ showLogo: z.ZodOptional<z.ZodBoolean>;
501
+ }, "strip", z.ZodTypeAny, {
502
+ showName?: boolean | undefined;
503
+ showPosition?: boolean | undefined;
504
+ showEmail?: boolean | undefined;
505
+ showPhone?: boolean | undefined;
506
+ showCompany?: boolean | undefined;
507
+ showLogo?: boolean | undefined;
508
+ showLocation?: boolean | undefined;
509
+ showWebsite?: boolean | undefined;
510
+ showBio?: boolean | undefined;
511
+ showSocialLinks?: boolean | undefined;
512
+ }, {
513
+ showName?: boolean | undefined;
514
+ showPosition?: boolean | undefined;
515
+ showEmail?: boolean | undefined;
516
+ showPhone?: boolean | undefined;
517
+ showCompany?: boolean | undefined;
518
+ showLogo?: boolean | undefined;
519
+ showLocation?: boolean | undefined;
520
+ showWebsite?: boolean | undefined;
521
+ showBio?: boolean | undefined;
522
+ showSocialLinks?: boolean | undefined;
523
+ }>;
524
+ declare const digitalConfigSchema: z.ZodObject<{
525
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
526
+ accentColor: z.ZodString;
527
+ primaryColor: z.ZodOptional<z.ZodString>;
528
+ secondaryColor: z.ZodOptional<z.ZodString>;
529
+ textColor: z.ZodOptional<z.ZodString>;
530
+ fontKey: z.ZodString;
531
+ showAvatar: z.ZodBoolean;
532
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
533
+ visibility: z.ZodOptional<z.ZodObject<{
534
+ showName: z.ZodOptional<z.ZodBoolean>;
535
+ showPosition: z.ZodOptional<z.ZodBoolean>;
536
+ showCompany: z.ZodOptional<z.ZodBoolean>;
537
+ showEmail: z.ZodOptional<z.ZodBoolean>;
538
+ showPhone: z.ZodOptional<z.ZodBoolean>;
539
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
540
+ showLocation: z.ZodOptional<z.ZodBoolean>;
541
+ showBio: z.ZodOptional<z.ZodBoolean>;
542
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
543
+ showLogo: z.ZodOptional<z.ZodBoolean>;
544
+ }, "strip", z.ZodTypeAny, {
545
+ showName?: boolean | undefined;
546
+ showPosition?: boolean | undefined;
547
+ showEmail?: boolean | undefined;
548
+ showPhone?: boolean | undefined;
549
+ showCompany?: boolean | undefined;
550
+ showLogo?: boolean | undefined;
551
+ showLocation?: boolean | undefined;
552
+ showWebsite?: boolean | undefined;
553
+ showBio?: boolean | undefined;
554
+ showSocialLinks?: boolean | undefined;
555
+ }, {
556
+ showName?: boolean | undefined;
557
+ showPosition?: boolean | undefined;
558
+ showEmail?: boolean | undefined;
559
+ showPhone?: boolean | undefined;
560
+ showCompany?: boolean | undefined;
561
+ showLogo?: boolean | undefined;
562
+ showLocation?: boolean | undefined;
563
+ showWebsite?: boolean | undefined;
564
+ showBio?: boolean | undefined;
565
+ showSocialLinks?: boolean | undefined;
566
+ }>>;
567
+ socialOverrides: z.ZodOptional<z.ZodObject<{
568
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
569
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
570
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
571
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
572
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
573
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
574
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ facebook?: string | undefined;
577
+ linkedin?: string | undefined;
578
+ instagram?: string | undefined;
579
+ youtube?: string | undefined;
580
+ tiktok?: string | undefined;
581
+ customUrl?: string | undefined;
582
+ customUrlLabel?: string | undefined;
583
+ }, {
584
+ facebook?: string | undefined;
585
+ linkedin?: string | undefined;
586
+ instagram?: string | undefined;
587
+ youtube?: string | undefined;
588
+ tiktok?: string | undefined;
589
+ customUrl?: string | undefined;
590
+ customUrlLabel?: string | undefined;
591
+ }>>;
592
+ }, "strip", z.ZodTypeAny, {
593
+ templateId: "minimal" | "bold" | "card";
594
+ accentColor: string;
595
+ fontKey: string;
596
+ showAvatar: boolean;
597
+ primaryColor?: string | undefined;
598
+ secondaryColor?: string | undefined;
599
+ textColor?: string | undefined;
600
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
601
+ visibility?: {
602
+ showName?: boolean | undefined;
603
+ showPosition?: boolean | undefined;
604
+ showEmail?: boolean | undefined;
605
+ showPhone?: boolean | undefined;
606
+ showCompany?: boolean | undefined;
607
+ showLogo?: boolean | undefined;
608
+ showLocation?: boolean | undefined;
609
+ showWebsite?: boolean | undefined;
610
+ showBio?: boolean | undefined;
611
+ showSocialLinks?: boolean | undefined;
612
+ } | undefined;
613
+ socialOverrides?: {
614
+ facebook?: string | undefined;
615
+ linkedin?: string | undefined;
616
+ instagram?: string | undefined;
617
+ youtube?: string | undefined;
618
+ tiktok?: string | undefined;
619
+ customUrl?: string | undefined;
620
+ customUrlLabel?: string | undefined;
621
+ } | undefined;
622
+ }, {
623
+ templateId: "minimal" | "bold" | "card";
624
+ accentColor: string;
625
+ fontKey: string;
626
+ showAvatar: boolean;
627
+ primaryColor?: string | undefined;
628
+ secondaryColor?: string | undefined;
629
+ textColor?: string | undefined;
630
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
631
+ visibility?: {
632
+ showName?: boolean | undefined;
633
+ showPosition?: boolean | undefined;
634
+ showEmail?: boolean | undefined;
635
+ showPhone?: boolean | undefined;
636
+ showCompany?: boolean | undefined;
637
+ showLogo?: boolean | undefined;
638
+ showLocation?: boolean | undefined;
639
+ showWebsite?: boolean | undefined;
640
+ showBio?: boolean | undefined;
641
+ showSocialLinks?: boolean | undefined;
642
+ } | undefined;
643
+ socialOverrides?: {
644
+ facebook?: string | undefined;
645
+ linkedin?: string | undefined;
646
+ instagram?: string | undefined;
647
+ youtube?: string | undefined;
648
+ tiktok?: string | undefined;
649
+ customUrl?: string | undefined;
650
+ customUrlLabel?: string | undefined;
651
+ } | undefined;
652
+ }>;
653
+ declare const configurationCreateSchema: z.ZodObject<{
654
+ sessionId: z.ZodString;
655
+ userData: z.ZodObject<{
656
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
657
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
658
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
659
+ email: z.ZodString;
660
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
661
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
662
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
663
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
664
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
665
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
666
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
667
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
668
+ socialLinks: z.ZodOptional<z.ZodObject<{
669
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
670
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
671
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
672
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
673
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
674
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
675
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
676
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
677
+ }, "strip", z.ZodTypeAny, {
678
+ facebook: string;
679
+ linkedin: string;
680
+ instagram: string;
681
+ x: string;
682
+ youtube: string;
683
+ tiktok: string;
684
+ customUrl: string;
685
+ customUrlLabel: string;
686
+ }, {
687
+ facebook?: string | undefined;
688
+ linkedin?: string | undefined;
689
+ instagram?: string | undefined;
690
+ x?: string | undefined;
691
+ youtube?: string | undefined;
692
+ tiktok?: string | undefined;
693
+ customUrl?: string | undefined;
694
+ customUrlLabel?: string | undefined;
695
+ }>>;
696
+ }, "strip", z.ZodTypeAny, {
697
+ email: string;
698
+ firstName?: string | undefined;
699
+ lastName?: string | undefined;
700
+ position?: string | undefined;
701
+ phone?: string | undefined;
702
+ phoneCountryCode?: string | undefined;
703
+ location?: string | undefined;
704
+ company?: string | undefined;
705
+ website?: string | undefined;
706
+ bio?: string | undefined;
707
+ profilePhotoUrl?: string | undefined;
708
+ companyLogoUrl?: string | undefined;
709
+ socialLinks?: {
710
+ facebook: string;
711
+ linkedin: string;
712
+ instagram: string;
713
+ x: string;
714
+ youtube: string;
715
+ tiktok: string;
716
+ customUrl: string;
717
+ customUrlLabel: string;
718
+ } | undefined;
719
+ }, {
720
+ email: string;
721
+ firstName?: string | undefined;
722
+ lastName?: string | undefined;
723
+ position?: string | undefined;
724
+ phone?: string | undefined;
725
+ phoneCountryCode?: string | undefined;
726
+ location?: string | undefined;
727
+ company?: string | undefined;
728
+ website?: string | undefined;
729
+ bio?: string | undefined;
730
+ profilePhotoUrl?: string | undefined;
731
+ companyLogoUrl?: string | undefined;
732
+ socialLinks?: {
733
+ facebook?: string | undefined;
734
+ linkedin?: string | undefined;
735
+ instagram?: string | undefined;
736
+ x?: string | undefined;
737
+ youtube?: string | undefined;
738
+ tiktok?: string | undefined;
739
+ customUrl?: string | undefined;
740
+ customUrlLabel?: string | undefined;
741
+ } | undefined;
742
+ }>;
743
+ physicalConfig: z.ZodEffects<z.ZodObject<{
744
+ material: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
745
+ colour: z.ZodOptional<z.ZodString>;
746
+ comboId: z.ZodEnum<["A1", "A2", "B1", "B2", "C1", "C2", "D1", "D2", "E1", "E2"]>;
747
+ frontElements: z.ZodObject<{
748
+ showName: z.ZodBoolean;
749
+ showPosition: z.ZodBoolean;
750
+ showEmail: z.ZodBoolean;
751
+ showPhone: z.ZodBoolean;
752
+ showCompany: z.ZodBoolean;
753
+ showLogo: z.ZodBoolean;
754
+ showQr: z.ZodBoolean;
755
+ showPhoto: z.ZodBoolean;
756
+ }, "strip", z.ZodTypeAny, {
757
+ showName: boolean;
758
+ showPosition: boolean;
759
+ showEmail: boolean;
760
+ showPhone: boolean;
761
+ showCompany: boolean;
762
+ showLogo: boolean;
763
+ showQr: boolean;
764
+ showPhoto: boolean;
765
+ }, {
766
+ showName: boolean;
767
+ showPosition: boolean;
768
+ showEmail: boolean;
769
+ showPhone: boolean;
770
+ showCompany: boolean;
771
+ showLogo: boolean;
772
+ showQr: boolean;
773
+ showPhoto: boolean;
774
+ }>;
775
+ backElements: z.ZodObject<{
776
+ showName: z.ZodBoolean;
777
+ showPosition: z.ZodBoolean;
778
+ showEmail: z.ZodBoolean;
779
+ showPhone: z.ZodBoolean;
780
+ showCompany: z.ZodBoolean;
781
+ showLogo: z.ZodBoolean;
782
+ showQr: z.ZodBoolean;
783
+ showPhoto: z.ZodBoolean;
784
+ }, "strip", z.ZodTypeAny, {
785
+ showName: boolean;
786
+ showPosition: boolean;
787
+ showEmail: boolean;
788
+ showPhone: boolean;
789
+ showCompany: boolean;
790
+ showLogo: boolean;
791
+ showQr: boolean;
792
+ showPhoto: boolean;
793
+ }, {
794
+ showName: boolean;
795
+ showPosition: boolean;
796
+ showEmail: boolean;
797
+ showPhone: boolean;
798
+ showCompany: boolean;
799
+ showLogo: boolean;
800
+ showQr: boolean;
801
+ showPhoto: boolean;
802
+ }>;
803
+ qrTargetUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
804
+ customDesignRequest: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
805
+ frontContactToggles: z.ZodOptional<z.ZodObject<{
806
+ showEmail: z.ZodOptional<z.ZodBoolean>;
807
+ showPhone: z.ZodOptional<z.ZodBoolean>;
808
+ showLocation: z.ZodOptional<z.ZodBoolean>;
809
+ }, "strip", z.ZodTypeAny, {
810
+ showEmail?: boolean | undefined;
811
+ showPhone?: boolean | undefined;
812
+ showLocation?: boolean | undefined;
813
+ }, {
814
+ showEmail?: boolean | undefined;
815
+ showPhone?: boolean | undefined;
816
+ showLocation?: boolean | undefined;
817
+ }>>;
818
+ backContactToggles: z.ZodOptional<z.ZodObject<{
819
+ showEmail: z.ZodOptional<z.ZodBoolean>;
820
+ showPhone: z.ZodOptional<z.ZodBoolean>;
821
+ showLocation: z.ZodOptional<z.ZodBoolean>;
822
+ }, "strip", z.ZodTypeAny, {
823
+ showEmail?: boolean | undefined;
824
+ showPhone?: boolean | undefined;
825
+ showLocation?: boolean | undefined;
826
+ }, {
827
+ showEmail?: boolean | undefined;
828
+ showPhone?: boolean | undefined;
829
+ showLocation?: boolean | undefined;
830
+ }>>;
831
+ contentOverrides: z.ZodOptional<z.ZodObject<{
832
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
833
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
834
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
835
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
836
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
837
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
838
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
839
+ }, "strip", z.ZodTypeAny, {
840
+ position?: string | undefined;
841
+ email?: string | undefined;
842
+ phone?: string | undefined;
843
+ phoneCountryCode?: string | undefined;
844
+ location?: string | undefined;
845
+ company?: string | undefined;
846
+ displayName?: string | undefined;
847
+ }, {
848
+ position?: string | undefined;
849
+ email?: string | undefined;
850
+ phone?: string | undefined;
851
+ phoneCountryCode?: string | undefined;
852
+ location?: string | undefined;
853
+ company?: string | undefined;
854
+ displayName?: string | undefined;
855
+ }>>;
856
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
857
+ }, "strip", z.ZodTypeAny, {
858
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
859
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
860
+ frontElements: {
861
+ showName: boolean;
862
+ showPosition: boolean;
863
+ showEmail: boolean;
864
+ showPhone: boolean;
865
+ showCompany: boolean;
866
+ showLogo: boolean;
867
+ showQr: boolean;
868
+ showPhoto: boolean;
869
+ };
870
+ backElements: {
871
+ showName: boolean;
872
+ showPosition: boolean;
873
+ showEmail: boolean;
874
+ showPhone: boolean;
875
+ showCompany: boolean;
876
+ showLogo: boolean;
877
+ showQr: boolean;
878
+ showPhoto: boolean;
879
+ };
880
+ companyLogoUrl?: string | undefined;
881
+ colour?: string | undefined;
882
+ qrTargetUrl?: string | undefined;
883
+ customDesignRequest?: string | undefined;
884
+ frontContactToggles?: {
885
+ showEmail?: boolean | undefined;
886
+ showPhone?: boolean | undefined;
887
+ showLocation?: boolean | undefined;
888
+ } | undefined;
889
+ backContactToggles?: {
890
+ showEmail?: boolean | undefined;
891
+ showPhone?: boolean | undefined;
892
+ showLocation?: boolean | undefined;
893
+ } | undefined;
894
+ contentOverrides?: {
895
+ position?: string | undefined;
896
+ email?: string | undefined;
897
+ phone?: string | undefined;
898
+ phoneCountryCode?: string | undefined;
899
+ location?: string | undefined;
900
+ company?: string | undefined;
901
+ displayName?: string | undefined;
902
+ } | undefined;
903
+ }, {
904
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
905
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
906
+ frontElements: {
907
+ showName: boolean;
908
+ showPosition: boolean;
909
+ showEmail: boolean;
910
+ showPhone: boolean;
911
+ showCompany: boolean;
912
+ showLogo: boolean;
913
+ showQr: boolean;
914
+ showPhoto: boolean;
915
+ };
916
+ backElements: {
917
+ showName: boolean;
918
+ showPosition: boolean;
919
+ showEmail: boolean;
920
+ showPhone: boolean;
921
+ showCompany: boolean;
922
+ showLogo: boolean;
923
+ showQr: boolean;
924
+ showPhoto: boolean;
925
+ };
926
+ companyLogoUrl?: string | undefined;
927
+ colour?: string | undefined;
928
+ qrTargetUrl?: string | undefined;
929
+ customDesignRequest?: string | undefined;
930
+ frontContactToggles?: {
931
+ showEmail?: boolean | undefined;
932
+ showPhone?: boolean | undefined;
933
+ showLocation?: boolean | undefined;
934
+ } | undefined;
935
+ backContactToggles?: {
936
+ showEmail?: boolean | undefined;
937
+ showPhone?: boolean | undefined;
938
+ showLocation?: boolean | undefined;
939
+ } | undefined;
940
+ contentOverrides?: {
941
+ position?: string | undefined;
942
+ email?: string | undefined;
943
+ phone?: string | undefined;
944
+ phoneCountryCode?: string | undefined;
945
+ location?: string | undefined;
946
+ company?: string | undefined;
947
+ displayName?: string | undefined;
948
+ } | undefined;
949
+ }>, {
950
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
951
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
952
+ frontElements: {
953
+ showName: boolean;
954
+ showPosition: boolean;
955
+ showEmail: boolean;
956
+ showPhone: boolean;
957
+ showCompany: boolean;
958
+ showLogo: boolean;
959
+ showQr: boolean;
960
+ showPhoto: boolean;
961
+ };
962
+ backElements: {
963
+ showName: boolean;
964
+ showPosition: boolean;
965
+ showEmail: boolean;
966
+ showPhone: boolean;
967
+ showCompany: boolean;
968
+ showLogo: boolean;
969
+ showQr: boolean;
970
+ showPhoto: boolean;
971
+ };
972
+ companyLogoUrl?: string | undefined;
973
+ colour?: string | undefined;
974
+ qrTargetUrl?: string | undefined;
975
+ customDesignRequest?: string | undefined;
976
+ frontContactToggles?: {
977
+ showEmail?: boolean | undefined;
978
+ showPhone?: boolean | undefined;
979
+ showLocation?: boolean | undefined;
980
+ } | undefined;
981
+ backContactToggles?: {
982
+ showEmail?: boolean | undefined;
983
+ showPhone?: boolean | undefined;
984
+ showLocation?: boolean | undefined;
985
+ } | undefined;
986
+ contentOverrides?: {
987
+ position?: string | undefined;
988
+ email?: string | undefined;
989
+ phone?: string | undefined;
990
+ phoneCountryCode?: string | undefined;
991
+ location?: string | undefined;
992
+ company?: string | undefined;
993
+ displayName?: string | undefined;
994
+ } | undefined;
995
+ }, {
996
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
997
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
998
+ frontElements: {
999
+ showName: boolean;
1000
+ showPosition: boolean;
1001
+ showEmail: boolean;
1002
+ showPhone: boolean;
1003
+ showCompany: boolean;
1004
+ showLogo: boolean;
1005
+ showQr: boolean;
1006
+ showPhoto: boolean;
1007
+ };
1008
+ backElements: {
1009
+ showName: boolean;
1010
+ showPosition: boolean;
1011
+ showEmail: boolean;
1012
+ showPhone: boolean;
1013
+ showCompany: boolean;
1014
+ showLogo: boolean;
1015
+ showQr: boolean;
1016
+ showPhoto: boolean;
1017
+ };
1018
+ companyLogoUrl?: string | undefined;
1019
+ colour?: string | undefined;
1020
+ qrTargetUrl?: string | undefined;
1021
+ customDesignRequest?: string | undefined;
1022
+ frontContactToggles?: {
1023
+ showEmail?: boolean | undefined;
1024
+ showPhone?: boolean | undefined;
1025
+ showLocation?: boolean | undefined;
1026
+ } | undefined;
1027
+ backContactToggles?: {
1028
+ showEmail?: boolean | undefined;
1029
+ showPhone?: boolean | undefined;
1030
+ showLocation?: boolean | undefined;
1031
+ } | undefined;
1032
+ contentOverrides?: {
1033
+ position?: string | undefined;
1034
+ email?: string | undefined;
1035
+ phone?: string | undefined;
1036
+ phoneCountryCode?: string | undefined;
1037
+ location?: string | undefined;
1038
+ company?: string | undefined;
1039
+ displayName?: string | undefined;
1040
+ } | undefined;
1041
+ }>;
1042
+ digitalConfig: z.ZodObject<{
1043
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
1044
+ accentColor: z.ZodString;
1045
+ primaryColor: z.ZodOptional<z.ZodString>;
1046
+ secondaryColor: z.ZodOptional<z.ZodString>;
1047
+ textColor: z.ZodOptional<z.ZodString>;
1048
+ fontKey: z.ZodString;
1049
+ showAvatar: z.ZodBoolean;
1050
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
1051
+ visibility: z.ZodOptional<z.ZodObject<{
1052
+ showName: z.ZodOptional<z.ZodBoolean>;
1053
+ showPosition: z.ZodOptional<z.ZodBoolean>;
1054
+ showCompany: z.ZodOptional<z.ZodBoolean>;
1055
+ showEmail: z.ZodOptional<z.ZodBoolean>;
1056
+ showPhone: z.ZodOptional<z.ZodBoolean>;
1057
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
1058
+ showLocation: z.ZodOptional<z.ZodBoolean>;
1059
+ showBio: z.ZodOptional<z.ZodBoolean>;
1060
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
1061
+ showLogo: z.ZodOptional<z.ZodBoolean>;
1062
+ }, "strip", z.ZodTypeAny, {
1063
+ showName?: boolean | undefined;
1064
+ showPosition?: boolean | undefined;
1065
+ showEmail?: boolean | undefined;
1066
+ showPhone?: boolean | undefined;
1067
+ showCompany?: boolean | undefined;
1068
+ showLogo?: boolean | undefined;
1069
+ showLocation?: boolean | undefined;
1070
+ showWebsite?: boolean | undefined;
1071
+ showBio?: boolean | undefined;
1072
+ showSocialLinks?: boolean | undefined;
1073
+ }, {
1074
+ showName?: boolean | undefined;
1075
+ showPosition?: boolean | undefined;
1076
+ showEmail?: boolean | undefined;
1077
+ showPhone?: boolean | undefined;
1078
+ showCompany?: boolean | undefined;
1079
+ showLogo?: boolean | undefined;
1080
+ showLocation?: boolean | undefined;
1081
+ showWebsite?: boolean | undefined;
1082
+ showBio?: boolean | undefined;
1083
+ showSocialLinks?: boolean | undefined;
1084
+ }>>;
1085
+ socialOverrides: z.ZodOptional<z.ZodObject<{
1086
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1087
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1088
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1089
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1090
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1091
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1092
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1093
+ }, "strip", z.ZodTypeAny, {
1094
+ facebook?: string | undefined;
1095
+ linkedin?: string | undefined;
1096
+ instagram?: string | undefined;
1097
+ youtube?: string | undefined;
1098
+ tiktok?: string | undefined;
1099
+ customUrl?: string | undefined;
1100
+ customUrlLabel?: string | undefined;
1101
+ }, {
1102
+ facebook?: string | undefined;
1103
+ linkedin?: string | undefined;
1104
+ instagram?: string | undefined;
1105
+ youtube?: string | undefined;
1106
+ tiktok?: string | undefined;
1107
+ customUrl?: string | undefined;
1108
+ customUrlLabel?: string | undefined;
1109
+ }>>;
1110
+ }, "strip", z.ZodTypeAny, {
1111
+ templateId: "minimal" | "bold" | "card";
1112
+ accentColor: string;
1113
+ fontKey: string;
1114
+ showAvatar: boolean;
1115
+ primaryColor?: string | undefined;
1116
+ secondaryColor?: string | undefined;
1117
+ textColor?: string | undefined;
1118
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1119
+ visibility?: {
1120
+ showName?: boolean | undefined;
1121
+ showPosition?: boolean | undefined;
1122
+ showEmail?: boolean | undefined;
1123
+ showPhone?: boolean | undefined;
1124
+ showCompany?: boolean | undefined;
1125
+ showLogo?: boolean | undefined;
1126
+ showLocation?: boolean | undefined;
1127
+ showWebsite?: boolean | undefined;
1128
+ showBio?: boolean | undefined;
1129
+ showSocialLinks?: boolean | undefined;
1130
+ } | undefined;
1131
+ socialOverrides?: {
1132
+ facebook?: string | undefined;
1133
+ linkedin?: string | undefined;
1134
+ instagram?: string | undefined;
1135
+ youtube?: string | undefined;
1136
+ tiktok?: string | undefined;
1137
+ customUrl?: string | undefined;
1138
+ customUrlLabel?: string | undefined;
1139
+ } | undefined;
1140
+ }, {
1141
+ templateId: "minimal" | "bold" | "card";
1142
+ accentColor: string;
1143
+ fontKey: string;
1144
+ showAvatar: boolean;
1145
+ primaryColor?: string | undefined;
1146
+ secondaryColor?: string | undefined;
1147
+ textColor?: string | undefined;
1148
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1149
+ visibility?: {
1150
+ showName?: boolean | undefined;
1151
+ showPosition?: boolean | undefined;
1152
+ showEmail?: boolean | undefined;
1153
+ showPhone?: boolean | undefined;
1154
+ showCompany?: boolean | undefined;
1155
+ showLogo?: boolean | undefined;
1156
+ showLocation?: boolean | undefined;
1157
+ showWebsite?: boolean | undefined;
1158
+ showBio?: boolean | undefined;
1159
+ showSocialLinks?: boolean | undefined;
1160
+ } | undefined;
1161
+ socialOverrides?: {
1162
+ facebook?: string | undefined;
1163
+ linkedin?: string | undefined;
1164
+ instagram?: string | undefined;
1165
+ youtube?: string | undefined;
1166
+ tiktok?: string | undefined;
1167
+ customUrl?: string | undefined;
1168
+ customUrlLabel?: string | undefined;
1169
+ } | undefined;
1170
+ }>;
1171
+ quantity: z.ZodDefault<z.ZodNumber>;
1172
+ existingProfileId: z.ZodOptional<z.ZodString>;
1173
+ }, "strip", z.ZodTypeAny, {
1174
+ sessionId: string;
1175
+ userData: {
1176
+ email: string;
1177
+ firstName?: string | undefined;
1178
+ lastName?: string | undefined;
1179
+ position?: string | undefined;
1180
+ phone?: string | undefined;
1181
+ phoneCountryCode?: string | undefined;
1182
+ location?: string | undefined;
1183
+ company?: string | undefined;
1184
+ website?: string | undefined;
1185
+ bio?: string | undefined;
1186
+ profilePhotoUrl?: string | undefined;
1187
+ companyLogoUrl?: string | undefined;
1188
+ socialLinks?: {
1189
+ facebook: string;
1190
+ linkedin: string;
1191
+ instagram: string;
1192
+ x: string;
1193
+ youtube: string;
1194
+ tiktok: string;
1195
+ customUrl: string;
1196
+ customUrlLabel: string;
1197
+ } | undefined;
1198
+ };
1199
+ physicalConfig: {
1200
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1201
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1202
+ frontElements: {
1203
+ showName: boolean;
1204
+ showPosition: boolean;
1205
+ showEmail: boolean;
1206
+ showPhone: boolean;
1207
+ showCompany: boolean;
1208
+ showLogo: boolean;
1209
+ showQr: boolean;
1210
+ showPhoto: boolean;
1211
+ };
1212
+ backElements: {
1213
+ showName: boolean;
1214
+ showPosition: boolean;
1215
+ showEmail: boolean;
1216
+ showPhone: boolean;
1217
+ showCompany: boolean;
1218
+ showLogo: boolean;
1219
+ showQr: boolean;
1220
+ showPhoto: boolean;
1221
+ };
1222
+ companyLogoUrl?: string | undefined;
1223
+ colour?: string | undefined;
1224
+ qrTargetUrl?: string | undefined;
1225
+ customDesignRequest?: string | undefined;
1226
+ frontContactToggles?: {
1227
+ showEmail?: boolean | undefined;
1228
+ showPhone?: boolean | undefined;
1229
+ showLocation?: boolean | undefined;
1230
+ } | undefined;
1231
+ backContactToggles?: {
1232
+ showEmail?: boolean | undefined;
1233
+ showPhone?: boolean | undefined;
1234
+ showLocation?: boolean | undefined;
1235
+ } | undefined;
1236
+ contentOverrides?: {
1237
+ position?: string | undefined;
1238
+ email?: string | undefined;
1239
+ phone?: string | undefined;
1240
+ phoneCountryCode?: string | undefined;
1241
+ location?: string | undefined;
1242
+ company?: string | undefined;
1243
+ displayName?: string | undefined;
1244
+ } | undefined;
1245
+ };
1246
+ digitalConfig: {
1247
+ templateId: "minimal" | "bold" | "card";
1248
+ accentColor: string;
1249
+ fontKey: string;
1250
+ showAvatar: boolean;
1251
+ primaryColor?: string | undefined;
1252
+ secondaryColor?: string | undefined;
1253
+ textColor?: string | undefined;
1254
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1255
+ visibility?: {
1256
+ showName?: boolean | undefined;
1257
+ showPosition?: boolean | undefined;
1258
+ showEmail?: boolean | undefined;
1259
+ showPhone?: boolean | undefined;
1260
+ showCompany?: boolean | undefined;
1261
+ showLogo?: boolean | undefined;
1262
+ showLocation?: boolean | undefined;
1263
+ showWebsite?: boolean | undefined;
1264
+ showBio?: boolean | undefined;
1265
+ showSocialLinks?: boolean | undefined;
1266
+ } | undefined;
1267
+ socialOverrides?: {
1268
+ facebook?: string | undefined;
1269
+ linkedin?: string | undefined;
1270
+ instagram?: string | undefined;
1271
+ youtube?: string | undefined;
1272
+ tiktok?: string | undefined;
1273
+ customUrl?: string | undefined;
1274
+ customUrlLabel?: string | undefined;
1275
+ } | undefined;
1276
+ };
1277
+ quantity: number;
1278
+ existingProfileId?: string | undefined;
1279
+ }, {
1280
+ sessionId: string;
1281
+ userData: {
1282
+ email: string;
1283
+ firstName?: string | undefined;
1284
+ lastName?: string | undefined;
1285
+ position?: string | undefined;
1286
+ phone?: string | undefined;
1287
+ phoneCountryCode?: string | undefined;
1288
+ location?: string | undefined;
1289
+ company?: string | undefined;
1290
+ website?: string | undefined;
1291
+ bio?: string | undefined;
1292
+ profilePhotoUrl?: string | undefined;
1293
+ companyLogoUrl?: string | undefined;
1294
+ socialLinks?: {
1295
+ facebook?: string | undefined;
1296
+ linkedin?: string | undefined;
1297
+ instagram?: string | undefined;
1298
+ x?: string | undefined;
1299
+ youtube?: string | undefined;
1300
+ tiktok?: string | undefined;
1301
+ customUrl?: string | undefined;
1302
+ customUrlLabel?: string | undefined;
1303
+ } | undefined;
1304
+ };
1305
+ physicalConfig: {
1306
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1307
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1308
+ frontElements: {
1309
+ showName: boolean;
1310
+ showPosition: boolean;
1311
+ showEmail: boolean;
1312
+ showPhone: boolean;
1313
+ showCompany: boolean;
1314
+ showLogo: boolean;
1315
+ showQr: boolean;
1316
+ showPhoto: boolean;
1317
+ };
1318
+ backElements: {
1319
+ showName: boolean;
1320
+ showPosition: boolean;
1321
+ showEmail: boolean;
1322
+ showPhone: boolean;
1323
+ showCompany: boolean;
1324
+ showLogo: boolean;
1325
+ showQr: boolean;
1326
+ showPhoto: boolean;
1327
+ };
1328
+ companyLogoUrl?: string | undefined;
1329
+ colour?: string | undefined;
1330
+ qrTargetUrl?: string | undefined;
1331
+ customDesignRequest?: string | undefined;
1332
+ frontContactToggles?: {
1333
+ showEmail?: boolean | undefined;
1334
+ showPhone?: boolean | undefined;
1335
+ showLocation?: boolean | undefined;
1336
+ } | undefined;
1337
+ backContactToggles?: {
1338
+ showEmail?: boolean | undefined;
1339
+ showPhone?: boolean | undefined;
1340
+ showLocation?: boolean | undefined;
1341
+ } | undefined;
1342
+ contentOverrides?: {
1343
+ position?: string | undefined;
1344
+ email?: string | undefined;
1345
+ phone?: string | undefined;
1346
+ phoneCountryCode?: string | undefined;
1347
+ location?: string | undefined;
1348
+ company?: string | undefined;
1349
+ displayName?: string | undefined;
1350
+ } | undefined;
1351
+ };
1352
+ digitalConfig: {
1353
+ templateId: "minimal" | "bold" | "card";
1354
+ accentColor: string;
1355
+ fontKey: string;
1356
+ showAvatar: boolean;
1357
+ primaryColor?: string | undefined;
1358
+ secondaryColor?: string | undefined;
1359
+ textColor?: string | undefined;
1360
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1361
+ visibility?: {
1362
+ showName?: boolean | undefined;
1363
+ showPosition?: boolean | undefined;
1364
+ showEmail?: boolean | undefined;
1365
+ showPhone?: boolean | undefined;
1366
+ showCompany?: boolean | undefined;
1367
+ showLogo?: boolean | undefined;
1368
+ showLocation?: boolean | undefined;
1369
+ showWebsite?: boolean | undefined;
1370
+ showBio?: boolean | undefined;
1371
+ showSocialLinks?: boolean | undefined;
1372
+ } | undefined;
1373
+ socialOverrides?: {
1374
+ facebook?: string | undefined;
1375
+ linkedin?: string | undefined;
1376
+ instagram?: string | undefined;
1377
+ youtube?: string | undefined;
1378
+ tiktok?: string | undefined;
1379
+ customUrl?: string | undefined;
1380
+ customUrlLabel?: string | undefined;
1381
+ } | undefined;
1382
+ };
1383
+ quantity?: number | undefined;
1384
+ existingProfileId?: string | undefined;
1385
+ }>;
1386
+ declare const configurationUpdateSchema: z.ZodObject<{
1387
+ userData: z.ZodOptional<z.ZodObject<{
1388
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1389
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1390
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1391
+ email: z.ZodString;
1392
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1393
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1394
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1395
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1396
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
1397
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1398
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1399
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1400
+ socialLinks: z.ZodOptional<z.ZodObject<{
1401
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1402
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1403
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1404
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1405
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1406
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1407
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1408
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ facebook: string;
1411
+ linkedin: string;
1412
+ instagram: string;
1413
+ x: string;
1414
+ youtube: string;
1415
+ tiktok: string;
1416
+ customUrl: string;
1417
+ customUrlLabel: string;
1418
+ }, {
1419
+ facebook?: string | undefined;
1420
+ linkedin?: string | undefined;
1421
+ instagram?: string | undefined;
1422
+ x?: string | undefined;
1423
+ youtube?: string | undefined;
1424
+ tiktok?: string | undefined;
1425
+ customUrl?: string | undefined;
1426
+ customUrlLabel?: string | undefined;
1427
+ }>>;
1428
+ }, "strip", z.ZodTypeAny, {
1429
+ email: string;
1430
+ firstName?: string | undefined;
1431
+ lastName?: string | undefined;
1432
+ position?: string | undefined;
1433
+ phone?: string | undefined;
1434
+ phoneCountryCode?: string | undefined;
1435
+ location?: string | undefined;
1436
+ company?: string | undefined;
1437
+ website?: string | undefined;
1438
+ bio?: string | undefined;
1439
+ profilePhotoUrl?: string | undefined;
1440
+ companyLogoUrl?: string | undefined;
1441
+ socialLinks?: {
1442
+ facebook: string;
1443
+ linkedin: string;
1444
+ instagram: string;
1445
+ x: string;
1446
+ youtube: string;
1447
+ tiktok: string;
1448
+ customUrl: string;
1449
+ customUrlLabel: string;
1450
+ } | undefined;
1451
+ }, {
1452
+ email: string;
1453
+ firstName?: string | undefined;
1454
+ lastName?: string | undefined;
1455
+ position?: string | undefined;
1456
+ phone?: string | undefined;
1457
+ phoneCountryCode?: string | undefined;
1458
+ location?: string | undefined;
1459
+ company?: string | undefined;
1460
+ website?: string | undefined;
1461
+ bio?: string | undefined;
1462
+ profilePhotoUrl?: string | undefined;
1463
+ companyLogoUrl?: string | undefined;
1464
+ socialLinks?: {
1465
+ facebook?: string | undefined;
1466
+ linkedin?: string | undefined;
1467
+ instagram?: string | undefined;
1468
+ x?: string | undefined;
1469
+ youtube?: string | undefined;
1470
+ tiktok?: string | undefined;
1471
+ customUrl?: string | undefined;
1472
+ customUrlLabel?: string | undefined;
1473
+ } | undefined;
1474
+ }>>;
1475
+ physicalConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1476
+ material: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
1477
+ colour: z.ZodOptional<z.ZodString>;
1478
+ comboId: z.ZodEnum<["A1", "A2", "B1", "B2", "C1", "C2", "D1", "D2", "E1", "E2"]>;
1479
+ frontElements: z.ZodObject<{
1480
+ showName: z.ZodBoolean;
1481
+ showPosition: z.ZodBoolean;
1482
+ showEmail: z.ZodBoolean;
1483
+ showPhone: z.ZodBoolean;
1484
+ showCompany: z.ZodBoolean;
1485
+ showLogo: z.ZodBoolean;
1486
+ showQr: z.ZodBoolean;
1487
+ showPhoto: z.ZodBoolean;
1488
+ }, "strip", z.ZodTypeAny, {
1489
+ showName: boolean;
1490
+ showPosition: boolean;
1491
+ showEmail: boolean;
1492
+ showPhone: boolean;
1493
+ showCompany: boolean;
1494
+ showLogo: boolean;
1495
+ showQr: boolean;
1496
+ showPhoto: boolean;
1497
+ }, {
1498
+ showName: boolean;
1499
+ showPosition: boolean;
1500
+ showEmail: boolean;
1501
+ showPhone: boolean;
1502
+ showCompany: boolean;
1503
+ showLogo: boolean;
1504
+ showQr: boolean;
1505
+ showPhoto: boolean;
1506
+ }>;
1507
+ backElements: z.ZodObject<{
1508
+ showName: z.ZodBoolean;
1509
+ showPosition: z.ZodBoolean;
1510
+ showEmail: z.ZodBoolean;
1511
+ showPhone: z.ZodBoolean;
1512
+ showCompany: z.ZodBoolean;
1513
+ showLogo: z.ZodBoolean;
1514
+ showQr: z.ZodBoolean;
1515
+ showPhoto: z.ZodBoolean;
1516
+ }, "strip", z.ZodTypeAny, {
1517
+ showName: boolean;
1518
+ showPosition: boolean;
1519
+ showEmail: boolean;
1520
+ showPhone: boolean;
1521
+ showCompany: boolean;
1522
+ showLogo: boolean;
1523
+ showQr: boolean;
1524
+ showPhoto: boolean;
1525
+ }, {
1526
+ showName: boolean;
1527
+ showPosition: boolean;
1528
+ showEmail: boolean;
1529
+ showPhone: boolean;
1530
+ showCompany: boolean;
1531
+ showLogo: boolean;
1532
+ showQr: boolean;
1533
+ showPhoto: boolean;
1534
+ }>;
1535
+ qrTargetUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1536
+ customDesignRequest: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1537
+ frontContactToggles: z.ZodOptional<z.ZodObject<{
1538
+ showEmail: z.ZodOptional<z.ZodBoolean>;
1539
+ showPhone: z.ZodOptional<z.ZodBoolean>;
1540
+ showLocation: z.ZodOptional<z.ZodBoolean>;
1541
+ }, "strip", z.ZodTypeAny, {
1542
+ showEmail?: boolean | undefined;
1543
+ showPhone?: boolean | undefined;
1544
+ showLocation?: boolean | undefined;
1545
+ }, {
1546
+ showEmail?: boolean | undefined;
1547
+ showPhone?: boolean | undefined;
1548
+ showLocation?: boolean | undefined;
1549
+ }>>;
1550
+ backContactToggles: z.ZodOptional<z.ZodObject<{
1551
+ showEmail: z.ZodOptional<z.ZodBoolean>;
1552
+ showPhone: z.ZodOptional<z.ZodBoolean>;
1553
+ showLocation: z.ZodOptional<z.ZodBoolean>;
1554
+ }, "strip", z.ZodTypeAny, {
1555
+ showEmail?: boolean | undefined;
1556
+ showPhone?: boolean | undefined;
1557
+ showLocation?: boolean | undefined;
1558
+ }, {
1559
+ showEmail?: boolean | undefined;
1560
+ showPhone?: boolean | undefined;
1561
+ showLocation?: boolean | undefined;
1562
+ }>>;
1563
+ contentOverrides: z.ZodOptional<z.ZodObject<{
1564
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1565
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1566
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1567
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1568
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1569
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1570
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1571
+ }, "strip", z.ZodTypeAny, {
1572
+ position?: string | undefined;
1573
+ email?: string | undefined;
1574
+ phone?: string | undefined;
1575
+ phoneCountryCode?: string | undefined;
1576
+ location?: string | undefined;
1577
+ company?: string | undefined;
1578
+ displayName?: string | undefined;
1579
+ }, {
1580
+ position?: string | undefined;
1581
+ email?: string | undefined;
1582
+ phone?: string | undefined;
1583
+ phoneCountryCode?: string | undefined;
1584
+ location?: string | undefined;
1585
+ company?: string | undefined;
1586
+ displayName?: string | undefined;
1587
+ }>>;
1588
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1589
+ }, "strip", z.ZodTypeAny, {
1590
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1591
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1592
+ frontElements: {
1593
+ showName: boolean;
1594
+ showPosition: boolean;
1595
+ showEmail: boolean;
1596
+ showPhone: boolean;
1597
+ showCompany: boolean;
1598
+ showLogo: boolean;
1599
+ showQr: boolean;
1600
+ showPhoto: boolean;
1601
+ };
1602
+ backElements: {
1603
+ showName: boolean;
1604
+ showPosition: boolean;
1605
+ showEmail: boolean;
1606
+ showPhone: boolean;
1607
+ showCompany: boolean;
1608
+ showLogo: boolean;
1609
+ showQr: boolean;
1610
+ showPhoto: boolean;
1611
+ };
1612
+ companyLogoUrl?: string | undefined;
1613
+ colour?: string | undefined;
1614
+ qrTargetUrl?: string | undefined;
1615
+ customDesignRequest?: string | undefined;
1616
+ frontContactToggles?: {
1617
+ showEmail?: boolean | undefined;
1618
+ showPhone?: boolean | undefined;
1619
+ showLocation?: boolean | undefined;
1620
+ } | undefined;
1621
+ backContactToggles?: {
1622
+ showEmail?: boolean | undefined;
1623
+ showPhone?: boolean | undefined;
1624
+ showLocation?: boolean | undefined;
1625
+ } | undefined;
1626
+ contentOverrides?: {
1627
+ position?: string | undefined;
1628
+ email?: string | undefined;
1629
+ phone?: string | undefined;
1630
+ phoneCountryCode?: string | undefined;
1631
+ location?: string | undefined;
1632
+ company?: string | undefined;
1633
+ displayName?: string | undefined;
1634
+ } | undefined;
1635
+ }, {
1636
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1637
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1638
+ frontElements: {
1639
+ showName: boolean;
1640
+ showPosition: boolean;
1641
+ showEmail: boolean;
1642
+ showPhone: boolean;
1643
+ showCompany: boolean;
1644
+ showLogo: boolean;
1645
+ showQr: boolean;
1646
+ showPhoto: boolean;
1647
+ };
1648
+ backElements: {
1649
+ showName: boolean;
1650
+ showPosition: boolean;
1651
+ showEmail: boolean;
1652
+ showPhone: boolean;
1653
+ showCompany: boolean;
1654
+ showLogo: boolean;
1655
+ showQr: boolean;
1656
+ showPhoto: boolean;
1657
+ };
1658
+ companyLogoUrl?: string | undefined;
1659
+ colour?: string | undefined;
1660
+ qrTargetUrl?: string | undefined;
1661
+ customDesignRequest?: string | undefined;
1662
+ frontContactToggles?: {
1663
+ showEmail?: boolean | undefined;
1664
+ showPhone?: boolean | undefined;
1665
+ showLocation?: boolean | undefined;
1666
+ } | undefined;
1667
+ backContactToggles?: {
1668
+ showEmail?: boolean | undefined;
1669
+ showPhone?: boolean | undefined;
1670
+ showLocation?: boolean | undefined;
1671
+ } | undefined;
1672
+ contentOverrides?: {
1673
+ position?: string | undefined;
1674
+ email?: string | undefined;
1675
+ phone?: string | undefined;
1676
+ phoneCountryCode?: string | undefined;
1677
+ location?: string | undefined;
1678
+ company?: string | undefined;
1679
+ displayName?: string | undefined;
1680
+ } | undefined;
1681
+ }>, {
1682
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1683
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1684
+ frontElements: {
1685
+ showName: boolean;
1686
+ showPosition: boolean;
1687
+ showEmail: boolean;
1688
+ showPhone: boolean;
1689
+ showCompany: boolean;
1690
+ showLogo: boolean;
1691
+ showQr: boolean;
1692
+ showPhoto: boolean;
1693
+ };
1694
+ backElements: {
1695
+ showName: boolean;
1696
+ showPosition: boolean;
1697
+ showEmail: boolean;
1698
+ showPhone: boolean;
1699
+ showCompany: boolean;
1700
+ showLogo: boolean;
1701
+ showQr: boolean;
1702
+ showPhoto: boolean;
1703
+ };
1704
+ companyLogoUrl?: string | undefined;
1705
+ colour?: string | undefined;
1706
+ qrTargetUrl?: string | undefined;
1707
+ customDesignRequest?: string | undefined;
1708
+ frontContactToggles?: {
1709
+ showEmail?: boolean | undefined;
1710
+ showPhone?: boolean | undefined;
1711
+ showLocation?: boolean | undefined;
1712
+ } | undefined;
1713
+ backContactToggles?: {
1714
+ showEmail?: boolean | undefined;
1715
+ showPhone?: boolean | undefined;
1716
+ showLocation?: boolean | undefined;
1717
+ } | undefined;
1718
+ contentOverrides?: {
1719
+ position?: string | undefined;
1720
+ email?: string | undefined;
1721
+ phone?: string | undefined;
1722
+ phoneCountryCode?: string | undefined;
1723
+ location?: string | undefined;
1724
+ company?: string | undefined;
1725
+ displayName?: string | undefined;
1726
+ } | undefined;
1727
+ }, {
1728
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1729
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1730
+ frontElements: {
1731
+ showName: boolean;
1732
+ showPosition: boolean;
1733
+ showEmail: boolean;
1734
+ showPhone: boolean;
1735
+ showCompany: boolean;
1736
+ showLogo: boolean;
1737
+ showQr: boolean;
1738
+ showPhoto: boolean;
1739
+ };
1740
+ backElements: {
1741
+ showName: boolean;
1742
+ showPosition: boolean;
1743
+ showEmail: boolean;
1744
+ showPhone: boolean;
1745
+ showCompany: boolean;
1746
+ showLogo: boolean;
1747
+ showQr: boolean;
1748
+ showPhoto: boolean;
1749
+ };
1750
+ companyLogoUrl?: string | undefined;
1751
+ colour?: string | undefined;
1752
+ qrTargetUrl?: string | undefined;
1753
+ customDesignRequest?: string | undefined;
1754
+ frontContactToggles?: {
1755
+ showEmail?: boolean | undefined;
1756
+ showPhone?: boolean | undefined;
1757
+ showLocation?: boolean | undefined;
1758
+ } | undefined;
1759
+ backContactToggles?: {
1760
+ showEmail?: boolean | undefined;
1761
+ showPhone?: boolean | undefined;
1762
+ showLocation?: boolean | undefined;
1763
+ } | undefined;
1764
+ contentOverrides?: {
1765
+ position?: string | undefined;
1766
+ email?: string | undefined;
1767
+ phone?: string | undefined;
1768
+ phoneCountryCode?: string | undefined;
1769
+ location?: string | undefined;
1770
+ company?: string | undefined;
1771
+ displayName?: string | undefined;
1772
+ } | undefined;
1773
+ }>>;
1774
+ digitalConfig: z.ZodOptional<z.ZodObject<{
1775
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
1776
+ accentColor: z.ZodString;
1777
+ primaryColor: z.ZodOptional<z.ZodString>;
1778
+ secondaryColor: z.ZodOptional<z.ZodString>;
1779
+ textColor: z.ZodOptional<z.ZodString>;
1780
+ fontKey: z.ZodString;
1781
+ showAvatar: z.ZodBoolean;
1782
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
1783
+ visibility: z.ZodOptional<z.ZodObject<{
1784
+ showName: z.ZodOptional<z.ZodBoolean>;
1785
+ showPosition: z.ZodOptional<z.ZodBoolean>;
1786
+ showCompany: z.ZodOptional<z.ZodBoolean>;
1787
+ showEmail: z.ZodOptional<z.ZodBoolean>;
1788
+ showPhone: z.ZodOptional<z.ZodBoolean>;
1789
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
1790
+ showLocation: z.ZodOptional<z.ZodBoolean>;
1791
+ showBio: z.ZodOptional<z.ZodBoolean>;
1792
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
1793
+ showLogo: z.ZodOptional<z.ZodBoolean>;
1794
+ }, "strip", z.ZodTypeAny, {
1795
+ showName?: boolean | undefined;
1796
+ showPosition?: boolean | undefined;
1797
+ showEmail?: boolean | undefined;
1798
+ showPhone?: boolean | undefined;
1799
+ showCompany?: boolean | undefined;
1800
+ showLogo?: boolean | undefined;
1801
+ showLocation?: boolean | undefined;
1802
+ showWebsite?: boolean | undefined;
1803
+ showBio?: boolean | undefined;
1804
+ showSocialLinks?: boolean | undefined;
1805
+ }, {
1806
+ showName?: boolean | undefined;
1807
+ showPosition?: boolean | undefined;
1808
+ showEmail?: boolean | undefined;
1809
+ showPhone?: boolean | undefined;
1810
+ showCompany?: boolean | undefined;
1811
+ showLogo?: boolean | undefined;
1812
+ showLocation?: boolean | undefined;
1813
+ showWebsite?: boolean | undefined;
1814
+ showBio?: boolean | undefined;
1815
+ showSocialLinks?: boolean | undefined;
1816
+ }>>;
1817
+ socialOverrides: z.ZodOptional<z.ZodObject<{
1818
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1819
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1820
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1821
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1822
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1823
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1824
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
1825
+ }, "strip", z.ZodTypeAny, {
1826
+ facebook?: string | undefined;
1827
+ linkedin?: string | undefined;
1828
+ instagram?: string | undefined;
1829
+ youtube?: string | undefined;
1830
+ tiktok?: string | undefined;
1831
+ customUrl?: string | undefined;
1832
+ customUrlLabel?: string | undefined;
1833
+ }, {
1834
+ facebook?: string | undefined;
1835
+ linkedin?: string | undefined;
1836
+ instagram?: string | undefined;
1837
+ youtube?: string | undefined;
1838
+ tiktok?: string | undefined;
1839
+ customUrl?: string | undefined;
1840
+ customUrlLabel?: string | undefined;
1841
+ }>>;
1842
+ }, "strip", z.ZodTypeAny, {
1843
+ templateId: "minimal" | "bold" | "card";
1844
+ accentColor: string;
1845
+ fontKey: string;
1846
+ showAvatar: boolean;
1847
+ primaryColor?: string | undefined;
1848
+ secondaryColor?: string | undefined;
1849
+ textColor?: string | undefined;
1850
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1851
+ visibility?: {
1852
+ showName?: boolean | undefined;
1853
+ showPosition?: boolean | undefined;
1854
+ showEmail?: boolean | undefined;
1855
+ showPhone?: boolean | undefined;
1856
+ showCompany?: boolean | undefined;
1857
+ showLogo?: boolean | undefined;
1858
+ showLocation?: boolean | undefined;
1859
+ showWebsite?: boolean | undefined;
1860
+ showBio?: boolean | undefined;
1861
+ showSocialLinks?: boolean | undefined;
1862
+ } | undefined;
1863
+ socialOverrides?: {
1864
+ facebook?: string | undefined;
1865
+ linkedin?: string | undefined;
1866
+ instagram?: string | undefined;
1867
+ youtube?: string | undefined;
1868
+ tiktok?: string | undefined;
1869
+ customUrl?: string | undefined;
1870
+ customUrlLabel?: string | undefined;
1871
+ } | undefined;
1872
+ }, {
1873
+ templateId: "minimal" | "bold" | "card";
1874
+ accentColor: string;
1875
+ fontKey: string;
1876
+ showAvatar: boolean;
1877
+ primaryColor?: string | undefined;
1878
+ secondaryColor?: string | undefined;
1879
+ textColor?: string | undefined;
1880
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1881
+ visibility?: {
1882
+ showName?: boolean | undefined;
1883
+ showPosition?: boolean | undefined;
1884
+ showEmail?: boolean | undefined;
1885
+ showPhone?: boolean | undefined;
1886
+ showCompany?: boolean | undefined;
1887
+ showLogo?: boolean | undefined;
1888
+ showLocation?: boolean | undefined;
1889
+ showWebsite?: boolean | undefined;
1890
+ showBio?: boolean | undefined;
1891
+ showSocialLinks?: boolean | undefined;
1892
+ } | undefined;
1893
+ socialOverrides?: {
1894
+ facebook?: string | undefined;
1895
+ linkedin?: string | undefined;
1896
+ instagram?: string | undefined;
1897
+ youtube?: string | undefined;
1898
+ tiktok?: string | undefined;
1899
+ customUrl?: string | undefined;
1900
+ customUrlLabel?: string | undefined;
1901
+ } | undefined;
1902
+ }>>;
1903
+ quantity: z.ZodOptional<z.ZodNumber>;
1904
+ existingProfileId: z.ZodOptional<z.ZodString>;
1905
+ }, "strip", z.ZodTypeAny, {
1906
+ userData?: {
1907
+ email: string;
1908
+ firstName?: string | undefined;
1909
+ lastName?: string | undefined;
1910
+ position?: string | undefined;
1911
+ phone?: string | undefined;
1912
+ phoneCountryCode?: string | undefined;
1913
+ location?: string | undefined;
1914
+ company?: string | undefined;
1915
+ website?: string | undefined;
1916
+ bio?: string | undefined;
1917
+ profilePhotoUrl?: string | undefined;
1918
+ companyLogoUrl?: string | undefined;
1919
+ socialLinks?: {
1920
+ facebook: string;
1921
+ linkedin: string;
1922
+ instagram: string;
1923
+ x: string;
1924
+ youtube: string;
1925
+ tiktok: string;
1926
+ customUrl: string;
1927
+ customUrlLabel: string;
1928
+ } | undefined;
1929
+ } | undefined;
1930
+ physicalConfig?: {
1931
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
1932
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
1933
+ frontElements: {
1934
+ showName: boolean;
1935
+ showPosition: boolean;
1936
+ showEmail: boolean;
1937
+ showPhone: boolean;
1938
+ showCompany: boolean;
1939
+ showLogo: boolean;
1940
+ showQr: boolean;
1941
+ showPhoto: boolean;
1942
+ };
1943
+ backElements: {
1944
+ showName: boolean;
1945
+ showPosition: boolean;
1946
+ showEmail: boolean;
1947
+ showPhone: boolean;
1948
+ showCompany: boolean;
1949
+ showLogo: boolean;
1950
+ showQr: boolean;
1951
+ showPhoto: boolean;
1952
+ };
1953
+ companyLogoUrl?: string | undefined;
1954
+ colour?: string | undefined;
1955
+ qrTargetUrl?: string | undefined;
1956
+ customDesignRequest?: string | undefined;
1957
+ frontContactToggles?: {
1958
+ showEmail?: boolean | undefined;
1959
+ showPhone?: boolean | undefined;
1960
+ showLocation?: boolean | undefined;
1961
+ } | undefined;
1962
+ backContactToggles?: {
1963
+ showEmail?: boolean | undefined;
1964
+ showPhone?: boolean | undefined;
1965
+ showLocation?: boolean | undefined;
1966
+ } | undefined;
1967
+ contentOverrides?: {
1968
+ position?: string | undefined;
1969
+ email?: string | undefined;
1970
+ phone?: string | undefined;
1971
+ phoneCountryCode?: string | undefined;
1972
+ location?: string | undefined;
1973
+ company?: string | undefined;
1974
+ displayName?: string | undefined;
1975
+ } | undefined;
1976
+ } | undefined;
1977
+ digitalConfig?: {
1978
+ templateId: "minimal" | "bold" | "card";
1979
+ accentColor: string;
1980
+ fontKey: string;
1981
+ showAvatar: boolean;
1982
+ primaryColor?: string | undefined;
1983
+ secondaryColor?: string | undefined;
1984
+ textColor?: string | undefined;
1985
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
1986
+ visibility?: {
1987
+ showName?: boolean | undefined;
1988
+ showPosition?: boolean | undefined;
1989
+ showEmail?: boolean | undefined;
1990
+ showPhone?: boolean | undefined;
1991
+ showCompany?: boolean | undefined;
1992
+ showLogo?: boolean | undefined;
1993
+ showLocation?: boolean | undefined;
1994
+ showWebsite?: boolean | undefined;
1995
+ showBio?: boolean | undefined;
1996
+ showSocialLinks?: boolean | undefined;
1997
+ } | undefined;
1998
+ socialOverrides?: {
1999
+ facebook?: string | undefined;
2000
+ linkedin?: string | undefined;
2001
+ instagram?: string | undefined;
2002
+ youtube?: string | undefined;
2003
+ tiktok?: string | undefined;
2004
+ customUrl?: string | undefined;
2005
+ customUrlLabel?: string | undefined;
2006
+ } | undefined;
2007
+ } | undefined;
2008
+ quantity?: number | undefined;
2009
+ existingProfileId?: string | undefined;
2010
+ }, {
2011
+ userData?: {
2012
+ email: string;
2013
+ firstName?: string | undefined;
2014
+ lastName?: string | undefined;
2015
+ position?: string | undefined;
2016
+ phone?: string | undefined;
2017
+ phoneCountryCode?: string | undefined;
2018
+ location?: string | undefined;
2019
+ company?: string | undefined;
2020
+ website?: string | undefined;
2021
+ bio?: string | undefined;
2022
+ profilePhotoUrl?: string | undefined;
2023
+ companyLogoUrl?: string | undefined;
2024
+ socialLinks?: {
2025
+ facebook?: string | undefined;
2026
+ linkedin?: string | undefined;
2027
+ instagram?: string | undefined;
2028
+ x?: string | undefined;
2029
+ youtube?: string | undefined;
2030
+ tiktok?: string | undefined;
2031
+ customUrl?: string | undefined;
2032
+ customUrlLabel?: string | undefined;
2033
+ } | undefined;
2034
+ } | undefined;
2035
+ physicalConfig?: {
2036
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2037
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2038
+ frontElements: {
2039
+ showName: boolean;
2040
+ showPosition: boolean;
2041
+ showEmail: boolean;
2042
+ showPhone: boolean;
2043
+ showCompany: boolean;
2044
+ showLogo: boolean;
2045
+ showQr: boolean;
2046
+ showPhoto: boolean;
2047
+ };
2048
+ backElements: {
2049
+ showName: boolean;
2050
+ showPosition: boolean;
2051
+ showEmail: boolean;
2052
+ showPhone: boolean;
2053
+ showCompany: boolean;
2054
+ showLogo: boolean;
2055
+ showQr: boolean;
2056
+ showPhoto: boolean;
2057
+ };
2058
+ companyLogoUrl?: string | undefined;
2059
+ colour?: string | undefined;
2060
+ qrTargetUrl?: string | undefined;
2061
+ customDesignRequest?: string | undefined;
2062
+ frontContactToggles?: {
2063
+ showEmail?: boolean | undefined;
2064
+ showPhone?: boolean | undefined;
2065
+ showLocation?: boolean | undefined;
2066
+ } | undefined;
2067
+ backContactToggles?: {
2068
+ showEmail?: boolean | undefined;
2069
+ showPhone?: boolean | undefined;
2070
+ showLocation?: boolean | undefined;
2071
+ } | undefined;
2072
+ contentOverrides?: {
2073
+ position?: string | undefined;
2074
+ email?: string | undefined;
2075
+ phone?: string | undefined;
2076
+ phoneCountryCode?: string | undefined;
2077
+ location?: string | undefined;
2078
+ company?: string | undefined;
2079
+ displayName?: string | undefined;
2080
+ } | undefined;
2081
+ } | undefined;
2082
+ digitalConfig?: {
2083
+ templateId: "minimal" | "bold" | "card";
2084
+ accentColor: string;
2085
+ fontKey: string;
2086
+ showAvatar: boolean;
2087
+ primaryColor?: string | undefined;
2088
+ secondaryColor?: string | undefined;
2089
+ textColor?: string | undefined;
2090
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2091
+ visibility?: {
2092
+ showName?: boolean | undefined;
2093
+ showPosition?: boolean | undefined;
2094
+ showEmail?: boolean | undefined;
2095
+ showPhone?: boolean | undefined;
2096
+ showCompany?: boolean | undefined;
2097
+ showLogo?: boolean | undefined;
2098
+ showLocation?: boolean | undefined;
2099
+ showWebsite?: boolean | undefined;
2100
+ showBio?: boolean | undefined;
2101
+ showSocialLinks?: boolean | undefined;
2102
+ } | undefined;
2103
+ socialOverrides?: {
2104
+ facebook?: string | undefined;
2105
+ linkedin?: string | undefined;
2106
+ instagram?: string | undefined;
2107
+ youtube?: string | undefined;
2108
+ tiktok?: string | undefined;
2109
+ customUrl?: string | undefined;
2110
+ customUrlLabel?: string | undefined;
2111
+ } | undefined;
2112
+ } | undefined;
2113
+ quantity?: number | undefined;
2114
+ existingProfileId?: string | undefined;
2115
+ }>;
2116
+ declare const createOrderSchema: z.ZodObject<{
2117
+ configurationId: z.ZodString;
2118
+ discountCode: z.ZodOptional<z.ZodString>;
2119
+ }, "strip", z.ZodTypeAny, {
2120
+ configurationId: string;
2121
+ discountCode?: string | undefined;
2122
+ }, {
2123
+ configurationId: string;
2124
+ discountCode?: string | undefined;
2125
+ }>;
2126
+ declare const cardUpdateSchema: z.ZodObject<{
2127
+ digitalConfigOverride: z.ZodOptional<z.ZodObject<{
2128
+ templateId: z.ZodOptional<z.ZodOptional<z.ZodEnum<["minimal", "bold", "card"]>>>;
2129
+ accentColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2130
+ primaryColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2131
+ secondaryColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2132
+ textColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
2133
+ fontKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2134
+ showAvatar: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
2135
+ avatarMode: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>>>;
2136
+ visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
2137
+ showName: z.ZodOptional<z.ZodBoolean>;
2138
+ showPosition: z.ZodOptional<z.ZodBoolean>;
2139
+ showCompany: z.ZodOptional<z.ZodBoolean>;
2140
+ showEmail: z.ZodOptional<z.ZodBoolean>;
2141
+ showPhone: z.ZodOptional<z.ZodBoolean>;
2142
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
2143
+ showLocation: z.ZodOptional<z.ZodBoolean>;
2144
+ showBio: z.ZodOptional<z.ZodBoolean>;
2145
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
2146
+ showLogo: z.ZodOptional<z.ZodBoolean>;
2147
+ }, "strip", z.ZodTypeAny, {
2148
+ showName?: boolean | undefined;
2149
+ showPosition?: boolean | undefined;
2150
+ showEmail?: boolean | undefined;
2151
+ showPhone?: boolean | undefined;
2152
+ showCompany?: boolean | undefined;
2153
+ showLogo?: boolean | undefined;
2154
+ showLocation?: boolean | undefined;
2155
+ showWebsite?: boolean | undefined;
2156
+ showBio?: boolean | undefined;
2157
+ showSocialLinks?: boolean | undefined;
2158
+ }, {
2159
+ showName?: boolean | undefined;
2160
+ showPosition?: boolean | undefined;
2161
+ showEmail?: boolean | undefined;
2162
+ showPhone?: boolean | undefined;
2163
+ showCompany?: boolean | undefined;
2164
+ showLogo?: boolean | undefined;
2165
+ showLocation?: boolean | undefined;
2166
+ showWebsite?: boolean | undefined;
2167
+ showBio?: boolean | undefined;
2168
+ showSocialLinks?: boolean | undefined;
2169
+ }>>>>;
2170
+ socialOverrides: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
2171
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2172
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2173
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2174
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2175
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2176
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2177
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2178
+ }, "strip", z.ZodTypeAny, {
2179
+ facebook?: string | undefined;
2180
+ linkedin?: string | undefined;
2181
+ instagram?: string | undefined;
2182
+ youtube?: string | undefined;
2183
+ tiktok?: string | undefined;
2184
+ customUrl?: string | undefined;
2185
+ customUrlLabel?: string | undefined;
2186
+ }, {
2187
+ facebook?: string | undefined;
2188
+ linkedin?: string | undefined;
2189
+ instagram?: string | undefined;
2190
+ youtube?: string | undefined;
2191
+ tiktok?: string | undefined;
2192
+ customUrl?: string | undefined;
2193
+ customUrlLabel?: string | undefined;
2194
+ }>>>>;
2195
+ profilePhotoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
2196
+ companyLogoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
2197
+ }, "strip", z.ZodTypeAny, {
2198
+ profilePhotoUrl?: string | undefined;
2199
+ companyLogoUrl?: string | undefined;
2200
+ templateId?: "minimal" | "bold" | "card" | undefined;
2201
+ accentColor?: string | undefined;
2202
+ primaryColor?: string | undefined;
2203
+ secondaryColor?: string | undefined;
2204
+ textColor?: string | undefined;
2205
+ fontKey?: string | undefined;
2206
+ showAvatar?: boolean | undefined;
2207
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2208
+ visibility?: {
2209
+ showName?: boolean | undefined;
2210
+ showPosition?: boolean | undefined;
2211
+ showEmail?: boolean | undefined;
2212
+ showPhone?: boolean | undefined;
2213
+ showCompany?: boolean | undefined;
2214
+ showLogo?: boolean | undefined;
2215
+ showLocation?: boolean | undefined;
2216
+ showWebsite?: boolean | undefined;
2217
+ showBio?: boolean | undefined;
2218
+ showSocialLinks?: boolean | undefined;
2219
+ } | undefined;
2220
+ socialOverrides?: {
2221
+ facebook?: string | undefined;
2222
+ linkedin?: string | undefined;
2223
+ instagram?: string | undefined;
2224
+ youtube?: string | undefined;
2225
+ tiktok?: string | undefined;
2226
+ customUrl?: string | undefined;
2227
+ customUrlLabel?: string | undefined;
2228
+ } | undefined;
2229
+ }, {
2230
+ profilePhotoUrl?: string | undefined;
2231
+ companyLogoUrl?: string | undefined;
2232
+ templateId?: "minimal" | "bold" | "card" | undefined;
2233
+ accentColor?: string | undefined;
2234
+ primaryColor?: string | undefined;
2235
+ secondaryColor?: string | undefined;
2236
+ textColor?: string | undefined;
2237
+ fontKey?: string | undefined;
2238
+ showAvatar?: boolean | undefined;
2239
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2240
+ visibility?: {
2241
+ showName?: boolean | undefined;
2242
+ showPosition?: boolean | undefined;
2243
+ showEmail?: boolean | undefined;
2244
+ showPhone?: boolean | undefined;
2245
+ showCompany?: boolean | undefined;
2246
+ showLogo?: boolean | undefined;
2247
+ showLocation?: boolean | undefined;
2248
+ showWebsite?: boolean | undefined;
2249
+ showBio?: boolean | undefined;
2250
+ showSocialLinks?: boolean | undefined;
2251
+ } | undefined;
2252
+ socialOverrides?: {
2253
+ facebook?: string | undefined;
2254
+ linkedin?: string | undefined;
2255
+ instagram?: string | undefined;
2256
+ youtube?: string | undefined;
2257
+ tiktok?: string | undefined;
2258
+ customUrl?: string | undefined;
2259
+ customUrlLabel?: string | undefined;
2260
+ } | undefined;
2261
+ }>>;
2262
+ status: z.ZodOptional<z.ZodEnum<["active", "suspended", "archived"]>>;
2263
+ }, "strip", z.ZodTypeAny, {
2264
+ status?: "active" | "suspended" | "archived" | undefined;
2265
+ digitalConfigOverride?: {
2266
+ profilePhotoUrl?: string | undefined;
2267
+ companyLogoUrl?: string | undefined;
2268
+ templateId?: "minimal" | "bold" | "card" | undefined;
2269
+ accentColor?: string | undefined;
2270
+ primaryColor?: string | undefined;
2271
+ secondaryColor?: string | undefined;
2272
+ textColor?: string | undefined;
2273
+ fontKey?: string | undefined;
2274
+ showAvatar?: boolean | undefined;
2275
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2276
+ visibility?: {
2277
+ showName?: boolean | undefined;
2278
+ showPosition?: boolean | undefined;
2279
+ showEmail?: boolean | undefined;
2280
+ showPhone?: boolean | undefined;
2281
+ showCompany?: boolean | undefined;
2282
+ showLogo?: boolean | undefined;
2283
+ showLocation?: boolean | undefined;
2284
+ showWebsite?: boolean | undefined;
2285
+ showBio?: boolean | undefined;
2286
+ showSocialLinks?: boolean | undefined;
2287
+ } | undefined;
2288
+ socialOverrides?: {
2289
+ facebook?: string | undefined;
2290
+ linkedin?: string | undefined;
2291
+ instagram?: string | undefined;
2292
+ youtube?: string | undefined;
2293
+ tiktok?: string | undefined;
2294
+ customUrl?: string | undefined;
2295
+ customUrlLabel?: string | undefined;
2296
+ } | undefined;
2297
+ } | undefined;
2298
+ }, {
2299
+ status?: "active" | "suspended" | "archived" | undefined;
2300
+ digitalConfigOverride?: {
2301
+ profilePhotoUrl?: string | undefined;
2302
+ companyLogoUrl?: string | undefined;
2303
+ templateId?: "minimal" | "bold" | "card" | undefined;
2304
+ accentColor?: string | undefined;
2305
+ primaryColor?: string | undefined;
2306
+ secondaryColor?: string | undefined;
2307
+ textColor?: string | undefined;
2308
+ fontKey?: string | undefined;
2309
+ showAvatar?: boolean | undefined;
2310
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2311
+ visibility?: {
2312
+ showName?: boolean | undefined;
2313
+ showPosition?: boolean | undefined;
2314
+ showEmail?: boolean | undefined;
2315
+ showPhone?: boolean | undefined;
2316
+ showCompany?: boolean | undefined;
2317
+ showLogo?: boolean | undefined;
2318
+ showLocation?: boolean | undefined;
2319
+ showWebsite?: boolean | undefined;
2320
+ showBio?: boolean | undefined;
2321
+ showSocialLinks?: boolean | undefined;
2322
+ } | undefined;
2323
+ socialOverrides?: {
2324
+ facebook?: string | undefined;
2325
+ linkedin?: string | undefined;
2326
+ instagram?: string | undefined;
2327
+ youtube?: string | undefined;
2328
+ tiktok?: string | undefined;
2329
+ customUrl?: string | undefined;
2330
+ customUrlLabel?: string | undefined;
2331
+ } | undefined;
2332
+ } | undefined;
2333
+ }>;
2334
+ declare const adminCardCreateSchema: z.ZodObject<{
2335
+ targetUserId: z.ZodString;
2336
+ userData: z.ZodObject<{
2337
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2338
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2339
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2340
+ email: z.ZodString;
2341
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2342
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2343
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2344
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2345
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
2346
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2347
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2348
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2349
+ socialLinks: z.ZodOptional<z.ZodObject<{
2350
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2351
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2352
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2353
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2354
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2355
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2356
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2357
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
2358
+ }, "strip", z.ZodTypeAny, {
2359
+ facebook: string;
2360
+ linkedin: string;
2361
+ instagram: string;
2362
+ x: string;
2363
+ youtube: string;
2364
+ tiktok: string;
2365
+ customUrl: string;
2366
+ customUrlLabel: string;
2367
+ }, {
2368
+ facebook?: string | undefined;
2369
+ linkedin?: string | undefined;
2370
+ instagram?: string | undefined;
2371
+ x?: string | undefined;
2372
+ youtube?: string | undefined;
2373
+ tiktok?: string | undefined;
2374
+ customUrl?: string | undefined;
2375
+ customUrlLabel?: string | undefined;
2376
+ }>>;
2377
+ }, "strip", z.ZodTypeAny, {
2378
+ email: string;
2379
+ firstName?: string | undefined;
2380
+ lastName?: string | undefined;
2381
+ position?: string | undefined;
2382
+ phone?: string | undefined;
2383
+ phoneCountryCode?: string | undefined;
2384
+ location?: string | undefined;
2385
+ company?: string | undefined;
2386
+ website?: string | undefined;
2387
+ bio?: string | undefined;
2388
+ profilePhotoUrl?: string | undefined;
2389
+ companyLogoUrl?: string | undefined;
2390
+ socialLinks?: {
2391
+ facebook: string;
2392
+ linkedin: string;
2393
+ instagram: string;
2394
+ x: string;
2395
+ youtube: string;
2396
+ tiktok: string;
2397
+ customUrl: string;
2398
+ customUrlLabel: string;
2399
+ } | undefined;
2400
+ }, {
2401
+ email: string;
2402
+ firstName?: string | undefined;
2403
+ lastName?: string | undefined;
2404
+ position?: string | undefined;
2405
+ phone?: string | undefined;
2406
+ phoneCountryCode?: string | undefined;
2407
+ location?: string | undefined;
2408
+ company?: string | undefined;
2409
+ website?: string | undefined;
2410
+ bio?: string | undefined;
2411
+ profilePhotoUrl?: string | undefined;
2412
+ companyLogoUrl?: string | undefined;
2413
+ socialLinks?: {
2414
+ facebook?: string | undefined;
2415
+ linkedin?: string | undefined;
2416
+ instagram?: string | undefined;
2417
+ x?: string | undefined;
2418
+ youtube?: string | undefined;
2419
+ tiktok?: string | undefined;
2420
+ customUrl?: string | undefined;
2421
+ customUrlLabel?: string | undefined;
2422
+ } | undefined;
2423
+ }>;
2424
+ digitalConfig: z.ZodObject<{
2425
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
2426
+ accentColor: z.ZodString;
2427
+ primaryColor: z.ZodOptional<z.ZodString>;
2428
+ secondaryColor: z.ZodOptional<z.ZodString>;
2429
+ textColor: z.ZodOptional<z.ZodString>;
2430
+ fontKey: z.ZodString;
2431
+ showAvatar: z.ZodBoolean;
2432
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
2433
+ visibility: z.ZodOptional<z.ZodObject<{
2434
+ showName: z.ZodOptional<z.ZodBoolean>;
2435
+ showPosition: z.ZodOptional<z.ZodBoolean>;
2436
+ showCompany: z.ZodOptional<z.ZodBoolean>;
2437
+ showEmail: z.ZodOptional<z.ZodBoolean>;
2438
+ showPhone: z.ZodOptional<z.ZodBoolean>;
2439
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
2440
+ showLocation: z.ZodOptional<z.ZodBoolean>;
2441
+ showBio: z.ZodOptional<z.ZodBoolean>;
2442
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
2443
+ showLogo: z.ZodOptional<z.ZodBoolean>;
2444
+ }, "strip", z.ZodTypeAny, {
2445
+ showName?: boolean | undefined;
2446
+ showPosition?: boolean | undefined;
2447
+ showEmail?: boolean | undefined;
2448
+ showPhone?: boolean | undefined;
2449
+ showCompany?: boolean | undefined;
2450
+ showLogo?: boolean | undefined;
2451
+ showLocation?: boolean | undefined;
2452
+ showWebsite?: boolean | undefined;
2453
+ showBio?: boolean | undefined;
2454
+ showSocialLinks?: boolean | undefined;
2455
+ }, {
2456
+ showName?: boolean | undefined;
2457
+ showPosition?: boolean | undefined;
2458
+ showEmail?: boolean | undefined;
2459
+ showPhone?: boolean | undefined;
2460
+ showCompany?: boolean | undefined;
2461
+ showLogo?: boolean | undefined;
2462
+ showLocation?: boolean | undefined;
2463
+ showWebsite?: boolean | undefined;
2464
+ showBio?: boolean | undefined;
2465
+ showSocialLinks?: boolean | undefined;
2466
+ }>>;
2467
+ socialOverrides: z.ZodOptional<z.ZodObject<{
2468
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2469
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2470
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2471
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2472
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2473
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2474
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2475
+ }, "strip", z.ZodTypeAny, {
2476
+ facebook?: string | undefined;
2477
+ linkedin?: string | undefined;
2478
+ instagram?: string | undefined;
2479
+ youtube?: string | undefined;
2480
+ tiktok?: string | undefined;
2481
+ customUrl?: string | undefined;
2482
+ customUrlLabel?: string | undefined;
2483
+ }, {
2484
+ facebook?: string | undefined;
2485
+ linkedin?: string | undefined;
2486
+ instagram?: string | undefined;
2487
+ youtube?: string | undefined;
2488
+ tiktok?: string | undefined;
2489
+ customUrl?: string | undefined;
2490
+ customUrlLabel?: string | undefined;
2491
+ }>>;
2492
+ }, "strip", z.ZodTypeAny, {
2493
+ templateId: "minimal" | "bold" | "card";
2494
+ accentColor: string;
2495
+ fontKey: string;
2496
+ showAvatar: boolean;
2497
+ primaryColor?: string | undefined;
2498
+ secondaryColor?: string | undefined;
2499
+ textColor?: string | undefined;
2500
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2501
+ visibility?: {
2502
+ showName?: boolean | undefined;
2503
+ showPosition?: boolean | undefined;
2504
+ showEmail?: boolean | undefined;
2505
+ showPhone?: boolean | undefined;
2506
+ showCompany?: boolean | undefined;
2507
+ showLogo?: boolean | undefined;
2508
+ showLocation?: boolean | undefined;
2509
+ showWebsite?: boolean | undefined;
2510
+ showBio?: boolean | undefined;
2511
+ showSocialLinks?: boolean | undefined;
2512
+ } | undefined;
2513
+ socialOverrides?: {
2514
+ facebook?: string | undefined;
2515
+ linkedin?: string | undefined;
2516
+ instagram?: string | undefined;
2517
+ youtube?: string | undefined;
2518
+ tiktok?: string | undefined;
2519
+ customUrl?: string | undefined;
2520
+ customUrlLabel?: string | undefined;
2521
+ } | undefined;
2522
+ }, {
2523
+ templateId: "minimal" | "bold" | "card";
2524
+ accentColor: string;
2525
+ fontKey: string;
2526
+ showAvatar: boolean;
2527
+ primaryColor?: string | undefined;
2528
+ secondaryColor?: string | undefined;
2529
+ textColor?: string | undefined;
2530
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2531
+ visibility?: {
2532
+ showName?: boolean | undefined;
2533
+ showPosition?: boolean | undefined;
2534
+ showEmail?: boolean | undefined;
2535
+ showPhone?: boolean | undefined;
2536
+ showCompany?: boolean | undefined;
2537
+ showLogo?: boolean | undefined;
2538
+ showLocation?: boolean | undefined;
2539
+ showWebsite?: boolean | undefined;
2540
+ showBio?: boolean | undefined;
2541
+ showSocialLinks?: boolean | undefined;
2542
+ } | undefined;
2543
+ socialOverrides?: {
2544
+ facebook?: string | undefined;
2545
+ linkedin?: string | undefined;
2546
+ instagram?: string | undefined;
2547
+ youtube?: string | undefined;
2548
+ tiktok?: string | undefined;
2549
+ customUrl?: string | undefined;
2550
+ customUrlLabel?: string | undefined;
2551
+ } | undefined;
2552
+ }>;
2553
+ physicalConfig: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2554
+ material: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
2555
+ colour: z.ZodOptional<z.ZodString>;
2556
+ comboId: z.ZodEnum<["A1", "A2", "B1", "B2", "C1", "C2", "D1", "D2", "E1", "E2"]>;
2557
+ frontElements: z.ZodObject<{
2558
+ showName: z.ZodBoolean;
2559
+ showPosition: z.ZodBoolean;
2560
+ showEmail: z.ZodBoolean;
2561
+ showPhone: z.ZodBoolean;
2562
+ showCompany: z.ZodBoolean;
2563
+ showLogo: z.ZodBoolean;
2564
+ showQr: z.ZodBoolean;
2565
+ showPhoto: z.ZodBoolean;
2566
+ }, "strip", z.ZodTypeAny, {
2567
+ showName: boolean;
2568
+ showPosition: boolean;
2569
+ showEmail: boolean;
2570
+ showPhone: boolean;
2571
+ showCompany: boolean;
2572
+ showLogo: boolean;
2573
+ showQr: boolean;
2574
+ showPhoto: boolean;
2575
+ }, {
2576
+ showName: boolean;
2577
+ showPosition: boolean;
2578
+ showEmail: boolean;
2579
+ showPhone: boolean;
2580
+ showCompany: boolean;
2581
+ showLogo: boolean;
2582
+ showQr: boolean;
2583
+ showPhoto: boolean;
2584
+ }>;
2585
+ backElements: z.ZodObject<{
2586
+ showName: z.ZodBoolean;
2587
+ showPosition: z.ZodBoolean;
2588
+ showEmail: z.ZodBoolean;
2589
+ showPhone: z.ZodBoolean;
2590
+ showCompany: z.ZodBoolean;
2591
+ showLogo: z.ZodBoolean;
2592
+ showQr: z.ZodBoolean;
2593
+ showPhoto: z.ZodBoolean;
2594
+ }, "strip", z.ZodTypeAny, {
2595
+ showName: boolean;
2596
+ showPosition: boolean;
2597
+ showEmail: boolean;
2598
+ showPhone: boolean;
2599
+ showCompany: boolean;
2600
+ showLogo: boolean;
2601
+ showQr: boolean;
2602
+ showPhoto: boolean;
2603
+ }, {
2604
+ showName: boolean;
2605
+ showPosition: boolean;
2606
+ showEmail: boolean;
2607
+ showPhone: boolean;
2608
+ showCompany: boolean;
2609
+ showLogo: boolean;
2610
+ showQr: boolean;
2611
+ showPhoto: boolean;
2612
+ }>;
2613
+ qrTargetUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2614
+ customDesignRequest: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2615
+ frontContactToggles: z.ZodOptional<z.ZodObject<{
2616
+ showEmail: z.ZodOptional<z.ZodBoolean>;
2617
+ showPhone: z.ZodOptional<z.ZodBoolean>;
2618
+ showLocation: z.ZodOptional<z.ZodBoolean>;
2619
+ }, "strip", z.ZodTypeAny, {
2620
+ showEmail?: boolean | undefined;
2621
+ showPhone?: boolean | undefined;
2622
+ showLocation?: boolean | undefined;
2623
+ }, {
2624
+ showEmail?: boolean | undefined;
2625
+ showPhone?: boolean | undefined;
2626
+ showLocation?: boolean | undefined;
2627
+ }>>;
2628
+ backContactToggles: z.ZodOptional<z.ZodObject<{
2629
+ showEmail: z.ZodOptional<z.ZodBoolean>;
2630
+ showPhone: z.ZodOptional<z.ZodBoolean>;
2631
+ showLocation: z.ZodOptional<z.ZodBoolean>;
2632
+ }, "strip", z.ZodTypeAny, {
2633
+ showEmail?: boolean | undefined;
2634
+ showPhone?: boolean | undefined;
2635
+ showLocation?: boolean | undefined;
2636
+ }, {
2637
+ showEmail?: boolean | undefined;
2638
+ showPhone?: boolean | undefined;
2639
+ showLocation?: boolean | undefined;
2640
+ }>>;
2641
+ contentOverrides: z.ZodOptional<z.ZodObject<{
2642
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2643
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2644
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2645
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2646
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2647
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2648
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2649
+ }, "strip", z.ZodTypeAny, {
2650
+ position?: string | undefined;
2651
+ email?: string | undefined;
2652
+ phone?: string | undefined;
2653
+ phoneCountryCode?: string | undefined;
2654
+ location?: string | undefined;
2655
+ company?: string | undefined;
2656
+ displayName?: string | undefined;
2657
+ }, {
2658
+ position?: string | undefined;
2659
+ email?: string | undefined;
2660
+ phone?: string | undefined;
2661
+ phoneCountryCode?: string | undefined;
2662
+ location?: string | undefined;
2663
+ company?: string | undefined;
2664
+ displayName?: string | undefined;
2665
+ }>>;
2666
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
2667
+ }, "strip", z.ZodTypeAny, {
2668
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2669
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2670
+ frontElements: {
2671
+ showName: boolean;
2672
+ showPosition: boolean;
2673
+ showEmail: boolean;
2674
+ showPhone: boolean;
2675
+ showCompany: boolean;
2676
+ showLogo: boolean;
2677
+ showQr: boolean;
2678
+ showPhoto: boolean;
2679
+ };
2680
+ backElements: {
2681
+ showName: boolean;
2682
+ showPosition: boolean;
2683
+ showEmail: boolean;
2684
+ showPhone: boolean;
2685
+ showCompany: boolean;
2686
+ showLogo: boolean;
2687
+ showQr: boolean;
2688
+ showPhoto: boolean;
2689
+ };
2690
+ companyLogoUrl?: string | undefined;
2691
+ colour?: string | undefined;
2692
+ qrTargetUrl?: string | undefined;
2693
+ customDesignRequest?: string | undefined;
2694
+ frontContactToggles?: {
2695
+ showEmail?: boolean | undefined;
2696
+ showPhone?: boolean | undefined;
2697
+ showLocation?: boolean | undefined;
2698
+ } | undefined;
2699
+ backContactToggles?: {
2700
+ showEmail?: boolean | undefined;
2701
+ showPhone?: boolean | undefined;
2702
+ showLocation?: boolean | undefined;
2703
+ } | undefined;
2704
+ contentOverrides?: {
2705
+ position?: string | undefined;
2706
+ email?: string | undefined;
2707
+ phone?: string | undefined;
2708
+ phoneCountryCode?: string | undefined;
2709
+ location?: string | undefined;
2710
+ company?: string | undefined;
2711
+ displayName?: string | undefined;
2712
+ } | undefined;
2713
+ }, {
2714
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2715
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2716
+ frontElements: {
2717
+ showName: boolean;
2718
+ showPosition: boolean;
2719
+ showEmail: boolean;
2720
+ showPhone: boolean;
2721
+ showCompany: boolean;
2722
+ showLogo: boolean;
2723
+ showQr: boolean;
2724
+ showPhoto: boolean;
2725
+ };
2726
+ backElements: {
2727
+ showName: boolean;
2728
+ showPosition: boolean;
2729
+ showEmail: boolean;
2730
+ showPhone: boolean;
2731
+ showCompany: boolean;
2732
+ showLogo: boolean;
2733
+ showQr: boolean;
2734
+ showPhoto: boolean;
2735
+ };
2736
+ companyLogoUrl?: string | undefined;
2737
+ colour?: string | undefined;
2738
+ qrTargetUrl?: string | undefined;
2739
+ customDesignRequest?: string | undefined;
2740
+ frontContactToggles?: {
2741
+ showEmail?: boolean | undefined;
2742
+ showPhone?: boolean | undefined;
2743
+ showLocation?: boolean | undefined;
2744
+ } | undefined;
2745
+ backContactToggles?: {
2746
+ showEmail?: boolean | undefined;
2747
+ showPhone?: boolean | undefined;
2748
+ showLocation?: boolean | undefined;
2749
+ } | undefined;
2750
+ contentOverrides?: {
2751
+ position?: string | undefined;
2752
+ email?: string | undefined;
2753
+ phone?: string | undefined;
2754
+ phoneCountryCode?: string | undefined;
2755
+ location?: string | undefined;
2756
+ company?: string | undefined;
2757
+ displayName?: string | undefined;
2758
+ } | undefined;
2759
+ }>, {
2760
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2761
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2762
+ frontElements: {
2763
+ showName: boolean;
2764
+ showPosition: boolean;
2765
+ showEmail: boolean;
2766
+ showPhone: boolean;
2767
+ showCompany: boolean;
2768
+ showLogo: boolean;
2769
+ showQr: boolean;
2770
+ showPhoto: boolean;
2771
+ };
2772
+ backElements: {
2773
+ showName: boolean;
2774
+ showPosition: boolean;
2775
+ showEmail: boolean;
2776
+ showPhone: boolean;
2777
+ showCompany: boolean;
2778
+ showLogo: boolean;
2779
+ showQr: boolean;
2780
+ showPhoto: boolean;
2781
+ };
2782
+ companyLogoUrl?: string | undefined;
2783
+ colour?: string | undefined;
2784
+ qrTargetUrl?: string | undefined;
2785
+ customDesignRequest?: string | undefined;
2786
+ frontContactToggles?: {
2787
+ showEmail?: boolean | undefined;
2788
+ showPhone?: boolean | undefined;
2789
+ showLocation?: boolean | undefined;
2790
+ } | undefined;
2791
+ backContactToggles?: {
2792
+ showEmail?: boolean | undefined;
2793
+ showPhone?: boolean | undefined;
2794
+ showLocation?: boolean | undefined;
2795
+ } | undefined;
2796
+ contentOverrides?: {
2797
+ position?: string | undefined;
2798
+ email?: string | undefined;
2799
+ phone?: string | undefined;
2800
+ phoneCountryCode?: string | undefined;
2801
+ location?: string | undefined;
2802
+ company?: string | undefined;
2803
+ displayName?: string | undefined;
2804
+ } | undefined;
2805
+ }, {
2806
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2807
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2808
+ frontElements: {
2809
+ showName: boolean;
2810
+ showPosition: boolean;
2811
+ showEmail: boolean;
2812
+ showPhone: boolean;
2813
+ showCompany: boolean;
2814
+ showLogo: boolean;
2815
+ showQr: boolean;
2816
+ showPhoto: boolean;
2817
+ };
2818
+ backElements: {
2819
+ showName: boolean;
2820
+ showPosition: boolean;
2821
+ showEmail: boolean;
2822
+ showPhone: boolean;
2823
+ showCompany: boolean;
2824
+ showLogo: boolean;
2825
+ showQr: boolean;
2826
+ showPhoto: boolean;
2827
+ };
2828
+ companyLogoUrl?: string | undefined;
2829
+ colour?: string | undefined;
2830
+ qrTargetUrl?: string | undefined;
2831
+ customDesignRequest?: string | undefined;
2832
+ frontContactToggles?: {
2833
+ showEmail?: boolean | undefined;
2834
+ showPhone?: boolean | undefined;
2835
+ showLocation?: boolean | undefined;
2836
+ } | undefined;
2837
+ backContactToggles?: {
2838
+ showEmail?: boolean | undefined;
2839
+ showPhone?: boolean | undefined;
2840
+ showLocation?: boolean | undefined;
2841
+ } | undefined;
2842
+ contentOverrides?: {
2843
+ position?: string | undefined;
2844
+ email?: string | undefined;
2845
+ phone?: string | undefined;
2846
+ phoneCountryCode?: string | undefined;
2847
+ location?: string | undefined;
2848
+ company?: string | undefined;
2849
+ displayName?: string | undefined;
2850
+ } | undefined;
2851
+ }>>;
2852
+ }, "strip", z.ZodTypeAny, {
2853
+ userData: {
2854
+ email: string;
2855
+ firstName?: string | undefined;
2856
+ lastName?: string | undefined;
2857
+ position?: string | undefined;
2858
+ phone?: string | undefined;
2859
+ phoneCountryCode?: string | undefined;
2860
+ location?: string | undefined;
2861
+ company?: string | undefined;
2862
+ website?: string | undefined;
2863
+ bio?: string | undefined;
2864
+ profilePhotoUrl?: string | undefined;
2865
+ companyLogoUrl?: string | undefined;
2866
+ socialLinks?: {
2867
+ facebook: string;
2868
+ linkedin: string;
2869
+ instagram: string;
2870
+ x: string;
2871
+ youtube: string;
2872
+ tiktok: string;
2873
+ customUrl: string;
2874
+ customUrlLabel: string;
2875
+ } | undefined;
2876
+ };
2877
+ digitalConfig: {
2878
+ templateId: "minimal" | "bold" | "card";
2879
+ accentColor: string;
2880
+ fontKey: string;
2881
+ showAvatar: boolean;
2882
+ primaryColor?: string | undefined;
2883
+ secondaryColor?: string | undefined;
2884
+ textColor?: string | undefined;
2885
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2886
+ visibility?: {
2887
+ showName?: boolean | undefined;
2888
+ showPosition?: boolean | undefined;
2889
+ showEmail?: boolean | undefined;
2890
+ showPhone?: boolean | undefined;
2891
+ showCompany?: boolean | undefined;
2892
+ showLogo?: boolean | undefined;
2893
+ showLocation?: boolean | undefined;
2894
+ showWebsite?: boolean | undefined;
2895
+ showBio?: boolean | undefined;
2896
+ showSocialLinks?: boolean | undefined;
2897
+ } | undefined;
2898
+ socialOverrides?: {
2899
+ facebook?: string | undefined;
2900
+ linkedin?: string | undefined;
2901
+ instagram?: string | undefined;
2902
+ youtube?: string | undefined;
2903
+ tiktok?: string | undefined;
2904
+ customUrl?: string | undefined;
2905
+ customUrlLabel?: string | undefined;
2906
+ } | undefined;
2907
+ };
2908
+ targetUserId: string;
2909
+ physicalConfig?: {
2910
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
2911
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
2912
+ frontElements: {
2913
+ showName: boolean;
2914
+ showPosition: boolean;
2915
+ showEmail: boolean;
2916
+ showPhone: boolean;
2917
+ showCompany: boolean;
2918
+ showLogo: boolean;
2919
+ showQr: boolean;
2920
+ showPhoto: boolean;
2921
+ };
2922
+ backElements: {
2923
+ showName: boolean;
2924
+ showPosition: boolean;
2925
+ showEmail: boolean;
2926
+ showPhone: boolean;
2927
+ showCompany: boolean;
2928
+ showLogo: boolean;
2929
+ showQr: boolean;
2930
+ showPhoto: boolean;
2931
+ };
2932
+ companyLogoUrl?: string | undefined;
2933
+ colour?: string | undefined;
2934
+ qrTargetUrl?: string | undefined;
2935
+ customDesignRequest?: string | undefined;
2936
+ frontContactToggles?: {
2937
+ showEmail?: boolean | undefined;
2938
+ showPhone?: boolean | undefined;
2939
+ showLocation?: boolean | undefined;
2940
+ } | undefined;
2941
+ backContactToggles?: {
2942
+ showEmail?: boolean | undefined;
2943
+ showPhone?: boolean | undefined;
2944
+ showLocation?: boolean | undefined;
2945
+ } | undefined;
2946
+ contentOverrides?: {
2947
+ position?: string | undefined;
2948
+ email?: string | undefined;
2949
+ phone?: string | undefined;
2950
+ phoneCountryCode?: string | undefined;
2951
+ location?: string | undefined;
2952
+ company?: string | undefined;
2953
+ displayName?: string | undefined;
2954
+ } | undefined;
2955
+ } | undefined;
2956
+ }, {
2957
+ userData: {
2958
+ email: string;
2959
+ firstName?: string | undefined;
2960
+ lastName?: string | undefined;
2961
+ position?: string | undefined;
2962
+ phone?: string | undefined;
2963
+ phoneCountryCode?: string | undefined;
2964
+ location?: string | undefined;
2965
+ company?: string | undefined;
2966
+ website?: string | undefined;
2967
+ bio?: string | undefined;
2968
+ profilePhotoUrl?: string | undefined;
2969
+ companyLogoUrl?: string | undefined;
2970
+ socialLinks?: {
2971
+ facebook?: string | undefined;
2972
+ linkedin?: string | undefined;
2973
+ instagram?: string | undefined;
2974
+ x?: string | undefined;
2975
+ youtube?: string | undefined;
2976
+ tiktok?: string | undefined;
2977
+ customUrl?: string | undefined;
2978
+ customUrlLabel?: string | undefined;
2979
+ } | undefined;
2980
+ };
2981
+ digitalConfig: {
2982
+ templateId: "minimal" | "bold" | "card";
2983
+ accentColor: string;
2984
+ fontKey: string;
2985
+ showAvatar: boolean;
2986
+ primaryColor?: string | undefined;
2987
+ secondaryColor?: string | undefined;
2988
+ textColor?: string | undefined;
2989
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
2990
+ visibility?: {
2991
+ showName?: boolean | undefined;
2992
+ showPosition?: boolean | undefined;
2993
+ showEmail?: boolean | undefined;
2994
+ showPhone?: boolean | undefined;
2995
+ showCompany?: boolean | undefined;
2996
+ showLogo?: boolean | undefined;
2997
+ showLocation?: boolean | undefined;
2998
+ showWebsite?: boolean | undefined;
2999
+ showBio?: boolean | undefined;
3000
+ showSocialLinks?: boolean | undefined;
3001
+ } | undefined;
3002
+ socialOverrides?: {
3003
+ facebook?: string | undefined;
3004
+ linkedin?: string | undefined;
3005
+ instagram?: string | undefined;
3006
+ youtube?: string | undefined;
3007
+ tiktok?: string | undefined;
3008
+ customUrl?: string | undefined;
3009
+ customUrlLabel?: string | undefined;
3010
+ } | undefined;
3011
+ };
3012
+ targetUserId: string;
3013
+ physicalConfig?: {
3014
+ material: "plastic" | "3dprint_standard" | "metal" | "bamboo";
3015
+ comboId: "A1" | "A2" | "B1" | "B2" | "C1" | "C2" | "D1" | "D2" | "E1" | "E2";
3016
+ frontElements: {
3017
+ showName: boolean;
3018
+ showPosition: boolean;
3019
+ showEmail: boolean;
3020
+ showPhone: boolean;
3021
+ showCompany: boolean;
3022
+ showLogo: boolean;
3023
+ showQr: boolean;
3024
+ showPhoto: boolean;
3025
+ };
3026
+ backElements: {
3027
+ showName: boolean;
3028
+ showPosition: boolean;
3029
+ showEmail: boolean;
3030
+ showPhone: boolean;
3031
+ showCompany: boolean;
3032
+ showLogo: boolean;
3033
+ showQr: boolean;
3034
+ showPhoto: boolean;
3035
+ };
3036
+ companyLogoUrl?: string | undefined;
3037
+ colour?: string | undefined;
3038
+ qrTargetUrl?: string | undefined;
3039
+ customDesignRequest?: string | undefined;
3040
+ frontContactToggles?: {
3041
+ showEmail?: boolean | undefined;
3042
+ showPhone?: boolean | undefined;
3043
+ showLocation?: boolean | undefined;
3044
+ } | undefined;
3045
+ backContactToggles?: {
3046
+ showEmail?: boolean | undefined;
3047
+ showPhone?: boolean | undefined;
3048
+ showLocation?: boolean | undefined;
3049
+ } | undefined;
3050
+ contentOverrides?: {
3051
+ position?: string | undefined;
3052
+ email?: string | undefined;
3053
+ phone?: string | undefined;
3054
+ phoneCountryCode?: string | undefined;
3055
+ location?: string | undefined;
3056
+ company?: string | undefined;
3057
+ displayName?: string | undefined;
3058
+ } | undefined;
3059
+ } | undefined;
3060
+ }>;
3061
+ declare const profileVisibilitySchema: z.ZodEnum<["public", "private", "link_only"]>;
3062
+ declare const profileUserDataSchema: z.ZodObject<{
3063
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3064
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3065
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3066
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3067
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3068
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3069
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3070
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
3071
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3072
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3073
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3074
+ socialLinks: z.ZodOptional<z.ZodObject<{
3075
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3076
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3077
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3078
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3079
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3080
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3081
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3082
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3083
+ }, "strip", z.ZodTypeAny, {
3084
+ facebook: string;
3085
+ linkedin: string;
3086
+ instagram: string;
3087
+ x: string;
3088
+ youtube: string;
3089
+ tiktok: string;
3090
+ customUrl: string;
3091
+ customUrlLabel: string;
3092
+ }, {
3093
+ facebook?: string | undefined;
3094
+ linkedin?: string | undefined;
3095
+ instagram?: string | undefined;
3096
+ x?: string | undefined;
3097
+ youtube?: string | undefined;
3098
+ tiktok?: string | undefined;
3099
+ customUrl?: string | undefined;
3100
+ customUrlLabel?: string | undefined;
3101
+ }>>;
3102
+ } & {
3103
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3104
+ }, "strip", z.ZodTypeAny, {
3105
+ firstName?: string | undefined;
3106
+ lastName?: string | undefined;
3107
+ position?: string | undefined;
3108
+ email?: string | undefined;
3109
+ phone?: string | undefined;
3110
+ phoneCountryCode?: string | undefined;
3111
+ location?: string | undefined;
3112
+ company?: string | undefined;
3113
+ website?: string | undefined;
3114
+ bio?: string | undefined;
3115
+ profilePhotoUrl?: string | undefined;
3116
+ companyLogoUrl?: string | undefined;
3117
+ socialLinks?: {
3118
+ facebook: string;
3119
+ linkedin: string;
3120
+ instagram: string;
3121
+ x: string;
3122
+ youtube: string;
3123
+ tiktok: string;
3124
+ customUrl: string;
3125
+ customUrlLabel: string;
3126
+ } | undefined;
3127
+ }, {
3128
+ firstName?: string | undefined;
3129
+ lastName?: string | undefined;
3130
+ position?: string | undefined;
3131
+ email?: string | undefined;
3132
+ phone?: string | undefined;
3133
+ phoneCountryCode?: string | undefined;
3134
+ location?: string | undefined;
3135
+ company?: string | undefined;
3136
+ website?: string | undefined;
3137
+ bio?: string | undefined;
3138
+ profilePhotoUrl?: string | undefined;
3139
+ companyLogoUrl?: string | undefined;
3140
+ socialLinks?: {
3141
+ facebook?: string | undefined;
3142
+ linkedin?: string | undefined;
3143
+ instagram?: string | undefined;
3144
+ x?: string | undefined;
3145
+ youtube?: string | undefined;
3146
+ tiktok?: string | undefined;
3147
+ customUrl?: string | undefined;
3148
+ customUrlLabel?: string | undefined;
3149
+ } | undefined;
3150
+ }>;
3151
+ declare const profileCreateSchema: z.ZodObject<{
3152
+ cardId: z.ZodOptional<z.ZodString>;
3153
+ label: z.ZodString;
3154
+ icon: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3155
+ userData: z.ZodObject<{
3156
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3157
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3158
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3159
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3160
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3161
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3162
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3163
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
3164
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3165
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3166
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3167
+ socialLinks: z.ZodOptional<z.ZodObject<{
3168
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3169
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3170
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3171
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3172
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3173
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3174
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3175
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3176
+ }, "strip", z.ZodTypeAny, {
3177
+ facebook: string;
3178
+ linkedin: string;
3179
+ instagram: string;
3180
+ x: string;
3181
+ youtube: string;
3182
+ tiktok: string;
3183
+ customUrl: string;
3184
+ customUrlLabel: string;
3185
+ }, {
3186
+ facebook?: string | undefined;
3187
+ linkedin?: string | undefined;
3188
+ instagram?: string | undefined;
3189
+ x?: string | undefined;
3190
+ youtube?: string | undefined;
3191
+ tiktok?: string | undefined;
3192
+ customUrl?: string | undefined;
3193
+ customUrlLabel?: string | undefined;
3194
+ }>>;
3195
+ } & {
3196
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3197
+ }, "strip", z.ZodTypeAny, {
3198
+ firstName?: string | undefined;
3199
+ lastName?: string | undefined;
3200
+ position?: string | undefined;
3201
+ email?: string | undefined;
3202
+ phone?: string | undefined;
3203
+ phoneCountryCode?: string | undefined;
3204
+ location?: string | undefined;
3205
+ company?: string | undefined;
3206
+ website?: string | undefined;
3207
+ bio?: string | undefined;
3208
+ profilePhotoUrl?: string | undefined;
3209
+ companyLogoUrl?: string | undefined;
3210
+ socialLinks?: {
3211
+ facebook: string;
3212
+ linkedin: string;
3213
+ instagram: string;
3214
+ x: string;
3215
+ youtube: string;
3216
+ tiktok: string;
3217
+ customUrl: string;
3218
+ customUrlLabel: string;
3219
+ } | undefined;
3220
+ }, {
3221
+ firstName?: string | undefined;
3222
+ lastName?: string | undefined;
3223
+ position?: string | undefined;
3224
+ email?: string | undefined;
3225
+ phone?: string | undefined;
3226
+ phoneCountryCode?: string | undefined;
3227
+ location?: string | undefined;
3228
+ company?: string | undefined;
3229
+ website?: string | undefined;
3230
+ bio?: string | undefined;
3231
+ profilePhotoUrl?: string | undefined;
3232
+ companyLogoUrl?: string | undefined;
3233
+ socialLinks?: {
3234
+ facebook?: string | undefined;
3235
+ linkedin?: string | undefined;
3236
+ instagram?: string | undefined;
3237
+ x?: string | undefined;
3238
+ youtube?: string | undefined;
3239
+ tiktok?: string | undefined;
3240
+ customUrl?: string | undefined;
3241
+ customUrlLabel?: string | undefined;
3242
+ } | undefined;
3243
+ }>;
3244
+ digitalConfig: z.ZodObject<{
3245
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
3246
+ accentColor: z.ZodString;
3247
+ primaryColor: z.ZodOptional<z.ZodString>;
3248
+ secondaryColor: z.ZodOptional<z.ZodString>;
3249
+ textColor: z.ZodOptional<z.ZodString>;
3250
+ fontKey: z.ZodString;
3251
+ showAvatar: z.ZodBoolean;
3252
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
3253
+ visibility: z.ZodOptional<z.ZodObject<{
3254
+ showName: z.ZodOptional<z.ZodBoolean>;
3255
+ showPosition: z.ZodOptional<z.ZodBoolean>;
3256
+ showCompany: z.ZodOptional<z.ZodBoolean>;
3257
+ showEmail: z.ZodOptional<z.ZodBoolean>;
3258
+ showPhone: z.ZodOptional<z.ZodBoolean>;
3259
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
3260
+ showLocation: z.ZodOptional<z.ZodBoolean>;
3261
+ showBio: z.ZodOptional<z.ZodBoolean>;
3262
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
3263
+ showLogo: z.ZodOptional<z.ZodBoolean>;
3264
+ }, "strip", z.ZodTypeAny, {
3265
+ showName?: boolean | undefined;
3266
+ showPosition?: boolean | undefined;
3267
+ showEmail?: boolean | undefined;
3268
+ showPhone?: boolean | undefined;
3269
+ showCompany?: boolean | undefined;
3270
+ showLogo?: boolean | undefined;
3271
+ showLocation?: boolean | undefined;
3272
+ showWebsite?: boolean | undefined;
3273
+ showBio?: boolean | undefined;
3274
+ showSocialLinks?: boolean | undefined;
3275
+ }, {
3276
+ showName?: boolean | undefined;
3277
+ showPosition?: boolean | undefined;
3278
+ showEmail?: boolean | undefined;
3279
+ showPhone?: boolean | undefined;
3280
+ showCompany?: boolean | undefined;
3281
+ showLogo?: boolean | undefined;
3282
+ showLocation?: boolean | undefined;
3283
+ showWebsite?: boolean | undefined;
3284
+ showBio?: boolean | undefined;
3285
+ showSocialLinks?: boolean | undefined;
3286
+ }>>;
3287
+ socialOverrides: z.ZodOptional<z.ZodObject<{
3288
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3289
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3290
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3291
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3292
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3293
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3294
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3295
+ }, "strip", z.ZodTypeAny, {
3296
+ facebook?: string | undefined;
3297
+ linkedin?: string | undefined;
3298
+ instagram?: string | undefined;
3299
+ youtube?: string | undefined;
3300
+ tiktok?: string | undefined;
3301
+ customUrl?: string | undefined;
3302
+ customUrlLabel?: string | undefined;
3303
+ }, {
3304
+ facebook?: string | undefined;
3305
+ linkedin?: string | undefined;
3306
+ instagram?: string | undefined;
3307
+ youtube?: string | undefined;
3308
+ tiktok?: string | undefined;
3309
+ customUrl?: string | undefined;
3310
+ customUrlLabel?: string | undefined;
3311
+ }>>;
3312
+ }, "strip", z.ZodTypeAny, {
3313
+ templateId: "minimal" | "bold" | "card";
3314
+ accentColor: string;
3315
+ fontKey: string;
3316
+ showAvatar: boolean;
3317
+ primaryColor?: string | undefined;
3318
+ secondaryColor?: string | undefined;
3319
+ textColor?: string | undefined;
3320
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3321
+ visibility?: {
3322
+ showName?: boolean | undefined;
3323
+ showPosition?: boolean | undefined;
3324
+ showEmail?: boolean | undefined;
3325
+ showPhone?: boolean | undefined;
3326
+ showCompany?: boolean | undefined;
3327
+ showLogo?: boolean | undefined;
3328
+ showLocation?: boolean | undefined;
3329
+ showWebsite?: boolean | undefined;
3330
+ showBio?: boolean | undefined;
3331
+ showSocialLinks?: boolean | undefined;
3332
+ } | undefined;
3333
+ socialOverrides?: {
3334
+ facebook?: string | undefined;
3335
+ linkedin?: string | undefined;
3336
+ instagram?: string | undefined;
3337
+ youtube?: string | undefined;
3338
+ tiktok?: string | undefined;
3339
+ customUrl?: string | undefined;
3340
+ customUrlLabel?: string | undefined;
3341
+ } | undefined;
3342
+ }, {
3343
+ templateId: "minimal" | "bold" | "card";
3344
+ accentColor: string;
3345
+ fontKey: string;
3346
+ showAvatar: boolean;
3347
+ primaryColor?: string | undefined;
3348
+ secondaryColor?: string | undefined;
3349
+ textColor?: string | undefined;
3350
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3351
+ visibility?: {
3352
+ showName?: boolean | undefined;
3353
+ showPosition?: boolean | undefined;
3354
+ showEmail?: boolean | undefined;
3355
+ showPhone?: boolean | undefined;
3356
+ showCompany?: boolean | undefined;
3357
+ showLogo?: boolean | undefined;
3358
+ showLocation?: boolean | undefined;
3359
+ showWebsite?: boolean | undefined;
3360
+ showBio?: boolean | undefined;
3361
+ showSocialLinks?: boolean | undefined;
3362
+ } | undefined;
3363
+ socialOverrides?: {
3364
+ facebook?: string | undefined;
3365
+ linkedin?: string | undefined;
3366
+ instagram?: string | undefined;
3367
+ youtube?: string | undefined;
3368
+ tiktok?: string | undefined;
3369
+ customUrl?: string | undefined;
3370
+ customUrlLabel?: string | undefined;
3371
+ } | undefined;
3372
+ }>;
3373
+ visibility: z.ZodDefault<z.ZodEnum<["public", "private", "link_only"]>>;
3374
+ accessPin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3375
+ }, "strip", z.ZodTypeAny, {
3376
+ visibility: "public" | "private" | "link_only";
3377
+ userData: {
3378
+ firstName?: string | undefined;
3379
+ lastName?: string | undefined;
3380
+ position?: string | undefined;
3381
+ email?: string | undefined;
3382
+ phone?: string | undefined;
3383
+ phoneCountryCode?: string | undefined;
3384
+ location?: string | undefined;
3385
+ company?: string | undefined;
3386
+ website?: string | undefined;
3387
+ bio?: string | undefined;
3388
+ profilePhotoUrl?: string | undefined;
3389
+ companyLogoUrl?: string | undefined;
3390
+ socialLinks?: {
3391
+ facebook: string;
3392
+ linkedin: string;
3393
+ instagram: string;
3394
+ x: string;
3395
+ youtube: string;
3396
+ tiktok: string;
3397
+ customUrl: string;
3398
+ customUrlLabel: string;
3399
+ } | undefined;
3400
+ };
3401
+ digitalConfig: {
3402
+ templateId: "minimal" | "bold" | "card";
3403
+ accentColor: string;
3404
+ fontKey: string;
3405
+ showAvatar: boolean;
3406
+ primaryColor?: string | undefined;
3407
+ secondaryColor?: string | undefined;
3408
+ textColor?: string | undefined;
3409
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3410
+ visibility?: {
3411
+ showName?: boolean | undefined;
3412
+ showPosition?: boolean | undefined;
3413
+ showEmail?: boolean | undefined;
3414
+ showPhone?: boolean | undefined;
3415
+ showCompany?: boolean | undefined;
3416
+ showLogo?: boolean | undefined;
3417
+ showLocation?: boolean | undefined;
3418
+ showWebsite?: boolean | undefined;
3419
+ showBio?: boolean | undefined;
3420
+ showSocialLinks?: boolean | undefined;
3421
+ } | undefined;
3422
+ socialOverrides?: {
3423
+ facebook?: string | undefined;
3424
+ linkedin?: string | undefined;
3425
+ instagram?: string | undefined;
3426
+ youtube?: string | undefined;
3427
+ tiktok?: string | undefined;
3428
+ customUrl?: string | undefined;
3429
+ customUrlLabel?: string | undefined;
3430
+ } | undefined;
3431
+ };
3432
+ label: string;
3433
+ cardId?: string | undefined;
3434
+ icon?: string | undefined;
3435
+ accessPin?: string | undefined;
3436
+ }, {
3437
+ userData: {
3438
+ firstName?: string | undefined;
3439
+ lastName?: string | undefined;
3440
+ position?: string | undefined;
3441
+ email?: string | undefined;
3442
+ phone?: string | undefined;
3443
+ phoneCountryCode?: string | undefined;
3444
+ location?: string | undefined;
3445
+ company?: string | undefined;
3446
+ website?: string | undefined;
3447
+ bio?: string | undefined;
3448
+ profilePhotoUrl?: string | undefined;
3449
+ companyLogoUrl?: string | undefined;
3450
+ socialLinks?: {
3451
+ facebook?: string | undefined;
3452
+ linkedin?: string | undefined;
3453
+ instagram?: string | undefined;
3454
+ x?: string | undefined;
3455
+ youtube?: string | undefined;
3456
+ tiktok?: string | undefined;
3457
+ customUrl?: string | undefined;
3458
+ customUrlLabel?: string | undefined;
3459
+ } | undefined;
3460
+ };
3461
+ digitalConfig: {
3462
+ templateId: "minimal" | "bold" | "card";
3463
+ accentColor: string;
3464
+ fontKey: string;
3465
+ showAvatar: boolean;
3466
+ primaryColor?: string | undefined;
3467
+ secondaryColor?: string | undefined;
3468
+ textColor?: string | undefined;
3469
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3470
+ visibility?: {
3471
+ showName?: boolean | undefined;
3472
+ showPosition?: boolean | undefined;
3473
+ showEmail?: boolean | undefined;
3474
+ showPhone?: boolean | undefined;
3475
+ showCompany?: boolean | undefined;
3476
+ showLogo?: boolean | undefined;
3477
+ showLocation?: boolean | undefined;
3478
+ showWebsite?: boolean | undefined;
3479
+ showBio?: boolean | undefined;
3480
+ showSocialLinks?: boolean | undefined;
3481
+ } | undefined;
3482
+ socialOverrides?: {
3483
+ facebook?: string | undefined;
3484
+ linkedin?: string | undefined;
3485
+ instagram?: string | undefined;
3486
+ youtube?: string | undefined;
3487
+ tiktok?: string | undefined;
3488
+ customUrl?: string | undefined;
3489
+ customUrlLabel?: string | undefined;
3490
+ } | undefined;
3491
+ };
3492
+ label: string;
3493
+ visibility?: "public" | "private" | "link_only" | undefined;
3494
+ cardId?: string | undefined;
3495
+ icon?: string | undefined;
3496
+ accessPin?: string | undefined;
3497
+ }>;
3498
+ declare const signupWithProfileSchema: z.ZodObject<{
3499
+ email: z.ZodString;
3500
+ password: z.ZodString;
3501
+ name: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3502
+ acceptedTerms: z.ZodLiteral<true>;
3503
+ marketingOptIn: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3504
+ captchaToken: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3505
+ preferredLanguage: z.ZodDefault<z.ZodOptional<z.ZodEnum<["hu", "en"]>>>;
3506
+ label: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3507
+ userData: z.ZodObject<{
3508
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3509
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3510
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3511
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3512
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3513
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3514
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3515
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
3516
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3517
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3518
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3519
+ socialLinks: z.ZodOptional<z.ZodObject<{
3520
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3521
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3522
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3523
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3524
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3525
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3526
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3527
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3528
+ }, "strip", z.ZodTypeAny, {
3529
+ facebook: string;
3530
+ linkedin: string;
3531
+ instagram: string;
3532
+ x: string;
3533
+ youtube: string;
3534
+ tiktok: string;
3535
+ customUrl: string;
3536
+ customUrlLabel: string;
3537
+ }, {
3538
+ facebook?: string | undefined;
3539
+ linkedin?: string | undefined;
3540
+ instagram?: string | undefined;
3541
+ x?: string | undefined;
3542
+ youtube?: string | undefined;
3543
+ tiktok?: string | undefined;
3544
+ customUrl?: string | undefined;
3545
+ customUrlLabel?: string | undefined;
3546
+ }>>;
3547
+ } & {
3548
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3549
+ }, "strip", z.ZodTypeAny, {
3550
+ firstName?: string | undefined;
3551
+ lastName?: string | undefined;
3552
+ position?: string | undefined;
3553
+ email?: string | undefined;
3554
+ phone?: string | undefined;
3555
+ phoneCountryCode?: string | undefined;
3556
+ location?: string | undefined;
3557
+ company?: string | undefined;
3558
+ website?: string | undefined;
3559
+ bio?: string | undefined;
3560
+ profilePhotoUrl?: string | undefined;
3561
+ companyLogoUrl?: string | undefined;
3562
+ socialLinks?: {
3563
+ facebook: string;
3564
+ linkedin: string;
3565
+ instagram: string;
3566
+ x: string;
3567
+ youtube: string;
3568
+ tiktok: string;
3569
+ customUrl: string;
3570
+ customUrlLabel: string;
3571
+ } | undefined;
3572
+ }, {
3573
+ firstName?: string | undefined;
3574
+ lastName?: string | undefined;
3575
+ position?: string | undefined;
3576
+ email?: string | undefined;
3577
+ phone?: string | undefined;
3578
+ phoneCountryCode?: string | undefined;
3579
+ location?: string | undefined;
3580
+ company?: string | undefined;
3581
+ website?: string | undefined;
3582
+ bio?: string | undefined;
3583
+ profilePhotoUrl?: string | undefined;
3584
+ companyLogoUrl?: string | undefined;
3585
+ socialLinks?: {
3586
+ facebook?: string | undefined;
3587
+ linkedin?: string | undefined;
3588
+ instagram?: string | undefined;
3589
+ x?: string | undefined;
3590
+ youtube?: string | undefined;
3591
+ tiktok?: string | undefined;
3592
+ customUrl?: string | undefined;
3593
+ customUrlLabel?: string | undefined;
3594
+ } | undefined;
3595
+ }>;
3596
+ digitalConfig: z.ZodObject<{
3597
+ templateId: z.ZodEnum<["minimal", "bold", "card"]>;
3598
+ accentColor: z.ZodString;
3599
+ primaryColor: z.ZodOptional<z.ZodString>;
3600
+ secondaryColor: z.ZodOptional<z.ZodString>;
3601
+ textColor: z.ZodOptional<z.ZodString>;
3602
+ fontKey: z.ZodString;
3603
+ showAvatar: z.ZodBoolean;
3604
+ avatarMode: z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>;
3605
+ visibility: z.ZodOptional<z.ZodObject<{
3606
+ showName: z.ZodOptional<z.ZodBoolean>;
3607
+ showPosition: z.ZodOptional<z.ZodBoolean>;
3608
+ showCompany: z.ZodOptional<z.ZodBoolean>;
3609
+ showEmail: z.ZodOptional<z.ZodBoolean>;
3610
+ showPhone: z.ZodOptional<z.ZodBoolean>;
3611
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
3612
+ showLocation: z.ZodOptional<z.ZodBoolean>;
3613
+ showBio: z.ZodOptional<z.ZodBoolean>;
3614
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
3615
+ showLogo: z.ZodOptional<z.ZodBoolean>;
3616
+ }, "strip", z.ZodTypeAny, {
3617
+ showName?: boolean | undefined;
3618
+ showPosition?: boolean | undefined;
3619
+ showEmail?: boolean | undefined;
3620
+ showPhone?: boolean | undefined;
3621
+ showCompany?: boolean | undefined;
3622
+ showLogo?: boolean | undefined;
3623
+ showLocation?: boolean | undefined;
3624
+ showWebsite?: boolean | undefined;
3625
+ showBio?: boolean | undefined;
3626
+ showSocialLinks?: boolean | undefined;
3627
+ }, {
3628
+ showName?: boolean | undefined;
3629
+ showPosition?: boolean | undefined;
3630
+ showEmail?: boolean | undefined;
3631
+ showPhone?: boolean | undefined;
3632
+ showCompany?: boolean | undefined;
3633
+ showLogo?: boolean | undefined;
3634
+ showLocation?: boolean | undefined;
3635
+ showWebsite?: boolean | undefined;
3636
+ showBio?: boolean | undefined;
3637
+ showSocialLinks?: boolean | undefined;
3638
+ }>>;
3639
+ socialOverrides: z.ZodOptional<z.ZodObject<{
3640
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3641
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3642
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3643
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3644
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3645
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3646
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3647
+ }, "strip", z.ZodTypeAny, {
3648
+ facebook?: string | undefined;
3649
+ linkedin?: string | undefined;
3650
+ instagram?: string | undefined;
3651
+ youtube?: string | undefined;
3652
+ tiktok?: string | undefined;
3653
+ customUrl?: string | undefined;
3654
+ customUrlLabel?: string | undefined;
3655
+ }, {
3656
+ facebook?: string | undefined;
3657
+ linkedin?: string | undefined;
3658
+ instagram?: string | undefined;
3659
+ youtube?: string | undefined;
3660
+ tiktok?: string | undefined;
3661
+ customUrl?: string | undefined;
3662
+ customUrlLabel?: string | undefined;
3663
+ }>>;
3664
+ }, "strip", z.ZodTypeAny, {
3665
+ templateId: "minimal" | "bold" | "card";
3666
+ accentColor: string;
3667
+ fontKey: string;
3668
+ showAvatar: boolean;
3669
+ primaryColor?: string | undefined;
3670
+ secondaryColor?: string | undefined;
3671
+ textColor?: string | undefined;
3672
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3673
+ visibility?: {
3674
+ showName?: boolean | undefined;
3675
+ showPosition?: boolean | undefined;
3676
+ showEmail?: boolean | undefined;
3677
+ showPhone?: boolean | undefined;
3678
+ showCompany?: boolean | undefined;
3679
+ showLogo?: boolean | undefined;
3680
+ showLocation?: boolean | undefined;
3681
+ showWebsite?: boolean | undefined;
3682
+ showBio?: boolean | undefined;
3683
+ showSocialLinks?: boolean | undefined;
3684
+ } | undefined;
3685
+ socialOverrides?: {
3686
+ facebook?: string | undefined;
3687
+ linkedin?: string | undefined;
3688
+ instagram?: string | undefined;
3689
+ youtube?: string | undefined;
3690
+ tiktok?: string | undefined;
3691
+ customUrl?: string | undefined;
3692
+ customUrlLabel?: string | undefined;
3693
+ } | undefined;
3694
+ }, {
3695
+ templateId: "minimal" | "bold" | "card";
3696
+ accentColor: string;
3697
+ fontKey: string;
3698
+ showAvatar: boolean;
3699
+ primaryColor?: string | undefined;
3700
+ secondaryColor?: string | undefined;
3701
+ textColor?: string | undefined;
3702
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3703
+ visibility?: {
3704
+ showName?: boolean | undefined;
3705
+ showPosition?: boolean | undefined;
3706
+ showEmail?: boolean | undefined;
3707
+ showPhone?: boolean | undefined;
3708
+ showCompany?: boolean | undefined;
3709
+ showLogo?: boolean | undefined;
3710
+ showLocation?: boolean | undefined;
3711
+ showWebsite?: boolean | undefined;
3712
+ showBio?: boolean | undefined;
3713
+ showSocialLinks?: boolean | undefined;
3714
+ } | undefined;
3715
+ socialOverrides?: {
3716
+ facebook?: string | undefined;
3717
+ linkedin?: string | undefined;
3718
+ instagram?: string | undefined;
3719
+ youtube?: string | undefined;
3720
+ tiktok?: string | undefined;
3721
+ customUrl?: string | undefined;
3722
+ customUrlLabel?: string | undefined;
3723
+ } | undefined;
3724
+ }>;
3725
+ }, "strip", z.ZodTypeAny, {
3726
+ email: string;
3727
+ userData: {
3728
+ firstName?: string | undefined;
3729
+ lastName?: string | undefined;
3730
+ position?: string | undefined;
3731
+ email?: string | undefined;
3732
+ phone?: string | undefined;
3733
+ phoneCountryCode?: string | undefined;
3734
+ location?: string | undefined;
3735
+ company?: string | undefined;
3736
+ website?: string | undefined;
3737
+ bio?: string | undefined;
3738
+ profilePhotoUrl?: string | undefined;
3739
+ companyLogoUrl?: string | undefined;
3740
+ socialLinks?: {
3741
+ facebook: string;
3742
+ linkedin: string;
3743
+ instagram: string;
3744
+ x: string;
3745
+ youtube: string;
3746
+ tiktok: string;
3747
+ customUrl: string;
3748
+ customUrlLabel: string;
3749
+ } | undefined;
3750
+ };
3751
+ digitalConfig: {
3752
+ templateId: "minimal" | "bold" | "card";
3753
+ accentColor: string;
3754
+ fontKey: string;
3755
+ showAvatar: boolean;
3756
+ primaryColor?: string | undefined;
3757
+ secondaryColor?: string | undefined;
3758
+ textColor?: string | undefined;
3759
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3760
+ visibility?: {
3761
+ showName?: boolean | undefined;
3762
+ showPosition?: boolean | undefined;
3763
+ showEmail?: boolean | undefined;
3764
+ showPhone?: boolean | undefined;
3765
+ showCompany?: boolean | undefined;
3766
+ showLogo?: boolean | undefined;
3767
+ showLocation?: boolean | undefined;
3768
+ showWebsite?: boolean | undefined;
3769
+ showBio?: boolean | undefined;
3770
+ showSocialLinks?: boolean | undefined;
3771
+ } | undefined;
3772
+ socialOverrides?: {
3773
+ facebook?: string | undefined;
3774
+ linkedin?: string | undefined;
3775
+ instagram?: string | undefined;
3776
+ youtube?: string | undefined;
3777
+ tiktok?: string | undefined;
3778
+ customUrl?: string | undefined;
3779
+ customUrlLabel?: string | undefined;
3780
+ } | undefined;
3781
+ };
3782
+ password: string;
3783
+ acceptedTerms: true;
3784
+ marketingOptIn: boolean;
3785
+ preferredLanguage: "hu" | "en";
3786
+ label?: string | undefined;
3787
+ name?: string | undefined;
3788
+ captchaToken?: string | undefined;
3789
+ }, {
3790
+ email: string;
3791
+ userData: {
3792
+ firstName?: string | undefined;
3793
+ lastName?: string | undefined;
3794
+ position?: string | undefined;
3795
+ email?: string | undefined;
3796
+ phone?: string | undefined;
3797
+ phoneCountryCode?: string | undefined;
3798
+ location?: string | undefined;
3799
+ company?: string | undefined;
3800
+ website?: string | undefined;
3801
+ bio?: string | undefined;
3802
+ profilePhotoUrl?: string | undefined;
3803
+ companyLogoUrl?: string | undefined;
3804
+ socialLinks?: {
3805
+ facebook?: string | undefined;
3806
+ linkedin?: string | undefined;
3807
+ instagram?: string | undefined;
3808
+ x?: string | undefined;
3809
+ youtube?: string | undefined;
3810
+ tiktok?: string | undefined;
3811
+ customUrl?: string | undefined;
3812
+ customUrlLabel?: string | undefined;
3813
+ } | undefined;
3814
+ };
3815
+ digitalConfig: {
3816
+ templateId: "minimal" | "bold" | "card";
3817
+ accentColor: string;
3818
+ fontKey: string;
3819
+ showAvatar: boolean;
3820
+ primaryColor?: string | undefined;
3821
+ secondaryColor?: string | undefined;
3822
+ textColor?: string | undefined;
3823
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
3824
+ visibility?: {
3825
+ showName?: boolean | undefined;
3826
+ showPosition?: boolean | undefined;
3827
+ showEmail?: boolean | undefined;
3828
+ showPhone?: boolean | undefined;
3829
+ showCompany?: boolean | undefined;
3830
+ showLogo?: boolean | undefined;
3831
+ showLocation?: boolean | undefined;
3832
+ showWebsite?: boolean | undefined;
3833
+ showBio?: boolean | undefined;
3834
+ showSocialLinks?: boolean | undefined;
3835
+ } | undefined;
3836
+ socialOverrides?: {
3837
+ facebook?: string | undefined;
3838
+ linkedin?: string | undefined;
3839
+ instagram?: string | undefined;
3840
+ youtube?: string | undefined;
3841
+ tiktok?: string | undefined;
3842
+ customUrl?: string | undefined;
3843
+ customUrlLabel?: string | undefined;
3844
+ } | undefined;
3845
+ };
3846
+ password: string;
3847
+ acceptedTerms: true;
3848
+ label?: string | undefined;
3849
+ name?: string | undefined;
3850
+ marketingOptIn?: boolean | undefined;
3851
+ captchaToken?: string | undefined;
3852
+ preferredLanguage?: "hu" | "en" | undefined;
3853
+ }>;
3854
+ declare const profileUpdateSchema: z.ZodObject<{
3855
+ label: z.ZodOptional<z.ZodString>;
3856
+ icon: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3857
+ userData: z.ZodOptional<z.ZodObject<{
3858
+ firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3859
+ lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3860
+ position: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3861
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3862
+ phoneCountryCode: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3863
+ location: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3864
+ company: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3865
+ website: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
3866
+ bio: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3867
+ profilePhotoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3868
+ companyLogoUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3869
+ socialLinks: z.ZodOptional<z.ZodObject<{
3870
+ facebook: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3871
+ linkedin: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3872
+ instagram: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3873
+ x: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3874
+ youtube: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3875
+ tiktok: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3876
+ customUrl: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3877
+ customUrlLabel: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
3878
+ }, "strip", z.ZodTypeAny, {
3879
+ facebook: string;
3880
+ linkedin: string;
3881
+ instagram: string;
3882
+ x: string;
3883
+ youtube: string;
3884
+ tiktok: string;
3885
+ customUrl: string;
3886
+ customUrlLabel: string;
3887
+ }, {
3888
+ facebook?: string | undefined;
3889
+ linkedin?: string | undefined;
3890
+ instagram?: string | undefined;
3891
+ x?: string | undefined;
3892
+ youtube?: string | undefined;
3893
+ tiktok?: string | undefined;
3894
+ customUrl?: string | undefined;
3895
+ customUrlLabel?: string | undefined;
3896
+ }>>;
3897
+ } & {
3898
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3899
+ }, "strip", z.ZodTypeAny, {
3900
+ firstName?: string | undefined;
3901
+ lastName?: string | undefined;
3902
+ position?: string | undefined;
3903
+ email?: string | undefined;
3904
+ phone?: string | undefined;
3905
+ phoneCountryCode?: string | undefined;
3906
+ location?: string | undefined;
3907
+ company?: string | undefined;
3908
+ website?: string | undefined;
3909
+ bio?: string | undefined;
3910
+ profilePhotoUrl?: string | undefined;
3911
+ companyLogoUrl?: string | undefined;
3912
+ socialLinks?: {
3913
+ facebook: string;
3914
+ linkedin: string;
3915
+ instagram: string;
3916
+ x: string;
3917
+ youtube: string;
3918
+ tiktok: string;
3919
+ customUrl: string;
3920
+ customUrlLabel: string;
3921
+ } | undefined;
3922
+ }, {
3923
+ firstName?: string | undefined;
3924
+ lastName?: string | undefined;
3925
+ position?: string | undefined;
3926
+ email?: string | undefined;
3927
+ phone?: string | undefined;
3928
+ phoneCountryCode?: string | undefined;
3929
+ location?: string | undefined;
3930
+ company?: string | undefined;
3931
+ website?: string | undefined;
3932
+ bio?: string | undefined;
3933
+ profilePhotoUrl?: string | undefined;
3934
+ companyLogoUrl?: string | undefined;
3935
+ socialLinks?: {
3936
+ facebook?: string | undefined;
3937
+ linkedin?: string | undefined;
3938
+ instagram?: string | undefined;
3939
+ x?: string | undefined;
3940
+ youtube?: string | undefined;
3941
+ tiktok?: string | undefined;
3942
+ customUrl?: string | undefined;
3943
+ customUrlLabel?: string | undefined;
3944
+ } | undefined;
3945
+ }>>;
3946
+ digitalConfig: z.ZodOptional<z.ZodObject<{
3947
+ templateId: z.ZodOptional<z.ZodOptional<z.ZodEnum<["minimal", "bold", "card"]>>>;
3948
+ accentColor: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3949
+ primaryColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3950
+ secondaryColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3951
+ textColor: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
3952
+ fontKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3953
+ showAvatar: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
3954
+ avatarMode: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodEnum<["photo", "monogram", "none"]>>>>;
3955
+ visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
3956
+ showName: z.ZodOptional<z.ZodBoolean>;
3957
+ showPosition: z.ZodOptional<z.ZodBoolean>;
3958
+ showCompany: z.ZodOptional<z.ZodBoolean>;
3959
+ showEmail: z.ZodOptional<z.ZodBoolean>;
3960
+ showPhone: z.ZodOptional<z.ZodBoolean>;
3961
+ showWebsite: z.ZodOptional<z.ZodBoolean>;
3962
+ showLocation: z.ZodOptional<z.ZodBoolean>;
3963
+ showBio: z.ZodOptional<z.ZodBoolean>;
3964
+ showSocialLinks: z.ZodOptional<z.ZodBoolean>;
3965
+ showLogo: z.ZodOptional<z.ZodBoolean>;
3966
+ }, "strip", z.ZodTypeAny, {
3967
+ showName?: boolean | undefined;
3968
+ showPosition?: boolean | undefined;
3969
+ showEmail?: boolean | undefined;
3970
+ showPhone?: boolean | undefined;
3971
+ showCompany?: boolean | undefined;
3972
+ showLogo?: boolean | undefined;
3973
+ showLocation?: boolean | undefined;
3974
+ showWebsite?: boolean | undefined;
3975
+ showBio?: boolean | undefined;
3976
+ showSocialLinks?: boolean | undefined;
3977
+ }, {
3978
+ showName?: boolean | undefined;
3979
+ showPosition?: boolean | undefined;
3980
+ showEmail?: boolean | undefined;
3981
+ showPhone?: boolean | undefined;
3982
+ showCompany?: boolean | undefined;
3983
+ showLogo?: boolean | undefined;
3984
+ showLocation?: boolean | undefined;
3985
+ showWebsite?: boolean | undefined;
3986
+ showBio?: boolean | undefined;
3987
+ showSocialLinks?: boolean | undefined;
3988
+ }>>>>;
3989
+ socialOverrides: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
3990
+ facebook: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3991
+ linkedin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3992
+ instagram: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3993
+ youtube: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3994
+ tiktok: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3995
+ customUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3996
+ customUrlLabel: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
3997
+ }, "strip", z.ZodTypeAny, {
3998
+ facebook?: string | undefined;
3999
+ linkedin?: string | undefined;
4000
+ instagram?: string | undefined;
4001
+ youtube?: string | undefined;
4002
+ tiktok?: string | undefined;
4003
+ customUrl?: string | undefined;
4004
+ customUrlLabel?: string | undefined;
4005
+ }, {
4006
+ facebook?: string | undefined;
4007
+ linkedin?: string | undefined;
4008
+ instagram?: string | undefined;
4009
+ youtube?: string | undefined;
4010
+ tiktok?: string | undefined;
4011
+ customUrl?: string | undefined;
4012
+ customUrlLabel?: string | undefined;
4013
+ }>>>>;
4014
+ profilePhotoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
4015
+ companyLogoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
4016
+ }, "strip", z.ZodTypeAny, {
4017
+ profilePhotoUrl?: string | undefined;
4018
+ companyLogoUrl?: string | undefined;
4019
+ templateId?: "minimal" | "bold" | "card" | undefined;
4020
+ accentColor?: string | undefined;
4021
+ primaryColor?: string | undefined;
4022
+ secondaryColor?: string | undefined;
4023
+ textColor?: string | undefined;
4024
+ fontKey?: string | undefined;
4025
+ showAvatar?: boolean | undefined;
4026
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
4027
+ visibility?: {
4028
+ showName?: boolean | undefined;
4029
+ showPosition?: boolean | undefined;
4030
+ showEmail?: boolean | undefined;
4031
+ showPhone?: boolean | undefined;
4032
+ showCompany?: boolean | undefined;
4033
+ showLogo?: boolean | undefined;
4034
+ showLocation?: boolean | undefined;
4035
+ showWebsite?: boolean | undefined;
4036
+ showBio?: boolean | undefined;
4037
+ showSocialLinks?: boolean | undefined;
4038
+ } | undefined;
4039
+ socialOverrides?: {
4040
+ facebook?: string | undefined;
4041
+ linkedin?: string | undefined;
4042
+ instagram?: string | undefined;
4043
+ youtube?: string | undefined;
4044
+ tiktok?: string | undefined;
4045
+ customUrl?: string | undefined;
4046
+ customUrlLabel?: string | undefined;
4047
+ } | undefined;
4048
+ }, {
4049
+ profilePhotoUrl?: string | undefined;
4050
+ companyLogoUrl?: string | undefined;
4051
+ templateId?: "minimal" | "bold" | "card" | undefined;
4052
+ accentColor?: string | undefined;
4053
+ primaryColor?: string | undefined;
4054
+ secondaryColor?: string | undefined;
4055
+ textColor?: string | undefined;
4056
+ fontKey?: string | undefined;
4057
+ showAvatar?: boolean | undefined;
4058
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
4059
+ visibility?: {
4060
+ showName?: boolean | undefined;
4061
+ showPosition?: boolean | undefined;
4062
+ showEmail?: boolean | undefined;
4063
+ showPhone?: boolean | undefined;
4064
+ showCompany?: boolean | undefined;
4065
+ showLogo?: boolean | undefined;
4066
+ showLocation?: boolean | undefined;
4067
+ showWebsite?: boolean | undefined;
4068
+ showBio?: boolean | undefined;
4069
+ showSocialLinks?: boolean | undefined;
4070
+ } | undefined;
4071
+ socialOverrides?: {
4072
+ facebook?: string | undefined;
4073
+ linkedin?: string | undefined;
4074
+ instagram?: string | undefined;
4075
+ youtube?: string | undefined;
4076
+ tiktok?: string | undefined;
4077
+ customUrl?: string | undefined;
4078
+ customUrlLabel?: string | undefined;
4079
+ } | undefined;
4080
+ }>>;
4081
+ visibility: z.ZodOptional<z.ZodEnum<["public", "private", "link_only"]>>;
4082
+ accessPin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4083
+ }, "strip", z.ZodTypeAny, {
4084
+ visibility?: "public" | "private" | "link_only" | undefined;
4085
+ userData?: {
4086
+ firstName?: string | undefined;
4087
+ lastName?: string | undefined;
4088
+ position?: string | undefined;
4089
+ email?: string | undefined;
4090
+ phone?: string | undefined;
4091
+ phoneCountryCode?: string | undefined;
4092
+ location?: string | undefined;
4093
+ company?: string | undefined;
4094
+ website?: string | undefined;
4095
+ bio?: string | undefined;
4096
+ profilePhotoUrl?: string | undefined;
4097
+ companyLogoUrl?: string | undefined;
4098
+ socialLinks?: {
4099
+ facebook: string;
4100
+ linkedin: string;
4101
+ instagram: string;
4102
+ x: string;
4103
+ youtube: string;
4104
+ tiktok: string;
4105
+ customUrl: string;
4106
+ customUrlLabel: string;
4107
+ } | undefined;
4108
+ } | undefined;
4109
+ digitalConfig?: {
4110
+ profilePhotoUrl?: string | undefined;
4111
+ companyLogoUrl?: string | undefined;
4112
+ templateId?: "minimal" | "bold" | "card" | undefined;
4113
+ accentColor?: string | undefined;
4114
+ primaryColor?: string | undefined;
4115
+ secondaryColor?: string | undefined;
4116
+ textColor?: string | undefined;
4117
+ fontKey?: string | undefined;
4118
+ showAvatar?: boolean | undefined;
4119
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
4120
+ visibility?: {
4121
+ showName?: boolean | undefined;
4122
+ showPosition?: boolean | undefined;
4123
+ showEmail?: boolean | undefined;
4124
+ showPhone?: boolean | undefined;
4125
+ showCompany?: boolean | undefined;
4126
+ showLogo?: boolean | undefined;
4127
+ showLocation?: boolean | undefined;
4128
+ showWebsite?: boolean | undefined;
4129
+ showBio?: boolean | undefined;
4130
+ showSocialLinks?: boolean | undefined;
4131
+ } | undefined;
4132
+ socialOverrides?: {
4133
+ facebook?: string | undefined;
4134
+ linkedin?: string | undefined;
4135
+ instagram?: string | undefined;
4136
+ youtube?: string | undefined;
4137
+ tiktok?: string | undefined;
4138
+ customUrl?: string | undefined;
4139
+ customUrlLabel?: string | undefined;
4140
+ } | undefined;
4141
+ } | undefined;
4142
+ label?: string | undefined;
4143
+ icon?: string | undefined;
4144
+ accessPin?: string | undefined;
4145
+ }, {
4146
+ visibility?: "public" | "private" | "link_only" | undefined;
4147
+ userData?: {
4148
+ firstName?: string | undefined;
4149
+ lastName?: string | undefined;
4150
+ position?: string | undefined;
4151
+ email?: string | undefined;
4152
+ phone?: string | undefined;
4153
+ phoneCountryCode?: string | undefined;
4154
+ location?: string | undefined;
4155
+ company?: string | undefined;
4156
+ website?: string | undefined;
4157
+ bio?: string | undefined;
4158
+ profilePhotoUrl?: string | undefined;
4159
+ companyLogoUrl?: string | undefined;
4160
+ socialLinks?: {
4161
+ facebook?: string | undefined;
4162
+ linkedin?: string | undefined;
4163
+ instagram?: string | undefined;
4164
+ x?: string | undefined;
4165
+ youtube?: string | undefined;
4166
+ tiktok?: string | undefined;
4167
+ customUrl?: string | undefined;
4168
+ customUrlLabel?: string | undefined;
4169
+ } | undefined;
4170
+ } | undefined;
4171
+ digitalConfig?: {
4172
+ profilePhotoUrl?: string | undefined;
4173
+ companyLogoUrl?: string | undefined;
4174
+ templateId?: "minimal" | "bold" | "card" | undefined;
4175
+ accentColor?: string | undefined;
4176
+ primaryColor?: string | undefined;
4177
+ secondaryColor?: string | undefined;
4178
+ textColor?: string | undefined;
4179
+ fontKey?: string | undefined;
4180
+ showAvatar?: boolean | undefined;
4181
+ avatarMode?: "photo" | "monogram" | "none" | undefined;
4182
+ visibility?: {
4183
+ showName?: boolean | undefined;
4184
+ showPosition?: boolean | undefined;
4185
+ showEmail?: boolean | undefined;
4186
+ showPhone?: boolean | undefined;
4187
+ showCompany?: boolean | undefined;
4188
+ showLogo?: boolean | undefined;
4189
+ showLocation?: boolean | undefined;
4190
+ showWebsite?: boolean | undefined;
4191
+ showBio?: boolean | undefined;
4192
+ showSocialLinks?: boolean | undefined;
4193
+ } | undefined;
4194
+ socialOverrides?: {
4195
+ facebook?: string | undefined;
4196
+ linkedin?: string | undefined;
4197
+ instagram?: string | undefined;
4198
+ youtube?: string | undefined;
4199
+ tiktok?: string | undefined;
4200
+ customUrl?: string | undefined;
4201
+ customUrlLabel?: string | undefined;
4202
+ } | undefined;
4203
+ } | undefined;
4204
+ label?: string | undefined;
4205
+ icon?: string | undefined;
4206
+ accessPin?: string | undefined;
4207
+ }>;
4208
+ declare const profilePinVerifySchema: z.ZodObject<{
4209
+ pin: z.ZodString;
4210
+ }, "strip", z.ZodTypeAny, {
4211
+ pin: string;
4212
+ }, {
4213
+ pin: string;
4214
+ }>;
4215
+ declare const profileAccessTokenCreateSchema: z.ZodObject<{
4216
+ label: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4217
+ expiresAt: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4218
+ }, "strip", z.ZodTypeAny, {
4219
+ label?: string | undefined;
4220
+ expiresAt?: string | undefined;
4221
+ }, {
4222
+ label?: string | undefined;
4223
+ expiresAt?: string | undefined;
4224
+ }>;
4225
+ declare const cardProfileUpdateSchema: z.ZodObject<{
4226
+ profiles: z.ZodArray<z.ZodObject<{
4227
+ profileId: z.ZodString;
4228
+ sortOrder: z.ZodNumber;
4229
+ isDefault: z.ZodBoolean;
4230
+ }, "strip", z.ZodTypeAny, {
4231
+ profileId: string;
4232
+ sortOrder: number;
4233
+ isDefault: boolean;
4234
+ }, {
4235
+ profileId: string;
4236
+ sortOrder: number;
4237
+ isDefault: boolean;
4238
+ }>, "many">;
4239
+ }, "strip", z.ZodTypeAny, {
4240
+ profiles: {
4241
+ profileId: string;
4242
+ sortOrder: number;
4243
+ isDefault: boolean;
4244
+ }[];
4245
+ }, {
4246
+ profiles: {
4247
+ profileId: string;
4248
+ sortOrder: number;
4249
+ isDefault: boolean;
4250
+ }[];
4251
+ }>;
4252
+ declare const hubConfigSchema: z.ZodObject<{
4253
+ displayName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4254
+ subtitle: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4255
+ avatarMode: z.ZodOptional<z.ZodEnum<["auto", "image", "monogram"]>>;
4256
+ avatarUrl: z.ZodUnion<[z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>, z.ZodLiteral<"">]>;
4257
+ monogramText: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4258
+ accentColor: z.ZodOptional<z.ZodString>;
4259
+ backgroundColor: z.ZodOptional<z.ZodString>;
4260
+ textColor: z.ZodOptional<z.ZodString>;
4261
+ tileBackgroundColor: z.ZodOptional<z.ZodString>;
4262
+ tileBorderColor: z.ZodOptional<z.ZodString>;
4263
+ fontKey: z.ZodOptional<z.ZodString>;
4264
+ footerText: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4265
+ }, "strip", z.ZodTypeAny, {
4266
+ displayName?: string | undefined;
4267
+ accentColor?: string | undefined;
4268
+ textColor?: string | undefined;
4269
+ fontKey?: string | undefined;
4270
+ avatarMode?: "monogram" | "auto" | "image" | undefined;
4271
+ subtitle?: string | undefined;
4272
+ avatarUrl?: string | undefined;
4273
+ monogramText?: string | undefined;
4274
+ backgroundColor?: string | undefined;
4275
+ tileBackgroundColor?: string | undefined;
4276
+ tileBorderColor?: string | undefined;
4277
+ footerText?: string | undefined;
4278
+ }, {
4279
+ displayName?: string | undefined;
4280
+ accentColor?: string | undefined;
4281
+ textColor?: string | undefined;
4282
+ fontKey?: string | undefined;
4283
+ avatarMode?: "monogram" | "auto" | "image" | undefined;
4284
+ subtitle?: string | undefined;
4285
+ avatarUrl?: string | undefined;
4286
+ monogramText?: string | undefined;
4287
+ backgroundColor?: string | undefined;
4288
+ tileBackgroundColor?: string | undefined;
4289
+ tileBorderColor?: string | undefined;
4290
+ footerText?: string | undefined;
4291
+ }>;
4292
+ declare const hubProfilesUpdateSchema: z.ZodObject<{
4293
+ profiles: z.ZodArray<z.ZodObject<{
4294
+ profileId: z.ZodString;
4295
+ sortOrder: z.ZodNumber;
4296
+ isDefault: z.ZodOptional<z.ZodBoolean>;
4297
+ hiddenFromHub: z.ZodOptional<z.ZodBoolean>;
4298
+ }, "strip", z.ZodTypeAny, {
4299
+ profileId: string;
4300
+ sortOrder: number;
4301
+ isDefault?: boolean | undefined;
4302
+ hiddenFromHub?: boolean | undefined;
4303
+ }, {
4304
+ profileId: string;
4305
+ sortOrder: number;
4306
+ isDefault?: boolean | undefined;
4307
+ hiddenFromHub?: boolean | undefined;
4308
+ }>, "many">;
4309
+ }, "strip", z.ZodTypeAny, {
4310
+ profiles: {
4311
+ profileId: string;
4312
+ sortOrder: number;
4313
+ isDefault?: boolean | undefined;
4314
+ hiddenFromHub?: boolean | undefined;
4315
+ }[];
4316
+ }, {
4317
+ profiles: {
4318
+ profileId: string;
4319
+ sortOrder: number;
4320
+ isDefault?: boolean | undefined;
4321
+ hiddenFromHub?: boolean | undefined;
4322
+ }[];
4323
+ }>;
4324
+ declare const contactExchangeSchema: z.ZodObject<{
4325
+ name: z.ZodString;
4326
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4327
+ phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4328
+ notes: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
4329
+ }, "strip", z.ZodTypeAny, {
4330
+ name: string;
4331
+ email?: string | undefined;
4332
+ phone?: string | undefined;
4333
+ notes?: string | undefined;
4334
+ }, {
4335
+ name: string;
4336
+ email?: string | undefined;
4337
+ phone?: string | undefined;
4338
+ notes?: string | undefined;
4339
+ }>;
4340
+ type ValidationResult<T> = {
4341
+ success: true;
4342
+ data: T;
4343
+ } | {
4344
+ success: false;
4345
+ errors: Record<string, string>;
4346
+ };
4347
+ declare function validateUserData(data: unknown): ValidationResult<z.infer<typeof userDataSchema>>;
4348
+ declare function validatePhysicalConfig(data: unknown): ValidationResult<z.infer<typeof physicalConfigSchema>>;
4349
+ declare function validateDigitalConfig(data: unknown): ValidationResult<z.infer<typeof digitalConfigSchema>>;
4350
+ declare function validateConfiguration(data: unknown): ValidationResult<z.infer<typeof configurationCreateSchema>>;
4351
+
4352
+ export { type ValidationResult, adminCardCreateSchema, cardElementsSchema, cardProfileUpdateSchema, cardUpdateSchema, comboIdSchema, configurationCreateSchema, configurationUpdateSchema, contactDetailTogglesSchema, contactExchangeSchema, createOrderSchema, digitalConfigSchema, digitalVisibilitySchema, hubConfigSchema, hubProfilesUpdateSchema, materialSchema, physicalConfigSchema, physicalContentOverridesSchema, profileAccessTokenCreateSchema, profileCreateSchema, profilePinVerifySchema, profileUpdateSchema, profileUserDataSchema, profileVisibilitySchema, sanitizeHttpUrl, sanitizeText, signupWithProfileSchema, socialLinksSchema, userDataSchema, validateConfiguration, validateDigitalConfig, validatePhysicalConfig, validateUserData, webAddressSchema };