@nfcard/validation 0.8.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 +145 -420
- package/dist/index.js +0 -0
- package/package.json +2 -2
- package/src/index.test.ts +0 -89
- package/src/index.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -225,9 +225,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
225
225
|
holeMinMm: z.ZodNumber;
|
|
226
226
|
holeMaxMm: z.ZodNumber;
|
|
227
227
|
intensity: z.ZodNumber;
|
|
228
|
-
cellShape: z.
|
|
228
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
229
229
|
cellRotationDeg: z.ZodNumber;
|
|
230
|
-
chipShape: z.
|
|
230
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
231
231
|
chipRotationDeg: z.ZodNumber;
|
|
232
232
|
}, "strip", z.ZodTypeAny, {
|
|
233
233
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -236,9 +236,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
236
236
|
holeMinMm: number;
|
|
237
237
|
holeMaxMm: number;
|
|
238
238
|
intensity: number;
|
|
239
|
-
cellShape:
|
|
239
|
+
cellShape: number;
|
|
240
240
|
cellRotationDeg: number;
|
|
241
|
-
chipShape:
|
|
241
|
+
chipShape: number;
|
|
242
242
|
chipRotationDeg: number;
|
|
243
243
|
}, {
|
|
244
244
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -247,9 +247,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
247
247
|
holeMinMm: number;
|
|
248
248
|
holeMaxMm: number;
|
|
249
249
|
intensity: number;
|
|
250
|
-
cellShape:
|
|
250
|
+
cellShape: number;
|
|
251
251
|
cellRotationDeg: number;
|
|
252
|
-
chipShape:
|
|
252
|
+
chipShape: number;
|
|
253
253
|
chipRotationDeg: number;
|
|
254
254
|
}>, {
|
|
255
255
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -258,9 +258,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
258
258
|
holeMinMm: number;
|
|
259
259
|
holeMaxMm: number;
|
|
260
260
|
intensity: number;
|
|
261
|
-
cellShape:
|
|
261
|
+
cellShape: number;
|
|
262
262
|
cellRotationDeg: number;
|
|
263
|
-
chipShape:
|
|
263
|
+
chipShape: number;
|
|
264
264
|
chipRotationDeg: number;
|
|
265
265
|
}, {
|
|
266
266
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -269,9 +269,9 @@ declare const cardDesignPatternSchema: z.ZodEffects<z.ZodObject<{
|
|
|
269
269
|
holeMinMm: number;
|
|
270
270
|
holeMaxMm: number;
|
|
271
271
|
intensity: number;
|
|
272
|
-
cellShape:
|
|
272
|
+
cellShape: number;
|
|
273
273
|
cellRotationDeg: number;
|
|
274
|
-
chipShape:
|
|
274
|
+
chipShape: number;
|
|
275
275
|
chipRotationDeg: number;
|
|
276
276
|
}>;
|
|
277
277
|
declare const cardDesignSchema: z.ZodObject<{
|
|
@@ -286,9 +286,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
286
286
|
holeMinMm: z.ZodNumber;
|
|
287
287
|
holeMaxMm: z.ZodNumber;
|
|
288
288
|
intensity: z.ZodNumber;
|
|
289
|
-
cellShape: z.
|
|
289
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
290
290
|
cellRotationDeg: z.ZodNumber;
|
|
291
|
-
chipShape: z.
|
|
291
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
292
292
|
chipRotationDeg: z.ZodNumber;
|
|
293
293
|
}, "strip", z.ZodTypeAny, {
|
|
294
294
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -297,9 +297,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
297
297
|
holeMinMm: number;
|
|
298
298
|
holeMaxMm: number;
|
|
299
299
|
intensity: number;
|
|
300
|
-
cellShape:
|
|
300
|
+
cellShape: number;
|
|
301
301
|
cellRotationDeg: number;
|
|
302
|
-
chipShape:
|
|
302
|
+
chipShape: number;
|
|
303
303
|
chipRotationDeg: number;
|
|
304
304
|
}, {
|
|
305
305
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -308,9 +308,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
308
308
|
holeMinMm: number;
|
|
309
309
|
holeMaxMm: number;
|
|
310
310
|
intensity: number;
|
|
311
|
-
cellShape:
|
|
311
|
+
cellShape: number;
|
|
312
312
|
cellRotationDeg: number;
|
|
313
|
-
chipShape:
|
|
313
|
+
chipShape: number;
|
|
314
314
|
chipRotationDeg: number;
|
|
315
315
|
}>, {
|
|
316
316
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -319,9 +319,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
319
319
|
holeMinMm: number;
|
|
320
320
|
holeMaxMm: number;
|
|
321
321
|
intensity: number;
|
|
322
|
-
cellShape:
|
|
322
|
+
cellShape: number;
|
|
323
323
|
cellRotationDeg: number;
|
|
324
|
-
chipShape:
|
|
324
|
+
chipShape: number;
|
|
325
325
|
chipRotationDeg: number;
|
|
326
326
|
}, {
|
|
327
327
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -330,9 +330,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
330
330
|
holeMinMm: number;
|
|
331
331
|
holeMaxMm: number;
|
|
332
332
|
intensity: number;
|
|
333
|
-
cellShape:
|
|
333
|
+
cellShape: number;
|
|
334
334
|
cellRotationDeg: number;
|
|
335
|
-
chipShape:
|
|
335
|
+
chipShape: number;
|
|
336
336
|
chipRotationDeg: number;
|
|
337
337
|
}>>;
|
|
338
338
|
layout: z.ZodObject<{
|
|
@@ -435,9 +435,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
435
435
|
holeMinMm: number;
|
|
436
436
|
holeMaxMm: number;
|
|
437
437
|
intensity: number;
|
|
438
|
-
cellShape:
|
|
438
|
+
cellShape: number;
|
|
439
439
|
cellRotationDeg: number;
|
|
440
|
-
chipShape:
|
|
440
|
+
chipShape: number;
|
|
441
441
|
chipRotationDeg: number;
|
|
442
442
|
} | null;
|
|
443
443
|
layout: {
|
|
@@ -481,9 +481,9 @@ declare const cardDesignSchema: z.ZodObject<{
|
|
|
481
481
|
holeMinMm: number;
|
|
482
482
|
holeMaxMm: number;
|
|
483
483
|
intensity: number;
|
|
484
|
-
cellShape:
|
|
484
|
+
cellShape: number;
|
|
485
485
|
cellRotationDeg: number;
|
|
486
|
-
chipShape:
|
|
486
|
+
chipShape: number;
|
|
487
487
|
chipRotationDeg: number;
|
|
488
488
|
} | null;
|
|
489
489
|
layout: {
|
|
@@ -643,9 +643,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
643
643
|
holeMinMm: z.ZodNumber;
|
|
644
644
|
holeMaxMm: z.ZodNumber;
|
|
645
645
|
intensity: z.ZodNumber;
|
|
646
|
-
cellShape: z.
|
|
646
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
647
647
|
cellRotationDeg: z.ZodNumber;
|
|
648
|
-
chipShape: z.
|
|
648
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
649
649
|
chipRotationDeg: z.ZodNumber;
|
|
650
650
|
}, "strip", z.ZodTypeAny, {
|
|
651
651
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -654,9 +654,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
654
654
|
holeMinMm: number;
|
|
655
655
|
holeMaxMm: number;
|
|
656
656
|
intensity: number;
|
|
657
|
-
cellShape:
|
|
657
|
+
cellShape: number;
|
|
658
658
|
cellRotationDeg: number;
|
|
659
|
-
chipShape:
|
|
659
|
+
chipShape: number;
|
|
660
660
|
chipRotationDeg: number;
|
|
661
661
|
}, {
|
|
662
662
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -665,9 +665,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
665
665
|
holeMinMm: number;
|
|
666
666
|
holeMaxMm: number;
|
|
667
667
|
intensity: number;
|
|
668
|
-
cellShape:
|
|
668
|
+
cellShape: number;
|
|
669
669
|
cellRotationDeg: number;
|
|
670
|
-
chipShape:
|
|
670
|
+
chipShape: number;
|
|
671
671
|
chipRotationDeg: number;
|
|
672
672
|
}>, {
|
|
673
673
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -676,9 +676,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
676
676
|
holeMinMm: number;
|
|
677
677
|
holeMaxMm: number;
|
|
678
678
|
intensity: number;
|
|
679
|
-
cellShape:
|
|
679
|
+
cellShape: number;
|
|
680
680
|
cellRotationDeg: number;
|
|
681
|
-
chipShape:
|
|
681
|
+
chipShape: number;
|
|
682
682
|
chipRotationDeg: number;
|
|
683
683
|
}, {
|
|
684
684
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -687,9 +687,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
687
687
|
holeMinMm: number;
|
|
688
688
|
holeMaxMm: number;
|
|
689
689
|
intensity: number;
|
|
690
|
-
cellShape:
|
|
690
|
+
cellShape: number;
|
|
691
691
|
cellRotationDeg: number;
|
|
692
|
-
chipShape:
|
|
692
|
+
chipShape: number;
|
|
693
693
|
chipRotationDeg: number;
|
|
694
694
|
}>>;
|
|
695
695
|
layout: z.ZodObject<{
|
|
@@ -792,9 +792,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
792
792
|
holeMinMm: number;
|
|
793
793
|
holeMaxMm: number;
|
|
794
794
|
intensity: number;
|
|
795
|
-
cellShape:
|
|
795
|
+
cellShape: number;
|
|
796
796
|
cellRotationDeg: number;
|
|
797
|
-
chipShape:
|
|
797
|
+
chipShape: number;
|
|
798
798
|
chipRotationDeg: number;
|
|
799
799
|
} | null;
|
|
800
800
|
layout: {
|
|
@@ -838,9 +838,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
838
838
|
holeMinMm: number;
|
|
839
839
|
holeMaxMm: number;
|
|
840
840
|
intensity: number;
|
|
841
|
-
cellShape:
|
|
841
|
+
cellShape: number;
|
|
842
842
|
cellRotationDeg: number;
|
|
843
|
-
chipShape:
|
|
843
|
+
chipShape: number;
|
|
844
844
|
chipRotationDeg: number;
|
|
845
845
|
} | null;
|
|
846
846
|
layout: {
|
|
@@ -931,9 +931,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
931
931
|
holeMinMm: number;
|
|
932
932
|
holeMaxMm: number;
|
|
933
933
|
intensity: number;
|
|
934
|
-
cellShape:
|
|
934
|
+
cellShape: number;
|
|
935
935
|
cellRotationDeg: number;
|
|
936
|
-
chipShape:
|
|
936
|
+
chipShape: number;
|
|
937
937
|
chipRotationDeg: number;
|
|
938
938
|
} | null;
|
|
939
939
|
layout: {
|
|
@@ -1024,9 +1024,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1024
1024
|
holeMinMm: number;
|
|
1025
1025
|
holeMaxMm: number;
|
|
1026
1026
|
intensity: number;
|
|
1027
|
-
cellShape:
|
|
1027
|
+
cellShape: number;
|
|
1028
1028
|
cellRotationDeg: number;
|
|
1029
|
-
chipShape:
|
|
1029
|
+
chipShape: number;
|
|
1030
1030
|
chipRotationDeg: number;
|
|
1031
1031
|
} | null;
|
|
1032
1032
|
layout: {
|
|
@@ -1117,9 +1117,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1117
1117
|
holeMinMm: number;
|
|
1118
1118
|
holeMaxMm: number;
|
|
1119
1119
|
intensity: number;
|
|
1120
|
-
cellShape:
|
|
1120
|
+
cellShape: number;
|
|
1121
1121
|
cellRotationDeg: number;
|
|
1122
|
-
chipShape:
|
|
1122
|
+
chipShape: number;
|
|
1123
1123
|
chipRotationDeg: number;
|
|
1124
1124
|
} | null;
|
|
1125
1125
|
layout: {
|
|
@@ -1210,9 +1210,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1210
1210
|
holeMinMm: number;
|
|
1211
1211
|
holeMaxMm: number;
|
|
1212
1212
|
intensity: number;
|
|
1213
|
-
cellShape:
|
|
1213
|
+
cellShape: number;
|
|
1214
1214
|
cellRotationDeg: number;
|
|
1215
|
-
chipShape:
|
|
1215
|
+
chipShape: number;
|
|
1216
1216
|
chipRotationDeg: number;
|
|
1217
1217
|
} | null;
|
|
1218
1218
|
layout: {
|
|
@@ -1303,9 +1303,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1303
1303
|
holeMinMm: number;
|
|
1304
1304
|
holeMaxMm: number;
|
|
1305
1305
|
intensity: number;
|
|
1306
|
-
cellShape:
|
|
1306
|
+
cellShape: number;
|
|
1307
1307
|
cellRotationDeg: number;
|
|
1308
|
-
chipShape:
|
|
1308
|
+
chipShape: number;
|
|
1309
1309
|
chipRotationDeg: number;
|
|
1310
1310
|
} | null;
|
|
1311
1311
|
layout: {
|
|
@@ -1396,9 +1396,9 @@ declare const physicalConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1396
1396
|
holeMinMm: number;
|
|
1397
1397
|
holeMaxMm: number;
|
|
1398
1398
|
intensity: number;
|
|
1399
|
-
cellShape:
|
|
1399
|
+
cellShape: number;
|
|
1400
1400
|
cellRotationDeg: number;
|
|
1401
|
-
chipShape:
|
|
1401
|
+
chipShape: number;
|
|
1402
1402
|
chipRotationDeg: number;
|
|
1403
1403
|
} | null;
|
|
1404
1404
|
layout: {
|
|
@@ -1467,33 +1467,6 @@ declare const digitalVisibilitySchema: z.ZodObject<{
|
|
|
1467
1467
|
showBio?: boolean | undefined;
|
|
1468
1468
|
showSocialLinks?: boolean | undefined;
|
|
1469
1469
|
}>;
|
|
1470
|
-
declare const MAX_CTA_BUTTONS = 5;
|
|
1471
|
-
declare const ctaButtonSchema: z.ZodObject<{
|
|
1472
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1473
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1474
|
-
}, "strip", z.ZodTypeAny, {
|
|
1475
|
-
url: string;
|
|
1476
|
-
label: string;
|
|
1477
|
-
}, {
|
|
1478
|
-
url?: string | undefined;
|
|
1479
|
-
label?: string | undefined;
|
|
1480
|
-
}>;
|
|
1481
|
-
declare const ctaButtonsSchema: z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1482
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1483
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1484
|
-
}, "strip", z.ZodTypeAny, {
|
|
1485
|
-
url: string;
|
|
1486
|
-
label: string;
|
|
1487
|
-
}, {
|
|
1488
|
-
url?: string | undefined;
|
|
1489
|
-
label?: string | undefined;
|
|
1490
|
-
}>, "many">, {
|
|
1491
|
-
url: string;
|
|
1492
|
-
label: string;
|
|
1493
|
-
}[], {
|
|
1494
|
-
url?: string | undefined;
|
|
1495
|
-
label?: string | undefined;
|
|
1496
|
-
}[]>;
|
|
1497
1470
|
declare const digitalConfigSchema: z.ZodObject<{
|
|
1498
1471
|
templateId: z.ZodEnum<["minimal", "bold", "card", "aurora"]>;
|
|
1499
1472
|
accentColor: z.ZodString;
|
|
@@ -1565,22 +1538,6 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1565
1538
|
customUrl?: string | undefined;
|
|
1566
1539
|
customUrlLabel?: string | undefined;
|
|
1567
1540
|
}>>;
|
|
1568
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
1569
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1570
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
1571
|
-
}, "strip", z.ZodTypeAny, {
|
|
1572
|
-
url: string;
|
|
1573
|
-
label: string;
|
|
1574
|
-
}, {
|
|
1575
|
-
url?: string | undefined;
|
|
1576
|
-
label?: string | undefined;
|
|
1577
|
-
}>, "many">, {
|
|
1578
|
-
url: string;
|
|
1579
|
-
label: string;
|
|
1580
|
-
}[], {
|
|
1581
|
-
url?: string | undefined;
|
|
1582
|
-
label?: string | undefined;
|
|
1583
|
-
}[]>>;
|
|
1584
1541
|
}, "strip", z.ZodTypeAny, {
|
|
1585
1542
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
1586
1543
|
accentColor: string;
|
|
@@ -1612,10 +1569,6 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1612
1569
|
customUrl?: string | undefined;
|
|
1613
1570
|
customUrlLabel?: string | undefined;
|
|
1614
1571
|
} | undefined;
|
|
1615
|
-
ctaButtons?: {
|
|
1616
|
-
url: string;
|
|
1617
|
-
label: string;
|
|
1618
|
-
}[] | undefined;
|
|
1619
1572
|
}, {
|
|
1620
1573
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
1621
1574
|
accentColor: string;
|
|
@@ -1647,10 +1600,6 @@ declare const digitalConfigSchema: z.ZodObject<{
|
|
|
1647
1600
|
customUrl?: string | undefined;
|
|
1648
1601
|
customUrlLabel?: string | undefined;
|
|
1649
1602
|
} | undefined;
|
|
1650
|
-
ctaButtons?: {
|
|
1651
|
-
url?: string | undefined;
|
|
1652
|
-
label?: string | undefined;
|
|
1653
|
-
}[] | undefined;
|
|
1654
1603
|
}>;
|
|
1655
1604
|
declare const configurationCreateSchema: z.ZodObject<{
|
|
1656
1605
|
sessionId: z.ZodString;
|
|
@@ -1868,9 +1817,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1868
1817
|
holeMinMm: z.ZodNumber;
|
|
1869
1818
|
holeMaxMm: z.ZodNumber;
|
|
1870
1819
|
intensity: z.ZodNumber;
|
|
1871
|
-
cellShape: z.
|
|
1820
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1872
1821
|
cellRotationDeg: z.ZodNumber;
|
|
1873
|
-
chipShape: z.
|
|
1822
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1874
1823
|
chipRotationDeg: z.ZodNumber;
|
|
1875
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1876
1825
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1879,9 +1828,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1879
1828
|
holeMinMm: number;
|
|
1880
1829
|
holeMaxMm: number;
|
|
1881
1830
|
intensity: number;
|
|
1882
|
-
cellShape:
|
|
1831
|
+
cellShape: number;
|
|
1883
1832
|
cellRotationDeg: number;
|
|
1884
|
-
chipShape:
|
|
1833
|
+
chipShape: number;
|
|
1885
1834
|
chipRotationDeg: number;
|
|
1886
1835
|
}, {
|
|
1887
1836
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1890,9 +1839,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1890
1839
|
holeMinMm: number;
|
|
1891
1840
|
holeMaxMm: number;
|
|
1892
1841
|
intensity: number;
|
|
1893
|
-
cellShape:
|
|
1842
|
+
cellShape: number;
|
|
1894
1843
|
cellRotationDeg: number;
|
|
1895
|
-
chipShape:
|
|
1844
|
+
chipShape: number;
|
|
1896
1845
|
chipRotationDeg: number;
|
|
1897
1846
|
}>, {
|
|
1898
1847
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1901,9 +1850,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1901
1850
|
holeMinMm: number;
|
|
1902
1851
|
holeMaxMm: number;
|
|
1903
1852
|
intensity: number;
|
|
1904
|
-
cellShape:
|
|
1853
|
+
cellShape: number;
|
|
1905
1854
|
cellRotationDeg: number;
|
|
1906
|
-
chipShape:
|
|
1855
|
+
chipShape: number;
|
|
1907
1856
|
chipRotationDeg: number;
|
|
1908
1857
|
}, {
|
|
1909
1858
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -1912,9 +1861,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
1912
1861
|
holeMinMm: number;
|
|
1913
1862
|
holeMaxMm: number;
|
|
1914
1863
|
intensity: number;
|
|
1915
|
-
cellShape:
|
|
1864
|
+
cellShape: number;
|
|
1916
1865
|
cellRotationDeg: number;
|
|
1917
|
-
chipShape:
|
|
1866
|
+
chipShape: number;
|
|
1918
1867
|
chipRotationDeg: number;
|
|
1919
1868
|
}>>;
|
|
1920
1869
|
layout: z.ZodObject<{
|
|
@@ -2017,9 +1966,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2017
1966
|
holeMinMm: number;
|
|
2018
1967
|
holeMaxMm: number;
|
|
2019
1968
|
intensity: number;
|
|
2020
|
-
cellShape:
|
|
1969
|
+
cellShape: number;
|
|
2021
1970
|
cellRotationDeg: number;
|
|
2022
|
-
chipShape:
|
|
1971
|
+
chipShape: number;
|
|
2023
1972
|
chipRotationDeg: number;
|
|
2024
1973
|
} | null;
|
|
2025
1974
|
layout: {
|
|
@@ -2063,9 +2012,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2063
2012
|
holeMinMm: number;
|
|
2064
2013
|
holeMaxMm: number;
|
|
2065
2014
|
intensity: number;
|
|
2066
|
-
cellShape:
|
|
2015
|
+
cellShape: number;
|
|
2067
2016
|
cellRotationDeg: number;
|
|
2068
|
-
chipShape:
|
|
2017
|
+
chipShape: number;
|
|
2069
2018
|
chipRotationDeg: number;
|
|
2070
2019
|
} | null;
|
|
2071
2020
|
layout: {
|
|
@@ -2156,9 +2105,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2156
2105
|
holeMinMm: number;
|
|
2157
2106
|
holeMaxMm: number;
|
|
2158
2107
|
intensity: number;
|
|
2159
|
-
cellShape:
|
|
2108
|
+
cellShape: number;
|
|
2160
2109
|
cellRotationDeg: number;
|
|
2161
|
-
chipShape:
|
|
2110
|
+
chipShape: number;
|
|
2162
2111
|
chipRotationDeg: number;
|
|
2163
2112
|
} | null;
|
|
2164
2113
|
layout: {
|
|
@@ -2249,9 +2198,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2249
2198
|
holeMinMm: number;
|
|
2250
2199
|
holeMaxMm: number;
|
|
2251
2200
|
intensity: number;
|
|
2252
|
-
cellShape:
|
|
2201
|
+
cellShape: number;
|
|
2253
2202
|
cellRotationDeg: number;
|
|
2254
|
-
chipShape:
|
|
2203
|
+
chipShape: number;
|
|
2255
2204
|
chipRotationDeg: number;
|
|
2256
2205
|
} | null;
|
|
2257
2206
|
layout: {
|
|
@@ -2342,9 +2291,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2342
2291
|
holeMinMm: number;
|
|
2343
2292
|
holeMaxMm: number;
|
|
2344
2293
|
intensity: number;
|
|
2345
|
-
cellShape:
|
|
2294
|
+
cellShape: number;
|
|
2346
2295
|
cellRotationDeg: number;
|
|
2347
|
-
chipShape:
|
|
2296
|
+
chipShape: number;
|
|
2348
2297
|
chipRotationDeg: number;
|
|
2349
2298
|
} | null;
|
|
2350
2299
|
layout: {
|
|
@@ -2435,9 +2384,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2435
2384
|
holeMinMm: number;
|
|
2436
2385
|
holeMaxMm: number;
|
|
2437
2386
|
intensity: number;
|
|
2438
|
-
cellShape:
|
|
2387
|
+
cellShape: number;
|
|
2439
2388
|
cellRotationDeg: number;
|
|
2440
|
-
chipShape:
|
|
2389
|
+
chipShape: number;
|
|
2441
2390
|
chipRotationDeg: number;
|
|
2442
2391
|
} | null;
|
|
2443
2392
|
layout: {
|
|
@@ -2528,9 +2477,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2528
2477
|
holeMinMm: number;
|
|
2529
2478
|
holeMaxMm: number;
|
|
2530
2479
|
intensity: number;
|
|
2531
|
-
cellShape:
|
|
2480
|
+
cellShape: number;
|
|
2532
2481
|
cellRotationDeg: number;
|
|
2533
|
-
chipShape:
|
|
2482
|
+
chipShape: number;
|
|
2534
2483
|
chipRotationDeg: number;
|
|
2535
2484
|
} | null;
|
|
2536
2485
|
layout: {
|
|
@@ -2621,9 +2570,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2621
2570
|
holeMinMm: number;
|
|
2622
2571
|
holeMaxMm: number;
|
|
2623
2572
|
intensity: number;
|
|
2624
|
-
cellShape:
|
|
2573
|
+
cellShape: number;
|
|
2625
2574
|
cellRotationDeg: number;
|
|
2626
|
-
chipShape:
|
|
2575
|
+
chipShape: number;
|
|
2627
2576
|
chipRotationDeg: number;
|
|
2628
2577
|
} | null;
|
|
2629
2578
|
layout: {
|
|
@@ -2729,22 +2678,6 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2729
2678
|
customUrl?: string | undefined;
|
|
2730
2679
|
customUrlLabel?: string | undefined;
|
|
2731
2680
|
}>>;
|
|
2732
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
2733
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
2734
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
2735
|
-
}, "strip", z.ZodTypeAny, {
|
|
2736
|
-
url: string;
|
|
2737
|
-
label: string;
|
|
2738
|
-
}, {
|
|
2739
|
-
url?: string | undefined;
|
|
2740
|
-
label?: string | undefined;
|
|
2741
|
-
}>, "many">, {
|
|
2742
|
-
url: string;
|
|
2743
|
-
label: string;
|
|
2744
|
-
}[], {
|
|
2745
|
-
url?: string | undefined;
|
|
2746
|
-
label?: string | undefined;
|
|
2747
|
-
}[]>>;
|
|
2748
2681
|
}, "strip", z.ZodTypeAny, {
|
|
2749
2682
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
2750
2683
|
accentColor: string;
|
|
@@ -2776,10 +2709,6 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2776
2709
|
customUrl?: string | undefined;
|
|
2777
2710
|
customUrlLabel?: string | undefined;
|
|
2778
2711
|
} | undefined;
|
|
2779
|
-
ctaButtons?: {
|
|
2780
|
-
url: string;
|
|
2781
|
-
label: string;
|
|
2782
|
-
}[] | undefined;
|
|
2783
2712
|
}, {
|
|
2784
2713
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
2785
2714
|
accentColor: string;
|
|
@@ -2811,10 +2740,6 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2811
2740
|
customUrl?: string | undefined;
|
|
2812
2741
|
customUrlLabel?: string | undefined;
|
|
2813
2742
|
} | undefined;
|
|
2814
|
-
ctaButtons?: {
|
|
2815
|
-
url?: string | undefined;
|
|
2816
|
-
label?: string | undefined;
|
|
2817
|
-
}[] | undefined;
|
|
2818
2743
|
}>;
|
|
2819
2744
|
quantity: z.ZodDefault<z.ZodNumber>;
|
|
2820
2745
|
existingProfileId: z.ZodOptional<z.ZodString>;
|
|
@@ -2902,9 +2827,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2902
2827
|
holeMinMm: number;
|
|
2903
2828
|
holeMaxMm: number;
|
|
2904
2829
|
intensity: number;
|
|
2905
|
-
cellShape:
|
|
2830
|
+
cellShape: number;
|
|
2906
2831
|
cellRotationDeg: number;
|
|
2907
|
-
chipShape:
|
|
2832
|
+
chipShape: number;
|
|
2908
2833
|
chipRotationDeg: number;
|
|
2909
2834
|
} | null;
|
|
2910
2835
|
layout: {
|
|
@@ -2970,10 +2895,6 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
2970
2895
|
customUrl?: string | undefined;
|
|
2971
2896
|
customUrlLabel?: string | undefined;
|
|
2972
2897
|
} | undefined;
|
|
2973
|
-
ctaButtons?: {
|
|
2974
|
-
url: string;
|
|
2975
|
-
label: string;
|
|
2976
|
-
}[] | undefined;
|
|
2977
2898
|
};
|
|
2978
2899
|
quantity: number;
|
|
2979
2900
|
existingProfileId?: string | undefined;
|
|
@@ -3061,9 +2982,9 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
3061
2982
|
holeMinMm: number;
|
|
3062
2983
|
holeMaxMm: number;
|
|
3063
2984
|
intensity: number;
|
|
3064
|
-
cellShape:
|
|
2985
|
+
cellShape: number;
|
|
3065
2986
|
cellRotationDeg: number;
|
|
3066
|
-
chipShape:
|
|
2987
|
+
chipShape: number;
|
|
3067
2988
|
chipRotationDeg: number;
|
|
3068
2989
|
} | null;
|
|
3069
2990
|
layout: {
|
|
@@ -3129,10 +3050,6 @@ declare const configurationCreateSchema: z.ZodObject<{
|
|
|
3129
3050
|
customUrl?: string | undefined;
|
|
3130
3051
|
customUrlLabel?: string | undefined;
|
|
3131
3052
|
} | undefined;
|
|
3132
|
-
ctaButtons?: {
|
|
3133
|
-
url?: string | undefined;
|
|
3134
|
-
label?: string | undefined;
|
|
3135
|
-
}[] | undefined;
|
|
3136
3053
|
};
|
|
3137
3054
|
quantity?: number | undefined;
|
|
3138
3055
|
existingProfileId?: string | undefined;
|
|
@@ -3353,9 +3270,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3353
3270
|
holeMinMm: z.ZodNumber;
|
|
3354
3271
|
holeMaxMm: z.ZodNumber;
|
|
3355
3272
|
intensity: z.ZodNumber;
|
|
3356
|
-
cellShape: z.
|
|
3273
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3357
3274
|
cellRotationDeg: z.ZodNumber;
|
|
3358
|
-
chipShape: z.
|
|
3275
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
3359
3276
|
chipRotationDeg: z.ZodNumber;
|
|
3360
3277
|
}, "strip", z.ZodTypeAny, {
|
|
3361
3278
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3364,9 +3281,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3364
3281
|
holeMinMm: number;
|
|
3365
3282
|
holeMaxMm: number;
|
|
3366
3283
|
intensity: number;
|
|
3367
|
-
cellShape:
|
|
3284
|
+
cellShape: number;
|
|
3368
3285
|
cellRotationDeg: number;
|
|
3369
|
-
chipShape:
|
|
3286
|
+
chipShape: number;
|
|
3370
3287
|
chipRotationDeg: number;
|
|
3371
3288
|
}, {
|
|
3372
3289
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3375,9 +3292,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3375
3292
|
holeMinMm: number;
|
|
3376
3293
|
holeMaxMm: number;
|
|
3377
3294
|
intensity: number;
|
|
3378
|
-
cellShape:
|
|
3295
|
+
cellShape: number;
|
|
3379
3296
|
cellRotationDeg: number;
|
|
3380
|
-
chipShape:
|
|
3297
|
+
chipShape: number;
|
|
3381
3298
|
chipRotationDeg: number;
|
|
3382
3299
|
}>, {
|
|
3383
3300
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3386,9 +3303,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3386
3303
|
holeMinMm: number;
|
|
3387
3304
|
holeMaxMm: number;
|
|
3388
3305
|
intensity: number;
|
|
3389
|
-
cellShape:
|
|
3306
|
+
cellShape: number;
|
|
3390
3307
|
cellRotationDeg: number;
|
|
3391
|
-
chipShape:
|
|
3308
|
+
chipShape: number;
|
|
3392
3309
|
chipRotationDeg: number;
|
|
3393
3310
|
}, {
|
|
3394
3311
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -3397,9 +3314,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3397
3314
|
holeMinMm: number;
|
|
3398
3315
|
holeMaxMm: number;
|
|
3399
3316
|
intensity: number;
|
|
3400
|
-
cellShape:
|
|
3317
|
+
cellShape: number;
|
|
3401
3318
|
cellRotationDeg: number;
|
|
3402
|
-
chipShape:
|
|
3319
|
+
chipShape: number;
|
|
3403
3320
|
chipRotationDeg: number;
|
|
3404
3321
|
}>>;
|
|
3405
3322
|
layout: z.ZodObject<{
|
|
@@ -3502,9 +3419,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3502
3419
|
holeMinMm: number;
|
|
3503
3420
|
holeMaxMm: number;
|
|
3504
3421
|
intensity: number;
|
|
3505
|
-
cellShape:
|
|
3422
|
+
cellShape: number;
|
|
3506
3423
|
cellRotationDeg: number;
|
|
3507
|
-
chipShape:
|
|
3424
|
+
chipShape: number;
|
|
3508
3425
|
chipRotationDeg: number;
|
|
3509
3426
|
} | null;
|
|
3510
3427
|
layout: {
|
|
@@ -3548,9 +3465,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3548
3465
|
holeMinMm: number;
|
|
3549
3466
|
holeMaxMm: number;
|
|
3550
3467
|
intensity: number;
|
|
3551
|
-
cellShape:
|
|
3468
|
+
cellShape: number;
|
|
3552
3469
|
cellRotationDeg: number;
|
|
3553
|
-
chipShape:
|
|
3470
|
+
chipShape: number;
|
|
3554
3471
|
chipRotationDeg: number;
|
|
3555
3472
|
} | null;
|
|
3556
3473
|
layout: {
|
|
@@ -3641,9 +3558,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3641
3558
|
holeMinMm: number;
|
|
3642
3559
|
holeMaxMm: number;
|
|
3643
3560
|
intensity: number;
|
|
3644
|
-
cellShape:
|
|
3561
|
+
cellShape: number;
|
|
3645
3562
|
cellRotationDeg: number;
|
|
3646
|
-
chipShape:
|
|
3563
|
+
chipShape: number;
|
|
3647
3564
|
chipRotationDeg: number;
|
|
3648
3565
|
} | null;
|
|
3649
3566
|
layout: {
|
|
@@ -3734,9 +3651,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3734
3651
|
holeMinMm: number;
|
|
3735
3652
|
holeMaxMm: number;
|
|
3736
3653
|
intensity: number;
|
|
3737
|
-
cellShape:
|
|
3654
|
+
cellShape: number;
|
|
3738
3655
|
cellRotationDeg: number;
|
|
3739
|
-
chipShape:
|
|
3656
|
+
chipShape: number;
|
|
3740
3657
|
chipRotationDeg: number;
|
|
3741
3658
|
} | null;
|
|
3742
3659
|
layout: {
|
|
@@ -3827,9 +3744,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3827
3744
|
holeMinMm: number;
|
|
3828
3745
|
holeMaxMm: number;
|
|
3829
3746
|
intensity: number;
|
|
3830
|
-
cellShape:
|
|
3747
|
+
cellShape: number;
|
|
3831
3748
|
cellRotationDeg: number;
|
|
3832
|
-
chipShape:
|
|
3749
|
+
chipShape: number;
|
|
3833
3750
|
chipRotationDeg: number;
|
|
3834
3751
|
} | null;
|
|
3835
3752
|
layout: {
|
|
@@ -3920,9 +3837,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
3920
3837
|
holeMinMm: number;
|
|
3921
3838
|
holeMaxMm: number;
|
|
3922
3839
|
intensity: number;
|
|
3923
|
-
cellShape:
|
|
3840
|
+
cellShape: number;
|
|
3924
3841
|
cellRotationDeg: number;
|
|
3925
|
-
chipShape:
|
|
3842
|
+
chipShape: number;
|
|
3926
3843
|
chipRotationDeg: number;
|
|
3927
3844
|
} | null;
|
|
3928
3845
|
layout: {
|
|
@@ -4013,9 +3930,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4013
3930
|
holeMinMm: number;
|
|
4014
3931
|
holeMaxMm: number;
|
|
4015
3932
|
intensity: number;
|
|
4016
|
-
cellShape:
|
|
3933
|
+
cellShape: number;
|
|
4017
3934
|
cellRotationDeg: number;
|
|
4018
|
-
chipShape:
|
|
3935
|
+
chipShape: number;
|
|
4019
3936
|
chipRotationDeg: number;
|
|
4020
3937
|
} | null;
|
|
4021
3938
|
layout: {
|
|
@@ -4106,9 +4023,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4106
4023
|
holeMinMm: number;
|
|
4107
4024
|
holeMaxMm: number;
|
|
4108
4025
|
intensity: number;
|
|
4109
|
-
cellShape:
|
|
4026
|
+
cellShape: number;
|
|
4110
4027
|
cellRotationDeg: number;
|
|
4111
|
-
chipShape:
|
|
4028
|
+
chipShape: number;
|
|
4112
4029
|
chipRotationDeg: number;
|
|
4113
4030
|
} | null;
|
|
4114
4031
|
layout: {
|
|
@@ -4214,22 +4131,6 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4214
4131
|
customUrl?: string | undefined;
|
|
4215
4132
|
customUrlLabel?: string | undefined;
|
|
4216
4133
|
}>>;
|
|
4217
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
4218
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
4219
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
4220
|
-
}, "strip", z.ZodTypeAny, {
|
|
4221
|
-
url: string;
|
|
4222
|
-
label: string;
|
|
4223
|
-
}, {
|
|
4224
|
-
url?: string | undefined;
|
|
4225
|
-
label?: string | undefined;
|
|
4226
|
-
}>, "many">, {
|
|
4227
|
-
url: string;
|
|
4228
|
-
label: string;
|
|
4229
|
-
}[], {
|
|
4230
|
-
url?: string | undefined;
|
|
4231
|
-
label?: string | undefined;
|
|
4232
|
-
}[]>>;
|
|
4233
4134
|
}, "strip", z.ZodTypeAny, {
|
|
4234
4135
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
4235
4136
|
accentColor: string;
|
|
@@ -4261,10 +4162,6 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4261
4162
|
customUrl?: string | undefined;
|
|
4262
4163
|
customUrlLabel?: string | undefined;
|
|
4263
4164
|
} | undefined;
|
|
4264
|
-
ctaButtons?: {
|
|
4265
|
-
url: string;
|
|
4266
|
-
label: string;
|
|
4267
|
-
}[] | undefined;
|
|
4268
4165
|
}, {
|
|
4269
4166
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
4270
4167
|
accentColor: string;
|
|
@@ -4296,10 +4193,6 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4296
4193
|
customUrl?: string | undefined;
|
|
4297
4194
|
customUrlLabel?: string | undefined;
|
|
4298
4195
|
} | undefined;
|
|
4299
|
-
ctaButtons?: {
|
|
4300
|
-
url?: string | undefined;
|
|
4301
|
-
label?: string | undefined;
|
|
4302
|
-
}[] | undefined;
|
|
4303
4196
|
}>>;
|
|
4304
4197
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
4305
4198
|
existingProfileId: z.ZodOptional<z.ZodString>;
|
|
@@ -4386,9 +4279,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4386
4279
|
holeMinMm: number;
|
|
4387
4280
|
holeMaxMm: number;
|
|
4388
4281
|
intensity: number;
|
|
4389
|
-
cellShape:
|
|
4282
|
+
cellShape: number;
|
|
4390
4283
|
cellRotationDeg: number;
|
|
4391
|
-
chipShape:
|
|
4284
|
+
chipShape: number;
|
|
4392
4285
|
chipRotationDeg: number;
|
|
4393
4286
|
} | null;
|
|
4394
4287
|
layout: {
|
|
@@ -4454,10 +4347,6 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4454
4347
|
customUrl?: string | undefined;
|
|
4455
4348
|
customUrlLabel?: string | undefined;
|
|
4456
4349
|
} | undefined;
|
|
4457
|
-
ctaButtons?: {
|
|
4458
|
-
url: string;
|
|
4459
|
-
label: string;
|
|
4460
|
-
}[] | undefined;
|
|
4461
4350
|
} | undefined;
|
|
4462
4351
|
quantity?: number | undefined;
|
|
4463
4352
|
existingProfileId?: string | undefined;
|
|
@@ -4544,9 +4433,9 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4544
4433
|
holeMinMm: number;
|
|
4545
4434
|
holeMaxMm: number;
|
|
4546
4435
|
intensity: number;
|
|
4547
|
-
cellShape:
|
|
4436
|
+
cellShape: number;
|
|
4548
4437
|
cellRotationDeg: number;
|
|
4549
|
-
chipShape:
|
|
4438
|
+
chipShape: number;
|
|
4550
4439
|
chipRotationDeg: number;
|
|
4551
4440
|
} | null;
|
|
4552
4441
|
layout: {
|
|
@@ -4612,10 +4501,6 @@ declare const configurationUpdateSchema: z.ZodObject<{
|
|
|
4612
4501
|
customUrl?: string | undefined;
|
|
4613
4502
|
customUrlLabel?: string | undefined;
|
|
4614
4503
|
} | undefined;
|
|
4615
|
-
ctaButtons?: {
|
|
4616
|
-
url?: string | undefined;
|
|
4617
|
-
label?: string | undefined;
|
|
4618
|
-
}[] | undefined;
|
|
4619
4504
|
} | undefined;
|
|
4620
4505
|
quantity?: number | undefined;
|
|
4621
4506
|
existingProfileId?: string | undefined;
|
|
@@ -4706,22 +4591,6 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4706
4591
|
customUrl?: string | undefined;
|
|
4707
4592
|
customUrlLabel?: string | undefined;
|
|
4708
4593
|
}>>>>;
|
|
4709
|
-
ctaButtons: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
4710
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
4711
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
4712
|
-
}, "strip", z.ZodTypeAny, {
|
|
4713
|
-
url: string;
|
|
4714
|
-
label: string;
|
|
4715
|
-
}, {
|
|
4716
|
-
url?: string | undefined;
|
|
4717
|
-
label?: string | undefined;
|
|
4718
|
-
}>, "many">, {
|
|
4719
|
-
url: string;
|
|
4720
|
-
label: string;
|
|
4721
|
-
}[], {
|
|
4722
|
-
url?: string | undefined;
|
|
4723
|
-
label?: string | undefined;
|
|
4724
|
-
}[]>>>>;
|
|
4725
4594
|
profilePhotoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
4726
4595
|
companyLogoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
4727
4596
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4757,10 +4626,6 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4757
4626
|
customUrl?: string | undefined;
|
|
4758
4627
|
customUrlLabel?: string | undefined;
|
|
4759
4628
|
} | undefined;
|
|
4760
|
-
ctaButtons?: {
|
|
4761
|
-
url: string;
|
|
4762
|
-
label: string;
|
|
4763
|
-
}[] | undefined;
|
|
4764
4629
|
}, {
|
|
4765
4630
|
profilePhotoUrl?: string | undefined;
|
|
4766
4631
|
companyLogoUrl?: string | undefined;
|
|
@@ -4794,10 +4659,6 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4794
4659
|
customUrl?: string | undefined;
|
|
4795
4660
|
customUrlLabel?: string | undefined;
|
|
4796
4661
|
} | undefined;
|
|
4797
|
-
ctaButtons?: {
|
|
4798
|
-
url?: string | undefined;
|
|
4799
|
-
label?: string | undefined;
|
|
4800
|
-
}[] | undefined;
|
|
4801
4662
|
}>>;
|
|
4802
4663
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "archived"]>>;
|
|
4803
4664
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4835,10 +4696,6 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4835
4696
|
customUrl?: string | undefined;
|
|
4836
4697
|
customUrlLabel?: string | undefined;
|
|
4837
4698
|
} | undefined;
|
|
4838
|
-
ctaButtons?: {
|
|
4839
|
-
url: string;
|
|
4840
|
-
label: string;
|
|
4841
|
-
}[] | undefined;
|
|
4842
4699
|
} | undefined;
|
|
4843
4700
|
}, {
|
|
4844
4701
|
status?: "active" | "suspended" | "archived" | undefined;
|
|
@@ -4875,10 +4732,6 @@ declare const cardUpdateSchema: z.ZodObject<{
|
|
|
4875
4732
|
customUrl?: string | undefined;
|
|
4876
4733
|
customUrlLabel?: string | undefined;
|
|
4877
4734
|
} | undefined;
|
|
4878
|
-
ctaButtons?: {
|
|
4879
|
-
url?: string | undefined;
|
|
4880
|
-
label?: string | undefined;
|
|
4881
|
-
}[] | undefined;
|
|
4882
4735
|
} | undefined;
|
|
4883
4736
|
}>;
|
|
4884
4737
|
declare const adminCardCreateSchema: z.ZodObject<{
|
|
@@ -5042,22 +4895,6 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5042
4895
|
customUrl?: string | undefined;
|
|
5043
4896
|
customUrlLabel?: string | undefined;
|
|
5044
4897
|
}>>;
|
|
5045
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
5046
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
5047
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
5048
|
-
}, "strip", z.ZodTypeAny, {
|
|
5049
|
-
url: string;
|
|
5050
|
-
label: string;
|
|
5051
|
-
}, {
|
|
5052
|
-
url?: string | undefined;
|
|
5053
|
-
label?: string | undefined;
|
|
5054
|
-
}>, "many">, {
|
|
5055
|
-
url: string;
|
|
5056
|
-
label: string;
|
|
5057
|
-
}[], {
|
|
5058
|
-
url?: string | undefined;
|
|
5059
|
-
label?: string | undefined;
|
|
5060
|
-
}[]>>;
|
|
5061
4898
|
}, "strip", z.ZodTypeAny, {
|
|
5062
4899
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
5063
4900
|
accentColor: string;
|
|
@@ -5089,10 +4926,6 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5089
4926
|
customUrl?: string | undefined;
|
|
5090
4927
|
customUrlLabel?: string | undefined;
|
|
5091
4928
|
} | undefined;
|
|
5092
|
-
ctaButtons?: {
|
|
5093
|
-
url: string;
|
|
5094
|
-
label: string;
|
|
5095
|
-
}[] | undefined;
|
|
5096
4929
|
}, {
|
|
5097
4930
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
5098
4931
|
accentColor: string;
|
|
@@ -5124,10 +4957,6 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5124
4957
|
customUrl?: string | undefined;
|
|
5125
4958
|
customUrlLabel?: string | undefined;
|
|
5126
4959
|
} | undefined;
|
|
5127
|
-
ctaButtons?: {
|
|
5128
|
-
url?: string | undefined;
|
|
5129
|
-
label?: string | undefined;
|
|
5130
|
-
}[] | undefined;
|
|
5131
4960
|
}>;
|
|
5132
4961
|
physicalConfig: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
5133
4962
|
material: z.ZodEnum<["plastic", "3dprint_standard", "metal", "bamboo"]>;
|
|
@@ -5255,9 +5084,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5255
5084
|
holeMinMm: z.ZodNumber;
|
|
5256
5085
|
holeMaxMm: z.ZodNumber;
|
|
5257
5086
|
intensity: z.ZodNumber;
|
|
5258
|
-
cellShape: z.
|
|
5087
|
+
cellShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
5259
5088
|
cellRotationDeg: z.ZodNumber;
|
|
5260
|
-
chipShape: z.
|
|
5089
|
+
chipShape: z.ZodEffects<z.ZodNumber, number, number>;
|
|
5261
5090
|
chipRotationDeg: z.ZodNumber;
|
|
5262
5091
|
}, "strip", z.ZodTypeAny, {
|
|
5263
5092
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5266,9 +5095,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5266
5095
|
holeMinMm: number;
|
|
5267
5096
|
holeMaxMm: number;
|
|
5268
5097
|
intensity: number;
|
|
5269
|
-
cellShape:
|
|
5098
|
+
cellShape: number;
|
|
5270
5099
|
cellRotationDeg: number;
|
|
5271
|
-
chipShape:
|
|
5100
|
+
chipShape: number;
|
|
5272
5101
|
chipRotationDeg: number;
|
|
5273
5102
|
}, {
|
|
5274
5103
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5277,9 +5106,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5277
5106
|
holeMinMm: number;
|
|
5278
5107
|
holeMaxMm: number;
|
|
5279
5108
|
intensity: number;
|
|
5280
|
-
cellShape:
|
|
5109
|
+
cellShape: number;
|
|
5281
5110
|
cellRotationDeg: number;
|
|
5282
|
-
chipShape:
|
|
5111
|
+
chipShape: number;
|
|
5283
5112
|
chipRotationDeg: number;
|
|
5284
5113
|
}>, {
|
|
5285
5114
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5288,9 +5117,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5288
5117
|
holeMinMm: number;
|
|
5289
5118
|
holeMaxMm: number;
|
|
5290
5119
|
intensity: number;
|
|
5291
|
-
cellShape:
|
|
5120
|
+
cellShape: number;
|
|
5292
5121
|
cellRotationDeg: number;
|
|
5293
|
-
chipShape:
|
|
5122
|
+
chipShape: number;
|
|
5294
5123
|
chipRotationDeg: number;
|
|
5295
5124
|
}, {
|
|
5296
5125
|
family: "radial" | "gradient" | "wave" | "spiral";
|
|
@@ -5299,9 +5128,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5299
5128
|
holeMinMm: number;
|
|
5300
5129
|
holeMaxMm: number;
|
|
5301
5130
|
intensity: number;
|
|
5302
|
-
cellShape:
|
|
5131
|
+
cellShape: number;
|
|
5303
5132
|
cellRotationDeg: number;
|
|
5304
|
-
chipShape:
|
|
5133
|
+
chipShape: number;
|
|
5305
5134
|
chipRotationDeg: number;
|
|
5306
5135
|
}>>;
|
|
5307
5136
|
layout: z.ZodObject<{
|
|
@@ -5404,9 +5233,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5404
5233
|
holeMinMm: number;
|
|
5405
5234
|
holeMaxMm: number;
|
|
5406
5235
|
intensity: number;
|
|
5407
|
-
cellShape:
|
|
5236
|
+
cellShape: number;
|
|
5408
5237
|
cellRotationDeg: number;
|
|
5409
|
-
chipShape:
|
|
5238
|
+
chipShape: number;
|
|
5410
5239
|
chipRotationDeg: number;
|
|
5411
5240
|
} | null;
|
|
5412
5241
|
layout: {
|
|
@@ -5450,9 +5279,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5450
5279
|
holeMinMm: number;
|
|
5451
5280
|
holeMaxMm: number;
|
|
5452
5281
|
intensity: number;
|
|
5453
|
-
cellShape:
|
|
5282
|
+
cellShape: number;
|
|
5454
5283
|
cellRotationDeg: number;
|
|
5455
|
-
chipShape:
|
|
5284
|
+
chipShape: number;
|
|
5456
5285
|
chipRotationDeg: number;
|
|
5457
5286
|
} | null;
|
|
5458
5287
|
layout: {
|
|
@@ -5543,9 +5372,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5543
5372
|
holeMinMm: number;
|
|
5544
5373
|
holeMaxMm: number;
|
|
5545
5374
|
intensity: number;
|
|
5546
|
-
cellShape:
|
|
5375
|
+
cellShape: number;
|
|
5547
5376
|
cellRotationDeg: number;
|
|
5548
|
-
chipShape:
|
|
5377
|
+
chipShape: number;
|
|
5549
5378
|
chipRotationDeg: number;
|
|
5550
5379
|
} | null;
|
|
5551
5380
|
layout: {
|
|
@@ -5636,9 +5465,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5636
5465
|
holeMinMm: number;
|
|
5637
5466
|
holeMaxMm: number;
|
|
5638
5467
|
intensity: number;
|
|
5639
|
-
cellShape:
|
|
5468
|
+
cellShape: number;
|
|
5640
5469
|
cellRotationDeg: number;
|
|
5641
|
-
chipShape:
|
|
5470
|
+
chipShape: number;
|
|
5642
5471
|
chipRotationDeg: number;
|
|
5643
5472
|
} | null;
|
|
5644
5473
|
layout: {
|
|
@@ -5729,9 +5558,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5729
5558
|
holeMinMm: number;
|
|
5730
5559
|
holeMaxMm: number;
|
|
5731
5560
|
intensity: number;
|
|
5732
|
-
cellShape:
|
|
5561
|
+
cellShape: number;
|
|
5733
5562
|
cellRotationDeg: number;
|
|
5734
|
-
chipShape:
|
|
5563
|
+
chipShape: number;
|
|
5735
5564
|
chipRotationDeg: number;
|
|
5736
5565
|
} | null;
|
|
5737
5566
|
layout: {
|
|
@@ -5822,9 +5651,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5822
5651
|
holeMinMm: number;
|
|
5823
5652
|
holeMaxMm: number;
|
|
5824
5653
|
intensity: number;
|
|
5825
|
-
cellShape:
|
|
5654
|
+
cellShape: number;
|
|
5826
5655
|
cellRotationDeg: number;
|
|
5827
|
-
chipShape:
|
|
5656
|
+
chipShape: number;
|
|
5828
5657
|
chipRotationDeg: number;
|
|
5829
5658
|
} | null;
|
|
5830
5659
|
layout: {
|
|
@@ -5915,9 +5744,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
5915
5744
|
holeMinMm: number;
|
|
5916
5745
|
holeMaxMm: number;
|
|
5917
5746
|
intensity: number;
|
|
5918
|
-
cellShape:
|
|
5747
|
+
cellShape: number;
|
|
5919
5748
|
cellRotationDeg: number;
|
|
5920
|
-
chipShape:
|
|
5749
|
+
chipShape: number;
|
|
5921
5750
|
chipRotationDeg: number;
|
|
5922
5751
|
} | null;
|
|
5923
5752
|
layout: {
|
|
@@ -6008,9 +5837,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6008
5837
|
holeMinMm: number;
|
|
6009
5838
|
holeMaxMm: number;
|
|
6010
5839
|
intensity: number;
|
|
6011
|
-
cellShape:
|
|
5840
|
+
cellShape: number;
|
|
6012
5841
|
cellRotationDeg: number;
|
|
6013
|
-
chipShape:
|
|
5842
|
+
chipShape: number;
|
|
6014
5843
|
chipRotationDeg: number;
|
|
6015
5844
|
} | null;
|
|
6016
5845
|
layout: {
|
|
@@ -6101,10 +5930,6 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6101
5930
|
customUrl?: string | undefined;
|
|
6102
5931
|
customUrlLabel?: string | undefined;
|
|
6103
5932
|
} | undefined;
|
|
6104
|
-
ctaButtons?: {
|
|
6105
|
-
url: string;
|
|
6106
|
-
label: string;
|
|
6107
|
-
}[] | undefined;
|
|
6108
5933
|
};
|
|
6109
5934
|
targetUserId: string;
|
|
6110
5935
|
physicalConfig?: {
|
|
@@ -6164,9 +5989,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6164
5989
|
holeMinMm: number;
|
|
6165
5990
|
holeMaxMm: number;
|
|
6166
5991
|
intensity: number;
|
|
6167
|
-
cellShape:
|
|
5992
|
+
cellShape: number;
|
|
6168
5993
|
cellRotationDeg: number;
|
|
6169
|
-
chipShape:
|
|
5994
|
+
chipShape: number;
|
|
6170
5995
|
chipRotationDeg: number;
|
|
6171
5996
|
} | null;
|
|
6172
5997
|
layout: {
|
|
@@ -6257,10 +6082,6 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6257
6082
|
customUrl?: string | undefined;
|
|
6258
6083
|
customUrlLabel?: string | undefined;
|
|
6259
6084
|
} | undefined;
|
|
6260
|
-
ctaButtons?: {
|
|
6261
|
-
url?: string | undefined;
|
|
6262
|
-
label?: string | undefined;
|
|
6263
|
-
}[] | undefined;
|
|
6264
6085
|
};
|
|
6265
6086
|
targetUserId: string;
|
|
6266
6087
|
physicalConfig?: {
|
|
@@ -6320,9 +6141,9 @@ declare const adminCardCreateSchema: z.ZodObject<{
|
|
|
6320
6141
|
holeMinMm: number;
|
|
6321
6142
|
holeMaxMm: number;
|
|
6322
6143
|
intensity: number;
|
|
6323
|
-
cellShape:
|
|
6144
|
+
cellShape: number;
|
|
6324
6145
|
cellRotationDeg: number;
|
|
6325
|
-
chipShape:
|
|
6146
|
+
chipShape: number;
|
|
6326
6147
|
chipRotationDeg: number;
|
|
6327
6148
|
} | null;
|
|
6328
6149
|
layout: {
|
|
@@ -6612,22 +6433,6 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6612
6433
|
customUrl?: string | undefined;
|
|
6613
6434
|
customUrlLabel?: string | undefined;
|
|
6614
6435
|
}>>;
|
|
6615
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
6616
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
6617
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
6618
|
-
}, "strip", z.ZodTypeAny, {
|
|
6619
|
-
url: string;
|
|
6620
|
-
label: string;
|
|
6621
|
-
}, {
|
|
6622
|
-
url?: string | undefined;
|
|
6623
|
-
label?: string | undefined;
|
|
6624
|
-
}>, "many">, {
|
|
6625
|
-
url: string;
|
|
6626
|
-
label: string;
|
|
6627
|
-
}[], {
|
|
6628
|
-
url?: string | undefined;
|
|
6629
|
-
label?: string | undefined;
|
|
6630
|
-
}[]>>;
|
|
6631
6436
|
}, "strip", z.ZodTypeAny, {
|
|
6632
6437
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
6633
6438
|
accentColor: string;
|
|
@@ -6659,10 +6464,6 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6659
6464
|
customUrl?: string | undefined;
|
|
6660
6465
|
customUrlLabel?: string | undefined;
|
|
6661
6466
|
} | undefined;
|
|
6662
|
-
ctaButtons?: {
|
|
6663
|
-
url: string;
|
|
6664
|
-
label: string;
|
|
6665
|
-
}[] | undefined;
|
|
6666
6467
|
}, {
|
|
6667
6468
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
6668
6469
|
accentColor: string;
|
|
@@ -6694,10 +6495,6 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6694
6495
|
customUrl?: string | undefined;
|
|
6695
6496
|
customUrlLabel?: string | undefined;
|
|
6696
6497
|
} | undefined;
|
|
6697
|
-
ctaButtons?: {
|
|
6698
|
-
url?: string | undefined;
|
|
6699
|
-
label?: string | undefined;
|
|
6700
|
-
}[] | undefined;
|
|
6701
6498
|
}>;
|
|
6702
6499
|
visibility: z.ZodDefault<z.ZodEnum<["public", "private", "link_only"]>>;
|
|
6703
6500
|
accessPin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -6758,13 +6555,9 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6758
6555
|
customUrl?: string | undefined;
|
|
6759
6556
|
customUrlLabel?: string | undefined;
|
|
6760
6557
|
} | undefined;
|
|
6761
|
-
ctaButtons?: {
|
|
6762
|
-
url: string;
|
|
6763
|
-
label: string;
|
|
6764
|
-
}[] | undefined;
|
|
6765
6558
|
};
|
|
6766
|
-
label?: string | undefined;
|
|
6767
6559
|
cardId?: string | undefined;
|
|
6560
|
+
label?: string | undefined;
|
|
6768
6561
|
icon?: string | undefined;
|
|
6769
6562
|
accessPin?: string | undefined;
|
|
6770
6563
|
}, {
|
|
@@ -6823,14 +6616,10 @@ declare const profileCreateSchema: z.ZodObject<{
|
|
|
6823
6616
|
customUrl?: string | undefined;
|
|
6824
6617
|
customUrlLabel?: string | undefined;
|
|
6825
6618
|
} | undefined;
|
|
6826
|
-
ctaButtons?: {
|
|
6827
|
-
url?: string | undefined;
|
|
6828
|
-
label?: string | undefined;
|
|
6829
|
-
}[] | undefined;
|
|
6830
6619
|
};
|
|
6831
|
-
label?: string | undefined;
|
|
6832
6620
|
visibility?: "public" | "private" | "link_only" | undefined;
|
|
6833
6621
|
cardId?: string | undefined;
|
|
6622
|
+
label?: string | undefined;
|
|
6834
6623
|
icon?: string | undefined;
|
|
6835
6624
|
accessPin?: string | undefined;
|
|
6836
6625
|
}>;
|
|
@@ -7003,22 +6792,6 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
7003
6792
|
customUrl?: string | undefined;
|
|
7004
6793
|
customUrlLabel?: string | undefined;
|
|
7005
6794
|
}>>;
|
|
7006
|
-
ctaButtons: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
7007
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
7008
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
7009
|
-
}, "strip", z.ZodTypeAny, {
|
|
7010
|
-
url: string;
|
|
7011
|
-
label: string;
|
|
7012
|
-
}, {
|
|
7013
|
-
url?: string | undefined;
|
|
7014
|
-
label?: string | undefined;
|
|
7015
|
-
}>, "many">, {
|
|
7016
|
-
url: string;
|
|
7017
|
-
label: string;
|
|
7018
|
-
}[], {
|
|
7019
|
-
url?: string | undefined;
|
|
7020
|
-
label?: string | undefined;
|
|
7021
|
-
}[]>>;
|
|
7022
6795
|
}, "strip", z.ZodTypeAny, {
|
|
7023
6796
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
7024
6797
|
accentColor: string;
|
|
@@ -7050,10 +6823,6 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
7050
6823
|
customUrl?: string | undefined;
|
|
7051
6824
|
customUrlLabel?: string | undefined;
|
|
7052
6825
|
} | undefined;
|
|
7053
|
-
ctaButtons?: {
|
|
7054
|
-
url: string;
|
|
7055
|
-
label: string;
|
|
7056
|
-
}[] | undefined;
|
|
7057
6826
|
}, {
|
|
7058
6827
|
templateId: "minimal" | "bold" | "card" | "aurora";
|
|
7059
6828
|
accentColor: string;
|
|
@@ -7085,10 +6854,6 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
7085
6854
|
customUrl?: string | undefined;
|
|
7086
6855
|
customUrlLabel?: string | undefined;
|
|
7087
6856
|
} | undefined;
|
|
7088
|
-
ctaButtons?: {
|
|
7089
|
-
url?: string | undefined;
|
|
7090
|
-
label?: string | undefined;
|
|
7091
|
-
}[] | undefined;
|
|
7092
6857
|
}>;
|
|
7093
6858
|
}, "strip", z.ZodTypeAny, {
|
|
7094
6859
|
email: string;
|
|
@@ -7147,10 +6912,6 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
7147
6912
|
customUrl?: string | undefined;
|
|
7148
6913
|
customUrlLabel?: string | undefined;
|
|
7149
6914
|
} | undefined;
|
|
7150
|
-
ctaButtons?: {
|
|
7151
|
-
url: string;
|
|
7152
|
-
label: string;
|
|
7153
|
-
}[] | undefined;
|
|
7154
6915
|
};
|
|
7155
6916
|
password: string;
|
|
7156
6917
|
acceptedTerms: true;
|
|
@@ -7216,10 +6977,6 @@ declare const signupWithProfileSchema: z.ZodObject<{
|
|
|
7216
6977
|
customUrl?: string | undefined;
|
|
7217
6978
|
customUrlLabel?: string | undefined;
|
|
7218
6979
|
} | undefined;
|
|
7219
|
-
ctaButtons?: {
|
|
7220
|
-
url?: string | undefined;
|
|
7221
|
-
label?: string | undefined;
|
|
7222
|
-
}[] | undefined;
|
|
7223
6980
|
};
|
|
7224
6981
|
password: string;
|
|
7225
6982
|
acceptedTerms: true;
|
|
@@ -7392,22 +7149,6 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7392
7149
|
customUrl?: string | undefined;
|
|
7393
7150
|
customUrlLabel?: string | undefined;
|
|
7394
7151
|
}>>>>;
|
|
7395
|
-
ctaButtons: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
7396
|
-
label: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
7397
|
-
url: z.ZodEffects<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>, string, string | undefined>;
|
|
7398
|
-
}, "strip", z.ZodTypeAny, {
|
|
7399
|
-
url: string;
|
|
7400
|
-
label: string;
|
|
7401
|
-
}, {
|
|
7402
|
-
url?: string | undefined;
|
|
7403
|
-
label?: string | undefined;
|
|
7404
|
-
}>, "many">, {
|
|
7405
|
-
url: string;
|
|
7406
|
-
label: string;
|
|
7407
|
-
}[], {
|
|
7408
|
-
url?: string | undefined;
|
|
7409
|
-
label?: string | undefined;
|
|
7410
|
-
}[]>>>>;
|
|
7411
7152
|
profilePhotoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
7412
7153
|
companyLogoUrl: z.ZodOptional<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
7413
7154
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7443,10 +7184,6 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7443
7184
|
customUrl?: string | undefined;
|
|
7444
7185
|
customUrlLabel?: string | undefined;
|
|
7445
7186
|
} | undefined;
|
|
7446
|
-
ctaButtons?: {
|
|
7447
|
-
url: string;
|
|
7448
|
-
label: string;
|
|
7449
|
-
}[] | undefined;
|
|
7450
7187
|
}, {
|
|
7451
7188
|
profilePhotoUrl?: string | undefined;
|
|
7452
7189
|
companyLogoUrl?: string | undefined;
|
|
@@ -7480,15 +7217,10 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7480
7217
|
customUrl?: string | undefined;
|
|
7481
7218
|
customUrlLabel?: string | undefined;
|
|
7482
7219
|
} | undefined;
|
|
7483
|
-
ctaButtons?: {
|
|
7484
|
-
url?: string | undefined;
|
|
7485
|
-
label?: string | undefined;
|
|
7486
|
-
}[] | undefined;
|
|
7487
7220
|
}>>;
|
|
7488
7221
|
visibility: z.ZodOptional<z.ZodEnum<["public", "private", "link_only"]>>;
|
|
7489
7222
|
accessPin: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
7490
7223
|
}, "strip", z.ZodTypeAny, {
|
|
7491
|
-
label?: string | undefined;
|
|
7492
7224
|
visibility?: "public" | "private" | "link_only" | undefined;
|
|
7493
7225
|
userData?: {
|
|
7494
7226
|
firstName?: string | undefined;
|
|
@@ -7547,15 +7279,11 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7547
7279
|
customUrl?: string | undefined;
|
|
7548
7280
|
customUrlLabel?: string | undefined;
|
|
7549
7281
|
} | undefined;
|
|
7550
|
-
ctaButtons?: {
|
|
7551
|
-
url: string;
|
|
7552
|
-
label: string;
|
|
7553
|
-
}[] | undefined;
|
|
7554
7282
|
} | undefined;
|
|
7283
|
+
label?: string | undefined;
|
|
7555
7284
|
icon?: string | undefined;
|
|
7556
7285
|
accessPin?: string | undefined;
|
|
7557
7286
|
}, {
|
|
7558
|
-
label?: string | undefined;
|
|
7559
7287
|
visibility?: "public" | "private" | "link_only" | undefined;
|
|
7560
7288
|
userData?: {
|
|
7561
7289
|
firstName?: string | undefined;
|
|
@@ -7614,11 +7342,8 @@ declare const profileUpdateSchema: z.ZodObject<{
|
|
|
7614
7342
|
customUrl?: string | undefined;
|
|
7615
7343
|
customUrlLabel?: string | undefined;
|
|
7616
7344
|
} | undefined;
|
|
7617
|
-
ctaButtons?: {
|
|
7618
|
-
url?: string | undefined;
|
|
7619
|
-
label?: string | undefined;
|
|
7620
|
-
}[] | undefined;
|
|
7621
7345
|
} | undefined;
|
|
7346
|
+
label?: string | undefined;
|
|
7622
7347
|
icon?: string | undefined;
|
|
7623
7348
|
accessPin?: string | undefined;
|
|
7624
7349
|
}>;
|
|
@@ -7766,4 +7491,4 @@ declare function validatePhysicalConfig(data: unknown): ValidationResult<z.infer
|
|
|
7766
7491
|
declare function validateDigitalConfig(data: unknown): ValidationResult<z.infer<typeof digitalConfigSchema>>;
|
|
7767
7492
|
declare function validateConfiguration(data: unknown): ValidationResult<z.infer<typeof configurationCreateSchema>>;
|
|
7768
7493
|
|
|
7769
|
-
export {
|
|
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 };
|