@learncard/types 5.6.0 → 5.6.2
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/lcn.d.ts +76 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +2 -0
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +2 -2
- package/dist/types.esm.js +2 -0
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
|
43
43
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
44
44
|
bio: z.ZodDefault<z.ZodString>;
|
|
45
45
|
did: z.ZodString;
|
|
46
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
46
47
|
email: z.ZodOptional<z.ZodString>;
|
|
47
48
|
image: z.ZodOptional<z.ZodString>;
|
|
48
49
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -91,6 +92,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
|
91
92
|
type?: string | undefined;
|
|
92
93
|
image?: string | undefined;
|
|
93
94
|
email?: string | undefined;
|
|
95
|
+
isPrivate?: boolean | undefined;
|
|
94
96
|
heroImage?: string | undefined;
|
|
95
97
|
websiteLink?: string | undefined;
|
|
96
98
|
isServiceProfile?: boolean | undefined;
|
|
@@ -120,6 +122,7 @@ export declare const LCNProfileValidator: z.ZodObject<{
|
|
|
120
122
|
displayName?: string | undefined;
|
|
121
123
|
shortBio?: string | undefined;
|
|
122
124
|
bio?: string | undefined;
|
|
125
|
+
isPrivate?: boolean | undefined;
|
|
123
126
|
heroImage?: string | undefined;
|
|
124
127
|
websiteLink?: string | undefined;
|
|
125
128
|
isServiceProfile?: boolean | undefined;
|
|
@@ -320,6 +323,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
|
320
323
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
321
324
|
bio: z.ZodDefault<z.ZodString>;
|
|
322
325
|
did: z.ZodString;
|
|
326
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
323
327
|
email: z.ZodOptional<z.ZodString>;
|
|
324
328
|
image: z.ZodOptional<z.ZodString>;
|
|
325
329
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -368,6 +372,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
|
368
372
|
type?: string | undefined;
|
|
369
373
|
image?: string | undefined;
|
|
370
374
|
email?: string | undefined;
|
|
375
|
+
isPrivate?: boolean | undefined;
|
|
371
376
|
heroImage?: string | undefined;
|
|
372
377
|
websiteLink?: string | undefined;
|
|
373
378
|
isServiceProfile?: boolean | undefined;
|
|
@@ -397,6 +402,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
|
397
402
|
displayName?: string | undefined;
|
|
398
403
|
shortBio?: string | undefined;
|
|
399
404
|
bio?: string | undefined;
|
|
405
|
+
isPrivate?: boolean | undefined;
|
|
400
406
|
heroImage?: string | undefined;
|
|
401
407
|
websiteLink?: string | undefined;
|
|
402
408
|
isServiceProfile?: boolean | undefined;
|
|
@@ -424,6 +430,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
|
424
430
|
type?: string | undefined;
|
|
425
431
|
image?: string | undefined;
|
|
426
432
|
email?: string | undefined;
|
|
433
|
+
isPrivate?: boolean | undefined;
|
|
427
434
|
heroImage?: string | undefined;
|
|
428
435
|
websiteLink?: string | undefined;
|
|
429
436
|
isServiceProfile?: boolean | undefined;
|
|
@@ -457,6 +464,7 @@ export declare const PaginatedLCNProfilesValidator: z.ZodObject<z.extendShape<{
|
|
|
457
464
|
displayName?: string | undefined;
|
|
458
465
|
shortBio?: string | undefined;
|
|
459
466
|
bio?: string | undefined;
|
|
467
|
+
isPrivate?: boolean | undefined;
|
|
460
468
|
heroImage?: string | undefined;
|
|
461
469
|
websiteLink?: string | undefined;
|
|
462
470
|
isServiceProfile?: boolean | undefined;
|
|
@@ -707,6 +715,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
707
715
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
708
716
|
bio: z.ZodDefault<z.ZodString>;
|
|
709
717
|
did: z.ZodString;
|
|
718
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
710
719
|
email: z.ZodOptional<z.ZodString>;
|
|
711
720
|
image: z.ZodOptional<z.ZodString>;
|
|
712
721
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -755,6 +764,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
755
764
|
type?: string | undefined;
|
|
756
765
|
image?: string | undefined;
|
|
757
766
|
email?: string | undefined;
|
|
767
|
+
isPrivate?: boolean | undefined;
|
|
758
768
|
heroImage?: string | undefined;
|
|
759
769
|
websiteLink?: string | undefined;
|
|
760
770
|
isServiceProfile?: boolean | undefined;
|
|
@@ -784,6 +794,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
784
794
|
displayName?: string | undefined;
|
|
785
795
|
shortBio?: string | undefined;
|
|
786
796
|
bio?: string | undefined;
|
|
797
|
+
isPrivate?: boolean | undefined;
|
|
787
798
|
heroImage?: string | undefined;
|
|
788
799
|
websiteLink?: string | undefined;
|
|
789
800
|
isServiceProfile?: boolean | undefined;
|
|
@@ -852,6 +863,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
852
863
|
type?: string | undefined;
|
|
853
864
|
image?: string | undefined;
|
|
854
865
|
email?: string | undefined;
|
|
866
|
+
isPrivate?: boolean | undefined;
|
|
855
867
|
heroImage?: string | undefined;
|
|
856
868
|
websiteLink?: string | undefined;
|
|
857
869
|
isServiceProfile?: boolean | undefined;
|
|
@@ -894,6 +906,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
894
906
|
displayName?: string | undefined;
|
|
895
907
|
shortBio?: string | undefined;
|
|
896
908
|
bio?: string | undefined;
|
|
909
|
+
isPrivate?: boolean | undefined;
|
|
897
910
|
heroImage?: string | undefined;
|
|
898
911
|
websiteLink?: string | undefined;
|
|
899
912
|
isServiceProfile?: boolean | undefined;
|
|
@@ -934,6 +947,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
934
947
|
type?: string | undefined;
|
|
935
948
|
image?: string | undefined;
|
|
936
949
|
email?: string | undefined;
|
|
950
|
+
isPrivate?: boolean | undefined;
|
|
937
951
|
heroImage?: string | undefined;
|
|
938
952
|
websiteLink?: string | undefined;
|
|
939
953
|
isServiceProfile?: boolean | undefined;
|
|
@@ -980,6 +994,7 @@ export declare const PaginatedLCNProfilesAndManagersValidator: z.ZodObject<z.ext
|
|
|
980
994
|
displayName?: string | undefined;
|
|
981
995
|
shortBio?: string | undefined;
|
|
982
996
|
bio?: string | undefined;
|
|
997
|
+
isPrivate?: boolean | undefined;
|
|
983
998
|
heroImage?: string | undefined;
|
|
984
999
|
websiteLink?: string | undefined;
|
|
985
1000
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1454,6 +1469,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
|
1454
1469
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
1455
1470
|
bio: z.ZodDefault<z.ZodString>;
|
|
1456
1471
|
did: z.ZodString;
|
|
1472
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1457
1473
|
email: z.ZodOptional<z.ZodString>;
|
|
1458
1474
|
image: z.ZodOptional<z.ZodString>;
|
|
1459
1475
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -1502,6 +1518,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
|
1502
1518
|
type?: string | undefined;
|
|
1503
1519
|
image?: string | undefined;
|
|
1504
1520
|
email?: string | undefined;
|
|
1521
|
+
isPrivate?: boolean | undefined;
|
|
1505
1522
|
heroImage?: string | undefined;
|
|
1506
1523
|
websiteLink?: string | undefined;
|
|
1507
1524
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1531,6 +1548,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
|
1531
1548
|
displayName?: string | undefined;
|
|
1532
1549
|
shortBio?: string | undefined;
|
|
1533
1550
|
bio?: string | undefined;
|
|
1551
|
+
isPrivate?: boolean | undefined;
|
|
1534
1552
|
heroImage?: string | undefined;
|
|
1535
1553
|
websiteLink?: string | undefined;
|
|
1536
1554
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1561,6 +1579,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
|
1561
1579
|
type?: string | undefined;
|
|
1562
1580
|
image?: string | undefined;
|
|
1563
1581
|
email?: string | undefined;
|
|
1582
|
+
isPrivate?: boolean | undefined;
|
|
1564
1583
|
heroImage?: string | undefined;
|
|
1565
1584
|
websiteLink?: string | undefined;
|
|
1566
1585
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1595,6 +1614,7 @@ export declare const BoostRecipientValidator: z.ZodObject<{
|
|
|
1595
1614
|
displayName?: string | undefined;
|
|
1596
1615
|
shortBio?: string | undefined;
|
|
1597
1616
|
bio?: string | undefined;
|
|
1617
|
+
isPrivate?: boolean | undefined;
|
|
1598
1618
|
heroImage?: string | undefined;
|
|
1599
1619
|
websiteLink?: string | undefined;
|
|
1600
1620
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1629,6 +1649,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1629
1649
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
1630
1650
|
bio: z.ZodDefault<z.ZodString>;
|
|
1631
1651
|
did: z.ZodString;
|
|
1652
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1632
1653
|
email: z.ZodOptional<z.ZodString>;
|
|
1633
1654
|
image: z.ZodOptional<z.ZodString>;
|
|
1634
1655
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -1677,6 +1698,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1677
1698
|
type?: string | undefined;
|
|
1678
1699
|
image?: string | undefined;
|
|
1679
1700
|
email?: string | undefined;
|
|
1701
|
+
isPrivate?: boolean | undefined;
|
|
1680
1702
|
heroImage?: string | undefined;
|
|
1681
1703
|
websiteLink?: string | undefined;
|
|
1682
1704
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1706,6 +1728,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1706
1728
|
displayName?: string | undefined;
|
|
1707
1729
|
shortBio?: string | undefined;
|
|
1708
1730
|
bio?: string | undefined;
|
|
1731
|
+
isPrivate?: boolean | undefined;
|
|
1709
1732
|
heroImage?: string | undefined;
|
|
1710
1733
|
websiteLink?: string | undefined;
|
|
1711
1734
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1736,6 +1759,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1736
1759
|
type?: string | undefined;
|
|
1737
1760
|
image?: string | undefined;
|
|
1738
1761
|
email?: string | undefined;
|
|
1762
|
+
isPrivate?: boolean | undefined;
|
|
1739
1763
|
heroImage?: string | undefined;
|
|
1740
1764
|
websiteLink?: string | undefined;
|
|
1741
1765
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1770,6 +1794,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1770
1794
|
displayName?: string | undefined;
|
|
1771
1795
|
shortBio?: string | undefined;
|
|
1772
1796
|
bio?: string | undefined;
|
|
1797
|
+
isPrivate?: boolean | undefined;
|
|
1773
1798
|
heroImage?: string | undefined;
|
|
1774
1799
|
websiteLink?: string | undefined;
|
|
1775
1800
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1802,6 +1827,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1802
1827
|
type?: string | undefined;
|
|
1803
1828
|
image?: string | undefined;
|
|
1804
1829
|
email?: string | undefined;
|
|
1830
|
+
isPrivate?: boolean | undefined;
|
|
1805
1831
|
heroImage?: string | undefined;
|
|
1806
1832
|
websiteLink?: string | undefined;
|
|
1807
1833
|
isServiceProfile?: boolean | undefined;
|
|
@@ -1840,6 +1866,7 @@ export declare const PaginatedBoostRecipientsValidator: z.ZodObject<z.extendShap
|
|
|
1840
1866
|
displayName?: string | undefined;
|
|
1841
1867
|
shortBio?: string | undefined;
|
|
1842
1868
|
bio?: string | undefined;
|
|
1869
|
+
isPrivate?: boolean | undefined;
|
|
1843
1870
|
heroImage?: string | undefined;
|
|
1844
1871
|
websiteLink?: string | undefined;
|
|
1845
1872
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2218,6 +2245,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2218
2245
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
2219
2246
|
bio: z.ZodDefault<z.ZodString>;
|
|
2220
2247
|
did: z.ZodString;
|
|
2248
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2221
2249
|
email: z.ZodOptional<z.ZodString>;
|
|
2222
2250
|
image: z.ZodOptional<z.ZodString>;
|
|
2223
2251
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -2266,6 +2294,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2266
2294
|
type?: string | undefined;
|
|
2267
2295
|
image?: string | undefined;
|
|
2268
2296
|
email?: string | undefined;
|
|
2297
|
+
isPrivate?: boolean | undefined;
|
|
2269
2298
|
heroImage?: string | undefined;
|
|
2270
2299
|
websiteLink?: string | undefined;
|
|
2271
2300
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2295,6 +2324,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2295
2324
|
displayName?: string | undefined;
|
|
2296
2325
|
shortBio?: string | undefined;
|
|
2297
2326
|
bio?: string | undefined;
|
|
2327
|
+
isPrivate?: boolean | undefined;
|
|
2298
2328
|
heroImage?: string | undefined;
|
|
2299
2329
|
websiteLink?: string | undefined;
|
|
2300
2330
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2321,6 +2351,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2321
2351
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
|
2322
2352
|
image: z.ZodOptional<z.ZodString>;
|
|
2323
2353
|
uri: z.ZodString;
|
|
2354
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
2324
2355
|
createdAt: z.ZodString;
|
|
2325
2356
|
updatedAt: z.ZodString;
|
|
2326
2357
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -2329,6 +2360,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2329
2360
|
image?: string | undefined;
|
|
2330
2361
|
subtitle?: string | undefined;
|
|
2331
2362
|
reasonForAccessing?: string | undefined;
|
|
2363
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2332
2364
|
expiresAt?: string | undefined;
|
|
2333
2365
|
name: string;
|
|
2334
2366
|
createdAt: string;
|
|
@@ -2360,6 +2392,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2360
2392
|
type?: string | undefined;
|
|
2361
2393
|
image?: string | undefined;
|
|
2362
2394
|
email?: string | undefined;
|
|
2395
|
+
isPrivate?: boolean | undefined;
|
|
2363
2396
|
heroImage?: string | undefined;
|
|
2364
2397
|
websiteLink?: string | undefined;
|
|
2365
2398
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2389,6 +2422,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2389
2422
|
image?: string | undefined;
|
|
2390
2423
|
subtitle?: string | undefined;
|
|
2391
2424
|
reasonForAccessing?: string | undefined;
|
|
2425
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2392
2426
|
expiresAt?: string | undefined;
|
|
2393
2427
|
name: string;
|
|
2394
2428
|
createdAt: string;
|
|
@@ -2423,6 +2457,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2423
2457
|
displayName?: string | undefined;
|
|
2424
2458
|
shortBio?: string | undefined;
|
|
2425
2459
|
bio?: string | undefined;
|
|
2460
|
+
isPrivate?: boolean | undefined;
|
|
2426
2461
|
heroImage?: string | undefined;
|
|
2427
2462
|
websiteLink?: string | undefined;
|
|
2428
2463
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2595,6 +2630,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2595
2630
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
2596
2631
|
bio: z.ZodDefault<z.ZodString>;
|
|
2597
2632
|
did: z.ZodString;
|
|
2633
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2598
2634
|
email: z.ZodOptional<z.ZodString>;
|
|
2599
2635
|
image: z.ZodOptional<z.ZodString>;
|
|
2600
2636
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -2643,6 +2679,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2643
2679
|
type?: string | undefined;
|
|
2644
2680
|
image?: string | undefined;
|
|
2645
2681
|
email?: string | undefined;
|
|
2682
|
+
isPrivate?: boolean | undefined;
|
|
2646
2683
|
heroImage?: string | undefined;
|
|
2647
2684
|
websiteLink?: string | undefined;
|
|
2648
2685
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2672,6 +2709,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2672
2709
|
displayName?: string | undefined;
|
|
2673
2710
|
shortBio?: string | undefined;
|
|
2674
2711
|
bio?: string | undefined;
|
|
2712
|
+
isPrivate?: boolean | undefined;
|
|
2675
2713
|
heroImage?: string | undefined;
|
|
2676
2714
|
websiteLink?: string | undefined;
|
|
2677
2715
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2698,6 +2736,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2698
2736
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
|
2699
2737
|
image: z.ZodOptional<z.ZodString>;
|
|
2700
2738
|
uri: z.ZodString;
|
|
2739
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
2701
2740
|
createdAt: z.ZodString;
|
|
2702
2741
|
updatedAt: z.ZodString;
|
|
2703
2742
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -2706,6 +2745,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2706
2745
|
image?: string | undefined;
|
|
2707
2746
|
subtitle?: string | undefined;
|
|
2708
2747
|
reasonForAccessing?: string | undefined;
|
|
2748
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2709
2749
|
expiresAt?: string | undefined;
|
|
2710
2750
|
name: string;
|
|
2711
2751
|
createdAt: string;
|
|
@@ -2739,6 +2779,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2739
2779
|
image?: string | undefined;
|
|
2740
2780
|
subtitle?: string | undefined;
|
|
2741
2781
|
reasonForAccessing?: string | undefined;
|
|
2782
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2742
2783
|
expiresAt?: string | undefined;
|
|
2743
2784
|
name: string;
|
|
2744
2785
|
createdAt: string;
|
|
@@ -2776,6 +2817,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2776
2817
|
image?: string | undefined;
|
|
2777
2818
|
subtitle?: string | undefined;
|
|
2778
2819
|
reasonForAccessing?: string | undefined;
|
|
2820
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2779
2821
|
expiresAt?: string | undefined;
|
|
2780
2822
|
name: string;
|
|
2781
2823
|
createdAt: string;
|
|
@@ -2813,6 +2855,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2813
2855
|
image?: string | undefined;
|
|
2814
2856
|
subtitle?: string | undefined;
|
|
2815
2857
|
reasonForAccessing?: string | undefined;
|
|
2858
|
+
needsGuardianConsent?: boolean | undefined;
|
|
2816
2859
|
expiresAt?: string | undefined;
|
|
2817
2860
|
name: string;
|
|
2818
2861
|
createdAt: string;
|
|
@@ -3351,6 +3394,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3351
3394
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3352
3395
|
bio: z.ZodDefault<z.ZodString>;
|
|
3353
3396
|
did: z.ZodString;
|
|
3397
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3354
3398
|
email: z.ZodOptional<z.ZodString>;
|
|
3355
3399
|
image: z.ZodOptional<z.ZodString>;
|
|
3356
3400
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3399,6 +3443,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3399
3443
|
type?: string | undefined;
|
|
3400
3444
|
image?: string | undefined;
|
|
3401
3445
|
email?: string | undefined;
|
|
3446
|
+
isPrivate?: boolean | undefined;
|
|
3402
3447
|
heroImage?: string | undefined;
|
|
3403
3448
|
websiteLink?: string | undefined;
|
|
3404
3449
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3428,6 +3473,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3428
3473
|
displayName?: string | undefined;
|
|
3429
3474
|
shortBio?: string | undefined;
|
|
3430
3475
|
bio?: string | undefined;
|
|
3476
|
+
isPrivate?: boolean | undefined;
|
|
3431
3477
|
heroImage?: string | undefined;
|
|
3432
3478
|
websiteLink?: string | undefined;
|
|
3433
3479
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3454,6 +3500,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3454
3500
|
reasonForAccessing: z.ZodOptional<z.ZodString>;
|
|
3455
3501
|
image: z.ZodOptional<z.ZodString>;
|
|
3456
3502
|
uri: z.ZodString;
|
|
3503
|
+
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
3457
3504
|
createdAt: z.ZodString;
|
|
3458
3505
|
updatedAt: z.ZodString;
|
|
3459
3506
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -3462,6 +3509,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3462
3509
|
image?: string | undefined;
|
|
3463
3510
|
subtitle?: string | undefined;
|
|
3464
3511
|
reasonForAccessing?: string | undefined;
|
|
3512
|
+
needsGuardianConsent?: boolean | undefined;
|
|
3465
3513
|
expiresAt?: string | undefined;
|
|
3466
3514
|
name: string;
|
|
3467
3515
|
createdAt: string;
|
|
@@ -3493,6 +3541,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3493
3541
|
type?: string | undefined;
|
|
3494
3542
|
image?: string | undefined;
|
|
3495
3543
|
email?: string | undefined;
|
|
3544
|
+
isPrivate?: boolean | undefined;
|
|
3496
3545
|
heroImage?: string | undefined;
|
|
3497
3546
|
websiteLink?: string | undefined;
|
|
3498
3547
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3522,6 +3571,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3522
3571
|
image?: string | undefined;
|
|
3523
3572
|
subtitle?: string | undefined;
|
|
3524
3573
|
reasonForAccessing?: string | undefined;
|
|
3574
|
+
needsGuardianConsent?: boolean | undefined;
|
|
3525
3575
|
expiresAt?: string | undefined;
|
|
3526
3576
|
name: string;
|
|
3527
3577
|
createdAt: string;
|
|
@@ -3556,6 +3606,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3556
3606
|
displayName?: string | undefined;
|
|
3557
3607
|
shortBio?: string | undefined;
|
|
3558
3608
|
bio?: string | undefined;
|
|
3609
|
+
isPrivate?: boolean | undefined;
|
|
3559
3610
|
heroImage?: string | undefined;
|
|
3560
3611
|
websiteLink?: string | undefined;
|
|
3561
3612
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3585,6 +3636,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3585
3636
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3586
3637
|
bio: z.ZodDefault<z.ZodString>;
|
|
3587
3638
|
did: z.ZodString;
|
|
3639
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3588
3640
|
email: z.ZodOptional<z.ZodString>;
|
|
3589
3641
|
image: z.ZodOptional<z.ZodString>;
|
|
3590
3642
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3633,6 +3685,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3633
3685
|
type?: string | undefined;
|
|
3634
3686
|
image?: string | undefined;
|
|
3635
3687
|
email?: string | undefined;
|
|
3688
|
+
isPrivate?: boolean | undefined;
|
|
3636
3689
|
heroImage?: string | undefined;
|
|
3637
3690
|
websiteLink?: string | undefined;
|
|
3638
3691
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3662,6 +3715,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3662
3715
|
displayName?: string | undefined;
|
|
3663
3716
|
shortBio?: string | undefined;
|
|
3664
3717
|
bio?: string | undefined;
|
|
3718
|
+
isPrivate?: boolean | undefined;
|
|
3665
3719
|
heroImage?: string | undefined;
|
|
3666
3720
|
websiteLink?: string | undefined;
|
|
3667
3721
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3693,6 +3747,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3693
3747
|
image?: string | undefined;
|
|
3694
3748
|
subtitle?: string | undefined;
|
|
3695
3749
|
reasonForAccessing?: string | undefined;
|
|
3750
|
+
needsGuardianConsent?: boolean | undefined;
|
|
3696
3751
|
expiresAt?: string | undefined;
|
|
3697
3752
|
name: string;
|
|
3698
3753
|
createdAt: string;
|
|
@@ -3724,6 +3779,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3724
3779
|
type?: string | undefined;
|
|
3725
3780
|
image?: string | undefined;
|
|
3726
3781
|
email?: string | undefined;
|
|
3782
|
+
isPrivate?: boolean | undefined;
|
|
3727
3783
|
heroImage?: string | undefined;
|
|
3728
3784
|
websiteLink?: string | undefined;
|
|
3729
3785
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3775,6 +3831,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3775
3831
|
type?: string | undefined;
|
|
3776
3832
|
image?: string | undefined;
|
|
3777
3833
|
email?: string | undefined;
|
|
3834
|
+
isPrivate?: boolean | undefined;
|
|
3778
3835
|
heroImage?: string | undefined;
|
|
3779
3836
|
websiteLink?: string | undefined;
|
|
3780
3837
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3808,6 +3865,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3808
3865
|
image?: string | undefined;
|
|
3809
3866
|
subtitle?: string | undefined;
|
|
3810
3867
|
reasonForAccessing?: string | undefined;
|
|
3868
|
+
needsGuardianConsent?: boolean | undefined;
|
|
3811
3869
|
expiresAt?: string | undefined;
|
|
3812
3870
|
name: string;
|
|
3813
3871
|
createdAt: string;
|
|
@@ -3842,6 +3900,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3842
3900
|
displayName?: string | undefined;
|
|
3843
3901
|
shortBio?: string | undefined;
|
|
3844
3902
|
bio?: string | undefined;
|
|
3903
|
+
isPrivate?: boolean | undefined;
|
|
3845
3904
|
heroImage?: string | undefined;
|
|
3846
3905
|
websiteLink?: string | undefined;
|
|
3847
3906
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3893,6 +3952,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3893
3952
|
displayName?: string | undefined;
|
|
3894
3953
|
shortBio?: string | undefined;
|
|
3895
3954
|
bio?: string | undefined;
|
|
3955
|
+
isPrivate?: boolean | undefined;
|
|
3896
3956
|
heroImage?: string | undefined;
|
|
3897
3957
|
websiteLink?: string | undefined;
|
|
3898
3958
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3927,6 +3987,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3927
3987
|
image?: string | undefined;
|
|
3928
3988
|
subtitle?: string | undefined;
|
|
3929
3989
|
reasonForAccessing?: string | undefined;
|
|
3990
|
+
needsGuardianConsent?: boolean | undefined;
|
|
3930
3991
|
expiresAt?: string | undefined;
|
|
3931
3992
|
name: string;
|
|
3932
3993
|
createdAt: string;
|
|
@@ -3958,6 +4019,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3958
4019
|
type?: string | undefined;
|
|
3959
4020
|
image?: string | undefined;
|
|
3960
4021
|
email?: string | undefined;
|
|
4022
|
+
isPrivate?: boolean | undefined;
|
|
3961
4023
|
heroImage?: string | undefined;
|
|
3962
4024
|
websiteLink?: string | undefined;
|
|
3963
4025
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4009,6 +4071,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4009
4071
|
type?: string | undefined;
|
|
4010
4072
|
image?: string | undefined;
|
|
4011
4073
|
email?: string | undefined;
|
|
4074
|
+
isPrivate?: boolean | undefined;
|
|
4012
4075
|
heroImage?: string | undefined;
|
|
4013
4076
|
websiteLink?: string | undefined;
|
|
4014
4077
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4046,6 +4109,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4046
4109
|
image?: string | undefined;
|
|
4047
4110
|
subtitle?: string | undefined;
|
|
4048
4111
|
reasonForAccessing?: string | undefined;
|
|
4112
|
+
needsGuardianConsent?: boolean | undefined;
|
|
4049
4113
|
expiresAt?: string | undefined;
|
|
4050
4114
|
name: string;
|
|
4051
4115
|
createdAt: string;
|
|
@@ -4080,6 +4144,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4080
4144
|
displayName?: string | undefined;
|
|
4081
4145
|
shortBio?: string | undefined;
|
|
4082
4146
|
bio?: string | undefined;
|
|
4147
|
+
isPrivate?: boolean | undefined;
|
|
4083
4148
|
heroImage?: string | undefined;
|
|
4084
4149
|
websiteLink?: string | undefined;
|
|
4085
4150
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4131,6 +4196,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4131
4196
|
displayName?: string | undefined;
|
|
4132
4197
|
shortBio?: string | undefined;
|
|
4133
4198
|
bio?: string | undefined;
|
|
4199
|
+
isPrivate?: boolean | undefined;
|
|
4134
4200
|
heroImage?: string | undefined;
|
|
4135
4201
|
websiteLink?: string | undefined;
|
|
4136
4202
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5454,6 +5520,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5454
5520
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5455
5521
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5456
5522
|
did: z.ZodOptional<z.ZodString>;
|
|
5523
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5457
5524
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5458
5525
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5459
5526
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5507,6 +5574,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5507
5574
|
shortBio?: string | undefined;
|
|
5508
5575
|
bio?: string | undefined;
|
|
5509
5576
|
did?: string | undefined;
|
|
5577
|
+
isPrivate?: boolean | undefined;
|
|
5510
5578
|
heroImage?: string | undefined;
|
|
5511
5579
|
websiteLink?: string | undefined;
|
|
5512
5580
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5533,6 +5601,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5533
5601
|
shortBio?: string | undefined;
|
|
5534
5602
|
bio?: string | undefined;
|
|
5535
5603
|
did?: string | undefined;
|
|
5604
|
+
isPrivate?: boolean | undefined;
|
|
5536
5605
|
heroImage?: string | undefined;
|
|
5537
5606
|
websiteLink?: string | undefined;
|
|
5538
5607
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5563,6 +5632,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5563
5632
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5564
5633
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5565
5634
|
did: z.ZodOptional<z.ZodString>;
|
|
5635
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5566
5636
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5567
5637
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5568
5638
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5616,6 +5686,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5616
5686
|
shortBio?: string | undefined;
|
|
5617
5687
|
bio?: string | undefined;
|
|
5618
5688
|
did?: string | undefined;
|
|
5689
|
+
isPrivate?: boolean | undefined;
|
|
5619
5690
|
heroImage?: string | undefined;
|
|
5620
5691
|
websiteLink?: string | undefined;
|
|
5621
5692
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5642,6 +5713,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5642
5713
|
shortBio?: string | undefined;
|
|
5643
5714
|
bio?: string | undefined;
|
|
5644
5715
|
did?: string | undefined;
|
|
5716
|
+
isPrivate?: boolean | undefined;
|
|
5645
5717
|
heroImage?: string | undefined;
|
|
5646
5718
|
websiteLink?: string | undefined;
|
|
5647
5719
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5989,6 +6061,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5989
6061
|
shortBio?: string | undefined;
|
|
5990
6062
|
bio?: string | undefined;
|
|
5991
6063
|
did?: string | undefined;
|
|
6064
|
+
isPrivate?: boolean | undefined;
|
|
5992
6065
|
heroImage?: string | undefined;
|
|
5993
6066
|
websiteLink?: string | undefined;
|
|
5994
6067
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6018,6 +6091,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6018
6091
|
shortBio?: string | undefined;
|
|
6019
6092
|
bio?: string | undefined;
|
|
6020
6093
|
did?: string | undefined;
|
|
6094
|
+
isPrivate?: boolean | undefined;
|
|
6021
6095
|
heroImage?: string | undefined;
|
|
6022
6096
|
websiteLink?: string | undefined;
|
|
6023
6097
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6087,6 +6161,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6087
6161
|
shortBio?: string | undefined;
|
|
6088
6162
|
bio?: string | undefined;
|
|
6089
6163
|
did?: string | undefined;
|
|
6164
|
+
isPrivate?: boolean | undefined;
|
|
6090
6165
|
heroImage?: string | undefined;
|
|
6091
6166
|
websiteLink?: string | undefined;
|
|
6092
6167
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6116,6 +6191,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6116
6191
|
shortBio?: string | undefined;
|
|
6117
6192
|
bio?: string | undefined;
|
|
6118
6193
|
did?: string | undefined;
|
|
6194
|
+
isPrivate?: boolean | undefined;
|
|
6119
6195
|
heroImage?: string | undefined;
|
|
6120
6196
|
websiteLink?: string | undefined;
|
|
6121
6197
|
isServiceProfile?: boolean | undefined;
|
package/dist/lcn.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"lcn.d.ts","sourceRoot":"","sources":["../src/lcn.ts"],"names":[],"mappings":"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"}
|
|
@@ -3929,6 +3929,7 @@ var LCNProfileValidator = mod.object({
|
|
|
3929
3929
|
shortBio: mod.string().default(""),
|
|
3930
3930
|
bio: mod.string().default(""),
|
|
3931
3931
|
did: mod.string(),
|
|
3932
|
+
isPrivate: mod.boolean().optional(),
|
|
3932
3933
|
email: mod.string().optional(),
|
|
3933
3934
|
image: mod.string().optional(),
|
|
3934
3935
|
heroImage: mod.string().optional(),
|
|
@@ -4078,6 +4079,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
4078
4079
|
reasonForAccessing: mod.string().optional(),
|
|
4079
4080
|
image: mod.string().optional(),
|
|
4080
4081
|
uri: mod.string(),
|
|
4082
|
+
needsGuardianConsent: mod.boolean().optional(),
|
|
4081
4083
|
createdAt: mod.string(),
|
|
4082
4084
|
updatedAt: mod.string(),
|
|
4083
4085
|
expiresAt: mod.string().optional()
|