squarefi-bff-api-module 1.21.3 → 1.21.5
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/api/types/types.d.ts +1 -0
- package/dist/constants.d.ts +16 -1
- package/dist/constants.js +16 -1
- package/package.json +1 -1
- package/src/api/types/types.ts +1 -0
- package/src/constants.ts +16 -1
package/dist/constants.d.ts
CHANGED
|
@@ -53,15 +53,30 @@ export declare enum WalletTransactionRecordType {
|
|
|
53
53
|
DEPOSIT = "DEPOSIT",
|
|
54
54
|
DEPOSIT_CRYPTO_EXTERNAL = "DEPOSIT_CRYPTO_EXTERNAL",
|
|
55
55
|
DEPOSIT_CRYPTO_INTERNAL = "DEPOSIT_CRYPTO_INTERNAL",
|
|
56
|
+
DEPOSIT_INTERNAL = "DEPOSIT_INTERNAL",
|
|
57
|
+
DEPOSIT_MANUAL = "DEPOSIT_MANUAL",
|
|
56
58
|
EXCHANGE_CRYPTO_INTERNAL = "EXCHANGE_CRYPTO_INTERNAL",
|
|
57
59
|
EXT_EXCHANGE = "EXT_EXCHANGE",
|
|
58
60
|
FEE = "FEE",
|
|
61
|
+
HIFI_ACH_OFFRAMP = "HIFI_ACH_OFFRAMP",
|
|
62
|
+
HIFI_ACH_ONRAMP = "HIFI_ACH_ONRAMP",
|
|
63
|
+
HIFI_CRYPTO_TRANSFER = "HIFI_CRYPTO_TRANSFER",
|
|
64
|
+
HIFI_SEPA_OFFRAMP = "HIFI_SEPA_OFFRAMP",
|
|
65
|
+
HIFI_SEPA_ONRAMP = "HIFI_SEPA_ONRAMP",
|
|
66
|
+
HIFI_WIRE_OFFRAMP = "HIFI_WIRE_OFFRAMP",
|
|
67
|
+
HIFI_WIRE_ONRAMP = "HIFI_WIRE_ONRAMP",
|
|
59
68
|
NETWORK_FEE = "NETWORK_FEE",
|
|
69
|
+
OFFRAMP_ACHWIRE = "OFFRAMP_ACHWIRE",
|
|
70
|
+
OFFRAMP_SEPA = "OFFRAMP_SEPA",
|
|
71
|
+
OMNIBUS_CRYPTO_TRANSFER = "OMNIBUS_CRYPTO_TRANSFER",
|
|
72
|
+
ONRAMP_ACHWIRE = "ONRAMP_ACHWIRE",
|
|
73
|
+
ONRAMP_SEPA = "ONRAMP_SEPA",
|
|
60
74
|
REFUND = "REFUND",
|
|
75
|
+
WHOLESALE_CARD_DEPOSIT = "WHOLESALE_CARD_DEPOSIT",
|
|
61
76
|
WITHDRAWAL = "WITHDRAWAL",
|
|
62
77
|
WITHDRAWAL_CRYPTO_EXTERNAL = "WITHDRAWAL_CRYPTO_EXTERNAL",
|
|
63
78
|
WITHDRAWAL_CRYPTO_INTERNAL = "WITHDRAWAL_CRYPTO_INTERNAL",
|
|
64
|
-
|
|
79
|
+
WITHDRAWAL_INTERNAL = "WITHDRAWAL_INTERNAL"
|
|
65
80
|
}
|
|
66
81
|
export declare enum RequestStatus {
|
|
67
82
|
NONE = "none",
|
package/dist/constants.js
CHANGED
|
@@ -57,15 +57,30 @@ var WalletTransactionRecordType;
|
|
|
57
57
|
WalletTransactionRecordType["DEPOSIT"] = "DEPOSIT";
|
|
58
58
|
WalletTransactionRecordType["DEPOSIT_CRYPTO_EXTERNAL"] = "DEPOSIT_CRYPTO_EXTERNAL";
|
|
59
59
|
WalletTransactionRecordType["DEPOSIT_CRYPTO_INTERNAL"] = "DEPOSIT_CRYPTO_INTERNAL";
|
|
60
|
+
WalletTransactionRecordType["DEPOSIT_INTERNAL"] = "DEPOSIT_INTERNAL";
|
|
61
|
+
WalletTransactionRecordType["DEPOSIT_MANUAL"] = "DEPOSIT_MANUAL";
|
|
60
62
|
WalletTransactionRecordType["EXCHANGE_CRYPTO_INTERNAL"] = "EXCHANGE_CRYPTO_INTERNAL";
|
|
61
63
|
WalletTransactionRecordType["EXT_EXCHANGE"] = "EXT_EXCHANGE";
|
|
62
64
|
WalletTransactionRecordType["FEE"] = "FEE";
|
|
65
|
+
WalletTransactionRecordType["HIFI_ACH_OFFRAMP"] = "HIFI_ACH_OFFRAMP";
|
|
66
|
+
WalletTransactionRecordType["HIFI_ACH_ONRAMP"] = "HIFI_ACH_ONRAMP";
|
|
67
|
+
WalletTransactionRecordType["HIFI_CRYPTO_TRANSFER"] = "HIFI_CRYPTO_TRANSFER";
|
|
68
|
+
WalletTransactionRecordType["HIFI_SEPA_OFFRAMP"] = "HIFI_SEPA_OFFRAMP";
|
|
69
|
+
WalletTransactionRecordType["HIFI_SEPA_ONRAMP"] = "HIFI_SEPA_ONRAMP";
|
|
70
|
+
WalletTransactionRecordType["HIFI_WIRE_OFFRAMP"] = "HIFI_WIRE_OFFRAMP";
|
|
71
|
+
WalletTransactionRecordType["HIFI_WIRE_ONRAMP"] = "HIFI_WIRE_ONRAMP";
|
|
63
72
|
WalletTransactionRecordType["NETWORK_FEE"] = "NETWORK_FEE";
|
|
73
|
+
WalletTransactionRecordType["OFFRAMP_ACHWIRE"] = "OFFRAMP_ACHWIRE";
|
|
74
|
+
WalletTransactionRecordType["OFFRAMP_SEPA"] = "OFFRAMP_SEPA";
|
|
75
|
+
WalletTransactionRecordType["OMNIBUS_CRYPTO_TRANSFER"] = "OMNIBUS_CRYPTO_TRANSFER";
|
|
76
|
+
WalletTransactionRecordType["ONRAMP_ACHWIRE"] = "ONRAMP_ACHWIRE";
|
|
77
|
+
WalletTransactionRecordType["ONRAMP_SEPA"] = "ONRAMP_SEPA";
|
|
64
78
|
WalletTransactionRecordType["REFUND"] = "REFUND";
|
|
79
|
+
WalletTransactionRecordType["WHOLESALE_CARD_DEPOSIT"] = "WHOLESALE_CARD_DEPOSIT";
|
|
65
80
|
WalletTransactionRecordType["WITHDRAWAL"] = "WITHDRAWAL";
|
|
66
81
|
WalletTransactionRecordType["WITHDRAWAL_CRYPTO_EXTERNAL"] = "WITHDRAWAL_CRYPTO_EXTERNAL";
|
|
67
82
|
WalletTransactionRecordType["WITHDRAWAL_CRYPTO_INTERNAL"] = "WITHDRAWAL_CRYPTO_INTERNAL";
|
|
68
|
-
WalletTransactionRecordType["
|
|
83
|
+
WalletTransactionRecordType["WITHDRAWAL_INTERNAL"] = "WITHDRAWAL_INTERNAL";
|
|
69
84
|
})(WalletTransactionRecordType || (exports.WalletTransactionRecordType = WalletTransactionRecordType = {}));
|
|
70
85
|
var RequestStatus;
|
|
71
86
|
(function (RequestStatus) {
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
package/src/constants.ts
CHANGED
|
@@ -63,15 +63,30 @@ export enum WalletTransactionRecordType {
|
|
|
63
63
|
DEPOSIT = 'DEPOSIT',
|
|
64
64
|
DEPOSIT_CRYPTO_EXTERNAL = 'DEPOSIT_CRYPTO_EXTERNAL',
|
|
65
65
|
DEPOSIT_CRYPTO_INTERNAL = 'DEPOSIT_CRYPTO_INTERNAL',
|
|
66
|
+
DEPOSIT_INTERNAL = 'DEPOSIT_INTERNAL',
|
|
67
|
+
DEPOSIT_MANUAL = 'DEPOSIT_MANUAL',
|
|
66
68
|
EXCHANGE_CRYPTO_INTERNAL = 'EXCHANGE_CRYPTO_INTERNAL',
|
|
67
69
|
EXT_EXCHANGE = 'EXT_EXCHANGE',
|
|
68
70
|
FEE = 'FEE',
|
|
71
|
+
HIFI_ACH_OFFRAMP = 'HIFI_ACH_OFFRAMP',
|
|
72
|
+
HIFI_ACH_ONRAMP = 'HIFI_ACH_ONRAMP',
|
|
73
|
+
HIFI_CRYPTO_TRANSFER = 'HIFI_CRYPTO_TRANSFER',
|
|
74
|
+
HIFI_SEPA_OFFRAMP = 'HIFI_SEPA_OFFRAMP',
|
|
75
|
+
HIFI_SEPA_ONRAMP = 'HIFI_SEPA_ONRAMP',
|
|
76
|
+
HIFI_WIRE_OFFRAMP = 'HIFI_WIRE_OFFRAMP',
|
|
77
|
+
HIFI_WIRE_ONRAMP = 'HIFI_WIRE_ONRAMP',
|
|
69
78
|
NETWORK_FEE = 'NETWORK_FEE',
|
|
79
|
+
OFFRAMP_ACHWIRE = 'OFFRAMP_ACHWIRE',
|
|
80
|
+
OFFRAMP_SEPA = 'OFFRAMP_SEPA',
|
|
81
|
+
OMNIBUS_CRYPTO_TRANSFER = 'OMNIBUS_CRYPTO_TRANSFER',
|
|
82
|
+
ONRAMP_ACHWIRE = 'ONRAMP_ACHWIRE',
|
|
83
|
+
ONRAMP_SEPA = 'ONRAMP_SEPA',
|
|
70
84
|
REFUND = 'REFUND',
|
|
85
|
+
WHOLESALE_CARD_DEPOSIT = 'WHOLESALE_CARD_DEPOSIT',
|
|
71
86
|
WITHDRAWAL = 'WITHDRAWAL',
|
|
72
87
|
WITHDRAWAL_CRYPTO_EXTERNAL = 'WITHDRAWAL_CRYPTO_EXTERNAL',
|
|
73
88
|
WITHDRAWAL_CRYPTO_INTERNAL = 'WITHDRAWAL_CRYPTO_INTERNAL',
|
|
74
|
-
|
|
89
|
+
WITHDRAWAL_INTERNAL = 'WITHDRAWAL_INTERNAL',
|
|
75
90
|
}
|
|
76
91
|
|
|
77
92
|
export enum RequestStatus {
|