@riocrypto/common 1.0.1553 → 1.0.1555

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.
@@ -1,5 +1,5 @@
1
1
  export declare enum AuthRole {
2
2
  Owner = "owner",
3
- Write = "write",
4
- Read = "read"
3
+ CreateAndModify = "createAndModify",
4
+ ViewOnly = "viewOnly"
5
5
  }
@@ -4,6 +4,6 @@ exports.AuthRole = void 0;
4
4
  var AuthRole;
5
5
  (function (AuthRole) {
6
6
  AuthRole["Owner"] = "owner";
7
- AuthRole["Write"] = "write";
8
- AuthRole["Read"] = "read";
7
+ AuthRole["CreateAndModify"] = "createAndModify";
8
+ AuthRole["ViewOnly"] = "viewOnly";
9
9
  })(AuthRole = exports.AuthRole || (exports.AuthRole = {}));
@@ -1,7 +1,5 @@
1
1
  export declare enum Country {
2
- Brazil = "BR",
3
2
  Mexico = "MX",
4
3
  Peru = "PE",
5
- UnitedStates = "US",
6
- Colombia = "CO"
4
+ UnitedStates = "US"
7
5
  }
@@ -3,9 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Country = void 0;
4
4
  var Country;
5
5
  (function (Country) {
6
- Country["Brazil"] = "BR";
7
6
  Country["Mexico"] = "MX";
8
7
  Country["Peru"] = "PE";
9
8
  Country["UnitedStates"] = "US";
10
- Country["Colombia"] = "CO";
11
9
  })(Country = exports.Country || (exports.Country = {}));
@@ -104,6 +104,8 @@ export declare type UserUpdate = {
104
104
  shouldInvoice?: boolean;
105
105
  fiscalName?: string;
106
106
  fiscalRegimenCode?: number;
107
+ postalCode?: string;
108
+ taxId?: string;
107
109
  };
108
110
  };
109
111
  quotationTime?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1553",
3
+ "version": "1.0.1555",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",