wapi-client 0.14.1 → 0.14.4
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/get-token/get-token.browser.cjs +14 -7
- package/dist/fns/get-token/get-token.browser.js +16 -9
- package/dist/fns/get-token/get-token.cjs +14 -7
- package/dist/fns/get-token/get-token.js +16 -9
- package/dist/fns/get-token/get-token.schema.zod.browser.cjs +2 -1
- package/dist/fns/get-token/get-token.schema.zod.browser.js +2 -1
- package/dist/fns/get-token/get-token.schema.zod.cjs +2 -1
- package/dist/fns/get-token/get-token.schema.zod.js +2 -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/lib/errors.browser.cjs +5 -0
- package/dist/lib/errors.browser.js +5 -0
- package/dist/lib/errors.cjs +5 -0
- package/dist/lib/errors.js +5 -0
- package/dist/txs/find-apikey-many/find-apikey-many.schema.zod.browser.cjs +21 -4
- package/dist/txs/find-apikey-many/find-apikey-many.schema.zod.browser.js +24 -4
- package/dist/txs/find-apikey-many/find-apikey-many.schema.zod.cjs +21 -4
- package/dist/txs/find-apikey-many/find-apikey-many.schema.zod.js +24 -4
- package/dist/txs/get-balance-history/get-balance-history.schema.zod.browser.cjs +2 -1
- package/dist/txs/get-balance-history/get-balance-history.schema.zod.browser.js +2 -1
- package/dist/txs/get-balance-history/get-balance-history.schema.zod.cjs +2 -1
- package/dist/txs/get-balance-history/get-balance-history.schema.zod.js +2 -1
- package/dist/types/wapi-client.d.ts +550 -30
- package/dist/wapi-client-web.iife.js +8 -8
- package/dist/wapi-client.browser.cjs +7 -0
- package/dist/wapi-client.browser.js +7 -0
- package/dist/wapi-client.cjs +8 -0
- package/dist/wapi-client.iife.js +8 -8
- package/dist/wapi-client.js +7 -0
- package/package.json +1 -1
|
@@ -120,6 +120,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
120
120
|
INPUT_STREAM_TIMEOUT: ErrorSpec;
|
|
121
121
|
INPUT_STREAM_ERROR: ErrorSpec;
|
|
122
122
|
INPUT_STREAM_NOT_ALLOWED: ErrorSpec;
|
|
123
|
+
INVALID_STREAM_START_METHOD: ErrorSpec;
|
|
123
124
|
};
|
|
124
125
|
};
|
|
125
126
|
INPUT: {
|
|
@@ -308,6 +309,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
308
309
|
INPUT_STREAM_TIMEOUT: ErrorSpec;
|
|
309
310
|
INPUT_STREAM_ERROR: ErrorSpec;
|
|
310
311
|
INPUT_STREAM_NOT_ALLOWED: ErrorSpec;
|
|
312
|
+
INVALID_STREAM_START_METHOD: ErrorSpec;
|
|
311
313
|
METHOD_DISABLED: ErrorSpec;
|
|
312
314
|
FLAG_PRODUCTION_ON: ErrorSpec;
|
|
313
315
|
FLAG_PRODUCTION_LOCKED: ErrorSpec;
|
|
@@ -400,6 +402,7 @@ declare module "wapi-client/lib/errors" {
|
|
|
400
402
|
INPUT_STREAM_TIMEOUT: "INPUT_STREAM_TIMEOUT";
|
|
401
403
|
INPUT_STREAM_ERROR: "INPUT_STREAM_ERROR";
|
|
402
404
|
INPUT_STREAM_NOT_ALLOWED: "INPUT_STREAM_NOT_ALLOWED";
|
|
405
|
+
INVALID_STREAM_START_METHOD: "INVALID_STREAM_START_METHOD";
|
|
403
406
|
METHOD_DISABLED: "METHOD_DISABLED";
|
|
404
407
|
FLAG_PRODUCTION_ON: "FLAG_PRODUCTION_ON";
|
|
405
408
|
FLAG_PRODUCTION_LOCKED: "FLAG_PRODUCTION_LOCKED";
|
|
@@ -7484,6 +7487,41 @@ declare module "wapi-client/txs/get-balance-history/get-balance-history.schema.z
|
|
|
7484
7487
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7485
7488
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7486
7489
|
}>>;
|
|
7490
|
+
deselect: z.ZodArray<z.ZodEnum<{
|
|
7491
|
+
updated_at: "updated_at";
|
|
7492
|
+
status: "status";
|
|
7493
|
+
token_id: "token_id";
|
|
7494
|
+
amount: "amount";
|
|
7495
|
+
transfer_id: "transfer_id";
|
|
7496
|
+
wallet_id: "wallet_id";
|
|
7497
|
+
pending_amount: "pending_amount";
|
|
7498
|
+
finished_amount: "finished_amount";
|
|
7499
|
+
latest_control_hash: "latest_control_hash";
|
|
7500
|
+
pending_amount_to: "pending_amount_to";
|
|
7501
|
+
pending_amount_from: "pending_amount_from";
|
|
7502
|
+
available_balance: "available_balance";
|
|
7503
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
7504
|
+
transfer_status: "transfer_status";
|
|
7505
|
+
token_foreign: "token_foreign";
|
|
7506
|
+
balance_id: "balance_id";
|
|
7507
|
+
wallet_foreign: "wallet_foreign";
|
|
7508
|
+
transfer_identifier: "transfer_identifier";
|
|
7509
|
+
transfer_control_hash: "transfer_control_hash";
|
|
7510
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
7511
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
7512
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
7513
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
7514
|
+
transfer_amount: "transfer_amount";
|
|
7515
|
+
transfer_type: "transfer_type";
|
|
7516
|
+
transfer_force: "transfer_force";
|
|
7517
|
+
transfer_created_at: "transfer_created_at";
|
|
7518
|
+
transfer_updated_at: "transfer_updated_at";
|
|
7519
|
+
transfer_metadata: "transfer_metadata";
|
|
7520
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
7521
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
7522
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7523
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7524
|
+
}>>;
|
|
7487
7525
|
}, z.core.$strip>;
|
|
7488
7526
|
export const getBalanceHistoryTxInputOptionsSchema: z.ZodObject<{
|
|
7489
7527
|
return_all_intervals: z.ZodOptional<z.ZodObject<{
|
|
@@ -7525,6 +7563,41 @@ declare module "wapi-client/txs/get-balance-history/get-balance-history.schema.z
|
|
|
7525
7563
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7526
7564
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7527
7565
|
}>>>;
|
|
7566
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7567
|
+
updated_at: "updated_at";
|
|
7568
|
+
status: "status";
|
|
7569
|
+
token_id: "token_id";
|
|
7570
|
+
amount: "amount";
|
|
7571
|
+
transfer_id: "transfer_id";
|
|
7572
|
+
wallet_id: "wallet_id";
|
|
7573
|
+
pending_amount: "pending_amount";
|
|
7574
|
+
finished_amount: "finished_amount";
|
|
7575
|
+
latest_control_hash: "latest_control_hash";
|
|
7576
|
+
pending_amount_to: "pending_amount_to";
|
|
7577
|
+
pending_amount_from: "pending_amount_from";
|
|
7578
|
+
available_balance: "available_balance";
|
|
7579
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
7580
|
+
transfer_status: "transfer_status";
|
|
7581
|
+
token_foreign: "token_foreign";
|
|
7582
|
+
balance_id: "balance_id";
|
|
7583
|
+
wallet_foreign: "wallet_foreign";
|
|
7584
|
+
transfer_identifier: "transfer_identifier";
|
|
7585
|
+
transfer_control_hash: "transfer_control_hash";
|
|
7586
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
7587
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
7588
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
7589
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
7590
|
+
transfer_amount: "transfer_amount";
|
|
7591
|
+
transfer_type: "transfer_type";
|
|
7592
|
+
transfer_force: "transfer_force";
|
|
7593
|
+
transfer_created_at: "transfer_created_at";
|
|
7594
|
+
transfer_updated_at: "transfer_updated_at";
|
|
7595
|
+
transfer_metadata: "transfer_metadata";
|
|
7596
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
7597
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
7598
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7599
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7600
|
+
}>>>;
|
|
7528
7601
|
order: z.ZodOptional<z.ZodEnum<{
|
|
7529
7602
|
asc: "asc";
|
|
7530
7603
|
desc: "desc";
|
|
@@ -7595,6 +7668,41 @@ declare module "wapi-client/txs/get-balance-history/get-balance-history.schema.z
|
|
|
7595
7668
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7596
7669
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7597
7670
|
}>>>;
|
|
7671
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7672
|
+
updated_at: "updated_at";
|
|
7673
|
+
status: "status";
|
|
7674
|
+
token_id: "token_id";
|
|
7675
|
+
amount: "amount";
|
|
7676
|
+
transfer_id: "transfer_id";
|
|
7677
|
+
wallet_id: "wallet_id";
|
|
7678
|
+
pending_amount: "pending_amount";
|
|
7679
|
+
finished_amount: "finished_amount";
|
|
7680
|
+
latest_control_hash: "latest_control_hash";
|
|
7681
|
+
pending_amount_to: "pending_amount_to";
|
|
7682
|
+
pending_amount_from: "pending_amount_from";
|
|
7683
|
+
available_balance: "available_balance";
|
|
7684
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
7685
|
+
transfer_status: "transfer_status";
|
|
7686
|
+
token_foreign: "token_foreign";
|
|
7687
|
+
balance_id: "balance_id";
|
|
7688
|
+
wallet_foreign: "wallet_foreign";
|
|
7689
|
+
transfer_identifier: "transfer_identifier";
|
|
7690
|
+
transfer_control_hash: "transfer_control_hash";
|
|
7691
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
7692
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
7693
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
7694
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
7695
|
+
transfer_amount: "transfer_amount";
|
|
7696
|
+
transfer_type: "transfer_type";
|
|
7697
|
+
transfer_force: "transfer_force";
|
|
7698
|
+
transfer_created_at: "transfer_created_at";
|
|
7699
|
+
transfer_updated_at: "transfer_updated_at";
|
|
7700
|
+
transfer_metadata: "transfer_metadata";
|
|
7701
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
7702
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
7703
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7704
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7705
|
+
}>>>;
|
|
7598
7706
|
order: z.ZodOptional<z.ZodEnum<{
|
|
7599
7707
|
asc: "asc";
|
|
7600
7708
|
desc: "desc";
|
|
@@ -7716,6 +7824,41 @@ declare module "wapi-client/txs/export-balance-history/export-balance-history.sc
|
|
|
7716
7824
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7717
7825
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7718
7826
|
}>>>;
|
|
7827
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7828
|
+
updated_at: "updated_at";
|
|
7829
|
+
status: "status";
|
|
7830
|
+
token_id: "token_id";
|
|
7831
|
+
amount: "amount";
|
|
7832
|
+
transfer_id: "transfer_id";
|
|
7833
|
+
wallet_id: "wallet_id";
|
|
7834
|
+
pending_amount: "pending_amount";
|
|
7835
|
+
finished_amount: "finished_amount";
|
|
7836
|
+
latest_control_hash: "latest_control_hash";
|
|
7837
|
+
pending_amount_to: "pending_amount_to";
|
|
7838
|
+
pending_amount_from: "pending_amount_from";
|
|
7839
|
+
available_balance: "available_balance";
|
|
7840
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
7841
|
+
transfer_status: "transfer_status";
|
|
7842
|
+
token_foreign: "token_foreign";
|
|
7843
|
+
balance_id: "balance_id";
|
|
7844
|
+
wallet_foreign: "wallet_foreign";
|
|
7845
|
+
transfer_identifier: "transfer_identifier";
|
|
7846
|
+
transfer_control_hash: "transfer_control_hash";
|
|
7847
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
7848
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
7849
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
7850
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
7851
|
+
transfer_amount: "transfer_amount";
|
|
7852
|
+
transfer_type: "transfer_type";
|
|
7853
|
+
transfer_force: "transfer_force";
|
|
7854
|
+
transfer_created_at: "transfer_created_at";
|
|
7855
|
+
transfer_updated_at: "transfer_updated_at";
|
|
7856
|
+
transfer_metadata: "transfer_metadata";
|
|
7857
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
7858
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
7859
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7860
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7861
|
+
}>>>;
|
|
7719
7862
|
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
7720
7863
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
7721
7864
|
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
@@ -7780,6 +7923,41 @@ declare module "wapi-client/txs/export-balance-history/export-balance-history.sc
|
|
|
7780
7923
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7781
7924
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7782
7925
|
}>>>;
|
|
7926
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7927
|
+
updated_at: "updated_at";
|
|
7928
|
+
status: "status";
|
|
7929
|
+
token_id: "token_id";
|
|
7930
|
+
amount: "amount";
|
|
7931
|
+
transfer_id: "transfer_id";
|
|
7932
|
+
wallet_id: "wallet_id";
|
|
7933
|
+
pending_amount: "pending_amount";
|
|
7934
|
+
finished_amount: "finished_amount";
|
|
7935
|
+
latest_control_hash: "latest_control_hash";
|
|
7936
|
+
pending_amount_to: "pending_amount_to";
|
|
7937
|
+
pending_amount_from: "pending_amount_from";
|
|
7938
|
+
available_balance: "available_balance";
|
|
7939
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
7940
|
+
transfer_status: "transfer_status";
|
|
7941
|
+
token_foreign: "token_foreign";
|
|
7942
|
+
balance_id: "balance_id";
|
|
7943
|
+
wallet_foreign: "wallet_foreign";
|
|
7944
|
+
transfer_identifier: "transfer_identifier";
|
|
7945
|
+
transfer_control_hash: "transfer_control_hash";
|
|
7946
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
7947
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
7948
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
7949
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
7950
|
+
transfer_amount: "transfer_amount";
|
|
7951
|
+
transfer_type: "transfer_type";
|
|
7952
|
+
transfer_force: "transfer_force";
|
|
7953
|
+
transfer_created_at: "transfer_created_at";
|
|
7954
|
+
transfer_updated_at: "transfer_updated_at";
|
|
7955
|
+
transfer_metadata: "transfer_metadata";
|
|
7956
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
7957
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
7958
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7959
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7960
|
+
}>>>;
|
|
7783
7961
|
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
7784
7962
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
7785
7963
|
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
@@ -7855,6 +8033,41 @@ declare module "wapi-client/fns/export-balance-history/export-balance-history.sc
|
|
|
7855
8033
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7856
8034
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7857
8035
|
}>>>>;
|
|
8036
|
+
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8037
|
+
updated_at: "updated_at";
|
|
8038
|
+
status: "status";
|
|
8039
|
+
token_id: "token_id";
|
|
8040
|
+
amount: "amount";
|
|
8041
|
+
transfer_id: "transfer_id";
|
|
8042
|
+
wallet_id: "wallet_id";
|
|
8043
|
+
pending_amount: "pending_amount";
|
|
8044
|
+
finished_amount: "finished_amount";
|
|
8045
|
+
latest_control_hash: "latest_control_hash";
|
|
8046
|
+
pending_amount_to: "pending_amount_to";
|
|
8047
|
+
pending_amount_from: "pending_amount_from";
|
|
8048
|
+
available_balance: "available_balance";
|
|
8049
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
8050
|
+
transfer_status: "transfer_status";
|
|
8051
|
+
token_foreign: "token_foreign";
|
|
8052
|
+
balance_id: "balance_id";
|
|
8053
|
+
wallet_foreign: "wallet_foreign";
|
|
8054
|
+
transfer_identifier: "transfer_identifier";
|
|
8055
|
+
transfer_control_hash: "transfer_control_hash";
|
|
8056
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
8057
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
8058
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
8059
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
8060
|
+
transfer_amount: "transfer_amount";
|
|
8061
|
+
transfer_type: "transfer_type";
|
|
8062
|
+
transfer_force: "transfer_force";
|
|
8063
|
+
transfer_created_at: "transfer_created_at";
|
|
8064
|
+
transfer_updated_at: "transfer_updated_at";
|
|
8065
|
+
transfer_metadata: "transfer_metadata";
|
|
8066
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
8067
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
8068
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
8069
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
8070
|
+
}>>>>;
|
|
7858
8071
|
return_metadata_total: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7859
8072
|
limit: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNumber>>>;
|
|
7860
8073
|
offset: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNumber>>>;
|
|
@@ -7916,6 +8129,41 @@ declare module "wapi-client/fns/export-balance-history/export-balance-history.sc
|
|
|
7916
8129
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
7917
8130
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
7918
8131
|
}>>>>;
|
|
8132
|
+
deselect: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8133
|
+
updated_at: "updated_at";
|
|
8134
|
+
status: "status";
|
|
8135
|
+
token_id: "token_id";
|
|
8136
|
+
amount: "amount";
|
|
8137
|
+
transfer_id: "transfer_id";
|
|
8138
|
+
wallet_id: "wallet_id";
|
|
8139
|
+
pending_amount: "pending_amount";
|
|
8140
|
+
finished_amount: "finished_amount";
|
|
8141
|
+
latest_control_hash: "latest_control_hash";
|
|
8142
|
+
pending_amount_to: "pending_amount_to";
|
|
8143
|
+
pending_amount_from: "pending_amount_from";
|
|
8144
|
+
available_balance: "available_balance";
|
|
8145
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
8146
|
+
transfer_status: "transfer_status";
|
|
8147
|
+
token_foreign: "token_foreign";
|
|
8148
|
+
balance_id: "balance_id";
|
|
8149
|
+
wallet_foreign: "wallet_foreign";
|
|
8150
|
+
transfer_identifier: "transfer_identifier";
|
|
8151
|
+
transfer_control_hash: "transfer_control_hash";
|
|
8152
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
8153
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
8154
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
8155
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
8156
|
+
transfer_amount: "transfer_amount";
|
|
8157
|
+
transfer_type: "transfer_type";
|
|
8158
|
+
transfer_force: "transfer_force";
|
|
8159
|
+
transfer_created_at: "transfer_created_at";
|
|
8160
|
+
transfer_updated_at: "transfer_updated_at";
|
|
8161
|
+
transfer_metadata: "transfer_metadata";
|
|
8162
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
8163
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
8164
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
8165
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
8166
|
+
}>>>>;
|
|
7919
8167
|
return_metadata_total: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
7920
8168
|
limit: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNumber>>>;
|
|
7921
8169
|
offset: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNumber>>>;
|
|
@@ -13133,6 +13381,41 @@ declare module "wapi-client/fns/get-balance-history/get-balance-history.schema.z
|
|
|
13133
13381
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
13134
13382
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
13135
13383
|
}>>>;
|
|
13384
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
13385
|
+
updated_at: "updated_at";
|
|
13386
|
+
status: "status";
|
|
13387
|
+
token_id: "token_id";
|
|
13388
|
+
amount: "amount";
|
|
13389
|
+
transfer_id: "transfer_id";
|
|
13390
|
+
wallet_id: "wallet_id";
|
|
13391
|
+
pending_amount: "pending_amount";
|
|
13392
|
+
finished_amount: "finished_amount";
|
|
13393
|
+
latest_control_hash: "latest_control_hash";
|
|
13394
|
+
pending_amount_to: "pending_amount_to";
|
|
13395
|
+
pending_amount_from: "pending_amount_from";
|
|
13396
|
+
available_balance: "available_balance";
|
|
13397
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
13398
|
+
transfer_status: "transfer_status";
|
|
13399
|
+
token_foreign: "token_foreign";
|
|
13400
|
+
balance_id: "balance_id";
|
|
13401
|
+
wallet_foreign: "wallet_foreign";
|
|
13402
|
+
transfer_identifier: "transfer_identifier";
|
|
13403
|
+
transfer_control_hash: "transfer_control_hash";
|
|
13404
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
13405
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
13406
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
13407
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
13408
|
+
transfer_amount: "transfer_amount";
|
|
13409
|
+
transfer_type: "transfer_type";
|
|
13410
|
+
transfer_force: "transfer_force";
|
|
13411
|
+
transfer_created_at: "transfer_created_at";
|
|
13412
|
+
transfer_updated_at: "transfer_updated_at";
|
|
13413
|
+
transfer_metadata: "transfer_metadata";
|
|
13414
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
13415
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
13416
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
13417
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
13418
|
+
}>>>;
|
|
13136
13419
|
order: z.ZodOptional<z.ZodEnum<{
|
|
13137
13420
|
asc: "asc";
|
|
13138
13421
|
desc: "desc";
|
|
@@ -13194,6 +13477,41 @@ declare module "wapi-client/fns/get-balance-history/get-balance-history.schema.z
|
|
|
13194
13477
|
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
13195
13478
|
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
13196
13479
|
}>>>;
|
|
13480
|
+
deselect: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
13481
|
+
updated_at: "updated_at";
|
|
13482
|
+
status: "status";
|
|
13483
|
+
token_id: "token_id";
|
|
13484
|
+
amount: "amount";
|
|
13485
|
+
transfer_id: "transfer_id";
|
|
13486
|
+
wallet_id: "wallet_id";
|
|
13487
|
+
pending_amount: "pending_amount";
|
|
13488
|
+
finished_amount: "finished_amount";
|
|
13489
|
+
latest_control_hash: "latest_control_hash";
|
|
13490
|
+
pending_amount_to: "pending_amount_to";
|
|
13491
|
+
pending_amount_from: "pending_amount_from";
|
|
13492
|
+
available_balance: "available_balance";
|
|
13493
|
+
transfer_status_finalized_at: "transfer_status_finalized_at";
|
|
13494
|
+
transfer_status: "transfer_status";
|
|
13495
|
+
token_foreign: "token_foreign";
|
|
13496
|
+
balance_id: "balance_id";
|
|
13497
|
+
wallet_foreign: "wallet_foreign";
|
|
13498
|
+
transfer_identifier: "transfer_identifier";
|
|
13499
|
+
transfer_control_hash: "transfer_control_hash";
|
|
13500
|
+
transfer_from_wallet_id: "transfer_from_wallet_id";
|
|
13501
|
+
transfer_from_wallet_foreign: "transfer_from_wallet_foreign";
|
|
13502
|
+
transfer_to_wallet_id: "transfer_to_wallet_id";
|
|
13503
|
+
transfer_to_wallet_foreign: "transfer_to_wallet_foreign";
|
|
13504
|
+
transfer_amount: "transfer_amount";
|
|
13505
|
+
transfer_type: "transfer_type";
|
|
13506
|
+
transfer_force: "transfer_force";
|
|
13507
|
+
transfer_created_at: "transfer_created_at";
|
|
13508
|
+
transfer_updated_at: "transfer_updated_at";
|
|
13509
|
+
transfer_metadata: "transfer_metadata";
|
|
13510
|
+
transfer_transfer_group_id: "transfer_transfer_group_id";
|
|
13511
|
+
transfer_reverses_id: "transfer_reverses_id";
|
|
13512
|
+
transfer_transfer_group_identifier: "transfer_transfer_group_identifier";
|
|
13513
|
+
transfer_reverses_identifier: "transfer_reverses_identifier";
|
|
13514
|
+
}>>>;
|
|
13197
13515
|
order: z.ZodOptional<z.ZodEnum<{
|
|
13198
13516
|
asc: "asc";
|
|
13199
13517
|
desc: "desc";
|
|
@@ -13553,9 +13871,11 @@ declare module "wapi-client/fns/get-token/get-token.schema.zod" {
|
|
|
13553
13871
|
}, z.core.$strip>;
|
|
13554
13872
|
export const getTokenInputSchema: z.ZodObject<{
|
|
13555
13873
|
foreign: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13874
|
+
token: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13556
13875
|
}, z.core.$strip>;
|
|
13557
13876
|
export const getTokenFnInputSchema: z.ZodObject<{
|
|
13558
13877
|
foreign: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13878
|
+
token: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
13559
13879
|
options: z.ZodOptional<z.ZodObject<{
|
|
13560
13880
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
13561
13881
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -17248,11 +17568,6 @@ declare module "wapi-client/txs/create-distribution/create-distribution.schema.z
|
|
|
17248
17568
|
declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
17249
17569
|
import { z } from "wapi-client/lib/zod";
|
|
17250
17570
|
export const findApikeyManyTxInputOptionsSchema: z.ZodObject<{
|
|
17251
|
-
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17252
|
-
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17253
|
-
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17254
|
-
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17255
|
-
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
17256
17571
|
order: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17257
17572
|
direction: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
17258
17573
|
asc: "asc";
|
|
@@ -17312,6 +17627,11 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17312
17627
|
owner: "owner";
|
|
17313
17628
|
valid_until: "valid_until";
|
|
17314
17629
|
}>>>;
|
|
17630
|
+
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
17631
|
+
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17632
|
+
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17633
|
+
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17634
|
+
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17315
17635
|
}, z.core.$strip>;
|
|
17316
17636
|
export const apikeyFilterObjectInputSchema: z.ZodObject<{
|
|
17317
17637
|
type: z.ZodOptional<z.ZodEnum<{
|
|
@@ -17363,7 +17683,14 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17363
17683
|
description: z.ZodOptional<z.ZodString>;
|
|
17364
17684
|
valid_until: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>>;
|
|
17365
17685
|
}, z.core.$strip>>, unknown>;
|
|
17366
|
-
export const apikeyFilterSchema: z.ZodUnion<readonly [z.
|
|
17686
|
+
export const apikeyFilterSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodType<import("wapi-client/db/consts").DbFilterGeneric<{
|
|
17687
|
+
type?: "limited" | "admin" | "root" | undefined;
|
|
17688
|
+
status?: "active" | "deleted" | undefined;
|
|
17689
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
17690
|
+
description?: string | undefined;
|
|
17691
|
+
valid_until?: string | null | undefined;
|
|
17692
|
+
updated_at?: string | undefined;
|
|
17693
|
+
}, z.ZodObject<{
|
|
17367
17694
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17368
17695
|
limited: "limited";
|
|
17369
17696
|
admin: "admin";
|
|
@@ -17376,14 +17703,7 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17376
17703
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown>>;
|
|
17377
17704
|
description: z.ZodOptional<z.ZodString>;
|
|
17378
17705
|
valid_until: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>>;
|
|
17379
|
-
}, z.core.$strip
|
|
17380
|
-
type?: "limited" | "admin" | "root" | undefined;
|
|
17381
|
-
status?: "active" | "deleted" | undefined;
|
|
17382
|
-
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
17383
|
-
description?: string | undefined;
|
|
17384
|
-
valid_until?: string | null | undefined;
|
|
17385
|
-
updated_at?: string | undefined;
|
|
17386
|
-
}, z.ZodObject<{
|
|
17706
|
+
}, z.core.$strip>>, unknown>>, z.ZodObject<{
|
|
17387
17707
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17388
17708
|
limited: "limited";
|
|
17389
17709
|
admin: "admin";
|
|
@@ -17396,9 +17716,16 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17396
17716
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown>>;
|
|
17397
17717
|
description: z.ZodOptional<z.ZodString>;
|
|
17398
17718
|
valid_until: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>>;
|
|
17399
|
-
}, z.core.$strip
|
|
17719
|
+
}, z.core.$strip>]>;
|
|
17400
17720
|
export const findApikeyManyTxInputSchema: z.ZodObject<{
|
|
17401
|
-
apikey: z.ZodOptional<z.ZodUnion<readonly [z.
|
|
17721
|
+
apikey: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodType<import("wapi-client/db/consts").DbFilterGeneric<{
|
|
17722
|
+
type?: "limited" | "admin" | "root" | undefined;
|
|
17723
|
+
status?: "active" | "deleted" | undefined;
|
|
17724
|
+
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
17725
|
+
description?: string | undefined;
|
|
17726
|
+
valid_until?: string | null | undefined;
|
|
17727
|
+
updated_at?: string | undefined;
|
|
17728
|
+
}, z.ZodObject<{
|
|
17402
17729
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17403
17730
|
limited: "limited";
|
|
17404
17731
|
admin: "admin";
|
|
@@ -17411,14 +17738,7 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17411
17738
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown>>;
|
|
17412
17739
|
description: z.ZodOptional<z.ZodString>;
|
|
17413
17740
|
valid_until: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>>;
|
|
17414
|
-
}, z.core.$strip
|
|
17415
|
-
type?: "limited" | "admin" | "root" | undefined;
|
|
17416
|
-
status?: "active" | "deleted" | undefined;
|
|
17417
|
-
metadata?: import("wapi-client/db/consts").Metadata | undefined;
|
|
17418
|
-
description?: string | undefined;
|
|
17419
|
-
valid_until?: string | null | undefined;
|
|
17420
|
-
updated_at?: string | undefined;
|
|
17421
|
-
}, z.ZodObject<{
|
|
17741
|
+
}, z.core.$strip>>, unknown>>, z.ZodObject<{
|
|
17422
17742
|
type: z.ZodOptional<z.ZodEnum<{
|
|
17423
17743
|
limited: "limited";
|
|
17424
17744
|
admin: "admin";
|
|
@@ -17431,13 +17751,8 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17431
17751
|
metadata: z.ZodOptional<z.ZodType<import("wapi-client/db/consts").Metadata, unknown>>;
|
|
17432
17752
|
description: z.ZodOptional<z.ZodString>;
|
|
17433
17753
|
valid_until: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>>;
|
|
17434
|
-
}, z.core.$strip
|
|
17754
|
+
}, z.core.$strip>]>>;
|
|
17435
17755
|
options: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
17436
|
-
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17437
|
-
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17438
|
-
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17439
|
-
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17440
|
-
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
17441
17756
|
order: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17442
17757
|
direction: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
17443
17758
|
asc: "asc";
|
|
@@ -17497,6 +17812,11 @@ declare module "wapi-client/txs/find-apikey-many/find-apikey-many.schema.zod" {
|
|
|
17497
17812
|
owner: "owner";
|
|
17498
17813
|
valid_until: "valid_until";
|
|
17499
17814
|
}>>>;
|
|
17815
|
+
return_metadata_total: z.ZodOptional<z.ZodBoolean>;
|
|
17816
|
+
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17817
|
+
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17818
|
+
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17819
|
+
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17500
17820
|
}, z.core.$strip>>>;
|
|
17501
17821
|
}, z.core.$strict>;
|
|
17502
17822
|
export const findApikeyManyTxOutputSchema: z.ZodObject<{
|
|
@@ -28541,6 +28861,206 @@ declare module "wapi-client" {
|
|
|
28541
28861
|
getIdentifier: typeof getIdentifier;
|
|
28542
28862
|
};
|
|
28543
28863
|
export { Validator, Client, getIdentifier, ErrorMessage, ErrorType, ErrorDescription, Errors, };
|
|
28864
|
+
export const WAPIErrorInfo: {
|
|
28865
|
+
messages: {
|
|
28866
|
+
[k: string]: string;
|
|
28867
|
+
};
|
|
28868
|
+
descriptions: {
|
|
28869
|
+
[k: string]: string;
|
|
28870
|
+
};
|
|
28871
|
+
types: {
|
|
28872
|
+
INVALID_LATEST_HASH: "INVALID_LATEST_HASH";
|
|
28873
|
+
TOKEN_LIMIT_REACHED: "TOKEN_LIMIT_REACHED";
|
|
28874
|
+
TR_INVALID_BALANCE: "TR_INVALID_BALANCE";
|
|
28875
|
+
TR_AMOUNT_NOT_DIVISIBLE: "TR_AMOUNT_NOT_DIVISIBLE";
|
|
28876
|
+
TR_TOKEN_DISABLED: "TR_TOKEN_DISABLED";
|
|
28877
|
+
TR_TOKEN_DWONLY: "TR_TOKEN_DWONLY";
|
|
28878
|
+
TR_TRG_STATUS_MISMATCH: "TR_TRG_STATUS_MISMATCH";
|
|
28879
|
+
TR_TRG_CLOSED: "TR_TRG_CLOSED";
|
|
28880
|
+
TR_TIMESTAMP_IN_PAST: "TR_TIMESTAMP_IN_PAST";
|
|
28881
|
+
TR_TIMESTAMP_MUST_BE_LATEST: "TR_TIMESTAMP_MUST_BE_LATEST";
|
|
28882
|
+
TR_INVALID_CANCELLED: "TR_INVALID_CANCELLED";
|
|
28883
|
+
TR_FROM_WALLET_STATUS_CONSTRAINT: "TR_FROM_WALLET_STATUS_CONSTRAINT";
|
|
28884
|
+
TR_TO_WALLET_STATUS_CONSTRAINT: "TR_TO_WALLET_STATUS_CONSTRAINT";
|
|
28885
|
+
TR_CANCELLED_CANT_RV: "TR_CANCELLED_CANT_RV";
|
|
28886
|
+
TR_DEPOSIT_CANT_RV_WITHOUT_FLAG: "TR_DEPOSIT_CANT_RV_WITHOUT_FLAG";
|
|
28887
|
+
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: "TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG";
|
|
28888
|
+
TR_UNIQUE_IDENTIFIER: "TR_UNIQUE_IDENTIFIER";
|
|
28889
|
+
TR_DIFFERENT_WALLETS: "TR_DIFFERENT_WALLETS";
|
|
28890
|
+
TRG_SINGLE_PENDING_TR_CANT_RV: "TRG_SINGLE_PENDING_TR_CANT_RV";
|
|
28891
|
+
TRG_CANCELLED_CANT_RV: "TRG_CANCELLED_CANT_RV";
|
|
28892
|
+
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: "TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG";
|
|
28893
|
+
TRG_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: "TRG_WITHDRAWAL_CANT_RV_WITHOUT_FLAG";
|
|
28894
|
+
TRG_UNIQUE_IDENTIFIER: "TRG_UNIQUE_IDENTIFIER";
|
|
28895
|
+
TOKEN_UNIQUE_FOREIGN: "TOKEN_UNIQUE_FOREIGN";
|
|
28896
|
+
WALLET_UNIQUE_FOREIGN: "WALLET_UNIQUE_FOREIGN";
|
|
28897
|
+
UNIQUE_CONSTRAINT: "UNIQUE_CONSTRAINT";
|
|
28898
|
+
APIKEY_DELETED_CANT_UPDATE: "APIKEY_DELETED_CANT_UPDATE";
|
|
28899
|
+
APIKEY_NOT_OWNED_CANT_UPDATE: "APIKEY_NOT_OWNED_CANT_UPDATE";
|
|
28900
|
+
APIKEY_LIMIT_REACHED: "APIKEY_LIMIT_REACHED";
|
|
28901
|
+
HTTP_BODY_SIZE: "HTTP_BODY_SIZE";
|
|
28902
|
+
DATABASE_EXPORT_CONFLICT: "DATABASE_EXPORT_CONFLICT";
|
|
28903
|
+
DATABASE_IMPORT_CONFLICT: "DATABASE_IMPORT_CONFLICT";
|
|
28904
|
+
DATABASE_EXPORT_PROGRESS_NOT_FOUND: "DATABASE_EXPORT_PROGRESS_NOT_FOUND";
|
|
28905
|
+
DATABASE_IMPORT_PROGRESS_NOT_FOUND: "DATABASE_IMPORT_PROGRESS_NOT_FOUND";
|
|
28906
|
+
DATABASE_IMPORT_NOT_FOUND: "DATABASE_IMPORT_NOT_FOUND";
|
|
28907
|
+
TR_CANT_UPDATE_TO_PENDING: "TR_CANT_UPDATE_TO_PENDING";
|
|
28908
|
+
TR_CANT_UPDATE_TIMESTAMP: "TR_CANT_UPDATE_TIMESTAMP";
|
|
28909
|
+
TR_CANT_INSERT_TIMESTAMP: "TR_CANT_INSERT_TIMESTAMP";
|
|
28910
|
+
TR_EMPTY_UPDATE_REQUEST: "TR_EMPTY_UPDATE_REQUEST";
|
|
28911
|
+
TR_MISSING_FILTER: "TR_MISSING_FILTER";
|
|
28912
|
+
TR_TO_WALLET_WITHDRAWAL: "TR_TO_WALLET_WITHDRAWAL";
|
|
28913
|
+
TR_FROM_WALLET_DEPOSIT: "TR_FROM_WALLET_DEPOSIT";
|
|
28914
|
+
TR_FROM_TO_CONFLICT: "TR_FROM_TO_CONFLICT";
|
|
28915
|
+
TR_UNABLE_TO_RESOLVE_INPUT: "TR_UNABLE_TO_RESOLVE_INPUT";
|
|
28916
|
+
TRG_MISSING_FILTER: "TRG_MISSING_FILTER";
|
|
28917
|
+
INVALID_FIELD_AGR_COMB: "INVALID_FIELD_AGR_COMB";
|
|
28918
|
+
INVALID_FIELD_FOR_MODEL: "INVALID_FIELD_FOR_MODEL";
|
|
28919
|
+
NO_METADATA_ON_MODEL: "NO_METADATA_ON_MODEL";
|
|
28920
|
+
INVALID_MODEL: "INVALID_MODEL";
|
|
28921
|
+
INVALID_COMPLEX_FILTER: "INVALID_COMPLEX_FILTER";
|
|
28922
|
+
UNCLEAR_AGGREGATOR: "UNCLEAR_AGGREGATOR";
|
|
28923
|
+
CONTRACT_OWNER_NOT_FOUND: "CONTRACT_OWNER_NOT_FOUND";
|
|
28924
|
+
DISTRIBUTION_MISSING_TARGETS: "DISTRIBUTION_MISSING_TARGETS";
|
|
28925
|
+
TOKEN_INVALID_WALLET: "TOKEN_INVALID_WALLET";
|
|
28926
|
+
BAL_FUTURE_DATETIME: "BAL_FUTURE_DATETIME";
|
|
28927
|
+
INPUT_NEEDS_IDENTIFIER: "INPUT_NEEDS_IDENTIFIER";
|
|
28928
|
+
RESET_INVALID_CONFIRMATION: "RESET_INVALID_CONFIRMATION";
|
|
28929
|
+
INPUT_NEEDS_TOKEN: "INPUT_NEEDS_TOKEN";
|
|
28930
|
+
CONFLICTING_OPTIONS_FOR_BALANCE: "CONFLICTING_OPTIONS_FOR_BALANCE";
|
|
28931
|
+
CONFLICTING_OPTIONS_FOR_SIGNED_AMOUNT: "CONFLICTING_OPTIONS_FOR_SIGNED_AMOUNT";
|
|
28932
|
+
RUNNING_BALANCE_WITHOUT_WALLET: "RUNNING_BALANCE_WITHOUT_WALLET";
|
|
28933
|
+
SIGNED_AMOUNT_WITHOUT_WALLET: "SIGNED_AMOUNT_WITHOUT_WALLET";
|
|
28934
|
+
REQUIRED_INPUT_MISSING: "REQUIRED_INPUT_MISSING";
|
|
28935
|
+
EMPTY_UPDATE_REQUEST: "EMPTY_UPDATE_REQUEST";
|
|
28936
|
+
TRX_NOT_ALLOWED: "TRX_NOT_ALLOWED";
|
|
28937
|
+
TRANSACTION_NOT_FOUND: "TRANSACTION_NOT_FOUND";
|
|
28938
|
+
ONLY_SELECT_ALLOWED: "ONLY_SELECT_ALLOWED";
|
|
28939
|
+
CNT_DEPOSIT_TOKEN_MISMATCH: "CNT_DEPOSIT_TOKEN_MISMATCH";
|
|
28940
|
+
CONNECTION_LOST: "CONNECTION_LOST";
|
|
28941
|
+
INPUT_STREAM_INVALID: "INPUT_STREAM_INVALID";
|
|
28942
|
+
INVALID_RESPONSE_STREAM_CHUNK: "INVALID_RESPONSE_STREAM_CHUNK";
|
|
28943
|
+
INVALID_INPUT_STREAM_CHUNK: "INVALID_INPUT_STREAM_CHUNK";
|
|
28944
|
+
INPUT_STREAM_TIMEOUT: "INPUT_STREAM_TIMEOUT";
|
|
28945
|
+
INPUT_STREAM_ERROR: "INPUT_STREAM_ERROR";
|
|
28946
|
+
INPUT_STREAM_NOT_ALLOWED: "INPUT_STREAM_NOT_ALLOWED";
|
|
28947
|
+
INVALID_STREAM_START_METHOD: "INVALID_STREAM_START_METHOD";
|
|
28948
|
+
METHOD_DISABLED: "METHOD_DISABLED";
|
|
28949
|
+
FLAG_PRODUCTION_ON: "FLAG_PRODUCTION_ON";
|
|
28950
|
+
FLAG_PRODUCTION_LOCKED: "FLAG_PRODUCTION_LOCKED";
|
|
28951
|
+
TRANSACTION_TIMEOUT: "TRANSACTION_TIMEOUT";
|
|
28952
|
+
CONNECTION_TIMEOUT: "CONNECTION_TIMEOUT";
|
|
28953
|
+
SENDING_TIMEOUT: "SENDING_TIMEOUT";
|
|
28954
|
+
CONFIG_INVALID: "CONFIG_INVALID";
|
|
28955
|
+
AUTHENTICATION_ERROR: "AUTHENTICATION_ERROR";
|
|
28956
|
+
AUTHORIZATION_ERROR: "AUTHORIZATION_ERROR";
|
|
28957
|
+
PARSE_ERROR: "PARSE_ERROR";
|
|
28958
|
+
INVALID_REQUEST: "INVALID_REQUEST";
|
|
28959
|
+
METHOD_NOT_FOUND: "METHOD_NOT_FOUND";
|
|
28960
|
+
INVALID_PARAMS: "INVALID_PARAMS";
|
|
28961
|
+
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
28962
|
+
};
|
|
28963
|
+
errors: {
|
|
28964
|
+
INVALID_LATEST_HASH: import("wapi-client/lib/errors").ErrorSpec;
|
|
28965
|
+
TOKEN_LIMIT_REACHED: import("wapi-client/lib/errors").ErrorSpec;
|
|
28966
|
+
TR_INVALID_BALANCE: import("wapi-client/lib/errors").ErrorSpec;
|
|
28967
|
+
TR_AMOUNT_NOT_DIVISIBLE: import("wapi-client/lib/errors").ErrorSpec;
|
|
28968
|
+
TR_TOKEN_DISABLED: import("wapi-client/lib/errors").ErrorSpec;
|
|
28969
|
+
TR_TOKEN_DWONLY: import("wapi-client/lib/errors").ErrorSpec;
|
|
28970
|
+
TR_TRG_STATUS_MISMATCH: import("wapi-client/lib/errors").ErrorSpec;
|
|
28971
|
+
TR_TRG_CLOSED: import("wapi-client/lib/errors").ErrorSpec;
|
|
28972
|
+
TR_TIMESTAMP_IN_PAST: import("wapi-client/lib/errors").ErrorSpec;
|
|
28973
|
+
TR_TIMESTAMP_MUST_BE_LATEST: import("wapi-client/lib/errors").ErrorSpec;
|
|
28974
|
+
TR_INVALID_CANCELLED: import("wapi-client/lib/errors").ErrorSpec;
|
|
28975
|
+
TR_FROM_WALLET_STATUS_CONSTRAINT: import("wapi-client/lib/errors").ErrorSpec;
|
|
28976
|
+
TR_TO_WALLET_STATUS_CONSTRAINT: import("wapi-client/lib/errors").ErrorSpec;
|
|
28977
|
+
TR_CANCELLED_CANT_RV: import("wapi-client/lib/errors").ErrorSpec;
|
|
28978
|
+
TR_DEPOSIT_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|
|
28979
|
+
TR_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|
|
28980
|
+
TR_UNIQUE_IDENTIFIER: import("wapi-client/lib/errors").ErrorSpec;
|
|
28981
|
+
TR_DIFFERENT_WALLETS: import("wapi-client/lib/errors").ErrorSpec;
|
|
28982
|
+
TRG_SINGLE_PENDING_TR_CANT_RV: import("wapi-client/lib/errors").ErrorSpec;
|
|
28983
|
+
TRG_CANCELLED_CANT_RV: import("wapi-client/lib/errors").ErrorSpec;
|
|
28984
|
+
TRG_DEPOSIT_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|
|
28985
|
+
TRG_WITHDRAWAL_CANT_RV_WITHOUT_FLAG: import("wapi-client/lib/errors").ErrorSpec;
|
|
28986
|
+
TRG_UNIQUE_IDENTIFIER: import("wapi-client/lib/errors").ErrorSpec;
|
|
28987
|
+
TOKEN_UNIQUE_FOREIGN: import("wapi-client/lib/errors").ErrorSpec;
|
|
28988
|
+
WALLET_UNIQUE_FOREIGN: import("wapi-client/lib/errors").ErrorSpec;
|
|
28989
|
+
UNIQUE_CONSTRAINT: import("wapi-client/lib/errors").ErrorSpec;
|
|
28990
|
+
APIKEY_DELETED_CANT_UPDATE: {
|
|
28991
|
+
code: number;
|
|
28992
|
+
message: string;
|
|
28993
|
+
description: string;
|
|
28994
|
+
};
|
|
28995
|
+
APIKEY_NOT_OWNED_CANT_UPDATE: {
|
|
28996
|
+
code: number;
|
|
28997
|
+
message: string;
|
|
28998
|
+
description: string;
|
|
28999
|
+
};
|
|
29000
|
+
APIKEY_LIMIT_REACHED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29001
|
+
HTTP_BODY_SIZE: import("wapi-client/lib/errors").ErrorSpec;
|
|
29002
|
+
DATABASE_EXPORT_CONFLICT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29003
|
+
DATABASE_IMPORT_CONFLICT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29004
|
+
DATABASE_EXPORT_PROGRESS_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29005
|
+
DATABASE_IMPORT_PROGRESS_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29006
|
+
DATABASE_IMPORT_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29007
|
+
TR_CANT_UPDATE_TO_PENDING: import("wapi-client/lib/errors").ErrorSpec;
|
|
29008
|
+
TR_CANT_UPDATE_TIMESTAMP: import("wapi-client/lib/errors").ErrorSpec;
|
|
29009
|
+
TR_CANT_INSERT_TIMESTAMP: import("wapi-client/lib/errors").ErrorSpec;
|
|
29010
|
+
TR_EMPTY_UPDATE_REQUEST: import("wapi-client/lib/errors").ErrorSpec;
|
|
29011
|
+
TR_MISSING_FILTER: import("wapi-client/lib/errors").ErrorSpec;
|
|
29012
|
+
TR_TO_WALLET_WITHDRAWAL: import("wapi-client/lib/errors").ErrorSpec;
|
|
29013
|
+
TR_FROM_WALLET_DEPOSIT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29014
|
+
TR_FROM_TO_CONFLICT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29015
|
+
TR_UNABLE_TO_RESOLVE_INPUT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29016
|
+
TRG_MISSING_FILTER: import("wapi-client/lib/errors").ErrorSpec;
|
|
29017
|
+
INVALID_FIELD_AGR_COMB: import("wapi-client/lib/errors").ErrorSpec;
|
|
29018
|
+
INVALID_FIELD_FOR_MODEL: import("wapi-client/lib/errors").ErrorSpec;
|
|
29019
|
+
NO_METADATA_ON_MODEL: import("wapi-client/lib/errors").ErrorSpec;
|
|
29020
|
+
INVALID_MODEL: import("wapi-client/lib/errors").ErrorSpec;
|
|
29021
|
+
INVALID_COMPLEX_FILTER: import("wapi-client/lib/errors").ErrorSpec;
|
|
29022
|
+
UNCLEAR_AGGREGATOR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29023
|
+
CONTRACT_OWNER_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29024
|
+
DISTRIBUTION_MISSING_TARGETS: import("wapi-client/lib/errors").ErrorSpec;
|
|
29025
|
+
TOKEN_INVALID_WALLET: import("wapi-client/lib/errors").ErrorSpec;
|
|
29026
|
+
BAL_FUTURE_DATETIME: import("wapi-client/lib/errors").ErrorSpec;
|
|
29027
|
+
INPUT_NEEDS_IDENTIFIER: import("wapi-client/lib/errors").ErrorSpec;
|
|
29028
|
+
RESET_INVALID_CONFIRMATION: import("wapi-client/lib/errors").ErrorSpec;
|
|
29029
|
+
INPUT_NEEDS_TOKEN: import("wapi-client/lib/errors").ErrorSpec;
|
|
29030
|
+
CONFLICTING_OPTIONS_FOR_BALANCE: import("wapi-client/lib/errors").ErrorSpec;
|
|
29031
|
+
CONFLICTING_OPTIONS_FOR_SIGNED_AMOUNT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29032
|
+
RUNNING_BALANCE_WITHOUT_WALLET: import("wapi-client/lib/errors").ErrorSpec;
|
|
29033
|
+
SIGNED_AMOUNT_WITHOUT_WALLET: import("wapi-client/lib/errors").ErrorSpec;
|
|
29034
|
+
REQUIRED_INPUT_MISSING: import("wapi-client/lib/errors").ErrorSpec;
|
|
29035
|
+
EMPTY_UPDATE_REQUEST: import("wapi-client/lib/errors").ErrorSpec;
|
|
29036
|
+
TRX_NOT_ALLOWED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29037
|
+
TRANSACTION_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29038
|
+
ONLY_SELECT_ALLOWED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29039
|
+
CNT_DEPOSIT_TOKEN_MISMATCH: import("wapi-client/lib/errors").ErrorSpec;
|
|
29040
|
+
CONNECTION_LOST: import("wapi-client/lib/errors").ErrorSpec;
|
|
29041
|
+
INPUT_STREAM_INVALID: import("wapi-client/lib/errors").ErrorSpec;
|
|
29042
|
+
INVALID_RESPONSE_STREAM_CHUNK: import("wapi-client/lib/errors").ErrorSpec;
|
|
29043
|
+
INVALID_INPUT_STREAM_CHUNK: import("wapi-client/lib/errors").ErrorSpec;
|
|
29044
|
+
INPUT_STREAM_TIMEOUT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29045
|
+
INPUT_STREAM_ERROR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29046
|
+
INPUT_STREAM_NOT_ALLOWED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29047
|
+
INVALID_STREAM_START_METHOD: import("wapi-client/lib/errors").ErrorSpec;
|
|
29048
|
+
METHOD_DISABLED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29049
|
+
FLAG_PRODUCTION_ON: import("wapi-client/lib/errors").ErrorSpec;
|
|
29050
|
+
FLAG_PRODUCTION_LOCKED: import("wapi-client/lib/errors").ErrorSpec;
|
|
29051
|
+
TRANSACTION_TIMEOUT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29052
|
+
CONNECTION_TIMEOUT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29053
|
+
SENDING_TIMEOUT: import("wapi-client/lib/errors").ErrorSpec;
|
|
29054
|
+
CONFIG_INVALID: import("wapi-client/lib/errors").ErrorSpec;
|
|
29055
|
+
AUTHENTICATION_ERROR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29056
|
+
AUTHORIZATION_ERROR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29057
|
+
PARSE_ERROR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29058
|
+
INVALID_REQUEST: import("wapi-client/lib/errors").ErrorSpec;
|
|
29059
|
+
METHOD_NOT_FOUND: import("wapi-client/lib/errors").ErrorSpec;
|
|
29060
|
+
INVALID_PARAMS: import("wapi-client/lib/errors").ErrorSpec;
|
|
29061
|
+
INTERNAL_SERVER_ERROR: import("wapi-client/lib/errors").ErrorSpec;
|
|
29062
|
+
};
|
|
29063
|
+
};
|
|
28544
29064
|
export * from "wapi-client/lib/stream-promise";
|
|
28545
29065
|
export type { ZodValidator } from "wapi-client/lib/validation";
|
|
28546
29066
|
export * from "wapi-client/lib/errors";
|