wapi-client 0.12.0-beta.1 → 0.12.0-beta.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/api/ws-client.cjs +1 -1
- package/dist/api/ws-client.js +1 -1
- package/dist/client.cjs +1 -1
- package/dist/client.js +1 -1
- package/dist/fns/consts.browser.cjs +5 -0
- package/dist/fns/consts.browser.js +5 -0
- package/dist/fns/consts.cjs +6 -0
- package/dist/fns/consts.d.ts +1 -0
- package/dist/fns/consts.js +5 -0
- package/dist/fns/create-deposit/create-deposit.browser.cjs +1 -0
- package/dist/fns/create-deposit/create-deposit.browser.js +2 -0
- package/dist/fns/create-deposit/create-deposit.cjs +1 -0
- package/dist/fns/create-deposit/create-deposit.js +2 -0
- package/dist/fns/create-deposit/create-deposit.schema.zod.browser.cjs +1 -1
- package/dist/fns/create-deposit/create-deposit.schema.zod.browser.js +5 -2
- package/dist/fns/create-deposit/create-deposit.schema.zod.cjs +1 -1
- package/dist/fns/create-deposit/create-deposit.schema.zod.d.ts +6 -6
- package/dist/fns/create-deposit/create-deposit.schema.zod.js +5 -2
- package/dist/fns/create-transfer/create-transfer.browser.cjs +1 -1
- package/dist/fns/create-transfer/create-transfer.browser.js +2 -1
- package/dist/fns/create-transfer/create-transfer.cjs +1 -1
- package/dist/fns/create-transfer/create-transfer.js +2 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.browser.cjs +1 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.browser.js +5 -2
- package/dist/fns/create-transfer/create-transfer.schema.zod.cjs +1 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.d.ts +30 -30
- package/dist/fns/create-transfer/create-transfer.schema.zod.js +5 -2
- package/dist/fns/create-transfer-group/create-transfer-group.schema.zod.d.ts +48 -48
- package/dist/fns/create-transfers/create-transfers.schema.zod.d.ts +15 -15
- package/dist/fns/create-withdrawal/create-withdrawal.browser.cjs +1 -0
- package/dist/fns/create-withdrawal/create-withdrawal.browser.js +2 -0
- package/dist/fns/create-withdrawal/create-withdrawal.cjs +1 -0
- package/dist/fns/create-withdrawal/create-withdrawal.js +2 -0
- package/dist/fns/create-withdrawal/create-withdrawal.schema.zod.browser.cjs +1 -1
- package/dist/fns/create-withdrawal/create-withdrawal.schema.zod.browser.js +5 -2
- package/dist/fns/create-withdrawal/create-withdrawal.schema.zod.cjs +1 -1
- package/dist/fns/create-withdrawal/create-withdrawal.schema.zod.d.ts +6 -6
- package/dist/fns/create-withdrawal/create-withdrawal.schema.zod.js +5 -2
- package/dist/fns/import-data/import-data.schema.zod.d.ts +186 -186
- package/dist/fns/index.d.ts +93 -93
- package/dist/lib/utils.browser.cjs +7 -0
- package/dist/lib/utils.browser.js +7 -0
- package/dist/lib/utils.cjs +8 -0
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.js +7 -0
- package/dist/types/index.d.ts +386 -384
- package/dist/wapi-client-web.iife.js +1 -1
- package/dist/wapi-client.iife.js +1 -1
- package/package.json +1 -1
|
@@ -103,13 +103,13 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
103
103
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
104
104
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
105
105
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
106
|
-
amount: z.ZodNumber
|
|
106
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
107
107
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
108
108
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
109
109
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110
110
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
111
111
|
type: "deposit";
|
|
112
|
-
amount: number;
|
|
112
|
+
amount: string | number;
|
|
113
113
|
wallet: string | number;
|
|
114
114
|
status?: "pending" | "finished" | undefined;
|
|
115
115
|
identifier?: string | undefined;
|
|
@@ -119,7 +119,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
119
119
|
latest_control_hash?: string | null | undefined;
|
|
120
120
|
}, {
|
|
121
121
|
type: "deposit";
|
|
122
|
-
amount: number;
|
|
122
|
+
amount: string | number;
|
|
123
123
|
wallet: string | number;
|
|
124
124
|
status?: "pending" | "finished" | undefined;
|
|
125
125
|
identifier?: string | undefined;
|
|
@@ -134,13 +134,13 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
134
134
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
135
135
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
136
136
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
137
|
-
amount: z.ZodNumber
|
|
137
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
138
138
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
139
139
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
140
140
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
141
141
|
to_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
142
142
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
143
|
-
amount: number;
|
|
143
|
+
amount: string | number;
|
|
144
144
|
from_wallet: string | number;
|
|
145
145
|
to_wallet: string | number;
|
|
146
146
|
type?: "transfer" | undefined;
|
|
@@ -151,7 +151,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
151
151
|
created_at?: string | undefined;
|
|
152
152
|
latest_control_hash?: string | null | undefined;
|
|
153
153
|
}, {
|
|
154
|
-
amount: number;
|
|
154
|
+
amount: string | number;
|
|
155
155
|
from_wallet: string | number;
|
|
156
156
|
to_wallet: string | number;
|
|
157
157
|
type?: "transfer" | undefined;
|
|
@@ -168,13 +168,13 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
168
168
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
169
169
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
170
170
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
171
|
-
amount: z.ZodNumber
|
|
171
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
172
172
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
173
173
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
174
174
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
175
175
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
176
176
|
type: "withdrawal";
|
|
177
|
-
amount: number;
|
|
177
|
+
amount: string | number;
|
|
178
178
|
wallet: string | number;
|
|
179
179
|
status?: "pending" | "finished" | undefined;
|
|
180
180
|
identifier?: string | undefined;
|
|
@@ -184,7 +184,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
184
184
|
latest_control_hash?: string | null | undefined;
|
|
185
185
|
}, {
|
|
186
186
|
type: "withdrawal";
|
|
187
|
-
amount: number;
|
|
187
|
+
amount: string | number;
|
|
188
188
|
wallet: string | number;
|
|
189
189
|
status?: "pending" | "finished" | undefined;
|
|
190
190
|
identifier?: string | undefined;
|
|
@@ -206,7 +206,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
206
206
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
207
207
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
208
208
|
children?: ({
|
|
209
|
-
amount: number;
|
|
209
|
+
amount: string | number;
|
|
210
210
|
from_wallet: string | number;
|
|
211
211
|
to_wallet: string | number;
|
|
212
212
|
type?: "transfer" | undefined;
|
|
@@ -218,7 +218,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
218
218
|
latest_control_hash?: string | null | undefined;
|
|
219
219
|
} | {
|
|
220
220
|
type: "deposit";
|
|
221
|
-
amount: number;
|
|
221
|
+
amount: string | number;
|
|
222
222
|
wallet: string | number;
|
|
223
223
|
status?: "pending" | "finished" | undefined;
|
|
224
224
|
identifier?: string | undefined;
|
|
@@ -228,7 +228,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
228
228
|
latest_control_hash?: string | null | undefined;
|
|
229
229
|
} | {
|
|
230
230
|
type: "withdrawal";
|
|
231
|
-
amount: number;
|
|
231
|
+
amount: string | number;
|
|
232
232
|
wallet: string | number;
|
|
233
233
|
status?: "pending" | "finished" | undefined;
|
|
234
234
|
identifier?: string | undefined;
|
|
@@ -246,7 +246,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
246
246
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
247
247
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
248
248
|
children?: ({
|
|
249
|
-
amount: number;
|
|
249
|
+
amount: string | number;
|
|
250
250
|
from_wallet: string | number;
|
|
251
251
|
to_wallet: string | number;
|
|
252
252
|
type?: "transfer" | undefined;
|
|
@@ -258,7 +258,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
258
258
|
latest_control_hash?: string | null | undefined;
|
|
259
259
|
} | {
|
|
260
260
|
type: "deposit";
|
|
261
|
-
amount: number;
|
|
261
|
+
amount: string | number;
|
|
262
262
|
wallet: string | number;
|
|
263
263
|
status?: "pending" | "finished" | undefined;
|
|
264
264
|
identifier?: string | undefined;
|
|
@@ -268,7 +268,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
268
268
|
latest_control_hash?: string | null | undefined;
|
|
269
269
|
} | {
|
|
270
270
|
type: "withdrawal";
|
|
271
|
-
amount: number;
|
|
271
|
+
amount: string | number;
|
|
272
272
|
wallet: string | number;
|
|
273
273
|
status?: "pending" | "finished" | undefined;
|
|
274
274
|
identifier?: string | undefined;
|
|
@@ -288,7 +288,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
288
288
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
289
289
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
290
290
|
children?: ({
|
|
291
|
-
amount: number;
|
|
291
|
+
amount: string | number;
|
|
292
292
|
from_wallet: string | number;
|
|
293
293
|
to_wallet: string | number;
|
|
294
294
|
type?: "transfer" | undefined;
|
|
@@ -300,7 +300,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
300
300
|
latest_control_hash?: string | null | undefined;
|
|
301
301
|
} | {
|
|
302
302
|
type: "deposit";
|
|
303
|
-
amount: number;
|
|
303
|
+
amount: string | number;
|
|
304
304
|
wallet: string | number;
|
|
305
305
|
status?: "pending" | "finished" | undefined;
|
|
306
306
|
identifier?: string | undefined;
|
|
@@ -310,7 +310,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
310
310
|
latest_control_hash?: string | null | undefined;
|
|
311
311
|
} | {
|
|
312
312
|
type: "withdrawal";
|
|
313
|
-
amount: number;
|
|
313
|
+
amount: string | number;
|
|
314
314
|
wallet: string | number;
|
|
315
315
|
status?: "pending" | "finished" | undefined;
|
|
316
316
|
identifier?: string | undefined;
|
|
@@ -331,7 +331,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
331
331
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
332
332
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
333
333
|
children?: ({
|
|
334
|
-
amount: number;
|
|
334
|
+
amount: string | number;
|
|
335
335
|
from_wallet: string | number;
|
|
336
336
|
to_wallet: string | number;
|
|
337
337
|
type?: "transfer" | undefined;
|
|
@@ -343,7 +343,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
343
343
|
latest_control_hash?: string | null | undefined;
|
|
344
344
|
} | {
|
|
345
345
|
type: "deposit";
|
|
346
|
-
amount: number;
|
|
346
|
+
amount: string | number;
|
|
347
347
|
wallet: string | number;
|
|
348
348
|
status?: "pending" | "finished" | undefined;
|
|
349
349
|
identifier?: string | undefined;
|
|
@@ -353,7 +353,7 @@ export declare const importTransferGroupSchema: z.ZodObject<{
|
|
|
353
353
|
latest_control_hash?: string | null | undefined;
|
|
354
354
|
} | {
|
|
355
355
|
type: "withdrawal";
|
|
356
|
-
amount: number;
|
|
356
|
+
amount: string | number;
|
|
357
357
|
wallet: string | number;
|
|
358
358
|
status?: "pending" | "finished" | undefined;
|
|
359
359
|
identifier?: string | undefined;
|
|
@@ -372,7 +372,7 @@ export declare const importTransferRegularSchema: z.ZodObject<z.objectUtil.exten
|
|
|
372
372
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
373
373
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
374
374
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
375
|
-
amount: z.ZodNumber
|
|
375
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
376
376
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
377
377
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
378
378
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -381,7 +381,7 @@ export declare const importTransferRegularSchema: z.ZodObject<z.objectUtil.exten
|
|
|
381
381
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
382
382
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
383
383
|
}>, "strip", z.ZodTypeAny, {
|
|
384
|
-
amount: number;
|
|
384
|
+
amount: string | number;
|
|
385
385
|
from_wallet: string | number;
|
|
386
386
|
to_wallet: string | number;
|
|
387
387
|
type?: "transfer" | undefined;
|
|
@@ -394,7 +394,7 @@ export declare const importTransferRegularSchema: z.ZodObject<z.objectUtil.exten
|
|
|
394
394
|
latest_control_hash?: string | null | undefined;
|
|
395
395
|
transfer_group?: string | number | undefined;
|
|
396
396
|
}, {
|
|
397
|
-
amount: number;
|
|
397
|
+
amount: string | number;
|
|
398
398
|
from_wallet: string | number;
|
|
399
399
|
to_wallet: string | number;
|
|
400
400
|
type?: "transfer" | undefined;
|
|
@@ -414,7 +414,7 @@ export declare const importTransferDepositSchema: z.ZodObject<z.objectUtil.exten
|
|
|
414
414
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
415
415
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
416
416
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
417
|
-
amount: z.ZodNumber
|
|
417
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
418
418
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
419
419
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
420
420
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -423,7 +423,7 @@ export declare const importTransferDepositSchema: z.ZodObject<z.objectUtil.exten
|
|
|
423
423
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
424
424
|
}>, "strip", z.ZodTypeAny, {
|
|
425
425
|
type: "deposit";
|
|
426
|
-
amount: number;
|
|
426
|
+
amount: string | number;
|
|
427
427
|
wallet: string | number;
|
|
428
428
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
429
429
|
identifier?: string | undefined;
|
|
@@ -435,7 +435,7 @@ export declare const importTransferDepositSchema: z.ZodObject<z.objectUtil.exten
|
|
|
435
435
|
transfer_group?: string | number | undefined;
|
|
436
436
|
}, {
|
|
437
437
|
type: "deposit";
|
|
438
|
-
amount: number;
|
|
438
|
+
amount: string | number;
|
|
439
439
|
wallet: string | number;
|
|
440
440
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
441
441
|
identifier?: string | undefined;
|
|
@@ -453,7 +453,7 @@ export declare const importTransferWithdrawalSchema: z.ZodObject<z.objectUtil.ex
|
|
|
453
453
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
454
454
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
455
455
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
456
|
-
amount: z.ZodNumber
|
|
456
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
457
457
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
458
458
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
459
459
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -462,7 +462,7 @@ export declare const importTransferWithdrawalSchema: z.ZodObject<z.objectUtil.ex
|
|
|
462
462
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
463
463
|
}>, "strip", z.ZodTypeAny, {
|
|
464
464
|
type: "withdrawal";
|
|
465
|
-
amount: number;
|
|
465
|
+
amount: string | number;
|
|
466
466
|
wallet: string | number;
|
|
467
467
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
468
468
|
identifier?: string | undefined;
|
|
@@ -474,7 +474,7 @@ export declare const importTransferWithdrawalSchema: z.ZodObject<z.objectUtil.ex
|
|
|
474
474
|
transfer_group?: string | number | undefined;
|
|
475
475
|
}, {
|
|
476
476
|
type: "withdrawal";
|
|
477
|
-
amount: number;
|
|
477
|
+
amount: string | number;
|
|
478
478
|
wallet: string | number;
|
|
479
479
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
480
480
|
identifier?: string | undefined;
|
|
@@ -492,7 +492,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
492
492
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
493
493
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
494
494
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
495
|
-
amount: z.ZodNumber
|
|
495
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
496
496
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
497
497
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
498
498
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -501,7 +501,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
501
501
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
502
502
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
503
503
|
}>, "strip", z.ZodTypeAny, {
|
|
504
|
-
amount: number;
|
|
504
|
+
amount: string | number;
|
|
505
505
|
from_wallet: string | number;
|
|
506
506
|
to_wallet: string | number;
|
|
507
507
|
type?: "transfer" | undefined;
|
|
@@ -514,7 +514,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
514
514
|
latest_control_hash?: string | null | undefined;
|
|
515
515
|
transfer_group?: string | number | undefined;
|
|
516
516
|
}, {
|
|
517
|
-
amount: number;
|
|
517
|
+
amount: string | number;
|
|
518
518
|
from_wallet: string | number;
|
|
519
519
|
to_wallet: string | number;
|
|
520
520
|
type?: "transfer" | undefined;
|
|
@@ -533,7 +533,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
533
533
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
534
534
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
535
535
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
536
|
-
amount: z.ZodNumber
|
|
536
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
537
537
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
538
538
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
539
539
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -542,7 +542,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
542
542
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
543
543
|
}>, "strip", z.ZodTypeAny, {
|
|
544
544
|
type: "deposit";
|
|
545
|
-
amount: number;
|
|
545
|
+
amount: string | number;
|
|
546
546
|
wallet: string | number;
|
|
547
547
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
548
548
|
identifier?: string | undefined;
|
|
@@ -554,7 +554,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
554
554
|
transfer_group?: string | number | undefined;
|
|
555
555
|
}, {
|
|
556
556
|
type: "deposit";
|
|
557
|
-
amount: number;
|
|
557
|
+
amount: string | number;
|
|
558
558
|
wallet: string | number;
|
|
559
559
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
560
560
|
identifier?: string | undefined;
|
|
@@ -571,7 +571,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
571
571
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
572
572
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
573
573
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
574
|
-
amount: z.ZodNumber
|
|
574
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
575
575
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
576
576
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
577
577
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -580,7 +580,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
580
580
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
581
581
|
}>, "strip", z.ZodTypeAny, {
|
|
582
582
|
type: "withdrawal";
|
|
583
|
-
amount: number;
|
|
583
|
+
amount: string | number;
|
|
584
584
|
wallet: string | number;
|
|
585
585
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
586
586
|
identifier?: string | undefined;
|
|
@@ -592,7 +592,7 @@ export declare const importTransferWildSchema: z.ZodUnion<[z.ZodObject<z.objectU
|
|
|
592
592
|
transfer_group?: string | number | undefined;
|
|
593
593
|
}, {
|
|
594
594
|
type: "withdrawal";
|
|
595
|
-
amount: number;
|
|
595
|
+
amount: string | number;
|
|
596
596
|
wallet: string | number;
|
|
597
597
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
598
598
|
identifier?: string | undefined;
|
|
@@ -612,7 +612,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
612
612
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
613
613
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
614
614
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
615
|
-
amount: z.ZodNumber
|
|
615
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
616
616
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
617
617
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
618
618
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -621,7 +621,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
621
621
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
622
622
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
623
623
|
}>, "strip", z.ZodTypeAny, {
|
|
624
|
-
amount: number;
|
|
624
|
+
amount: string | number;
|
|
625
625
|
from_wallet: string | number;
|
|
626
626
|
to_wallet: string | number;
|
|
627
627
|
type?: "transfer" | undefined;
|
|
@@ -634,7 +634,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
634
634
|
latest_control_hash?: string | null | undefined;
|
|
635
635
|
transfer_group?: string | number | undefined;
|
|
636
636
|
}, {
|
|
637
|
-
amount: number;
|
|
637
|
+
amount: string | number;
|
|
638
638
|
from_wallet: string | number;
|
|
639
639
|
to_wallet: string | number;
|
|
640
640
|
type?: "transfer" | undefined;
|
|
@@ -653,7 +653,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
653
653
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
654
654
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
655
655
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
656
|
-
amount: z.ZodNumber
|
|
656
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
657
657
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
658
658
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
659
659
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -662,7 +662,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
662
662
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
663
663
|
}>, "strip", z.ZodTypeAny, {
|
|
664
664
|
type: "deposit";
|
|
665
|
-
amount: number;
|
|
665
|
+
amount: string | number;
|
|
666
666
|
wallet: string | number;
|
|
667
667
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
668
668
|
identifier?: string | undefined;
|
|
@@ -674,7 +674,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
674
674
|
transfer_group?: string | number | undefined;
|
|
675
675
|
}, {
|
|
676
676
|
type: "deposit";
|
|
677
|
-
amount: number;
|
|
677
|
+
amount: string | number;
|
|
678
678
|
wallet: string | number;
|
|
679
679
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
680
680
|
identifier?: string | undefined;
|
|
@@ -691,7 +691,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
691
691
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
692
692
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
693
693
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
694
|
-
amount: z.ZodNumber
|
|
694
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
695
695
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
696
696
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
697
697
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -700,7 +700,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
700
700
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
701
701
|
}>, "strip", z.ZodTypeAny, {
|
|
702
702
|
type: "withdrawal";
|
|
703
|
-
amount: number;
|
|
703
|
+
amount: string | number;
|
|
704
704
|
wallet: string | number;
|
|
705
705
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
706
706
|
identifier?: string | undefined;
|
|
@@ -712,7 +712,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
712
712
|
transfer_group?: string | number | undefined;
|
|
713
713
|
}, {
|
|
714
714
|
type: "withdrawal";
|
|
715
|
-
amount: number;
|
|
715
|
+
amount: string | number;
|
|
716
716
|
wallet: string | number;
|
|
717
717
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
718
718
|
identifier?: string | undefined;
|
|
@@ -725,7 +725,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
725
725
|
}>]>;
|
|
726
726
|
}, "strip", z.ZodTypeAny, {
|
|
727
727
|
data: {
|
|
728
|
-
amount: number;
|
|
728
|
+
amount: string | number;
|
|
729
729
|
from_wallet: string | number;
|
|
730
730
|
to_wallet: string | number;
|
|
731
731
|
type?: "transfer" | undefined;
|
|
@@ -739,7 +739,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
739
739
|
transfer_group?: string | number | undefined;
|
|
740
740
|
} | {
|
|
741
741
|
type: "deposit";
|
|
742
|
-
amount: number;
|
|
742
|
+
amount: string | number;
|
|
743
743
|
wallet: string | number;
|
|
744
744
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
745
745
|
identifier?: string | undefined;
|
|
@@ -751,7 +751,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
751
751
|
transfer_group?: string | number | undefined;
|
|
752
752
|
} | {
|
|
753
753
|
type: "withdrawal";
|
|
754
|
-
amount: number;
|
|
754
|
+
amount: string | number;
|
|
755
755
|
wallet: string | number;
|
|
756
756
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
757
757
|
identifier?: string | undefined;
|
|
@@ -765,7 +765,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
765
765
|
target: "transfer";
|
|
766
766
|
}, {
|
|
767
767
|
data: {
|
|
768
|
-
amount: number;
|
|
768
|
+
amount: string | number;
|
|
769
769
|
from_wallet: string | number;
|
|
770
770
|
to_wallet: string | number;
|
|
771
771
|
type?: "transfer" | undefined;
|
|
@@ -779,7 +779,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
779
779
|
transfer_group?: string | number | undefined;
|
|
780
780
|
} | {
|
|
781
781
|
type: "deposit";
|
|
782
|
-
amount: number;
|
|
782
|
+
amount: string | number;
|
|
783
783
|
wallet: string | number;
|
|
784
784
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
785
785
|
identifier?: string | undefined;
|
|
@@ -791,7 +791,7 @@ export declare const importTransferSchema: z.ZodObject<{
|
|
|
791
791
|
transfer_group?: string | number | undefined;
|
|
792
792
|
} | {
|
|
793
793
|
type: "withdrawal";
|
|
794
|
-
amount: number;
|
|
794
|
+
amount: string | number;
|
|
795
795
|
wallet: string | number;
|
|
796
796
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
797
797
|
identifier?: string | undefined;
|
|
@@ -1048,13 +1048,13 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1048
1048
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1049
1049
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1050
1050
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1051
|
-
amount: z.ZodNumber
|
|
1051
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1052
1052
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1053
1053
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1054
1054
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1055
1055
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1056
1056
|
type: "deposit";
|
|
1057
|
-
amount: number;
|
|
1057
|
+
amount: string | number;
|
|
1058
1058
|
wallet: string | number;
|
|
1059
1059
|
status?: "pending" | "finished" | undefined;
|
|
1060
1060
|
identifier?: string | undefined;
|
|
@@ -1064,7 +1064,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1064
1064
|
latest_control_hash?: string | null | undefined;
|
|
1065
1065
|
}, {
|
|
1066
1066
|
type: "deposit";
|
|
1067
|
-
amount: number;
|
|
1067
|
+
amount: string | number;
|
|
1068
1068
|
wallet: string | number;
|
|
1069
1069
|
status?: "pending" | "finished" | undefined;
|
|
1070
1070
|
identifier?: string | undefined;
|
|
@@ -1079,13 +1079,13 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1079
1079
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1080
1080
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1081
1081
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1082
|
-
amount: z.ZodNumber
|
|
1082
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1083
1083
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1084
1084
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1085
1085
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1086
1086
|
to_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1087
1087
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1088
|
-
amount: number;
|
|
1088
|
+
amount: string | number;
|
|
1089
1089
|
from_wallet: string | number;
|
|
1090
1090
|
to_wallet: string | number;
|
|
1091
1091
|
type?: "transfer" | undefined;
|
|
@@ -1096,7 +1096,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1096
1096
|
created_at?: string | undefined;
|
|
1097
1097
|
latest_control_hash?: string | null | undefined;
|
|
1098
1098
|
}, {
|
|
1099
|
-
amount: number;
|
|
1099
|
+
amount: string | number;
|
|
1100
1100
|
from_wallet: string | number;
|
|
1101
1101
|
to_wallet: string | number;
|
|
1102
1102
|
type?: "transfer" | undefined;
|
|
@@ -1113,13 +1113,13 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1113
1113
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1114
1114
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1115
1115
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1116
|
-
amount: z.ZodNumber
|
|
1116
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1117
1117
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1118
1118
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1119
1119
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1120
1120
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1121
1121
|
type: "withdrawal";
|
|
1122
|
-
amount: number;
|
|
1122
|
+
amount: string | number;
|
|
1123
1123
|
wallet: string | number;
|
|
1124
1124
|
status?: "pending" | "finished" | undefined;
|
|
1125
1125
|
identifier?: string | undefined;
|
|
@@ -1129,7 +1129,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1129
1129
|
latest_control_hash?: string | null | undefined;
|
|
1130
1130
|
}, {
|
|
1131
1131
|
type: "withdrawal";
|
|
1132
|
-
amount: number;
|
|
1132
|
+
amount: string | number;
|
|
1133
1133
|
wallet: string | number;
|
|
1134
1134
|
status?: "pending" | "finished" | undefined;
|
|
1135
1135
|
identifier?: string | undefined;
|
|
@@ -1151,7 +1151,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1151
1151
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1152
1152
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1153
1153
|
children?: ({
|
|
1154
|
-
amount: number;
|
|
1154
|
+
amount: string | number;
|
|
1155
1155
|
from_wallet: string | number;
|
|
1156
1156
|
to_wallet: string | number;
|
|
1157
1157
|
type?: "transfer" | undefined;
|
|
@@ -1163,7 +1163,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1163
1163
|
latest_control_hash?: string | null | undefined;
|
|
1164
1164
|
} | {
|
|
1165
1165
|
type: "deposit";
|
|
1166
|
-
amount: number;
|
|
1166
|
+
amount: string | number;
|
|
1167
1167
|
wallet: string | number;
|
|
1168
1168
|
status?: "pending" | "finished" | undefined;
|
|
1169
1169
|
identifier?: string | undefined;
|
|
@@ -1173,7 +1173,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1173
1173
|
latest_control_hash?: string | null | undefined;
|
|
1174
1174
|
} | {
|
|
1175
1175
|
type: "withdrawal";
|
|
1176
|
-
amount: number;
|
|
1176
|
+
amount: string | number;
|
|
1177
1177
|
wallet: string | number;
|
|
1178
1178
|
status?: "pending" | "finished" | undefined;
|
|
1179
1179
|
identifier?: string | undefined;
|
|
@@ -1191,7 +1191,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1191
1191
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1192
1192
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1193
1193
|
children?: ({
|
|
1194
|
-
amount: number;
|
|
1194
|
+
amount: string | number;
|
|
1195
1195
|
from_wallet: string | number;
|
|
1196
1196
|
to_wallet: string | number;
|
|
1197
1197
|
type?: "transfer" | undefined;
|
|
@@ -1203,7 +1203,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1203
1203
|
latest_control_hash?: string | null | undefined;
|
|
1204
1204
|
} | {
|
|
1205
1205
|
type: "deposit";
|
|
1206
|
-
amount: number;
|
|
1206
|
+
amount: string | number;
|
|
1207
1207
|
wallet: string | number;
|
|
1208
1208
|
status?: "pending" | "finished" | undefined;
|
|
1209
1209
|
identifier?: string | undefined;
|
|
@@ -1213,7 +1213,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1213
1213
|
latest_control_hash?: string | null | undefined;
|
|
1214
1214
|
} | {
|
|
1215
1215
|
type: "withdrawal";
|
|
1216
|
-
amount: number;
|
|
1216
|
+
amount: string | number;
|
|
1217
1217
|
wallet: string | number;
|
|
1218
1218
|
status?: "pending" | "finished" | undefined;
|
|
1219
1219
|
identifier?: string | undefined;
|
|
@@ -1233,7 +1233,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1233
1233
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1234
1234
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1235
1235
|
children?: ({
|
|
1236
|
-
amount: number;
|
|
1236
|
+
amount: string | number;
|
|
1237
1237
|
from_wallet: string | number;
|
|
1238
1238
|
to_wallet: string | number;
|
|
1239
1239
|
type?: "transfer" | undefined;
|
|
@@ -1245,7 +1245,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1245
1245
|
latest_control_hash?: string | null | undefined;
|
|
1246
1246
|
} | {
|
|
1247
1247
|
type: "deposit";
|
|
1248
|
-
amount: number;
|
|
1248
|
+
amount: string | number;
|
|
1249
1249
|
wallet: string | number;
|
|
1250
1250
|
status?: "pending" | "finished" | undefined;
|
|
1251
1251
|
identifier?: string | undefined;
|
|
@@ -1255,7 +1255,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1255
1255
|
latest_control_hash?: string | null | undefined;
|
|
1256
1256
|
} | {
|
|
1257
1257
|
type: "withdrawal";
|
|
1258
|
-
amount: number;
|
|
1258
|
+
amount: string | number;
|
|
1259
1259
|
wallet: string | number;
|
|
1260
1260
|
status?: "pending" | "finished" | undefined;
|
|
1261
1261
|
identifier?: string | undefined;
|
|
@@ -1276,7 +1276,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1276
1276
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1277
1277
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1278
1278
|
children?: ({
|
|
1279
|
-
amount: number;
|
|
1279
|
+
amount: string | number;
|
|
1280
1280
|
from_wallet: string | number;
|
|
1281
1281
|
to_wallet: string | number;
|
|
1282
1282
|
type?: "transfer" | undefined;
|
|
@@ -1288,7 +1288,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1288
1288
|
latest_control_hash?: string | null | undefined;
|
|
1289
1289
|
} | {
|
|
1290
1290
|
type: "deposit";
|
|
1291
|
-
amount: number;
|
|
1291
|
+
amount: string | number;
|
|
1292
1292
|
wallet: string | number;
|
|
1293
1293
|
status?: "pending" | "finished" | undefined;
|
|
1294
1294
|
identifier?: string | undefined;
|
|
@@ -1298,7 +1298,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1298
1298
|
latest_control_hash?: string | null | undefined;
|
|
1299
1299
|
} | {
|
|
1300
1300
|
type: "withdrawal";
|
|
1301
|
-
amount: number;
|
|
1301
|
+
amount: string | number;
|
|
1302
1302
|
wallet: string | number;
|
|
1303
1303
|
status?: "pending" | "finished" | undefined;
|
|
1304
1304
|
identifier?: string | undefined;
|
|
@@ -1318,7 +1318,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1318
1318
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1319
1319
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1320
1320
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1321
|
-
amount: z.ZodNumber
|
|
1321
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1322
1322
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1323
1323
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1324
1324
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -1327,7 +1327,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1327
1327
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1328
1328
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
1329
1329
|
}>, "strip", z.ZodTypeAny, {
|
|
1330
|
-
amount: number;
|
|
1330
|
+
amount: string | number;
|
|
1331
1331
|
from_wallet: string | number;
|
|
1332
1332
|
to_wallet: string | number;
|
|
1333
1333
|
type?: "transfer" | undefined;
|
|
@@ -1340,7 +1340,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1340
1340
|
latest_control_hash?: string | null | undefined;
|
|
1341
1341
|
transfer_group?: string | number | undefined;
|
|
1342
1342
|
}, {
|
|
1343
|
-
amount: number;
|
|
1343
|
+
amount: string | number;
|
|
1344
1344
|
from_wallet: string | number;
|
|
1345
1345
|
to_wallet: string | number;
|
|
1346
1346
|
type?: "transfer" | undefined;
|
|
@@ -1359,7 +1359,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1359
1359
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1360
1360
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1361
1361
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1362
|
-
amount: z.ZodNumber
|
|
1362
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1363
1363
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1364
1364
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1365
1365
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -1368,7 +1368,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1368
1368
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
1369
1369
|
}>, "strip", z.ZodTypeAny, {
|
|
1370
1370
|
type: "deposit";
|
|
1371
|
-
amount: number;
|
|
1371
|
+
amount: string | number;
|
|
1372
1372
|
wallet: string | number;
|
|
1373
1373
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1374
1374
|
identifier?: string | undefined;
|
|
@@ -1380,7 +1380,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1380
1380
|
transfer_group?: string | number | undefined;
|
|
1381
1381
|
}, {
|
|
1382
1382
|
type: "deposit";
|
|
1383
|
-
amount: number;
|
|
1383
|
+
amount: string | number;
|
|
1384
1384
|
wallet: string | number;
|
|
1385
1385
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1386
1386
|
identifier?: string | undefined;
|
|
@@ -1397,7 +1397,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1397
1397
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1398
1398
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1399
1399
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1400
|
-
amount: z.ZodNumber
|
|
1400
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1401
1401
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1402
1402
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1403
1403
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -1406,7 +1406,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1406
1406
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
1407
1407
|
}>, "strip", z.ZodTypeAny, {
|
|
1408
1408
|
type: "withdrawal";
|
|
1409
|
-
amount: number;
|
|
1409
|
+
amount: string | number;
|
|
1410
1410
|
wallet: string | number;
|
|
1411
1411
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1412
1412
|
identifier?: string | undefined;
|
|
@@ -1418,7 +1418,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1418
1418
|
transfer_group?: string | number | undefined;
|
|
1419
1419
|
}, {
|
|
1420
1420
|
type: "withdrawal";
|
|
1421
|
-
amount: number;
|
|
1421
|
+
amount: string | number;
|
|
1422
1422
|
wallet: string | number;
|
|
1423
1423
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1424
1424
|
identifier?: string | undefined;
|
|
@@ -1431,7 +1431,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1431
1431
|
}>]>;
|
|
1432
1432
|
}, "strip", z.ZodTypeAny, {
|
|
1433
1433
|
data: {
|
|
1434
|
-
amount: number;
|
|
1434
|
+
amount: string | number;
|
|
1435
1435
|
from_wallet: string | number;
|
|
1436
1436
|
to_wallet: string | number;
|
|
1437
1437
|
type?: "transfer" | undefined;
|
|
@@ -1445,7 +1445,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1445
1445
|
transfer_group?: string | number | undefined;
|
|
1446
1446
|
} | {
|
|
1447
1447
|
type: "deposit";
|
|
1448
|
-
amount: number;
|
|
1448
|
+
amount: string | number;
|
|
1449
1449
|
wallet: string | number;
|
|
1450
1450
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1451
1451
|
identifier?: string | undefined;
|
|
@@ -1457,7 +1457,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1457
1457
|
transfer_group?: string | number | undefined;
|
|
1458
1458
|
} | {
|
|
1459
1459
|
type: "withdrawal";
|
|
1460
|
-
amount: number;
|
|
1460
|
+
amount: string | number;
|
|
1461
1461
|
wallet: string | number;
|
|
1462
1462
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1463
1463
|
identifier?: string | undefined;
|
|
@@ -1471,7 +1471,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1471
1471
|
target: "transfer";
|
|
1472
1472
|
}, {
|
|
1473
1473
|
data: {
|
|
1474
|
-
amount: number;
|
|
1474
|
+
amount: string | number;
|
|
1475
1475
|
from_wallet: string | number;
|
|
1476
1476
|
to_wallet: string | number;
|
|
1477
1477
|
type?: "transfer" | undefined;
|
|
@@ -1485,7 +1485,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1485
1485
|
transfer_group?: string | number | undefined;
|
|
1486
1486
|
} | {
|
|
1487
1487
|
type: "deposit";
|
|
1488
|
-
amount: number;
|
|
1488
|
+
amount: string | number;
|
|
1489
1489
|
wallet: string | number;
|
|
1490
1490
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1491
1491
|
identifier?: string | undefined;
|
|
@@ -1497,7 +1497,7 @@ export declare const importDataFnStreamChunkSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1497
1497
|
transfer_group?: string | number | undefined;
|
|
1498
1498
|
} | {
|
|
1499
1499
|
type: "withdrawal";
|
|
1500
|
-
amount: number;
|
|
1500
|
+
amount: string | number;
|
|
1501
1501
|
wallet: string | number;
|
|
1502
1502
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1503
1503
|
identifier?: string | undefined;
|
|
@@ -1753,13 +1753,13 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1753
1753
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1754
1754
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1755
1755
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1756
|
-
amount: z.ZodNumber
|
|
1756
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1757
1757
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1758
1758
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1759
1759
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1760
1760
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1761
1761
|
type: "deposit";
|
|
1762
|
-
amount: number;
|
|
1762
|
+
amount: string | number;
|
|
1763
1763
|
wallet: string | number;
|
|
1764
1764
|
status?: "pending" | "finished" | undefined;
|
|
1765
1765
|
identifier?: string | undefined;
|
|
@@ -1769,7 +1769,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1769
1769
|
latest_control_hash?: string | null | undefined;
|
|
1770
1770
|
}, {
|
|
1771
1771
|
type: "deposit";
|
|
1772
|
-
amount: number;
|
|
1772
|
+
amount: string | number;
|
|
1773
1773
|
wallet: string | number;
|
|
1774
1774
|
status?: "pending" | "finished" | undefined;
|
|
1775
1775
|
identifier?: string | undefined;
|
|
@@ -1784,13 +1784,13 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1784
1784
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1785
1785
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1786
1786
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1787
|
-
amount: z.ZodNumber
|
|
1787
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1788
1788
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1789
1789
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1790
1790
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1791
1791
|
to_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1792
1792
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1793
|
-
amount: number;
|
|
1793
|
+
amount: string | number;
|
|
1794
1794
|
from_wallet: string | number;
|
|
1795
1795
|
to_wallet: string | number;
|
|
1796
1796
|
type?: "transfer" | undefined;
|
|
@@ -1801,7 +1801,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1801
1801
|
created_at?: string | undefined;
|
|
1802
1802
|
latest_control_hash?: string | null | undefined;
|
|
1803
1803
|
}, {
|
|
1804
|
-
amount: number;
|
|
1804
|
+
amount: string | number;
|
|
1805
1805
|
from_wallet: string | number;
|
|
1806
1806
|
to_wallet: string | number;
|
|
1807
1807
|
type?: "transfer" | undefined;
|
|
@@ -1818,13 +1818,13 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1818
1818
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
1819
1819
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1820
1820
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1821
|
-
amount: z.ZodNumber
|
|
1821
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1822
1822
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1823
1823
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
1824
1824
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1825
1825
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
1826
1826
|
type: "withdrawal";
|
|
1827
|
-
amount: number;
|
|
1827
|
+
amount: string | number;
|
|
1828
1828
|
wallet: string | number;
|
|
1829
1829
|
status?: "pending" | "finished" | undefined;
|
|
1830
1830
|
identifier?: string | undefined;
|
|
@@ -1834,7 +1834,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1834
1834
|
latest_control_hash?: string | null | undefined;
|
|
1835
1835
|
}, {
|
|
1836
1836
|
type: "withdrawal";
|
|
1837
|
-
amount: number;
|
|
1837
|
+
amount: string | number;
|
|
1838
1838
|
wallet: string | number;
|
|
1839
1839
|
status?: "pending" | "finished" | undefined;
|
|
1840
1840
|
identifier?: string | undefined;
|
|
@@ -1856,7 +1856,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1856
1856
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1857
1857
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1858
1858
|
children?: ({
|
|
1859
|
-
amount: number;
|
|
1859
|
+
amount: string | number;
|
|
1860
1860
|
from_wallet: string | number;
|
|
1861
1861
|
to_wallet: string | number;
|
|
1862
1862
|
type?: "transfer" | undefined;
|
|
@@ -1868,7 +1868,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1868
1868
|
latest_control_hash?: string | null | undefined;
|
|
1869
1869
|
} | {
|
|
1870
1870
|
type: "deposit";
|
|
1871
|
-
amount: number;
|
|
1871
|
+
amount: string | number;
|
|
1872
1872
|
wallet: string | number;
|
|
1873
1873
|
status?: "pending" | "finished" | undefined;
|
|
1874
1874
|
identifier?: string | undefined;
|
|
@@ -1878,7 +1878,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1878
1878
|
latest_control_hash?: string | null | undefined;
|
|
1879
1879
|
} | {
|
|
1880
1880
|
type: "withdrawal";
|
|
1881
|
-
amount: number;
|
|
1881
|
+
amount: string | number;
|
|
1882
1882
|
wallet: string | number;
|
|
1883
1883
|
status?: "pending" | "finished" | undefined;
|
|
1884
1884
|
identifier?: string | undefined;
|
|
@@ -1896,7 +1896,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1896
1896
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1897
1897
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1898
1898
|
children?: ({
|
|
1899
|
-
amount: number;
|
|
1899
|
+
amount: string | number;
|
|
1900
1900
|
from_wallet: string | number;
|
|
1901
1901
|
to_wallet: string | number;
|
|
1902
1902
|
type?: "transfer" | undefined;
|
|
@@ -1908,7 +1908,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1908
1908
|
latest_control_hash?: string | null | undefined;
|
|
1909
1909
|
} | {
|
|
1910
1910
|
type: "deposit";
|
|
1911
|
-
amount: number;
|
|
1911
|
+
amount: string | number;
|
|
1912
1912
|
wallet: string | number;
|
|
1913
1913
|
status?: "pending" | "finished" | undefined;
|
|
1914
1914
|
identifier?: string | undefined;
|
|
@@ -1918,7 +1918,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1918
1918
|
latest_control_hash?: string | null | undefined;
|
|
1919
1919
|
} | {
|
|
1920
1920
|
type: "withdrawal";
|
|
1921
|
-
amount: number;
|
|
1921
|
+
amount: string | number;
|
|
1922
1922
|
wallet: string | number;
|
|
1923
1923
|
status?: "pending" | "finished" | undefined;
|
|
1924
1924
|
identifier?: string | undefined;
|
|
@@ -1938,7 +1938,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1938
1938
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1939
1939
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1940
1940
|
children?: ({
|
|
1941
|
-
amount: number;
|
|
1941
|
+
amount: string | number;
|
|
1942
1942
|
from_wallet: string | number;
|
|
1943
1943
|
to_wallet: string | number;
|
|
1944
1944
|
type?: "transfer" | undefined;
|
|
@@ -1950,7 +1950,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1950
1950
|
latest_control_hash?: string | null | undefined;
|
|
1951
1951
|
} | {
|
|
1952
1952
|
type: "deposit";
|
|
1953
|
-
amount: number;
|
|
1953
|
+
amount: string | number;
|
|
1954
1954
|
wallet: string | number;
|
|
1955
1955
|
status?: "pending" | "finished" | undefined;
|
|
1956
1956
|
identifier?: string | undefined;
|
|
@@ -1960,7 +1960,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1960
1960
|
latest_control_hash?: string | null | undefined;
|
|
1961
1961
|
} | {
|
|
1962
1962
|
type: "withdrawal";
|
|
1963
|
-
amount: number;
|
|
1963
|
+
amount: string | number;
|
|
1964
1964
|
wallet: string | number;
|
|
1965
1965
|
status?: "pending" | "finished" | undefined;
|
|
1966
1966
|
identifier?: string | undefined;
|
|
@@ -1981,7 +1981,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1981
1981
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
1982
1982
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
1983
1983
|
children?: ({
|
|
1984
|
-
amount: number;
|
|
1984
|
+
amount: string | number;
|
|
1985
1985
|
from_wallet: string | number;
|
|
1986
1986
|
to_wallet: string | number;
|
|
1987
1987
|
type?: "transfer" | undefined;
|
|
@@ -1993,7 +1993,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
1993
1993
|
latest_control_hash?: string | null | undefined;
|
|
1994
1994
|
} | {
|
|
1995
1995
|
type: "deposit";
|
|
1996
|
-
amount: number;
|
|
1996
|
+
amount: string | number;
|
|
1997
1997
|
wallet: string | number;
|
|
1998
1998
|
status?: "pending" | "finished" | undefined;
|
|
1999
1999
|
identifier?: string | undefined;
|
|
@@ -2003,7 +2003,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2003
2003
|
latest_control_hash?: string | null | undefined;
|
|
2004
2004
|
} | {
|
|
2005
2005
|
type: "withdrawal";
|
|
2006
|
-
amount: number;
|
|
2006
|
+
amount: string | number;
|
|
2007
2007
|
wallet: string | number;
|
|
2008
2008
|
status?: "pending" | "finished" | undefined;
|
|
2009
2009
|
identifier?: string | undefined;
|
|
@@ -2023,7 +2023,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2023
2023
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2024
2024
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2025
2025
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2026
|
-
amount: z.ZodNumber
|
|
2026
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2027
2027
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2028
2028
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2029
2029
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -2032,7 +2032,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2032
2032
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2033
2033
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
2034
2034
|
}>, "strip", z.ZodTypeAny, {
|
|
2035
|
-
amount: number;
|
|
2035
|
+
amount: string | number;
|
|
2036
2036
|
from_wallet: string | number;
|
|
2037
2037
|
to_wallet: string | number;
|
|
2038
2038
|
type?: "transfer" | undefined;
|
|
@@ -2045,7 +2045,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2045
2045
|
latest_control_hash?: string | null | undefined;
|
|
2046
2046
|
transfer_group?: string | number | undefined;
|
|
2047
2047
|
}, {
|
|
2048
|
-
amount: number;
|
|
2048
|
+
amount: string | number;
|
|
2049
2049
|
from_wallet: string | number;
|
|
2050
2050
|
to_wallet: string | number;
|
|
2051
2051
|
type?: "transfer" | undefined;
|
|
@@ -2064,7 +2064,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2064
2064
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2065
2065
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2066
2066
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2067
|
-
amount: z.ZodNumber
|
|
2067
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2068
2068
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2069
2069
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2070
2070
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -2073,7 +2073,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2073
2073
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
2074
2074
|
}>, "strip", z.ZodTypeAny, {
|
|
2075
2075
|
type: "deposit";
|
|
2076
|
-
amount: number;
|
|
2076
|
+
amount: string | number;
|
|
2077
2077
|
wallet: string | number;
|
|
2078
2078
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2079
2079
|
identifier?: string | undefined;
|
|
@@ -2085,7 +2085,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2085
2085
|
transfer_group?: string | number | undefined;
|
|
2086
2086
|
}, {
|
|
2087
2087
|
type: "deposit";
|
|
2088
|
-
amount: number;
|
|
2088
|
+
amount: string | number;
|
|
2089
2089
|
wallet: string | number;
|
|
2090
2090
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2091
2091
|
identifier?: string | undefined;
|
|
@@ -2102,7 +2102,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2102
2102
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2103
2103
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2104
2104
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2105
|
-
amount: z.ZodNumber
|
|
2105
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2106
2106
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2107
2107
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2108
2108
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -2111,7 +2111,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2111
2111
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
2112
2112
|
}>, "strip", z.ZodTypeAny, {
|
|
2113
2113
|
type: "withdrawal";
|
|
2114
|
-
amount: number;
|
|
2114
|
+
amount: string | number;
|
|
2115
2115
|
wallet: string | number;
|
|
2116
2116
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2117
2117
|
identifier?: string | undefined;
|
|
@@ -2123,7 +2123,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2123
2123
|
transfer_group?: string | number | undefined;
|
|
2124
2124
|
}, {
|
|
2125
2125
|
type: "withdrawal";
|
|
2126
|
-
amount: number;
|
|
2126
|
+
amount: string | number;
|
|
2127
2127
|
wallet: string | number;
|
|
2128
2128
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2129
2129
|
identifier?: string | undefined;
|
|
@@ -2136,7 +2136,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2136
2136
|
}>]>;
|
|
2137
2137
|
}, "strip", z.ZodTypeAny, {
|
|
2138
2138
|
data: {
|
|
2139
|
-
amount: number;
|
|
2139
|
+
amount: string | number;
|
|
2140
2140
|
from_wallet: string | number;
|
|
2141
2141
|
to_wallet: string | number;
|
|
2142
2142
|
type?: "transfer" | undefined;
|
|
@@ -2150,7 +2150,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2150
2150
|
transfer_group?: string | number | undefined;
|
|
2151
2151
|
} | {
|
|
2152
2152
|
type: "deposit";
|
|
2153
|
-
amount: number;
|
|
2153
|
+
amount: string | number;
|
|
2154
2154
|
wallet: string | number;
|
|
2155
2155
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2156
2156
|
identifier?: string | undefined;
|
|
@@ -2162,7 +2162,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2162
2162
|
transfer_group?: string | number | undefined;
|
|
2163
2163
|
} | {
|
|
2164
2164
|
type: "withdrawal";
|
|
2165
|
-
amount: number;
|
|
2165
|
+
amount: string | number;
|
|
2166
2166
|
wallet: string | number;
|
|
2167
2167
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2168
2168
|
identifier?: string | undefined;
|
|
@@ -2176,7 +2176,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2176
2176
|
target: "transfer";
|
|
2177
2177
|
}, {
|
|
2178
2178
|
data: {
|
|
2179
|
-
amount: number;
|
|
2179
|
+
amount: string | number;
|
|
2180
2180
|
from_wallet: string | number;
|
|
2181
2181
|
to_wallet: string | number;
|
|
2182
2182
|
type?: "transfer" | undefined;
|
|
@@ -2190,7 +2190,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2190
2190
|
transfer_group?: string | number | undefined;
|
|
2191
2191
|
} | {
|
|
2192
2192
|
type: "deposit";
|
|
2193
|
-
amount: number;
|
|
2193
|
+
amount: string | number;
|
|
2194
2194
|
wallet: string | number;
|
|
2195
2195
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2196
2196
|
identifier?: string | undefined;
|
|
@@ -2202,7 +2202,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2202
2202
|
transfer_group?: string | number | undefined;
|
|
2203
2203
|
} | {
|
|
2204
2204
|
type: "withdrawal";
|
|
2205
|
-
amount: number;
|
|
2205
|
+
amount: string | number;
|
|
2206
2206
|
wallet: string | number;
|
|
2207
2207
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2208
2208
|
identifier?: string | undefined;
|
|
@@ -2394,7 +2394,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2394
2394
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2395
2395
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2396
2396
|
children?: ({
|
|
2397
|
-
amount: number;
|
|
2397
|
+
amount: string | number;
|
|
2398
2398
|
from_wallet: string | number;
|
|
2399
2399
|
to_wallet: string | number;
|
|
2400
2400
|
type?: "transfer" | undefined;
|
|
@@ -2406,7 +2406,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2406
2406
|
latest_control_hash?: string | null | undefined;
|
|
2407
2407
|
} | {
|
|
2408
2408
|
type: "deposit";
|
|
2409
|
-
amount: number;
|
|
2409
|
+
amount: string | number;
|
|
2410
2410
|
wallet: string | number;
|
|
2411
2411
|
status?: "pending" | "finished" | undefined;
|
|
2412
2412
|
identifier?: string | undefined;
|
|
@@ -2416,7 +2416,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2416
2416
|
latest_control_hash?: string | null | undefined;
|
|
2417
2417
|
} | {
|
|
2418
2418
|
type: "withdrawal";
|
|
2419
|
-
amount: number;
|
|
2419
|
+
amount: string | number;
|
|
2420
2420
|
wallet: string | number;
|
|
2421
2421
|
status?: "pending" | "finished" | undefined;
|
|
2422
2422
|
identifier?: string | undefined;
|
|
@@ -2429,7 +2429,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2429
2429
|
target: "transfer_group";
|
|
2430
2430
|
} | {
|
|
2431
2431
|
data: {
|
|
2432
|
-
amount: number;
|
|
2432
|
+
amount: string | number;
|
|
2433
2433
|
from_wallet: string | number;
|
|
2434
2434
|
to_wallet: string | number;
|
|
2435
2435
|
type?: "transfer" | undefined;
|
|
@@ -2443,7 +2443,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2443
2443
|
transfer_group?: string | number | undefined;
|
|
2444
2444
|
} | {
|
|
2445
2445
|
type: "deposit";
|
|
2446
|
-
amount: number;
|
|
2446
|
+
amount: string | number;
|
|
2447
2447
|
wallet: string | number;
|
|
2448
2448
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2449
2449
|
identifier?: string | undefined;
|
|
@@ -2455,7 +2455,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2455
2455
|
transfer_group?: string | number | undefined;
|
|
2456
2456
|
} | {
|
|
2457
2457
|
type: "withdrawal";
|
|
2458
|
-
amount: number;
|
|
2458
|
+
amount: string | number;
|
|
2459
2459
|
wallet: string | number;
|
|
2460
2460
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2461
2461
|
identifier?: string | undefined;
|
|
@@ -2527,7 +2527,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2527
2527
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2528
2528
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2529
2529
|
children?: ({
|
|
2530
|
-
amount: number;
|
|
2530
|
+
amount: string | number;
|
|
2531
2531
|
from_wallet: string | number;
|
|
2532
2532
|
to_wallet: string | number;
|
|
2533
2533
|
type?: "transfer" | undefined;
|
|
@@ -2539,7 +2539,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2539
2539
|
latest_control_hash?: string | null | undefined;
|
|
2540
2540
|
} | {
|
|
2541
2541
|
type: "deposit";
|
|
2542
|
-
amount: number;
|
|
2542
|
+
amount: string | number;
|
|
2543
2543
|
wallet: string | number;
|
|
2544
2544
|
status?: "pending" | "finished" | undefined;
|
|
2545
2545
|
identifier?: string | undefined;
|
|
@@ -2549,7 +2549,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2549
2549
|
latest_control_hash?: string | null | undefined;
|
|
2550
2550
|
} | {
|
|
2551
2551
|
type: "withdrawal";
|
|
2552
|
-
amount: number;
|
|
2552
|
+
amount: string | number;
|
|
2553
2553
|
wallet: string | number;
|
|
2554
2554
|
status?: "pending" | "finished" | undefined;
|
|
2555
2555
|
identifier?: string | undefined;
|
|
@@ -2562,7 +2562,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2562
2562
|
target: "transfer_group";
|
|
2563
2563
|
} | {
|
|
2564
2564
|
data: {
|
|
2565
|
-
amount: number;
|
|
2565
|
+
amount: string | number;
|
|
2566
2566
|
from_wallet: string | number;
|
|
2567
2567
|
to_wallet: string | number;
|
|
2568
2568
|
type?: "transfer" | undefined;
|
|
@@ -2576,7 +2576,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2576
2576
|
transfer_group?: string | number | undefined;
|
|
2577
2577
|
} | {
|
|
2578
2578
|
type: "deposit";
|
|
2579
|
-
amount: number;
|
|
2579
|
+
amount: string | number;
|
|
2580
2580
|
wallet: string | number;
|
|
2581
2581
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2582
2582
|
identifier?: string | undefined;
|
|
@@ -2588,7 +2588,7 @@ export declare const importDataInputSchema: z.ZodObject<{
|
|
|
2588
2588
|
transfer_group?: string | number | undefined;
|
|
2589
2589
|
} | {
|
|
2590
2590
|
type: "withdrawal";
|
|
2591
|
-
amount: number;
|
|
2591
|
+
amount: string | number;
|
|
2592
2592
|
wallet: string | number;
|
|
2593
2593
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2594
2594
|
identifier?: string | undefined;
|
|
@@ -2725,13 +2725,13 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2725
2725
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2726
2726
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2727
2727
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2728
|
-
amount: z.ZodNumber
|
|
2728
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2729
2729
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2730
2730
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2731
2731
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2732
2732
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
2733
2733
|
type: "deposit";
|
|
2734
|
-
amount: number;
|
|
2734
|
+
amount: string | number;
|
|
2735
2735
|
wallet: string | number;
|
|
2736
2736
|
status?: "pending" | "finished" | undefined;
|
|
2737
2737
|
identifier?: string | undefined;
|
|
@@ -2741,7 +2741,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2741
2741
|
latest_control_hash?: string | null | undefined;
|
|
2742
2742
|
}, {
|
|
2743
2743
|
type: "deposit";
|
|
2744
|
-
amount: number;
|
|
2744
|
+
amount: string | number;
|
|
2745
2745
|
wallet: string | number;
|
|
2746
2746
|
status?: "pending" | "finished" | undefined;
|
|
2747
2747
|
identifier?: string | undefined;
|
|
@@ -2756,13 +2756,13 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2756
2756
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2757
2757
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2758
2758
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2759
|
-
amount: z.ZodNumber
|
|
2759
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2760
2760
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2761
2761
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2762
2762
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2763
2763
|
to_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2764
2764
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
2765
|
-
amount: number;
|
|
2765
|
+
amount: string | number;
|
|
2766
2766
|
from_wallet: string | number;
|
|
2767
2767
|
to_wallet: string | number;
|
|
2768
2768
|
type?: "transfer" | undefined;
|
|
@@ -2773,7 +2773,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2773
2773
|
created_at?: string | undefined;
|
|
2774
2774
|
latest_control_hash?: string | null | undefined;
|
|
2775
2775
|
}, {
|
|
2776
|
-
amount: number;
|
|
2776
|
+
amount: string | number;
|
|
2777
2777
|
from_wallet: string | number;
|
|
2778
2778
|
to_wallet: string | number;
|
|
2779
2779
|
type?: "transfer" | undefined;
|
|
@@ -2790,13 +2790,13 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2790
2790
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2791
2791
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2792
2792
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2793
|
-
amount: z.ZodNumber
|
|
2793
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2794
2794
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2795
2795
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
2796
2796
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2797
2797
|
}, "transfer_group">, "strip", z.ZodTypeAny, {
|
|
2798
2798
|
type: "withdrawal";
|
|
2799
|
-
amount: number;
|
|
2799
|
+
amount: string | number;
|
|
2800
2800
|
wallet: string | number;
|
|
2801
2801
|
status?: "pending" | "finished" | undefined;
|
|
2802
2802
|
identifier?: string | undefined;
|
|
@@ -2806,7 +2806,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2806
2806
|
latest_control_hash?: string | null | undefined;
|
|
2807
2807
|
}, {
|
|
2808
2808
|
type: "withdrawal";
|
|
2809
|
-
amount: number;
|
|
2809
|
+
amount: string | number;
|
|
2810
2810
|
wallet: string | number;
|
|
2811
2811
|
status?: "pending" | "finished" | undefined;
|
|
2812
2812
|
identifier?: string | undefined;
|
|
@@ -2828,7 +2828,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2828
2828
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2829
2829
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2830
2830
|
children?: ({
|
|
2831
|
-
amount: number;
|
|
2831
|
+
amount: string | number;
|
|
2832
2832
|
from_wallet: string | number;
|
|
2833
2833
|
to_wallet: string | number;
|
|
2834
2834
|
type?: "transfer" | undefined;
|
|
@@ -2840,7 +2840,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2840
2840
|
latest_control_hash?: string | null | undefined;
|
|
2841
2841
|
} | {
|
|
2842
2842
|
type: "deposit";
|
|
2843
|
-
amount: number;
|
|
2843
|
+
amount: string | number;
|
|
2844
2844
|
wallet: string | number;
|
|
2845
2845
|
status?: "pending" | "finished" | undefined;
|
|
2846
2846
|
identifier?: string | undefined;
|
|
@@ -2850,7 +2850,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2850
2850
|
latest_control_hash?: string | null | undefined;
|
|
2851
2851
|
} | {
|
|
2852
2852
|
type: "withdrawal";
|
|
2853
|
-
amount: number;
|
|
2853
|
+
amount: string | number;
|
|
2854
2854
|
wallet: string | number;
|
|
2855
2855
|
status?: "pending" | "finished" | undefined;
|
|
2856
2856
|
identifier?: string | undefined;
|
|
@@ -2868,7 +2868,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2868
2868
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2869
2869
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2870
2870
|
children?: ({
|
|
2871
|
-
amount: number;
|
|
2871
|
+
amount: string | number;
|
|
2872
2872
|
from_wallet: string | number;
|
|
2873
2873
|
to_wallet: string | number;
|
|
2874
2874
|
type?: "transfer" | undefined;
|
|
@@ -2880,7 +2880,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2880
2880
|
latest_control_hash?: string | null | undefined;
|
|
2881
2881
|
} | {
|
|
2882
2882
|
type: "deposit";
|
|
2883
|
-
amount: number;
|
|
2883
|
+
amount: string | number;
|
|
2884
2884
|
wallet: string | number;
|
|
2885
2885
|
status?: "pending" | "finished" | undefined;
|
|
2886
2886
|
identifier?: string | undefined;
|
|
@@ -2890,7 +2890,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2890
2890
|
latest_control_hash?: string | null | undefined;
|
|
2891
2891
|
} | {
|
|
2892
2892
|
type: "withdrawal";
|
|
2893
|
-
amount: number;
|
|
2893
|
+
amount: string | number;
|
|
2894
2894
|
wallet: string | number;
|
|
2895
2895
|
status?: "pending" | "finished" | undefined;
|
|
2896
2896
|
identifier?: string | undefined;
|
|
@@ -2910,7 +2910,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2910
2910
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2911
2911
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2912
2912
|
children?: ({
|
|
2913
|
-
amount: number;
|
|
2913
|
+
amount: string | number;
|
|
2914
2914
|
from_wallet: string | number;
|
|
2915
2915
|
to_wallet: string | number;
|
|
2916
2916
|
type?: "transfer" | undefined;
|
|
@@ -2922,7 +2922,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2922
2922
|
latest_control_hash?: string | null | undefined;
|
|
2923
2923
|
} | {
|
|
2924
2924
|
type: "deposit";
|
|
2925
|
-
amount: number;
|
|
2925
|
+
amount: string | number;
|
|
2926
2926
|
wallet: string | number;
|
|
2927
2927
|
status?: "pending" | "finished" | undefined;
|
|
2928
2928
|
identifier?: string | undefined;
|
|
@@ -2932,7 +2932,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2932
2932
|
latest_control_hash?: string | null | undefined;
|
|
2933
2933
|
} | {
|
|
2934
2934
|
type: "withdrawal";
|
|
2935
|
-
amount: number;
|
|
2935
|
+
amount: string | number;
|
|
2936
2936
|
wallet: string | number;
|
|
2937
2937
|
status?: "pending" | "finished" | undefined;
|
|
2938
2938
|
identifier?: string | undefined;
|
|
@@ -2953,7 +2953,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2953
2953
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
2954
2954
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
2955
2955
|
children?: ({
|
|
2956
|
-
amount: number;
|
|
2956
|
+
amount: string | number;
|
|
2957
2957
|
from_wallet: string | number;
|
|
2958
2958
|
to_wallet: string | number;
|
|
2959
2959
|
type?: "transfer" | undefined;
|
|
@@ -2965,7 +2965,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2965
2965
|
latest_control_hash?: string | null | undefined;
|
|
2966
2966
|
} | {
|
|
2967
2967
|
type: "deposit";
|
|
2968
|
-
amount: number;
|
|
2968
|
+
amount: string | number;
|
|
2969
2969
|
wallet: string | number;
|
|
2970
2970
|
status?: "pending" | "finished" | undefined;
|
|
2971
2971
|
identifier?: string | undefined;
|
|
@@ -2975,7 +2975,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2975
2975
|
latest_control_hash?: string | null | undefined;
|
|
2976
2976
|
} | {
|
|
2977
2977
|
type: "withdrawal";
|
|
2978
|
-
amount: number;
|
|
2978
|
+
amount: string | number;
|
|
2979
2979
|
wallet: string | number;
|
|
2980
2980
|
status?: "pending" | "finished" | undefined;
|
|
2981
2981
|
identifier?: string | undefined;
|
|
@@ -2995,7 +2995,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
2995
2995
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
2996
2996
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2997
2997
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2998
|
-
amount: z.ZodNumber
|
|
2998
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2999
2999
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3000
3000
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3001
3001
|
from_wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
@@ -3004,7 +3004,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3004
3004
|
status_finalized_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
3005
3005
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
3006
3006
|
}>, "strip", z.ZodTypeAny, {
|
|
3007
|
-
amount: number;
|
|
3007
|
+
amount: string | number;
|
|
3008
3008
|
from_wallet: string | number;
|
|
3009
3009
|
to_wallet: string | number;
|
|
3010
3010
|
type?: "transfer" | undefined;
|
|
@@ -3017,7 +3017,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3017
3017
|
latest_control_hash?: string | null | undefined;
|
|
3018
3018
|
transfer_group?: string | number | undefined;
|
|
3019
3019
|
}, {
|
|
3020
|
-
amount: number;
|
|
3020
|
+
amount: string | number;
|
|
3021
3021
|
from_wallet: string | number;
|
|
3022
3022
|
to_wallet: string | number;
|
|
3023
3023
|
type?: "transfer" | undefined;
|
|
@@ -3036,7 +3036,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3036
3036
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
3037
3037
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3038
3038
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
3039
|
-
amount: z.ZodNumber
|
|
3039
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3040
3040
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3041
3041
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
3042
3042
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -3045,7 +3045,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3045
3045
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
3046
3046
|
}>, "strip", z.ZodTypeAny, {
|
|
3047
3047
|
type: "deposit";
|
|
3048
|
-
amount: number;
|
|
3048
|
+
amount: string | number;
|
|
3049
3049
|
wallet: string | number;
|
|
3050
3050
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3051
3051
|
identifier?: string | undefined;
|
|
@@ -3057,7 +3057,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3057
3057
|
transfer_group?: string | number | undefined;
|
|
3058
3058
|
}, {
|
|
3059
3059
|
type: "deposit";
|
|
3060
|
-
amount: number;
|
|
3060
|
+
amount: string | number;
|
|
3061
3061
|
wallet: string | number;
|
|
3062
3062
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3063
3063
|
identifier?: string | undefined;
|
|
@@ -3074,7 +3074,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3074
3074
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("../../db/consts").Metadata, z.ZodTypeDef, import("../../db/consts").Metadata>>>;
|
|
3075
3075
|
token: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3076
3076
|
created_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString]>>;
|
|
3077
|
-
amount: z.ZodNumber
|
|
3077
|
+
amount: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3078
3078
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3079
3079
|
wallet: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
3080
3080
|
transfer_group: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -3083,7 +3083,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3083
3083
|
status: z.ZodOptional<z.ZodEnum<["pending", "finished", "cancelled"]>>;
|
|
3084
3084
|
}>, "strip", z.ZodTypeAny, {
|
|
3085
3085
|
type: "withdrawal";
|
|
3086
|
-
amount: number;
|
|
3086
|
+
amount: string | number;
|
|
3087
3087
|
wallet: string | number;
|
|
3088
3088
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3089
3089
|
identifier?: string | undefined;
|
|
@@ -3095,7 +3095,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3095
3095
|
transfer_group?: string | number | undefined;
|
|
3096
3096
|
}, {
|
|
3097
3097
|
type: "withdrawal";
|
|
3098
|
-
amount: number;
|
|
3098
|
+
amount: string | number;
|
|
3099
3099
|
wallet: string | number;
|
|
3100
3100
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3101
3101
|
identifier?: string | undefined;
|
|
@@ -3108,7 +3108,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3108
3108
|
}>]>;
|
|
3109
3109
|
}, "strip", z.ZodTypeAny, {
|
|
3110
3110
|
data: {
|
|
3111
|
-
amount: number;
|
|
3111
|
+
amount: string | number;
|
|
3112
3112
|
from_wallet: string | number;
|
|
3113
3113
|
to_wallet: string | number;
|
|
3114
3114
|
type?: "transfer" | undefined;
|
|
@@ -3122,7 +3122,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3122
3122
|
transfer_group?: string | number | undefined;
|
|
3123
3123
|
} | {
|
|
3124
3124
|
type: "deposit";
|
|
3125
|
-
amount: number;
|
|
3125
|
+
amount: string | number;
|
|
3126
3126
|
wallet: string | number;
|
|
3127
3127
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3128
3128
|
identifier?: string | undefined;
|
|
@@ -3134,7 +3134,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3134
3134
|
transfer_group?: string | number | undefined;
|
|
3135
3135
|
} | {
|
|
3136
3136
|
type: "withdrawal";
|
|
3137
|
-
amount: number;
|
|
3137
|
+
amount: string | number;
|
|
3138
3138
|
wallet: string | number;
|
|
3139
3139
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3140
3140
|
identifier?: string | undefined;
|
|
@@ -3148,7 +3148,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3148
3148
|
target: "transfer";
|
|
3149
3149
|
}, {
|
|
3150
3150
|
data: {
|
|
3151
|
-
amount: number;
|
|
3151
|
+
amount: string | number;
|
|
3152
3152
|
from_wallet: string | number;
|
|
3153
3153
|
to_wallet: string | number;
|
|
3154
3154
|
type?: "transfer" | undefined;
|
|
@@ -3162,7 +3162,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3162
3162
|
transfer_group?: string | number | undefined;
|
|
3163
3163
|
} | {
|
|
3164
3164
|
type: "deposit";
|
|
3165
|
-
amount: number;
|
|
3165
|
+
amount: string | number;
|
|
3166
3166
|
wallet: string | number;
|
|
3167
3167
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3168
3168
|
identifier?: string | undefined;
|
|
@@ -3174,7 +3174,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3174
3174
|
transfer_group?: string | number | undefined;
|
|
3175
3175
|
} | {
|
|
3176
3176
|
type: "withdrawal";
|
|
3177
|
-
amount: number;
|
|
3177
|
+
amount: string | number;
|
|
3178
3178
|
wallet: string | number;
|
|
3179
3179
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3180
3180
|
identifier?: string | undefined;
|
|
@@ -3377,7 +3377,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3377
3377
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
3378
3378
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3379
3379
|
children?: ({
|
|
3380
|
-
amount: number;
|
|
3380
|
+
amount: string | number;
|
|
3381
3381
|
from_wallet: string | number;
|
|
3382
3382
|
to_wallet: string | number;
|
|
3383
3383
|
type?: "transfer" | undefined;
|
|
@@ -3389,7 +3389,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3389
3389
|
latest_control_hash?: string | null | undefined;
|
|
3390
3390
|
} | {
|
|
3391
3391
|
type: "deposit";
|
|
3392
|
-
amount: number;
|
|
3392
|
+
amount: string | number;
|
|
3393
3393
|
wallet: string | number;
|
|
3394
3394
|
status?: "pending" | "finished" | undefined;
|
|
3395
3395
|
identifier?: string | undefined;
|
|
@@ -3399,7 +3399,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3399
3399
|
latest_control_hash?: string | null | undefined;
|
|
3400
3400
|
} | {
|
|
3401
3401
|
type: "withdrawal";
|
|
3402
|
-
amount: number;
|
|
3402
|
+
amount: string | number;
|
|
3403
3403
|
wallet: string | number;
|
|
3404
3404
|
status?: "pending" | "finished" | undefined;
|
|
3405
3405
|
identifier?: string | undefined;
|
|
@@ -3412,7 +3412,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3412
3412
|
target: "transfer_group";
|
|
3413
3413
|
} | {
|
|
3414
3414
|
data: {
|
|
3415
|
-
amount: number;
|
|
3415
|
+
amount: string | number;
|
|
3416
3416
|
from_wallet: string | number;
|
|
3417
3417
|
to_wallet: string | number;
|
|
3418
3418
|
type?: "transfer" | undefined;
|
|
@@ -3426,7 +3426,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3426
3426
|
transfer_group?: string | number | undefined;
|
|
3427
3427
|
} | {
|
|
3428
3428
|
type: "deposit";
|
|
3429
|
-
amount: number;
|
|
3429
|
+
amount: string | number;
|
|
3430
3430
|
wallet: string | number;
|
|
3431
3431
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3432
3432
|
identifier?: string | undefined;
|
|
@@ -3438,7 +3438,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3438
3438
|
transfer_group?: string | number | undefined;
|
|
3439
3439
|
} | {
|
|
3440
3440
|
type: "withdrawal";
|
|
3441
|
-
amount: number;
|
|
3441
|
+
amount: string | number;
|
|
3442
3442
|
wallet: string | number;
|
|
3443
3443
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3444
3444
|
identifier?: string | undefined;
|
|
@@ -3514,7 +3514,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3514
3514
|
metadata?: import("../../db/consts").Metadata | undefined;
|
|
3515
3515
|
transfer_status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3516
3516
|
children?: ({
|
|
3517
|
-
amount: number;
|
|
3517
|
+
amount: string | number;
|
|
3518
3518
|
from_wallet: string | number;
|
|
3519
3519
|
to_wallet: string | number;
|
|
3520
3520
|
type?: "transfer" | undefined;
|
|
@@ -3526,7 +3526,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3526
3526
|
latest_control_hash?: string | null | undefined;
|
|
3527
3527
|
} | {
|
|
3528
3528
|
type: "deposit";
|
|
3529
|
-
amount: number;
|
|
3529
|
+
amount: string | number;
|
|
3530
3530
|
wallet: string | number;
|
|
3531
3531
|
status?: "pending" | "finished" | undefined;
|
|
3532
3532
|
identifier?: string | undefined;
|
|
@@ -3536,7 +3536,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3536
3536
|
latest_control_hash?: string | null | undefined;
|
|
3537
3537
|
} | {
|
|
3538
3538
|
type: "withdrawal";
|
|
3539
|
-
amount: number;
|
|
3539
|
+
amount: string | number;
|
|
3540
3540
|
wallet: string | number;
|
|
3541
3541
|
status?: "pending" | "finished" | undefined;
|
|
3542
3542
|
identifier?: string | undefined;
|
|
@@ -3549,7 +3549,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3549
3549
|
target: "transfer_group";
|
|
3550
3550
|
} | {
|
|
3551
3551
|
data: {
|
|
3552
|
-
amount: number;
|
|
3552
|
+
amount: string | number;
|
|
3553
3553
|
from_wallet: string | number;
|
|
3554
3554
|
to_wallet: string | number;
|
|
3555
3555
|
type?: "transfer" | undefined;
|
|
@@ -3563,7 +3563,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3563
3563
|
transfer_group?: string | number | undefined;
|
|
3564
3564
|
} | {
|
|
3565
3565
|
type: "deposit";
|
|
3566
|
-
amount: number;
|
|
3566
|
+
amount: string | number;
|
|
3567
3567
|
wallet: string | number;
|
|
3568
3568
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3569
3569
|
identifier?: string | undefined;
|
|
@@ -3575,7 +3575,7 @@ export declare const importDataFnInputSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
3575
3575
|
transfer_group?: string | number | undefined;
|
|
3576
3576
|
} | {
|
|
3577
3577
|
type: "withdrawal";
|
|
3578
|
-
amount: number;
|
|
3578
|
+
amount: string | number;
|
|
3579
3579
|
wallet: string | number;
|
|
3580
3580
|
status?: "pending" | "finished" | "cancelled" | undefined;
|
|
3581
3581
|
identifier?: string | undefined;
|