wapi-client 0.15.5 → 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.
@@ -2561,6 +2561,8 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
2561
2561
  transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2562
2562
  create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2563
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>>;
2564
2566
  }, z.core.$strip>;
2565
2567
  export const getTransferGroupTxInputSchema: z.ZodObject<{
2566
2568
  transfer_group: z.ZodNonOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
@@ -2587,6 +2589,8 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
2587
2589
  transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2588
2590
  create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2589
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>>;
2590
2594
  }, z.core.$strip>>;
2591
2595
  }, z.core.$strict>;
2592
2596
  export const transferGroupOutputSchema: z.ZodObject<{
@@ -2615,6 +2619,40 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
2615
2619
  distribution: "distribution";
2616
2620
  }>>;
2617
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>>;
2618
2656
  }, z.core.$strict>;
2619
2657
  export const getTransferGroupTxOutputSchema: z.ZodObject<{
2620
2658
  transfer_group: z.ZodOptional<z.ZodObject<{
@@ -2643,6 +2681,40 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
2643
2681
  distribution: "distribution";
2644
2682
  }>>;
2645
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>>;
2646
2718
  }, z.core.$strict>>;
2647
2719
  }, z.core.$strip>;
2648
2720
  }
@@ -14669,6 +14741,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
14669
14741
  distribution: "distribution";
14670
14742
  }>>;
14671
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>>;
14672
14778
  transfers_count: z.ZodOptional<z.ZodNumber>;
14673
14779
  }, z.core.$strict>;
14674
14780
  export const findTransferGroupManyTxInputOptionsSchema: z.ZodObject<{
@@ -14718,6 +14824,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
14718
14824
  validate_final_balance_only: "validate_final_balance_only";
14719
14825
  transfer_status: "transfer_status";
14720
14826
  reverses_identifier: "reverses_identifier";
14827
+ transfers: "transfers";
14828
+ reversed_by_identifier: "reversed_by_identifier";
14721
14829
  transfers_count: "transfers_count";
14722
14830
  }>>>;
14723
14831
  deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -14735,6 +14843,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
14735
14843
  validate_final_balance_only: "validate_final_balance_only";
14736
14844
  transfer_status: "transfer_status";
14737
14845
  reverses_identifier: "reverses_identifier";
14846
+ transfers: "transfers";
14847
+ reversed_by_identifier: "reversed_by_identifier";
14738
14848
  transfers_count: "transfers_count";
14739
14849
  }>>>;
14740
14850
  }, z.core.$strip>;
@@ -15278,6 +15388,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
15278
15388
  validate_final_balance_only: "validate_final_balance_only";
15279
15389
  transfer_status: "transfer_status";
15280
15390
  reverses_identifier: "reverses_identifier";
15391
+ transfers: "transfers";
15392
+ reversed_by_identifier: "reversed_by_identifier";
15281
15393
  transfers_count: "transfers_count";
15282
15394
  }>>>;
15283
15395
  deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -15295,6 +15407,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
15295
15407
  validate_final_balance_only: "validate_final_balance_only";
15296
15408
  transfer_status: "transfer_status";
15297
15409
  reverses_identifier: "reverses_identifier";
15410
+ transfers: "transfers";
15411
+ reversed_by_identifier: "reversed_by_identifier";
15298
15412
  transfers_count: "transfers_count";
15299
15413
  }>>>;
15300
15414
  }, z.core.$strip>>;
@@ -15326,6 +15440,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
15326
15440
  distribution: "distribution";
15327
15441
  }>>>;
15328
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>>>;
15329
15477
  transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
15330
15478
  }, z.core.$strict>>>>;
15331
15479
  metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
@@ -15395,6 +15543,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
15395
15543
  validate_final_balance_only: "validate_final_balance_only";
15396
15544
  transfer_status: "transfer_status";
15397
15545
  reverses_identifier: "reverses_identifier";
15546
+ transfers: "transfers";
15547
+ reversed_by_identifier: "reversed_by_identifier";
15398
15548
  transfers_count: "transfers_count";
15399
15549
  }>>>;
15400
15550
  deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -15412,6 +15562,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
15412
15562
  validate_final_balance_only: "validate_final_balance_only";
15413
15563
  transfer_status: "transfer_status";
15414
15564
  reverses_identifier: "reverses_identifier";
15565
+ transfers: "transfers";
15566
+ reversed_by_identifier: "reversed_by_identifier";
15415
15567
  transfers_count: "transfers_count";
15416
15568
  }>>>;
15417
15569
  }, import("zod/v4/core").$strip>;
@@ -15612,6 +15764,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
15612
15764
  validate_final_balance_only: "validate_final_balance_only";
15613
15765
  transfer_status: "transfer_status";
15614
15766
  reverses_identifier: "reverses_identifier";
15767
+ transfers: "transfers";
15768
+ reversed_by_identifier: "reversed_by_identifier";
15615
15769
  transfers_count: "transfers_count";
15616
15770
  }>>>;
15617
15771
  deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -15629,6 +15783,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
15629
15783
  validate_final_balance_only: "validate_final_balance_only";
15630
15784
  transfer_status: "transfer_status";
15631
15785
  reverses_identifier: "reverses_identifier";
15786
+ transfers: "transfers";
15787
+ reversed_by_identifier: "reversed_by_identifier";
15632
15788
  transfers_count: "transfers_count";
15633
15789
  }>>>;
15634
15790
  }, import("zod/v4/core").$strip>>>;
@@ -15682,6 +15838,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
15682
15838
  validate_final_balance_only: "validate_final_balance_only";
15683
15839
  transfer_status: "transfer_status";
15684
15840
  reverses_identifier: "reverses_identifier";
15841
+ transfers: "transfers";
15842
+ reversed_by_identifier: "reversed_by_identifier";
15685
15843
  transfers_count: "transfers_count";
15686
15844
  }>>>>;
15687
15845
  deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -15699,6 +15857,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
15699
15857
  validate_final_balance_only: "validate_final_balance_only";
15700
15858
  transfer_status: "transfer_status";
15701
15859
  reverses_identifier: "reverses_identifier";
15860
+ transfers: "transfers";
15861
+ reversed_by_identifier: "reversed_by_identifier";
15702
15862
  transfers_count: "transfers_count";
15703
15863
  }>>>>;
15704
15864
  limit: z.ZodOptional<z.ZodNumber>;
@@ -15777,6 +15937,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
15777
15937
  validate_final_balance_only: "validate_final_balance_only";
15778
15938
  transfer_status: "transfer_status";
15779
15939
  reverses_identifier: "reverses_identifier";
15940
+ transfers: "transfers";
15941
+ reversed_by_identifier: "reversed_by_identifier";
15780
15942
  transfers_count: "transfers_count";
15781
15943
  }>>>>;
15782
15944
  deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -15794,6 +15956,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
15794
15956
  validate_final_balance_only: "validate_final_balance_only";
15795
15957
  transfer_status: "transfer_status";
15796
15958
  reverses_identifier: "reverses_identifier";
15959
+ transfers: "transfers";
15960
+ reversed_by_identifier: "reversed_by_identifier";
15797
15961
  transfers_count: "transfers_count";
15798
15962
  }>>>>;
15799
15963
  limit: z.ZodOptional<z.ZodNumber>;
@@ -15839,6 +16003,40 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
15839
16003
  distribution: "distribution";
15840
16004
  }>>>;
15841
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>>>;
15842
16040
  transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
15843
16041
  }, z.core.$strict>>>>;
15844
16042
  metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
@@ -15884,6 +16082,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
15884
16082
  validate_final_balance_only: "validate_final_balance_only";
15885
16083
  transfer_status: "transfer_status";
15886
16084
  reverses_identifier: "reverses_identifier";
16085
+ transfers: "transfers";
16086
+ reversed_by_identifier: "reversed_by_identifier";
15887
16087
  transfers_count: "transfers_count";
15888
16088
  }>>>>>;
15889
16089
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -15901,6 +16101,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
15901
16101
  validate_final_balance_only: "validate_final_balance_only";
15902
16102
  transfer_status: "transfer_status";
15903
16103
  reverses_identifier: "reverses_identifier";
16104
+ transfers: "transfers";
16105
+ reversed_by_identifier: "reversed_by_identifier";
15904
16106
  transfers_count: "transfers_count";
15905
16107
  }>>>>>;
15906
16108
  limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
@@ -15979,6 +16181,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
15979
16181
  validate_final_balance_only: "validate_final_balance_only";
15980
16182
  transfer_status: "transfer_status";
15981
16183
  reverses_identifier: "reverses_identifier";
16184
+ transfers: "transfers";
16185
+ reversed_by_identifier: "reversed_by_identifier";
15982
16186
  transfers_count: "transfers_count";
15983
16187
  }>>>>>;
15984
16188
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -15996,6 +16200,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
15996
16200
  validate_final_balance_only: "validate_final_balance_only";
15997
16201
  transfer_status: "transfer_status";
15998
16202
  reverses_identifier: "reverses_identifier";
16203
+ transfers: "transfers";
16204
+ reversed_by_identifier: "reversed_by_identifier";
15999
16205
  transfers_count: "transfers_count";
16000
16206
  }>>>>>;
16001
16207
  limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
@@ -19211,6 +19417,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
19211
19417
  transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19212
19418
  create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
19213
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>>;
19214
19422
  }, z.core.$strip>;
19215
19423
  export const getTransferGroupInputSchema: z.ZodObject<{
19216
19424
  transfer_group: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
@@ -19222,6 +19430,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
19222
19430
  transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
19223
19431
  create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
19224
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>>;
19225
19435
  }, z.core.$strip>>;
19226
19436
  }, z.core.$strict>;
19227
19437
  export const getTransferGroupFnOutputSchema: z.ZodObject<{
@@ -19251,6 +19461,40 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
19251
19461
  distribution: "distribution";
19252
19462
  }>>;
19253
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>>;
19254
19498
  }, z.core.$strict>>;
19255
19499
  }, z.core.$strip>;
19256
19500
  export const config: {};
@@ -21947,6 +22191,40 @@ declare module "wapi-client/txs/update-transfer-group-many/update-transfer-group
21947
22191
  distribution: "distribution";
21948
22192
  }>>;
21949
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>>;
21950
22228
  }, z.core.$strict>>;
21951
22229
  transfers: z.ZodArray<z.ZodObject<{
21952
22230
  id: z.ZodNumber;
@@ -22140,6 +22418,40 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups.sc
22140
22418
  distribution: "distribution";
22141
22419
  }>>;
22142
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>>;
22143
22455
  }, z.core.$strict>>;
22144
22456
  transfers: z.ZodArray<z.ZodObject<{
22145
22457
  id: z.ZodNumber;
@@ -28289,6 +28601,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
28289
28601
  validate_final_balance_only: "validate_final_balance_only";
28290
28602
  transfer_status: "transfer_status";
28291
28603
  reverses_identifier: "reverses_identifier";
28604
+ transfers: "transfers";
28605
+ reversed_by_identifier: "reversed_by_identifier";
28292
28606
  transfers_count: "transfers_count";
28293
28607
  }>>>>;
28294
28608
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -28306,6 +28620,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
28306
28620
  validate_final_balance_only: "validate_final_balance_only";
28307
28621
  transfer_status: "transfer_status";
28308
28622
  reverses_identifier: "reverses_identifier";
28623
+ transfers: "transfers";
28624
+ reversed_by_identifier: "reversed_by_identifier";
28309
28625
  transfers_count: "transfers_count";
28310
28626
  }>>>>;
28311
28627
  limit: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -28350,6 +28666,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
28350
28666
  status?: "open" | "closed" | undefined;
28351
28667
  type?: "regular" | "exchange" | "distribution" | undefined;
28352
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;
28353
28695
  transfers_count?: number | undefined;
28354
28696
  }, AllTrue<{
28355
28697
  id: number;
@@ -28366,6 +28708,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
28366
28708
  status?: "open" | "closed" | undefined;
28367
28709
  type?: "regular" | "exchange" | "distribution" | undefined;
28368
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;
28369
28737
  }>, {}, true>;
28370
28738
  }
28371
28739
  declare module "wapi-client/fns/export-transfers/export-transfers.enums" {
@@ -29355,6 +29723,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
29355
29723
  validate_final_balance_only: "validate_final_balance_only";
29356
29724
  transfer_status: "transfer_status";
29357
29725
  reverses_identifier: "reverses_identifier";
29726
+ transfers: "transfers";
29727
+ reversed_by_identifier: "reversed_by_identifier";
29358
29728
  transfers_count: "transfers_count";
29359
29729
  }>>>>;
29360
29730
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -29372,6 +29742,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
29372
29742
  validate_final_balance_only: "validate_final_balance_only";
29373
29743
  transfer_status: "transfer_status";
29374
29744
  reverses_identifier: "reverses_identifier";
29745
+ transfers: "transfers";
29746
+ reversed_by_identifier: "reversed_by_identifier";
29375
29747
  transfers_count: "transfers_count";
29376
29748
  }>>>>;
29377
29749
  limit: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -29403,6 +29775,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
29403
29775
  status?: "open" | "closed" | undefined;
29404
29776
  type?: "regular" | "exchange" | "distribution" | undefined;
29405
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;
29406
29804
  transfers_count?: number | undefined;
29407
29805
  }, AllTrue<{
29408
29806
  id: number;
@@ -29419,6 +29817,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
29419
29817
  status?: "open" | "closed" | undefined;
29420
29818
  type?: "regular" | "exchange" | "distribution" | undefined;
29421
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;
29422
29846
  }>, {}, true>;
29423
29847
  }
29424
29848
  declare module "wapi-client/fns/find-transfers/find-transfers.enums" {
@@ -31052,6 +31476,32 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups" {
31052
31476
  status?: "open" | "closed" | undefined;
31053
31477
  type?: "regular" | "exchange" | "distribution" | undefined;
31054
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;
31055
31505
  }[];
31056
31506
  transfers: {
31057
31507
  id: number;
@@ -32930,6 +33380,8 @@ declare module "client.js" {
32930
33380
  validate_final_balance_only: "validate_final_balance_only";
32931
33381
  transfer_status: "transfer_status";
32932
33382
  reverses_identifier: "reverses_identifier";
33383
+ transfers: "transfers";
33384
+ reversed_by_identifier: "reversed_by_identifier";
32933
33385
  transfers_count: "transfers_count";
32934
33386
  }>>>>;
32935
33387
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -32947,6 +33399,8 @@ declare module "client.js" {
32947
33399
  validate_final_balance_only: "validate_final_balance_only";
32948
33400
  transfer_status: "transfer_status";
32949
33401
  reverses_identifier: "reverses_identifier";
33402
+ transfers: "transfers";
33403
+ reversed_by_identifier: "reversed_by_identifier";
32950
33404
  transfers_count: "transfers_count";
32951
33405
  }>>>>;
32952
33406
  limit: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -32991,6 +33445,32 @@ declare module "client.js" {
32991
33445
  status?: "open" | "closed" | undefined;
32992
33446
  type?: "regular" | "exchange" | "distribution" | undefined;
32993
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;
32994
33474
  transfers_count?: number | undefined;
32995
33475
  }, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
32996
33476
  id: number;
@@ -33007,6 +33487,32 @@ declare module "client.js" {
33007
33487
  status?: "open" | "closed" | undefined;
33008
33488
  type?: "regular" | "exchange" | "distribution" | undefined;
33009
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;
33010
33516
  }>, {}, true>;
33011
33517
  /**
33012
33518
  *
@@ -34046,6 +34552,8 @@ declare module "client.js" {
34046
34552
  validate_final_balance_only: "validate_final_balance_only";
34047
34553
  transfer_status: "transfer_status";
34048
34554
  reverses_identifier: "reverses_identifier";
34555
+ transfers: "transfers";
34556
+ reversed_by_identifier: "reversed_by_identifier";
34049
34557
  transfers_count: "transfers_count";
34050
34558
  }>>>>;
34051
34559
  deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
@@ -34063,6 +34571,8 @@ declare module "client.js" {
34063
34571
  validate_final_balance_only: "validate_final_balance_only";
34064
34572
  transfer_status: "transfer_status";
34065
34573
  reverses_identifier: "reverses_identifier";
34574
+ transfers: "transfers";
34575
+ reversed_by_identifier: "reversed_by_identifier";
34066
34576
  transfers_count: "transfers_count";
34067
34577
  }>>>>;
34068
34578
  limit: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -34094,6 +34604,32 @@ declare module "client.js" {
34094
34604
  status?: "open" | "closed" | undefined;
34095
34605
  type?: "regular" | "exchange" | "distribution" | undefined;
34096
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;
34097
34633
  transfers_count?: number | undefined;
34098
34634
  }, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
34099
34635
  id: number;
@@ -34110,6 +34646,32 @@ declare module "client.js" {
34110
34646
  status?: "open" | "closed" | undefined;
34111
34647
  type?: "regular" | "exchange" | "distribution" | undefined;
34112
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;
34113
34675
  }>, {}, true>;
34114
34676
  /**
34115
34677
  *
@@ -35730,6 +36292,32 @@ declare module "client.js" {
35730
36292
  status?: "open" | "closed" | undefined;
35731
36293
  type?: "regular" | "exchange" | "distribution" | undefined;
35732
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;
35733
36321
  }[];
35734
36322
  transfers: {
35735
36323
  id: number;