@learncard/types 5.6.1 → 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 +61 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +1 -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 +1 -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;
|
|
@@ -2362,6 +2392,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2362
2392
|
type?: string | undefined;
|
|
2363
2393
|
image?: string | undefined;
|
|
2364
2394
|
email?: string | undefined;
|
|
2395
|
+
isPrivate?: boolean | undefined;
|
|
2365
2396
|
heroImage?: string | undefined;
|
|
2366
2397
|
websiteLink?: string | undefined;
|
|
2367
2398
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2426,6 +2457,7 @@ export declare const ConsentFlowContractDetailsValidator: z.ZodObject<{
|
|
|
2426
2457
|
displayName?: string | undefined;
|
|
2427
2458
|
shortBio?: string | undefined;
|
|
2428
2459
|
bio?: string | undefined;
|
|
2460
|
+
isPrivate?: boolean | undefined;
|
|
2429
2461
|
heroImage?: string | undefined;
|
|
2430
2462
|
websiteLink?: string | undefined;
|
|
2431
2463
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2598,6 +2630,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2598
2630
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
2599
2631
|
bio: z.ZodDefault<z.ZodString>;
|
|
2600
2632
|
did: z.ZodString;
|
|
2633
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2601
2634
|
email: z.ZodOptional<z.ZodString>;
|
|
2602
2635
|
image: z.ZodOptional<z.ZodString>;
|
|
2603
2636
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -2646,6 +2679,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2646
2679
|
type?: string | undefined;
|
|
2647
2680
|
image?: string | undefined;
|
|
2648
2681
|
email?: string | undefined;
|
|
2682
|
+
isPrivate?: boolean | undefined;
|
|
2649
2683
|
heroImage?: string | undefined;
|
|
2650
2684
|
websiteLink?: string | undefined;
|
|
2651
2685
|
isServiceProfile?: boolean | undefined;
|
|
@@ -2675,6 +2709,7 @@ export declare const PaginatedConsentFlowContractsValidator: z.ZodObject<z.exten
|
|
|
2675
2709
|
displayName?: string | undefined;
|
|
2676
2710
|
shortBio?: string | undefined;
|
|
2677
2711
|
bio?: string | undefined;
|
|
2712
|
+
isPrivate?: boolean | undefined;
|
|
2678
2713
|
heroImage?: string | undefined;
|
|
2679
2714
|
websiteLink?: string | undefined;
|
|
2680
2715
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3359,6 +3394,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3359
3394
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3360
3395
|
bio: z.ZodDefault<z.ZodString>;
|
|
3361
3396
|
did: z.ZodString;
|
|
3397
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3362
3398
|
email: z.ZodOptional<z.ZodString>;
|
|
3363
3399
|
image: z.ZodOptional<z.ZodString>;
|
|
3364
3400
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3407,6 +3443,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3407
3443
|
type?: string | undefined;
|
|
3408
3444
|
image?: string | undefined;
|
|
3409
3445
|
email?: string | undefined;
|
|
3446
|
+
isPrivate?: boolean | undefined;
|
|
3410
3447
|
heroImage?: string | undefined;
|
|
3411
3448
|
websiteLink?: string | undefined;
|
|
3412
3449
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3436,6 +3473,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3436
3473
|
displayName?: string | undefined;
|
|
3437
3474
|
shortBio?: string | undefined;
|
|
3438
3475
|
bio?: string | undefined;
|
|
3476
|
+
isPrivate?: boolean | undefined;
|
|
3439
3477
|
heroImage?: string | undefined;
|
|
3440
3478
|
websiteLink?: string | undefined;
|
|
3441
3479
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3503,6 +3541,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3503
3541
|
type?: string | undefined;
|
|
3504
3542
|
image?: string | undefined;
|
|
3505
3543
|
email?: string | undefined;
|
|
3544
|
+
isPrivate?: boolean | undefined;
|
|
3506
3545
|
heroImage?: string | undefined;
|
|
3507
3546
|
websiteLink?: string | undefined;
|
|
3508
3547
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3567,6 +3606,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3567
3606
|
displayName?: string | undefined;
|
|
3568
3607
|
shortBio?: string | undefined;
|
|
3569
3608
|
bio?: string | undefined;
|
|
3609
|
+
isPrivate?: boolean | undefined;
|
|
3570
3610
|
heroImage?: string | undefined;
|
|
3571
3611
|
websiteLink?: string | undefined;
|
|
3572
3612
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3596,6 +3636,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3596
3636
|
shortBio: z.ZodDefault<z.ZodString>;
|
|
3597
3637
|
bio: z.ZodDefault<z.ZodString>;
|
|
3598
3638
|
did: z.ZodString;
|
|
3639
|
+
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
3599
3640
|
email: z.ZodOptional<z.ZodString>;
|
|
3600
3641
|
image: z.ZodOptional<z.ZodString>;
|
|
3601
3642
|
heroImage: z.ZodOptional<z.ZodString>;
|
|
@@ -3644,6 +3685,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3644
3685
|
type?: string | undefined;
|
|
3645
3686
|
image?: string | undefined;
|
|
3646
3687
|
email?: string | undefined;
|
|
3688
|
+
isPrivate?: boolean | undefined;
|
|
3647
3689
|
heroImage?: string | undefined;
|
|
3648
3690
|
websiteLink?: string | undefined;
|
|
3649
3691
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3673,6 +3715,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3673
3715
|
displayName?: string | undefined;
|
|
3674
3716
|
shortBio?: string | undefined;
|
|
3675
3717
|
bio?: string | undefined;
|
|
3718
|
+
isPrivate?: boolean | undefined;
|
|
3676
3719
|
heroImage?: string | undefined;
|
|
3677
3720
|
websiteLink?: string | undefined;
|
|
3678
3721
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3736,6 +3779,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3736
3779
|
type?: string | undefined;
|
|
3737
3780
|
image?: string | undefined;
|
|
3738
3781
|
email?: string | undefined;
|
|
3782
|
+
isPrivate?: boolean | undefined;
|
|
3739
3783
|
heroImage?: string | undefined;
|
|
3740
3784
|
websiteLink?: string | undefined;
|
|
3741
3785
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3787,6 +3831,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3787
3831
|
type?: string | undefined;
|
|
3788
3832
|
image?: string | undefined;
|
|
3789
3833
|
email?: string | undefined;
|
|
3834
|
+
isPrivate?: boolean | undefined;
|
|
3790
3835
|
heroImage?: string | undefined;
|
|
3791
3836
|
websiteLink?: string | undefined;
|
|
3792
3837
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3855,6 +3900,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3855
3900
|
displayName?: string | undefined;
|
|
3856
3901
|
shortBio?: string | undefined;
|
|
3857
3902
|
bio?: string | undefined;
|
|
3903
|
+
isPrivate?: boolean | undefined;
|
|
3858
3904
|
heroImage?: string | undefined;
|
|
3859
3905
|
websiteLink?: string | undefined;
|
|
3860
3906
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3906,6 +3952,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3906
3952
|
displayName?: string | undefined;
|
|
3907
3953
|
shortBio?: string | undefined;
|
|
3908
3954
|
bio?: string | undefined;
|
|
3955
|
+
isPrivate?: boolean | undefined;
|
|
3909
3956
|
heroImage?: string | undefined;
|
|
3910
3957
|
websiteLink?: string | undefined;
|
|
3911
3958
|
isServiceProfile?: boolean | undefined;
|
|
@@ -3972,6 +4019,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
3972
4019
|
type?: string | undefined;
|
|
3973
4020
|
image?: string | undefined;
|
|
3974
4021
|
email?: string | undefined;
|
|
4022
|
+
isPrivate?: boolean | undefined;
|
|
3975
4023
|
heroImage?: string | undefined;
|
|
3976
4024
|
websiteLink?: string | undefined;
|
|
3977
4025
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4023,6 +4071,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4023
4071
|
type?: string | undefined;
|
|
4024
4072
|
image?: string | undefined;
|
|
4025
4073
|
email?: string | undefined;
|
|
4074
|
+
isPrivate?: boolean | undefined;
|
|
4026
4075
|
heroImage?: string | undefined;
|
|
4027
4076
|
websiteLink?: string | undefined;
|
|
4028
4077
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4095,6 +4144,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4095
4144
|
displayName?: string | undefined;
|
|
4096
4145
|
shortBio?: string | undefined;
|
|
4097
4146
|
bio?: string | undefined;
|
|
4147
|
+
isPrivate?: boolean | undefined;
|
|
4098
4148
|
heroImage?: string | undefined;
|
|
4099
4149
|
websiteLink?: string | undefined;
|
|
4100
4150
|
isServiceProfile?: boolean | undefined;
|
|
@@ -4146,6 +4196,7 @@ export declare const PaginatedConsentFlowTermsValidator: z.ZodObject<z.extendSha
|
|
|
4146
4196
|
displayName?: string | undefined;
|
|
4147
4197
|
shortBio?: string | undefined;
|
|
4148
4198
|
bio?: string | undefined;
|
|
4199
|
+
isPrivate?: boolean | undefined;
|
|
4149
4200
|
heroImage?: string | undefined;
|
|
4150
4201
|
websiteLink?: string | undefined;
|
|
4151
4202
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5469,6 +5520,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5469
5520
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5470
5521
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5471
5522
|
did: z.ZodOptional<z.ZodString>;
|
|
5523
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5472
5524
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5473
5525
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5474
5526
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5522,6 +5574,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5522
5574
|
shortBio?: string | undefined;
|
|
5523
5575
|
bio?: string | undefined;
|
|
5524
5576
|
did?: string | undefined;
|
|
5577
|
+
isPrivate?: boolean | undefined;
|
|
5525
5578
|
heroImage?: string | undefined;
|
|
5526
5579
|
websiteLink?: string | undefined;
|
|
5527
5580
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5548,6 +5601,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5548
5601
|
shortBio?: string | undefined;
|
|
5549
5602
|
bio?: string | undefined;
|
|
5550
5603
|
did?: string | undefined;
|
|
5604
|
+
isPrivate?: boolean | undefined;
|
|
5551
5605
|
heroImage?: string | undefined;
|
|
5552
5606
|
websiteLink?: string | undefined;
|
|
5553
5607
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5578,6 +5632,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5578
5632
|
shortBio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5579
5633
|
bio: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
5580
5634
|
did: z.ZodOptional<z.ZodString>;
|
|
5635
|
+
isPrivate: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5581
5636
|
email: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5582
5637
|
image: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5583
5638
|
heroImage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5631,6 +5686,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5631
5686
|
shortBio?: string | undefined;
|
|
5632
5687
|
bio?: string | undefined;
|
|
5633
5688
|
did?: string | undefined;
|
|
5689
|
+
isPrivate?: boolean | undefined;
|
|
5634
5690
|
heroImage?: string | undefined;
|
|
5635
5691
|
websiteLink?: string | undefined;
|
|
5636
5692
|
isServiceProfile?: boolean | undefined;
|
|
@@ -5657,6 +5713,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
5657
5713
|
shortBio?: string | undefined;
|
|
5658
5714
|
bio?: string | undefined;
|
|
5659
5715
|
did?: string | undefined;
|
|
5716
|
+
isPrivate?: boolean | undefined;
|
|
5660
5717
|
heroImage?: string | undefined;
|
|
5661
5718
|
websiteLink?: string | undefined;
|
|
5662
5719
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6004,6 +6061,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6004
6061
|
shortBio?: string | undefined;
|
|
6005
6062
|
bio?: string | undefined;
|
|
6006
6063
|
did?: string | undefined;
|
|
6064
|
+
isPrivate?: boolean | undefined;
|
|
6007
6065
|
heroImage?: string | undefined;
|
|
6008
6066
|
websiteLink?: string | undefined;
|
|
6009
6067
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6033,6 +6091,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6033
6091
|
shortBio?: string | undefined;
|
|
6034
6092
|
bio?: string | undefined;
|
|
6035
6093
|
did?: string | undefined;
|
|
6094
|
+
isPrivate?: boolean | undefined;
|
|
6036
6095
|
heroImage?: string | undefined;
|
|
6037
6096
|
websiteLink?: string | undefined;
|
|
6038
6097
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6102,6 +6161,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6102
6161
|
shortBio?: string | undefined;
|
|
6103
6162
|
bio?: string | undefined;
|
|
6104
6163
|
did?: string | undefined;
|
|
6164
|
+
isPrivate?: boolean | undefined;
|
|
6105
6165
|
heroImage?: string | undefined;
|
|
6106
6166
|
websiteLink?: string | undefined;
|
|
6107
6167
|
isServiceProfile?: boolean | undefined;
|
|
@@ -6131,6 +6191,7 @@ export declare const LCNNotificationValidator: z.ZodObject<{
|
|
|
6131
6191
|
shortBio?: string | undefined;
|
|
6132
6192
|
bio?: string | undefined;
|
|
6133
6193
|
did?: string | undefined;
|
|
6194
|
+
isPrivate?: boolean | undefined;
|
|
6134
6195
|
heroImage?: string | undefined;
|
|
6135
6196
|
websiteLink?: string | undefined;
|
|
6136
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":"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":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe9B,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"}
|
|
@@ -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(),
|