sinfactura-types 1.7.0 → 1.7.2

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/product.d.ts CHANGED
@@ -54,6 +54,13 @@ declare global {
54
54
  value: string;
55
55
  }[];
56
56
  model?: string;
57
+ seoTitle?: string;
58
+ seoDescription?: string;
59
+ attributes?: {
60
+ name: string;
61
+ value: string;
62
+ evidence?: string;
63
+ }[];
57
64
  }
58
65
  interface ProductBarcode {
59
66
  value: string;
package/dist/store.d.ts CHANGED
@@ -102,7 +102,6 @@ declare global {
102
102
  storeId: string;
103
103
  createdAt: number;
104
104
  type?: 'production' | 'demo';
105
- seededAt?: number;
106
105
  name: string;
107
106
  address: {
108
107
  street: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",