sinfactura-types 1.5.4 → 1.5.5

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/order.d.ts CHANGED
@@ -39,6 +39,18 @@ declare global {
39
39
  province: string;
40
40
  postalCode: string;
41
41
  };
42
+ mercadopago?: {
43
+ dynamicQr?: {
44
+ qrData: string;
45
+ inStoreOrderId: string;
46
+ posId: string;
47
+ externalReference: string;
48
+ amount: number;
49
+ currency: string;
50
+ expiresAt: number;
51
+ createdAt: number;
52
+ };
53
+ };
42
54
  }
43
55
  interface ZebraTag {
44
56
  orderId: string;
package/dist/store.d.ts CHANGED
@@ -182,6 +182,11 @@ declare global {
182
182
  externalPosId: string;
183
183
  createdAt: number;
184
184
  };
185
+ dynamicQrPos?: {
186
+ posId: string;
187
+ externalPosId: string;
188
+ createdAt: number;
189
+ };
185
190
  features?: {
186
191
  checkoutPro?: boolean;
187
192
  pointOfSale?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",