wapi-client 0.16.0-beta.1 → 0.16.0-beta.3
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/get-transfer.schema.zod.browser.cjs +2 -1
- package/dist/txs/get-transfer/get-transfer.schema.zod.browser.js +2 -1
- package/dist/txs/get-transfer/get-transfer.schema.zod.cjs +2 -1
- package/dist/txs/get-transfer/get-transfer.schema.zod.js +2 -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 +162 -24
- package/dist/wapi-client-web.iife.js +6 -6
- package/dist/wapi-client.iife.js +6 -6
- package/package.json +1 -1
|
@@ -2265,6 +2265,7 @@ declare module "wapi-client/txs/get-transfer/get-transfer.schema.zod" {
|
|
|
2265
2265
|
token_foreign: z.ZodString;
|
|
2266
2266
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2267
2267
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2268
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2268
2269
|
}, z.core.$strict>;
|
|
2269
2270
|
export const transferWithBalanceOutputSchema: z.ZodObject<{
|
|
2270
2271
|
id: z.ZodNumber;
|
|
@@ -2297,6 +2298,7 @@ declare module "wapi-client/txs/get-transfer/get-transfer.schema.zod" {
|
|
|
2297
2298
|
token_foreign: z.ZodString;
|
|
2298
2299
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2299
2300
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2301
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2300
2302
|
balance_id: z.ZodNullable<z.ZodNumber>;
|
|
2301
2303
|
balance_pending: z.ZodNullable<z.ZodNumber>;
|
|
2302
2304
|
balance_pending_to: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2338,6 +2340,7 @@ declare module "wapi-client/txs/get-transfer/get-transfer.schema.zod" {
|
|
|
2338
2340
|
token_foreign: z.ZodString;
|
|
2339
2341
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2340
2342
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2343
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2341
2344
|
}, z.core.$strict>>;
|
|
2342
2345
|
}, z.core.$strip>;
|
|
2343
2346
|
}
|
|
@@ -2659,6 +2662,7 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2659
2662
|
token_foreign: z.ZodString;
|
|
2660
2663
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2661
2664
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2665
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2662
2666
|
}, z.core.$strict>>>>;
|
|
2663
2667
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2664
2668
|
}, z.core.$strict>;
|
|
@@ -2721,6 +2725,7 @@ declare module "wapi-client/txs/get-transfer-group/get-transfer-group.schema.zod
|
|
|
2721
2725
|
token_foreign: z.ZodString;
|
|
2722
2726
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
2723
2727
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
2728
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2724
2729
|
}, z.core.$strict>>>>;
|
|
2725
2730
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2726
2731
|
}, z.core.$strict>>;
|
|
@@ -2823,6 +2828,7 @@ declare module "wapi-client/txs/find-transfer-many/find-transfer-many.schema.zod
|
|
|
2823
2828
|
token_foreign: "token_foreign";
|
|
2824
2829
|
transfer_group_identifier: "transfer_group_identifier";
|
|
2825
2830
|
reverses_identifier: "reverses_identifier";
|
|
2831
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
2826
2832
|
}>>>;
|
|
2827
2833
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2828
2834
|
type: "type";
|
|
@@ -2848,6 +2854,7 @@ declare module "wapi-client/txs/find-transfer-many/find-transfer-many.schema.zod
|
|
|
2848
2854
|
token_foreign: "token_foreign";
|
|
2849
2855
|
transfer_group_identifier: "transfer_group_identifier";
|
|
2850
2856
|
reverses_identifier: "reverses_identifier";
|
|
2857
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
2851
2858
|
}>>>;
|
|
2852
2859
|
return_running_balance_for_wallet: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
2853
2860
|
id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -4594,6 +4601,7 @@ declare module "wapi-client/txs/find-transfer-many/find-transfer-many.schema.zod
|
|
|
4594
4601
|
token_foreign: "token_foreign";
|
|
4595
4602
|
transfer_group_identifier: "transfer_group_identifier";
|
|
4596
4603
|
reverses_identifier: "reverses_identifier";
|
|
4604
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
4597
4605
|
}>>>;
|
|
4598
4606
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4599
4607
|
type: "type";
|
|
@@ -4619,6 +4627,7 @@ declare module "wapi-client/txs/find-transfer-many/find-transfer-many.schema.zod
|
|
|
4619
4627
|
token_foreign: "token_foreign";
|
|
4620
4628
|
transfer_group_identifier: "transfer_group_identifier";
|
|
4621
4629
|
reverses_identifier: "reverses_identifier";
|
|
4630
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
4622
4631
|
}>>>;
|
|
4623
4632
|
return_running_balance_for_wallet: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
4624
4633
|
id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -4697,6 +4706,7 @@ declare module "wapi-client/txs/find-transfer-many/find-transfer-many.schema.zod
|
|
|
4697
4706
|
token_foreign: z.ZodOptional<z.ZodString>;
|
|
4698
4707
|
transfer_group_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4699
4708
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4709
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4700
4710
|
balance_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4701
4711
|
balance_pending: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4702
4712
|
balance_pending_to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -7150,6 +7160,7 @@ declare module "wapi-client/txs/create-transfer/create-transfer.schema.zod" {
|
|
|
7150
7160
|
token_foreign: z.ZodString;
|
|
7151
7161
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
7152
7162
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
7163
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7153
7164
|
}, z.core.$strict>>>>;
|
|
7154
7165
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7155
7166
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -8074,6 +8085,7 @@ declare module "wapi-client/txs/create-transfer-group/create-transfer-group.sche
|
|
|
8074
8085
|
token_foreign: z.ZodString;
|
|
8075
8086
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8076
8087
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8088
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8077
8089
|
}, z.core.$strict>>>;
|
|
8078
8090
|
}, z.core.$strip>;
|
|
8079
8091
|
}
|
|
@@ -8403,6 +8415,7 @@ declare module "wapi-client/txs/create-contract/create-contract.schema.zod" {
|
|
|
8403
8415
|
token_foreign: z.ZodString;
|
|
8404
8416
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8405
8417
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8418
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8406
8419
|
}, z.core.$strict>>>;
|
|
8407
8420
|
}, z.core.$strip>>;
|
|
8408
8421
|
}, z.core.$strip>;
|
|
@@ -8542,6 +8555,7 @@ declare module "wapi-client/fns/create-contract/create-contract.schema.zod" {
|
|
|
8542
8555
|
token_foreign: z.ZodString;
|
|
8543
8556
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8544
8557
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8558
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8545
8559
|
}, z.core.$strict>>>;
|
|
8546
8560
|
}, z.core.$strip>>;
|
|
8547
8561
|
}, z.core.$strip>;
|
|
@@ -8687,6 +8701,7 @@ declare module "wapi-client/txs/create-deposit/create-deposit.schema.zod" {
|
|
|
8687
8701
|
token_foreign: z.ZodString;
|
|
8688
8702
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8689
8703
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8704
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8690
8705
|
}, z.core.$strict>>>>;
|
|
8691
8706
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8692
8707
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -8797,6 +8812,7 @@ declare module "wapi-client/fns/create-deposit/create-deposit.schema.zod" {
|
|
|
8797
8812
|
token_foreign: z.ZodString;
|
|
8798
8813
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8799
8814
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8815
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8800
8816
|
}, z.core.$strict>>>>;
|
|
8801
8817
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8802
8818
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -8938,6 +8954,7 @@ declare module "wapi-client/fns/create-exchange/create-exchange.schema.zod" {
|
|
|
8938
8954
|
token_foreign: z.ZodString;
|
|
8939
8955
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
8940
8956
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
8957
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8941
8958
|
}, z.core.$strict>>>;
|
|
8942
8959
|
}, z.core.$strip>;
|
|
8943
8960
|
export const config: {};
|
|
@@ -9160,6 +9177,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9160
9177
|
transfer_group: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
9161
9178
|
created_at: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
9162
9179
|
type: z.ZodLiteral<"transfer">;
|
|
9180
|
+
force: z.ZodDefault<z.ZodBoolean>;
|
|
9163
9181
|
}, z.core.$strip>;
|
|
9164
9182
|
export const createTransferRegularInputSchema: z.ZodObject<{
|
|
9165
9183
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9175,6 +9193,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9175
9193
|
}>>;
|
|
9176
9194
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9177
9195
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9196
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9178
9197
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9179
9198
|
}, z.core.$strip>;
|
|
9180
9199
|
export const createTransferWithdrawalInputSchema: z.ZodObject<{
|
|
@@ -9187,6 +9206,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9187
9206
|
finished: "finished";
|
|
9188
9207
|
}>>;
|
|
9189
9208
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9209
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9190
9210
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9191
9211
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9192
9212
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9202,6 +9222,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9202
9222
|
finished: "finished";
|
|
9203
9223
|
}>>;
|
|
9204
9224
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9225
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9205
9226
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9206
9227
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9207
9228
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9221,6 +9242,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9221
9242
|
}>>;
|
|
9222
9243
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9223
9244
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9245
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9224
9246
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9225
9247
|
}, z.core.$strip>, z.ZodObject<{
|
|
9226
9248
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9232,6 +9254,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9232
9254
|
finished: "finished";
|
|
9233
9255
|
}>>;
|
|
9234
9256
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9257
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9235
9258
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9236
9259
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9237
9260
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9246,6 +9269,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9246
9269
|
finished: "finished";
|
|
9247
9270
|
}>>;
|
|
9248
9271
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9272
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9249
9273
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9250
9274
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9251
9275
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9265,6 +9289,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9265
9289
|
}>>;
|
|
9266
9290
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9267
9291
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
9292
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9268
9293
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
9269
9294
|
}, z.core.$strip>, z.ZodObject<{
|
|
9270
9295
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -9276,6 +9301,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9276
9301
|
finished: "finished";
|
|
9277
9302
|
}>>;
|
|
9278
9303
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9304
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9279
9305
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9280
9306
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9281
9307
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9290,6 +9316,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9290
9316
|
finished: "finished";
|
|
9291
9317
|
}>>;
|
|
9292
9318
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9319
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9293
9320
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9294
9321
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
9295
9322
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9336,6 +9363,7 @@ declare module "wapi-client/fns/create-transfer/create-transfer.schema.zod" {
|
|
|
9336
9363
|
token_foreign: z.ZodString;
|
|
9337
9364
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
9338
9365
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
9366
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9339
9367
|
}, z.core.$strict>>>>;
|
|
9340
9368
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
9341
9369
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -9393,6 +9421,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9393
9421
|
finished: "finished";
|
|
9394
9422
|
}>>;
|
|
9395
9423
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9424
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9396
9425
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9397
9426
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9398
9427
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9408,6 +9437,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9408
9437
|
finished: "finished";
|
|
9409
9438
|
}>>;
|
|
9410
9439
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9440
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9411
9441
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9412
9442
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9413
9443
|
}, z.core.$strip>;
|
|
@@ -9422,6 +9452,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9422
9452
|
finished: "finished";
|
|
9423
9453
|
}>>;
|
|
9424
9454
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9455
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9425
9456
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9426
9457
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9427
9458
|
}, z.core.$strip>;
|
|
@@ -9436,6 +9467,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9436
9467
|
finished: "finished";
|
|
9437
9468
|
}>>;
|
|
9438
9469
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9470
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9439
9471
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9440
9472
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9441
9473
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9449,6 +9481,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9449
9481
|
finished: "finished";
|
|
9450
9482
|
}>>;
|
|
9451
9483
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9484
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9452
9485
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9453
9486
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9454
9487
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9463,6 +9496,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9463
9496
|
finished: "finished";
|
|
9464
9497
|
}>>;
|
|
9465
9498
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9499
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9466
9500
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9467
9501
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9468
9502
|
}, z.core.$strip>]>;
|
|
@@ -9489,6 +9523,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9489
9523
|
finished: "finished";
|
|
9490
9524
|
}>>;
|
|
9491
9525
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9526
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9492
9527
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9493
9528
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9494
9529
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9502,6 +9537,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9502
9537
|
finished: "finished";
|
|
9503
9538
|
}>>;
|
|
9504
9539
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9540
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9505
9541
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9506
9542
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9507
9543
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9516,6 +9552,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9516
9552
|
finished: "finished";
|
|
9517
9553
|
}>>;
|
|
9518
9554
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9555
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9519
9556
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9520
9557
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9521
9558
|
}, z.core.$strip>]>>>;
|
|
@@ -9543,6 +9580,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9543
9580
|
finished: "finished";
|
|
9544
9581
|
}>>;
|
|
9545
9582
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9583
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9546
9584
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9547
9585
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9548
9586
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -9556,6 +9594,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9556
9594
|
finished: "finished";
|
|
9557
9595
|
}>>;
|
|
9558
9596
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9597
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9559
9598
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9560
9599
|
from_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9561
9600
|
to_wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -9570,6 +9609,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9570
9609
|
finished: "finished";
|
|
9571
9610
|
}>>;
|
|
9572
9611
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
9612
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9573
9613
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9574
9614
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9575
9615
|
}, z.core.$strip>]>>>;
|
|
@@ -9639,6 +9679,7 @@ declare module "wapi-client/fns/create-transfer-group/create-transfer-group.sche
|
|
|
9639
9679
|
token_foreign: z.ZodString;
|
|
9640
9680
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
9641
9681
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
9682
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9642
9683
|
}, z.core.$strict>>>;
|
|
9643
9684
|
}, z.core.$strip>;
|
|
9644
9685
|
export const config: {};
|
|
@@ -9959,6 +10000,7 @@ declare module "wapi-client/txs/create-transfer-many/create-transfer-many.schema
|
|
|
9959
10000
|
token_foreign: z.ZodString;
|
|
9960
10001
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
9961
10002
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
10003
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9962
10004
|
}, z.core.$strict>>>>>;
|
|
9963
10005
|
from_balances: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
|
|
9964
10006
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -10020,6 +10062,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
10020
10062
|
}>>;
|
|
10021
10063
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
10022
10064
|
created_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
10065
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10023
10066
|
type: z.ZodOptional<z.ZodLiteral<"transfer">>;
|
|
10024
10067
|
}, z.core.$strip>, z.ZodObject<{
|
|
10025
10068
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -10031,6 +10074,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
10031
10074
|
finished: "finished";
|
|
10032
10075
|
}>>;
|
|
10033
10076
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
10077
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10034
10078
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10035
10079
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
10036
10080
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -10045,6 +10089,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
10045
10089
|
finished: "finished";
|
|
10046
10090
|
}>>;
|
|
10047
10091
|
amount: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
|
|
10092
|
+
force: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10048
10093
|
latest_control_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10049
10094
|
transfer_group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
10050
10095
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -10091,6 +10136,7 @@ declare module "wapi-client/fns/create-transfers/create-transfers.schema.zod" {
|
|
|
10091
10136
|
token_foreign: z.ZodString;
|
|
10092
10137
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
10093
10138
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
10139
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10094
10140
|
}, z.core.$strict>>>>>;
|
|
10095
10141
|
from_balances: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
|
|
10096
10142
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -10144,6 +10190,8 @@ declare module "wapi-client/txs/create-wallet/create-wallet.schema.zod" {
|
|
|
10144
10190
|
active: "active";
|
|
10145
10191
|
disabled: "disabled";
|
|
10146
10192
|
}>>;
|
|
10193
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10194
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10147
10195
|
}, z.core.$strip>;
|
|
10148
10196
|
export const createWalletTxInputOptionsSchema: z.ZodObject<{
|
|
10149
10197
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10163,6 +10211,8 @@ declare module "wapi-client/txs/create-wallet/create-wallet.schema.zod" {
|
|
|
10163
10211
|
active: "active";
|
|
10164
10212
|
disabled: "disabled";
|
|
10165
10213
|
}>>;
|
|
10214
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10215
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10166
10216
|
}, z.core.$strip>>>;
|
|
10167
10217
|
options: z.ZodOptional<z.ZodObject<{
|
|
10168
10218
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -10202,6 +10252,8 @@ declare module "wapi-client/fns/create-wallet/create-wallet.schema.zod" {
|
|
|
10202
10252
|
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
10203
10253
|
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>>>>;
|
|
10204
10254
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
10255
|
+
default_allow_negative: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10256
|
+
default_allow_positive: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10205
10257
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
10206
10258
|
active: "active";
|
|
10207
10259
|
disabled: "disabled";
|
|
@@ -10211,6 +10263,8 @@ declare module "wapi-client/fns/create-wallet/create-wallet.schema.zod" {
|
|
|
10211
10263
|
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
10212
10264
|
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>>>>;
|
|
10213
10265
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
10266
|
+
default_allow_negative: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10267
|
+
default_allow_positive: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10214
10268
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
10215
10269
|
active: "active";
|
|
10216
10270
|
disabled: "disabled";
|
|
@@ -10378,6 +10432,7 @@ declare module "wapi-client/txs/create-withdrawal/create-withdrawal.schema.zod"
|
|
|
10378
10432
|
token_foreign: z.ZodString;
|
|
10379
10433
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
10380
10434
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
10435
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10381
10436
|
}, z.core.$strict>>>>;
|
|
10382
10437
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
10383
10438
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -10488,6 +10543,7 @@ declare module "wapi-client/fns/create-withdrawal/create-withdrawal.schema.zod"
|
|
|
10488
10543
|
token_foreign: z.ZodString;
|
|
10489
10544
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
10490
10545
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
10546
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10491
10547
|
}, z.core.$strict>>>>;
|
|
10492
10548
|
from_balance: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
10493
10549
|
token_id: z.ZodNonOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -14781,6 +14837,7 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14781
14837
|
token_foreign: z.ZodString;
|
|
14782
14838
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
14783
14839
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
14840
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14784
14841
|
}, z.core.$strict>>>>;
|
|
14785
14842
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14786
14843
|
transfers_count: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14832,8 +14889,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14832
14889
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14833
14890
|
transfer_status: "transfer_status";
|
|
14834
14891
|
reverses_identifier: "reverses_identifier";
|
|
14835
|
-
transfers: "transfers";
|
|
14836
14892
|
reversed_by_identifier: "reversed_by_identifier";
|
|
14893
|
+
transfers: "transfers";
|
|
14837
14894
|
transfers_count: "transfers_count";
|
|
14838
14895
|
}>>>;
|
|
14839
14896
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -14851,8 +14908,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
14851
14908
|
validate_final_balance_only: "validate_final_balance_only";
|
|
14852
14909
|
transfer_status: "transfer_status";
|
|
14853
14910
|
reverses_identifier: "reverses_identifier";
|
|
14854
|
-
transfers: "transfers";
|
|
14855
14911
|
reversed_by_identifier: "reversed_by_identifier";
|
|
14912
|
+
transfers: "transfers";
|
|
14856
14913
|
transfers_count: "transfers_count";
|
|
14857
14914
|
}>>>;
|
|
14858
14915
|
}, z.core.$strip>;
|
|
@@ -15396,8 +15453,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15396
15453
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15397
15454
|
transfer_status: "transfer_status";
|
|
15398
15455
|
reverses_identifier: "reverses_identifier";
|
|
15399
|
-
transfers: "transfers";
|
|
15400
15456
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15457
|
+
transfers: "transfers";
|
|
15401
15458
|
transfers_count: "transfers_count";
|
|
15402
15459
|
}>>>;
|
|
15403
15460
|
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15415,8 +15472,8 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15415
15472
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15416
15473
|
transfer_status: "transfer_status";
|
|
15417
15474
|
reverses_identifier: "reverses_identifier";
|
|
15418
|
-
transfers: "transfers";
|
|
15419
15475
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15476
|
+
transfers: "transfers";
|
|
15420
15477
|
transfers_count: "transfers_count";
|
|
15421
15478
|
}>>>;
|
|
15422
15479
|
}, z.core.$strip>>;
|
|
@@ -15480,6 +15537,7 @@ declare module "wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
15480
15537
|
token_foreign: z.ZodString;
|
|
15481
15538
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
15482
15539
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
15540
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15483
15541
|
}, z.core.$strict>>>>>;
|
|
15484
15542
|
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15485
15543
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -15551,8 +15609,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15551
15609
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15552
15610
|
transfer_status: "transfer_status";
|
|
15553
15611
|
reverses_identifier: "reverses_identifier";
|
|
15554
|
-
transfers: "transfers";
|
|
15555
15612
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15613
|
+
transfers: "transfers";
|
|
15556
15614
|
transfers_count: "transfers_count";
|
|
15557
15615
|
}>>>;
|
|
15558
15616
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15570,8 +15628,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15570
15628
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15571
15629
|
transfer_status: "transfer_status";
|
|
15572
15630
|
reverses_identifier: "reverses_identifier";
|
|
15573
|
-
transfers: "transfers";
|
|
15574
15631
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15632
|
+
transfers: "transfers";
|
|
15575
15633
|
transfers_count: "transfers_count";
|
|
15576
15634
|
}>>>;
|
|
15577
15635
|
}, import("zod/v4/core").$strip>;
|
|
@@ -15772,8 +15830,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15772
15830
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15773
15831
|
transfer_status: "transfer_status";
|
|
15774
15832
|
reverses_identifier: "reverses_identifier";
|
|
15775
|
-
transfers: "transfers";
|
|
15776
15833
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15834
|
+
transfers: "transfers";
|
|
15777
15835
|
transfers_count: "transfers_count";
|
|
15778
15836
|
}>>>;
|
|
15779
15837
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -15791,8 +15849,8 @@ declare module "wapi-client/txs/export-transfer-group-many/export-transfer-group
|
|
|
15791
15849
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15792
15850
|
transfer_status: "transfer_status";
|
|
15793
15851
|
reverses_identifier: "reverses_identifier";
|
|
15794
|
-
transfers: "transfers";
|
|
15795
15852
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15853
|
+
transfers: "transfers";
|
|
15796
15854
|
transfers_count: "transfers_count";
|
|
15797
15855
|
}>>>;
|
|
15798
15856
|
}, import("zod/v4/core").$strip>>>;
|
|
@@ -15846,8 +15904,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15846
15904
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15847
15905
|
transfer_status: "transfer_status";
|
|
15848
15906
|
reverses_identifier: "reverses_identifier";
|
|
15849
|
-
transfers: "transfers";
|
|
15850
15907
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15908
|
+
transfers: "transfers";
|
|
15851
15909
|
transfers_count: "transfers_count";
|
|
15852
15910
|
}>>>>;
|
|
15853
15911
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15865,8 +15923,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15865
15923
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15866
15924
|
transfer_status: "transfer_status";
|
|
15867
15925
|
reverses_identifier: "reverses_identifier";
|
|
15868
|
-
transfers: "transfers";
|
|
15869
15926
|
reversed_by_identifier: "reversed_by_identifier";
|
|
15927
|
+
transfers: "transfers";
|
|
15870
15928
|
transfers_count: "transfers_count";
|
|
15871
15929
|
}>>>>;
|
|
15872
15930
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -15945,8 +16003,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15945
16003
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15946
16004
|
transfer_status: "transfer_status";
|
|
15947
16005
|
reverses_identifier: "reverses_identifier";
|
|
15948
|
-
transfers: "transfers";
|
|
15949
16006
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16007
|
+
transfers: "transfers";
|
|
15950
16008
|
transfers_count: "transfers_count";
|
|
15951
16009
|
}>>>>;
|
|
15952
16010
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -15964,8 +16022,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
15964
16022
|
validate_final_balance_only: "validate_final_balance_only";
|
|
15965
16023
|
transfer_status: "transfer_status";
|
|
15966
16024
|
reverses_identifier: "reverses_identifier";
|
|
15967
|
-
transfers: "transfers";
|
|
15968
16025
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16026
|
+
transfers: "transfers";
|
|
15969
16027
|
transfers_count: "transfers_count";
|
|
15970
16028
|
}>>>>;
|
|
15971
16029
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16043,6 +16101,7 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups.schema
|
|
|
16043
16101
|
token_foreign: z.ZodString;
|
|
16044
16102
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
16045
16103
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
16104
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16046
16105
|
}, z.core.$strict>>>>>;
|
|
16047
16106
|
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
16048
16107
|
transfers_count: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -16090,8 +16149,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
16090
16149
|
validate_final_balance_only: "validate_final_balance_only";
|
|
16091
16150
|
transfer_status: "transfer_status";
|
|
16092
16151
|
reverses_identifier: "reverses_identifier";
|
|
16093
|
-
transfers: "transfers";
|
|
16094
16152
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16153
|
+
transfers: "transfers";
|
|
16095
16154
|
transfers_count: "transfers_count";
|
|
16096
16155
|
}>>>>>;
|
|
16097
16156
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -16109,8 +16168,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
16109
16168
|
validate_final_balance_only: "validate_final_balance_only";
|
|
16110
16169
|
transfer_status: "transfer_status";
|
|
16111
16170
|
reverses_identifier: "reverses_identifier";
|
|
16112
|
-
transfers: "transfers";
|
|
16113
16171
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16172
|
+
transfers: "transfers";
|
|
16114
16173
|
transfers_count: "transfers_count";
|
|
16115
16174
|
}>>>>>;
|
|
16116
16175
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -16189,8 +16248,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
16189
16248
|
validate_final_balance_only: "validate_final_balance_only";
|
|
16190
16249
|
transfer_status: "transfer_status";
|
|
16191
16250
|
reverses_identifier: "reverses_identifier";
|
|
16192
|
-
transfers: "transfers";
|
|
16193
16251
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16252
|
+
transfers: "transfers";
|
|
16194
16253
|
transfers_count: "transfers_count";
|
|
16195
16254
|
}>>>>>;
|
|
16196
16255
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -16208,8 +16267,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups.sc
|
|
|
16208
16267
|
validate_final_balance_only: "validate_final_balance_only";
|
|
16209
16268
|
transfer_status: "transfer_status";
|
|
16210
16269
|
reverses_identifier: "reverses_identifier";
|
|
16211
|
-
transfers: "transfers";
|
|
16212
16270
|
reversed_by_identifier: "reversed_by_identifier";
|
|
16271
|
+
transfers: "transfers";
|
|
16213
16272
|
transfers_count: "transfers_count";
|
|
16214
16273
|
}>>>>>;
|
|
16215
16274
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -16319,6 +16378,7 @@ declare module "wapi-client/txs/export-transfer-many/export-transfer-many.schema
|
|
|
16319
16378
|
token_foreign: "token_foreign";
|
|
16320
16379
|
transfer_group_identifier: "transfer_group_identifier";
|
|
16321
16380
|
reverses_identifier: "reverses_identifier";
|
|
16381
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
16322
16382
|
}>>>;
|
|
16323
16383
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
16324
16384
|
type: "type";
|
|
@@ -16344,6 +16404,7 @@ declare module "wapi-client/txs/export-transfer-many/export-transfer-many.schema
|
|
|
16344
16404
|
token_foreign: "token_foreign";
|
|
16345
16405
|
transfer_group_identifier: "transfer_group_identifier";
|
|
16346
16406
|
reverses_identifier: "reverses_identifier";
|
|
16407
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
16347
16408
|
}>>>;
|
|
16348
16409
|
}, import("zod/v4/core").$strip>;
|
|
16349
16410
|
export const exportTransferManyTxInputSchema: import("zod").ZodObject<{
|
|
@@ -16909,6 +16970,7 @@ declare module "wapi-client/txs/export-transfer-many/export-transfer-many.schema
|
|
|
16909
16970
|
token_foreign: "token_foreign";
|
|
16910
16971
|
transfer_group_identifier: "transfer_group_identifier";
|
|
16911
16972
|
reverses_identifier: "reverses_identifier";
|
|
16973
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
16912
16974
|
}>>>;
|
|
16913
16975
|
deselect: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
16914
16976
|
type: "type";
|
|
@@ -16934,6 +16996,7 @@ declare module "wapi-client/txs/export-transfer-many/export-transfer-many.schema
|
|
|
16934
16996
|
token_foreign: "token_foreign";
|
|
16935
16997
|
transfer_group_identifier: "transfer_group_identifier";
|
|
16936
16998
|
reverses_identifier: "reverses_identifier";
|
|
16999
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
16937
17000
|
}>>>;
|
|
16938
17001
|
}, import("zod/v4/core").$strip>>;
|
|
16939
17002
|
}, import("zod/v4/core").$strict>;
|
|
@@ -17004,6 +17067,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers.schema.zod" {
|
|
|
17004
17067
|
token_foreign: "token_foreign";
|
|
17005
17068
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17006
17069
|
reverses_identifier: "reverses_identifier";
|
|
17070
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17007
17071
|
}>>>>;
|
|
17008
17072
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
17009
17073
|
type: "type";
|
|
@@ -17029,6 +17093,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers.schema.zod" {
|
|
|
17029
17093
|
token_foreign: "token_foreign";
|
|
17030
17094
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17031
17095
|
reverses_identifier: "reverses_identifier";
|
|
17096
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17032
17097
|
}>>>>;
|
|
17033
17098
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
17034
17099
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17136,6 +17201,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers.schema.zod" {
|
|
|
17136
17201
|
token_foreign: "token_foreign";
|
|
17137
17202
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17138
17203
|
reverses_identifier: "reverses_identifier";
|
|
17204
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17139
17205
|
}>>>>;
|
|
17140
17206
|
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
17141
17207
|
type: "type";
|
|
@@ -17161,6 +17227,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers.schema.zod" {
|
|
|
17161
17227
|
token_foreign: "token_foreign";
|
|
17162
17228
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17163
17229
|
reverses_identifier: "reverses_identifier";
|
|
17230
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17164
17231
|
}>>>>;
|
|
17165
17232
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
17166
17233
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
@@ -17218,6 +17285,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers.schema.zod" {
|
|
|
17218
17285
|
token_foreign: z.ZodOptional<z.ZodString>;
|
|
17219
17286
|
transfer_group_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17220
17287
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17288
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17221
17289
|
balance_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17222
17290
|
balance_pending: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17223
17291
|
balance_pending_to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -17277,6 +17345,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers.schema.zod" {
|
|
|
17277
17345
|
token_foreign: "token_foreign";
|
|
17278
17346
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17279
17347
|
reverses_identifier: "reverses_identifier";
|
|
17348
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17280
17349
|
}>>>>>;
|
|
17281
17350
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
17282
17351
|
type: "type";
|
|
@@ -17302,6 +17371,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers.schema.zod" {
|
|
|
17302
17371
|
token_foreign: "token_foreign";
|
|
17303
17372
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17304
17373
|
reverses_identifier: "reverses_identifier";
|
|
17374
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17305
17375
|
}>>>>>;
|
|
17306
17376
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
17307
17377
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -17409,6 +17479,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers.schema.zod" {
|
|
|
17409
17479
|
token_foreign: "token_foreign";
|
|
17410
17480
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17411
17481
|
reverses_identifier: "reverses_identifier";
|
|
17482
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17412
17483
|
}>>>>>;
|
|
17413
17484
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
17414
17485
|
type: "type";
|
|
@@ -17434,6 +17505,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers.schema.zod" {
|
|
|
17434
17505
|
token_foreign: "token_foreign";
|
|
17435
17506
|
transfer_group_identifier: "transfer_group_identifier";
|
|
17436
17507
|
reverses_identifier: "reverses_identifier";
|
|
17508
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
17437
17509
|
}>>>>>;
|
|
17438
17510
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
17439
17511
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -19414,6 +19486,7 @@ declare module "wapi-client/fns/get-transfer/get-transfer.schema.zod" {
|
|
|
19414
19486
|
token_foreign: z.ZodString;
|
|
19415
19487
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
19416
19488
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
19489
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19417
19490
|
}, z.core.$strict>>;
|
|
19418
19491
|
}, z.core.$strip>;
|
|
19419
19492
|
export const config: {};
|
|
@@ -19501,6 +19574,7 @@ declare module "wapi-client/fns/get-transfer-group/get-transfer-group.schema.zod
|
|
|
19501
19574
|
token_foreign: z.ZodString;
|
|
19502
19575
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
19503
19576
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
19577
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19504
19578
|
}, z.core.$strict>>>>;
|
|
19505
19579
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19506
19580
|
}, z.core.$strict>>;
|
|
@@ -19903,6 +19977,7 @@ declare module "wapi-client/txs/update-transfer/update-transfer.schema.zod" {
|
|
|
19903
19977
|
token_foreign: z.ZodString;
|
|
19904
19978
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
19905
19979
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
19980
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19906
19981
|
}, z.core.$strict>>;
|
|
19907
19982
|
updated: z.ZodOptional<z.ZodBoolean>;
|
|
19908
19983
|
from_balance: z.ZodOptional<z.ZodObject<{
|
|
@@ -20063,6 +20138,7 @@ declare module "wapi-client/txs/reverse-transfer/reverse-transfer.schema.zod" {
|
|
|
20063
20138
|
token_foreign: z.ZodString;
|
|
20064
20139
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
20065
20140
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
20141
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20066
20142
|
}, z.core.$strict>>;
|
|
20067
20143
|
updated: z.ZodOptional<z.ZodBoolean>;
|
|
20068
20144
|
from_balance: z.ZodOptional<z.ZodObject<{
|
|
@@ -20190,6 +20266,7 @@ declare module "wapi-client/fns/reverse-transfer/reverse-transfer.schema.zod" {
|
|
|
20190
20266
|
token_foreign: z.ZodString;
|
|
20191
20267
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
20192
20268
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
20269
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20193
20270
|
}, z.core.$strict>>;
|
|
20194
20271
|
updated: z.ZodOptional<z.ZodBoolean>;
|
|
20195
20272
|
from_balance: z.ZodOptional<z.ZodObject<{
|
|
@@ -20405,6 +20482,7 @@ declare module "wapi-client/txs/reverse-transfer-group/reverse-transfer-group.sc
|
|
|
20405
20482
|
token_foreign: z.ZodString;
|
|
20406
20483
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
20407
20484
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
20485
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20408
20486
|
}, z.core.$strict>>>;
|
|
20409
20487
|
}, z.core.$strip>;
|
|
20410
20488
|
}
|
|
@@ -20543,6 +20621,7 @@ declare module "wapi-client/fns/reverse-transfer-group/reverse-transfer-group.sc
|
|
|
20543
20621
|
token_foreign: z.ZodString;
|
|
20544
20622
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
20545
20623
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
20624
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20546
20625
|
}, z.core.$strict>>>;
|
|
20547
20626
|
}, z.core.$strip>;
|
|
20548
20627
|
export const config: {};
|
|
@@ -21130,6 +21209,7 @@ declare module "wapi-client/txs/reverse-transfer-many/reverse-transfer-many.sche
|
|
|
21130
21209
|
token_foreign: z.ZodString;
|
|
21131
21210
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
21132
21211
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
21212
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21133
21213
|
}, z.core.$strict>>;
|
|
21134
21214
|
}, z.core.$strip>;
|
|
21135
21215
|
}
|
|
@@ -21390,6 +21470,7 @@ declare module "wapi-client/fns/reverse-transfers/reverse-transfers.schema.zod"
|
|
|
21390
21470
|
token_foreign: import("zod").ZodString;
|
|
21391
21471
|
transfer_group_identifier: import("zod").ZodNullable<import("zod").ZodString>;
|
|
21392
21472
|
reverses_identifier: import("zod").ZodNullable<import("zod").ZodString>;
|
|
21473
|
+
reversed_by_identifier: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
21393
21474
|
}, import("zod/v4/core").$strict>>;
|
|
21394
21475
|
}, import("zod/v4/core").$strip>;
|
|
21395
21476
|
export const config: {
|
|
@@ -21662,6 +21743,7 @@ declare module "wapi-client/fns/update-transfer/update-transfer.schema.zod" {
|
|
|
21662
21743
|
token_foreign: z.ZodString;
|
|
21663
21744
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
21664
21745
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
21746
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21665
21747
|
}, z.core.$strict>>;
|
|
21666
21748
|
updated: z.ZodOptional<z.ZodBoolean>;
|
|
21667
21749
|
from_balance: z.ZodOptional<z.ZodObject<{
|
|
@@ -21857,6 +21939,7 @@ declare module "wapi-client/txs/update-transfer-group/update-transfer-group.sche
|
|
|
21857
21939
|
token_foreign: z.ZodString;
|
|
21858
21940
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
21859
21941
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
21942
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21860
21943
|
}, z.core.$strict>>>;
|
|
21861
21944
|
}, z.core.$strip>;
|
|
21862
21945
|
}
|
|
@@ -21974,6 +22057,7 @@ declare module "wapi-client/fns/update-transfer-group/update-transfer-group.sche
|
|
|
21974
22057
|
token_foreign: z.ZodString;
|
|
21975
22058
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
21976
22059
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22060
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21977
22061
|
}, z.core.$strict>>>;
|
|
21978
22062
|
}, z.core.$strip>;
|
|
21979
22063
|
export const config: {};
|
|
@@ -22231,6 +22315,7 @@ declare module "wapi-client/txs/update-transfer-group-many/update-transfer-group
|
|
|
22231
22315
|
token_foreign: z.ZodString;
|
|
22232
22316
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22233
22317
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22318
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22234
22319
|
}, z.core.$strict>>>>;
|
|
22235
22320
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22236
22321
|
}, z.core.$strict>>;
|
|
@@ -22266,6 +22351,7 @@ declare module "wapi-client/txs/update-transfer-group-many/update-transfer-group
|
|
|
22266
22351
|
token_foreign: z.ZodString;
|
|
22267
22352
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22268
22353
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22354
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22269
22355
|
}, z.core.$strict>>;
|
|
22270
22356
|
updated: z.ZodBoolean;
|
|
22271
22357
|
}, z.core.$strip>;
|
|
@@ -22458,6 +22544,7 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups.sc
|
|
|
22458
22544
|
token_foreign: z.ZodString;
|
|
22459
22545
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22460
22546
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22547
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22461
22548
|
}, z.core.$strict>>>>;
|
|
22462
22549
|
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22463
22550
|
}, z.core.$strict>>;
|
|
@@ -22493,6 +22580,7 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups.sc
|
|
|
22493
22580
|
token_foreign: z.ZodString;
|
|
22494
22581
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
22495
22582
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
22583
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22496
22584
|
}, z.core.$strict>>;
|
|
22497
22585
|
updated: z.ZodBoolean;
|
|
22498
22586
|
}, z.core.$strip>;
|
|
@@ -23065,6 +23153,7 @@ declare module "wapi-client/txs/update-transfer-many/update-transfer-many.schema
|
|
|
23065
23153
|
token_foreign: z.ZodString;
|
|
23066
23154
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
23067
23155
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
23156
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23068
23157
|
}, z.core.$strict>>;
|
|
23069
23158
|
updated: z.ZodBoolean;
|
|
23070
23159
|
}, z.core.$strip>;
|
|
@@ -23226,6 +23315,7 @@ declare module "wapi-client/fns/update-transfers/update-transfers.schema.zod" {
|
|
|
23226
23315
|
token_foreign: z.ZodString;
|
|
23227
23316
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
23228
23317
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
23318
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23229
23319
|
}, z.core.$strict>>;
|
|
23230
23320
|
updated: z.ZodBoolean;
|
|
23231
23321
|
}, z.core.$strip>;
|
|
@@ -23243,6 +23333,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
23243
23333
|
export const updateWalletModificationsSchema: z.ZodObject<{
|
|
23244
23334
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>;
|
|
23245
23335
|
name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
23336
|
+
default_allow_negative: z.ZodDefault<z.ZodBoolean>;
|
|
23337
|
+
default_allow_positive: z.ZodDefault<z.ZodBoolean>;
|
|
23246
23338
|
status: z.ZodEnum<{
|
|
23247
23339
|
active: "active";
|
|
23248
23340
|
disabled: "disabled";
|
|
@@ -23251,6 +23343,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
23251
23343
|
export const updateWalletFieldsSchema: z.ZodEnum<{
|
|
23252
23344
|
metadata: "metadata";
|
|
23253
23345
|
name: "name";
|
|
23346
|
+
default_allow_negative: "default_allow_negative";
|
|
23347
|
+
default_allow_positive: "default_allow_positive";
|
|
23254
23348
|
status: "status";
|
|
23255
23349
|
}>;
|
|
23256
23350
|
export const updateWalletTxInputSchema: z.ZodObject<{
|
|
@@ -23276,6 +23370,8 @@ declare module "wapi-client/txs/update-wallet/update-wallet.schema.zod" {
|
|
|
23276
23370
|
update: z.ZodObject<{
|
|
23277
23371
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown, z.core.$ZodTypeInternals<import("wapi-client/db/consts").Metadata, unknown>>>>;
|
|
23278
23372
|
name: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
23373
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23374
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23279
23375
|
status: z.ZodOptional<z.ZodEnum<{
|
|
23280
23376
|
active: "active";
|
|
23281
23377
|
disabled: "disabled";
|
|
@@ -23327,6 +23423,8 @@ declare module "wapi-client/fns/update-wallet/update-wallet.schema.zod" {
|
|
|
23327
23423
|
active: "active";
|
|
23328
23424
|
disabled: "disabled";
|
|
23329
23425
|
}>>;
|
|
23426
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23427
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23330
23428
|
}, z.core.$strip>;
|
|
23331
23429
|
export const updateWalletFnInputSchema: z.ZodObject<{
|
|
23332
23430
|
wallet: z.ZodNonOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
@@ -23336,6 +23434,8 @@ declare module "wapi-client/fns/update-wallet/update-wallet.schema.zod" {
|
|
|
23336
23434
|
active: "active";
|
|
23337
23435
|
disabled: "disabled";
|
|
23338
23436
|
}>>;
|
|
23437
|
+
default_allow_positive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23438
|
+
default_allow_negative: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23339
23439
|
options: z.ZodOptional<z.ZodObject<{
|
|
23340
23440
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
23341
23441
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -24170,6 +24270,7 @@ declare module "wapi-client/txs/create-distribution/create-distribution.schema.z
|
|
|
24170
24270
|
token_foreign: z.ZodOptional<z.ZodString>;
|
|
24171
24271
|
transfer_group_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24172
24272
|
reverses_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24273
|
+
reversed_by_identifier: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24173
24274
|
}, z.core.$strict>>>>;
|
|
24174
24275
|
}, z.core.$strip>;
|
|
24175
24276
|
}
|
|
@@ -25007,6 +25108,7 @@ declare module "wapi-client/txs/reverse-transfer-group-many/reverse-transfer-gro
|
|
|
25007
25108
|
token_foreign: z.ZodString;
|
|
25008
25109
|
transfer_group_identifier: z.ZodNullable<z.ZodString>;
|
|
25009
25110
|
reverses_identifier: z.ZodNullable<z.ZodString>;
|
|
25111
|
+
reversed_by_identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25010
25112
|
}, z.core.$strict>>;
|
|
25011
25113
|
}, z.core.$strip>;
|
|
25012
25114
|
}
|
|
@@ -27293,6 +27395,7 @@ declare module "wapi-client/fns/aggregate-transfers/aggregate-transfers" {
|
|
|
27293
27395
|
token_foreign: "token_foreign";
|
|
27294
27396
|
transfer_group_identifier: "transfer_group_identifier";
|
|
27295
27397
|
reverses_identifier: "reverses_identifier";
|
|
27398
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
27296
27399
|
}>>>>;
|
|
27297
27400
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
27298
27401
|
type: "type";
|
|
@@ -27318,6 +27421,7 @@ declare module "wapi-client/fns/aggregate-transfers/aggregate-transfers" {
|
|
|
27318
27421
|
token_foreign: "token_foreign";
|
|
27319
27422
|
transfer_group_identifier: "transfer_group_identifier";
|
|
27320
27423
|
reverses_identifier: "reverses_identifier";
|
|
27424
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
27321
27425
|
}>>>>;
|
|
27322
27426
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
27323
27427
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -28631,8 +28735,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28631
28735
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28632
28736
|
transfer_status: "transfer_status";
|
|
28633
28737
|
reverses_identifier: "reverses_identifier";
|
|
28634
|
-
transfers: "transfers";
|
|
28635
28738
|
reversed_by_identifier: "reversed_by_identifier";
|
|
28739
|
+
transfers: "transfers";
|
|
28636
28740
|
transfers_count: "transfers_count";
|
|
28637
28741
|
}>>>>;
|
|
28638
28742
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -28650,8 +28754,8 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28650
28754
|
validate_final_balance_only: "validate_final_balance_only";
|
|
28651
28755
|
transfer_status: "transfer_status";
|
|
28652
28756
|
reverses_identifier: "reverses_identifier";
|
|
28653
|
-
transfers: "transfers";
|
|
28654
28757
|
reversed_by_identifier: "reversed_by_identifier";
|
|
28758
|
+
transfers: "transfers";
|
|
28655
28759
|
transfers_count: "transfers_count";
|
|
28656
28760
|
}>>>>;
|
|
28657
28761
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -28720,6 +28824,7 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28720
28824
|
reverses_id?: number | null | undefined;
|
|
28721
28825
|
status_finalized_at?: string | null | undefined;
|
|
28722
28826
|
group_validate?: boolean | null | undefined;
|
|
28827
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28723
28828
|
}[] | null | undefined;
|
|
28724
28829
|
reversed_by_identifier?: string | null | undefined;
|
|
28725
28830
|
transfers_count?: number | undefined;
|
|
@@ -28762,6 +28867,7 @@ declare module "wapi-client/fns/export-transfer-groups/export-transfer-groups" {
|
|
|
28762
28867
|
reverses_id?: number | null | undefined;
|
|
28763
28868
|
status_finalized_at?: string | null | undefined;
|
|
28764
28869
|
group_validate?: boolean | null | undefined;
|
|
28870
|
+
reversed_by_identifier?: string | null | undefined;
|
|
28765
28871
|
}[] | null | undefined;
|
|
28766
28872
|
reversed_by_identifier?: string | null | undefined;
|
|
28767
28873
|
}>, {}, true>;
|
|
@@ -28979,6 +29085,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers" {
|
|
|
28979
29085
|
token_foreign: "token_foreign";
|
|
28980
29086
|
transfer_group_identifier: "transfer_group_identifier";
|
|
28981
29087
|
reverses_identifier: "reverses_identifier";
|
|
29088
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
28982
29089
|
}>>>>;
|
|
28983
29090
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
28984
29091
|
type: "type";
|
|
@@ -29004,6 +29111,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers" {
|
|
|
29004
29111
|
token_foreign: "token_foreign";
|
|
29005
29112
|
transfer_group_identifier: "transfer_group_identifier";
|
|
29006
29113
|
reverses_identifier: "reverses_identifier";
|
|
29114
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
29007
29115
|
}>>>>;
|
|
29008
29116
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
29009
29117
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -29070,6 +29178,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers" {
|
|
|
29070
29178
|
transfer_group_id?: number | null | undefined;
|
|
29071
29179
|
reverses_id?: number | null | undefined;
|
|
29072
29180
|
group_validate?: boolean | null | undefined;
|
|
29181
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29073
29182
|
}, AllTrue<{
|
|
29074
29183
|
id: number;
|
|
29075
29184
|
identifier: string;
|
|
@@ -29094,6 +29203,7 @@ declare module "wapi-client/fns/export-transfers/export-transfers" {
|
|
|
29094
29203
|
reverses_id?: number | null | undefined;
|
|
29095
29204
|
status_finalized_at?: string | null | undefined;
|
|
29096
29205
|
group_validate?: boolean | null | undefined;
|
|
29206
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29097
29207
|
}>, {}, true>;
|
|
29098
29208
|
}
|
|
29099
29209
|
declare module "wapi-client/fns/export-wallets/export-wallets.enums" {
|
|
@@ -29753,8 +29863,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29753
29863
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29754
29864
|
transfer_status: "transfer_status";
|
|
29755
29865
|
reverses_identifier: "reverses_identifier";
|
|
29756
|
-
transfers: "transfers";
|
|
29757
29866
|
reversed_by_identifier: "reversed_by_identifier";
|
|
29867
|
+
transfers: "transfers";
|
|
29758
29868
|
transfers_count: "transfers_count";
|
|
29759
29869
|
}>>>>;
|
|
29760
29870
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -29772,8 +29882,8 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29772
29882
|
validate_final_balance_only: "validate_final_balance_only";
|
|
29773
29883
|
transfer_status: "transfer_status";
|
|
29774
29884
|
reverses_identifier: "reverses_identifier";
|
|
29775
|
-
transfers: "transfers";
|
|
29776
29885
|
reversed_by_identifier: "reversed_by_identifier";
|
|
29886
|
+
transfers: "transfers";
|
|
29777
29887
|
transfers_count: "transfers_count";
|
|
29778
29888
|
}>>>>;
|
|
29779
29889
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -29829,6 +29939,7 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29829
29939
|
reverses_id?: number | null | undefined;
|
|
29830
29940
|
status_finalized_at?: string | null | undefined;
|
|
29831
29941
|
group_validate?: boolean | null | undefined;
|
|
29942
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29832
29943
|
}[] | null | undefined;
|
|
29833
29944
|
reversed_by_identifier?: string | null | undefined;
|
|
29834
29945
|
transfers_count?: number | undefined;
|
|
@@ -29871,6 +29982,7 @@ declare module "wapi-client/fns/find-transfer-groups/find-transfer-groups" {
|
|
|
29871
29982
|
reverses_id?: number | null | undefined;
|
|
29872
29983
|
status_finalized_at?: string | null | undefined;
|
|
29873
29984
|
group_validate?: boolean | null | undefined;
|
|
29985
|
+
reversed_by_identifier?: string | null | undefined;
|
|
29874
29986
|
}[] | null | undefined;
|
|
29875
29987
|
reversed_by_identifier?: string | null | undefined;
|
|
29876
29988
|
}>, {}, true>;
|
|
@@ -30089,6 +30201,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers" {
|
|
|
30089
30201
|
token_foreign: "token_foreign";
|
|
30090
30202
|
transfer_group_identifier: "transfer_group_identifier";
|
|
30091
30203
|
reverses_identifier: "reverses_identifier";
|
|
30204
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
30092
30205
|
}>>>>;
|
|
30093
30206
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
30094
30207
|
type: "type";
|
|
@@ -30114,6 +30227,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers" {
|
|
|
30114
30227
|
token_foreign: "token_foreign";
|
|
30115
30228
|
transfer_group_identifier: "transfer_group_identifier";
|
|
30116
30229
|
reverses_identifier: "reverses_identifier";
|
|
30230
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
30117
30231
|
}>>>>;
|
|
30118
30232
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30119
30233
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -30167,6 +30281,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers" {
|
|
|
30167
30281
|
transfer_group_id?: number | null | undefined;
|
|
30168
30282
|
reverses_id?: number | null | undefined;
|
|
30169
30283
|
group_validate?: boolean | null | undefined;
|
|
30284
|
+
reversed_by_identifier?: string | null | undefined;
|
|
30170
30285
|
}, AllTrue<{
|
|
30171
30286
|
id: number;
|
|
30172
30287
|
identifier: string;
|
|
@@ -30191,6 +30306,7 @@ declare module "wapi-client/fns/find-transfers/find-transfers" {
|
|
|
30191
30306
|
reverses_id?: number | null | undefined;
|
|
30192
30307
|
status_finalized_at?: string | null | undefined;
|
|
30193
30308
|
group_validate?: boolean | null | undefined;
|
|
30309
|
+
reversed_by_identifier?: string | null | undefined;
|
|
30194
30310
|
}>, {}, true>;
|
|
30195
30311
|
}
|
|
30196
30312
|
declare module "wapi-client/fns/find-wallets/find-wallets.enums" {
|
|
@@ -31098,6 +31214,7 @@ declare module "wapi-client/fns/reverse-transfers/reverse-transfers" {
|
|
|
31098
31214
|
reverses_id?: number | null | undefined;
|
|
31099
31215
|
status_finalized_at?: string | null | undefined;
|
|
31100
31216
|
group_validate?: boolean | null | undefined;
|
|
31217
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31101
31218
|
}[];
|
|
31102
31219
|
}>;
|
|
31103
31220
|
}
|
|
@@ -31530,6 +31647,7 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups" {
|
|
|
31530
31647
|
reverses_id?: number | null | undefined;
|
|
31531
31648
|
status_finalized_at?: string | null | undefined;
|
|
31532
31649
|
group_validate?: boolean | null | undefined;
|
|
31650
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31533
31651
|
}[] | null | undefined;
|
|
31534
31652
|
reversed_by_identifier?: string | null | undefined;
|
|
31535
31653
|
}[];
|
|
@@ -31557,6 +31675,7 @@ declare module "wapi-client/fns/update-transfer-groups/update-transfer-groups" {
|
|
|
31557
31675
|
reverses_id?: number | null | undefined;
|
|
31558
31676
|
status_finalized_at?: string | null | undefined;
|
|
31559
31677
|
group_validate?: boolean | null | undefined;
|
|
31678
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31560
31679
|
}[];
|
|
31561
31680
|
updated: boolean;
|
|
31562
31681
|
}>;
|
|
@@ -31777,6 +31896,7 @@ declare module "wapi-client/fns/update-transfers/update-transfers" {
|
|
|
31777
31896
|
reverses_id?: number | null | undefined;
|
|
31778
31897
|
status_finalized_at?: string | null | undefined;
|
|
31779
31898
|
group_validate?: boolean | null | undefined;
|
|
31899
|
+
reversed_by_identifier?: string | null | undefined;
|
|
31780
31900
|
}[];
|
|
31781
31901
|
updated: boolean;
|
|
31782
31902
|
}>;
|
|
@@ -32074,6 +32194,7 @@ declare module "client.js" {
|
|
|
32074
32194
|
token_foreign: "token_foreign";
|
|
32075
32195
|
transfer_group_identifier: "transfer_group_identifier";
|
|
32076
32196
|
reverses_identifier: "reverses_identifier";
|
|
32197
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32077
32198
|
}>>>>;
|
|
32078
32199
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
32079
32200
|
type: "type";
|
|
@@ -32099,6 +32220,7 @@ declare module "client.js" {
|
|
|
32099
32220
|
token_foreign: "token_foreign";
|
|
32100
32221
|
transfer_group_identifier: "transfer_group_identifier";
|
|
32101
32222
|
reverses_identifier: "reverses_identifier";
|
|
32223
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
32102
32224
|
}>>>>;
|
|
32103
32225
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
32104
32226
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -33415,8 +33537,8 @@ declare module "client.js" {
|
|
|
33415
33537
|
validate_final_balance_only: "validate_final_balance_only";
|
|
33416
33538
|
transfer_status: "transfer_status";
|
|
33417
33539
|
reverses_identifier: "reverses_identifier";
|
|
33418
|
-
transfers: "transfers";
|
|
33419
33540
|
reversed_by_identifier: "reversed_by_identifier";
|
|
33541
|
+
transfers: "transfers";
|
|
33420
33542
|
transfers_count: "transfers_count";
|
|
33421
33543
|
}>>>>;
|
|
33422
33544
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -33434,8 +33556,8 @@ declare module "client.js" {
|
|
|
33434
33556
|
validate_final_balance_only: "validate_final_balance_only";
|
|
33435
33557
|
transfer_status: "transfer_status";
|
|
33436
33558
|
reverses_identifier: "reverses_identifier";
|
|
33437
|
-
transfers: "transfers";
|
|
33438
33559
|
reversed_by_identifier: "reversed_by_identifier";
|
|
33560
|
+
transfers: "transfers";
|
|
33439
33561
|
transfers_count: "transfers_count";
|
|
33440
33562
|
}>>>>;
|
|
33441
33563
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -33504,6 +33626,7 @@ declare module "client.js" {
|
|
|
33504
33626
|
reverses_id?: number | null | undefined;
|
|
33505
33627
|
status_finalized_at?: string | null | undefined;
|
|
33506
33628
|
group_validate?: boolean | null | undefined;
|
|
33629
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33507
33630
|
}[] | null | undefined;
|
|
33508
33631
|
reversed_by_identifier?: string | null | undefined;
|
|
33509
33632
|
transfers_count?: number | undefined;
|
|
@@ -33546,6 +33669,7 @@ declare module "client.js" {
|
|
|
33546
33669
|
reverses_id?: number | null | undefined;
|
|
33547
33670
|
status_finalized_at?: string | null | undefined;
|
|
33548
33671
|
group_validate?: boolean | null | undefined;
|
|
33672
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33549
33673
|
}[] | null | undefined;
|
|
33550
33674
|
reversed_by_identifier?: string | null | undefined;
|
|
33551
33675
|
}>, {}, true>;
|
|
@@ -33776,6 +33900,7 @@ declare module "client.js" {
|
|
|
33776
33900
|
token_foreign: "token_foreign";
|
|
33777
33901
|
transfer_group_identifier: "transfer_group_identifier";
|
|
33778
33902
|
reverses_identifier: "reverses_identifier";
|
|
33903
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
33779
33904
|
}>>>>;
|
|
33780
33905
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
33781
33906
|
type: "type";
|
|
@@ -33801,6 +33926,7 @@ declare module "client.js" {
|
|
|
33801
33926
|
token_foreign: "token_foreign";
|
|
33802
33927
|
transfer_group_identifier: "transfer_group_identifier";
|
|
33803
33928
|
reverses_identifier: "reverses_identifier";
|
|
33929
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
33804
33930
|
}>>>>;
|
|
33805
33931
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
33806
33932
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -33867,6 +33993,7 @@ declare module "client.js" {
|
|
|
33867
33993
|
transfer_group_id?: number | null | undefined;
|
|
33868
33994
|
reverses_id?: number | null | undefined;
|
|
33869
33995
|
group_validate?: boolean | null | undefined;
|
|
33996
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33870
33997
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
33871
33998
|
id: number;
|
|
33872
33999
|
identifier: string;
|
|
@@ -33891,6 +34018,7 @@ declare module "client.js" {
|
|
|
33891
34018
|
reverses_id?: number | null | undefined;
|
|
33892
34019
|
status_finalized_at?: string | null | undefined;
|
|
33893
34020
|
group_validate?: boolean | null | undefined;
|
|
34021
|
+
reversed_by_identifier?: string | null | undefined;
|
|
33894
34022
|
}>, {}, true>;
|
|
33895
34023
|
/**
|
|
33896
34024
|
*
|
|
@@ -34587,8 +34715,8 @@ declare module "client.js" {
|
|
|
34587
34715
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34588
34716
|
transfer_status: "transfer_status";
|
|
34589
34717
|
reverses_identifier: "reverses_identifier";
|
|
34590
|
-
transfers: "transfers";
|
|
34591
34718
|
reversed_by_identifier: "reversed_by_identifier";
|
|
34719
|
+
transfers: "transfers";
|
|
34592
34720
|
transfers_count: "transfers_count";
|
|
34593
34721
|
}>>>>;
|
|
34594
34722
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -34606,8 +34734,8 @@ declare module "client.js" {
|
|
|
34606
34734
|
validate_final_balance_only: "validate_final_balance_only";
|
|
34607
34735
|
transfer_status: "transfer_status";
|
|
34608
34736
|
reverses_identifier: "reverses_identifier";
|
|
34609
|
-
transfers: "transfers";
|
|
34610
34737
|
reversed_by_identifier: "reversed_by_identifier";
|
|
34738
|
+
transfers: "transfers";
|
|
34611
34739
|
transfers_count: "transfers_count";
|
|
34612
34740
|
}>>>>;
|
|
34613
34741
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -34663,6 +34791,7 @@ declare module "client.js" {
|
|
|
34663
34791
|
reverses_id?: number | null | undefined;
|
|
34664
34792
|
status_finalized_at?: string | null | undefined;
|
|
34665
34793
|
group_validate?: boolean | null | undefined;
|
|
34794
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34666
34795
|
}[] | null | undefined;
|
|
34667
34796
|
reversed_by_identifier?: string | null | undefined;
|
|
34668
34797
|
transfers_count?: number | undefined;
|
|
@@ -34705,6 +34834,7 @@ declare module "client.js" {
|
|
|
34705
34834
|
reverses_id?: number | null | undefined;
|
|
34706
34835
|
status_finalized_at?: string | null | undefined;
|
|
34707
34836
|
group_validate?: boolean | null | undefined;
|
|
34837
|
+
reversed_by_identifier?: string | null | undefined;
|
|
34708
34838
|
}[] | null | undefined;
|
|
34709
34839
|
reversed_by_identifier?: string | null | undefined;
|
|
34710
34840
|
}>, {}, true>;
|
|
@@ -34929,6 +35059,7 @@ declare module "client.js" {
|
|
|
34929
35059
|
token_foreign: "token_foreign";
|
|
34930
35060
|
transfer_group_identifier: "transfer_group_identifier";
|
|
34931
35061
|
reverses_identifier: "reverses_identifier";
|
|
35062
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34932
35063
|
}>>>>;
|
|
34933
35064
|
deselect: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
34934
35065
|
type: "type";
|
|
@@ -34954,6 +35085,7 @@ declare module "client.js" {
|
|
|
34954
35085
|
token_foreign: "token_foreign";
|
|
34955
35086
|
transfer_group_identifier: "transfer_group_identifier";
|
|
34956
35087
|
reverses_identifier: "reverses_identifier";
|
|
35088
|
+
reversed_by_identifier: "reversed_by_identifier";
|
|
34957
35089
|
}>>>>;
|
|
34958
35090
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
34959
35091
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -35007,6 +35139,7 @@ declare module "client.js" {
|
|
|
35007
35139
|
transfer_group_id?: number | null | undefined;
|
|
35008
35140
|
reverses_id?: number | null | undefined;
|
|
35009
35141
|
group_validate?: boolean | null | undefined;
|
|
35142
|
+
reversed_by_identifier?: string | null | undefined;
|
|
35010
35143
|
}, import("wapi-client/lib/query-builder/find-query-builder").AllTrue<{
|
|
35011
35144
|
id: number;
|
|
35012
35145
|
identifier: string;
|
|
@@ -35031,6 +35164,7 @@ declare module "client.js" {
|
|
|
35031
35164
|
reverses_id?: number | null | undefined;
|
|
35032
35165
|
status_finalized_at?: string | null | undefined;
|
|
35033
35166
|
group_validate?: boolean | null | undefined;
|
|
35167
|
+
reversed_by_identifier?: string | null | undefined;
|
|
35034
35168
|
}>, {}, true>;
|
|
35035
35169
|
/**
|
|
35036
35170
|
*
|
|
@@ -36019,6 +36153,7 @@ declare module "client.js" {
|
|
|
36019
36153
|
reverses_id?: number | null | undefined;
|
|
36020
36154
|
status_finalized_at?: string | null | undefined;
|
|
36021
36155
|
group_validate?: boolean | null | undefined;
|
|
36156
|
+
reversed_by_identifier?: string | null | undefined;
|
|
36022
36157
|
}[];
|
|
36023
36158
|
}>;
|
|
36024
36159
|
/**
|
|
@@ -36351,6 +36486,7 @@ declare module "client.js" {
|
|
|
36351
36486
|
reverses_id?: number | null | undefined;
|
|
36352
36487
|
status_finalized_at?: string | null | undefined;
|
|
36353
36488
|
group_validate?: boolean | null | undefined;
|
|
36489
|
+
reversed_by_identifier?: string | null | undefined;
|
|
36354
36490
|
}[] | null | undefined;
|
|
36355
36491
|
reversed_by_identifier?: string | null | undefined;
|
|
36356
36492
|
}[];
|
|
@@ -36378,6 +36514,7 @@ declare module "client.js" {
|
|
|
36378
36514
|
reverses_id?: number | null | undefined;
|
|
36379
36515
|
status_finalized_at?: string | null | undefined;
|
|
36380
36516
|
group_validate?: boolean | null | undefined;
|
|
36517
|
+
reversed_by_identifier?: string | null | undefined;
|
|
36381
36518
|
}[];
|
|
36382
36519
|
updated: boolean;
|
|
36383
36520
|
}>;
|
|
@@ -36598,6 +36735,7 @@ declare module "client.js" {
|
|
|
36598
36735
|
reverses_id?: number | null | undefined;
|
|
36599
36736
|
status_finalized_at?: string | null | undefined;
|
|
36600
36737
|
group_validate?: boolean | null | undefined;
|
|
36738
|
+
reversed_by_identifier?: string | null | undefined;
|
|
36601
36739
|
}[];
|
|
36602
36740
|
updated: boolean;
|
|
36603
36741
|
}>;
|