@ikas/storefront-models 4.10.0-beta.10 → 4.10.0-beta.12

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/build/index.d.ts CHANGED
@@ -143,6 +143,7 @@ export * from "./models/product/variant-type/init";
143
143
  export * from "./models/product/variant-type";
144
144
  export * from "./models/product/init";
145
145
  export * from "./models/product";
146
+ export * from "./models/product-file";
146
147
  export * from "./models/product-option-file";
147
148
  export * from "./models/raffle/init";
148
149
  export * from "./models/raffle/";
@@ -11,6 +11,7 @@ export declare type IkasOrderLineVariant = {
11
11
  baseUnit: IkasOrderLineBaseUnit | null;
12
12
  brand: IkasOrderLineVariantBrand | null;
13
13
  categories: IkasOrderLineVariantCategory[] | null;
14
+ fileId: string | null;
14
15
  id: string | null;
15
16
  mainImageId: string | null;
16
17
  name: string;
@@ -0,0 +1,6 @@
1
+ export declare type IkasProductFile = {
2
+ id: string;
3
+ name: string;
4
+ productId: string;
5
+ variantId: string;
6
+ };
@@ -143,6 +143,7 @@ export * from "./models/product/variant-type/init";
143
143
  export * from "./models/product/variant-type";
144
144
  export * from "./models/product/init";
145
145
  export * from "./models/product";
146
+ export * from "./models/product-file";
146
147
  export * from "./models/product-option-file";
147
148
  export * from "./models/raffle/init";
148
149
  export * from "./models/raffle/";
@@ -11,6 +11,7 @@ export declare type IkasOrderLineVariant = {
11
11
  baseUnit: IkasOrderLineBaseUnit | null;
12
12
  brand: IkasOrderLineVariantBrand | null;
13
13
  categories: IkasOrderLineVariantCategory[] | null;
14
+ fileId: string | null;
14
15
  id: string | null;
15
16
  mainImageId: string | null;
16
17
  name: string;
@@ -0,0 +1,6 @@
1
+ export declare type IkasProductFile = {
2
+ id: string;
3
+ name: string;
4
+ productId: string;
5
+ variantId: string;
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-models",
3
- "version": "4.10.0-beta.10",
3
+ "version": "4.10.0-beta.12",
4
4
  "author": "ikas",
5
5
  "license": "ISC",
6
6
  "description": "Data models to be used in an ikas storefront application.",