@riocrypto/common 1.0.823 → 1.0.825

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.
@@ -3,6 +3,7 @@ import { Fiat } from "./fiat";
3
3
  export interface BankAccount {
4
4
  id: string;
5
5
  userId: string;
6
+ accountHolderName: string;
6
7
  country: Country;
7
8
  fiat: Fiat;
8
9
  accountNumber: string;
@@ -35,5 +35,6 @@ export declare type UserInput = {
35
35
  rfc?: string;
36
36
  mexicoFiscalRegimenCode?: number;
37
37
  mexicoFiscalName?: string;
38
+ taxId?: string;
38
39
  usKYCStatus?: "none" | "pending" | "failed" | "approved";
39
40
  };
@@ -41,6 +41,7 @@ export declare type UserUpdate = {
41
41
  rfc?: string;
42
42
  mexicoFiscalRegimenCode?: number;
43
43
  mexicoFiscalName?: string;
44
+ taxId?: string;
44
45
  usKYCStatus?: "none" | "pending" | "failed" | "approved";
45
46
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
46
47
  export {};
@@ -43,6 +43,7 @@ export declare type User = {
43
43
  rfc?: string;
44
44
  mexicoFiscalRegimenCode?: number;
45
45
  mexicoFiscalName?: string;
46
+ taxId?: string;
46
47
  usKYCStatus?: "none" | "pending" | "failed" | "approved";
47
48
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
48
49
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.823",
3
+ "version": "1.0.825",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",