@ikas/storefront 0.0.107 → 0.0.109

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.
@@ -4,6 +4,7 @@ import { GetServerSideProps } from "next";
4
4
  import { ParsedUrlQuery } from "querystring";
5
5
  declare type Props = {
6
6
  checkoutStr: string;
7
+ checkoutSettingsStr: string | null;
7
8
  returnPolicy: string;
8
9
  privacyPolicy: string;
9
10
  termsOfService: string;
@@ -12,6 +12,8 @@ export declare class IkasStorefrontConfig {
12
12
  static priceListId?: string;
13
13
  static stockLocationIds?: string[];
14
14
  static routings: IkasStorefrontRouting[];
15
+ static gtmId?: string;
16
+ static fbpId?: string;
15
17
  static init(store: IkasBaseStore, components: any, config: Record<string, any>, apiUrlOverride?: string): void;
16
18
  static initWithJson(json: Record<string, any>): void;
17
19
  static getJson(): {
@@ -22,5 +24,7 @@ export declare class IkasStorefrontConfig {
22
24
  priceListId: string | null;
23
25
  stockLocationIds: string[] | null;
24
26
  routings: any;
27
+ gtmId: string | null;
28
+ fbpId: string | null;
25
29
  };
26
30
  }
@@ -22,13 +22,15 @@ export declare class IkasPageDataProvider {
22
22
  settingsStr: string;
23
23
  merchantSettings: string | null;
24
24
  configJson: {
25
- storefrontId: string | undefined;
26
- storefrontRoutingId: string | undefined;
27
- storefrontThemeId: string | undefined;
28
- salesChannelId: string | undefined;
29
- priceListId: string | undefined;
30
- stockLocationIds: string[] | undefined;
31
- routings: import("../../models/data/storefront/routing/index").IkasStorefrontRouting[];
25
+ storefrontId: string | null;
26
+ storefrontRoutingId: string | null;
27
+ storefrontThemeId: string | null;
28
+ salesChannelId: string | null;
29
+ priceListId: string | null;
30
+ stockLocationIds: string[] | null;
31
+ routings: any;
32
+ gtmId: string | null;
33
+ fbpId: string | null;
32
34
  };
33
35
  };
34
36
  };
@@ -25,6 +25,8 @@ export declare class SettingsHelper {
25
25
  priceListId: string | null;
26
26
  stockLocationIds: string[] | null;
27
27
  routings: any;
28
+ gtmId: string | null;
29
+ fbpId: string | null;
28
30
  };
29
31
  };
30
32
  } | {
@@ -46,6 +48,8 @@ export declare class SettingsHelper {
46
48
  priceListId: string | null;
47
49
  stockLocationIds: string[] | null;
48
50
  routings: any;
51
+ gtmId: string | null;
52
+ fbpId: string | null;
49
53
  };
50
54
  };
51
55
  revalidate: number;
@@ -66,6 +70,8 @@ export declare class SettingsHelper {
66
70
  priceListId: string | null;
67
71
  stockLocationIds: string[] | null;
68
72
  routings: any;
73
+ gtmId: string | null;
74
+ fbpId: string | null;
69
75
  };
70
76
  };
71
77
  } | {
@@ -87,6 +93,8 @@ export declare class SettingsHelper {
87
93
  priceListId: string | null;
88
94
  stockLocationIds: string[] | null;
89
95
  routings: any;
96
+ gtmId: string | null;
97
+ fbpId: string | null;
90
98
  };
91
99
  };
92
100
  revalidate: number;
@@ -107,6 +115,8 @@ export declare class SettingsHelper {
107
115
  priceListId: string | null;
108
116
  stockLocationIds: string[] | null;
109
117
  routings: any;
118
+ gtmId: string | null;
119
+ fbpId: string | null;
110
120
  };
111
121
  };
112
122
  } | {
@@ -128,6 +138,8 @@ export declare class SettingsHelper {
128
138
  priceListId: string | null;
129
139
  stockLocationIds: string[] | null;
130
140
  routings: any;
141
+ gtmId: string | null;
142
+ fbpId: string | null;
131
143
  };
132
144
  };
133
145
  revalidate: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront",
3
- "version": "0.0.107",
3
+ "version": "0.0.109",
4
4
  "main": "./build/index.js",
5
5
  "module": "./build/index.es.js",
6
6
  "author": "Umut Ozan Yıldırım",