@b3dotfun/sdk 0.0.4-alpha.0 → 0.0.4-alpha.1

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.
Files changed (25) hide show
  1. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
  2. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
  3. package/dist/cjs/anyspend/services/anyspend.d.ts +5 -0
  4. package/dist/cjs/anyspend/types/order.d.ts +18 -0
  5. package/dist/cjs/anyspend/types/order.js +1 -0
  6. package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +25 -0
  7. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +35 -0
  8. package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +25 -0
  9. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
  10. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
  11. package/dist/esm/anyspend/services/anyspend.d.ts +5 -0
  12. package/dist/esm/anyspend/types/order.d.ts +18 -0
  13. package/dist/esm/anyspend/types/order.js +1 -0
  14. package/dist/esm/anyspend/types/req-res/createOrder.d.ts +25 -0
  15. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +35 -0
  16. package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +25 -0
  17. package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
  18. package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
  19. package/dist/types/anyspend/services/anyspend.d.ts +5 -0
  20. package/dist/types/anyspend/types/order.d.ts +18 -0
  21. package/dist/types/anyspend/types/req-res/createOrder.d.ts +25 -0
  22. package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +35 -0
  23. package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +25 -0
  24. package/package.json +1 -1
  25. package/src/anyspend/types/order.ts +1 -0
@@ -35,6 +35,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
35
35
  ipAddress?: string | undefined;
36
36
  }>>;
37
37
  creatorAddress: z.ZodNullable<z.ZodString>;
38
+ partnerId: z.ZodNullable<z.ZodString>;
38
39
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
39
40
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
40
41
  permit: z.ZodNullable<z.ZodObject<{
@@ -220,6 +221,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
220
221
  ipAddress?: string | undefined;
221
222
  } | null;
222
223
  creatorAddress: string | null;
224
+ partnerId: string | null;
223
225
  oneClickBuyUrl: string | null;
224
226
  stripePaymentIntentId: string | null;
225
227
  permit: {
@@ -277,6 +279,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
277
279
  ipAddress?: string | undefined;
278
280
  } | null;
279
281
  creatorAddress: string | null;
282
+ partnerId: string | null;
280
283
  oneClickBuyUrl: string | null;
281
284
  stripePaymentIntentId: string | null;
282
285
  permit: {
@@ -323,6 +326,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
323
326
  ipAddress?: string | undefined;
324
327
  }>>;
325
328
  creatorAddress: z.ZodNullable<z.ZodString>;
329
+ partnerId: z.ZodNullable<z.ZodString>;
326
330
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
327
331
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
328
332
  permit: z.ZodNullable<z.ZodObject<{
@@ -592,6 +596,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
592
596
  ipAddress?: string | undefined;
593
597
  } | null;
594
598
  creatorAddress: string | null;
599
+ partnerId: string | null;
595
600
  oneClickBuyUrl: string | null;
596
601
  stripePaymentIntentId: string | null;
597
602
  permit: {
@@ -663,6 +668,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
663
668
  ipAddress?: string | undefined;
664
669
  } | null;
665
670
  creatorAddress: string | null;
671
+ partnerId: string | null;
666
672
  oneClickBuyUrl: string | null;
667
673
  stripePaymentIntentId: string | null;
668
674
  permit: {
@@ -709,6 +715,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
709
715
  ipAddress?: string | undefined;
710
716
  }>>;
711
717
  creatorAddress: z.ZodNullable<z.ZodString>;
718
+ partnerId: z.ZodNullable<z.ZodString>;
712
719
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
713
720
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
714
721
  permit: z.ZodNullable<z.ZodObject<{
@@ -928,6 +935,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
928
935
  ipAddress?: string | undefined;
929
936
  } | null;
930
937
  creatorAddress: string | null;
938
+ partnerId: string | null;
931
939
  oneClickBuyUrl: string | null;
932
940
  stripePaymentIntentId: string | null;
933
941
  permit: {
@@ -991,6 +999,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
991
999
  ipAddress?: string | undefined;
992
1000
  } | null;
993
1001
  creatorAddress: string | null;
1002
+ partnerId: string | null;
994
1003
  oneClickBuyUrl: string | null;
995
1004
  stripePaymentIntentId: string | null;
996
1005
  permit: {
@@ -1037,6 +1046,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1037
1046
  ipAddress?: string | undefined;
1038
1047
  }>>;
1039
1048
  creatorAddress: z.ZodNullable<z.ZodString>;
1049
+ partnerId: z.ZodNullable<z.ZodString>;
1040
1050
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1041
1051
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1042
1052
  permit: z.ZodNullable<z.ZodObject<{
@@ -1256,6 +1266,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1256
1266
  ipAddress?: string | undefined;
1257
1267
  } | null;
1258
1268
  creatorAddress: string | null;
1269
+ partnerId: string | null;
1259
1270
  oneClickBuyUrl: string | null;
1260
1271
  stripePaymentIntentId: string | null;
1261
1272
  permit: {
@@ -1319,6 +1330,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1319
1330
  ipAddress?: string | undefined;
1320
1331
  } | null;
1321
1332
  creatorAddress: string | null;
1333
+ partnerId: string | null;
1322
1334
  oneClickBuyUrl: string | null;
1323
1335
  stripePaymentIntentId: string | null;
1324
1336
  permit: {
@@ -1365,6 +1377,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1365
1377
  ipAddress?: string | undefined;
1366
1378
  }>>;
1367
1379
  creatorAddress: z.ZodNullable<z.ZodString>;
1380
+ partnerId: z.ZodNullable<z.ZodString>;
1368
1381
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1369
1382
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1370
1383
  permit: z.ZodNullable<z.ZodObject<{
@@ -1560,6 +1573,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1560
1573
  ipAddress?: string | undefined;
1561
1574
  } | null;
1562
1575
  creatorAddress: string | null;
1576
+ partnerId: string | null;
1563
1577
  oneClickBuyUrl: string | null;
1564
1578
  stripePaymentIntentId: string | null;
1565
1579
  permit: {
@@ -1620,6 +1634,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1620
1634
  ipAddress?: string | undefined;
1621
1635
  } | null;
1622
1636
  creatorAddress: string | null;
1637
+ partnerId: string | null;
1623
1638
  oneClickBuyUrl: string | null;
1624
1639
  stripePaymentIntentId: string | null;
1625
1640
  permit: {
@@ -1683,6 +1698,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1683
1698
  ipAddress?: string | undefined;
1684
1699
  } | null;
1685
1700
  creatorAddress: string | null;
1701
+ partnerId: string | null;
1686
1702
  oneClickBuyUrl: string | null;
1687
1703
  stripePaymentIntentId: string | null;
1688
1704
  permit: {
@@ -1754,6 +1770,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1754
1770
  ipAddress?: string | undefined;
1755
1771
  } | null;
1756
1772
  creatorAddress: string | null;
1773
+ partnerId: string | null;
1757
1774
  oneClickBuyUrl: string | null;
1758
1775
  stripePaymentIntentId: string | null;
1759
1776
  permit: {
@@ -1817,6 +1834,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1817
1834
  ipAddress?: string | undefined;
1818
1835
  } | null;
1819
1836
  creatorAddress: string | null;
1837
+ partnerId: string | null;
1820
1838
  oneClickBuyUrl: string | null;
1821
1839
  stripePaymentIntentId: string | null;
1822
1840
  permit: {
@@ -1880,6 +1898,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1880
1898
  ipAddress?: string | undefined;
1881
1899
  } | null;
1882
1900
  creatorAddress: string | null;
1901
+ partnerId: string | null;
1883
1902
  oneClickBuyUrl: string | null;
1884
1903
  stripePaymentIntentId: string | null;
1885
1904
  permit: {
@@ -1938,6 +1957,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
1938
1957
  ipAddress?: string | undefined;
1939
1958
  } | null;
1940
1959
  creatorAddress: string | null;
1960
+ partnerId: string | null;
1941
1961
  oneClickBuyUrl: string | null;
1942
1962
  stripePaymentIntentId: string | null;
1943
1963
  permit: {
@@ -2002,6 +2022,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
2002
2022
  ipAddress?: string | undefined;
2003
2023
  } | null;
2004
2024
  creatorAddress: string | null;
2025
+ partnerId: string | null;
2005
2026
  oneClickBuyUrl: string | null;
2006
2027
  stripePaymentIntentId: string | null;
2007
2028
  permit: {
@@ -2073,6 +2094,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
2073
2094
  ipAddress?: string | undefined;
2074
2095
  } | null;
2075
2096
  creatorAddress: string | null;
2097
+ partnerId: string | null;
2076
2098
  oneClickBuyUrl: string | null;
2077
2099
  stripePaymentIntentId: string | null;
2078
2100
  permit: {
@@ -2136,6 +2158,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
2136
2158
  ipAddress?: string | undefined;
2137
2159
  } | null;
2138
2160
  creatorAddress: string | null;
2161
+ partnerId: string | null;
2139
2162
  oneClickBuyUrl: string | null;
2140
2163
  stripePaymentIntentId: string | null;
2141
2164
  permit: {
@@ -2199,6 +2222,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
2199
2222
  ipAddress?: string | undefined;
2200
2223
  } | null;
2201
2224
  creatorAddress: string | null;
2225
+ partnerId: string | null;
2202
2226
  oneClickBuyUrl: string | null;
2203
2227
  stripePaymentIntentId: string | null;
2204
2228
  permit: {
@@ -2257,6 +2281,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
2257
2281
  ipAddress?: string | undefined;
2258
2282
  } | null;
2259
2283
  creatorAddress: string | null;
2284
+ partnerId: string | null;
2260
2285
  oneClickBuyUrl: string | null;
2261
2286
  stripePaymentIntentId: string | null;
2262
2287
  permit: {
@@ -46,6 +46,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
46
46
  ipAddress?: string | undefined;
47
47
  } | null;
48
48
  creatorAddress: string | null;
49
+ partnerId: string | null;
49
50
  oneClickBuyUrl: string | null;
50
51
  stripePaymentIntentId: string | null;
51
52
  permit: {
@@ -117,6 +118,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
117
118
  ipAddress?: string | undefined;
118
119
  } | null;
119
120
  creatorAddress: string | null;
121
+ partnerId: string | null;
120
122
  oneClickBuyUrl: string | null;
121
123
  stripePaymentIntentId: string | null;
122
124
  permit: {
@@ -180,6 +182,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
180
182
  ipAddress?: string | undefined;
181
183
  } | null;
182
184
  creatorAddress: string | null;
185
+ partnerId: string | null;
183
186
  oneClickBuyUrl: string | null;
184
187
  stripePaymentIntentId: string | null;
185
188
  permit: {
@@ -243,6 +246,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
243
246
  ipAddress?: string | undefined;
244
247
  } | null;
245
248
  creatorAddress: string | null;
249
+ partnerId: string | null;
246
250
  oneClickBuyUrl: string | null;
247
251
  stripePaymentIntentId: string | null;
248
252
  permit: {
@@ -301,6 +305,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
301
305
  ipAddress?: string | undefined;
302
306
  } | null;
303
307
  creatorAddress: string | null;
308
+ partnerId: string | null;
304
309
  oneClickBuyUrl: string | null;
305
310
  stripePaymentIntentId: string | null;
306
311
  permit: {
@@ -399,6 +404,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
399
404
  ipAddress?: string | undefined;
400
405
  } | null;
401
406
  creatorAddress: string | null;
407
+ partnerId: string | null;
402
408
  oneClickBuyUrl: string | null;
403
409
  stripePaymentIntentId: string | null;
404
410
  permit: {
@@ -470,6 +476,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
470
476
  ipAddress?: string | undefined;
471
477
  } | null;
472
478
  creatorAddress: string | null;
479
+ partnerId: string | null;
473
480
  oneClickBuyUrl: string | null;
474
481
  stripePaymentIntentId: string | null;
475
482
  permit: {
@@ -533,6 +540,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
533
540
  ipAddress?: string | undefined;
534
541
  } | null;
535
542
  creatorAddress: string | null;
543
+ partnerId: string | null;
536
544
  oneClickBuyUrl: string | null;
537
545
  stripePaymentIntentId: string | null;
538
546
  permit: {
@@ -596,6 +604,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
596
604
  ipAddress?: string | undefined;
597
605
  } | null;
598
606
  creatorAddress: string | null;
607
+ partnerId: string | null;
599
608
  oneClickBuyUrl: string | null;
600
609
  stripePaymentIntentId: string | null;
601
610
  permit: {
@@ -654,6 +663,7 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
654
663
  ipAddress?: string | undefined;
655
664
  } | null;
656
665
  creatorAddress: string | null;
666
+ partnerId: string | null;
657
667
  oneClickBuyUrl: string | null;
658
668
  stripePaymentIntentId: string | null;
659
669
  permit: {
@@ -43,6 +43,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
43
43
  ipAddress?: string | undefined;
44
44
  } | null;
45
45
  creatorAddress: string | null;
46
+ partnerId: string | null;
46
47
  oneClickBuyUrl: string | null;
47
48
  stripePaymentIntentId: string | null;
48
49
  permit: {
@@ -114,6 +115,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
114
115
  ipAddress?: string | undefined;
115
116
  } | null;
116
117
  creatorAddress: string | null;
118
+ partnerId: string | null;
117
119
  oneClickBuyUrl: string | null;
118
120
  stripePaymentIntentId: string | null;
119
121
  permit: {
@@ -177,6 +179,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
177
179
  ipAddress?: string | undefined;
178
180
  } | null;
179
181
  creatorAddress: string | null;
182
+ partnerId: string | null;
180
183
  oneClickBuyUrl: string | null;
181
184
  stripePaymentIntentId: string | null;
182
185
  permit: {
@@ -240,6 +243,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
240
243
  ipAddress?: string | undefined;
241
244
  } | null;
242
245
  creatorAddress: string | null;
246
+ partnerId: string | null;
243
247
  oneClickBuyUrl: string | null;
244
248
  stripePaymentIntentId: string | null;
245
249
  permit: {
@@ -298,6 +302,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
298
302
  ipAddress?: string | undefined;
299
303
  } | null;
300
304
  creatorAddress: string | null;
305
+ partnerId: string | null;
301
306
  oneClickBuyUrl: string | null;
302
307
  stripePaymentIntentId: string | null;
303
308
  permit: {
@@ -360,6 +365,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
360
365
  ipAddress?: string | undefined;
361
366
  } | null;
362
367
  creatorAddress: string | null;
368
+ partnerId: string | null;
363
369
  oneClickBuyUrl: string | null;
364
370
  stripePaymentIntentId: string | null;
365
371
  permit: {
@@ -431,6 +437,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
431
437
  ipAddress?: string | undefined;
432
438
  } | null;
433
439
  creatorAddress: string | null;
440
+ partnerId: string | null;
434
441
  oneClickBuyUrl: string | null;
435
442
  stripePaymentIntentId: string | null;
436
443
  permit: {
@@ -494,6 +501,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
494
501
  ipAddress?: string | undefined;
495
502
  } | null;
496
503
  creatorAddress: string | null;
504
+ partnerId: string | null;
497
505
  oneClickBuyUrl: string | null;
498
506
  stripePaymentIntentId: string | null;
499
507
  permit: {
@@ -557,6 +565,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
557
565
  ipAddress?: string | undefined;
558
566
  } | null;
559
567
  creatorAddress: string | null;
568
+ partnerId: string | null;
560
569
  oneClickBuyUrl: string | null;
561
570
  stripePaymentIntentId: string | null;
562
571
  permit: {
@@ -615,6 +624,7 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
615
624
  ipAddress?: string | undefined;
616
625
  } | null;
617
626
  creatorAddress: string | null;
627
+ partnerId: string | null;
618
628
  oneClickBuyUrl: string | null;
619
629
  stripePaymentIntentId: string | null;
620
630
  permit: {
@@ -65,6 +65,7 @@ export declare const anyspendService: {
65
65
  ipAddress?: string | undefined;
66
66
  } | null;
67
67
  creatorAddress: string | null;
68
+ partnerId: string | null;
68
69
  oneClickBuyUrl: string | null;
69
70
  stripePaymentIntentId: string | null;
70
71
  permit: {
@@ -136,6 +137,7 @@ export declare const anyspendService: {
136
137
  ipAddress?: string | undefined;
137
138
  } | null;
138
139
  creatorAddress: string | null;
140
+ partnerId: string | null;
139
141
  oneClickBuyUrl: string | null;
140
142
  stripePaymentIntentId: string | null;
141
143
  permit: {
@@ -199,6 +201,7 @@ export declare const anyspendService: {
199
201
  ipAddress?: string | undefined;
200
202
  } | null;
201
203
  creatorAddress: string | null;
204
+ partnerId: string | null;
202
205
  oneClickBuyUrl: string | null;
203
206
  stripePaymentIntentId: string | null;
204
207
  permit: {
@@ -262,6 +265,7 @@ export declare const anyspendService: {
262
265
  ipAddress?: string | undefined;
263
266
  } | null;
264
267
  creatorAddress: string | null;
268
+ partnerId: string | null;
265
269
  oneClickBuyUrl: string | null;
266
270
  stripePaymentIntentId: string | null;
267
271
  permit: {
@@ -320,6 +324,7 @@ export declare const anyspendService: {
320
324
  ipAddress?: string | undefined;
321
325
  } | null;
322
326
  creatorAddress: string | null;
327
+ partnerId: string | null;
323
328
  oneClickBuyUrl: string | null;
324
329
  stripePaymentIntentId: string | null;
325
330
  permit: {
@@ -52,6 +52,7 @@ export declare const zBaseOrder: z.ZodObject<{
52
52
  ipAddress?: string | undefined;
53
53
  }>>;
54
54
  creatorAddress: z.ZodNullable<z.ZodString>;
55
+ partnerId: z.ZodNullable<z.ZodString>;
55
56
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
56
57
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
57
58
  permit: z.ZodNullable<z.ZodObject<{
@@ -94,6 +95,7 @@ export declare const zBaseOrder: z.ZodObject<{
94
95
  ipAddress?: string | undefined;
95
96
  } | null;
96
97
  creatorAddress: string | null;
98
+ partnerId: string | null;
97
99
  oneClickBuyUrl: string | null;
98
100
  stripePaymentIntentId: string | null;
99
101
  permit: {
@@ -124,6 +126,7 @@ export declare const zBaseOrder: z.ZodObject<{
124
126
  ipAddress?: string | undefined;
125
127
  } | null;
126
128
  creatorAddress: string | null;
129
+ partnerId: string | null;
127
130
  oneClickBuyUrl: string | null;
128
131
  stripePaymentIntentId: string | null;
129
132
  permit: {
@@ -167,6 +170,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
167
170
  ipAddress?: string | undefined;
168
171
  }>>;
169
172
  creatorAddress: z.ZodNullable<z.ZodString>;
173
+ partnerId: z.ZodNullable<z.ZodString>;
170
174
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
171
175
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
172
176
  permit: z.ZodNullable<z.ZodObject<{
@@ -352,6 +356,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
352
356
  ipAddress?: string | undefined;
353
357
  } | null;
354
358
  creatorAddress: string | null;
359
+ partnerId: string | null;
355
360
  oneClickBuyUrl: string | null;
356
361
  stripePaymentIntentId: string | null;
357
362
  permit: {
@@ -409,6 +414,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
409
414
  ipAddress?: string | undefined;
410
415
  } | null;
411
416
  creatorAddress: string | null;
417
+ partnerId: string | null;
412
418
  oneClickBuyUrl: string | null;
413
419
  stripePaymentIntentId: string | null;
414
420
  permit: {
@@ -455,6 +461,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
455
461
  ipAddress?: string | undefined;
456
462
  }>>;
457
463
  creatorAddress: z.ZodNullable<z.ZodString>;
464
+ partnerId: z.ZodNullable<z.ZodString>;
458
465
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
459
466
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
460
467
  permit: z.ZodNullable<z.ZodObject<{
@@ -724,6 +731,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
724
731
  ipAddress?: string | undefined;
725
732
  } | null;
726
733
  creatorAddress: string | null;
734
+ partnerId: string | null;
727
735
  oneClickBuyUrl: string | null;
728
736
  stripePaymentIntentId: string | null;
729
737
  permit: {
@@ -795,6 +803,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
795
803
  ipAddress?: string | undefined;
796
804
  } | null;
797
805
  creatorAddress: string | null;
806
+ partnerId: string | null;
798
807
  oneClickBuyUrl: string | null;
799
808
  stripePaymentIntentId: string | null;
800
809
  permit: {
@@ -841,6 +850,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
841
850
  ipAddress?: string | undefined;
842
851
  }>>;
843
852
  creatorAddress: z.ZodNullable<z.ZodString>;
853
+ partnerId: z.ZodNullable<z.ZodString>;
844
854
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
845
855
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
846
856
  permit: z.ZodNullable<z.ZodObject<{
@@ -1060,6 +1070,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1060
1070
  ipAddress?: string | undefined;
1061
1071
  } | null;
1062
1072
  creatorAddress: string | null;
1073
+ partnerId: string | null;
1063
1074
  oneClickBuyUrl: string | null;
1064
1075
  stripePaymentIntentId: string | null;
1065
1076
  permit: {
@@ -1123,6 +1134,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1123
1134
  ipAddress?: string | undefined;
1124
1135
  } | null;
1125
1136
  creatorAddress: string | null;
1137
+ partnerId: string | null;
1126
1138
  oneClickBuyUrl: string | null;
1127
1139
  stripePaymentIntentId: string | null;
1128
1140
  permit: {
@@ -1169,6 +1181,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1169
1181
  ipAddress?: string | undefined;
1170
1182
  }>>;
1171
1183
  creatorAddress: z.ZodNullable<z.ZodString>;
1184
+ partnerId: z.ZodNullable<z.ZodString>;
1172
1185
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1173
1186
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1174
1187
  permit: z.ZodNullable<z.ZodObject<{
@@ -1388,6 +1401,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1388
1401
  ipAddress?: string | undefined;
1389
1402
  } | null;
1390
1403
  creatorAddress: string | null;
1404
+ partnerId: string | null;
1391
1405
  oneClickBuyUrl: string | null;
1392
1406
  stripePaymentIntentId: string | null;
1393
1407
  permit: {
@@ -1451,6 +1465,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1451
1465
  ipAddress?: string | undefined;
1452
1466
  } | null;
1453
1467
  creatorAddress: string | null;
1468
+ partnerId: string | null;
1454
1469
  oneClickBuyUrl: string | null;
1455
1470
  stripePaymentIntentId: string | null;
1456
1471
  permit: {
@@ -1497,6 +1512,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1497
1512
  ipAddress?: string | undefined;
1498
1513
  }>>;
1499
1514
  creatorAddress: z.ZodNullable<z.ZodString>;
1515
+ partnerId: z.ZodNullable<z.ZodString>;
1500
1516
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1501
1517
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1502
1518
  permit: z.ZodNullable<z.ZodObject<{
@@ -1692,6 +1708,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1692
1708
  ipAddress?: string | undefined;
1693
1709
  } | null;
1694
1710
  creatorAddress: string | null;
1711
+ partnerId: string | null;
1695
1712
  oneClickBuyUrl: string | null;
1696
1713
  stripePaymentIntentId: string | null;
1697
1714
  permit: {
@@ -1752,6 +1769,7 @@ export declare const zOrder: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1752
1769
  ipAddress?: string | undefined;
1753
1770
  } | null;
1754
1771
  creatorAddress: string | null;
1772
+ partnerId: string | null;
1755
1773
  oneClickBuyUrl: string | null;
1756
1774
  stripePaymentIntentId: string | null;
1757
1775
  permit: {