@trusted-solutions/sdit.models 0.22.0-alpha.3 → 0.22.0-alpha.6

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/models/store.d.ts CHANGED
@@ -162,6 +162,7 @@ export interface SimpleStore {
162
162
  export interface GalleryConfig {
163
163
  imageUrls: string[];
164
164
  delay: number;
165
+ videoUrls?: string[];
165
166
  }
166
167
  export interface AccountConfig {
167
168
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trusted-solutions/sdit.models",
3
- "version": "0.22.0-alpha.3",
3
+ "version": "0.22.0-alpha.6",
4
4
  "description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -106,4 +106,7 @@ export interface UbProductInfo {
106
106
  gtin?: string;
107
107
  plu?: string;
108
108
  merchant_id?: string;
109
+ product_type?: string;
110
+ product_traits?: string[];
111
+ countries_of_origin?: string[];
109
112
  }