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 +1 -1
- package/dist/store.d.ts +3 -1
- package/dist/supplier.d.ts +1 -1
- package/package.json +1 -1
package/dist/auth.d.ts
CHANGED
package/dist/store.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ declare global {
|
|
|
113
113
|
province: string;
|
|
114
114
|
};
|
|
115
115
|
cuit: string;
|
|
116
|
-
phone:
|
|
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 {
|
package/dist/supplier.d.ts
CHANGED