@blindpay/node 2.4.0 → 3.0.0
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-client-Cw2mNJeR.d.mts → api-client-B7VQkM_4.d.mts} +96 -35
- package/dist/{api-client-Cw2mNJeR.d.ts → api-client-B7VQkM_4.d.ts} +96 -35
- package/dist/{chunk-5XJJKYXE.mjs → chunk-LEPGLH7Q.mjs} +20 -10
- package/dist/{chunk-3QQCDR3E.mjs → chunk-VBZHAPK7.mjs} +8 -0
- package/dist/{chunk-OTRFWEEC.mjs → chunk-VRA5HP7F.mjs} +4 -0
- package/dist/{chunk-4DVSRRBP.mjs → chunk-WH2VNZE7.mjs} +25 -22
- package/dist/index.d.mts +14 -14
- package/dist/index.d.ts +14 -14
- package/dist/index.js +50 -25
- package/dist/index.mjs +8 -8
- package/dist/resources/api-keys/api-keys.test.js +50 -25
- package/dist/resources/api-keys/api-keys.test.mjs +5 -5
- package/dist/resources/api-keys/index.d.mts +1 -1
- package/dist/resources/api-keys/index.d.ts +1 -1
- package/dist/resources/available/available.test.js +50 -25
- package/dist/resources/available/available.test.mjs +5 -5
- package/dist/resources/available/index.d.mts +1 -1
- package/dist/resources/available/index.d.ts +1 -1
- package/dist/resources/bank-accounts/bank-accounts.test.js +50 -25
- package/dist/resources/bank-accounts/bank-accounts.test.mjs +5 -5
- package/dist/resources/bank-accounts/index.d.mts +2 -4
- package/dist/resources/bank-accounts/index.d.ts +2 -4
- package/dist/resources/instances/index.d.mts +1 -1
- package/dist/resources/instances/index.d.ts +1 -1
- package/dist/resources/instances/instances.test.js +50 -25
- package/dist/resources/instances/instances.test.mjs +5 -5
- package/dist/resources/partner-fees/index.d.mts +1 -1
- package/dist/resources/partner-fees/index.d.ts +1 -1
- package/dist/resources/partner-fees/partner-fees.test.js +50 -25
- package/dist/resources/partner-fees/partner-fees.test.mjs +5 -5
- package/dist/resources/payins/index.d.mts +9 -33
- package/dist/resources/payins/index.d.ts +9 -33
- package/dist/resources/payins/payins-quotes.test.js +100 -25
- package/dist/resources/payins/payins-quotes.test.mjs +55 -5
- package/dist/resources/payins/payins.test.js +164 -52
- package/dist/resources/payins/payins.test.mjs +119 -32
- package/dist/resources/payins/quotes.d.mts +38 -2
- package/dist/resources/payins/quotes.d.ts +38 -2
- package/dist/resources/payins/quotes.js +4 -0
- package/dist/resources/payins/quotes.mjs +1 -1
- package/dist/resources/payouts/index.d.mts +42 -17
- package/dist/resources/payouts/index.d.ts +42 -17
- package/dist/resources/payouts/index.js +8 -0
- package/dist/resources/payouts/index.mjs +1 -1
- package/dist/resources/payouts/payouts.test.js +162 -27
- package/dist/resources/payouts/payouts.test.mjs +117 -7
- package/dist/resources/quotes/index.d.mts +1 -1
- package/dist/resources/quotes/index.d.ts +1 -1
- package/dist/resources/quotes/quotes.test.js +50 -25
- package/dist/resources/quotes/quotes.test.mjs +5 -5
- package/dist/resources/receivers/index.d.mts +9 -7
- package/dist/resources/receivers/index.d.ts +9 -7
- package/dist/resources/receivers/receivers.test.js +57 -33
- package/dist/resources/receivers/receivers.test.mjs +12 -13
- package/dist/resources/terms-of-service/index.d.mts +1 -1
- package/dist/resources/terms-of-service/index.d.ts +1 -1
- package/dist/resources/terms-of-service/terms-of-service.test.js +50 -25
- package/dist/resources/terms-of-service/terms-of-service.test.mjs +5 -5
- package/dist/resources/virtual-accounts/index.d.mts +22 -7
- package/dist/resources/virtual-accounts/index.d.ts +22 -7
- package/dist/resources/virtual-accounts/index.js +20 -10
- package/dist/resources/virtual-accounts/index.mjs +1 -1
- package/dist/resources/virtual-accounts/virtual-accounts.test.js +169 -44
- package/dist/resources/virtual-accounts/virtual-accounts.test.mjs +124 -24
- package/dist/resources/wallets/blockchain.d.mts +1 -1
- package/dist/resources/wallets/blockchain.d.ts +1 -1
- package/dist/resources/wallets/blockchain.test.js +50 -25
- package/dist/resources/wallets/blockchain.test.mjs +5 -5
- package/dist/resources/wallets/offramp.d.mts +1 -1
- package/dist/resources/wallets/offramp.d.ts +1 -1
- package/dist/resources/wallets/offramp.test.js +50 -25
- package/dist/resources/wallets/offramp.test.mjs +5 -5
- package/dist/resources/webhooks/index.d.mts +1 -1
- package/dist/resources/webhooks/index.d.ts +1 -1
- package/dist/resources/webhooks/webhooks.test.js +50 -25
- package/dist/resources/webhooks/webhooks.test.mjs +5 -5
- package/package.json +6 -2
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import { I as InternalApiClient, S as StablecoinToken,
|
|
1
|
+
import { I as InternalApiClient, B as BlindpayApiResponse, S as StablecoinToken, N as Network } from '../../api-client-B7VQkM_4.js';
|
|
2
2
|
|
|
3
|
+
type BankingPartner = "jpmorgan" | "citi";
|
|
3
4
|
type VirtualAccount = {
|
|
4
5
|
id: string;
|
|
6
|
+
banking_partner: BankingPartner;
|
|
7
|
+
kyc_status: string;
|
|
5
8
|
us: {
|
|
6
9
|
ach: {
|
|
7
10
|
routing_number: string;
|
|
@@ -30,24 +33,36 @@ type VirtualAccount = {
|
|
|
30
33
|
};
|
|
31
34
|
token: StablecoinToken;
|
|
32
35
|
blockchain_wallet_id: string;
|
|
36
|
+
blockchain_wallet: {
|
|
37
|
+
network: Network;
|
|
38
|
+
address: string;
|
|
39
|
+
} | null;
|
|
33
40
|
};
|
|
41
|
+
type ListVirtualAccountsInput = string;
|
|
42
|
+
type ListVirtualAccountsResponse = VirtualAccount[];
|
|
34
43
|
type CreateVirtualAccountInput = {
|
|
35
44
|
receiver_id: string;
|
|
36
|
-
|
|
45
|
+
banking_partner: BankingPartner;
|
|
37
46
|
token: StablecoinToken;
|
|
47
|
+
blockchain_wallet_id: string;
|
|
38
48
|
};
|
|
39
49
|
type CreateVirtualAccountResponse = VirtualAccount;
|
|
40
|
-
type GetVirtualAccountInput =
|
|
50
|
+
type GetVirtualAccountInput = {
|
|
51
|
+
receiver_id: string;
|
|
52
|
+
id: string;
|
|
53
|
+
};
|
|
41
54
|
type GetVirtualAccountResponse = VirtualAccount;
|
|
42
55
|
type UpdateVirtualAccountInput = {
|
|
43
56
|
receiver_id: string;
|
|
44
|
-
|
|
57
|
+
id: string;
|
|
45
58
|
token: StablecoinToken;
|
|
59
|
+
blockchain_wallet_id: string;
|
|
46
60
|
};
|
|
47
61
|
declare function createVirtualAccountsResource(instanceId: string, client: InternalApiClient): {
|
|
48
|
-
|
|
62
|
+
list(receiver_id: ListVirtualAccountsInput): Promise<BlindpayApiResponse<ListVirtualAccountsResponse>>;
|
|
63
|
+
get({ receiver_id, id, }: GetVirtualAccountInput): Promise<BlindpayApiResponse<GetVirtualAccountResponse>>;
|
|
49
64
|
create({ receiver_id, ...data }: CreateVirtualAccountInput): Promise<BlindpayApiResponse<CreateVirtualAccountResponse>>;
|
|
50
|
-
|
|
65
|
+
update({ receiver_id, id, ...data }: UpdateVirtualAccountInput): Promise<BlindpayApiResponse<void>>;
|
|
51
66
|
};
|
|
52
67
|
|
|
53
|
-
export { type CreateVirtualAccountInput, type CreateVirtualAccountResponse, type GetVirtualAccountInput, type GetVirtualAccountResponse, type UpdateVirtualAccountInput, type VirtualAccount, createVirtualAccountsResource };
|
|
68
|
+
export { type BankingPartner, type CreateVirtualAccountInput, type CreateVirtualAccountResponse, type GetVirtualAccountInput, type GetVirtualAccountResponse, type ListVirtualAccountsInput, type ListVirtualAccountsResponse, type UpdateVirtualAccountInput, type VirtualAccount, createVirtualAccountsResource };
|
|
@@ -39,30 +39,40 @@ __export(virtual_accounts_exports, {
|
|
|
39
39
|
module.exports = __toCommonJS(virtual_accounts_exports);
|
|
40
40
|
function createVirtualAccountsResource(instanceId, client) {
|
|
41
41
|
return {
|
|
42
|
-
|
|
42
|
+
list(receiver_id) {
|
|
43
|
+
return client.get(`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`);
|
|
44
|
+
},
|
|
45
|
+
get({
|
|
46
|
+
receiver_id,
|
|
47
|
+
id
|
|
48
|
+
}) {
|
|
49
|
+
return client.get(
|
|
50
|
+
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts/${id}`
|
|
51
|
+
);
|
|
52
|
+
},
|
|
53
|
+
create(_a) {
|
|
43
54
|
var _b = _a, {
|
|
44
55
|
receiver_id
|
|
45
56
|
} = _b, data = __objRest(_b, [
|
|
46
57
|
"receiver_id"
|
|
47
58
|
]);
|
|
48
|
-
return client.
|
|
59
|
+
return client.post(
|
|
49
60
|
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`,
|
|
50
61
|
data
|
|
51
62
|
);
|
|
52
63
|
},
|
|
53
|
-
|
|
64
|
+
update(_c) {
|
|
54
65
|
var _d = _c, {
|
|
55
|
-
receiver_id
|
|
66
|
+
receiver_id,
|
|
67
|
+
id
|
|
56
68
|
} = _d, data = __objRest(_d, [
|
|
57
|
-
"receiver_id"
|
|
69
|
+
"receiver_id",
|
|
70
|
+
"id"
|
|
58
71
|
]);
|
|
59
|
-
return client.
|
|
60
|
-
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`,
|
|
72
|
+
return client.put(
|
|
73
|
+
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts/${id}`,
|
|
61
74
|
data
|
|
62
75
|
);
|
|
63
|
-
},
|
|
64
|
-
get(receiver_id) {
|
|
65
|
-
return client.get(`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`);
|
|
66
76
|
}
|
|
67
77
|
};
|
|
68
78
|
}
|
|
@@ -18699,10 +18699,10 @@ function getImporter(name) {
|
|
|
18699
18699
|
var import_expect_type = __toESM(require_dist(), 1);
|
|
18700
18700
|
|
|
18701
18701
|
// src/client.ts
|
|
18702
|
-
var
|
|
18702
|
+
var import_svix = require("svix");
|
|
18703
18703
|
|
|
18704
18704
|
// package.json
|
|
18705
|
-
var version = "
|
|
18705
|
+
var version = "3.0.0";
|
|
18706
18706
|
|
|
18707
18707
|
// src/internal/blindpay-error.ts
|
|
18708
18708
|
var BlindPayError = class extends Error {
|
|
@@ -18931,6 +18931,10 @@ function createPayinQuotesResource(instanceId, client) {
|
|
|
18931
18931
|
},
|
|
18932
18932
|
get(id) {
|
|
18933
18933
|
return client.get(`/instances/${instanceId}/payin-quotes/${id}`);
|
|
18934
|
+
},
|
|
18935
|
+
list(params) {
|
|
18936
|
+
const queryParams = params ? `?${new URLSearchParams(params)}` : "";
|
|
18937
|
+
return client.get(`/instances/${instanceId}/payin-quotes${queryParams}`);
|
|
18934
18938
|
}
|
|
18935
18939
|
};
|
|
18936
18940
|
}
|
|
@@ -18963,6 +18967,14 @@ function createPayoutsResource(instanceId, client) {
|
|
|
18963
18967
|
createEvm(_c) {
|
|
18964
18968
|
var data = __objRest(_c, []);
|
|
18965
18969
|
return client.post(`/instances/${instanceId}/payouts/evm`, data);
|
|
18970
|
+
},
|
|
18971
|
+
authorizeSolana(_d) {
|
|
18972
|
+
var data = __objRest(_d, []);
|
|
18973
|
+
return client.post(`/instances/${instanceId}/payouts/solana/authorize`, data);
|
|
18974
|
+
},
|
|
18975
|
+
createSolana(_e) {
|
|
18976
|
+
var data = __objRest(_e, []);
|
|
18977
|
+
return client.post(`/instances/${instanceId}/payouts/solana`, data);
|
|
18966
18978
|
}
|
|
18967
18979
|
};
|
|
18968
18980
|
}
|
|
@@ -19055,30 +19067,40 @@ function createTermsOfServiceResource(instanceId, client) {
|
|
|
19055
19067
|
// src/resources/virtual-accounts/index.ts
|
|
19056
19068
|
function createVirtualAccountsResource(instanceId, client) {
|
|
19057
19069
|
return {
|
|
19058
|
-
|
|
19070
|
+
list(receiver_id) {
|
|
19071
|
+
return client.get(`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`);
|
|
19072
|
+
},
|
|
19073
|
+
get({
|
|
19074
|
+
receiver_id,
|
|
19075
|
+
id
|
|
19076
|
+
}) {
|
|
19077
|
+
return client.get(
|
|
19078
|
+
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts/${id}`
|
|
19079
|
+
);
|
|
19080
|
+
},
|
|
19081
|
+
create(_a3) {
|
|
19059
19082
|
var _b = _a3, {
|
|
19060
19083
|
receiver_id
|
|
19061
19084
|
} = _b, data = __objRest(_b, [
|
|
19062
19085
|
"receiver_id"
|
|
19063
19086
|
]);
|
|
19064
|
-
return client.
|
|
19087
|
+
return client.post(
|
|
19065
19088
|
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`,
|
|
19066
19089
|
data
|
|
19067
19090
|
);
|
|
19068
19091
|
},
|
|
19069
|
-
|
|
19092
|
+
update(_c) {
|
|
19070
19093
|
var _d = _c, {
|
|
19071
|
-
receiver_id
|
|
19094
|
+
receiver_id,
|
|
19095
|
+
id
|
|
19072
19096
|
} = _d, data = __objRest(_d, [
|
|
19073
|
-
"receiver_id"
|
|
19097
|
+
"receiver_id",
|
|
19098
|
+
"id"
|
|
19074
19099
|
]);
|
|
19075
|
-
return client.
|
|
19076
|
-
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`,
|
|
19100
|
+
return client.put(
|
|
19101
|
+
`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts/${id}`,
|
|
19077
19102
|
data
|
|
19078
19103
|
);
|
|
19079
|
-
},
|
|
19080
|
-
get(receiver_id) {
|
|
19081
|
-
return client.get(`/instances/${instanceId}/receivers/${receiver_id}/virtual-accounts`);
|
|
19082
19104
|
}
|
|
19083
19105
|
};
|
|
19084
19106
|
}
|
|
@@ -19336,26 +19358,29 @@ var BlindPay = class {
|
|
|
19336
19358
|
});
|
|
19337
19359
|
}
|
|
19338
19360
|
/**
|
|
19339
|
-
* Verifies the BlindPay webhook signature
|
|
19361
|
+
* Verifies the BlindPay webhook signature using Svix
|
|
19340
19362
|
*
|
|
19341
19363
|
* @param params.secret The webhook secret from BlindPay dashboard
|
|
19342
|
-
* @param params.
|
|
19343
|
-
* @param params.
|
|
19344
|
-
* @param params.payload The raw request body
|
|
19345
|
-
* @param params.svixSignature The value of the `svix-signature` header
|
|
19364
|
+
* @param params.headers The webhook headers object containing svix-id, svix-timestamp, and svix-signature
|
|
19365
|
+
* @param params.payload The raw request body as a string
|
|
19346
19366
|
* @returns {boolean} True if the signature is valid, false otherwise
|
|
19347
19367
|
*/
|
|
19348
19368
|
verifyWebhookSignature({
|
|
19349
19369
|
secret,
|
|
19350
|
-
|
|
19351
|
-
|
|
19352
|
-
payload,
|
|
19353
|
-
svixSignature
|
|
19370
|
+
headers,
|
|
19371
|
+
payload
|
|
19354
19372
|
}) {
|
|
19355
|
-
|
|
19356
|
-
|
|
19357
|
-
|
|
19358
|
-
|
|
19373
|
+
try {
|
|
19374
|
+
const webhook = new import_svix.Webhook(secret);
|
|
19375
|
+
webhook.verify(payload, {
|
|
19376
|
+
"svix-id": headers.id,
|
|
19377
|
+
"svix-timestamp": headers.timestamp,
|
|
19378
|
+
"svix-signature": headers.signature
|
|
19379
|
+
});
|
|
19380
|
+
return true;
|
|
19381
|
+
} catch (e) {
|
|
19382
|
+
return false;
|
|
19383
|
+
}
|
|
19359
19384
|
}
|
|
19360
19385
|
};
|
|
19361
19386
|
|
|
@@ -19363,24 +19388,95 @@ var BlindPay = class {
|
|
|
19363
19388
|
describe("Virtual accounts", () => {
|
|
19364
19389
|
afterEach(() => fetchMock.resetMocks());
|
|
19365
19390
|
const blindpay = new BlindPay({ apiKey: "test-key", instanceId: "in_000000000000" });
|
|
19366
|
-
describe("
|
|
19367
|
-
it("should
|
|
19368
|
-
|
|
19391
|
+
describe("List virtual accounts", () => {
|
|
19392
|
+
it("should list virtual accounts", () => __async(null, null, function* () {
|
|
19393
|
+
const mockedVirtualAccounts = [
|
|
19394
|
+
{
|
|
19395
|
+
id: "va_000000000000",
|
|
19396
|
+
banking_partner: "jpmorgan",
|
|
19397
|
+
kyc_status: "approved",
|
|
19398
|
+
us: {
|
|
19399
|
+
ach: {
|
|
19400
|
+
routing_number: "123456789",
|
|
19401
|
+
account_number: "123456789"
|
|
19402
|
+
},
|
|
19403
|
+
wire: {
|
|
19404
|
+
routing_number: "123456789",
|
|
19405
|
+
account_number: "123456789"
|
|
19406
|
+
},
|
|
19407
|
+
rtp: {
|
|
19408
|
+
routing_number: "123456789",
|
|
19409
|
+
account_number: "123456789"
|
|
19410
|
+
},
|
|
19411
|
+
swift_bic_code: "CHASUS33",
|
|
19412
|
+
account_type: "Business checking",
|
|
19413
|
+
beneficiary: {
|
|
19414
|
+
name: "Receiver Name",
|
|
19415
|
+
address_line_1: "8 The Green, #19364",
|
|
19416
|
+
address_line_2: "Dover, DE 19901"
|
|
19417
|
+
},
|
|
19418
|
+
receiving_bank: {
|
|
19419
|
+
name: "JPMorgan Chase",
|
|
19420
|
+
address_line_1: "270 Park Ave",
|
|
19421
|
+
address_line_2: "New York, NY, 10017-2070"
|
|
19422
|
+
}
|
|
19423
|
+
},
|
|
19424
|
+
token: "USDC",
|
|
19425
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
19426
|
+
blockchain_wallet: {
|
|
19427
|
+
network: "base",
|
|
19428
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
19429
|
+
}
|
|
19430
|
+
},
|
|
19431
|
+
{
|
|
19432
|
+
id: "va_000000000001",
|
|
19433
|
+
banking_partner: "citi",
|
|
19434
|
+
kyc_status: "approved",
|
|
19435
|
+
us: {
|
|
19436
|
+
ach: {
|
|
19437
|
+
routing_number: "123456789",
|
|
19438
|
+
account_number: "123456789"
|
|
19439
|
+
},
|
|
19440
|
+
wire: {
|
|
19441
|
+
routing_number: "123456789",
|
|
19442
|
+
account_number: "123456789"
|
|
19443
|
+
},
|
|
19444
|
+
rtp: {
|
|
19445
|
+
routing_number: "123456789",
|
|
19446
|
+
account_number: "123456789"
|
|
19447
|
+
},
|
|
19448
|
+
swift_bic_code: "CHASUS33",
|
|
19449
|
+
account_type: "Business checking",
|
|
19450
|
+
beneficiary: {
|
|
19451
|
+
name: "Receiver Name",
|
|
19452
|
+
address_line_1: "8 The Green, #19364",
|
|
19453
|
+
address_line_2: "Dover, DE 19901"
|
|
19454
|
+
},
|
|
19455
|
+
receiving_bank: {
|
|
19456
|
+
name: "JPMorgan Chase",
|
|
19457
|
+
address_line_1: "270 Park Ave",
|
|
19458
|
+
address_line_2: "New York, NY, 10017-2070"
|
|
19459
|
+
}
|
|
19460
|
+
},
|
|
19461
|
+
token: "USDC",
|
|
19462
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
19463
|
+
blockchain_wallet: null
|
|
19464
|
+
}
|
|
19465
|
+
];
|
|
19466
|
+
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccounts), {
|
|
19369
19467
|
headers: { "Content-Type": "application/json" }
|
|
19370
19468
|
});
|
|
19371
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
19372
|
-
receiver_id: "re_000000000000",
|
|
19373
|
-
blockchain_wallet_id: "bw_000000000000",
|
|
19374
|
-
token: "USDC"
|
|
19375
|
-
});
|
|
19469
|
+
const { data, error } = yield blindpay.virtualAccounts.list("re_000000000000");
|
|
19376
19470
|
globalExpect(error).toBeNull();
|
|
19377
|
-
globalExpect(data).toEqual(
|
|
19471
|
+
globalExpect(data).toEqual(mockedVirtualAccounts);
|
|
19378
19472
|
}));
|
|
19379
19473
|
});
|
|
19380
|
-
describe("
|
|
19381
|
-
it("should
|
|
19474
|
+
describe("Get virtual account", () => {
|
|
19475
|
+
it("should get a virtual account by id", () => __async(null, null, function* () {
|
|
19382
19476
|
const mockedVirtualAccount = {
|
|
19383
19477
|
id: "va_000000000000",
|
|
19478
|
+
banking_partner: "jpmorgan",
|
|
19479
|
+
kyc_status: "approved",
|
|
19384
19480
|
us: {
|
|
19385
19481
|
ach: {
|
|
19386
19482
|
routing_number: "123456789",
|
|
@@ -19408,24 +19504,29 @@ describe("Virtual accounts", () => {
|
|
|
19408
19504
|
}
|
|
19409
19505
|
},
|
|
19410
19506
|
token: "USDC",
|
|
19411
|
-
blockchain_wallet_id: "bw_000000000000"
|
|
19507
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
19508
|
+
blockchain_wallet: {
|
|
19509
|
+
network: "base",
|
|
19510
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
19511
|
+
}
|
|
19412
19512
|
};
|
|
19413
19513
|
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccount), {
|
|
19414
19514
|
headers: { "Content-Type": "application/json" }
|
|
19415
19515
|
});
|
|
19416
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
19516
|
+
const { data, error } = yield blindpay.virtualAccounts.get({
|
|
19417
19517
|
receiver_id: "re_000000000000",
|
|
19418
|
-
|
|
19419
|
-
token: "USDC"
|
|
19518
|
+
id: "va_000000000000"
|
|
19420
19519
|
});
|
|
19421
19520
|
globalExpect(error).toBeNull();
|
|
19422
19521
|
globalExpect(data).toEqual(mockedVirtualAccount);
|
|
19423
19522
|
}));
|
|
19424
19523
|
});
|
|
19425
|
-
describe("
|
|
19426
|
-
it("should
|
|
19524
|
+
describe("Create virtual account", () => {
|
|
19525
|
+
it("should create a virtual account", () => __async(null, null, function* () {
|
|
19427
19526
|
const mockedVirtualAccount = {
|
|
19428
19527
|
id: "va_000000000000",
|
|
19528
|
+
banking_partner: "jpmorgan",
|
|
19529
|
+
kyc_status: "approved",
|
|
19429
19530
|
us: {
|
|
19430
19531
|
ach: {
|
|
19431
19532
|
routing_number: "123456789",
|
|
@@ -19453,16 +19554,40 @@ describe("Virtual accounts", () => {
|
|
|
19453
19554
|
}
|
|
19454
19555
|
},
|
|
19455
19556
|
token: "USDC",
|
|
19456
|
-
blockchain_wallet_id: "bw_000000000000"
|
|
19557
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
19558
|
+
blockchain_wallet: {
|
|
19559
|
+
network: "base",
|
|
19560
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
19561
|
+
}
|
|
19457
19562
|
};
|
|
19458
19563
|
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccount), {
|
|
19459
19564
|
headers: { "Content-Type": "application/json" }
|
|
19460
19565
|
});
|
|
19461
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
19566
|
+
const { data, error } = yield blindpay.virtualAccounts.create({
|
|
19567
|
+
receiver_id: "re_000000000000",
|
|
19568
|
+
banking_partner: "jpmorgan",
|
|
19569
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
19570
|
+
token: "USDC"
|
|
19571
|
+
});
|
|
19462
19572
|
globalExpect(error).toBeNull();
|
|
19463
19573
|
globalExpect(data).toEqual(mockedVirtualAccount);
|
|
19464
19574
|
}));
|
|
19465
19575
|
});
|
|
19576
|
+
describe("Update virtual account", () => {
|
|
19577
|
+
it("should update a virtual account", () => __async(null, null, function* () {
|
|
19578
|
+
fetchMock.mockResponseOnce(JSON.stringify(null), {
|
|
19579
|
+
headers: { "Content-Type": "application/json" }
|
|
19580
|
+
});
|
|
19581
|
+
const { data, error } = yield blindpay.virtualAccounts.update({
|
|
19582
|
+
receiver_id: "re_000000000000",
|
|
19583
|
+
id: "va_000000000000",
|
|
19584
|
+
blockchain_wallet_id: "bw_000000000001",
|
|
19585
|
+
token: "USDT"
|
|
19586
|
+
});
|
|
19587
|
+
globalExpect(error).toBeNull();
|
|
19588
|
+
globalExpect(data).toEqual(null);
|
|
19589
|
+
}));
|
|
19590
|
+
});
|
|
19466
19591
|
});
|
|
19467
19592
|
/*! Bundled license information:
|
|
19468
19593
|
|
|
@@ -8,21 +8,21 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
BlindPay,
|
|
10
10
|
init_client
|
|
11
|
-
} from "../../chunk-
|
|
11
|
+
} from "../../chunk-WH2VNZE7.mjs";
|
|
12
12
|
import "../../chunk-FG25JHDX.mjs";
|
|
13
13
|
import "../../chunk-QGNLMN6Z.mjs";
|
|
14
14
|
import "../../chunk-UC57SCKQ.mjs";
|
|
15
15
|
import "../../chunk-TBTA7A2P.mjs";
|
|
16
16
|
import "../../chunk-67XECGMJ.mjs";
|
|
17
17
|
import "../../chunk-Z6EYX4D3.mjs";
|
|
18
|
-
import "../../chunk-
|
|
18
|
+
import "../../chunk-LEPGLH7Q.mjs";
|
|
19
19
|
import "../../chunk-RC5NN5UF.mjs";
|
|
20
20
|
import "../../chunk-W7NJUABI.mjs";
|
|
21
|
-
import "../../chunk-
|
|
22
|
-
import "../../chunk-
|
|
21
|
+
import "../../chunk-VRA5HP7F.mjs";
|
|
22
|
+
import "../../chunk-VBZHAPK7.mjs";
|
|
23
23
|
import "../../chunk-LRHWT4JU.mjs";
|
|
24
|
-
import "../../chunk-U7CKUUO7.mjs";
|
|
25
24
|
import "../../chunk-CPOSU35L.mjs";
|
|
25
|
+
import "../../chunk-U7CKUUO7.mjs";
|
|
26
26
|
import "../../chunk-B5T7AQLH.mjs";
|
|
27
27
|
import {
|
|
28
28
|
__async,
|
|
@@ -37,24 +37,95 @@ var require_virtual_accounts_test = __commonJS({
|
|
|
37
37
|
describe("Virtual accounts", () => {
|
|
38
38
|
afterEach(() => fetchMock.resetMocks());
|
|
39
39
|
const blindpay = new BlindPay({ apiKey: "test-key", instanceId: "in_000000000000" });
|
|
40
|
-
describe("
|
|
41
|
-
it("should
|
|
42
|
-
|
|
40
|
+
describe("List virtual accounts", () => {
|
|
41
|
+
it("should list virtual accounts", () => __async(null, null, function* () {
|
|
42
|
+
const mockedVirtualAccounts = [
|
|
43
|
+
{
|
|
44
|
+
id: "va_000000000000",
|
|
45
|
+
banking_partner: "jpmorgan",
|
|
46
|
+
kyc_status: "approved",
|
|
47
|
+
us: {
|
|
48
|
+
ach: {
|
|
49
|
+
routing_number: "123456789",
|
|
50
|
+
account_number: "123456789"
|
|
51
|
+
},
|
|
52
|
+
wire: {
|
|
53
|
+
routing_number: "123456789",
|
|
54
|
+
account_number: "123456789"
|
|
55
|
+
},
|
|
56
|
+
rtp: {
|
|
57
|
+
routing_number: "123456789",
|
|
58
|
+
account_number: "123456789"
|
|
59
|
+
},
|
|
60
|
+
swift_bic_code: "CHASUS33",
|
|
61
|
+
account_type: "Business checking",
|
|
62
|
+
beneficiary: {
|
|
63
|
+
name: "Receiver Name",
|
|
64
|
+
address_line_1: "8 The Green, #19364",
|
|
65
|
+
address_line_2: "Dover, DE 19901"
|
|
66
|
+
},
|
|
67
|
+
receiving_bank: {
|
|
68
|
+
name: "JPMorgan Chase",
|
|
69
|
+
address_line_1: "270 Park Ave",
|
|
70
|
+
address_line_2: "New York, NY, 10017-2070"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
token: "USDC",
|
|
74
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
75
|
+
blockchain_wallet: {
|
|
76
|
+
network: "base",
|
|
77
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
id: "va_000000000001",
|
|
82
|
+
banking_partner: "citi",
|
|
83
|
+
kyc_status: "approved",
|
|
84
|
+
us: {
|
|
85
|
+
ach: {
|
|
86
|
+
routing_number: "123456789",
|
|
87
|
+
account_number: "123456789"
|
|
88
|
+
},
|
|
89
|
+
wire: {
|
|
90
|
+
routing_number: "123456789",
|
|
91
|
+
account_number: "123456789"
|
|
92
|
+
},
|
|
93
|
+
rtp: {
|
|
94
|
+
routing_number: "123456789",
|
|
95
|
+
account_number: "123456789"
|
|
96
|
+
},
|
|
97
|
+
swift_bic_code: "CHASUS33",
|
|
98
|
+
account_type: "Business checking",
|
|
99
|
+
beneficiary: {
|
|
100
|
+
name: "Receiver Name",
|
|
101
|
+
address_line_1: "8 The Green, #19364",
|
|
102
|
+
address_line_2: "Dover, DE 19901"
|
|
103
|
+
},
|
|
104
|
+
receiving_bank: {
|
|
105
|
+
name: "JPMorgan Chase",
|
|
106
|
+
address_line_1: "270 Park Ave",
|
|
107
|
+
address_line_2: "New York, NY, 10017-2070"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
token: "USDC",
|
|
111
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
112
|
+
blockchain_wallet: null
|
|
113
|
+
}
|
|
114
|
+
];
|
|
115
|
+
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccounts), {
|
|
43
116
|
headers: { "Content-Type": "application/json" }
|
|
44
117
|
});
|
|
45
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
46
|
-
receiver_id: "re_000000000000",
|
|
47
|
-
blockchain_wallet_id: "bw_000000000000",
|
|
48
|
-
token: "USDC"
|
|
49
|
-
});
|
|
118
|
+
const { data, error } = yield blindpay.virtualAccounts.list("re_000000000000");
|
|
50
119
|
globalExpect(error).toBeNull();
|
|
51
|
-
globalExpect(data).toEqual(
|
|
120
|
+
globalExpect(data).toEqual(mockedVirtualAccounts);
|
|
52
121
|
}));
|
|
53
122
|
});
|
|
54
|
-
describe("
|
|
55
|
-
it("should
|
|
123
|
+
describe("Get virtual account", () => {
|
|
124
|
+
it("should get a virtual account by id", () => __async(null, null, function* () {
|
|
56
125
|
const mockedVirtualAccount = {
|
|
57
126
|
id: "va_000000000000",
|
|
127
|
+
banking_partner: "jpmorgan",
|
|
128
|
+
kyc_status: "approved",
|
|
58
129
|
us: {
|
|
59
130
|
ach: {
|
|
60
131
|
routing_number: "123456789",
|
|
@@ -82,24 +153,29 @@ var require_virtual_accounts_test = __commonJS({
|
|
|
82
153
|
}
|
|
83
154
|
},
|
|
84
155
|
token: "USDC",
|
|
85
|
-
blockchain_wallet_id: "bw_000000000000"
|
|
156
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
157
|
+
blockchain_wallet: {
|
|
158
|
+
network: "base",
|
|
159
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
160
|
+
}
|
|
86
161
|
};
|
|
87
162
|
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccount), {
|
|
88
163
|
headers: { "Content-Type": "application/json" }
|
|
89
164
|
});
|
|
90
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
165
|
+
const { data, error } = yield blindpay.virtualAccounts.get({
|
|
91
166
|
receiver_id: "re_000000000000",
|
|
92
|
-
|
|
93
|
-
token: "USDC"
|
|
167
|
+
id: "va_000000000000"
|
|
94
168
|
});
|
|
95
169
|
globalExpect(error).toBeNull();
|
|
96
170
|
globalExpect(data).toEqual(mockedVirtualAccount);
|
|
97
171
|
}));
|
|
98
172
|
});
|
|
99
|
-
describe("
|
|
100
|
-
it("should
|
|
173
|
+
describe("Create virtual account", () => {
|
|
174
|
+
it("should create a virtual account", () => __async(null, null, function* () {
|
|
101
175
|
const mockedVirtualAccount = {
|
|
102
176
|
id: "va_000000000000",
|
|
177
|
+
banking_partner: "jpmorgan",
|
|
178
|
+
kyc_status: "approved",
|
|
103
179
|
us: {
|
|
104
180
|
ach: {
|
|
105
181
|
routing_number: "123456789",
|
|
@@ -127,16 +203,40 @@ var require_virtual_accounts_test = __commonJS({
|
|
|
127
203
|
}
|
|
128
204
|
},
|
|
129
205
|
token: "USDC",
|
|
130
|
-
blockchain_wallet_id: "bw_000000000000"
|
|
206
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
207
|
+
blockchain_wallet: {
|
|
208
|
+
network: "base",
|
|
209
|
+
address: "0x1234567890123456789012345678901234567890"
|
|
210
|
+
}
|
|
131
211
|
};
|
|
132
212
|
fetchMock.mockResponseOnce(JSON.stringify(mockedVirtualAccount), {
|
|
133
213
|
headers: { "Content-Type": "application/json" }
|
|
134
214
|
});
|
|
135
|
-
const { data, error } = yield blindpay.virtualAccounts.
|
|
215
|
+
const { data, error } = yield blindpay.virtualAccounts.create({
|
|
216
|
+
receiver_id: "re_000000000000",
|
|
217
|
+
banking_partner: "jpmorgan",
|
|
218
|
+
blockchain_wallet_id: "bw_000000000000",
|
|
219
|
+
token: "USDC"
|
|
220
|
+
});
|
|
136
221
|
globalExpect(error).toBeNull();
|
|
137
222
|
globalExpect(data).toEqual(mockedVirtualAccount);
|
|
138
223
|
}));
|
|
139
224
|
});
|
|
225
|
+
describe("Update virtual account", () => {
|
|
226
|
+
it("should update a virtual account", () => __async(null, null, function* () {
|
|
227
|
+
fetchMock.mockResponseOnce(JSON.stringify(null), {
|
|
228
|
+
headers: { "Content-Type": "application/json" }
|
|
229
|
+
});
|
|
230
|
+
const { data, error } = yield blindpay.virtualAccounts.update({
|
|
231
|
+
receiver_id: "re_000000000000",
|
|
232
|
+
id: "va_000000000000",
|
|
233
|
+
blockchain_wallet_id: "bw_000000000001",
|
|
234
|
+
token: "USDT"
|
|
235
|
+
});
|
|
236
|
+
globalExpect(error).toBeNull();
|
|
237
|
+
globalExpect(data).toEqual(null);
|
|
238
|
+
}));
|
|
239
|
+
});
|
|
140
240
|
});
|
|
141
241
|
}
|
|
142
242
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as InternalApiClient, B as BlindpayApiResponse, N as Network } from '../../api-client-
|
|
1
|
+
import { I as InternalApiClient, B as BlindpayApiResponse, N as Network } from '../../api-client-B7VQkM_4.mjs';
|
|
2
2
|
|
|
3
3
|
type GetBlockchainWalletMessage = string;
|
|
4
4
|
type GetBlockchainWalletMessageResponse = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as InternalApiClient, B as BlindpayApiResponse, N as Network } from '../../api-client-
|
|
1
|
+
import { I as InternalApiClient, B as BlindpayApiResponse, N as Network } from '../../api-client-B7VQkM_4.js';
|
|
2
2
|
|
|
3
3
|
type GetBlockchainWalletMessage = string;
|
|
4
4
|
type GetBlockchainWalletMessageResponse = {
|