wapi-client 0.15.5 → 0.15.9
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/fns/create-transfer/create-transfer.browser.cjs +2 -2
- package/dist/fns/create-transfer/create-transfer.browser.js +2 -2
- package/dist/fns/create-transfer/create-transfer.cjs +2 -2
- package/dist/fns/create-transfer/create-transfer.js +2 -2
- package/dist/fns/create-transfer/create-transfer.schema.zod.browser.cjs +2 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.browser.js +2 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.cjs +2 -1
- package/dist/fns/create-transfer/create-transfer.schema.zod.js +2 -1
- package/dist/fns/create-wallet/create-wallet.browser.cjs +2 -14
- package/dist/fns/create-wallet/create-wallet.browser.js +2 -15
- package/dist/fns/create-wallet/create-wallet.cjs +2 -14
- package/dist/fns/create-wallet/create-wallet.js +2 -15
- package/dist/fns/create-wallet/create-wallet.schema.zod.browser.cjs +3 -1
- package/dist/fns/create-wallet/create-wallet.schema.zod.browser.js +3 -1
- package/dist/fns/create-wallet/create-wallet.schema.zod.cjs +3 -1
- package/dist/fns/create-wallet/create-wallet.schema.zod.js +3 -1
- package/dist/fns/update-wallet/update-wallet.browser.cjs +18 -7
- package/dist/fns/update-wallet/update-wallet.browser.js +20 -7
- package/dist/fns/update-wallet/update-wallet.cjs +18 -7
- package/dist/fns/update-wallet/update-wallet.js +20 -7
- package/dist/fns/update-wallet/update-wallet.schema.zod.browser.cjs +3 -1
- package/dist/fns/update-wallet/update-wallet.schema.zod.browser.js +3 -1
- package/dist/fns/update-wallet/update-wallet.schema.zod.cjs +3 -1
- package/dist/fns/update-wallet/update-wallet.schema.zod.js +3 -1
- 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/txs/create-wallet/create-wallet.schema.zod.browser.cjs +3 -1
- package/dist/txs/create-wallet/create-wallet.schema.zod.browser.js +3 -1
- package/dist/txs/create-wallet/create-wallet.schema.zod.cjs +3 -1
- package/dist/txs/create-wallet/create-wallet.schema.zod.js +3 -1
- 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/txs/update-wallet/update-wallet.schema.zod.browser.cjs +3 -1
- package/dist/txs/update-wallet/update-wallet.schema.zod.browser.js +3 -1
- package/dist/txs/update-wallet/update-wallet.schema.zod.cjs +3 -1
- package/dist/txs/update-wallet/update-wallet.schema.zod.js +3 -1
- package/dist/types/wapi-client.d.ts +631 -0
- package/dist/wapi-client-web.iife.js +6 -6
- package/dist/wapi-client.iife.js +6 -6
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -9080,6 +9152,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9080
9152
|
transfer_group: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
9081
9153
|
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
9082
9154
|
type: z.ZodLiteral<"transfer">;
|
|
9155
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
9083
9156
|
}, z.core.$strip>;
|
|
9084
9157
|
export const createTransferRegularInputSchema: z.ZodObject<{
|
|
9085
9158
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9095,6 +9168,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9095
9168
|
}>>;
|
|
9096
9169
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9097
9170
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9171
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9098
9172
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9099
9173
|
}, z.core.$strip>;
|
|
9100
9174
|
export const createTransferWithdrawalInputSchema: z.ZodObject<{
|
|
@@ -9107,6 +9181,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9107
9181
|
finished: "finished";
|
|
9108
9182
|
}>>;
|
|
9109
9183
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9184
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9110
9185
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9111
9186
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9112
9187
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9122,6 +9197,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9122
9197
|
finished: "finished";
|
|
9123
9198
|
}>>;
|
|
9124
9199
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9200
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9125
9201
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9126
9202
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9127
9203
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9141,6 +9217,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9141
9217
|
}>>;
|
|
9142
9218
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9143
9219
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9220
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9144
9221
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9145
9222
|
}, z.core.$strip>, z.ZodObject<{
|
|
9146
9223
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9152,6 +9229,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9152
9229
|
finished: "finished";
|
|
9153
9230
|
}>>;
|
|
9154
9231
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9232
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9155
9233
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9156
9234
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9157
9235
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9166,6 +9244,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9166
9244
|
finished: "finished";
|
|
9167
9245
|
}>>;
|
|
9168
9246
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9247
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9169
9248
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9170
9249
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9171
9250
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9185,6 +9264,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9185
9264
|
}>>;
|
|
9186
9265
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9187
9266
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9267
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9188
9268
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9189
9269
|
}, z.core.$strip>, z.ZodObject<{
|
|
9190
9270
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9196,6 +9276,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9196
9276
|
finished: "finished";
|
|
9197
9277
|
}>>;
|
|
9198
9278
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9279
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9199
9280
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9200
9281
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9201
9282
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9210,6 +9291,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9210
9291
|
finished: "finished";
|
|
9211
9292
|
}>>;
|
|
9212
9293
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9294
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9213
9295
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9214
9296
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9215
9297
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9313,6 +9395,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9313
9395
|
finished: "finished";
|
|
9314
9396
|
}>>;
|
|
9315
9397
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9398
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9316
9399
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9317
9400
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9318
9401
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9328,6 +9411,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9328
9411
|
finished: "finished";
|
|
9329
9412
|
}>>;
|
|
9330
9413
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9414
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9331
9415
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9332
9416
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9333
9417
|
}, z.core.$strip>;
|
|
@@ -9342,6 +9426,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9342
9426
|
finished: "finished";
|
|
9343
9427
|
}>>;
|
|
9344
9428
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9429
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9345
9430
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9346
9431
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9347
9432
|
}, z.core.$strip>;
|
|
@@ -9356,6 +9441,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9356
9441
|
finished: "finished";
|
|
9357
9442
|
}>>;
|
|
9358
9443
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9444
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9359
9445
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9360
9446
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9361
9447
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9369,6 +9455,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9369
9455
|
finished: "finished";
|
|
9370
9456
|
}>>;
|
|
9371
9457
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9458
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9372
9459
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9373
9460
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9374
9461
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9383,6 +9470,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9383
9470
|
finished: "finished";
|
|
9384
9471
|
}>>;
|
|
9385
9472
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9473
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9386
9474
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9387
9475
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9388
9476
|
}, z.core.$strip>]>;
|
|
@@ -9409,6 +9497,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9409
9497
|
finished: "finished";
|
|
9410
9498
|
}>>;
|
|
9411
9499
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9500
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9412
9501
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9413
9502
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9414
9503
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9422,6 +9511,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9422
9511
|
finished: "finished";
|
|
9423
9512
|
}>>;
|
|
9424
9513
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9514
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9425
9515
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9426
9516
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9427
9517
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9436,6 +9526,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9436
9526
|
finished: "finished";
|
|
9437
9527
|
}>>;
|
|
9438
9528
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9529
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9439
9530
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9440
9531
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9441
9532
|
}, z.core.$strip>]>>>;
|
|
@@ -9463,6 +9554,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9463
9554
|
finished: "finished";
|
|
9464
9555
|
}>>;
|
|
9465
9556
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9557
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9466
9558
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9467
9559
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9468
9560
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9476,6 +9568,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9476
9568
|
finished: "finished";
|
|
9477
9569
|
}>>;
|
|
9478
9570
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9571
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9479
9572
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9480
9573
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9481
9574
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9490,6 +9583,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9490
9583
|
finished: "finished";
|
|
9491
9584
|
}>>;
|
|
9492
9585
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9586
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9493
9587
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9494
9588
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9495
9589
|
}, z.core.$strip>]>>>;
|
|
@@ -9940,6 +10034,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
9940
10034
|
}>>;
|
|
9941
10035
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9942
10036
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
10037
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9943
10038
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9944
10039
|
}, z.core.$strip>, z.ZodObject<{
|
|
9945
10040
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9951,6 +10046,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
9951
10046
|
finished: "finished";
|
|
9952
10047
|
}>>;
|
|
9953
10048
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
10049
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9954
10050
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9955
10051
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9956
10052
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9965,6 +10061,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
9965
10061
|
finished: "finished";
|
|
9966
10062
|
}>>;
|
|
9967
10063
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
10064
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9968
10065
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9969
10066
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9970
10067
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -10064,6 +10161,8 @@ declare module "wapi-client/txs/create-wallet/create-wallet.schema.zod" {
|
|
|
10064
10161
|
active: "active";
|
|
10065
10162
|
disabled: "disabled";
|
|
10066
10163
|
}>>;
|
|
10164
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10165
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10067
10166
|
}, z.core.$strip>;
|
|
10068
10167
|
export const createWalletTxInputOptionsSchema: z.ZodObject<{
|
|
10069
10168
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10083,6 +10182,8 @@ declare module "wapi-client/txs/create-wallet/create-wallet.schema.zod" {
|
|
|
10083
10182
|
active: "active";
|
|
10084
10183
|
disabled: "disabled";
|
|
10085
10184
|
}>>;
|
|
10185
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10186
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10086
10187
|
}, z.core.$strip>>>;
|
|
10087
10188
|
options: z.ZodOptional<z.ZodObject<{
|
|
10088
10189
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10122,6 +10223,8 @@ declare module "wapi-client/fns/create-wallet/create-wallet.schema.zod" {
|
|
|
10122
10223
|
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
10123
10224
|
metadata: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodType<import("wapi-client/db/consts").Metadata, unknown, import("zod/v4/core").$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>>;
|
|
10124
10225
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
10226
|
+
default_allow_negative: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10227
|
+
default_allow_positive: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10125
10228
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
10126
10229
|
active: "active";
|
|
10127
10230
|
disabled: "disabled";
|
|
@@ -10131,6 +10234,8 @@ declare module "wapi-client/fns/create-wallet/create-wallet.schema.zod" {
|
|
|
10131
10234
|
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
10132
10235
|
metadata: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodType<import("wapi-client/db/consts").Metadata, unknown, import("zod/v4/core").$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>>;
|
|
10133
10236
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
10237
|
+
default_allow_negative: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10238
|
+
default_allow_positive: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10134
10239
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
10135
10240
|
active: "active";
|
|
10136
10241
|
disabled: "disabled";
|
|
@@ -14669,6 +14774,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14669
14774
|
distribution: "distribution";
|
|
14670
14775
|
}>>;
|
|
14671
14776
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14777
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
14778
|
+
id: z.ZodNumber;
|
|
14779
|
+
identifier: z.ZodString;
|
|
14780
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
14781
|
+
from_wallet_id: z.ZodNumber;
|
|
14782
|
+
to_wallet_id: z.ZodNumber;
|
|
14783
|
+
token_id: z.ZodNumber;
|
|
14784
|
+
amount: z.ZodNumber;
|
|
14785
|
+
type: z.ZodEnum<{
|
|
14786
|
+
transfer: "transfer";
|
|
14787
|
+
deposit: "deposit";
|
|
14788
|
+
withdrawal: "withdrawal";
|
|
14789
|
+
}>;
|
|
14790
|
+
status: z.ZodEnum<{
|
|
14791
|
+
pending: "pending";
|
|
14792
|
+
finished: "finished";
|
|
14793
|
+
cancelled: "cancelled";
|
|
14794
|
+
}>;
|
|
14795
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
14796
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
14797
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
14798
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
14799
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
14800
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14801
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14802
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
14803
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
14804
|
+
from_wallet_foreign: z.ZodString;
|
|
14805
|
+
to_wallet_foreign: z.ZodString;
|
|
14806
|
+
token_foreign: z.ZodString;
|
|
14807
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
14808
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
14809
|
+
}, z.core.$strict>>>>;
|
|
14810
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14672
14811
|
transfers_count: z.ZodOptional<z.ZodNumber>;
|
|
14673
14812
|
}, z.core.$strict>;
|
|
14674
14813
|
export const findTransferGroupManyTxInputOptionsSchema: z.ZodObject<{
|
|
@@ -14718,6 +14857,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14718
14857
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14719
14858
|
transfer_status: "transfer_status";
|
|
14720
14859
|
reverses_identifier: "reverses_identifier";
|
|
14860
|
+
transfers: "transfers";
|
|
14861
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
14721
14862
|
transfers_count: "transfers_count";
|
|
14722
14863
|
}>>>;
|
|
14723
14864
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -14735,6 +14876,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14735
14876
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14736
14877
|
transfer_status: "transfer_status";
|
|
14737
14878
|
reverses_identifier: "reverses_identifier";
|
|
14879
|
+
transfers: "transfers";
|
|
14880
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
14738
14881
|
transfers_count: "transfers_count";
|
|
14739
14882
|
}>>>;
|
|
14740
14883
|
}, z.core.$strip>;
|
|
@@ -15278,6 +15421,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15278
15421
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15279
15422
|
transfer_status: "transfer_status";
|
|
15280
15423
|
reverses_identifier: "reverses_identifier";
|
|
15424
|
+
transfers: "transfers";
|
|
15425
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15281
15426
|
transfers_count: "transfers_count";
|
|
15282
15427
|
}>>>;
|
|
15283
15428
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15295,6 +15440,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15295
15440
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15296
15441
|
transfer_status: "transfer_status";
|
|
15297
15442
|
reverses_identifier: "reverses_identifier";
|
|
15443
|
+
transfers: "transfers";
|
|
15444
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15298
15445
|
transfers_count: "transfers_count";
|
|
15299
15446
|
}>>>;
|
|
15300
15447
|
}, z.core.$strip>>;
|
|
@@ -15326,6 +15473,40 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15326
15473
|
distribution: "distribution";
|
|
15327
15474
|
}>>>;
|
|
15328
15475
|
reverses_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15476
|
+
transfers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
15477
|
+
id: z.ZodNumber;
|
|
15478
|
+
identifier: z.ZodString;
|
|
15479
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
15480
|
+
from_wallet_id: z.ZodNumber;
|
|
15481
|
+
to_wallet_id: z.ZodNumber;
|
|
15482
|
+
token_id: z.ZodNumber;
|
|
15483
|
+
amount: z.ZodNumber;
|
|
15484
|
+
type: z.ZodEnum<{
|
|
15485
|
+
transfer: "transfer";
|
|
15486
|
+
deposit: "deposit";
|
|
15487
|
+
withdrawal: "withdrawal";
|
|
15488
|
+
}>;
|
|
15489
|
+
status: z.ZodEnum<{
|
|
15490
|
+
pending: "pending";
|
|
15491
|
+
finished: "finished";
|
|
15492
|
+
cancelled: "cancelled";
|
|
15493
|
+
}>;
|
|
15494
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
15495
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
15496
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
15497
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
15498
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
15499
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15500
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15501
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
15502
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
15503
|
+
from_wallet_foreign: z.ZodString;
|
|
15504
|
+
to_wallet_foreign: z.ZodString;
|
|
15505
|
+
token_foreign: z.ZodString;
|
|
15506
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
15507
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
15508
|
+
}, z.core.$strict>>>>>;
|
|
15509
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15329
15510
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15330
15511
|
}, z.core.$strict>>>>;
|
|
15331
15512
|
metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -15395,6 +15576,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15395
15576
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15396
15577
|
transfer_status: "transfer_status";
|
|
15397
15578
|
reverses_identifier: "reverses_identifier";
|
|
15579
|
+
transfers: "transfers";
|
|
15580
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15398
15581
|
transfers_count: "transfers_count";
|
|
15399
15582
|
}>>>;
|
|
15400
15583
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15412,6 +15595,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15412
15595
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15413
15596
|
transfer_status: "transfer_status";
|
|
15414
15597
|
reverses_identifier: "reverses_identifier";
|
|
15598
|
+
transfers: "transfers";
|
|
15599
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15415
15600
|
transfers_count: "transfers_count";
|
|
15416
15601
|
}>>>;
|
|
15417
15602
|
}, import("zod/v4/core").$strip>;
|
|
@@ -15612,6 +15797,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15612
15797
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15613
15798
|
transfer_status: "transfer_status";
|
|
15614
15799
|
reverses_identifier: "reverses_identifier";
|
|
15800
|
+
transfers: "transfers";
|
|
15801
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15615
15802
|
transfers_count: "transfers_count";
|
|
15616
15803
|
}>>>;
|
|
15617
15804
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15629,6 +15816,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15629
15816
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15630
15817
|
transfer_status: "transfer_status";
|
|
15631
15818
|
reverses_identifier: "reverses_identifier";
|
|
15819
|
+
transfers: "transfers";
|
|
15820
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15632
15821
|
transfers_count: "transfers_count";
|
|
15633
15822
|
}>>>;
|
|
15634
15823
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -15682,6 +15871,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15682
15871
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15683
15872
|
transfer_status: "transfer_status";
|
|
15684
15873
|
reverses_identifier: "reverses_identifier";
|
|
15874
|
+
transfers: "transfers";
|
|
15875
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15685
15876
|
transfers_count: "transfers_count";
|
|
15686
15877
|
}>>>>;
|
|
15687
15878
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15699,6 +15890,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15699
15890
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15700
15891
|
transfer_status: "transfer_status";
|
|
15701
15892
|
reverses_identifier: "reverses_identifier";
|
|
15893
|
+
transfers: "transfers";
|
|
15894
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15702
15895
|
transfers_count: "transfers_count";
|
|
15703
15896
|
}>>>>;
|
|
15704
15897
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15777,6 +15970,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15777
15970
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15778
15971
|
transfer_status: "transfer_status";
|
|
15779
15972
|
reverses_identifier: "reverses_identifier";
|
|
15973
|
+
transfers: "transfers";
|
|
15974
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15780
15975
|
transfers_count: "transfers_count";
|
|
15781
15976
|
}>>>>;
|
|
15782
15977
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15794,6 +15989,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15794
15989
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15795
15990
|
transfer_status: "transfer_status";
|
|
15796
15991
|
reverses_identifier: "reverses_identifier";
|
|
15992
|
+
transfers: "transfers";
|
|
15993
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15797
15994
|
transfers_count: "transfers_count";
|
|
15798
15995
|
}>>>>;
|
|
15799
15996
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15839,6 +16036,40 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15839
16036
|
distribution: "distribution";
|
|
15840
16037
|
}>>>;
|
|
15841
16038
|
reverses_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16039
|
+
transfers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
16040
|
+
id: z.ZodNumber;
|
|
16041
|
+
identifier: z.ZodString;
|
|
16042
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
16043
|
+
from_wallet_id: z.ZodNumber;
|
|
16044
|
+
to_wallet_id: z.ZodNumber;
|
|
16045
|
+
token_id: z.ZodNumber;
|
|
16046
|
+
amount: z.ZodNumber;
|
|
16047
|
+
type: z.ZodEnum<{
|
|
16048
|
+
transfer: "transfer";
|
|
16049
|
+
deposit: "deposit";
|
|
16050
|
+
withdrawal: "withdrawal";
|
|
16051
|
+
}>;
|
|
16052
|
+
status: z.ZodEnum<{
|
|
16053
|
+
pending: "pending";
|
|
16054
|
+
finished: "finished";
|
|
16055
|
+
cancelled: "cancelled";
|
|
16056
|
+
}>;
|
|
16057
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
16058
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
16059
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
16060
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
16061
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
16062
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16063
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16064
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
16065
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16066
|
+
from_wallet_foreign: z.ZodString;
|
|
16067
|
+
to_wallet_foreign: z.ZodString;
|
|
16068
|
+
token_foreign: z.ZodString;
|
|
16069
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
16070
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
16071
|
+
}, z.core.$strict>>>>>;
|
|
16072
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15842
16073
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15843
16074
|
}, z.core.$strict>>>>;
|
|
15844
16075
|
metadata: z.ZodNonOptional<z.ZodOptional<z.ZodObject<{
|
|
@@ -15884,6 +16115,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15884
16115
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15885
16116
|
transfer_status: "transfer_status";
|
|
15886
16117
|
reverses_identifier: "reverses_identifier";
|
|
16118
|
+
transfers: "transfers";
|
|
16119
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15887
16120
|
transfers_count: "transfers_count";
|
|
15888
16121
|
}>>>>>;
|
|
15889
16122
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15901,6 +16134,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15901
16134
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15902
16135
|
transfer_status: "transfer_status";
|
|
15903
16136
|
reverses_identifier: "reverses_identifier";
|
|
16137
|
+
transfers: "transfers";
|
|
16138
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15904
16139
|
transfers_count: "transfers_count";
|
|
15905
16140
|
}>>>>>;
|
|
15906
16141
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -15979,6 +16214,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15979
16214
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15980
16215
|
transfer_status: "transfer_status";
|
|
15981
16216
|
reverses_identifier: "reverses_identifier";
|
|
16217
|
+
transfers: "transfers";
|
|
16218
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15982
16219
|
transfers_count: "transfers_count";
|
|
15983
16220
|
}>>>>>;
|
|
15984
16221
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15996,6 +16233,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
15996
16233
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15997
16234
|
transfer_status: "transfer_status";
|
|
15998
16235
|
reverses_identifier: "reverses_identifier";
|
|
16236
|
+
transfers: "transfers";
|
|
16237
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
15999
16238
|
transfers_count: "transfers_count";
|
|
16000
16239
|
}>>>>>;
|
|
16001
16240
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -19211,6 +19450,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19211
19450
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19212
19451
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19213
19452
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19453
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19454
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19214
19455
|
}, z.core.$strip>;
|
|
19215
19456
|
export const getTransferGroupInputSchema: z.ZodObject<{
|
|
19216
19457
|
transfer_group: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -19222,6 +19463,8 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19222
19463
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
19223
19464
|
create_if_not_exists: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19224
19465
|
return_only_id: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19466
|
+
return_transfers: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19467
|
+
return_reversed_by: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
19225
19468
|
}, z.core.$strip>>;
|
|
19226
19469
|
}, z.core.$strict>;
|
|
19227
19470
|
export const getTransferGroupFnOutputSchema: z.ZodObject<{
|
|
@@ -19251,6 +19494,40 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19251
19494
|
distribution: "distribution";
|
|
19252
19495
|
}>>;
|
|
19253
19496
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19497
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
19498
|
+
id: z.ZodNumber;
|
|
19499
|
+
identifier: z.ZodString;
|
|
19500
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
19501
|
+
from_wallet_id: z.ZodNumber;
|
|
19502
|
+
to_wallet_id: z.ZodNumber;
|
|
19503
|
+
token_id: z.ZodNumber;
|
|
19504
|
+
amount: z.ZodNumber;
|
|
19505
|
+
type: z.ZodEnum<{
|
|
19506
|
+
transfer: "transfer";
|
|
19507
|
+
deposit: "deposit";
|
|
19508
|
+
withdrawal: "withdrawal";
|
|
19509
|
+
}>;
|
|
19510
|
+
status: z.ZodEnum<{
|
|
19511
|
+
pending: "pending";
|
|
19512
|
+
finished: "finished";
|
|
19513
|
+
cancelled: "cancelled";
|
|
19514
|
+
}>;
|
|
19515
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
19516
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
19517
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
19518
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
19519
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
19520
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19521
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19522
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
19523
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19524
|
+
from_wallet_foreign: z.ZodString;
|
|
19525
|
+
to_wallet_foreign: z.ZodString;
|
|
19526
|
+
token_foreign: z.ZodString;
|
|
19527
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
19528
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
19529
|
+
}, z.core.$strict>>>>;
|
|
19530
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19254
19531
|
}, z.core.$strict>>;
|
|
19255
19532
|
}, z.core.$strip>;
|
|
19256
19533
|
export const config: {};
|
|
@@ -21947,6 +22224,40 @@ declare module "wapi-client/txs/update-transfer-group-many/update-transfer-group
|
|
|
21947
22224
|
distribution: "distribution";
|
|
21948
22225
|
}>>;
|
|
21949
22226
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22227
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
22228
|
+
id: z.ZodNumber;
|
|
22229
|
+
identifier: z.ZodString;
|
|
22230
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
22231
|
+
from_wallet_id: z.ZodNumber;
|
|
22232
|
+
to_wallet_id: z.ZodNumber;
|
|
22233
|
+
token_id: z.ZodNumber;
|
|
22234
|
+
amount: z.ZodNumber;
|
|
22235
|
+
type: z.ZodEnum<{
|
|
22236
|
+
transfer: "transfer";
|
|
22237
|
+
deposit: "deposit";
|
|
22238
|
+
withdrawal: "withdrawal";
|
|
22239
|
+
}>;
|
|
22240
|
+
status: z.ZodEnum<{
|
|
22241
|
+
pending: "pending";
|
|
22242
|
+
finished: "finished";
|
|
22243
|
+
cancelled: "cancelled";
|
|
22244
|
+
}>;
|
|
22245
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
22246
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
22247
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22248
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22249
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
22250
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22251
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22252
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
22253
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22254
|
+
from_wallet_foreign: z.ZodString;
|
|
22255
|
+
to_wallet_foreign: z.ZodString;
|
|
22256
|
+
token_foreign: z.ZodString;
|
|
22257
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22258
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22259
|
+
}, z.core.$strict>>>>;
|
|
22260
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21950
22261
|
}, z.core.$strict>>;
|
|
21951
22262
|
transfers: z.ZodArray<z.ZodObject<{
|
|
21952
22263
|
id: z.ZodNumber;
|
|
@@ -22140,6 +22451,40 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups.sc
|
|
|
22140
22451
|
distribution: "distribution";
|
|
22141
22452
|
}>>;
|
|
22142
22453
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22454
|
+
transfers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
22455
|
+
id: z.ZodNumber;
|
|
22456
|
+
identifier: z.ZodString;
|
|
22457
|
+
control_hash: z.ZodNullable<z.ZodString>;
|
|
22458
|
+
from_wallet_id: z.ZodNumber;
|
|
22459
|
+
to_wallet_id: z.ZodNumber;
|
|
22460
|
+
token_id: z.ZodNumber;
|
|
22461
|
+
amount: z.ZodNumber;
|
|
22462
|
+
type: z.ZodEnum<{
|
|
22463
|
+
transfer: "transfer";
|
|
22464
|
+
deposit: "deposit";
|
|
22465
|
+
withdrawal: "withdrawal";
|
|
22466
|
+
}>;
|
|
22467
|
+
status: z.ZodEnum<{
|
|
22468
|
+
pending: "pending";
|
|
22469
|
+
finished: "finished";
|
|
22470
|
+
cancelled: "cancelled";
|
|
22471
|
+
}>;
|
|
22472
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
22473
|
+
auto_hash: z.ZodDefault<z.ZodBoolean>;
|
|
22474
|
+
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22475
|
+
updated_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
22476
|
+
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
22477
|
+
transfer_group_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22478
|
+
reverses_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22479
|
+
status_finalized_at: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
22480
|
+
group_validate: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22481
|
+
from_wallet_foreign: z.ZodString;
|
|
22482
|
+
to_wallet_foreign: z.ZodString;
|
|
22483
|
+
token_foreign: z.ZodString;
|
|
22484
|
+
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22485
|
+
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22486
|
+
}, z.core.$strict>>>>;
|
|
22487
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22143
22488
|
}, z.core.$strict>>;
|
|
22144
22489
|
transfers: z.ZodArray<z.ZodObject<{
|
|
22145
22490
|
id: z.ZodNumber;
|
|
@@ -22923,6 +23268,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
22923
23268
|
export const updateWalletModificationsSchema: z.ZodObject<{
|
|
22924
23269
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
22925
23270
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23271
|
+
default_allow_negative: z.ZodDefault<z.ZodBoolean>;
|
|
23272
|
+
default_allow_positive: z.ZodDefault<z.ZodBoolean>;
|
|
22926
23273
|
status: z.ZodEnum<{
|
|
22927
23274
|
active: "active";
|
|
22928
23275
|
disabled: "disabled";
|
|
@@ -22931,6 +23278,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
22931
23278
|
export const updateWalletFieldsSchema: z.ZodEnum<{
|
|
22932
23279
|
metadata: "metadata";
|
|
22933
23280
|
name: "name";
|
|
23281
|
+
default_allow_negative: "default_allow_negative";
|
|
23282
|
+
default_allow_positive: "default_allow_positive";
|
|
22934
23283
|
status: "status";
|
|
22935
23284
|
}>;
|
|
22936
23285
|
export const updateWalletTxInputSchema: z.ZodObject<{
|
|
@@ -22956,6 +23305,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
22956
23305
|
update: z.ZodObject<{
|
|
22957
23306
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>>;
|
|
22958
23307
|
name: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
23308
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23309
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
22959
23310
|
status: z.ZodOptional<z.ZodEnum<{
|
|
22960
23311
|
active: "active";
|
|
22961
23312
|
disabled: "disabled";
|
|
@@ -23007,6 +23358,8 @@ declare module "wapi-client/fns/update-wallet/update-wallet.schema.zod" {
|
|
|
23007
23358
|
active: "active";
|
|
23008
23359
|
disabled: "disabled";
|
|
23009
23360
|
}>>;
|
|
23361
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23362
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23010
23363
|
}, z.core.$strip>;
|
|
23011
23364
|
export const updateWalletFnInputSchema: z.ZodObject<{
|
|
23012
23365
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -23016,6 +23369,8 @@ declare module "wapi-client/fns/update-wallet/update-wallet.schema.zod" {
|
|
|
23016
23369
|
active: "active";
|
|
23017
23370
|
disabled: "disabled";
|
|
23018
23371
|
}>>;
|
|
23372
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23373
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23019
23374
|
options: z.ZodOptional<z.ZodObject<{
|
|
23020
23375
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23021
23376
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -28289,6 +28644,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28289
28644
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28290
28645
|
transfer_status: "transfer_status";
|
|
28291
28646
|
reverses_identifier: "reverses_identifier";
|
|
28647
|
+
transfers: "transfers";
|
|
28648
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
28292
28649
|
transfers_count: "transfers_count";
|
|
28293
28650
|
}>>>>;
|
|
28294
28651
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -28306,6 +28663,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28306
28663
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28307
28664
|
transfer_status: "transfer_status";
|
|
28308
28665
|
reverses_identifier: "reverses_identifier";
|
|
28666
|
+
transfers: "transfers";
|
|
28667
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
28309
28668
|
transfers_count: "transfers_count";
|
|
28310
28669
|
}>>>>;
|
|
28311
28670
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -28350,6 +28709,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28350
28709
|
status?: "open" | "closed" | undefined;
|
|
28351
28710
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
28352
28711
|
reverses_identifier?: string | null | undefined;
|
|
28712
|
+
transfers?: {
|
|
28713
|
+
id: number;
|
|
28714
|
+
identifier: string;
|
|
28715
|
+
control_hash: string | null;
|
|
28716
|
+
from_wallet_id: number;
|
|
28717
|
+
to_wallet_id: number;
|
|
28718
|
+
token_id: number;
|
|
28719
|
+
amount: number;
|
|
28720
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
28721
|
+
status: "pending" | "finished" | "cancelled";
|
|
28722
|
+
force: boolean;
|
|
28723
|
+
auto_hash: boolean;
|
|
28724
|
+
created_at: string;
|
|
28725
|
+
updated_at: string;
|
|
28726
|
+
from_wallet_foreign: string;
|
|
28727
|
+
to_wallet_foreign: string;
|
|
28728
|
+
token_foreign: string;
|
|
28729
|
+
transfer_group_identifier: string | null;
|
|
28730
|
+
reverses_identifier: string | null;
|
|
28731
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
28732
|
+
transfer_group_id?: number | null | undefined;
|
|
28733
|
+
reverses_id?: number | null | undefined;
|
|
28734
|
+
status_finalized_at?: string | null | undefined;
|
|
28735
|
+
group_validate?: boolean | null | undefined;
|
|
28736
|
+
}[] | null | undefined;
|
|
28737
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28353
28738
|
transfers_count?: number | undefined;
|
|
28354
28739
|
}, AllTrue<{
|
|
28355
28740
|
id: number;
|
|
@@ -28366,6 +28751,32 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28366
28751
|
status?: "open" | "closed" | undefined;
|
|
28367
28752
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
28368
28753
|
reverses_identifier?: string | null | undefined;
|
|
28754
|
+
transfers?: {
|
|
28755
|
+
id: number;
|
|
28756
|
+
identifier: string;
|
|
28757
|
+
control_hash: string | null;
|
|
28758
|
+
from_wallet_id: number;
|
|
28759
|
+
to_wallet_id: number;
|
|
28760
|
+
token_id: number;
|
|
28761
|
+
amount: number;
|
|
28762
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
28763
|
+
status: "pending" | "finished" | "cancelled";
|
|
28764
|
+
force: boolean;
|
|
28765
|
+
auto_hash: boolean;
|
|
28766
|
+
created_at: string;
|
|
28767
|
+
updated_at: string;
|
|
28768
|
+
from_wallet_foreign: string;
|
|
28769
|
+
to_wallet_foreign: string;
|
|
28770
|
+
token_foreign: string;
|
|
28771
|
+
transfer_group_identifier: string | null;
|
|
28772
|
+
reverses_identifier: string | null;
|
|
28773
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
28774
|
+
transfer_group_id?: number | null | undefined;
|
|
28775
|
+
reverses_id?: number | null | undefined;
|
|
28776
|
+
status_finalized_at?: string | null | undefined;
|
|
28777
|
+
group_validate?: boolean | null | undefined;
|
|
28778
|
+
}[] | null | undefined;
|
|
28779
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28369
28780
|
}>, {}, true>;
|
|
28370
28781
|
}
|
|
28371
28782
|
declare module "wapi-client/fns/export-transfers/export-transfers.enums" {
|
|
@@ -29355,6 +29766,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29355
29766
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29356
29767
|
transfer_status: "transfer_status";
|
|
29357
29768
|
reverses_identifier: "reverses_identifier";
|
|
29769
|
+
transfers: "transfers";
|
|
29770
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
29358
29771
|
transfers_count: "transfers_count";
|
|
29359
29772
|
}>>>>;
|
|
29360
29773
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -29372,6 +29785,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29372
29785
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29373
29786
|
transfer_status: "transfer_status";
|
|
29374
29787
|
reverses_identifier: "reverses_identifier";
|
|
29788
|
+
transfers: "transfers";
|
|
29789
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
29375
29790
|
transfers_count: "transfers_count";
|
|
29376
29791
|
}>>>>;
|
|
29377
29792
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -29403,6 +29818,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29403
29818
|
status?: "open" | "closed" | undefined;
|
|
29404
29819
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
29405
29820
|
reverses_identifier?: string | null | undefined;
|
|
29821
|
+
transfers?: {
|
|
29822
|
+
id: number;
|
|
29823
|
+
identifier: string;
|
|
29824
|
+
control_hash: string | null;
|
|
29825
|
+
from_wallet_id: number;
|
|
29826
|
+
to_wallet_id: number;
|
|
29827
|
+
token_id: number;
|
|
29828
|
+
amount: number;
|
|
29829
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
29830
|
+
status: "pending" | "finished" | "cancelled";
|
|
29831
|
+
force: boolean;
|
|
29832
|
+
auto_hash: boolean;
|
|
29833
|
+
created_at: string;
|
|
29834
|
+
updated_at: string;
|
|
29835
|
+
from_wallet_foreign: string;
|
|
29836
|
+
to_wallet_foreign: string;
|
|
29837
|
+
token_foreign: string;
|
|
29838
|
+
transfer_group_identifier: string | null;
|
|
29839
|
+
reverses_identifier: string | null;
|
|
29840
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
29841
|
+
transfer_group_id?: number | null | undefined;
|
|
29842
|
+
reverses_id?: number | null | undefined;
|
|
29843
|
+
status_finalized_at?: string | null | undefined;
|
|
29844
|
+
group_validate?: boolean | null | undefined;
|
|
29845
|
+
}[] | null | undefined;
|
|
29846
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29406
29847
|
transfers_count?: number | undefined;
|
|
29407
29848
|
}, AllTrue<{
|
|
29408
29849
|
id: number;
|
|
@@ -29419,6 +29860,32 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29419
29860
|
status?: "open" | "closed" | undefined;
|
|
29420
29861
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
29421
29862
|
reverses_identifier?: string | null | undefined;
|
|
29863
|
+
transfers?: {
|
|
29864
|
+
id: number;
|
|
29865
|
+
identifier: string;
|
|
29866
|
+
control_hash: string | null;
|
|
29867
|
+
from_wallet_id: number;
|
|
29868
|
+
to_wallet_id: number;
|
|
29869
|
+
token_id: number;
|
|
29870
|
+
amount: number;
|
|
29871
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
29872
|
+
status: "pending" | "finished" | "cancelled";
|
|
29873
|
+
force: boolean;
|
|
29874
|
+
auto_hash: boolean;
|
|
29875
|
+
created_at: string;
|
|
29876
|
+
updated_at: string;
|
|
29877
|
+
from_wallet_foreign: string;
|
|
29878
|
+
to_wallet_foreign: string;
|
|
29879
|
+
token_foreign: string;
|
|
29880
|
+
transfer_group_identifier: string | null;
|
|
29881
|
+
reverses_identifier: string | null;
|
|
29882
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
29883
|
+
transfer_group_id?: number | null | undefined;
|
|
29884
|
+
reverses_id?: number | null | undefined;
|
|
29885
|
+
status_finalized_at?: string | null | undefined;
|
|
29886
|
+
group_validate?: boolean | null | undefined;
|
|
29887
|
+
}[] | null | undefined;
|
|
29888
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29422
29889
|
}>, {}, true>;
|
|
29423
29890
|
}
|
|
29424
29891
|
declare module "wapi-client/fns/find-transfers/find-transfers.enums" {
|
|
@@ -31052,6 +31519,32 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups" {
|
|
|
31052
31519
|
status?: "open" | "closed" | undefined;
|
|
31053
31520
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
31054
31521
|
reverses_identifier?: string | null | undefined;
|
|
31522
|
+
transfers?: {
|
|
31523
|
+
id: number;
|
|
31524
|
+
identifier: string;
|
|
31525
|
+
control_hash: string | null;
|
|
31526
|
+
from_wallet_id: number;
|
|
31527
|
+
to_wallet_id: number;
|
|
31528
|
+
token_id: number;
|
|
31529
|
+
amount: number;
|
|
31530
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
31531
|
+
status: "pending" | "finished" | "cancelled";
|
|
31532
|
+
force: boolean;
|
|
31533
|
+
auto_hash: boolean;
|
|
31534
|
+
created_at: string;
|
|
31535
|
+
updated_at: string;
|
|
31536
|
+
from_wallet_foreign: string;
|
|
31537
|
+
to_wallet_foreign: string;
|
|
31538
|
+
token_foreign: string;
|
|
31539
|
+
transfer_group_identifier: string | null;
|
|
31540
|
+
reverses_identifier: string | null;
|
|
31541
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
31542
|
+
transfer_group_id?: number | null | undefined;
|
|
31543
|
+
reverses_id?: number | null | undefined;
|
|
31544
|
+
status_finalized_at?: string | null | undefined;
|
|
31545
|
+
group_validate?: boolean | null | undefined;
|
|
31546
|
+
}[] | null | undefined;
|
|
31547
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31055
31548
|
}[];
|
|
31056
31549
|
transfers: {
|
|
31057
31550
|
id: number;
|
|
@@ -32930,6 +33423,8 @@ declare module "client.js" {
|
|
|
32930
33423
|
validate_final_balance_only: "validate_final_balance_only";
|
|
32931
33424
|
transfer_status: "transfer_status";
|
|
32932
33425
|
reverses_identifier: "reverses_identifier";
|
|
33426
|
+
transfers: "transfers";
|
|
33427
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32933
33428
|
transfers_count: "transfers_count";
|
|
32934
33429
|
}>>>>;
|
|
32935
33430
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -32947,6 +33442,8 @@ declare module "client.js" {
|
|
|
32947
33442
|
validate_final_balance_only: "validate_final_balance_only";
|
|
32948
33443
|
transfer_status: "transfer_status";
|
|
32949
33444
|
reverses_identifier: "reverses_identifier";
|
|
33445
|
+
transfers: "transfers";
|
|
33446
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32950
33447
|
transfers_count: "transfers_count";
|
|
32951
33448
|
}>>>>;
|
|
32952
33449
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -32991,6 +33488,32 @@ declare module "client.js" {
|
|
|
32991
33488
|
status?: "open" | "closed" | undefined;
|
|
32992
33489
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
32993
33490
|
reverses_identifier?: string | null | undefined;
|
|
33491
|
+
transfers?: {
|
|
33492
|
+
id: number;
|
|
33493
|
+
identifier: string;
|
|
33494
|
+
control_hash: string | null;
|
|
33495
|
+
from_wallet_id: number;
|
|
33496
|
+
to_wallet_id: number;
|
|
33497
|
+
token_id: number;
|
|
33498
|
+
amount: number;
|
|
33499
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
33500
|
+
status: "pending" | "finished" | "cancelled";
|
|
33501
|
+
force: boolean;
|
|
33502
|
+
auto_hash: boolean;
|
|
33503
|
+
created_at: string;
|
|
33504
|
+
updated_at: string;
|
|
33505
|
+
from_wallet_foreign: string;
|
|
33506
|
+
to_wallet_foreign: string;
|
|
33507
|
+
token_foreign: string;
|
|
33508
|
+
transfer_group_identifier: string | null;
|
|
33509
|
+
reverses_identifier: string | null;
|
|
33510
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
33511
|
+
transfer_group_id?: number | null | undefined;
|
|
33512
|
+
reverses_id?: number | null | undefined;
|
|
33513
|
+
status_finalized_at?: string | null | undefined;
|
|
33514
|
+
group_validate?: boolean | null | undefined;
|
|
33515
|
+
}[] | null | undefined;
|
|
33516
|
+
reversed_by_identifier?: string | null | undefined;
|
|
32994
33517
|
transfers_count?: number | undefined;
|
|
32995
33518
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
32996
33519
|
id: number;
|
|
@@ -33007,6 +33530,32 @@ declare module "client.js" {
|
|
|
33007
33530
|
status?: "open" | "closed" | undefined;
|
|
33008
33531
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
33009
33532
|
reverses_identifier?: string | null | undefined;
|
|
33533
|
+
transfers?: {
|
|
33534
|
+
id: number;
|
|
33535
|
+
identifier: string;
|
|
33536
|
+
control_hash: string | null;
|
|
33537
|
+
from_wallet_id: number;
|
|
33538
|
+
to_wallet_id: number;
|
|
33539
|
+
token_id: number;
|
|
33540
|
+
amount: number;
|
|
33541
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
33542
|
+
status: "pending" | "finished" | "cancelled";
|
|
33543
|
+
force: boolean;
|
|
33544
|
+
auto_hash: boolean;
|
|
33545
|
+
created_at: string;
|
|
33546
|
+
updated_at: string;
|
|
33547
|
+
from_wallet_foreign: string;
|
|
33548
|
+
to_wallet_foreign: string;
|
|
33549
|
+
token_foreign: string;
|
|
33550
|
+
transfer_group_identifier: string | null;
|
|
33551
|
+
reverses_identifier: string | null;
|
|
33552
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
33553
|
+
transfer_group_id?: number | null | undefined;
|
|
33554
|
+
reverses_id?: number | null | undefined;
|
|
33555
|
+
status_finalized_at?: string | null | undefined;
|
|
33556
|
+
group_validate?: boolean | null | undefined;
|
|
33557
|
+
}[] | null | undefined;
|
|
33558
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33010
33559
|
}>, {}, true>;
|
|
33011
33560
|
/**
|
|
33012
33561
|
*
|
|
@@ -34046,6 +34595,8 @@ declare module "client.js" {
|
|
|
34046
34595
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34047
34596
|
transfer_status: "transfer_status";
|
|
34048
34597
|
reverses_identifier: "reverses_identifier";
|
|
34598
|
+
transfers: "transfers";
|
|
34599
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34049
34600
|
transfers_count: "transfers_count";
|
|
34050
34601
|
}>>>>;
|
|
34051
34602
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -34063,6 +34614,8 @@ declare module "client.js" {
|
|
|
34063
34614
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34064
34615
|
transfer_status: "transfer_status";
|
|
34065
34616
|
reverses_identifier: "reverses_identifier";
|
|
34617
|
+
transfers: "transfers";
|
|
34618
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34066
34619
|
transfers_count: "transfers_count";
|
|
34067
34620
|
}>>>>;
|
|
34068
34621
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -34094,6 +34647,32 @@ declare module "client.js" {
|
|
|
34094
34647
|
status?: "open" | "closed" | undefined;
|
|
34095
34648
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
34096
34649
|
reverses_identifier?: string | null | undefined;
|
|
34650
|
+
transfers?: {
|
|
34651
|
+
id: number;
|
|
34652
|
+
identifier: string;
|
|
34653
|
+
control_hash: string | null;
|
|
34654
|
+
from_wallet_id: number;
|
|
34655
|
+
to_wallet_id: number;
|
|
34656
|
+
token_id: number;
|
|
34657
|
+
amount: number;
|
|
34658
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
34659
|
+
status: "pending" | "finished" | "cancelled";
|
|
34660
|
+
force: boolean;
|
|
34661
|
+
auto_hash: boolean;
|
|
34662
|
+
created_at: string;
|
|
34663
|
+
updated_at: string;
|
|
34664
|
+
from_wallet_foreign: string;
|
|
34665
|
+
to_wallet_foreign: string;
|
|
34666
|
+
token_foreign: string;
|
|
34667
|
+
transfer_group_identifier: string | null;
|
|
34668
|
+
reverses_identifier: string | null;
|
|
34669
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
34670
|
+
transfer_group_id?: number | null | undefined;
|
|
34671
|
+
reverses_id?: number | null | undefined;
|
|
34672
|
+
status_finalized_at?: string | null | undefined;
|
|
34673
|
+
group_validate?: boolean | null | undefined;
|
|
34674
|
+
}[] | null | undefined;
|
|
34675
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34097
34676
|
transfers_count?: number | undefined;
|
|
34098
34677
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
34099
34678
|
id: number;
|
|
@@ -34110,6 +34689,32 @@ declare module "client.js" {
|
|
|
34110
34689
|
status?: "open" | "closed" | undefined;
|
|
34111
34690
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
34112
34691
|
reverses_identifier?: string | null | undefined;
|
|
34692
|
+
transfers?: {
|
|
34693
|
+
id: number;
|
|
34694
|
+
identifier: string;
|
|
34695
|
+
control_hash: string | null;
|
|
34696
|
+
from_wallet_id: number;
|
|
34697
|
+
to_wallet_id: number;
|
|
34698
|
+
token_id: number;
|
|
34699
|
+
amount: number;
|
|
34700
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
34701
|
+
status: "pending" | "finished" | "cancelled";
|
|
34702
|
+
force: boolean;
|
|
34703
|
+
auto_hash: boolean;
|
|
34704
|
+
created_at: string;
|
|
34705
|
+
updated_at: string;
|
|
34706
|
+
from_wallet_foreign: string;
|
|
34707
|
+
to_wallet_foreign: string;
|
|
34708
|
+
token_foreign: string;
|
|
34709
|
+
transfer_group_identifier: string | null;
|
|
34710
|
+
reverses_identifier: string | null;
|
|
34711
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
34712
|
+
transfer_group_id?: number | null | undefined;
|
|
34713
|
+
reverses_id?: number | null | undefined;
|
|
34714
|
+
status_finalized_at?: string | null | undefined;
|
|
34715
|
+
group_validate?: boolean | null | undefined;
|
|
34716
|
+
}[] | null | undefined;
|
|
34717
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34113
34718
|
}>, {}, true>;
|
|
34114
34719
|
/**
|
|
34115
34720
|
*
|
|
@@ -35730,6 +36335,32 @@ declare module "client.js" {
|
|
|
35730
36335
|
status?: "open" | "closed" | undefined;
|
|
35731
36336
|
type?: "regular" | "exchange" | "distribution" | undefined;
|
|
35732
36337
|
reverses_identifier?: string | null | undefined;
|
|
36338
|
+
transfers?: {
|
|
36339
|
+
id: number;
|
|
36340
|
+
identifier: string;
|
|
36341
|
+
control_hash: string | null;
|
|
36342
|
+
from_wallet_id: number;
|
|
36343
|
+
to_wallet_id: number;
|
|
36344
|
+
token_id: number;
|
|
36345
|
+
amount: number;
|
|
36346
|
+
type: "transfer" | "deposit" | "withdrawal";
|
|
36347
|
+
status: "pending" | "finished" | "cancelled";
|
|
36348
|
+
force: boolean;
|
|
36349
|
+
auto_hash: boolean;
|
|
36350
|
+
created_at: string;
|
|
36351
|
+
updated_at: string;
|
|
36352
|
+
from_wallet_foreign: string;
|
|
36353
|
+
to_wallet_foreign: string;
|
|
36354
|
+
token_foreign: string;
|
|
36355
|
+
transfer_group_identifier: string | null;
|
|
36356
|
+
reverses_identifier: string | null;
|
|
36357
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
36358
|
+
transfer_group_id?: number | null | undefined;
|
|
36359
|
+
reverses_id?: number | null | undefined;
|
|
36360
|
+
status_finalized_at?: string | null | undefined;
|
|
36361
|
+
group_validate?: boolean | null | undefined;
|
|
36362
|
+
}[] | null | undefined;
|
|
36363
|
+
reversed_by_identifier?: string | null | undefined;
|
|
35733
36364
|
}[];
|
|
35734
36365
|
transfers: {
|
|
35735
36366
|
id: number;
|