From bfb4fea502c156294d3af94b56e81dc3221e8b62 Mon Sep 17 00:00:00 2001 From: Philip Liu <12836897+philipliu@users.noreply.github.com> Date: Thu, 25 Jan 2024 14:11:53 -0500 Subject: [PATCH] SEP-12: Add missing SEP-9 fields (#134) --- @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 b495265..9b09bbe 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.6.9", + "version": "0.6.10", "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 1796198..c417e36 100644 --- a/@stellar/anchor-tests/src/schemas/sep12.ts +++ b/@stellar/anchor-tests/src/schemas/sep12.ts @@ -40,6 +40,10 @@ export const sep9Fields = [ "notary_approval_of_photo_id", "ip_address", "photo_proof_residence", + "sex", + "photo_proof_of_income", + "proof_of_liveness", + "referral_id", "type", ]; diff --git a/server/package.json b/server/package.json index a6af885..9c01817 100644 --- a/server/package.json +++ b/server/package.json @@ -30,6 +30,6 @@ "winston": "^3.3.3" }, "peerDependencies": { - "@stellar/anchor-tests": "0.6.9" + "@stellar/anchor-tests": "0.6.10" } }