wapi-client 0.15.4 → 0.15.8
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/lib/env.browser.cjs +1 -1
- package/dist/lib/env.browser.js +1 -1
- package/dist/lib/env.cjs +1 -1
- package/dist/lib/env.js +1 -1
- package/dist/lib/errors.browser.cjs +5 -0
- package/dist/lib/errors.browser.js +5 -0
- package/dist/lib/errors.cjs +5 -0
- package/dist/lib/errors.js +5 -0
- package/dist/txs/get-transfer-group/get-transfer-group.schema.zod.browser.cjs +8 -1
- package/dist/txs/get-transfer-group/get-transfer-group.schema.zod.browser.js +8 -1
- package/dist/txs/get-transfer-group/get-transfer-group.schema.zod.cjs +8 -1
- package/dist/txs/get-transfer-group/get-transfer-group.schema.zod.js +8 -1
- package/dist/types/wapi-client.d.ts +593 -0
- package/dist/wapi-client-web.iife.js +3 -3
- package/dist/wapi-client.iife.js +3 -3
- package/package.json +1 -1
|
@@ -192,6 +192,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
192
192
|
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: ErrorSpec;
|
|
193
193
|
TR_UNIQUE_IDENTIFIER: ErrorSpec;
|
|
194
194
|
TR_DIFFERENT_WALLETS: ErrorSpec;
|
|
195
|
+
TR_AMOUNT_CONSTRAINT: ErrorSpec;
|
|
195
196
|
TRG_SINGLE_PENDING_TR_CANT_RV: ErrorSpec;
|
|
196
197
|
TRG_CANCELLED_CANT_RV: ErrorSpec;
|
|
197
198
|
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: ErrorSpec;
|
|
@@ -246,6 +247,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
246
247
|
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: ErrorSpec;
|
|
247
248
|
TR_UNIQUE_IDENTIFIER: ErrorSpec;
|
|
248
249
|
TR_DIFFERENT_WALLETS: ErrorSpec;
|
|
250
|
+
TR_AMOUNT_CONSTRAINT: ErrorSpec;
|
|
249
251
|
TRG_SINGLE_PENDING_TR_CANT_RV: ErrorSpec;
|
|
250
252
|
TRG_CANCELLED_CANT_RV: ErrorSpec;
|
|
251
253
|
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: ErrorSpec;
|
|
@@ -349,6 +351,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
349
351
|
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: "TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG";
|
|
350
352
|
TR_UNIQUE_IDENTIFIER: "TR_UNIQUE_IDENTIFIER";
|
|
351
353
|
TR_DIFFERENT_WALLETS: "TR_DIFFERENT_WALLETS";
|
|
354
|
+
TR_AMOUNT_CONSTRAINT: "TR_AMOUNT_CONSTRAINT";
|
|
352
355
|
TRG_SINGLE_PENDING_TR_CANT_RV: "TRG_SINGLE_PENDING_TR_CANT_RV";
|
|
353
356
|
TRG_CANCELLED_CANT_RV: "TRG_CANCELLED_CANT_RV";
|
|
354
357
|
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: "TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG";
|
|
@@ -2558,6 +2561,8 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2558
2561
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2559
2562
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2560
2563
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2564
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2565
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2561
2566
|
}, z.core.$strip>;
|
|
2562
2567
|
export const getTransferGroupTxInputSchema: z.ZodObject<{
|
|
2563
2568
|
transfer_group: z.ZodNonOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
@@ -2584,6 +2589,8 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2584
2589
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2585
2590
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2586
2591
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2592
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2593
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2587
2594
|
}, z.core.$strip>>;
|
|
2588
2595
|
}, z.core.$strict>;
|
|
2589
2596
|
export const transferGroupOutputSchema: z.ZodObject<{
|
|
@@ -2612,6 +2619,40 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2612
2619
|
distribution: "distribution";
|
|
2613
2620
|
}>>;
|
|
2614
2621
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2622
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2623
|
+
id: z.ZodNumber;
|
|
2624
|
+
identifier: z.ZodString;
|
|
2625
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
2626
|
+
from_wallet_id: z.ZodNumber;
|
|
2627
|
+
to_wallet_id: z.ZodNumber;
|
|
2628
|
+
token_id: z.ZodNumber;
|
|
2629
|
+
amount: z.ZodNumber;
|
|
2630
|
+
type: z.ZodEnum<{
|
|
2631
|
+
transfer: "transfer";
|
|
2632
|
+
deposit: "deposit";
|
|
2633
|
+
withdrawal: "withdrawal";
|
|
2634
|
+
}>;
|
|
2635
|
+
status: z.ZodEnum<{
|
|
2636
|
+
pending: "pending";
|
|
2637
|
+
finished: "finished";
|
|
2638
|
+
cancelled: "cancelled";
|
|
2639
|
+
}>;
|
|
2640
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
2641
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
2642
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
2643
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
2644
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
2645
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2646
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2647
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
2648
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2649
|
+
from_wallet_foreign: z.ZodString;
|
|
2650
|
+
to_wallet_foreign: z.ZodString;
|
|
2651
|
+
token_foreign: z.ZodString;
|
|
2652
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2653
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2654
|
+
}, z.core.$strict>>>>;
|
|
2655
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2615
2656
|
}, z.core.$strict>;
|
|
2616
2657
|
export const getTransferGroupTxOutputSchema: z.ZodObject<{
|
|
2617
2658
|
transfer_group: z.ZodOptional<z.ZodObject<{
|
|
@@ -2640,6 +2681,40 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2640
2681
|
distribution: "distribution";
|
|
2641
2682
|
}>>;
|
|
2642
2683
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2684
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2685
|
+
id: z.ZodNumber;
|
|
2686
|
+
identifier: z.ZodString;
|
|
2687
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
2688
|
+
from_wallet_id: z.ZodNumber;
|
|
2689
|
+
to_wallet_id: z.ZodNumber;
|
|
2690
|
+
token_id: z.ZodNumber;
|
|
2691
|
+
amount: z.ZodNumber;
|
|
2692
|
+
type: z.ZodEnum<{
|
|
2693
|
+
transfer: "transfer";
|
|
2694
|
+
deposit: "deposit";
|
|
2695
|
+
withdrawal: "withdrawal";
|
|
2696
|
+
}>;
|
|
2697
|
+
status: z.ZodEnum<{
|
|
2698
|
+
pending: "pending";
|
|
2699
|
+
finished: "finished";
|
|
2700
|
+
cancelled: "cancelled";
|
|
2701
|
+
}>;
|
|
2702
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
2703
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
2704
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
2705
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
2706
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
2707
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2708
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2709
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
2710
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2711
|
+
from_wallet_foreign: z.ZodString;
|
|
2712
|
+
to_wallet_foreign: z.ZodString;
|
|
2713
|
+
token_foreign: z.ZodString;
|
|
2714
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2715
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2716
|
+
}, z.core.$strict>>>>;
|
|
2717
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2643
2718
|
}, z.core.$strict>>;
|
|
2644
2719
|
}, z.core.$strip>;
|
|
2645
2720
|
}
|
|
@@ -14666,6 +14741,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14666
14741
|
distribution: "distribution";
|
|
14667
14742
|
}>>;
|
|
14668
14743
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14744
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
14745
|
+
id: z.ZodNumber;
|
|
14746
|
+
identifier: z.ZodString;
|
|
14747
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
14748
|
+
from_wallet_id: z.ZodNumber;
|
|
14749
|
+
to_wallet_id: z.ZodNumber;
|
|
14750
|
+
token_id: z.ZodNumber;
|
|
14751
|
+
amount: z.ZodNumber;
|
|
14752
|
+
type: z.ZodEnum<{
|
|
14753
|
+
transfer: "transfer";
|
|
14754
|
+
deposit: "deposit";
|
|
14755
|
+
withdrawal: "withdrawal";
|
|
14756
|
+
}>;
|
|
14757
|
+
status: z.ZodEnum<{
|
|
14758
|
+
pending: "pending";
|
|
14759
|
+
finished: "finished";
|
|
14760
|
+
cancelled: "cancelled";
|
|
14761
|
+
}>;
|
|
14762
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
14763
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
14764
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
14765
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
14766
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
14767
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14768
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14769
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
14770
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
14771
|
+
from_wallet_foreign: z.ZodString;
|
|
14772
|
+
to_wallet_foreign: z.ZodString;
|
|
14773
|
+
token_foreign: z.ZodString;
|
|
14774
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
14775
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
14776
|
+
}, z.core.$strict>>>>;
|
|
14777
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14669
14778
|
transfers_count: z.ZodOptional<z.ZodNumber>;
|
|
14670
14779
|
}, z.core.$strict>;
|
|
14671
14780
|
export const findTransferGroupManyTxInputOptionsSchema: z.ZodObject<{
|
|
@@ -14715,6 +14824,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14715
14824
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14716
14825
|
transfer_status: "transfer_status";
|
|
14717
14826
|
reverses_identifier: "reverses_identifier";
|
|
14827
|
+
transfers: "transfers";
|
|
14828
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
14718
14829
|
transfers_count: "transfers_count";
|
|
14719
14830
|
}>>>;
|
|
14720
14831
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -14732,6 +14843,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14732
14843
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14733
14844
|
transfer_status: "transfer_status";
|
|
14734
14845
|
reverses_identifier: "reverses_identifier";
|
|
14846
|
+
transfers: "transfers";
|
|
14847
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
14735
14848
|
transfers_count: "transfers_count";
|
|
14736
14849
|
}>>>;
|
|
14737
14850
|
}, z.core.$strip>;
|
|
@@ -15275,6 +15388,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15275
15388
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15276
15389
|
transfer_status: "transfer_status";
|
|
15277
15390
|
reverses_identifier: "reverses_identifier";
|
|
15391
|
+
transfers: "transfers";
|
|
15392
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15278
15393
|
transfers_count: "transfers_count";
|
|
15279
15394
|
}>>>;
|
|
15280
15395
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15292,6 +15407,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15292
15407
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15293
15408
|
transfer_status: "transfer_status";
|
|
15294
15409
|
reverses_identifier: "reverses_identifier";
|
|
15410
|
+
transfers: "transfers";
|
|
15411
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15295
15412
|
transfers_count: "transfers_count";
|
|
15296
15413
|
}>>>;
|
|
15297
15414
|
}, z.core.$strip>>;
|
|
@@ -15323,6 +15440,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15323
15440
|
distribution: "distribution";
|
|
15324
15441
|
}>>>;
|
|
15325
15442
|
reverses_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15443
|
+
transfers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
15444
|
+
id: z.ZodNumber;
|
|
15445
|
+
identifier: z.ZodString;
|
|
15446
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
15447
|
+
from_wallet_id: z.ZodNumber;
|
|
15448
|
+
to_wallet_id: z.ZodNumber;
|
|
15449
|
+
token_id: z.ZodNumber;
|
|
15450
|
+
amount: z.ZodNumber;
|
|
15451
|
+
type: z.ZodEnum<{
|
|
15452
|
+
transfer: "transfer";
|
|
15453
|
+
deposit: "deposit";
|
|
15454
|
+
withdrawal: "withdrawal";
|
|
15455
|
+
}>;
|
|
15456
|
+
status: z.ZodEnum<{
|
|
15457
|
+
pending: "pending";
|
|
15458
|
+
finished: "finished";
|
|
15459
|
+
cancelled: "cancelled";
|
|
15460
|
+
}>;
|
|
15461
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
15462
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
15463
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
15464
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
15465
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
15466
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15467
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15468
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
15469
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
15470
|
+
from_wallet_foreign: z.ZodString;
|
|
15471
|
+
to_wallet_foreign: z.ZodString;
|
|
15472
|
+
token_foreign: z.ZodString;
|
|
15473
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
15474
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
15475
|
+
}, z.core.$strict>>>>>;
|
|
15476
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15326
15477
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15327
15478
|
}, z.core.$strict>>>>;
|
|
15328
15479
|
metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -15392,6 +15543,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15392
15543
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15393
15544
|
transfer_status: "transfer_status";
|
|
15394
15545
|
reverses_identifier: "reverses_identifier";
|
|
15546
|
+
transfers: "transfers";
|
|
15547
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15395
15548
|
transfers_count: "transfers_count";
|
|
15396
15549
|
}>>>;
|
|
15397
15550
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15409,6 +15562,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15409
15562
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15410
15563
|
transfer_status: "transfer_status";
|
|
15411
15564
|
reverses_identifier: "reverses_identifier";
|
|
15565
|
+
transfers: "transfers";
|
|
15566
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15412
15567
|
transfers_count: "transfers_count";
|
|
15413
15568
|
}>>>;
|
|
15414
15569
|
}, import("zod/v4/core").$strip>;
|
|
@@ -15609,6 +15764,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15609
15764
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15610
15765
|
transfer_status: "transfer_status";
|
|
15611
15766
|
reverses_identifier: "reverses_identifier";
|
|
15767
|
+
transfers: "transfers";
|
|
15768
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15612
15769
|
transfers_count: "transfers_count";
|
|
15613
15770
|
}>>>;
|
|
15614
15771
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15626,6 +15783,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15626
15783
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15627
15784
|
transfer_status: "transfer_status";
|
|
15628
15785
|
reverses_identifier: "reverses_identifier";
|
|
15786
|
+
transfers: "transfers";
|
|
15787
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15629
15788
|
transfers_count: "transfers_count";
|
|
15630
15789
|
}>>>;
|
|
15631
15790
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -15679,6 +15838,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15679
15838
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15680
15839
|
transfer_status: "transfer_status";
|
|
15681
15840
|
reverses_identifier: "reverses_identifier";
|
|
15841
|
+
transfers: "transfers";
|
|
15842
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15682
15843
|
transfers_count: "transfers_count";
|
|
15683
15844
|
}>>>>;
|
|
15684
15845
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15696,6 +15857,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15696
15857
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15697
15858
|
transfer_status: "transfer_status";
|
|
15698
15859
|
reverses_identifier: "reverses_identifier";
|
|
15860
|
+
transfers: "transfers";
|
|
15861
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15699
15862
|
transfers_count: "transfers_count";
|
|
15700
15863
|
}>>>>;
|
|
15701
15864
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15774,6 +15937,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15774
15937
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15775
15938
|
transfer_status: "transfer_status";
|
|
15776
15939
|
reverses_identifier: "reverses_identifier";
|
|
15940
|
+
transfers: "transfers";
|
|
15941
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15777
15942
|
transfers_count: "transfers_count";
|
|
15778
15943
|
}>>>>;
|
|
15779
15944
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15791,6 +15956,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15791
15956
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15792
15957
|
transfer_status: "transfer_status";
|
|
15793
15958
|
reverses_identifier: "reverses_identifier";
|
|
15959
|
+
transfers: "transfers";
|
|
15960
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15794
15961
|
transfers_count: "transfers_count";
|
|
15795
15962
|
}>>>>;
|
|
15796
15963
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15836,6 +16003,40 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15836
16003
|
distribution: "distribution";
|
|
15837
16004
|
}>>>;
|
|
15838
16005
|
reverses_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16006
|
+
transfers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
16007
|
+
id: z.ZodNumber;
|
|
16008
|
+
identifier: z.ZodString;
|
|
16009
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
16010
|
+
from_wallet_id: z.ZodNumber;
|
|
16011
|
+
to_wallet_id: z.ZodNumber;
|
|
16012
|
+
token_id: z.ZodNumber;
|
|
16013
|
+
amount: z.ZodNumber;
|
|
16014
|
+
type: z.ZodEnum<{
|
|
16015
|
+
transfer: "transfer";
|
|
16016
|
+
deposit: "deposit";
|
|
16017
|
+
withdrawal: "withdrawal";
|
|
16018
|
+
}>;
|
|
16019
|
+
status: z.ZodEnum<{
|
|
16020
|
+
pending: "pending";
|
|
16021
|
+
finished: "finished";
|
|
16022
|
+
cancelled: "cancelled";
|
|
16023
|
+
}>;
|
|
16024
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
16025
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
16026
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
16027
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
16028
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
16029
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16030
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16031
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
16032
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16033
|
+
from_wallet_foreign: z.ZodString;
|
|
16034
|
+
to_wallet_foreign: z.ZodString;
|
|
16035
|
+
token_foreign: z.ZodString;
|
|
16036
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
16037
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
16038
|
+
}, z.core.$strict>>>>>;
|
|
16039
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15839
16040
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15840
16041
|
}, z.core.$strict>>>>;
|
|
15841
16042
|
metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -15881,6 +16082,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15881
16082
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15882
16083
|
transfer_status: "transfer_status";
|
|
15883
16084
|
reverses_identifier: "reverses_identifier";
|
|
16085
|
+
transfers: "transfers";
|
|
16086
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15884
16087
|
transfers_count: "transfers_count";
|
|
15885
16088
|
}>>>>>;
|
|
15886
16089
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15898,6 +16101,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15898
16101
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15899
16102
|
transfer_status: "transfer_status";
|
|
15900
16103
|
reverses_identifier: "reverses_identifier";
|
|
16104
|
+
transfers: "transfers";
|
|
16105
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15901
16106
|
transfers_count: "transfers_count";
|
|
15902
16107
|
}>>>>>;
|
|
15903
16108
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -15976,6 +16181,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15976
16181
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15977
16182
|
transfer_status: "transfer_status";
|
|
15978
16183
|
reverses_identifier: "reverses_identifier";
|
|
16184
|
+
transfers: "transfers";
|
|
16185
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15979
16186
|
transfers_count: "transfers_count";
|
|
15980
16187
|
}>>>>>;
|
|
15981
16188
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15993,6 +16200,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15993
16200
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15994
16201
|
transfer_status: "transfer_status";
|
|
15995
16202
|
reverses_identifier: "reverses_identifier";
|
|
16203
|
+
transfers: "transfers";
|
|
16204
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15996
16205
|
transfers_count: "transfers_count";
|
|
15997
16206
|
}>>>>>;
|
|
15998
16207
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -19208,6 +19417,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19208
19417
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19209
19418
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19210
19419
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19420
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19421
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19211
19422
|
}, z.core.$strip>;
|
|
19212
19423
|
export const getTransferGroupInputSchema: z.ZodObject<{
|
|
19213
19424
|
transfer_group: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -19219,6 +19430,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19219
19430
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19220
19431
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19221
19432
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19433
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19434
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19222
19435
|
}, z.core.$strip>>;
|
|
19223
19436
|
}, z.core.$strict>;
|
|
19224
19437
|
export const getTransferGroupFnOutputSchema: z.ZodObject<{
|
|
@@ -19248,6 +19461,40 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19248
19461
|
distribution: "distribution";
|
|
19249
19462
|
}>>;
|
|
19250
19463
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19464
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
19465
|
+
id: z.ZodNumber;
|
|
19466
|
+
identifier: z.ZodString;
|
|
19467
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
19468
|
+
from_wallet_id: z.ZodNumber;
|
|
19469
|
+
to_wallet_id: z.ZodNumber;
|
|
19470
|
+
token_id: z.ZodNumber;
|
|
19471
|
+
amount: z.ZodNumber;
|
|
19472
|
+
type: z.ZodEnum<{
|
|
19473
|
+
transfer: "transfer";
|
|
19474
|
+
deposit: "deposit";
|
|
19475
|
+
withdrawal: "withdrawal";
|
|
19476
|
+
}>;
|
|
19477
|
+
status: z.ZodEnum<{
|
|
19478
|
+
pending: "pending";
|
|
19479
|
+
finished: "finished";
|
|
19480
|
+
cancelled: "cancelled";
|
|
19481
|
+
}>;
|
|
19482
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
19483
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
19484
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
19485
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
19486
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
19487
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19488
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19489
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
19490
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19491
|
+
from_wallet_foreign: z.ZodString;
|
|
19492
|
+
to_wallet_foreign: z.ZodString;
|
|
19493
|
+
token_foreign: z.ZodString;
|
|
19494
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
19495
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
19496
|
+
}, z.core.$strict>>>>;
|
|
19497
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19251
19498
|
}, z.core.$strict>>;
|
|
19252
19499
|
}, z.core.$strip>;
|
|
19253
19500
|
export const config: {};
|
|
@@ -21944,6 +22191,40 @@ declare module "wapi-client/txs/update-transfer-group-many/update-transfer-group
|
|
|
21944
22191
|
distribution: "distribution";
|
|
21945
22192
|
}>>;
|
|
21946
22193
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22194
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
22195
|
+
id: z.ZodNumber;
|
|
22196
|
+
identifier: z.ZodString;
|
|
22197
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
22198
|
+
from_wallet_id: z.ZodNumber;
|
|
22199
|
+
to_wallet_id: z.ZodNumber;
|
|
22200
|
+
token_id: z.ZodNumber;
|
|
22201
|
+
amount: z.ZodNumber;
|
|
22202
|
+
type: z.ZodEnum<{
|
|
22203
|
+
transfer: "transfer";
|
|
22204
|
+
deposit: "deposit";
|
|
22205
|
+
withdrawal: "withdrawal";
|
|
22206
|
+
}>;
|
|
22207
|
+
status: z.ZodEnum<{
|
|
22208
|
+
pending: "pending";
|
|
22209
|
+
finished: "finished";
|
|
22210
|
+
cancelled: "cancelled";
|
|
22211
|
+
}>;
|
|
22212
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
22213
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
22214
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22215
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22216
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
22217
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22218
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22219
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
22220
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22221
|
+
from_wallet_foreign: z.ZodString;
|
|
22222
|
+
to_wallet_foreign: z.ZodString;
|
|
22223
|
+
token_foreign: z.ZodString;
|
|
22224
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22225
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22226
|
+
}, z.core.$strict>>>>;
|
|
22227
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21947
22228
|
}, z.core.$strict>>;
|
|
21948
22229
|
transfers: z.ZodArray<z.ZodObject<{
|
|
21949
22230
|
id: z.ZodNumber;
|
|
@@ -22137,6 +22418,40 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups.sc
|
|
|
22137
22418
|
distribution: "distribution";
|
|
22138
22419
|
}>>;
|
|
22139
22420
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22421
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
22422
|
+
id: z.ZodNumber;
|
|
22423
|
+
identifier: z.ZodString;
|
|
22424
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
22425
|
+
from_wallet_id: z.ZodNumber;
|
|
22426
|
+
to_wallet_id: z.ZodNumber;
|
|
22427
|
+
token_id: z.ZodNumber;
|
|
22428
|
+
amount: z.ZodNumber;
|
|
22429
|
+
type: z.ZodEnum<{
|
|
22430
|
+
transfer: "transfer";
|
|
22431
|
+
deposit: "deposit";
|
|
22432
|
+
withdrawal: "withdrawal";
|
|
22433
|
+
}>;
|
|
22434
|
+
status: z.ZodEnum<{
|
|
22435
|
+
pending: "pending";
|
|
22436
|
+
finished: "finished";
|
|
22437
|
+
cancelled: "cancelled";
|
|
22438
|
+
}>;
|
|
22439
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
22440
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
22441
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22442
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22443
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
22444
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22445
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22446
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
22447
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22448
|
+
from_wallet_foreign: z.ZodString;
|
|
22449
|
+
to_wallet_foreign: z.ZodString;
|
|
22450
|
+
token_foreign: z.ZodString;
|
|
22451
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22452
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22453
|
+
}, z.core.$strict>>>>;
|
|
22454
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22140
22455
|
}, z.core.$strict>>;
|
|
22141
22456
|
transfers: z.ZodArray<z.ZodObject<{
|
|
22142
22457
|
id: z.ZodNumber;
|
|
@@ -28286,6 +28601,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28286
28601
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28287
28602
|
transfer_status: "transfer_status";
|
|
28288
28603
|
reverses_identifier: "reverses_identifier";
|
|
28604
|
+
transfers: "transfers";
|
|
28605
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
28289
28606
|
transfers_count: "transfers_count";
|
|
28290
28607
|
}>>>>;
|
|
28291
28608
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -28303,6 +28620,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28303
28620
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28304
28621
|
transfer_status: "transfer_status";
|
|
28305
28622
|
reverses_identifier: "reverses_identifier";
|
|
28623
|
+
transfers: "transfers";
|
|
28624
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
28306
28625
|
transfers_count: "transfers_count";
|
|
28307
28626
|
}>>>>;
|
|
28308
28627
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -28347,6 +28666,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28347
28666
|
status?: "open" | "closed" | undefined;
|
|
28348
28667
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
28349
28668
|
reverses_identifier?: string | null | undefined;
|
|
28669
|
+
transfers?: {
|
|
28670
|
+
id: number;
|
|
28671
|
+
identifier: string;
|
|
28672
|
+
control_hash: string | null;
|
|
28673
|
+
from_wallet_id: number;
|
|
28674
|
+
to_wallet_id: number;
|
|
28675
|
+
token_id: number;
|
|
28676
|
+
amount: number;
|
|
28677
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
28678
|
+
status: "pending" | "finished" | "cancelled";
|
|
28679
|
+
force: boolean;
|
|
28680
|
+
auto_hash: boolean;
|
|
28681
|
+
created_at: string;
|
|
28682
|
+
updated_at: string;
|
|
28683
|
+
from_wallet_foreign: string;
|
|
28684
|
+
to_wallet_foreign: string;
|
|
28685
|
+
token_foreign: string;
|
|
28686
|
+
transfer_group_identifier: string | null;
|
|
28687
|
+
reverses_identifier: string | null;
|
|
28688
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
28689
|
+
transfer_group_id?: number | null | undefined;
|
|
28690
|
+
reverses_id?: number | null | undefined;
|
|
28691
|
+
status_finalized_at?: string | null | undefined;
|
|
28692
|
+
group_validate?: boolean | null | undefined;
|
|
28693
|
+
}[] | null | undefined;
|
|
28694
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28350
28695
|
transfers_count?: number | undefined;
|
|
28351
28696
|
}, AllTrue<{
|
|
28352
28697
|
id: number;
|
|
@@ -28363,6 +28708,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28363
28708
|
status?: "open" | "closed" | undefined;
|
|
28364
28709
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
28365
28710
|
reverses_identifier?: string | null | undefined;
|
|
28711
|
+
transfers?: {
|
|
28712
|
+
id: number;
|
|
28713
|
+
identifier: string;
|
|
28714
|
+
control_hash: string | null;
|
|
28715
|
+
from_wallet_id: number;
|
|
28716
|
+
to_wallet_id: number;
|
|
28717
|
+
token_id: number;
|
|
28718
|
+
amount: number;
|
|
28719
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
28720
|
+
status: "pending" | "finished" | "cancelled";
|
|
28721
|
+
force: boolean;
|
|
28722
|
+
auto_hash: boolean;
|
|
28723
|
+
created_at: string;
|
|
28724
|
+
updated_at: string;
|
|
28725
|
+
from_wallet_foreign: string;
|
|
28726
|
+
to_wallet_foreign: string;
|
|
28727
|
+
token_foreign: string;
|
|
28728
|
+
transfer_group_identifier: string | null;
|
|
28729
|
+
reverses_identifier: string | null;
|
|
28730
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
28731
|
+
transfer_group_id?: number | null | undefined;
|
|
28732
|
+
reverses_id?: number | null | undefined;
|
|
28733
|
+
status_finalized_at?: string | null | undefined;
|
|
28734
|
+
group_validate?: boolean | null | undefined;
|
|
28735
|
+
}[] | null | undefined;
|
|
28736
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28366
28737
|
}>, {}, true>;
|
|
28367
28738
|
}
|
|
28368
28739
|
declare module "wapi-client/fns/export-transfers/export-transfers.enums" {
|
|
@@ -29352,6 +29723,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29352
29723
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29353
29724
|
transfer_status: "transfer_status";
|
|
29354
29725
|
reverses_identifier: "reverses_identifier";
|
|
29726
|
+
transfers: "transfers";
|
|
29727
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
29355
29728
|
transfers_count: "transfers_count";
|
|
29356
29729
|
}>>>>;
|
|
29357
29730
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -29369,6 +29742,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29369
29742
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29370
29743
|
transfer_status: "transfer_status";
|
|
29371
29744
|
reverses_identifier: "reverses_identifier";
|
|
29745
|
+
transfers: "transfers";
|
|
29746
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
29372
29747
|
transfers_count: "transfers_count";
|
|
29373
29748
|
}>>>>;
|
|
29374
29749
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -29400,6 +29775,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29400
29775
|
status?: "open" | "closed" | undefined;
|
|
29401
29776
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
29402
29777
|
reverses_identifier?: string | null | undefined;
|
|
29778
|
+
transfers?: {
|
|
29779
|
+
id: number;
|
|
29780
|
+
identifier: string;
|
|
29781
|
+
control_hash: string | null;
|
|
29782
|
+
from_wallet_id: number;
|
|
29783
|
+
to_wallet_id: number;
|
|
29784
|
+
token_id: number;
|
|
29785
|
+
amount: number;
|
|
29786
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
29787
|
+
status: "pending" | "finished" | "cancelled";
|
|
29788
|
+
force: boolean;
|
|
29789
|
+
auto_hash: boolean;
|
|
29790
|
+
created_at: string;
|
|
29791
|
+
updated_at: string;
|
|
29792
|
+
from_wallet_foreign: string;
|
|
29793
|
+
to_wallet_foreign: string;
|
|
29794
|
+
token_foreign: string;
|
|
29795
|
+
transfer_group_identifier: string | null;
|
|
29796
|
+
reverses_identifier: string | null;
|
|
29797
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
29798
|
+
transfer_group_id?: number | null | undefined;
|
|
29799
|
+
reverses_id?: number | null | undefined;
|
|
29800
|
+
status_finalized_at?: string | null | undefined;
|
|
29801
|
+
group_validate?: boolean | null | undefined;
|
|
29802
|
+
}[] | null | undefined;
|
|
29803
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29403
29804
|
transfers_count?: number | undefined;
|
|
29404
29805
|
}, AllTrue<{
|
|
29405
29806
|
id: number;
|
|
@@ -29416,6 +29817,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29416
29817
|
status?: "open" | "closed" | undefined;
|
|
29417
29818
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
29418
29819
|
reverses_identifier?: string | null | undefined;
|
|
29820
|
+
transfers?: {
|
|
29821
|
+
id: number;
|
|
29822
|
+
identifier: string;
|
|
29823
|
+
control_hash: string | null;
|
|
29824
|
+
from_wallet_id: number;
|
|
29825
|
+
to_wallet_id: number;
|
|
29826
|
+
token_id: number;
|
|
29827
|
+
amount: number;
|
|
29828
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
29829
|
+
status: "pending" | "finished" | "cancelled";
|
|
29830
|
+
force: boolean;
|
|
29831
|
+
auto_hash: boolean;
|
|
29832
|
+
created_at: string;
|
|
29833
|
+
updated_at: string;
|
|
29834
|
+
from_wallet_foreign: string;
|
|
29835
|
+
to_wallet_foreign: string;
|
|
29836
|
+
token_foreign: string;
|
|
29837
|
+
transfer_group_identifier: string | null;
|
|
29838
|
+
reverses_identifier: string | null;
|
|
29839
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
29840
|
+
transfer_group_id?: number | null | undefined;
|
|
29841
|
+
reverses_id?: number | null | undefined;
|
|
29842
|
+
status_finalized_at?: string | null | undefined;
|
|
29843
|
+
group_validate?: boolean | null | undefined;
|
|
29844
|
+
}[] | null | undefined;
|
|
29845
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29419
29846
|
}>, {}, true>;
|
|
29420
29847
|
}
|
|
29421
29848
|
declare module "wapi-client/fns/find-transfers/find-transfers.enums" {
|
|
@@ -31049,6 +31476,32 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups" {
|
|
|
31049
31476
|
status?: "open" | "closed" | undefined;
|
|
31050
31477
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
31051
31478
|
reverses_identifier?: string | null | undefined;
|
|
31479
|
+
transfers?: {
|
|
31480
|
+
id: number;
|
|
31481
|
+
identifier: string;
|
|
31482
|
+
control_hash: string | null;
|
|
31483
|
+
from_wallet_id: number;
|
|
31484
|
+
to_wallet_id: number;
|
|
31485
|
+
token_id: number;
|
|
31486
|
+
amount: number;
|
|
31487
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
31488
|
+
status: "pending" | "finished" | "cancelled";
|
|
31489
|
+
force: boolean;
|
|
31490
|
+
auto_hash: boolean;
|
|
31491
|
+
created_at: string;
|
|
31492
|
+
updated_at: string;
|
|
31493
|
+
from_wallet_foreign: string;
|
|
31494
|
+
to_wallet_foreign: string;
|
|
31495
|
+
token_foreign: string;
|
|
31496
|
+
transfer_group_identifier: string | null;
|
|
31497
|
+
reverses_identifier: string | null;
|
|
31498
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
31499
|
+
transfer_group_id?: number | null | undefined;
|
|
31500
|
+
reverses_id?: number | null | undefined;
|
|
31501
|
+
status_finalized_at?: string | null | undefined;
|
|
31502
|
+
group_validate?: boolean | null | undefined;
|
|
31503
|
+
}[] | null | undefined;
|
|
31504
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31052
31505
|
}[];
|
|
31053
31506
|
transfers: {
|
|
31054
31507
|
id: number;
|
|
@@ -32927,6 +33380,8 @@ declare module "client.js" {
|
|
|
32927
33380
|
validate_final_balance_only: "validate_final_balance_only";
|
|
32928
33381
|
transfer_status: "transfer_status";
|
|
32929
33382
|
reverses_identifier: "reverses_identifier";
|
|
33383
|
+
transfers: "transfers";
|
|
33384
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32930
33385
|
transfers_count: "transfers_count";
|
|
32931
33386
|
}>>>>;
|
|
32932
33387
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -32944,6 +33399,8 @@ declare module "client.js" {
|
|
|
32944
33399
|
validate_final_balance_only: "validate_final_balance_only";
|
|
32945
33400
|
transfer_status: "transfer_status";
|
|
32946
33401
|
reverses_identifier: "reverses_identifier";
|
|
33402
|
+
transfers: "transfers";
|
|
33403
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32947
33404
|
transfers_count: "transfers_count";
|
|
32948
33405
|
}>>>>;
|
|
32949
33406
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -32988,6 +33445,32 @@ declare module "client.js" {
|
|
|
32988
33445
|
status?: "open" | "closed" | undefined;
|
|
32989
33446
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
32990
33447
|
reverses_identifier?: string | null | undefined;
|
|
33448
|
+
transfers?: {
|
|
33449
|
+
id: number;
|
|
33450
|
+
identifier: string;
|
|
33451
|
+
control_hash: string | null;
|
|
33452
|
+
from_wallet_id: number;
|
|
33453
|
+
to_wallet_id: number;
|
|
33454
|
+
token_id: number;
|
|
33455
|
+
amount: number;
|
|
33456
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
33457
|
+
status: "pending" | "finished" | "cancelled";
|
|
33458
|
+
force: boolean;
|
|
33459
|
+
auto_hash: boolean;
|
|
33460
|
+
created_at: string;
|
|
33461
|
+
updated_at: string;
|
|
33462
|
+
from_wallet_foreign: string;
|
|
33463
|
+
to_wallet_foreign: string;
|
|
33464
|
+
token_foreign: string;
|
|
33465
|
+
transfer_group_identifier: string | null;
|
|
33466
|
+
reverses_identifier: string | null;
|
|
33467
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
33468
|
+
transfer_group_id?: number | null | undefined;
|
|
33469
|
+
reverses_id?: number | null | undefined;
|
|
33470
|
+
status_finalized_at?: string | null | undefined;
|
|
33471
|
+
group_validate?: boolean | null | undefined;
|
|
33472
|
+
}[] | null | undefined;
|
|
33473
|
+
reversed_by_identifier?: string | null | undefined;
|
|
32991
33474
|
transfers_count?: number | undefined;
|
|
32992
33475
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
32993
33476
|
id: number;
|
|
@@ -33004,6 +33487,32 @@ declare module "client.js" {
|
|
|
33004
33487
|
status?: "open" | "closed" | undefined;
|
|
33005
33488
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
33006
33489
|
reverses_identifier?: string | null | undefined;
|
|
33490
|
+
transfers?: {
|
|
33491
|
+
id: number;
|
|
33492
|
+
identifier: string;
|
|
33493
|
+
control_hash: string | null;
|
|
33494
|
+
from_wallet_id: number;
|
|
33495
|
+
to_wallet_id: number;
|
|
33496
|
+
token_id: number;
|
|
33497
|
+
amount: number;
|
|
33498
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
33499
|
+
status: "pending" | "finished" | "cancelled";
|
|
33500
|
+
force: boolean;
|
|
33501
|
+
auto_hash: boolean;
|
|
33502
|
+
created_at: string;
|
|
33503
|
+
updated_at: string;
|
|
33504
|
+
from_wallet_foreign: string;
|
|
33505
|
+
to_wallet_foreign: string;
|
|
33506
|
+
token_foreign: string;
|
|
33507
|
+
transfer_group_identifier: string | null;
|
|
33508
|
+
reverses_identifier: string | null;
|
|
33509
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
33510
|
+
transfer_group_id?: number | null | undefined;
|
|
33511
|
+
reverses_id?: number | null | undefined;
|
|
33512
|
+
status_finalized_at?: string | null | undefined;
|
|
33513
|
+
group_validate?: boolean | null | undefined;
|
|
33514
|
+
}[] | null | undefined;
|
|
33515
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33007
33516
|
}>, {}, true>;
|
|
33008
33517
|
/**
|
|
33009
33518
|
*
|
|
@@ -34043,6 +34552,8 @@ declare module "client.js" {
|
|
|
34043
34552
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34044
34553
|
transfer_status: "transfer_status";
|
|
34045
34554
|
reverses_identifier: "reverses_identifier";
|
|
34555
|
+
transfers: "transfers";
|
|
34556
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34046
34557
|
transfers_count: "transfers_count";
|
|
34047
34558
|
}>>>>;
|
|
34048
34559
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -34060,6 +34571,8 @@ declare module "client.js" {
|
|
|
34060
34571
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34061
34572
|
transfer_status: "transfer_status";
|
|
34062
34573
|
reverses_identifier: "reverses_identifier";
|
|
34574
|
+
transfers: "transfers";
|
|
34575
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34063
34576
|
transfers_count: "transfers_count";
|
|
34064
34577
|
}>>>>;
|
|
34065
34578
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -34091,6 +34604,32 @@ declare module "client.js" {
|
|
|
34091
34604
|
status?: "open" | "closed" | undefined;
|
|
34092
34605
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
34093
34606
|
reverses_identifier?: string | null | undefined;
|
|
34607
|
+
transfers?: {
|
|
34608
|
+
id: number;
|
|
34609
|
+
identifier: string;
|
|
34610
|
+
control_hash: string | null;
|
|
34611
|
+
from_wallet_id: number;
|
|
34612
|
+
to_wallet_id: number;
|
|
34613
|
+
token_id: number;
|
|
34614
|
+
amount: number;
|
|
34615
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
34616
|
+
status: "pending" | "finished" | "cancelled";
|
|
34617
|
+
force: boolean;
|
|
34618
|
+
auto_hash: boolean;
|
|
34619
|
+
created_at: string;
|
|
34620
|
+
updated_at: string;
|
|
34621
|
+
from_wallet_foreign: string;
|
|
34622
|
+
to_wallet_foreign: string;
|
|
34623
|
+
token_foreign: string;
|
|
34624
|
+
transfer_group_identifier: string | null;
|
|
34625
|
+
reverses_identifier: string | null;
|
|
34626
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
34627
|
+
transfer_group_id?: number | null | undefined;
|
|
34628
|
+
reverses_id?: number | null | undefined;
|
|
34629
|
+
status_finalized_at?: string | null | undefined;
|
|
34630
|
+
group_validate?: boolean | null | undefined;
|
|
34631
|
+
}[] | null | undefined;
|
|
34632
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34094
34633
|
transfers_count?: number | undefined;
|
|
34095
34634
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
34096
34635
|
id: number;
|
|
@@ -34107,6 +34646,32 @@ declare module "client.js" {
|
|
|
34107
34646
|
status?: "open" | "closed" | undefined;
|
|
34108
34647
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
34109
34648
|
reverses_identifier?: string | null | undefined;
|
|
34649
|
+
transfers?: {
|
|
34650
|
+
id: number;
|
|
34651
|
+
identifier: string;
|
|
34652
|
+
control_hash: string | null;
|
|
34653
|
+
from_wallet_id: number;
|
|
34654
|
+
to_wallet_id: number;
|
|
34655
|
+
token_id: number;
|
|
34656
|
+
amount: number;
|
|
34657
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
34658
|
+
status: "pending" | "finished" | "cancelled";
|
|
34659
|
+
force: boolean;
|
|
34660
|
+
auto_hash: boolean;
|
|
34661
|
+
created_at: string;
|
|
34662
|
+
updated_at: string;
|
|
34663
|
+
from_wallet_foreign: string;
|
|
34664
|
+
to_wallet_foreign: string;
|
|
34665
|
+
token_foreign: string;
|
|
34666
|
+
transfer_group_identifier: string | null;
|
|
34667
|
+
reverses_identifier: string | null;
|
|
34668
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
34669
|
+
transfer_group_id?: number | null | undefined;
|
|
34670
|
+
reverses_id?: number | null | undefined;
|
|
34671
|
+
status_finalized_at?: string | null | undefined;
|
|
34672
|
+
group_validate?: boolean | null | undefined;
|
|
34673
|
+
}[] | null | undefined;
|
|
34674
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34110
34675
|
}>, {}, true>;
|
|
34111
34676
|
/**
|
|
34112
34677
|
*
|
|
@@ -35727,6 +36292,32 @@ declare module "client.js" {
|
|
|
35727
36292
|
status?: "open" | "closed" | undefined;
|
|
35728
36293
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
35729
36294
|
reverses_identifier?: string | null | undefined;
|
|
36295
|
+
transfers?: {
|
|
36296
|
+
id: number;
|
|
36297
|
+
identifier: string;
|
|
36298
|
+
control_hash: string | null;
|
|
36299
|
+
from_wallet_id: number;
|
|
36300
|
+
to_wallet_id: number;
|
|
36301
|
+
token_id: number;
|
|
36302
|
+
amount: number;
|
|
36303
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
36304
|
+
status: "pending" | "finished" | "cancelled";
|
|
36305
|
+
force: boolean;
|
|
36306
|
+
auto_hash: boolean;
|
|
36307
|
+
created_at: string;
|
|
36308
|
+
updated_at: string;
|
|
36309
|
+
from_wallet_foreign: string;
|
|
36310
|
+
to_wallet_foreign: string;
|
|
36311
|
+
token_foreign: string;
|
|
36312
|
+
transfer_group_identifier: string | null;
|
|
36313
|
+
reverses_identifier: string | null;
|
|
36314
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
36315
|
+
transfer_group_id?: number | null | undefined;
|
|
36316
|
+
reverses_id?: number | null | undefined;
|
|
36317
|
+
status_finalized_at?: string | null | undefined;
|
|
36318
|
+
group_validate?: boolean | null | undefined;
|
|
36319
|
+
}[] | null | undefined;
|
|
36320
|
+
reversed_by_identifier?: string | null | undefined;
|
|
35730
36321
|
}[];
|
|
35731
36322
|
transfers: {
|
|
35732
36323
|
id: number;
|
|
@@ -36419,6 +37010,7 @@ declare module "wapi-client" {
|
|
|
36419
37010
|
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: "TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG";
|
|
36420
37011
|
TR_UNIQUE_IDENTIFIER: "TR_UNIQUE_IDENTIFIER";
|
|
36421
37012
|
TR_DIFFERENT_WALLETS: "TR_DIFFERENT_WALLETS";
|
|
37013
|
+
TR_AMOUNT_CONSTRAINT: "TR_AMOUNT_CONSTRAINT";
|
|
36422
37014
|
TRG_SINGLE_PENDING_TR_CANT_RV: "TRG_SINGLE_PENDING_TR_CANT_RV";
|
|
36423
37015
|
TRG_CANCELLED_CANT_RV: "TRG_CANCELLED_CANT_RV";
|
|
36424
37016
|
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: "TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG";
|
|
@@ -36513,6 +37105,7 @@ declare module "wapi-client" {
|
|
|
36513
37105
|
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|
|
36514
37106
|
TR_UNIQUE_IDENTIFIER: import("wapi-client/lib/errors").ErrorSpec;
|
|
36515
37107
|
TR_DIFFERENT_WALLETS: import("wapi-client/lib/errors").ErrorSpec;
|
|
37108
|
+
TR_AMOUNT_CONSTRAINT: import("wapi-client/lib/errors").ErrorSpec;
|
|
36516
37109
|
TRG_SINGLE_PENDING_TR_CANT_RV: import("wapi-client/lib/errors").ErrorSpec;
|
|
36517
37110
|
TRG_CANCELLED_CANT_RV: import("wapi-client/lib/errors").ErrorSpec;
|
|
36518
37111
|
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|