@learncard/types 5.6.1 → 5.6.3
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;
|
|
@@ -2322,6 +2352,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2322
2352
|
image: z.ZodOptional<z.ZodString>;
|
|
2323
2353
|
uri: z.ZodString;
|
|
2324
2354
|
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
2355
|
+
redirectUrl: z.ZodOptional<z.ZodString>;
|
|
2325
2356
|
createdAt: z.ZodString;
|
|
2326
2357
|
updatedAt: z.ZodString;
|
|
2327
2358
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -2331,6 +2362,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2331
2362
|
subtitle?: string | undefined;
|
|
2332
2363
|
reasonForAccessing?: string | undefined;
|
|
2333
2364
|
needsGuardianConsent?: boolean | undefined;
|
|
2365
|
+
redirectUrl?: string | undefined;
|
|
2334
2366
|
expiresAt?: string | undefined;
|
|
2335
2367
|
name: string;
|
|
2336
2368
|
createdAt: string;
|
|
@@ -2362,6 +2394,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2362
2394
|
type?: string | undefined;
|
|
2363
2395
|
image?: string | undefined;
|
|
2364
2396
|
email?: string | undefined;
|
|
2397
|
+
isPrivate?: boolean | undefined;
|
|
2365
2398
|
heroImage?: string | undefined;
|
|
2366
2399
|
websiteLink?: string | undefined;
|
|
2367
2400
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2392,6 +2425,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2392
2425
|
subtitle?: string | undefined;
|
|
2393
2426
|
reasonForAccessing?: string | undefined;
|
|
2394
2427
|
needsGuardianConsent?: boolean | undefined;
|
|
2428
|
+
redirectUrl?: string | undefined;
|
|
2395
2429
|
expiresAt?: string | undefined;
|
|
2396
2430
|
name: string;
|
|
2397
2431
|
createdAt: string;
|
|
@@ -2426,6 +2460,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2426
2460
|
displayName?: string | undefined;
|
|
2427
2461
|
shortBio?: string | undefined;
|
|
2428
2462
|
bio?: string | undefined;
|
|
2463
|
+
isPrivate?: boolean | undefined;
|
|
2429
2464
|
heroImage?: string | undefined;
|
|
2430
2465
|
websiteLink?: string | undefined;
|
|
2431
2466
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2598,6 +2633,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2598
2633
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
2599
2634
|
bio: z.ZodDefault<z.ZodString>;
|
|
2600
2635
|
did: z.ZodString;
|
|
2636
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2601
2637
|
email: z.ZodOptional<z.ZodString>;
|
|
2602
2638
|
image: z.ZodOptional<z.ZodString>;
|
|
2603
2639
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -2646,6 +2682,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2646
2682
|
type?: string | undefined;
|
|
2647
2683
|
image?: string | undefined;
|
|
2648
2684
|
email?: string | undefined;
|
|
2685
|
+
isPrivate?: boolean | undefined;
|
|
2649
2686
|
heroImage?: string | undefined;
|
|
2650
2687
|
websiteLink?: string | undefined;
|
|
2651
2688
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2675,6 +2712,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2675
2712
|
displayName?: string | undefined;
|
|
2676
2713
|
shortBio?: string | undefined;
|
|
2677
2714
|
bio?: string | undefined;
|
|
2715
|
+
isPrivate?: boolean | undefined;
|
|
2678
2716
|
heroImage?: string | undefined;
|
|
2679
2717
|
websiteLink?: string | undefined;
|
|
2680
2718
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2702,6 +2740,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2702
2740
|
image: z.ZodOptional<z.ZodString>;
|
|
2703
2741
|
uri: z.ZodString;
|
|
2704
2742
|
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
2743
|
+
redirectUrl: z.ZodOptional<z.ZodString>;
|
|
2705
2744
|
createdAt: z.ZodString;
|
|
2706
2745
|
updatedAt: z.ZodString;
|
|
2707
2746
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -2711,6 +2750,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2711
2750
|
subtitle?: string | undefined;
|
|
2712
2751
|
reasonForAccessing?: string | undefined;
|
|
2713
2752
|
needsGuardianConsent?: boolean | undefined;
|
|
2753
|
+
redirectUrl?: string | undefined;
|
|
2714
2754
|
expiresAt?: string | undefined;
|
|
2715
2755
|
name: string;
|
|
2716
2756
|
createdAt: string;
|
|
@@ -2745,6 +2785,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2745
2785
|
subtitle?: string | undefined;
|
|
2746
2786
|
reasonForAccessing?: string | undefined;
|
|
2747
2787
|
needsGuardianConsent?: boolean | undefined;
|
|
2788
|
+
redirectUrl?: string | undefined;
|
|
2748
2789
|
expiresAt?: string | undefined;
|
|
2749
2790
|
name: string;
|
|
2750
2791
|
createdAt: string;
|
|
@@ -2783,6 +2824,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2783
2824
|
subtitle?: string | undefined;
|
|
2784
2825
|
reasonForAccessing?: string | undefined;
|
|
2785
2826
|
needsGuardianConsent?: boolean | undefined;
|
|
2827
|
+
redirectUrl?: string | undefined;
|
|
2786
2828
|
expiresAt?: string | undefined;
|
|
2787
2829
|
name: string;
|
|
2788
2830
|
createdAt: string;
|
|
@@ -2821,6 +2863,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2821
2863
|
subtitle?: string | undefined;
|
|
2822
2864
|
reasonForAccessing?: string | undefined;
|
|
2823
2865
|
needsGuardianConsent?: boolean | undefined;
|
|
2866
|
+
redirectUrl?: string | undefined;
|
|
2824
2867
|
expiresAt?: string | undefined;
|
|
2825
2868
|
name: string;
|
|
2826
2869
|
createdAt: string;
|
|
@@ -3359,6 +3402,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3359
3402
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3360
3403
|
bio: z.ZodDefault<z.ZodString>;
|
|
3361
3404
|
did: z.ZodString;
|
|
3405
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3362
3406
|
email: z.ZodOptional<z.ZodString>;
|
|
3363
3407
|
image: z.ZodOptional<z.ZodString>;
|
|
3364
3408
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3407,6 +3451,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3407
3451
|
type?: string | undefined;
|
|
3408
3452
|
image?: string | undefined;
|
|
3409
3453
|
email?: string | undefined;
|
|
3454
|
+
isPrivate?: boolean | undefined;
|
|
3410
3455
|
heroImage?: string | undefined;
|
|
3411
3456
|
websiteLink?: string | undefined;
|
|
3412
3457
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3436,6 +3481,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3436
3481
|
displayName?: string | undefined;
|
|
3437
3482
|
shortBio?: string | undefined;
|
|
3438
3483
|
bio?: string | undefined;
|
|
3484
|
+
isPrivate?: boolean | undefined;
|
|
3439
3485
|
heroImage?: string | undefined;
|
|
3440
3486
|
websiteLink?: string | undefined;
|
|
3441
3487
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3463,6 +3509,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3463
3509
|
image: z.ZodOptional<z.ZodString>;
|
|
3464
3510
|
uri: z.ZodString;
|
|
3465
3511
|
needsGuardianConsent: z.ZodOptional<z.ZodBoolean>;
|
|
3512
|
+
redirectUrl: z.ZodOptional<z.ZodString>;
|
|
3466
3513
|
createdAt: z.ZodString;
|
|
3467
3514
|
updatedAt: z.ZodString;
|
|
3468
3515
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
@@ -3472,6 +3519,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3472
3519
|
subtitle?: string | undefined;
|
|
3473
3520
|
reasonForAccessing?: string | undefined;
|
|
3474
3521
|
needsGuardianConsent?: boolean | undefined;
|
|
3522
|
+
redirectUrl?: string | undefined;
|
|
3475
3523
|
expiresAt?: string | undefined;
|
|
3476
3524
|
name: string;
|
|
3477
3525
|
createdAt: string;
|
|
@@ -3503,6 +3551,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3503
3551
|
type?: string | undefined;
|
|
3504
3552
|
image?: string | undefined;
|
|
3505
3553
|
email?: string | undefined;
|
|
3554
|
+
isPrivate?: boolean | undefined;
|
|
3506
3555
|
heroImage?: string | undefined;
|
|
3507
3556
|
websiteLink?: string | undefined;
|
|
3508
3557
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3533,6 +3582,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3533
3582
|
subtitle?: string | undefined;
|
|
3534
3583
|
reasonForAccessing?: string | undefined;
|
|
3535
3584
|
needsGuardianConsent?: boolean | undefined;
|
|
3585
|
+
redirectUrl?: string | undefined;
|
|
3536
3586
|
expiresAt?: string | undefined;
|
|
3537
3587
|
name: string;
|
|
3538
3588
|
createdAt: string;
|
|
@@ -3567,6 +3617,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3567
3617
|
displayName?: string | undefined;
|
|
3568
3618
|
shortBio?: string | undefined;
|
|
3569
3619
|
bio?: string | undefined;
|
|
3620
|
+
isPrivate?: boolean | undefined;
|
|
3570
3621
|
heroImage?: string | undefined;
|
|
3571
3622
|
websiteLink?: string | undefined;
|
|
3572
3623
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3596,6 +3647,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3596
3647
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3597
3648
|
bio: z.ZodDefault<z.ZodString>;
|
|
3598
3649
|
did: z.ZodString;
|
|
3650
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3599
3651
|
email: z.ZodOptional<z.ZodString>;
|
|
3600
3652
|
image: z.ZodOptional<z.ZodString>;
|
|
3601
3653
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3644,6 +3696,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3644
3696
|
type?: string | undefined;
|
|
3645
3697
|
image?: string | undefined;
|
|
3646
3698
|
email?: string | undefined;
|
|
3699
|
+
isPrivate?: boolean | undefined;
|
|
3647
3700
|
heroImage?: string | undefined;
|
|
3648
3701
|
websiteLink?: string | undefined;
|
|
3649
3702
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3673,6 +3726,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3673
3726
|
displayName?: string | undefined;
|
|
3674
3727
|
shortBio?: string | undefined;
|
|
3675
3728
|
bio?: string | undefined;
|
|
3729
|
+
isPrivate?: boolean | undefined;
|
|
3676
3730
|
heroImage?: string | undefined;
|
|
3677
3731
|
websiteLink?: string | undefined;
|
|
3678
3732
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3705,6 +3759,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3705
3759
|
subtitle?: string | undefined;
|
|
3706
3760
|
reasonForAccessing?: string | undefined;
|
|
3707
3761
|
needsGuardianConsent?: boolean | undefined;
|
|
3762
|
+
redirectUrl?: string | undefined;
|
|
3708
3763
|
expiresAt?: string | undefined;
|
|
3709
3764
|
name: string;
|
|
3710
3765
|
createdAt: string;
|
|
@@ -3736,6 +3791,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3736
3791
|
type?: string | undefined;
|
|
3737
3792
|
image?: string | undefined;
|
|
3738
3793
|
email?: string | undefined;
|
|
3794
|
+
isPrivate?: boolean | undefined;
|
|
3739
3795
|
heroImage?: string | undefined;
|
|
3740
3796
|
websiteLink?: string | undefined;
|
|
3741
3797
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3787,6 +3843,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3787
3843
|
type?: string | undefined;
|
|
3788
3844
|
image?: string | undefined;
|
|
3789
3845
|
email?: string | undefined;
|
|
3846
|
+
isPrivate?: boolean | undefined;
|
|
3790
3847
|
heroImage?: string | undefined;
|
|
3791
3848
|
websiteLink?: string | undefined;
|
|
3792
3849
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3821,6 +3878,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3821
3878
|
subtitle?: string | undefined;
|
|
3822
3879
|
reasonForAccessing?: string | undefined;
|
|
3823
3880
|
needsGuardianConsent?: boolean | undefined;
|
|
3881
|
+
redirectUrl?: string | undefined;
|
|
3824
3882
|
expiresAt?: string | undefined;
|
|
3825
3883
|
name: string;
|
|
3826
3884
|
createdAt: string;
|
|
@@ -3855,6 +3913,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3855
3913
|
displayName?: string | undefined;
|
|
3856
3914
|
shortBio?: string | undefined;
|
|
3857
3915
|
bio?: string | undefined;
|
|
3916
|
+
isPrivate?: boolean | undefined;
|
|
3858
3917
|
heroImage?: string | undefined;
|
|
3859
3918
|
websiteLink?: string | undefined;
|
|
3860
3919
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3906,6 +3965,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3906
3965
|
displayName?: string | undefined;
|
|
3907
3966
|
shortBio?: string | undefined;
|
|
3908
3967
|
bio?: string | undefined;
|
|
3968
|
+
isPrivate?: boolean | undefined;
|
|
3909
3969
|
heroImage?: string | undefined;
|
|
3910
3970
|
websiteLink?: string | undefined;
|
|
3911
3971
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3941,6 +4001,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3941
4001
|
subtitle?: string | undefined;
|
|
3942
4002
|
reasonForAccessing?: string | undefined;
|
|
3943
4003
|
needsGuardianConsent?: boolean | undefined;
|
|
4004
|
+
redirectUrl?: string | undefined;
|
|
3944
4005
|
expiresAt?: string | undefined;
|
|
3945
4006
|
name: string;
|
|
3946
4007
|
createdAt: string;
|
|
@@ -3972,6 +4033,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3972
4033
|
type?: string | undefined;
|
|
3973
4034
|
image?: string | undefined;
|
|
3974
4035
|
email?: string | undefined;
|
|
4036
|
+
isPrivate?: boolean | undefined;
|
|
3975
4037
|
heroImage?: string | undefined;
|
|
3976
4038
|
websiteLink?: string | undefined;
|
|
3977
4039
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4023,6 +4085,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4023
4085
|
type?: string | undefined;
|
|
4024
4086
|
image?: string | undefined;
|
|
4025
4087
|
email?: string | undefined;
|
|
4088
|
+
isPrivate?: boolean | undefined;
|
|
4026
4089
|
heroImage?: string | undefined;
|
|
4027
4090
|
websiteLink?: string | undefined;
|
|
4028
4091
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4061,6 +4124,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4061
4124
|
subtitle?: string | undefined;
|
|
4062
4125
|
reasonForAccessing?: string | undefined;
|
|
4063
4126
|
needsGuardianConsent?: boolean | undefined;
|
|
4127
|
+
redirectUrl?: string | undefined;
|
|
4064
4128
|
expiresAt?: string | undefined;
|
|
4065
4129
|
name: string;
|
|
4066
4130
|
createdAt: string;
|
|
@@ -4095,6 +4159,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4095
4159
|
displayName?: string | undefined;
|
|
4096
4160
|
shortBio?: string | undefined;
|
|
4097
4161
|
bio?: string | undefined;
|
|
4162
|
+
isPrivate?: boolean | undefined;
|
|
4098
4163
|
heroImage?: string | undefined;
|
|
4099
4164
|
websiteLink?: string | undefined;
|
|
4100
4165
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4146,6 +4211,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4146
4211
|
displayName?: string | undefined;
|
|
4147
4212
|
shortBio?: string | undefined;
|
|
4148
4213
|
bio?: string | undefined;
|
|
4214
|
+
isPrivate?: boolean | undefined;
|
|
4149
4215
|
heroImage?: string | undefined;
|
|
4150
4216
|
websiteLink?: string | undefined;
|
|
4151
4217
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5469,6 +5535,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5469
5535
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5470
5536
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5471
5537
|
did: z.ZodOptional<z.ZodString>;
|
|
5538
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5472
5539
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5473
5540
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5474
5541
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5522,6 +5589,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5522
5589
|
shortBio?: string | undefined;
|
|
5523
5590
|
bio?: string | undefined;
|
|
5524
5591
|
did?: string | undefined;
|
|
5592
|
+
isPrivate?: boolean | undefined;
|
|
5525
5593
|
heroImage?: string | undefined;
|
|
5526
5594
|
websiteLink?: string | undefined;
|
|
5527
5595
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5548,6 +5616,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5548
5616
|
shortBio?: string | undefined;
|
|
5549
5617
|
bio?: string | undefined;
|
|
5550
5618
|
did?: string | undefined;
|
|
5619
|
+
isPrivate?: boolean | undefined;
|
|
5551
5620
|
heroImage?: string | undefined;
|
|
5552
5621
|
websiteLink?: string | undefined;
|
|
5553
5622
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5578,6 +5647,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5578
5647
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5579
5648
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5580
5649
|
did: z.ZodOptional<z.ZodString>;
|
|
5650
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5581
5651
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5582
5652
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5583
5653
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5631,6 +5701,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5631
5701
|
shortBio?: string | undefined;
|
|
5632
5702
|
bio?: string | undefined;
|
|
5633
5703
|
did?: string | undefined;
|
|
5704
|
+
isPrivate?: boolean | undefined;
|
|
5634
5705
|
heroImage?: string | undefined;
|
|
5635
5706
|
websiteLink?: string | undefined;
|
|
5636
5707
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5657,6 +5728,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5657
5728
|
shortBio?: string | undefined;
|
|
5658
5729
|
bio?: string | undefined;
|
|
5659
5730
|
did?: string | undefined;
|
|
5731
|
+
isPrivate?: boolean | undefined;
|
|
5660
5732
|
heroImage?: string | undefined;
|
|
5661
5733
|
websiteLink?: string | undefined;
|
|
5662
5734
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6004,6 +6076,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6004
6076
|
shortBio?: string | undefined;
|
|
6005
6077
|
bio?: string | undefined;
|
|
6006
6078
|
did?: string | undefined;
|
|
6079
|
+
isPrivate?: boolean | undefined;
|
|
6007
6080
|
heroImage?: string | undefined;
|
|
6008
6081
|
websiteLink?: string | undefined;
|
|
6009
6082
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6033,6 +6106,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6033
6106
|
shortBio?: string | undefined;
|
|
6034
6107
|
bio?: string | undefined;
|
|
6035
6108
|
did?: string | undefined;
|
|
6109
|
+
isPrivate?: boolean | undefined;
|
|
6036
6110
|
heroImage?: string | undefined;
|
|
6037
6111
|
websiteLink?: string | undefined;
|
|
6038
6112
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6102,6 +6176,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6102
6176
|
shortBio?: string | undefined;
|
|
6103
6177
|
bio?: string | undefined;
|
|
6104
6178
|
did?: string | undefined;
|
|
6179
|
+
isPrivate?: boolean | undefined;
|
|
6105
6180
|
heroImage?: string | undefined;
|
|
6106
6181
|
websiteLink?: string | undefined;
|
|
6107
6182
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6131,6 +6206,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6131
6206
|
shortBio?: string | undefined;
|
|
6132
6207
|
bio?: string | undefined;
|
|
6133
6208
|
did?: string | undefined;
|
|
6209
|
+
isPrivate?: boolean | undefined;
|
|
6134
6210
|
heroImage?: string | undefined;
|
|
6135
6211
|
websiteLink?: string | undefined;
|
|
6136
6212
|
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":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYrC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE3E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc9B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAE7D,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvB,CAAC;AACf,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEvE,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEjF,eAAO,MAAM,8BAA8B,+FAKzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAE5F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;EASrC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE3E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/C,CAAC;AACH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AAE/F,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ9B,CAAC;AACf,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAErF,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOnD,CAAC;AACH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,wCAAwC,CAClD,CAAC;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;EAMtC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE7E,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAapC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAEzE,eAAO,MAAM,cAAc,8BAA4B,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEhE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASzB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEnD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUlB,CAAC;AACf,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAE7D,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE3E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKlC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAEzE,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE5C,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAE7F,eAAO,MAAM,0CAA0C;;;;;;;;;;;;EAIrD,CAAC;AACH,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,0CAA0C,CACpD,CAAC;AAEF,eAAO,MAAM,iCAAiC;;;;;;;;;EAG5C,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAE7F,eAAO,MAAM,4BAA4B;;;;;;EAEvC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEnF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY9C,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEjG,eAAO,MAAM,+BAA+B,2CAAyC,CAAC;AACtF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAErF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBvC,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEpF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa9C,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAC7F,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAElG,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEjD,CAAC;AACH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sCAAsC,CAAC,CAAC;AAEnG,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;EAI3C,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAEvF,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE5C,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAEzF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAKnC,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEvE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBpC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AACzE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE9E,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY7C,CAAC;AACH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAE3F,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsB5C,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AACzF,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAE9F,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;EAIxC,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AACjF,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEtF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBzC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACnF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AAExF,eAAO,MAAM,qCAAqC,sDAKhD,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAEjG,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBhD,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AACjG,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,qCAAqC,CAC/C,CAAC;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAErF,eAAO,MAAM,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpD,CAAC;AACH,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,yCAAyC,CACnD,CAAC;AAEF,eAAO,MAAM,gCAAgC,yNAU3C,CAAC;AAEH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAEvF,eAAO,MAAM,+BAA+B;;;;;;;;;EAG1C,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAErF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIvC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE/E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
|
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(),
|
|
@@ -4079,6 +4080,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
4079
4080
|
image: mod.string().optional(),
|
|
4080
4081
|
uri: mod.string(),
|
|
4081
4082
|
needsGuardianConsent: mod.boolean().optional(),
|
|
4083
|
+
redirectUrl: mod.string().optional(),
|
|
4082
4084
|
createdAt: mod.string(),
|
|
4083
4085
|
updatedAt: mod.string(),
|
|
4084
4086
|
expiresAt: mod.string().optional()
|