From 144fe9918a24d2fb62631d412003a53d2fe496a8 Mon Sep 17 00:00:00 2001 From: Philip Liu <12836897+philipliu@users.noreply.github.com> Date: Tue, 9 Jul 2024 12:17:43 -0400 Subject: [PATCH] Add mobile money fields and external_transfer_memo (#140) --- @stellar/anchor-tests/package.json | 2 +- @stellar/anchor-tests/src/schemas/sep12.ts | 4 ++++ server/package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index 7bd7346..80d258c 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.6.11", + "version": "0.6.12", "description": "stellar-anchor-tests is a library and command line interface for testing Stellar anchors.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/@stellar/anchor-tests/src/schemas/sep12.ts b/@stellar/anchor-tests/src/schemas/sep12.ts index c417e36..aba5231 100644 --- a/@stellar/anchor-tests/src/schemas/sep12.ts +++ b/@stellar/anchor-tests/src/schemas/sep12.ts @@ -14,14 +14,18 @@ export const sep9Fields = [ "birth_date", "birth_place", "birth_country_code", + "bank_name", "bank_account_type", "bank_account_number", "bank_number", "bank_phone_number", "bank_branch_number", + "external_transfer_memo", "clabe_number", "cbu_number", "cbu_alias", + "mobile_money_number", + "mobile_money_provider", "crypto_address", "crypto_memo", "tax_id", diff --git a/server/package.json b/server/package.json index 1a02b59..da961f0 100644 --- a/server/package.json +++ b/server/package.json @@ -30,6 +30,6 @@ "winston": "^3.3.3" }, "peerDependencies": { - "@stellar/anchor-tests": "0.6.11" + "@stellar/anchor-tests": "0.6.12" } }