@riocrypto/common 1.0.734 → 1.0.736

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.
@@ -5,7 +5,7 @@ const user_type_1 = require("../types/user-type");
5
5
  exports.MexicoFiscalRegimens = [
6
6
  {
7
7
  code: 601,
8
- description: "General de Ley Personal Morales",
8
+ description: "General de Ley Personas Morales",
9
9
  userTypes: [user_type_1.UserType.Business],
10
10
  },
11
11
  {
@@ -32,4 +32,7 @@ export declare type UserInput = {
32
32
  brokerId?: string;
33
33
  authorizedPhoneNumbers?: string[];
34
34
  notificationUrl?: string;
35
+ rfc?: string;
36
+ mexicoFiscalRegimenCode?: number;
37
+ mexicoFiscalName?: string;
35
38
  };
@@ -38,5 +38,8 @@ export declare type UserUpdate = {
38
38
  KYCReportFile?: string;
39
39
  CSFFile?: string;
40
40
  proofOfAddressFile?: string;
41
+ rfc?: string;
42
+ mexicoFiscalRegimenCode?: number;
43
+ mexicoFiscalName?: string;
41
44
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
42
45
  export {};
@@ -40,5 +40,8 @@ export declare type User = {
40
40
  KYCReportFile?: string;
41
41
  CSFFile?: string;
42
42
  proofOfAddressFile?: string;
43
+ rfc?: string;
44
+ mexicoFiscalRegimenCode?: number;
45
+ mexicoFiscalName?: string;
43
46
  } & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
44
47
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.734",
3
+ "version": "1.0.736",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",