sinfactura-types 1.6.16 → 1.6.17

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.
package/dist/auth.d.ts CHANGED
@@ -11,7 +11,7 @@ declare global {
11
11
  password: string;
12
12
  cuit: string;
13
13
  fullName: string;
14
- phone?: number;
14
+ phone?: string;
15
15
  }
16
16
  interface Recover {
17
17
  email: string;
package/dist/store.d.ts CHANGED
@@ -113,7 +113,7 @@ declare global {
113
113
  province: string;
114
114
  };
115
115
  cuit: string;
116
- phone: number;
116
+ phone: string;
117
117
  email: string;
118
118
  config: {
119
119
  priceDecimals: 0 | 1 | 2 | 3;
@@ -251,6 +251,8 @@ declare global {
251
251
  key?: string;
252
252
  accessTicket_EB?: string;
253
253
  accessTicket_RSF?: string;
254
+ hasCert?: boolean;
255
+ hasKey?: boolean;
254
256
  }
255
257
  type StoreAttributeNames = keyof Store;
256
258
  interface Method {
@@ -9,7 +9,7 @@ declare global {
9
9
  cuit: string;
10
10
  razonSocial: string;
11
11
  contactName: string;
12
- phone: number;
12
+ phone: string;
13
13
  email: string;
14
14
  balance: number;
15
15
  currencyId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.6.16",
3
+ "version": "1.6.17",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",