@nfcard/validation 0.6.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +279 -197
- package/dist/index.js +0 -0
- package/package.json +2 -2
- package/src/index.test.ts +76 -0
- package/src/index.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,34 @@ declare const socialLinksSchema: z.ZodObject<{
|
|
|
32
32
|
customUrl?: string | undefined;
|
|
33
33
|
customUrlLabel?: string | undefined;
|
|
34
34
|
}>;
|
|
35
|
+
declare const socialOverridesSchema: z.ZodObject<{
|
|
36
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
37
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
38
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
39
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
40
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
41
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
42
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
43
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
44
|
+
}, "strip", z.ZodTypeAny, {
|
|
45
|
+
facebook?: string | undefined;
|
|
46
|
+
linkedin?: string | undefined;
|
|
47
|
+
instagram?: string | undefined;
|
|
48
|
+
x?: string | undefined;
|
|
49
|
+
youtube?: string | undefined;
|
|
50
|
+
tiktok?: string | undefined;
|
|
51
|
+
customUrl?: string | undefined;
|
|
52
|
+
customUrlLabel?: string | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
facebook?: string | undefined;
|
|
55
|
+
linkedin?: string | undefined;
|
|
56
|
+
instagram?: string | undefined;
|
|
57
|
+
x?: string | undefined;
|
|
58
|
+
youtube?: string | undefined;
|
|
59
|
+
tiktok?: string | undefined;
|
|
60
|
+
customUrl?: string | undefined;
|
|
61
|
+
customUrlLabel?: string | undefined;
|
|
62
|
+
}>;
|
|
35
63
|
declare const userDataSchema: z.ZodObject<{
|
|
36
64
|
firstName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
37
65
|
lastName: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -197,9 +225,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
197
225
|
holeMinMm: z.ZodNumber;
|
|
198
226
|
holeMaxMm: z.ZodNumber;
|
|
199
227
|
intensity: z.ZodNumber;
|
|
200
|
-
cellShape: z.
|
|
228
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
201
229
|
cellRotationDeg: z.ZodNumber;
|
|
202
|
-
chipShape: z.
|
|
230
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
203
231
|
chipRotationDeg: z.ZodNumber;
|
|
204
232
|
}, "strip", z.ZodTypeAny, {
|
|
205
233
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -208,9 +236,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
208
236
|
holeMinMm: number;
|
|
209
237
|
holeMaxMm: number;
|
|
210
238
|
intensity: number;
|
|
211
|
-
cellShape:
|
|
239
|
+
cellShape: number;
|
|
212
240
|
cellRotationDeg: number;
|
|
213
|
-
chipShape:
|
|
241
|
+
chipShape: number;
|
|
214
242
|
chipRotationDeg: number;
|
|
215
243
|
}, {
|
|
216
244
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -219,9 +247,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
219
247
|
holeMinMm: number;
|
|
220
248
|
holeMaxMm: number;
|
|
221
249
|
intensity: number;
|
|
222
|
-
cellShape:
|
|
250
|
+
cellShape: number;
|
|
223
251
|
cellRotationDeg: number;
|
|
224
|
-
chipShape:
|
|
252
|
+
chipShape: number;
|
|
225
253
|
chipRotationDeg: number;
|
|
226
254
|
}>, {
|
|
227
255
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -230,9 +258,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
230
258
|
holeMinMm: number;
|
|
231
259
|
holeMaxMm: number;
|
|
232
260
|
intensity: number;
|
|
233
|
-
cellShape:
|
|
261
|
+
cellShape: number;
|
|
234
262
|
cellRotationDeg: number;
|
|
235
|
-
chipShape:
|
|
263
|
+
chipShape: number;
|
|
236
264
|
chipRotationDeg: number;
|
|
237
265
|
}, {
|
|
238
266
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -241,9 +269,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
241
269
|
holeMinMm: number;
|
|
242
270
|
holeMaxMm: number;
|
|
243
271
|
intensity: number;
|
|
244
|
-
cellShape:
|
|
272
|
+
cellShape: number;
|
|
245
273
|
cellRotationDeg: number;
|
|
246
|
-
chipShape:
|
|
274
|
+
chipShape: number;
|
|
247
275
|
chipRotationDeg: number;
|
|
248
276
|
}>;
|
|
249
277
|
declare const cardDesignSchema: z.ZodObject<{
|
|
@@ -258,9 +286,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
258
286
|
holeMinMm: z.ZodNumber;
|
|
259
287
|
holeMaxMm: z.ZodNumber;
|
|
260
288
|
intensity: z.ZodNumber;
|
|
261
|
-
cellShape: z.
|
|
289
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
262
290
|
cellRotationDeg: z.ZodNumber;
|
|
263
|
-
chipShape: z.
|
|
291
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
264
292
|
chipRotationDeg: z.ZodNumber;
|
|
265
293
|
}, "strip", z.ZodTypeAny, {
|
|
266
294
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -269,9 +297,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
269
297
|
holeMinMm: number;
|
|
270
298
|
holeMaxMm: number;
|
|
271
299
|
intensity: number;
|
|
272
|
-
cellShape:
|
|
300
|
+
cellShape: number;
|
|
273
301
|
cellRotationDeg: number;
|
|
274
|
-
chipShape:
|
|
302
|
+
chipShape: number;
|
|
275
303
|
chipRotationDeg: number;
|
|
276
304
|
}, {
|
|
277
305
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -280,9 +308,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
280
308
|
holeMinMm: number;
|
|
281
309
|
holeMaxMm: number;
|
|
282
310
|
intensity: number;
|
|
283
|
-
cellShape:
|
|
311
|
+
cellShape: number;
|
|
284
312
|
cellRotationDeg: number;
|
|
285
|
-
chipShape:
|
|
313
|
+
chipShape: number;
|
|
286
314
|
chipRotationDeg: number;
|
|
287
315
|
}>, {
|
|
288
316
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -291,9 +319,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
291
319
|
holeMinMm: number;
|
|
292
320
|
holeMaxMm: number;
|
|
293
321
|
intensity: number;
|
|
294
|
-
cellShape:
|
|
322
|
+
cellShape: number;
|
|
295
323
|
cellRotationDeg: number;
|
|
296
|
-
chipShape:
|
|
324
|
+
chipShape: number;
|
|
297
325
|
chipRotationDeg: number;
|
|
298
326
|
}, {
|
|
299
327
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -302,9 +330,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
302
330
|
holeMinMm: number;
|
|
303
331
|
holeMaxMm: number;
|
|
304
332
|
intensity: number;
|
|
305
|
-
cellShape:
|
|
333
|
+
cellShape: number;
|
|
306
334
|
cellRotationDeg: number;
|
|
307
|
-
chipShape:
|
|
335
|
+
chipShape: number;
|
|
308
336
|
chipRotationDeg: number;
|
|
309
337
|
}>>;
|
|
310
338
|
layout: z.ZodObject<{
|
|
@@ -407,9 +435,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
407
435
|
holeMinMm: number;
|
|
408
436
|
holeMaxMm: number;
|
|
409
437
|
intensity: number;
|
|
410
|
-
cellShape:
|
|
438
|
+
cellShape: number;
|
|
411
439
|
cellRotationDeg: number;
|
|
412
|
-
chipShape:
|
|
440
|
+
chipShape: number;
|
|
413
441
|
chipRotationDeg: number;
|
|
414
442
|
} | null;
|
|
415
443
|
layout: {
|
|
@@ -453,9 +481,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
453
481
|
holeMinMm: number;
|
|
454
482
|
holeMaxMm: number;
|
|
455
483
|
intensity: number;
|
|
456
|
-
cellShape:
|
|
484
|
+
cellShape: number;
|
|
457
485
|
cellRotationDeg: number;
|
|
458
|
-
chipShape:
|
|
486
|
+
chipShape: number;
|
|
459
487
|
chipRotationDeg: number;
|
|
460
488
|
} | null;
|
|
461
489
|
layout: {
|
|
@@ -615,9 +643,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
615
643
|
holeMinMm: z.ZodNumber;
|
|
616
644
|
holeMaxMm: z.ZodNumber;
|
|
617
645
|
intensity: z.ZodNumber;
|
|
618
|
-
cellShape: z.
|
|
646
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
619
647
|
cellRotationDeg: z.ZodNumber;
|
|
620
|
-
chipShape: z.
|
|
648
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
621
649
|
chipRotationDeg: z.ZodNumber;
|
|
622
650
|
}, "strip", z.ZodTypeAny, {
|
|
623
651
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -626,9 +654,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
626
654
|
holeMinMm: number;
|
|
627
655
|
holeMaxMm: number;
|
|
628
656
|
intensity: number;
|
|
629
|
-
cellShape:
|
|
657
|
+
cellShape: number;
|
|
630
658
|
cellRotationDeg: number;
|
|
631
|
-
chipShape:
|
|
659
|
+
chipShape: number;
|
|
632
660
|
chipRotationDeg: number;
|
|
633
661
|
}, {
|
|
634
662
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -637,9 +665,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
637
665
|
holeMinMm: number;
|
|
638
666
|
holeMaxMm: number;
|
|
639
667
|
intensity: number;
|
|
640
|
-
cellShape:
|
|
668
|
+
cellShape: number;
|
|
641
669
|
cellRotationDeg: number;
|
|
642
|
-
chipShape:
|
|
670
|
+
chipShape: number;
|
|
643
671
|
chipRotationDeg: number;
|
|
644
672
|
}>, {
|
|
645
673
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -648,9 +676,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
648
676
|
holeMinMm: number;
|
|
649
677
|
holeMaxMm: number;
|
|
650
678
|
intensity: number;
|
|
651
|
-
cellShape:
|
|
679
|
+
cellShape: number;
|
|
652
680
|
cellRotationDeg: number;
|
|
653
|
-
chipShape:
|
|
681
|
+
chipShape: number;
|
|
654
682
|
chipRotationDeg: number;
|
|
655
683
|
}, {
|
|
656
684
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -659,9 +687,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
659
687
|
holeMinMm: number;
|
|
660
688
|
holeMaxMm: number;
|
|
661
689
|
intensity: number;
|
|
662
|
-
cellShape:
|
|
690
|
+
cellShape: number;
|
|
663
691
|
cellRotationDeg: number;
|
|
664
|
-
chipShape:
|
|
692
|
+
chipShape: number;
|
|
665
693
|
chipRotationDeg: number;
|
|
666
694
|
}>>;
|
|
667
695
|
layout: z.ZodObject<{
|
|
@@ -764,9 +792,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
764
792
|
holeMinMm: number;
|
|
765
793
|
holeMaxMm: number;
|
|
766
794
|
intensity: number;
|
|
767
|
-
cellShape:
|
|
795
|
+
cellShape: number;
|
|
768
796
|
cellRotationDeg: number;
|
|
769
|
-
chipShape:
|
|
797
|
+
chipShape: number;
|
|
770
798
|
chipRotationDeg: number;
|
|
771
799
|
} | null;
|
|
772
800
|
layout: {
|
|
@@ -810,9 +838,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
810
838
|
holeMinMm: number;
|
|
811
839
|
holeMaxMm: number;
|
|
812
840
|
intensity: number;
|
|
813
|
-
cellShape:
|
|
841
|
+
cellShape: number;
|
|
814
842
|
cellRotationDeg: number;
|
|
815
|
-
chipShape:
|
|
843
|
+
chipShape: number;
|
|
816
844
|
chipRotationDeg: number;
|
|
817
845
|
} | null;
|
|
818
846
|
layout: {
|
|
@@ -903,9 +931,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
903
931
|
holeMinMm: number;
|
|
904
932
|
holeMaxMm: number;
|
|
905
933
|
intensity: number;
|
|
906
|
-
cellShape:
|
|
934
|
+
cellShape: number;
|
|
907
935
|
cellRotationDeg: number;
|
|
908
|
-
chipShape:
|
|
936
|
+
chipShape: number;
|
|
909
937
|
chipRotationDeg: number;
|
|
910
938
|
} | null;
|
|
911
939
|
layout: {
|
|
@@ -996,9 +1024,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
996
1024
|
holeMinMm: number;
|
|
997
1025
|
holeMaxMm: number;
|
|
998
1026
|
intensity: number;
|
|
999
|
-
cellShape:
|
|
1027
|
+
cellShape: number;
|
|
1000
1028
|
cellRotationDeg: number;
|
|
1001
|
-
chipShape:
|
|
1029
|
+
chipShape: number;
|
|
1002
1030
|
chipRotationDeg: number;
|
|
1003
1031
|
} | null;
|
|
1004
1032
|
layout: {
|
|
@@ -1089,9 +1117,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1089
1117
|
holeMinMm: number;
|
|
1090
1118
|
holeMaxMm: number;
|
|
1091
1119
|
intensity: number;
|
|
1092
|
-
cellShape:
|
|
1120
|
+
cellShape: number;
|
|
1093
1121
|
cellRotationDeg: number;
|
|
1094
|
-
chipShape:
|
|
1122
|
+
chipShape: number;
|
|
1095
1123
|
chipRotationDeg: number;
|
|
1096
1124
|
} | null;
|
|
1097
1125
|
layout: {
|
|
@@ -1182,9 +1210,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1182
1210
|
holeMinMm: number;
|
|
1183
1211
|
holeMaxMm: number;
|
|
1184
1212
|
intensity: number;
|
|
1185
|
-
cellShape:
|
|
1213
|
+
cellShape: number;
|
|
1186
1214
|
cellRotationDeg: number;
|
|
1187
|
-
chipShape:
|
|
1215
|
+
chipShape: number;
|
|
1188
1216
|
chipRotationDeg: number;
|
|
1189
1217
|
} | null;
|
|
1190
1218
|
layout: {
|
|
@@ -1275,9 +1303,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1275
1303
|
holeMinMm: number;
|
|
1276
1304
|
holeMaxMm: number;
|
|
1277
1305
|
intensity: number;
|
|
1278
|
-
cellShape:
|
|
1306
|
+
cellShape: number;
|
|
1279
1307
|
cellRotationDeg: number;
|
|
1280
|
-
chipShape:
|
|
1308
|
+
chipShape: number;
|
|
1281
1309
|
chipRotationDeg: number;
|
|
1282
1310
|
} | null;
|
|
1283
1311
|
layout: {
|
|
@@ -1368,9 +1396,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1368
1396
|
holeMinMm: number;
|
|
1369
1397
|
holeMaxMm: number;
|
|
1370
1398
|
intensity: number;
|
|
1371
|
-
cellShape:
|
|
1399
|
+
cellShape: number;
|
|
1372
1400
|
cellRotationDeg: number;
|
|
1373
|
-
chipShape:
|
|
1401
|
+
chipShape: number;
|
|
1374
1402
|
chipRotationDeg: number;
|
|
1375
1403
|
} | null;
|
|
1376
1404
|
layout: {
|
|
@@ -1483,17 +1511,19 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1483
1511
|
showSocialLinks?: boolean | undefined;
|
|
1484
1512
|
}>>;
|
|
1485
1513
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
1486
|
-
facebook: z.
|
|
1487
|
-
linkedin: z.
|
|
1488
|
-
instagram: z.
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1514
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1515
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1516
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1517
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1518
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1519
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1520
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1521
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1493
1522
|
}, "strip", z.ZodTypeAny, {
|
|
1494
1523
|
facebook?: string | undefined;
|
|
1495
1524
|
linkedin?: string | undefined;
|
|
1496
1525
|
instagram?: string | undefined;
|
|
1526
|
+
x?: string | undefined;
|
|
1497
1527
|
youtube?: string | undefined;
|
|
1498
1528
|
tiktok?: string | undefined;
|
|
1499
1529
|
customUrl?: string | undefined;
|
|
@@ -1502,6 +1532,7 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1502
1532
|
facebook?: string | undefined;
|
|
1503
1533
|
linkedin?: string | undefined;
|
|
1504
1534
|
instagram?: string | undefined;
|
|
1535
|
+
x?: string | undefined;
|
|
1505
1536
|
youtube?: string | undefined;
|
|
1506
1537
|
tiktok?: string | undefined;
|
|
1507
1538
|
customUrl?: string | undefined;
|
|
@@ -1532,6 +1563,7 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1532
1563
|
facebook?: string | undefined;
|
|
1533
1564
|
linkedin?: string | undefined;
|
|
1534
1565
|
instagram?: string | undefined;
|
|
1566
|
+
x?: string | undefined;
|
|
1535
1567
|
youtube?: string | undefined;
|
|
1536
1568
|
tiktok?: string | undefined;
|
|
1537
1569
|
customUrl?: string | undefined;
|
|
@@ -1562,6 +1594,7 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1562
1594
|
facebook?: string | undefined;
|
|
1563
1595
|
linkedin?: string | undefined;
|
|
1564
1596
|
instagram?: string | undefined;
|
|
1597
|
+
x?: string | undefined;
|
|
1565
1598
|
youtube?: string | undefined;
|
|
1566
1599
|
tiktok?: string | undefined;
|
|
1567
1600
|
customUrl?: string | undefined;
|
|
@@ -1784,9 +1817,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1784
1817
|
holeMinMm: z.ZodNumber;
|
|
1785
1818
|
holeMaxMm: z.ZodNumber;
|
|
1786
1819
|
intensity: z.ZodNumber;
|
|
1787
|
-
cellShape: z.
|
|
1820
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1788
1821
|
cellRotationDeg: z.ZodNumber;
|
|
1789
|
-
chipShape: z.
|
|
1822
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1790
1823
|
chipRotationDeg: z.ZodNumber;
|
|
1791
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1792
1825
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1795,9 +1828,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1795
1828
|
holeMinMm: number;
|
|
1796
1829
|
holeMaxMm: number;
|
|
1797
1830
|
intensity: number;
|
|
1798
|
-
cellShape:
|
|
1831
|
+
cellShape: number;
|
|
1799
1832
|
cellRotationDeg: number;
|
|
1800
|
-
chipShape:
|
|
1833
|
+
chipShape: number;
|
|
1801
1834
|
chipRotationDeg: number;
|
|
1802
1835
|
}, {
|
|
1803
1836
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1806,9 +1839,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1806
1839
|
holeMinMm: number;
|
|
1807
1840
|
holeMaxMm: number;
|
|
1808
1841
|
intensity: number;
|
|
1809
|
-
cellShape:
|
|
1842
|
+
cellShape: number;
|
|
1810
1843
|
cellRotationDeg: number;
|
|
1811
|
-
chipShape:
|
|
1844
|
+
chipShape: number;
|
|
1812
1845
|
chipRotationDeg: number;
|
|
1813
1846
|
}>, {
|
|
1814
1847
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1817,9 +1850,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1817
1850
|
holeMinMm: number;
|
|
1818
1851
|
holeMaxMm: number;
|
|
1819
1852
|
intensity: number;
|
|
1820
|
-
cellShape:
|
|
1853
|
+
cellShape: number;
|
|
1821
1854
|
cellRotationDeg: number;
|
|
1822
|
-
chipShape:
|
|
1855
|
+
chipShape: number;
|
|
1823
1856
|
chipRotationDeg: number;
|
|
1824
1857
|
}, {
|
|
1825
1858
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1828,9 +1861,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1828
1861
|
holeMinMm: number;
|
|
1829
1862
|
holeMaxMm: number;
|
|
1830
1863
|
intensity: number;
|
|
1831
|
-
cellShape:
|
|
1864
|
+
cellShape: number;
|
|
1832
1865
|
cellRotationDeg: number;
|
|
1833
|
-
chipShape:
|
|
1866
|
+
chipShape: number;
|
|
1834
1867
|
chipRotationDeg: number;
|
|
1835
1868
|
}>>;
|
|
1836
1869
|
layout: z.ZodObject<{
|
|
@@ -1933,9 +1966,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1933
1966
|
holeMinMm: number;
|
|
1934
1967
|
holeMaxMm: number;
|
|
1935
1968
|
intensity: number;
|
|
1936
|
-
cellShape:
|
|
1969
|
+
cellShape: number;
|
|
1937
1970
|
cellRotationDeg: number;
|
|
1938
|
-
chipShape:
|
|
1971
|
+
chipShape: number;
|
|
1939
1972
|
chipRotationDeg: number;
|
|
1940
1973
|
} | null;
|
|
1941
1974
|
layout: {
|
|
@@ -1979,9 +2012,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1979
2012
|
holeMinMm: number;
|
|
1980
2013
|
holeMaxMm: number;
|
|
1981
2014
|
intensity: number;
|
|
1982
|
-
cellShape:
|
|
2015
|
+
cellShape: number;
|
|
1983
2016
|
cellRotationDeg: number;
|
|
1984
|
-
chipShape:
|
|
2017
|
+
chipShape: number;
|
|
1985
2018
|
chipRotationDeg: number;
|
|
1986
2019
|
} | null;
|
|
1987
2020
|
layout: {
|
|
@@ -2072,9 +2105,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2072
2105
|
holeMinMm: number;
|
|
2073
2106
|
holeMaxMm: number;
|
|
2074
2107
|
intensity: number;
|
|
2075
|
-
cellShape:
|
|
2108
|
+
cellShape: number;
|
|
2076
2109
|
cellRotationDeg: number;
|
|
2077
|
-
chipShape:
|
|
2110
|
+
chipShape: number;
|
|
2078
2111
|
chipRotationDeg: number;
|
|
2079
2112
|
} | null;
|
|
2080
2113
|
layout: {
|
|
@@ -2165,9 +2198,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2165
2198
|
holeMinMm: number;
|
|
2166
2199
|
holeMaxMm: number;
|
|
2167
2200
|
intensity: number;
|
|
2168
|
-
cellShape:
|
|
2201
|
+
cellShape: number;
|
|
2169
2202
|
cellRotationDeg: number;
|
|
2170
|
-
chipShape:
|
|
2203
|
+
chipShape: number;
|
|
2171
2204
|
chipRotationDeg: number;
|
|
2172
2205
|
} | null;
|
|
2173
2206
|
layout: {
|
|
@@ -2258,9 +2291,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2258
2291
|
holeMinMm: number;
|
|
2259
2292
|
holeMaxMm: number;
|
|
2260
2293
|
intensity: number;
|
|
2261
|
-
cellShape:
|
|
2294
|
+
cellShape: number;
|
|
2262
2295
|
cellRotationDeg: number;
|
|
2263
|
-
chipShape:
|
|
2296
|
+
chipShape: number;
|
|
2264
2297
|
chipRotationDeg: number;
|
|
2265
2298
|
} | null;
|
|
2266
2299
|
layout: {
|
|
@@ -2351,9 +2384,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2351
2384
|
holeMinMm: number;
|
|
2352
2385
|
holeMaxMm: number;
|
|
2353
2386
|
intensity: number;
|
|
2354
|
-
cellShape:
|
|
2387
|
+
cellShape: number;
|
|
2355
2388
|
cellRotationDeg: number;
|
|
2356
|
-
chipShape:
|
|
2389
|
+
chipShape: number;
|
|
2357
2390
|
chipRotationDeg: number;
|
|
2358
2391
|
} | null;
|
|
2359
2392
|
layout: {
|
|
@@ -2444,9 +2477,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2444
2477
|
holeMinMm: number;
|
|
2445
2478
|
holeMaxMm: number;
|
|
2446
2479
|
intensity: number;
|
|
2447
|
-
cellShape:
|
|
2480
|
+
cellShape: number;
|
|
2448
2481
|
cellRotationDeg: number;
|
|
2449
|
-
chipShape:
|
|
2482
|
+
chipShape: number;
|
|
2450
2483
|
chipRotationDeg: number;
|
|
2451
2484
|
} | null;
|
|
2452
2485
|
layout: {
|
|
@@ -2537,9 +2570,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2537
2570
|
holeMinMm: number;
|
|
2538
2571
|
holeMaxMm: number;
|
|
2539
2572
|
intensity: number;
|
|
2540
|
-
cellShape:
|
|
2573
|
+
cellShape: number;
|
|
2541
2574
|
cellRotationDeg: number;
|
|
2542
|
-
chipShape:
|
|
2575
|
+
chipShape: number;
|
|
2543
2576
|
chipRotationDeg: number;
|
|
2544
2577
|
} | null;
|
|
2545
2578
|
layout: {
|
|
@@ -2618,17 +2651,19 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2618
2651
|
showSocialLinks?: boolean | undefined;
|
|
2619
2652
|
}>>;
|
|
2620
2653
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
2621
|
-
facebook: z.
|
|
2622
|
-
linkedin: z.
|
|
2623
|
-
instagram: z.
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2654
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2655
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2656
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2657
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2658
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2659
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2660
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2661
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2628
2662
|
}, "strip", z.ZodTypeAny, {
|
|
2629
2663
|
facebook?: string | undefined;
|
|
2630
2664
|
linkedin?: string | undefined;
|
|
2631
2665
|
instagram?: string | undefined;
|
|
2666
|
+
x?: string | undefined;
|
|
2632
2667
|
youtube?: string | undefined;
|
|
2633
2668
|
tiktok?: string | undefined;
|
|
2634
2669
|
customUrl?: string | undefined;
|
|
@@ -2637,6 +2672,7 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2637
2672
|
facebook?: string | undefined;
|
|
2638
2673
|
linkedin?: string | undefined;
|
|
2639
2674
|
instagram?: string | undefined;
|
|
2675
|
+
x?: string | undefined;
|
|
2640
2676
|
youtube?: string | undefined;
|
|
2641
2677
|
tiktok?: string | undefined;
|
|
2642
2678
|
customUrl?: string | undefined;
|
|
@@ -2667,6 +2703,7 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2667
2703
|
facebook?: string | undefined;
|
|
2668
2704
|
linkedin?: string | undefined;
|
|
2669
2705
|
instagram?: string | undefined;
|
|
2706
|
+
x?: string | undefined;
|
|
2670
2707
|
youtube?: string | undefined;
|
|
2671
2708
|
tiktok?: string | undefined;
|
|
2672
2709
|
customUrl?: string | undefined;
|
|
@@ -2697,6 +2734,7 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2697
2734
|
facebook?: string | undefined;
|
|
2698
2735
|
linkedin?: string | undefined;
|
|
2699
2736
|
instagram?: string | undefined;
|
|
2737
|
+
x?: string | undefined;
|
|
2700
2738
|
youtube?: string | undefined;
|
|
2701
2739
|
tiktok?: string | undefined;
|
|
2702
2740
|
customUrl?: string | undefined;
|
|
@@ -2789,9 +2827,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2789
2827
|
holeMinMm: number;
|
|
2790
2828
|
holeMaxMm: number;
|
|
2791
2829
|
intensity: number;
|
|
2792
|
-
cellShape:
|
|
2830
|
+
cellShape: number;
|
|
2793
2831
|
cellRotationDeg: number;
|
|
2794
|
-
chipShape:
|
|
2832
|
+
chipShape: number;
|
|
2795
2833
|
chipRotationDeg: number;
|
|
2796
2834
|
} | null;
|
|
2797
2835
|
layout: {
|
|
@@ -2851,6 +2889,7 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2851
2889
|
facebook?: string | undefined;
|
|
2852
2890
|
linkedin?: string | undefined;
|
|
2853
2891
|
instagram?: string | undefined;
|
|
2892
|
+
x?: string | undefined;
|
|
2854
2893
|
youtube?: string | undefined;
|
|
2855
2894
|
tiktok?: string | undefined;
|
|
2856
2895
|
customUrl?: string | undefined;
|
|
@@ -2943,9 +2982,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2943
2982
|
holeMinMm: number;
|
|
2944
2983
|
holeMaxMm: number;
|
|
2945
2984
|
intensity: number;
|
|
2946
|
-
cellShape:
|
|
2985
|
+
cellShape: number;
|
|
2947
2986
|
cellRotationDeg: number;
|
|
2948
|
-
chipShape:
|
|
2987
|
+
chipShape: number;
|
|
2949
2988
|
chipRotationDeg: number;
|
|
2950
2989
|
} | null;
|
|
2951
2990
|
layout: {
|
|
@@ -3005,6 +3044,7 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
3005
3044
|
facebook?: string | undefined;
|
|
3006
3045
|
linkedin?: string | undefined;
|
|
3007
3046
|
instagram?: string | undefined;
|
|
3047
|
+
x?: string | undefined;
|
|
3008
3048
|
youtube?: string | undefined;
|
|
3009
3049
|
tiktok?: string | undefined;
|
|
3010
3050
|
customUrl?: string | undefined;
|
|
@@ -3230,9 +3270,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3230
3270
|
holeMinMm: z.ZodNumber;
|
|
3231
3271
|
holeMaxMm: z.ZodNumber;
|
|
3232
3272
|
intensity: z.ZodNumber;
|
|
3233
|
-
cellShape: z.
|
|
3273
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3234
3274
|
cellRotationDeg: z.ZodNumber;
|
|
3235
|
-
chipShape: z.
|
|
3275
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3236
3276
|
chipRotationDeg: z.ZodNumber;
|
|
3237
3277
|
}, "strip", z.ZodTypeAny, {
|
|
3238
3278
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3241,9 +3281,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3241
3281
|
holeMinMm: number;
|
|
3242
3282
|
holeMaxMm: number;
|
|
3243
3283
|
intensity: number;
|
|
3244
|
-
cellShape:
|
|
3284
|
+
cellShape: number;
|
|
3245
3285
|
cellRotationDeg: number;
|
|
3246
|
-
chipShape:
|
|
3286
|
+
chipShape: number;
|
|
3247
3287
|
chipRotationDeg: number;
|
|
3248
3288
|
}, {
|
|
3249
3289
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3252,9 +3292,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3252
3292
|
holeMinMm: number;
|
|
3253
3293
|
holeMaxMm: number;
|
|
3254
3294
|
intensity: number;
|
|
3255
|
-
cellShape:
|
|
3295
|
+
cellShape: number;
|
|
3256
3296
|
cellRotationDeg: number;
|
|
3257
|
-
chipShape:
|
|
3297
|
+
chipShape: number;
|
|
3258
3298
|
chipRotationDeg: number;
|
|
3259
3299
|
}>, {
|
|
3260
3300
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3263,9 +3303,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3263
3303
|
holeMinMm: number;
|
|
3264
3304
|
holeMaxMm: number;
|
|
3265
3305
|
intensity: number;
|
|
3266
|
-
cellShape:
|
|
3306
|
+
cellShape: number;
|
|
3267
3307
|
cellRotationDeg: number;
|
|
3268
|
-
chipShape:
|
|
3308
|
+
chipShape: number;
|
|
3269
3309
|
chipRotationDeg: number;
|
|
3270
3310
|
}, {
|
|
3271
3311
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3274,9 +3314,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3274
3314
|
holeMinMm: number;
|
|
3275
3315
|
holeMaxMm: number;
|
|
3276
3316
|
intensity: number;
|
|
3277
|
-
cellShape:
|
|
3317
|
+
cellShape: number;
|
|
3278
3318
|
cellRotationDeg: number;
|
|
3279
|
-
chipShape:
|
|
3319
|
+
chipShape: number;
|
|
3280
3320
|
chipRotationDeg: number;
|
|
3281
3321
|
}>>;
|
|
3282
3322
|
layout: z.ZodObject<{
|
|
@@ -3379,9 +3419,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3379
3419
|
holeMinMm: number;
|
|
3380
3420
|
holeMaxMm: number;
|
|
3381
3421
|
intensity: number;
|
|
3382
|
-
cellShape:
|
|
3422
|
+
cellShape: number;
|
|
3383
3423
|
cellRotationDeg: number;
|
|
3384
|
-
chipShape:
|
|
3424
|
+
chipShape: number;
|
|
3385
3425
|
chipRotationDeg: number;
|
|
3386
3426
|
} | null;
|
|
3387
3427
|
layout: {
|
|
@@ -3425,9 +3465,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3425
3465
|
holeMinMm: number;
|
|
3426
3466
|
holeMaxMm: number;
|
|
3427
3467
|
intensity: number;
|
|
3428
|
-
cellShape:
|
|
3468
|
+
cellShape: number;
|
|
3429
3469
|
cellRotationDeg: number;
|
|
3430
|
-
chipShape:
|
|
3470
|
+
chipShape: number;
|
|
3431
3471
|
chipRotationDeg: number;
|
|
3432
3472
|
} | null;
|
|
3433
3473
|
layout: {
|
|
@@ -3518,9 +3558,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3518
3558
|
holeMinMm: number;
|
|
3519
3559
|
holeMaxMm: number;
|
|
3520
3560
|
intensity: number;
|
|
3521
|
-
cellShape:
|
|
3561
|
+
cellShape: number;
|
|
3522
3562
|
cellRotationDeg: number;
|
|
3523
|
-
chipShape:
|
|
3563
|
+
chipShape: number;
|
|
3524
3564
|
chipRotationDeg: number;
|
|
3525
3565
|
} | null;
|
|
3526
3566
|
layout: {
|
|
@@ -3611,9 +3651,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3611
3651
|
holeMinMm: number;
|
|
3612
3652
|
holeMaxMm: number;
|
|
3613
3653
|
intensity: number;
|
|
3614
|
-
cellShape:
|
|
3654
|
+
cellShape: number;
|
|
3615
3655
|
cellRotationDeg: number;
|
|
3616
|
-
chipShape:
|
|
3656
|
+
chipShape: number;
|
|
3617
3657
|
chipRotationDeg: number;
|
|
3618
3658
|
} | null;
|
|
3619
3659
|
layout: {
|
|
@@ -3704,9 +3744,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3704
3744
|
holeMinMm: number;
|
|
3705
3745
|
holeMaxMm: number;
|
|
3706
3746
|
intensity: number;
|
|
3707
|
-
cellShape:
|
|
3747
|
+
cellShape: number;
|
|
3708
3748
|
cellRotationDeg: number;
|
|
3709
|
-
chipShape:
|
|
3749
|
+
chipShape: number;
|
|
3710
3750
|
chipRotationDeg: number;
|
|
3711
3751
|
} | null;
|
|
3712
3752
|
layout: {
|
|
@@ -3797,9 +3837,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3797
3837
|
holeMinMm: number;
|
|
3798
3838
|
holeMaxMm: number;
|
|
3799
3839
|
intensity: number;
|
|
3800
|
-
cellShape:
|
|
3840
|
+
cellShape: number;
|
|
3801
3841
|
cellRotationDeg: number;
|
|
3802
|
-
chipShape:
|
|
3842
|
+
chipShape: number;
|
|
3803
3843
|
chipRotationDeg: number;
|
|
3804
3844
|
} | null;
|
|
3805
3845
|
layout: {
|
|
@@ -3890,9 +3930,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3890
3930
|
holeMinMm: number;
|
|
3891
3931
|
holeMaxMm: number;
|
|
3892
3932
|
intensity: number;
|
|
3893
|
-
cellShape:
|
|
3933
|
+
cellShape: number;
|
|
3894
3934
|
cellRotationDeg: number;
|
|
3895
|
-
chipShape:
|
|
3935
|
+
chipShape: number;
|
|
3896
3936
|
chipRotationDeg: number;
|
|
3897
3937
|
} | null;
|
|
3898
3938
|
layout: {
|
|
@@ -3983,9 +4023,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3983
4023
|
holeMinMm: number;
|
|
3984
4024
|
holeMaxMm: number;
|
|
3985
4025
|
intensity: number;
|
|
3986
|
-
cellShape:
|
|
4026
|
+
cellShape: number;
|
|
3987
4027
|
cellRotationDeg: number;
|
|
3988
|
-
chipShape:
|
|
4028
|
+
chipShape: number;
|
|
3989
4029
|
chipRotationDeg: number;
|
|
3990
4030
|
} | null;
|
|
3991
4031
|
layout: {
|
|
@@ -4064,17 +4104,19 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4064
4104
|
showSocialLinks?: boolean | undefined;
|
|
4065
4105
|
}>>;
|
|
4066
4106
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
4067
|
-
facebook: z.
|
|
4068
|
-
linkedin: z.
|
|
4069
|
-
instagram: z.
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4107
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4108
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4109
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4110
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4111
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4112
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4113
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4114
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4074
4115
|
}, "strip", z.ZodTypeAny, {
|
|
4075
4116
|
facebook?: string | undefined;
|
|
4076
4117
|
linkedin?: string | undefined;
|
|
4077
4118
|
instagram?: string | undefined;
|
|
4119
|
+
x?: string | undefined;
|
|
4078
4120
|
youtube?: string | undefined;
|
|
4079
4121
|
tiktok?: string | undefined;
|
|
4080
4122
|
customUrl?: string | undefined;
|
|
@@ -4083,6 +4125,7 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4083
4125
|
facebook?: string | undefined;
|
|
4084
4126
|
linkedin?: string | undefined;
|
|
4085
4127
|
instagram?: string | undefined;
|
|
4128
|
+
x?: string | undefined;
|
|
4086
4129
|
youtube?: string | undefined;
|
|
4087
4130
|
tiktok?: string | undefined;
|
|
4088
4131
|
customUrl?: string | undefined;
|
|
@@ -4113,6 +4156,7 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4113
4156
|
facebook?: string | undefined;
|
|
4114
4157
|
linkedin?: string | undefined;
|
|
4115
4158
|
instagram?: string | undefined;
|
|
4159
|
+
x?: string | undefined;
|
|
4116
4160
|
youtube?: string | undefined;
|
|
4117
4161
|
tiktok?: string | undefined;
|
|
4118
4162
|
customUrl?: string | undefined;
|
|
@@ -4143,6 +4187,7 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4143
4187
|
facebook?: string | undefined;
|
|
4144
4188
|
linkedin?: string | undefined;
|
|
4145
4189
|
instagram?: string | undefined;
|
|
4190
|
+
x?: string | undefined;
|
|
4146
4191
|
youtube?: string | undefined;
|
|
4147
4192
|
tiktok?: string | undefined;
|
|
4148
4193
|
customUrl?: string | undefined;
|
|
@@ -4234,9 +4279,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4234
4279
|
holeMinMm: number;
|
|
4235
4280
|
holeMaxMm: number;
|
|
4236
4281
|
intensity: number;
|
|
4237
|
-
cellShape:
|
|
4282
|
+
cellShape: number;
|
|
4238
4283
|
cellRotationDeg: number;
|
|
4239
|
-
chipShape:
|
|
4284
|
+
chipShape: number;
|
|
4240
4285
|
chipRotationDeg: number;
|
|
4241
4286
|
} | null;
|
|
4242
4287
|
layout: {
|
|
@@ -4296,6 +4341,7 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4296
4341
|
facebook?: string | undefined;
|
|
4297
4342
|
linkedin?: string | undefined;
|
|
4298
4343
|
instagram?: string | undefined;
|
|
4344
|
+
x?: string | undefined;
|
|
4299
4345
|
youtube?: string | undefined;
|
|
4300
4346
|
tiktok?: string | undefined;
|
|
4301
4347
|
customUrl?: string | undefined;
|
|
@@ -4387,9 +4433,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4387
4433
|
holeMinMm: number;
|
|
4388
4434
|
holeMaxMm: number;
|
|
4389
4435
|
intensity: number;
|
|
4390
|
-
cellShape:
|
|
4436
|
+
cellShape: number;
|
|
4391
4437
|
cellRotationDeg: number;
|
|
4392
|
-
chipShape:
|
|
4438
|
+
chipShape: number;
|
|
4393
4439
|
chipRotationDeg: number;
|
|
4394
4440
|
} | null;
|
|
4395
4441
|
layout: {
|
|
@@ -4449,6 +4495,7 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4449
4495
|
facebook?: string | undefined;
|
|
4450
4496
|
linkedin?: string | undefined;
|
|
4451
4497
|
instagram?: string | undefined;
|
|
4498
|
+
x?: string | undefined;
|
|
4452
4499
|
youtube?: string | undefined;
|
|
4453
4500
|
tiktok?: string | undefined;
|
|
4454
4501
|
customUrl?: string | undefined;
|
|
@@ -4517,17 +4564,19 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4517
4564
|
showSocialLinks?: boolean | undefined;
|
|
4518
4565
|
}>>>>;
|
|
4519
4566
|
socialOverrides: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
4520
|
-
facebook: z.
|
|
4521
|
-
linkedin: z.
|
|
4522
|
-
instagram: z.
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4567
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4568
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4569
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4570
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4571
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4572
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4573
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4574
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4527
4575
|
}, "strip", z.ZodTypeAny, {
|
|
4528
4576
|
facebook?: string | undefined;
|
|
4529
4577
|
linkedin?: string | undefined;
|
|
4530
4578
|
instagram?: string | undefined;
|
|
4579
|
+
x?: string | undefined;
|
|
4531
4580
|
youtube?: string | undefined;
|
|
4532
4581
|
tiktok?: string | undefined;
|
|
4533
4582
|
customUrl?: string | undefined;
|
|
@@ -4536,6 +4585,7 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4536
4585
|
facebook?: string | undefined;
|
|
4537
4586
|
linkedin?: string | undefined;
|
|
4538
4587
|
instagram?: string | undefined;
|
|
4588
|
+
x?: string | undefined;
|
|
4539
4589
|
youtube?: string | undefined;
|
|
4540
4590
|
tiktok?: string | undefined;
|
|
4541
4591
|
customUrl?: string | undefined;
|
|
@@ -4570,6 +4620,7 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4570
4620
|
facebook?: string | undefined;
|
|
4571
4621
|
linkedin?: string | undefined;
|
|
4572
4622
|
instagram?: string | undefined;
|
|
4623
|
+
x?: string | undefined;
|
|
4573
4624
|
youtube?: string | undefined;
|
|
4574
4625
|
tiktok?: string | undefined;
|
|
4575
4626
|
customUrl?: string | undefined;
|
|
@@ -4602,6 +4653,7 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4602
4653
|
facebook?: string | undefined;
|
|
4603
4654
|
linkedin?: string | undefined;
|
|
4604
4655
|
instagram?: string | undefined;
|
|
4656
|
+
x?: string | undefined;
|
|
4605
4657
|
youtube?: string | undefined;
|
|
4606
4658
|
tiktok?: string | undefined;
|
|
4607
4659
|
customUrl?: string | undefined;
|
|
@@ -4638,6 +4690,7 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4638
4690
|
facebook?: string | undefined;
|
|
4639
4691
|
linkedin?: string | undefined;
|
|
4640
4692
|
instagram?: string | undefined;
|
|
4693
|
+
x?: string | undefined;
|
|
4641
4694
|
youtube?: string | undefined;
|
|
4642
4695
|
tiktok?: string | undefined;
|
|
4643
4696
|
customUrl?: string | undefined;
|
|
@@ -4673,6 +4726,7 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4673
4726
|
facebook?: string | undefined;
|
|
4674
4727
|
linkedin?: string | undefined;
|
|
4675
4728
|
instagram?: string | undefined;
|
|
4729
|
+
x?: string | undefined;
|
|
4676
4730
|
youtube?: string | undefined;
|
|
4677
4731
|
tiktok?: string | undefined;
|
|
4678
4732
|
customUrl?: string | undefined;
|
|
@@ -4814,17 +4868,19 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
4814
4868
|
showSocialLinks?: boolean | undefined;
|
|
4815
4869
|
}>>;
|
|
4816
4870
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
4817
|
-
facebook: z.
|
|
4818
|
-
linkedin: z.
|
|
4819
|
-
instagram: z.
|
|
4820
|
-
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4871
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4872
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4873
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4874
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4875
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4876
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4877
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4878
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4824
4879
|
}, "strip", z.ZodTypeAny, {
|
|
4825
4880
|
facebook?: string | undefined;
|
|
4826
4881
|
linkedin?: string | undefined;
|
|
4827
4882
|
instagram?: string | undefined;
|
|
4883
|
+
x?: string | undefined;
|
|
4828
4884
|
youtube?: string | undefined;
|
|
4829
4885
|
tiktok?: string | undefined;
|
|
4830
4886
|
customUrl?: string | undefined;
|
|
@@ -4833,6 +4889,7 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
4833
4889
|
facebook?: string | undefined;
|
|
4834
4890
|
linkedin?: string | undefined;
|
|
4835
4891
|
instagram?: string | undefined;
|
|
4892
|
+
x?: string | undefined;
|
|
4836
4893
|
youtube?: string | undefined;
|
|
4837
4894
|
tiktok?: string | undefined;
|
|
4838
4895
|
customUrl?: string | undefined;
|
|
@@ -4863,6 +4920,7 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
4863
4920
|
facebook?: string | undefined;
|
|
4864
4921
|
linkedin?: string | undefined;
|
|
4865
4922
|
instagram?: string | undefined;
|
|
4923
|
+
x?: string | undefined;
|
|
4866
4924
|
youtube?: string | undefined;
|
|
4867
4925
|
tiktok?: string | undefined;
|
|
4868
4926
|
customUrl?: string | undefined;
|
|
@@ -4893,6 +4951,7 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
4893
4951
|
facebook?: string | undefined;
|
|
4894
4952
|
linkedin?: string | undefined;
|
|
4895
4953
|
instagram?: string | undefined;
|
|
4954
|
+
x?: string | undefined;
|
|
4896
4955
|
youtube?: string | undefined;
|
|
4897
4956
|
tiktok?: string | undefined;
|
|
4898
4957
|
customUrl?: string | undefined;
|
|
@@ -5025,9 +5084,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5025
5084
|
holeMinMm: z.ZodNumber;
|
|
5026
5085
|
holeMaxMm: z.ZodNumber;
|
|
5027
5086
|
intensity: z.ZodNumber;
|
|
5028
|
-
cellShape: z.
|
|
5087
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
5029
5088
|
cellRotationDeg: z.ZodNumber;
|
|
5030
|
-
chipShape: z.
|
|
5089
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
5031
5090
|
chipRotationDeg: z.ZodNumber;
|
|
5032
5091
|
}, "strip", z.ZodTypeAny, {
|
|
5033
5092
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5036,9 +5095,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5036
5095
|
holeMinMm: number;
|
|
5037
5096
|
holeMaxMm: number;
|
|
5038
5097
|
intensity: number;
|
|
5039
|
-
cellShape:
|
|
5098
|
+
cellShape: number;
|
|
5040
5099
|
cellRotationDeg: number;
|
|
5041
|
-
chipShape:
|
|
5100
|
+
chipShape: number;
|
|
5042
5101
|
chipRotationDeg: number;
|
|
5043
5102
|
}, {
|
|
5044
5103
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5047,9 +5106,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5047
5106
|
holeMinMm: number;
|
|
5048
5107
|
holeMaxMm: number;
|
|
5049
5108
|
intensity: number;
|
|
5050
|
-
cellShape:
|
|
5109
|
+
cellShape: number;
|
|
5051
5110
|
cellRotationDeg: number;
|
|
5052
|
-
chipShape:
|
|
5111
|
+
chipShape: number;
|
|
5053
5112
|
chipRotationDeg: number;
|
|
5054
5113
|
}>, {
|
|
5055
5114
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5058,9 +5117,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5058
5117
|
holeMinMm: number;
|
|
5059
5118
|
holeMaxMm: number;
|
|
5060
5119
|
intensity: number;
|
|
5061
|
-
cellShape:
|
|
5120
|
+
cellShape: number;
|
|
5062
5121
|
cellRotationDeg: number;
|
|
5063
|
-
chipShape:
|
|
5122
|
+
chipShape: number;
|
|
5064
5123
|
chipRotationDeg: number;
|
|
5065
5124
|
}, {
|
|
5066
5125
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5069,9 +5128,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5069
5128
|
holeMinMm: number;
|
|
5070
5129
|
holeMaxMm: number;
|
|
5071
5130
|
intensity: number;
|
|
5072
|
-
cellShape:
|
|
5131
|
+
cellShape: number;
|
|
5073
5132
|
cellRotationDeg: number;
|
|
5074
|
-
chipShape:
|
|
5133
|
+
chipShape: number;
|
|
5075
5134
|
chipRotationDeg: number;
|
|
5076
5135
|
}>>;
|
|
5077
5136
|
layout: z.ZodObject<{
|
|
@@ -5174,9 +5233,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5174
5233
|
holeMinMm: number;
|
|
5175
5234
|
holeMaxMm: number;
|
|
5176
5235
|
intensity: number;
|
|
5177
|
-
cellShape:
|
|
5236
|
+
cellShape: number;
|
|
5178
5237
|
cellRotationDeg: number;
|
|
5179
|
-
chipShape:
|
|
5238
|
+
chipShape: number;
|
|
5180
5239
|
chipRotationDeg: number;
|
|
5181
5240
|
} | null;
|
|
5182
5241
|
layout: {
|
|
@@ -5220,9 +5279,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5220
5279
|
holeMinMm: number;
|
|
5221
5280
|
holeMaxMm: number;
|
|
5222
5281
|
intensity: number;
|
|
5223
|
-
cellShape:
|
|
5282
|
+
cellShape: number;
|
|
5224
5283
|
cellRotationDeg: number;
|
|
5225
|
-
chipShape:
|
|
5284
|
+
chipShape: number;
|
|
5226
5285
|
chipRotationDeg: number;
|
|
5227
5286
|
} | null;
|
|
5228
5287
|
layout: {
|
|
@@ -5313,9 +5372,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5313
5372
|
holeMinMm: number;
|
|
5314
5373
|
holeMaxMm: number;
|
|
5315
5374
|
intensity: number;
|
|
5316
|
-
cellShape:
|
|
5375
|
+
cellShape: number;
|
|
5317
5376
|
cellRotationDeg: number;
|
|
5318
|
-
chipShape:
|
|
5377
|
+
chipShape: number;
|
|
5319
5378
|
chipRotationDeg: number;
|
|
5320
5379
|
} | null;
|
|
5321
5380
|
layout: {
|
|
@@ -5406,9 +5465,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5406
5465
|
holeMinMm: number;
|
|
5407
5466
|
holeMaxMm: number;
|
|
5408
5467
|
intensity: number;
|
|
5409
|
-
cellShape:
|
|
5468
|
+
cellShape: number;
|
|
5410
5469
|
cellRotationDeg: number;
|
|
5411
|
-
chipShape:
|
|
5470
|
+
chipShape: number;
|
|
5412
5471
|
chipRotationDeg: number;
|
|
5413
5472
|
} | null;
|
|
5414
5473
|
layout: {
|
|
@@ -5499,9 +5558,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5499
5558
|
holeMinMm: number;
|
|
5500
5559
|
holeMaxMm: number;
|
|
5501
5560
|
intensity: number;
|
|
5502
|
-
cellShape:
|
|
5561
|
+
cellShape: number;
|
|
5503
5562
|
cellRotationDeg: number;
|
|
5504
|
-
chipShape:
|
|
5563
|
+
chipShape: number;
|
|
5505
5564
|
chipRotationDeg: number;
|
|
5506
5565
|
} | null;
|
|
5507
5566
|
layout: {
|
|
@@ -5592,9 +5651,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5592
5651
|
holeMinMm: number;
|
|
5593
5652
|
holeMaxMm: number;
|
|
5594
5653
|
intensity: number;
|
|
5595
|
-
cellShape:
|
|
5654
|
+
cellShape: number;
|
|
5596
5655
|
cellRotationDeg: number;
|
|
5597
|
-
chipShape:
|
|
5656
|
+
chipShape: number;
|
|
5598
5657
|
chipRotationDeg: number;
|
|
5599
5658
|
} | null;
|
|
5600
5659
|
layout: {
|
|
@@ -5685,9 +5744,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5685
5744
|
holeMinMm: number;
|
|
5686
5745
|
holeMaxMm: number;
|
|
5687
5746
|
intensity: number;
|
|
5688
|
-
cellShape:
|
|
5747
|
+
cellShape: number;
|
|
5689
5748
|
cellRotationDeg: number;
|
|
5690
|
-
chipShape:
|
|
5749
|
+
chipShape: number;
|
|
5691
5750
|
chipRotationDeg: number;
|
|
5692
5751
|
} | null;
|
|
5693
5752
|
layout: {
|
|
@@ -5778,9 +5837,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5778
5837
|
holeMinMm: number;
|
|
5779
5838
|
holeMaxMm: number;
|
|
5780
5839
|
intensity: number;
|
|
5781
|
-
cellShape:
|
|
5840
|
+
cellShape: number;
|
|
5782
5841
|
cellRotationDeg: number;
|
|
5783
|
-
chipShape:
|
|
5842
|
+
chipShape: number;
|
|
5784
5843
|
chipRotationDeg: number;
|
|
5785
5844
|
} | null;
|
|
5786
5845
|
layout: {
|
|
@@ -5865,6 +5924,7 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5865
5924
|
facebook?: string | undefined;
|
|
5866
5925
|
linkedin?: string | undefined;
|
|
5867
5926
|
instagram?: string | undefined;
|
|
5927
|
+
x?: string | undefined;
|
|
5868
5928
|
youtube?: string | undefined;
|
|
5869
5929
|
tiktok?: string | undefined;
|
|
5870
5930
|
customUrl?: string | undefined;
|
|
@@ -5929,9 +5989,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5929
5989
|
holeMinMm: number;
|
|
5930
5990
|
holeMaxMm: number;
|
|
5931
5991
|
intensity: number;
|
|
5932
|
-
cellShape:
|
|
5992
|
+
cellShape: number;
|
|
5933
5993
|
cellRotationDeg: number;
|
|
5934
|
-
chipShape:
|
|
5994
|
+
chipShape: number;
|
|
5935
5995
|
chipRotationDeg: number;
|
|
5936
5996
|
} | null;
|
|
5937
5997
|
layout: {
|
|
@@ -6016,6 +6076,7 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6016
6076
|
facebook?: string | undefined;
|
|
6017
6077
|
linkedin?: string | undefined;
|
|
6018
6078
|
instagram?: string | undefined;
|
|
6079
|
+
x?: string | undefined;
|
|
6019
6080
|
youtube?: string | undefined;
|
|
6020
6081
|
tiktok?: string | undefined;
|
|
6021
6082
|
customUrl?: string | undefined;
|
|
@@ -6080,9 +6141,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6080
6141
|
holeMinMm: number;
|
|
6081
6142
|
holeMaxMm: number;
|
|
6082
6143
|
intensity: number;
|
|
6083
|
-
cellShape:
|
|
6144
|
+
cellShape: number;
|
|
6084
6145
|
cellRotationDeg: number;
|
|
6085
|
-
chipShape:
|
|
6146
|
+
chipShape: number;
|
|
6086
6147
|
chipRotationDeg: number;
|
|
6087
6148
|
} | null;
|
|
6088
6149
|
layout: {
|
|
@@ -6345,17 +6406,19 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6345
6406
|
showSocialLinks?: boolean | undefined;
|
|
6346
6407
|
}>>;
|
|
6347
6408
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
6348
|
-
facebook: z.
|
|
6349
|
-
linkedin: z.
|
|
6350
|
-
instagram: z.
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6409
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6410
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6411
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6412
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6413
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6414
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6415
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6416
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6355
6417
|
}, "strip", z.ZodTypeAny, {
|
|
6356
6418
|
facebook?: string | undefined;
|
|
6357
6419
|
linkedin?: string | undefined;
|
|
6358
6420
|
instagram?: string | undefined;
|
|
6421
|
+
x?: string | undefined;
|
|
6359
6422
|
youtube?: string | undefined;
|
|
6360
6423
|
tiktok?: string | undefined;
|
|
6361
6424
|
customUrl?: string | undefined;
|
|
@@ -6364,6 +6427,7 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6364
6427
|
facebook?: string | undefined;
|
|
6365
6428
|
linkedin?: string | undefined;
|
|
6366
6429
|
instagram?: string | undefined;
|
|
6430
|
+
x?: string | undefined;
|
|
6367
6431
|
youtube?: string | undefined;
|
|
6368
6432
|
tiktok?: string | undefined;
|
|
6369
6433
|
customUrl?: string | undefined;
|
|
@@ -6394,6 +6458,7 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6394
6458
|
facebook?: string | undefined;
|
|
6395
6459
|
linkedin?: string | undefined;
|
|
6396
6460
|
instagram?: string | undefined;
|
|
6461
|
+
x?: string | undefined;
|
|
6397
6462
|
youtube?: string | undefined;
|
|
6398
6463
|
tiktok?: string | undefined;
|
|
6399
6464
|
customUrl?: string | undefined;
|
|
@@ -6424,6 +6489,7 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6424
6489
|
facebook?: string | undefined;
|
|
6425
6490
|
linkedin?: string | undefined;
|
|
6426
6491
|
instagram?: string | undefined;
|
|
6492
|
+
x?: string | undefined;
|
|
6427
6493
|
youtube?: string | undefined;
|
|
6428
6494
|
tiktok?: string | undefined;
|
|
6429
6495
|
customUrl?: string | undefined;
|
|
@@ -6483,6 +6549,7 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6483
6549
|
facebook?: string | undefined;
|
|
6484
6550
|
linkedin?: string | undefined;
|
|
6485
6551
|
instagram?: string | undefined;
|
|
6552
|
+
x?: string | undefined;
|
|
6486
6553
|
youtube?: string | undefined;
|
|
6487
6554
|
tiktok?: string | undefined;
|
|
6488
6555
|
customUrl?: string | undefined;
|
|
@@ -6543,6 +6610,7 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6543
6610
|
facebook?: string | undefined;
|
|
6544
6611
|
linkedin?: string | undefined;
|
|
6545
6612
|
instagram?: string | undefined;
|
|
6613
|
+
x?: string | undefined;
|
|
6546
6614
|
youtube?: string | undefined;
|
|
6547
6615
|
tiktok?: string | undefined;
|
|
6548
6616
|
customUrl?: string | undefined;
|
|
@@ -6697,17 +6765,19 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6697
6765
|
showSocialLinks?: boolean | undefined;
|
|
6698
6766
|
}>>;
|
|
6699
6767
|
socialOverrides: z.ZodOptional<z.ZodObject<{
|
|
6700
|
-
facebook: z.
|
|
6701
|
-
linkedin: z.
|
|
6702
|
-
instagram: z.
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6768
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6769
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6770
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6771
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6772
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6773
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6774
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6775
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6707
6776
|
}, "strip", z.ZodTypeAny, {
|
|
6708
6777
|
facebook?: string | undefined;
|
|
6709
6778
|
linkedin?: string | undefined;
|
|
6710
6779
|
instagram?: string | undefined;
|
|
6780
|
+
x?: string | undefined;
|
|
6711
6781
|
youtube?: string | undefined;
|
|
6712
6782
|
tiktok?: string | undefined;
|
|
6713
6783
|
customUrl?: string | undefined;
|
|
@@ -6716,6 +6786,7 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6716
6786
|
facebook?: string | undefined;
|
|
6717
6787
|
linkedin?: string | undefined;
|
|
6718
6788
|
instagram?: string | undefined;
|
|
6789
|
+
x?: string | undefined;
|
|
6719
6790
|
youtube?: string | undefined;
|
|
6720
6791
|
tiktok?: string | undefined;
|
|
6721
6792
|
customUrl?: string | undefined;
|
|
@@ -6746,6 +6817,7 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6746
6817
|
facebook?: string | undefined;
|
|
6747
6818
|
linkedin?: string | undefined;
|
|
6748
6819
|
instagram?: string | undefined;
|
|
6820
|
+
x?: string | undefined;
|
|
6749
6821
|
youtube?: string | undefined;
|
|
6750
6822
|
tiktok?: string | undefined;
|
|
6751
6823
|
customUrl?: string | undefined;
|
|
@@ -6776,6 +6848,7 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6776
6848
|
facebook?: string | undefined;
|
|
6777
6849
|
linkedin?: string | undefined;
|
|
6778
6850
|
instagram?: string | undefined;
|
|
6851
|
+
x?: string | undefined;
|
|
6779
6852
|
youtube?: string | undefined;
|
|
6780
6853
|
tiktok?: string | undefined;
|
|
6781
6854
|
customUrl?: string | undefined;
|
|
@@ -6833,6 +6906,7 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6833
6906
|
facebook?: string | undefined;
|
|
6834
6907
|
linkedin?: string | undefined;
|
|
6835
6908
|
instagram?: string | undefined;
|
|
6909
|
+
x?: string | undefined;
|
|
6836
6910
|
youtube?: string | undefined;
|
|
6837
6911
|
tiktok?: string | undefined;
|
|
6838
6912
|
customUrl?: string | undefined;
|
|
@@ -6897,6 +6971,7 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
6897
6971
|
facebook?: string | undefined;
|
|
6898
6972
|
linkedin?: string | undefined;
|
|
6899
6973
|
instagram?: string | undefined;
|
|
6974
|
+
x?: string | undefined;
|
|
6900
6975
|
youtube?: string | undefined;
|
|
6901
6976
|
tiktok?: string | undefined;
|
|
6902
6977
|
customUrl?: string | undefined;
|
|
@@ -7047,17 +7122,19 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7047
7122
|
showSocialLinks?: boolean | undefined;
|
|
7048
7123
|
}>>>>;
|
|
7049
7124
|
socialOverrides: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7050
|
-
facebook: z.
|
|
7051
|
-
linkedin: z.
|
|
7052
|
-
instagram: z.
|
|
7053
|
-
|
|
7054
|
-
|
|
7055
|
-
|
|
7056
|
-
|
|
7125
|
+
facebook: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7126
|
+
linkedin: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7127
|
+
instagram: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7128
|
+
x: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7129
|
+
youtube: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7130
|
+
tiktok: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7131
|
+
customUrl: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7132
|
+
customUrlLabel: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7057
7133
|
}, "strip", z.ZodTypeAny, {
|
|
7058
7134
|
facebook?: string | undefined;
|
|
7059
7135
|
linkedin?: string | undefined;
|
|
7060
7136
|
instagram?: string | undefined;
|
|
7137
|
+
x?: string | undefined;
|
|
7061
7138
|
youtube?: string | undefined;
|
|
7062
7139
|
tiktok?: string | undefined;
|
|
7063
7140
|
customUrl?: string | undefined;
|
|
@@ -7066,6 +7143,7 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7066
7143
|
facebook?: string | undefined;
|
|
7067
7144
|
linkedin?: string | undefined;
|
|
7068
7145
|
instagram?: string | undefined;
|
|
7146
|
+
x?: string | undefined;
|
|
7069
7147
|
youtube?: string | undefined;
|
|
7070
7148
|
tiktok?: string | undefined;
|
|
7071
7149
|
customUrl?: string | undefined;
|
|
@@ -7100,6 +7178,7 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7100
7178
|
facebook?: string | undefined;
|
|
7101
7179
|
linkedin?: string | undefined;
|
|
7102
7180
|
instagram?: string | undefined;
|
|
7181
|
+
x?: string | undefined;
|
|
7103
7182
|
youtube?: string | undefined;
|
|
7104
7183
|
tiktok?: string | undefined;
|
|
7105
7184
|
customUrl?: string | undefined;
|
|
@@ -7132,6 +7211,7 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7132
7211
|
facebook?: string | undefined;
|
|
7133
7212
|
linkedin?: string | undefined;
|
|
7134
7213
|
instagram?: string | undefined;
|
|
7214
|
+
x?: string | undefined;
|
|
7135
7215
|
youtube?: string | undefined;
|
|
7136
7216
|
tiktok?: string | undefined;
|
|
7137
7217
|
customUrl?: string | undefined;
|
|
@@ -7193,6 +7273,7 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7193
7273
|
facebook?: string | undefined;
|
|
7194
7274
|
linkedin?: string | undefined;
|
|
7195
7275
|
instagram?: string | undefined;
|
|
7276
|
+
x?: string | undefined;
|
|
7196
7277
|
youtube?: string | undefined;
|
|
7197
7278
|
tiktok?: string | undefined;
|
|
7198
7279
|
customUrl?: string | undefined;
|
|
@@ -7255,6 +7336,7 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7255
7336
|
facebook?: string | undefined;
|
|
7256
7337
|
linkedin?: string | undefined;
|
|
7257
7338
|
instagram?: string | undefined;
|
|
7339
|
+
x?: string | undefined;
|
|
7258
7340
|
youtube?: string | undefined;
|
|
7259
7341
|
tiktok?: string | undefined;
|
|
7260
7342
|
customUrl?: string | undefined;
|
|
@@ -7409,4 +7491,4 @@ declare function validatePhysicalConfig(data: unknown): ValidationResult<z.infer
|
|
|
7409
7491
|
declare function validateDigitalConfig(data: unknown): ValidationResult<z.infer<typeof digitalConfigSchema>>;
|
|
7410
7492
|
declare function validateConfiguration(data: unknown): ValidationResult<z.infer<typeof configurationCreateSchema>>;
|
|
7411
7493
|
|
|
7412
|
-
export { type ValidationResult, adminCardCreateSchema, cardDesignMaterialSchema, cardDesignPatternSchema, cardDesignSchema, cardElementsSchema, cardProfileUpdateSchema, cardUpdateSchema, comboIdSchema, configurationCreateSchema, configurationUpdateSchema, contactDetailTogglesSchema, contactExchangeSchema, createOrderSchema, digitalConfigSchema, digitalVisibilitySchema, hubConfigSchema, hubProfilesUpdateSchema, materialSchema, patternFamilySchema, physicalConfigSchema, physicalContentOverridesSchema, profileAccessTokenCreateSchema, profileCreateSchema, profilePinVerifySchema, profileUpdateSchema, profileUserDataSchema, profileVisibilitySchema, sanitizeHttpUrl, sanitizeText, signupWithProfileSchema, socialLinksSchema, userDataSchema, validateConfiguration, validateDigitalConfig, validatePhysicalConfig, validateUserData, webAddressSchema };
|
|
7494
|
+
export { type ValidationResult, adminCardCreateSchema, cardDesignMaterialSchema, cardDesignPatternSchema, cardDesignSchema, cardElementsSchema, cardProfileUpdateSchema, cardUpdateSchema, comboIdSchema, configurationCreateSchema, configurationUpdateSchema, contactDetailTogglesSchema, contactExchangeSchema, createOrderSchema, digitalConfigSchema, digitalVisibilitySchema, hubConfigSchema, hubProfilesUpdateSchema, materialSchema, patternFamilySchema, physicalConfigSchema, physicalContentOverridesSchema, profileAccessTokenCreateSchema, profileCreateSchema, profilePinVerifySchema, profileUpdateSchema, profileUserDataSchema, profileVisibilitySchema, sanitizeHttpUrl, sanitizeText, signupWithProfileSchema, socialLinksSchema, socialOverridesSchema, userDataSchema, validateConfiguration, validateDigitalConfig, validatePhysicalConfig, validateUserData, webAddressSchema };
|