@longdotxyz/shared 0.0.144 → 0.0.146
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/contracts/activity.contract.d.ts +52 -52
- package/dist/contracts/asset.contract.d.ts +884 -152
- package/dist/contracts/asset.contract.js +15 -0
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +16 -16
- package/dist/contracts/builder.contract.d.ts +381 -381
- package/dist/contracts/community.contract.d.ts +10 -10
- package/dist/contracts/index.d.ts +1015 -433
- package/dist/contracts/sponsorship.contract.d.ts +14 -14
- package/dist/contracts/tokens.contract.d.ts +8 -8
- package/package.json +1 -1
|
@@ -277,12 +277,12 @@ declare const XUserSchema: z.ZodObject<{
|
|
|
277
277
|
like_count?: number | undefined;
|
|
278
278
|
}>>;
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
|
-
name: string;
|
|
281
280
|
id: string;
|
|
281
|
+
name: string;
|
|
282
282
|
username: string;
|
|
283
|
+
created_at?: string | undefined;
|
|
283
284
|
verified?: boolean | undefined;
|
|
284
285
|
verified_type?: string | undefined;
|
|
285
|
-
created_at?: string | undefined;
|
|
286
286
|
protected?: boolean | undefined;
|
|
287
287
|
profile_image_url?: string | undefined;
|
|
288
288
|
public_metrics?: {
|
|
@@ -293,12 +293,12 @@ declare const XUserSchema: z.ZodObject<{
|
|
|
293
293
|
like_count?: number | undefined;
|
|
294
294
|
} | undefined;
|
|
295
295
|
}, {
|
|
296
|
-
name: string;
|
|
297
296
|
id: string;
|
|
297
|
+
name: string;
|
|
298
298
|
username: string;
|
|
299
|
+
created_at?: string | undefined;
|
|
299
300
|
verified?: boolean | undefined;
|
|
300
301
|
verified_type?: string | undefined;
|
|
301
|
-
created_at?: string | undefined;
|
|
302
302
|
protected?: boolean | undefined;
|
|
303
303
|
profile_image_url?: string | undefined;
|
|
304
304
|
public_metrics?: {
|
|
@@ -339,12 +339,12 @@ declare const XActivityResponseSchema: z.ZodObject<{
|
|
|
339
339
|
like_count?: number | undefined;
|
|
340
340
|
}>>;
|
|
341
341
|
}, "strip", z.ZodTypeAny, {
|
|
342
|
-
name: string;
|
|
343
342
|
id: string;
|
|
343
|
+
name: string;
|
|
344
344
|
username: string;
|
|
345
|
+
created_at?: string | undefined;
|
|
345
346
|
verified?: boolean | undefined;
|
|
346
347
|
verified_type?: string | undefined;
|
|
347
|
-
created_at?: string | undefined;
|
|
348
348
|
protected?: boolean | undefined;
|
|
349
349
|
profile_image_url?: string | undefined;
|
|
350
350
|
public_metrics?: {
|
|
@@ -355,12 +355,12 @@ declare const XActivityResponseSchema: z.ZodObject<{
|
|
|
355
355
|
like_count?: number | undefined;
|
|
356
356
|
} | undefined;
|
|
357
357
|
}, {
|
|
358
|
-
name: string;
|
|
359
358
|
id: string;
|
|
359
|
+
name: string;
|
|
360
360
|
username: string;
|
|
361
|
+
created_at?: string | undefined;
|
|
361
362
|
verified?: boolean | undefined;
|
|
362
363
|
verified_type?: string | undefined;
|
|
363
|
-
created_at?: string | undefined;
|
|
364
364
|
protected?: boolean | undefined;
|
|
365
365
|
profile_image_url?: string | undefined;
|
|
366
366
|
public_metrics?: {
|
|
@@ -373,12 +373,12 @@ declare const XActivityResponseSchema: z.ZodObject<{
|
|
|
373
373
|
}>;
|
|
374
374
|
}, "strip", z.ZodTypeAny, {
|
|
375
375
|
result: {
|
|
376
|
-
name: string;
|
|
377
376
|
id: string;
|
|
377
|
+
name: string;
|
|
378
378
|
username: string;
|
|
379
|
+
created_at?: string | undefined;
|
|
379
380
|
verified?: boolean | undefined;
|
|
380
381
|
verified_type?: string | undefined;
|
|
381
|
-
created_at?: string | undefined;
|
|
382
382
|
protected?: boolean | undefined;
|
|
383
383
|
profile_image_url?: string | undefined;
|
|
384
384
|
public_metrics?: {
|
|
@@ -391,12 +391,12 @@ declare const XActivityResponseSchema: z.ZodObject<{
|
|
|
391
391
|
};
|
|
392
392
|
}, {
|
|
393
393
|
result: {
|
|
394
|
-
name: string;
|
|
395
394
|
id: string;
|
|
395
|
+
name: string;
|
|
396
396
|
username: string;
|
|
397
|
+
created_at?: string | undefined;
|
|
397
398
|
verified?: boolean | undefined;
|
|
398
399
|
verified_type?: string | undefined;
|
|
399
|
-
created_at?: string | undefined;
|
|
400
400
|
protected?: boolean | undefined;
|
|
401
401
|
profile_image_url?: string | undefined;
|
|
402
402
|
public_metrics?: {
|
|
@@ -562,12 +562,12 @@ declare const XTweetSchema: z.ZodObject<{
|
|
|
562
562
|
like_count?: number | undefined;
|
|
563
563
|
}>>;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
|
-
name: string;
|
|
566
565
|
id: string;
|
|
566
|
+
name: string;
|
|
567
567
|
username: string;
|
|
568
|
+
created_at?: string | undefined;
|
|
568
569
|
verified?: boolean | undefined;
|
|
569
570
|
verified_type?: string | undefined;
|
|
570
|
-
created_at?: string | undefined;
|
|
571
571
|
protected?: boolean | undefined;
|
|
572
572
|
profile_image_url?: string | undefined;
|
|
573
573
|
public_metrics?: {
|
|
@@ -578,12 +578,12 @@ declare const XTweetSchema: z.ZodObject<{
|
|
|
578
578
|
like_count?: number | undefined;
|
|
579
579
|
} | undefined;
|
|
580
580
|
}, {
|
|
581
|
-
name: string;
|
|
582
581
|
id: string;
|
|
582
|
+
name: string;
|
|
583
583
|
username: string;
|
|
584
|
+
created_at?: string | undefined;
|
|
584
585
|
verified?: boolean | undefined;
|
|
585
586
|
verified_type?: string | undefined;
|
|
586
|
-
created_at?: string | undefined;
|
|
587
587
|
protected?: boolean | undefined;
|
|
588
588
|
profile_image_url?: string | undefined;
|
|
589
589
|
public_metrics?: {
|
|
@@ -636,12 +636,12 @@ declare const XTweetSchema: z.ZodObject<{
|
|
|
636
636
|
}[] | undefined;
|
|
637
637
|
} | undefined;
|
|
638
638
|
author?: {
|
|
639
|
-
name: string;
|
|
640
639
|
id: string;
|
|
640
|
+
name: string;
|
|
641
641
|
username: string;
|
|
642
|
+
created_at?: string | undefined;
|
|
642
643
|
verified?: boolean | undefined;
|
|
643
644
|
verified_type?: string | undefined;
|
|
644
|
-
created_at?: string | undefined;
|
|
645
645
|
protected?: boolean | undefined;
|
|
646
646
|
profile_image_url?: string | undefined;
|
|
647
647
|
public_metrics?: {
|
|
@@ -694,12 +694,12 @@ declare const XTweetSchema: z.ZodObject<{
|
|
|
694
694
|
}[] | undefined;
|
|
695
695
|
} | undefined;
|
|
696
696
|
author?: {
|
|
697
|
-
name: string;
|
|
698
697
|
id: string;
|
|
698
|
+
name: string;
|
|
699
699
|
username: string;
|
|
700
|
+
created_at?: string | undefined;
|
|
700
701
|
verified?: boolean | undefined;
|
|
701
702
|
verified_type?: string | undefined;
|
|
702
|
-
created_at?: string | undefined;
|
|
703
703
|
protected?: boolean | undefined;
|
|
704
704
|
profile_image_url?: string | undefined;
|
|
705
705
|
public_metrics?: {
|
|
@@ -866,12 +866,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
866
866
|
like_count?: number | undefined;
|
|
867
867
|
}>>;
|
|
868
868
|
}, "strip", z.ZodTypeAny, {
|
|
869
|
-
name: string;
|
|
870
869
|
id: string;
|
|
870
|
+
name: string;
|
|
871
871
|
username: string;
|
|
872
|
+
created_at?: string | undefined;
|
|
872
873
|
verified?: boolean | undefined;
|
|
873
874
|
verified_type?: string | undefined;
|
|
874
|
-
created_at?: string | undefined;
|
|
875
875
|
protected?: boolean | undefined;
|
|
876
876
|
profile_image_url?: string | undefined;
|
|
877
877
|
public_metrics?: {
|
|
@@ -882,12 +882,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
882
882
|
like_count?: number | undefined;
|
|
883
883
|
} | undefined;
|
|
884
884
|
}, {
|
|
885
|
-
name: string;
|
|
886
885
|
id: string;
|
|
886
|
+
name: string;
|
|
887
887
|
username: string;
|
|
888
|
+
created_at?: string | undefined;
|
|
888
889
|
verified?: boolean | undefined;
|
|
889
890
|
verified_type?: string | undefined;
|
|
890
|
-
created_at?: string | undefined;
|
|
891
891
|
protected?: boolean | undefined;
|
|
892
892
|
profile_image_url?: string | undefined;
|
|
893
893
|
public_metrics?: {
|
|
@@ -940,12 +940,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
940
940
|
}[] | undefined;
|
|
941
941
|
} | undefined;
|
|
942
942
|
author?: {
|
|
943
|
-
name: string;
|
|
944
943
|
id: string;
|
|
944
|
+
name: string;
|
|
945
945
|
username: string;
|
|
946
|
+
created_at?: string | undefined;
|
|
946
947
|
verified?: boolean | undefined;
|
|
947
948
|
verified_type?: string | undefined;
|
|
948
|
-
created_at?: string | undefined;
|
|
949
949
|
protected?: boolean | undefined;
|
|
950
950
|
profile_image_url?: string | undefined;
|
|
951
951
|
public_metrics?: {
|
|
@@ -998,12 +998,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
998
998
|
}[] | undefined;
|
|
999
999
|
} | undefined;
|
|
1000
1000
|
author?: {
|
|
1001
|
-
name: string;
|
|
1002
1001
|
id: string;
|
|
1002
|
+
name: string;
|
|
1003
1003
|
username: string;
|
|
1004
|
+
created_at?: string | undefined;
|
|
1004
1005
|
verified?: boolean | undefined;
|
|
1005
1006
|
verified_type?: string | undefined;
|
|
1006
|
-
created_at?: string | undefined;
|
|
1007
1007
|
protected?: boolean | undefined;
|
|
1008
1008
|
profile_image_url?: string | undefined;
|
|
1009
1009
|
public_metrics?: {
|
|
@@ -1058,12 +1058,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
1058
1058
|
}[] | undefined;
|
|
1059
1059
|
} | undefined;
|
|
1060
1060
|
author?: {
|
|
1061
|
-
name: string;
|
|
1062
1061
|
id: string;
|
|
1062
|
+
name: string;
|
|
1063
1063
|
username: string;
|
|
1064
|
+
created_at?: string | undefined;
|
|
1064
1065
|
verified?: boolean | undefined;
|
|
1065
1066
|
verified_type?: string | undefined;
|
|
1066
|
-
created_at?: string | undefined;
|
|
1067
1067
|
protected?: boolean | undefined;
|
|
1068
1068
|
profile_image_url?: string | undefined;
|
|
1069
1069
|
public_metrics?: {
|
|
@@ -1118,12 +1118,12 @@ declare const XTweetResponseSchema: z.ZodObject<{
|
|
|
1118
1118
|
}[] | undefined;
|
|
1119
1119
|
} | undefined;
|
|
1120
1120
|
author?: {
|
|
1121
|
-
name: string;
|
|
1122
1121
|
id: string;
|
|
1122
|
+
name: string;
|
|
1123
1123
|
username: string;
|
|
1124
|
+
created_at?: string | undefined;
|
|
1124
1125
|
verified?: boolean | undefined;
|
|
1125
1126
|
verified_type?: string | undefined;
|
|
1126
|
-
created_at?: string | undefined;
|
|
1127
1127
|
protected?: boolean | undefined;
|
|
1128
1128
|
profile_image_url?: string | undefined;
|
|
1129
1129
|
public_metrics?: {
|
|
@@ -1427,12 +1427,12 @@ declare const activityContract: {
|
|
|
1427
1427
|
like_count?: number | undefined;
|
|
1428
1428
|
}>>;
|
|
1429
1429
|
}, "strip", z.ZodTypeAny, {
|
|
1430
|
-
name: string;
|
|
1431
1430
|
id: string;
|
|
1431
|
+
name: string;
|
|
1432
1432
|
username: string;
|
|
1433
|
+
created_at?: string | undefined;
|
|
1433
1434
|
verified?: boolean | undefined;
|
|
1434
1435
|
verified_type?: string | undefined;
|
|
1435
|
-
created_at?: string | undefined;
|
|
1436
1436
|
protected?: boolean | undefined;
|
|
1437
1437
|
profile_image_url?: string | undefined;
|
|
1438
1438
|
public_metrics?: {
|
|
@@ -1443,12 +1443,12 @@ declare const activityContract: {
|
|
|
1443
1443
|
like_count?: number | undefined;
|
|
1444
1444
|
} | undefined;
|
|
1445
1445
|
}, {
|
|
1446
|
-
name: string;
|
|
1447
1446
|
id: string;
|
|
1447
|
+
name: string;
|
|
1448
1448
|
username: string;
|
|
1449
|
+
created_at?: string | undefined;
|
|
1449
1450
|
verified?: boolean | undefined;
|
|
1450
1451
|
verified_type?: string | undefined;
|
|
1451
|
-
created_at?: string | undefined;
|
|
1452
1452
|
protected?: boolean | undefined;
|
|
1453
1453
|
profile_image_url?: string | undefined;
|
|
1454
1454
|
public_metrics?: {
|
|
@@ -1461,12 +1461,12 @@ declare const activityContract: {
|
|
|
1461
1461
|
}>;
|
|
1462
1462
|
}, "strip", z.ZodTypeAny, {
|
|
1463
1463
|
result: {
|
|
1464
|
-
name: string;
|
|
1465
1464
|
id: string;
|
|
1465
|
+
name: string;
|
|
1466
1466
|
username: string;
|
|
1467
|
+
created_at?: string | undefined;
|
|
1467
1468
|
verified?: boolean | undefined;
|
|
1468
1469
|
verified_type?: string | undefined;
|
|
1469
|
-
created_at?: string | undefined;
|
|
1470
1470
|
protected?: boolean | undefined;
|
|
1471
1471
|
profile_image_url?: string | undefined;
|
|
1472
1472
|
public_metrics?: {
|
|
@@ -1479,12 +1479,12 @@ declare const activityContract: {
|
|
|
1479
1479
|
};
|
|
1480
1480
|
}, {
|
|
1481
1481
|
result: {
|
|
1482
|
-
name: string;
|
|
1483
1482
|
id: string;
|
|
1483
|
+
name: string;
|
|
1484
1484
|
username: string;
|
|
1485
|
+
created_at?: string | undefined;
|
|
1485
1486
|
verified?: boolean | undefined;
|
|
1486
1487
|
verified_type?: string | undefined;
|
|
1487
|
-
created_at?: string | undefined;
|
|
1488
1488
|
protected?: boolean | undefined;
|
|
1489
1489
|
profile_image_url?: string | undefined;
|
|
1490
1490
|
public_metrics?: {
|
|
@@ -1657,12 +1657,12 @@ declare const activityContract: {
|
|
|
1657
1657
|
like_count?: number | undefined;
|
|
1658
1658
|
}>>;
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
|
-
name: string;
|
|
1661
1660
|
id: string;
|
|
1661
|
+
name: string;
|
|
1662
1662
|
username: string;
|
|
1663
|
+
created_at?: string | undefined;
|
|
1663
1664
|
verified?: boolean | undefined;
|
|
1664
1665
|
verified_type?: string | undefined;
|
|
1665
|
-
created_at?: string | undefined;
|
|
1666
1666
|
protected?: boolean | undefined;
|
|
1667
1667
|
profile_image_url?: string | undefined;
|
|
1668
1668
|
public_metrics?: {
|
|
@@ -1673,12 +1673,12 @@ declare const activityContract: {
|
|
|
1673
1673
|
like_count?: number | undefined;
|
|
1674
1674
|
} | undefined;
|
|
1675
1675
|
}, {
|
|
1676
|
-
name: string;
|
|
1677
1676
|
id: string;
|
|
1677
|
+
name: string;
|
|
1678
1678
|
username: string;
|
|
1679
|
+
created_at?: string | undefined;
|
|
1679
1680
|
verified?: boolean | undefined;
|
|
1680
1681
|
verified_type?: string | undefined;
|
|
1681
|
-
created_at?: string | undefined;
|
|
1682
1682
|
protected?: boolean | undefined;
|
|
1683
1683
|
profile_image_url?: string | undefined;
|
|
1684
1684
|
public_metrics?: {
|
|
@@ -1731,12 +1731,12 @@ declare const activityContract: {
|
|
|
1731
1731
|
}[] | undefined;
|
|
1732
1732
|
} | undefined;
|
|
1733
1733
|
author?: {
|
|
1734
|
-
name: string;
|
|
1735
1734
|
id: string;
|
|
1735
|
+
name: string;
|
|
1736
1736
|
username: string;
|
|
1737
|
+
created_at?: string | undefined;
|
|
1737
1738
|
verified?: boolean | undefined;
|
|
1738
1739
|
verified_type?: string | undefined;
|
|
1739
|
-
created_at?: string | undefined;
|
|
1740
1740
|
protected?: boolean | undefined;
|
|
1741
1741
|
profile_image_url?: string | undefined;
|
|
1742
1742
|
public_metrics?: {
|
|
@@ -1789,12 +1789,12 @@ declare const activityContract: {
|
|
|
1789
1789
|
}[] | undefined;
|
|
1790
1790
|
} | undefined;
|
|
1791
1791
|
author?: {
|
|
1792
|
-
name: string;
|
|
1793
1792
|
id: string;
|
|
1793
|
+
name: string;
|
|
1794
1794
|
username: string;
|
|
1795
|
+
created_at?: string | undefined;
|
|
1795
1796
|
verified?: boolean | undefined;
|
|
1796
1797
|
verified_type?: string | undefined;
|
|
1797
|
-
created_at?: string | undefined;
|
|
1798
1798
|
protected?: boolean | undefined;
|
|
1799
1799
|
profile_image_url?: string | undefined;
|
|
1800
1800
|
public_metrics?: {
|
|
@@ -1849,12 +1849,12 @@ declare const activityContract: {
|
|
|
1849
1849
|
}[] | undefined;
|
|
1850
1850
|
} | undefined;
|
|
1851
1851
|
author?: {
|
|
1852
|
-
name: string;
|
|
1853
1852
|
id: string;
|
|
1853
|
+
name: string;
|
|
1854
1854
|
username: string;
|
|
1855
|
+
created_at?: string | undefined;
|
|
1855
1856
|
verified?: boolean | undefined;
|
|
1856
1857
|
verified_type?: string | undefined;
|
|
1857
|
-
created_at?: string | undefined;
|
|
1858
1858
|
protected?: boolean | undefined;
|
|
1859
1859
|
profile_image_url?: string | undefined;
|
|
1860
1860
|
public_metrics?: {
|
|
@@ -1909,12 +1909,12 @@ declare const activityContract: {
|
|
|
1909
1909
|
}[] | undefined;
|
|
1910
1910
|
} | undefined;
|
|
1911
1911
|
author?: {
|
|
1912
|
-
name: string;
|
|
1913
1912
|
id: string;
|
|
1913
|
+
name: string;
|
|
1914
1914
|
username: string;
|
|
1915
|
+
created_at?: string | undefined;
|
|
1915
1916
|
verified?: boolean | undefined;
|
|
1916
1917
|
verified_type?: string | undefined;
|
|
1917
|
-
created_at?: string | undefined;
|
|
1918
1918
|
protected?: boolean | undefined;
|
|
1919
1919
|
profile_image_url?: string | undefined;
|
|
1920
1920
|
public_metrics?: {
|