@b3dotfun/sdk 0.0.7-alpha.12 → 0.0.7-alpha.13
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/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
- package/dist/cjs/anyspend/services/anyspend.d.ts +5 -0
- package/dist/cjs/anyspend/types/onramp.d.ts +3 -0
- package/dist/cjs/anyspend/types/onramp.js +2 -1
- package/dist/cjs/anyspend/types/order.d.ts +30 -0
- package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +70 -0
- package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +45 -0
- package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +35 -0
- package/dist/cjs/anyspend/types/req-res/getQuote.d.ts +26 -0
- package/dist/cjs/anyspend/types/req-res/getQuote.js +3 -1
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
- package/dist/esm/anyspend/services/anyspend.d.ts +5 -0
- package/dist/esm/anyspend/types/onramp.d.ts +3 -0
- package/dist/esm/anyspend/types/onramp.js +2 -1
- package/dist/esm/anyspend/types/order.d.ts +30 -0
- package/dist/esm/anyspend/types/req-res/createOrder.d.ts +70 -0
- package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +45 -0
- package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +35 -0
- package/dist/esm/anyspend/types/req-res/getQuote.d.ts +26 -0
- package/dist/esm/anyspend/types/req-res/getQuote.js +3 -1
- package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +10 -0
- package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +10 -0
- package/dist/types/anyspend/services/anyspend.d.ts +5 -0
- package/dist/types/anyspend/types/onramp.d.ts +3 -0
- package/dist/types/anyspend/types/order.d.ts +30 -0
- package/dist/types/anyspend/types/req-res/createOrder.d.ts +70 -0
- package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +45 -0
- package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +35 -0
- package/dist/types/anyspend/types/req-res/getQuote.d.ts +26 -0
- package/package.json +1 -1
- package/src/anyspend/react/components/AnySpend.tsx +1 -0
- package/src/anyspend/types/onramp.ts +2 -1
- package/src/anyspend/types/req-res/getQuote.ts +3 -1
|
@@ -39,18 +39,21 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
39
39
|
paymentMethod: z.ZodString;
|
|
40
40
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
41
41
|
redirectUrl: z.ZodString;
|
|
42
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
42
43
|
}, "strip", z.ZodTypeAny, {
|
|
43
44
|
country: string;
|
|
44
45
|
vendor: import("..").OnrampVendor;
|
|
45
46
|
paymentMethod: string;
|
|
46
47
|
redirectUrl: string;
|
|
47
48
|
ipAddress?: string | undefined;
|
|
49
|
+
stripeAmountInCents?: number | undefined;
|
|
48
50
|
}, {
|
|
49
51
|
country: string;
|
|
50
52
|
vendor: import("..").OnrampVendor;
|
|
51
53
|
paymentMethod: string;
|
|
52
54
|
redirectUrl: string;
|
|
53
55
|
ipAddress?: string | undefined;
|
|
56
|
+
stripeAmountInCents?: number | undefined;
|
|
54
57
|
}>>;
|
|
55
58
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
56
59
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -237,6 +240,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
237
240
|
paymentMethod: string;
|
|
238
241
|
redirectUrl: string;
|
|
239
242
|
ipAddress?: string | undefined;
|
|
243
|
+
stripeAmountInCents?: number | undefined;
|
|
240
244
|
} | null;
|
|
241
245
|
creatorAddress: string | null;
|
|
242
246
|
partnerId: string | null;
|
|
@@ -295,6 +299,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
295
299
|
paymentMethod: string;
|
|
296
300
|
redirectUrl: string;
|
|
297
301
|
ipAddress?: string | undefined;
|
|
302
|
+
stripeAmountInCents?: number | undefined;
|
|
298
303
|
} | null;
|
|
299
304
|
creatorAddress: string | null;
|
|
300
305
|
partnerId: string | null;
|
|
@@ -330,18 +335,21 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
330
335
|
paymentMethod: z.ZodString;
|
|
331
336
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
332
337
|
redirectUrl: z.ZodString;
|
|
338
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
333
339
|
}, "strip", z.ZodTypeAny, {
|
|
334
340
|
country: string;
|
|
335
341
|
vendor: import("..").OnrampVendor;
|
|
336
342
|
paymentMethod: string;
|
|
337
343
|
redirectUrl: string;
|
|
338
344
|
ipAddress?: string | undefined;
|
|
345
|
+
stripeAmountInCents?: number | undefined;
|
|
339
346
|
}, {
|
|
340
347
|
country: string;
|
|
341
348
|
vendor: import("..").OnrampVendor;
|
|
342
349
|
paymentMethod: string;
|
|
343
350
|
redirectUrl: string;
|
|
344
351
|
ipAddress?: string | undefined;
|
|
352
|
+
stripeAmountInCents?: number | undefined;
|
|
345
353
|
}>>;
|
|
346
354
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
347
355
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -618,6 +626,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
618
626
|
paymentMethod: string;
|
|
619
627
|
redirectUrl: string;
|
|
620
628
|
ipAddress?: string | undefined;
|
|
629
|
+
stripeAmountInCents?: number | undefined;
|
|
621
630
|
} | null;
|
|
622
631
|
creatorAddress: string | null;
|
|
623
632
|
partnerId: string | null;
|
|
@@ -692,6 +701,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
692
701
|
paymentMethod: string;
|
|
693
702
|
redirectUrl: string;
|
|
694
703
|
ipAddress?: string | undefined;
|
|
704
|
+
stripeAmountInCents?: number | undefined;
|
|
695
705
|
} | null;
|
|
696
706
|
creatorAddress: string | null;
|
|
697
707
|
partnerId: string | null;
|
|
@@ -729,18 +739,21 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
729
739
|
paymentMethod: z.ZodString;
|
|
730
740
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
731
741
|
redirectUrl: z.ZodString;
|
|
742
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
732
743
|
}, "strip", z.ZodTypeAny, {
|
|
733
744
|
country: string;
|
|
734
745
|
vendor: import("..").OnrampVendor;
|
|
735
746
|
paymentMethod: string;
|
|
736
747
|
redirectUrl: string;
|
|
737
748
|
ipAddress?: string | undefined;
|
|
749
|
+
stripeAmountInCents?: number | undefined;
|
|
738
750
|
}, {
|
|
739
751
|
country: string;
|
|
740
752
|
vendor: import("..").OnrampVendor;
|
|
741
753
|
paymentMethod: string;
|
|
742
754
|
redirectUrl: string;
|
|
743
755
|
ipAddress?: string | undefined;
|
|
756
|
+
stripeAmountInCents?: number | undefined;
|
|
744
757
|
}>>;
|
|
745
758
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
746
759
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -961,6 +974,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
961
974
|
paymentMethod: string;
|
|
962
975
|
redirectUrl: string;
|
|
963
976
|
ipAddress?: string | undefined;
|
|
977
|
+
stripeAmountInCents?: number | undefined;
|
|
964
978
|
} | null;
|
|
965
979
|
creatorAddress: string | null;
|
|
966
980
|
partnerId: string | null;
|
|
@@ -1025,6 +1039,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1025
1039
|
paymentMethod: string;
|
|
1026
1040
|
redirectUrl: string;
|
|
1027
1041
|
ipAddress?: string | undefined;
|
|
1042
|
+
stripeAmountInCents?: number | undefined;
|
|
1028
1043
|
} | null;
|
|
1029
1044
|
creatorAddress: string | null;
|
|
1030
1045
|
partnerId: string | null;
|
|
@@ -1060,18 +1075,21 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1060
1075
|
paymentMethod: z.ZodString;
|
|
1061
1076
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
1062
1077
|
redirectUrl: z.ZodString;
|
|
1078
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
1063
1079
|
}, "strip", z.ZodTypeAny, {
|
|
1064
1080
|
country: string;
|
|
1065
1081
|
vendor: import("..").OnrampVendor;
|
|
1066
1082
|
paymentMethod: string;
|
|
1067
1083
|
redirectUrl: string;
|
|
1068
1084
|
ipAddress?: string | undefined;
|
|
1085
|
+
stripeAmountInCents?: number | undefined;
|
|
1069
1086
|
}, {
|
|
1070
1087
|
country: string;
|
|
1071
1088
|
vendor: import("..").OnrampVendor;
|
|
1072
1089
|
paymentMethod: string;
|
|
1073
1090
|
redirectUrl: string;
|
|
1074
1091
|
ipAddress?: string | undefined;
|
|
1092
|
+
stripeAmountInCents?: number | undefined;
|
|
1075
1093
|
}>>;
|
|
1076
1094
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
1077
1095
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -1292,6 +1310,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1292
1310
|
paymentMethod: string;
|
|
1293
1311
|
redirectUrl: string;
|
|
1294
1312
|
ipAddress?: string | undefined;
|
|
1313
|
+
stripeAmountInCents?: number | undefined;
|
|
1295
1314
|
} | null;
|
|
1296
1315
|
creatorAddress: string | null;
|
|
1297
1316
|
partnerId: string | null;
|
|
@@ -1356,6 +1375,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1356
1375
|
paymentMethod: string;
|
|
1357
1376
|
redirectUrl: string;
|
|
1358
1377
|
ipAddress?: string | undefined;
|
|
1378
|
+
stripeAmountInCents?: number | undefined;
|
|
1359
1379
|
} | null;
|
|
1360
1380
|
creatorAddress: string | null;
|
|
1361
1381
|
partnerId: string | null;
|
|
@@ -1391,18 +1411,21 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1391
1411
|
paymentMethod: z.ZodString;
|
|
1392
1412
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
1393
1413
|
redirectUrl: z.ZodString;
|
|
1414
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
1394
1415
|
}, "strip", z.ZodTypeAny, {
|
|
1395
1416
|
country: string;
|
|
1396
1417
|
vendor: import("..").OnrampVendor;
|
|
1397
1418
|
paymentMethod: string;
|
|
1398
1419
|
redirectUrl: string;
|
|
1399
1420
|
ipAddress?: string | undefined;
|
|
1421
|
+
stripeAmountInCents?: number | undefined;
|
|
1400
1422
|
}, {
|
|
1401
1423
|
country: string;
|
|
1402
1424
|
vendor: import("..").OnrampVendor;
|
|
1403
1425
|
paymentMethod: string;
|
|
1404
1426
|
redirectUrl: string;
|
|
1405
1427
|
ipAddress?: string | undefined;
|
|
1428
|
+
stripeAmountInCents?: number | undefined;
|
|
1406
1429
|
}>>;
|
|
1407
1430
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
1408
1431
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -1599,6 +1622,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1599
1622
|
paymentMethod: string;
|
|
1600
1623
|
redirectUrl: string;
|
|
1601
1624
|
ipAddress?: string | undefined;
|
|
1625
|
+
stripeAmountInCents?: number | undefined;
|
|
1602
1626
|
} | null;
|
|
1603
1627
|
creatorAddress: string | null;
|
|
1604
1628
|
partnerId: string | null;
|
|
@@ -1660,6 +1684,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1660
1684
|
paymentMethod: string;
|
|
1661
1685
|
redirectUrl: string;
|
|
1662
1686
|
ipAddress?: string | undefined;
|
|
1687
|
+
stripeAmountInCents?: number | undefined;
|
|
1663
1688
|
} | null;
|
|
1664
1689
|
creatorAddress: string | null;
|
|
1665
1690
|
partnerId: string | null;
|
|
@@ -1801,6 +1826,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1801
1826
|
paymentMethod: string;
|
|
1802
1827
|
redirectUrl: string;
|
|
1803
1828
|
ipAddress?: string | undefined;
|
|
1829
|
+
stripeAmountInCents?: number | undefined;
|
|
1804
1830
|
} | null;
|
|
1805
1831
|
creatorAddress: string | null;
|
|
1806
1832
|
partnerId: string | null;
|
|
@@ -1873,6 +1899,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1873
1899
|
paymentMethod: string;
|
|
1874
1900
|
redirectUrl: string;
|
|
1875
1901
|
ipAddress?: string | undefined;
|
|
1902
|
+
stripeAmountInCents?: number | undefined;
|
|
1876
1903
|
} | null;
|
|
1877
1904
|
creatorAddress: string | null;
|
|
1878
1905
|
partnerId: string | null;
|
|
@@ -1939,6 +1966,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1939
1966
|
paymentMethod: string;
|
|
1940
1967
|
redirectUrl: string;
|
|
1941
1968
|
ipAddress?: string | undefined;
|
|
1969
|
+
stripeAmountInCents?: number | undefined;
|
|
1942
1970
|
} | null;
|
|
1943
1971
|
creatorAddress: string | null;
|
|
1944
1972
|
partnerId: string | null;
|
|
@@ -2003,6 +2031,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2003
2031
|
paymentMethod: string;
|
|
2004
2032
|
redirectUrl: string;
|
|
2005
2033
|
ipAddress?: string | undefined;
|
|
2034
|
+
stripeAmountInCents?: number | undefined;
|
|
2006
2035
|
} | null;
|
|
2007
2036
|
creatorAddress: string | null;
|
|
2008
2037
|
partnerId: string | null;
|
|
@@ -2062,6 +2091,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2062
2091
|
paymentMethod: string;
|
|
2063
2092
|
redirectUrl: string;
|
|
2064
2093
|
ipAddress?: string | undefined;
|
|
2094
|
+
stripeAmountInCents?: number | undefined;
|
|
2065
2095
|
} | null;
|
|
2066
2096
|
creatorAddress: string | null;
|
|
2067
2097
|
partnerId: string | null;
|
|
@@ -2153,6 +2183,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2153
2183
|
paymentMethod: string;
|
|
2154
2184
|
redirectUrl: string;
|
|
2155
2185
|
ipAddress?: string | undefined;
|
|
2186
|
+
stripeAmountInCents?: number | undefined;
|
|
2156
2187
|
} | null;
|
|
2157
2188
|
creatorAddress: string | null;
|
|
2158
2189
|
partnerId: string | null;
|
|
@@ -2225,6 +2256,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2225
2256
|
paymentMethod: string;
|
|
2226
2257
|
redirectUrl: string;
|
|
2227
2258
|
ipAddress?: string | undefined;
|
|
2259
|
+
stripeAmountInCents?: number | undefined;
|
|
2228
2260
|
} | null;
|
|
2229
2261
|
creatorAddress: string | null;
|
|
2230
2262
|
partnerId: string | null;
|
|
@@ -2291,6 +2323,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2291
2323
|
paymentMethod: string;
|
|
2292
2324
|
redirectUrl: string;
|
|
2293
2325
|
ipAddress?: string | undefined;
|
|
2326
|
+
stripeAmountInCents?: number | undefined;
|
|
2294
2327
|
} | null;
|
|
2295
2328
|
creatorAddress: string | null;
|
|
2296
2329
|
partnerId: string | null;
|
|
@@ -2355,6 +2388,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2355
2388
|
paymentMethod: string;
|
|
2356
2389
|
redirectUrl: string;
|
|
2357
2390
|
ipAddress?: string | undefined;
|
|
2391
|
+
stripeAmountInCents?: number | undefined;
|
|
2358
2392
|
} | null;
|
|
2359
2393
|
creatorAddress: string | null;
|
|
2360
2394
|
partnerId: string | null;
|
|
@@ -2414,6 +2448,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2414
2448
|
paymentMethod: string;
|
|
2415
2449
|
redirectUrl: string;
|
|
2416
2450
|
ipAddress?: string | undefined;
|
|
2451
|
+
stripeAmountInCents?: number | undefined;
|
|
2417
2452
|
} | null;
|
|
2418
2453
|
creatorAddress: string | null;
|
|
2419
2454
|
partnerId: string | null;
|
|
@@ -2509,6 +2544,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2509
2544
|
paymentMethod: string;
|
|
2510
2545
|
redirectUrl: string;
|
|
2511
2546
|
ipAddress?: string | undefined;
|
|
2547
|
+
stripeAmountInCents?: number | undefined;
|
|
2512
2548
|
} | null;
|
|
2513
2549
|
creatorAddress: string | null;
|
|
2514
2550
|
partnerId: string | null;
|
|
@@ -2581,6 +2617,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2581
2617
|
paymentMethod: string;
|
|
2582
2618
|
redirectUrl: string;
|
|
2583
2619
|
ipAddress?: string | undefined;
|
|
2620
|
+
stripeAmountInCents?: number | undefined;
|
|
2584
2621
|
} | null;
|
|
2585
2622
|
creatorAddress: string | null;
|
|
2586
2623
|
partnerId: string | null;
|
|
@@ -2647,6 +2684,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2647
2684
|
paymentMethod: string;
|
|
2648
2685
|
redirectUrl: string;
|
|
2649
2686
|
ipAddress?: string | undefined;
|
|
2687
|
+
stripeAmountInCents?: number | undefined;
|
|
2650
2688
|
} | null;
|
|
2651
2689
|
creatorAddress: string | null;
|
|
2652
2690
|
partnerId: string | null;
|
|
@@ -2711,6 +2749,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2711
2749
|
paymentMethod: string;
|
|
2712
2750
|
redirectUrl: string;
|
|
2713
2751
|
ipAddress?: string | undefined;
|
|
2752
|
+
stripeAmountInCents?: number | undefined;
|
|
2714
2753
|
} | null;
|
|
2715
2754
|
creatorAddress: string | null;
|
|
2716
2755
|
partnerId: string | null;
|
|
@@ -2770,6 +2809,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2770
2809
|
paymentMethod: string;
|
|
2771
2810
|
redirectUrl: string;
|
|
2772
2811
|
ipAddress?: string | undefined;
|
|
2812
|
+
stripeAmountInCents?: number | undefined;
|
|
2773
2813
|
} | null;
|
|
2774
2814
|
creatorAddress: string | null;
|
|
2775
2815
|
partnerId: string | null;
|
|
@@ -2866,6 +2906,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2866
2906
|
paymentMethod: string;
|
|
2867
2907
|
redirectUrl: string;
|
|
2868
2908
|
ipAddress?: string | undefined;
|
|
2909
|
+
stripeAmountInCents?: number | undefined;
|
|
2869
2910
|
} | null;
|
|
2870
2911
|
creatorAddress: string | null;
|
|
2871
2912
|
partnerId: string | null;
|
|
@@ -2938,6 +2979,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2938
2979
|
paymentMethod: string;
|
|
2939
2980
|
redirectUrl: string;
|
|
2940
2981
|
ipAddress?: string | undefined;
|
|
2982
|
+
stripeAmountInCents?: number | undefined;
|
|
2941
2983
|
} | null;
|
|
2942
2984
|
creatorAddress: string | null;
|
|
2943
2985
|
partnerId: string | null;
|
|
@@ -3004,6 +3046,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
3004
3046
|
paymentMethod: string;
|
|
3005
3047
|
redirectUrl: string;
|
|
3006
3048
|
ipAddress?: string | undefined;
|
|
3049
|
+
stripeAmountInCents?: number | undefined;
|
|
3007
3050
|
} | null;
|
|
3008
3051
|
creatorAddress: string | null;
|
|
3009
3052
|
partnerId: string | null;
|
|
@@ -3068,6 +3111,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
3068
3111
|
paymentMethod: string;
|
|
3069
3112
|
redirectUrl: string;
|
|
3070
3113
|
ipAddress?: string | undefined;
|
|
3114
|
+
stripeAmountInCents?: number | undefined;
|
|
3071
3115
|
} | null;
|
|
3072
3116
|
creatorAddress: string | null;
|
|
3073
3117
|
partnerId: string | null;
|
|
@@ -3127,6 +3171,7 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
3127
3171
|
paymentMethod: string;
|
|
3128
3172
|
redirectUrl: string;
|
|
3129
3173
|
ipAddress?: string | undefined;
|
|
3174
|
+
stripeAmountInCents?: number | undefined;
|
|
3130
3175
|
} | null;
|
|
3131
3176
|
creatorAddress: string | null;
|
|
3132
3177
|
partnerId: string | null;
|
|
@@ -21,18 +21,21 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
21
21
|
paymentMethod: z.ZodString;
|
|
22
22
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
23
23
|
redirectUrl: z.ZodString;
|
|
24
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
24
25
|
}, "strip", z.ZodTypeAny, {
|
|
25
26
|
country: string;
|
|
26
27
|
vendor: import("..").OnrampVendor;
|
|
27
28
|
paymentMethod: string;
|
|
28
29
|
redirectUrl: string;
|
|
29
30
|
ipAddress?: string | undefined;
|
|
31
|
+
stripeAmountInCents?: number | undefined;
|
|
30
32
|
}, {
|
|
31
33
|
country: string;
|
|
32
34
|
vendor: import("..").OnrampVendor;
|
|
33
35
|
paymentMethod: string;
|
|
34
36
|
redirectUrl: string;
|
|
35
37
|
ipAddress?: string | undefined;
|
|
38
|
+
stripeAmountInCents?: number | undefined;
|
|
36
39
|
}>>;
|
|
37
40
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
38
41
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -219,6 +222,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
219
222
|
paymentMethod: string;
|
|
220
223
|
redirectUrl: string;
|
|
221
224
|
ipAddress?: string | undefined;
|
|
225
|
+
stripeAmountInCents?: number | undefined;
|
|
222
226
|
} | null;
|
|
223
227
|
creatorAddress: string | null;
|
|
224
228
|
partnerId: string | null;
|
|
@@ -277,6 +281,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
277
281
|
paymentMethod: string;
|
|
278
282
|
redirectUrl: string;
|
|
279
283
|
ipAddress?: string | undefined;
|
|
284
|
+
stripeAmountInCents?: number | undefined;
|
|
280
285
|
} | null;
|
|
281
286
|
creatorAddress: string | null;
|
|
282
287
|
partnerId: string | null;
|
|
@@ -312,18 +317,21 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
312
317
|
paymentMethod: z.ZodString;
|
|
313
318
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
314
319
|
redirectUrl: z.ZodString;
|
|
320
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
315
321
|
}, "strip", z.ZodTypeAny, {
|
|
316
322
|
country: string;
|
|
317
323
|
vendor: import("..").OnrampVendor;
|
|
318
324
|
paymentMethod: string;
|
|
319
325
|
redirectUrl: string;
|
|
320
326
|
ipAddress?: string | undefined;
|
|
327
|
+
stripeAmountInCents?: number | undefined;
|
|
321
328
|
}, {
|
|
322
329
|
country: string;
|
|
323
330
|
vendor: import("..").OnrampVendor;
|
|
324
331
|
paymentMethod: string;
|
|
325
332
|
redirectUrl: string;
|
|
326
333
|
ipAddress?: string | undefined;
|
|
334
|
+
stripeAmountInCents?: number | undefined;
|
|
327
335
|
}>>;
|
|
328
336
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
329
337
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -600,6 +608,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
600
608
|
paymentMethod: string;
|
|
601
609
|
redirectUrl: string;
|
|
602
610
|
ipAddress?: string | undefined;
|
|
611
|
+
stripeAmountInCents?: number | undefined;
|
|
603
612
|
} | null;
|
|
604
613
|
creatorAddress: string | null;
|
|
605
614
|
partnerId: string | null;
|
|
@@ -674,6 +683,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
674
683
|
paymentMethod: string;
|
|
675
684
|
redirectUrl: string;
|
|
676
685
|
ipAddress?: string | undefined;
|
|
686
|
+
stripeAmountInCents?: number | undefined;
|
|
677
687
|
} | null;
|
|
678
688
|
creatorAddress: string | null;
|
|
679
689
|
partnerId: string | null;
|
|
@@ -711,18 +721,21 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
711
721
|
paymentMethod: z.ZodString;
|
|
712
722
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
713
723
|
redirectUrl: z.ZodString;
|
|
724
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
714
725
|
}, "strip", z.ZodTypeAny, {
|
|
715
726
|
country: string;
|
|
716
727
|
vendor: import("..").OnrampVendor;
|
|
717
728
|
paymentMethod: string;
|
|
718
729
|
redirectUrl: string;
|
|
719
730
|
ipAddress?: string | undefined;
|
|
731
|
+
stripeAmountInCents?: number | undefined;
|
|
720
732
|
}, {
|
|
721
733
|
country: string;
|
|
722
734
|
vendor: import("..").OnrampVendor;
|
|
723
735
|
paymentMethod: string;
|
|
724
736
|
redirectUrl: string;
|
|
725
737
|
ipAddress?: string | undefined;
|
|
738
|
+
stripeAmountInCents?: number | undefined;
|
|
726
739
|
}>>;
|
|
727
740
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
728
741
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -943,6 +956,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
943
956
|
paymentMethod: string;
|
|
944
957
|
redirectUrl: string;
|
|
945
958
|
ipAddress?: string | undefined;
|
|
959
|
+
stripeAmountInCents?: number | undefined;
|
|
946
960
|
} | null;
|
|
947
961
|
creatorAddress: string | null;
|
|
948
962
|
partnerId: string | null;
|
|
@@ -1007,6 +1021,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1007
1021
|
paymentMethod: string;
|
|
1008
1022
|
redirectUrl: string;
|
|
1009
1023
|
ipAddress?: string | undefined;
|
|
1024
|
+
stripeAmountInCents?: number | undefined;
|
|
1010
1025
|
} | null;
|
|
1011
1026
|
creatorAddress: string | null;
|
|
1012
1027
|
partnerId: string | null;
|
|
@@ -1042,18 +1057,21 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1042
1057
|
paymentMethod: z.ZodString;
|
|
1043
1058
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
1044
1059
|
redirectUrl: z.ZodString;
|
|
1060
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
1045
1061
|
}, "strip", z.ZodTypeAny, {
|
|
1046
1062
|
country: string;
|
|
1047
1063
|
vendor: import("..").OnrampVendor;
|
|
1048
1064
|
paymentMethod: string;
|
|
1049
1065
|
redirectUrl: string;
|
|
1050
1066
|
ipAddress?: string | undefined;
|
|
1067
|
+
stripeAmountInCents?: number | undefined;
|
|
1051
1068
|
}, {
|
|
1052
1069
|
country: string;
|
|
1053
1070
|
vendor: import("..").OnrampVendor;
|
|
1054
1071
|
paymentMethod: string;
|
|
1055
1072
|
redirectUrl: string;
|
|
1056
1073
|
ipAddress?: string | undefined;
|
|
1074
|
+
stripeAmountInCents?: number | undefined;
|
|
1057
1075
|
}>>;
|
|
1058
1076
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
1059
1077
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -1274,6 +1292,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1274
1292
|
paymentMethod: string;
|
|
1275
1293
|
redirectUrl: string;
|
|
1276
1294
|
ipAddress?: string | undefined;
|
|
1295
|
+
stripeAmountInCents?: number | undefined;
|
|
1277
1296
|
} | null;
|
|
1278
1297
|
creatorAddress: string | null;
|
|
1279
1298
|
partnerId: string | null;
|
|
@@ -1338,6 +1357,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1338
1357
|
paymentMethod: string;
|
|
1339
1358
|
redirectUrl: string;
|
|
1340
1359
|
ipAddress?: string | undefined;
|
|
1360
|
+
stripeAmountInCents?: number | undefined;
|
|
1341
1361
|
} | null;
|
|
1342
1362
|
creatorAddress: string | null;
|
|
1343
1363
|
partnerId: string | null;
|
|
@@ -1373,18 +1393,21 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1373
1393
|
paymentMethod: z.ZodString;
|
|
1374
1394
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
1375
1395
|
redirectUrl: z.ZodString;
|
|
1396
|
+
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
1376
1397
|
}, "strip", z.ZodTypeAny, {
|
|
1377
1398
|
country: string;
|
|
1378
1399
|
vendor: import("..").OnrampVendor;
|
|
1379
1400
|
paymentMethod: string;
|
|
1380
1401
|
redirectUrl: string;
|
|
1381
1402
|
ipAddress?: string | undefined;
|
|
1403
|
+
stripeAmountInCents?: number | undefined;
|
|
1382
1404
|
}, {
|
|
1383
1405
|
country: string;
|
|
1384
1406
|
vendor: import("..").OnrampVendor;
|
|
1385
1407
|
paymentMethod: string;
|
|
1386
1408
|
redirectUrl: string;
|
|
1387
1409
|
ipAddress?: string | undefined;
|
|
1410
|
+
stripeAmountInCents?: number | undefined;
|
|
1388
1411
|
}>>;
|
|
1389
1412
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
1390
1413
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -1581,6 +1604,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1581
1604
|
paymentMethod: string;
|
|
1582
1605
|
redirectUrl: string;
|
|
1583
1606
|
ipAddress?: string | undefined;
|
|
1607
|
+
stripeAmountInCents?: number | undefined;
|
|
1584
1608
|
} | null;
|
|
1585
1609
|
creatorAddress: string | null;
|
|
1586
1610
|
partnerId: string | null;
|
|
@@ -1642,6 +1666,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1642
1666
|
paymentMethod: string;
|
|
1643
1667
|
redirectUrl: string;
|
|
1644
1668
|
ipAddress?: string | undefined;
|
|
1669
|
+
stripeAmountInCents?: number | undefined;
|
|
1645
1670
|
} | null;
|
|
1646
1671
|
creatorAddress: string | null;
|
|
1647
1672
|
partnerId: string | null;
|
|
@@ -1706,6 +1731,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1706
1731
|
paymentMethod: string;
|
|
1707
1732
|
redirectUrl: string;
|
|
1708
1733
|
ipAddress?: string | undefined;
|
|
1734
|
+
stripeAmountInCents?: number | undefined;
|
|
1709
1735
|
} | null;
|
|
1710
1736
|
creatorAddress: string | null;
|
|
1711
1737
|
partnerId: string | null;
|
|
@@ -1778,6 +1804,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1778
1804
|
paymentMethod: string;
|
|
1779
1805
|
redirectUrl: string;
|
|
1780
1806
|
ipAddress?: string | undefined;
|
|
1807
|
+
stripeAmountInCents?: number | undefined;
|
|
1781
1808
|
} | null;
|
|
1782
1809
|
creatorAddress: string | null;
|
|
1783
1810
|
partnerId: string | null;
|
|
@@ -1844,6 +1871,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1844
1871
|
paymentMethod: string;
|
|
1845
1872
|
redirectUrl: string;
|
|
1846
1873
|
ipAddress?: string | undefined;
|
|
1874
|
+
stripeAmountInCents?: number | undefined;
|
|
1847
1875
|
} | null;
|
|
1848
1876
|
creatorAddress: string | null;
|
|
1849
1877
|
partnerId: string | null;
|
|
@@ -1908,6 +1936,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1908
1936
|
paymentMethod: string;
|
|
1909
1937
|
redirectUrl: string;
|
|
1910
1938
|
ipAddress?: string | undefined;
|
|
1939
|
+
stripeAmountInCents?: number | undefined;
|
|
1911
1940
|
} | null;
|
|
1912
1941
|
creatorAddress: string | null;
|
|
1913
1942
|
partnerId: string | null;
|
|
@@ -1967,6 +1996,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
1967
1996
|
paymentMethod: string;
|
|
1968
1997
|
redirectUrl: string;
|
|
1969
1998
|
ipAddress?: string | undefined;
|
|
1999
|
+
stripeAmountInCents?: number | undefined;
|
|
1970
2000
|
} | null;
|
|
1971
2001
|
creatorAddress: string | null;
|
|
1972
2002
|
partnerId: string | null;
|
|
@@ -2032,6 +2062,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
2032
2062
|
paymentMethod: string;
|
|
2033
2063
|
redirectUrl: string;
|
|
2034
2064
|
ipAddress?: string | undefined;
|
|
2065
|
+
stripeAmountInCents?: number | undefined;
|
|
2035
2066
|
} | null;
|
|
2036
2067
|
creatorAddress: string | null;
|
|
2037
2068
|
partnerId: string | null;
|
|
@@ -2104,6 +2135,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
2104
2135
|
paymentMethod: string;
|
|
2105
2136
|
redirectUrl: string;
|
|
2106
2137
|
ipAddress?: string | undefined;
|
|
2138
|
+
stripeAmountInCents?: number | undefined;
|
|
2107
2139
|
} | null;
|
|
2108
2140
|
creatorAddress: string | null;
|
|
2109
2141
|
partnerId: string | null;
|
|
@@ -2170,6 +2202,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
2170
2202
|
paymentMethod: string;
|
|
2171
2203
|
redirectUrl: string;
|
|
2172
2204
|
ipAddress?: string | undefined;
|
|
2205
|
+
stripeAmountInCents?: number | undefined;
|
|
2173
2206
|
} | null;
|
|
2174
2207
|
creatorAddress: string | null;
|
|
2175
2208
|
partnerId: string | null;
|
|
@@ -2234,6 +2267,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
2234
2267
|
paymentMethod: string;
|
|
2235
2268
|
redirectUrl: string;
|
|
2236
2269
|
ipAddress?: string | undefined;
|
|
2270
|
+
stripeAmountInCents?: number | undefined;
|
|
2237
2271
|
} | null;
|
|
2238
2272
|
creatorAddress: string | null;
|
|
2239
2273
|
partnerId: string | null;
|
|
@@ -2293,6 +2327,7 @@ export declare const zGetOrderHistoryResponse: z.ZodObject<{
|
|
|
2293
2327
|
paymentMethod: string;
|
|
2294
2328
|
redirectUrl: string;
|
|
2295
2329
|
ipAddress?: string | undefined;
|
|
2330
|
+
stripeAmountInCents?: number | undefined;
|
|
2296
2331
|
} | null;
|
|
2297
2332
|
creatorAddress: string | null;
|
|
2298
2333
|
partnerId: string | null;
|