@ikas/storefront 0.0.110 → 0.0.111

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.
@@ -3,6 +3,7 @@ export declare class IkasSalesChannel {
3
3
  name: string;
4
4
  priceListId: string | null;
5
5
  stockLocations: IkasSalesChannelStockLocation[] | null;
6
+ paymentGateways: IkasSalesChannelPaymentGateway[] | null;
6
7
  constructor(data?: Partial<IkasSalesChannel>);
7
8
  }
8
9
  export declare class IkasSalesChannelStockLocation {
@@ -10,3 +11,8 @@ export declare class IkasSalesChannelStockLocation {
10
11
  order: number;
11
12
  constructor(data: Partial<IkasSalesChannelStockLocation>);
12
13
  }
14
+ export declare class IkasSalesChannelPaymentGateway {
15
+ id: string;
16
+ order: number;
17
+ constructor(data: Partial<IkasSalesChannelPaymentGateway>);
18
+ }
@@ -1,3 +1,4 @@
1
+ import { IkasSalesChannelPaymentGateway } from "../models/data/sales-channel/index";
1
2
  import { IkasStorefrontRouting } from "../models/data/storefront/routing/index";
2
3
  import { IkasBaseStore } from "../store/index";
3
4
  export declare class IkasStorefrontConfig {
@@ -12,6 +13,7 @@ export declare class IkasStorefrontConfig {
12
13
  static priceListId?: string;
13
14
  static stockLocationIds?: string[];
14
15
  static routings: IkasStorefrontRouting[];
16
+ static paymentGateways: IkasSalesChannelPaymentGateway[];
15
17
  static gtmId?: string;
16
18
  static fbpId?: string;
17
19
  static init(store: IkasBaseStore, components: any, config: Record<string, any>, apiUrlOverride?: string): void;
@@ -24,6 +26,7 @@ export declare class IkasStorefrontConfig {
24
26
  priceListId: string | null;
25
27
  stockLocationIds: string[] | null;
26
28
  routings: any;
29
+ paymentGateways: any;
27
30
  gtmId: string | null;
28
31
  fbpId: string | null;
29
32
  };
@@ -25,6 +25,7 @@ export declare class SettingsHelper {
25
25
  priceListId: string | null;
26
26
  stockLocationIds: string[] | null;
27
27
  routings: any;
28
+ paymentGateways: any;
28
29
  gtmId: string | null;
29
30
  fbpId: string | null;
30
31
  };
@@ -48,6 +49,7 @@ export declare class SettingsHelper {
48
49
  priceListId: string | null;
49
50
  stockLocationIds: string[] | null;
50
51
  routings: any;
52
+ paymentGateways: any;
51
53
  gtmId: string | null;
52
54
  fbpId: string | null;
53
55
  };
@@ -70,6 +72,7 @@ export declare class SettingsHelper {
70
72
  priceListId: string | null;
71
73
  stockLocationIds: string[] | null;
72
74
  routings: any;
75
+ paymentGateways: any;
73
76
  gtmId: string | null;
74
77
  fbpId: string | null;
75
78
  };
@@ -93,6 +96,7 @@ export declare class SettingsHelper {
93
96
  priceListId: string | null;
94
97
  stockLocationIds: string[] | null;
95
98
  routings: any;
99
+ paymentGateways: any;
96
100
  gtmId: string | null;
97
101
  fbpId: string | null;
98
102
  };
@@ -115,6 +119,7 @@ export declare class SettingsHelper {
115
119
  priceListId: string | null;
116
120
  stockLocationIds: string[] | null;
117
121
  routings: any;
122
+ paymentGateways: any;
118
123
  gtmId: string | null;
119
124
  fbpId: string | null;
120
125
  };
@@ -138,6 +143,7 @@ export declare class SettingsHelper {
138
143
  priceListId: string | null;
139
144
  stockLocationIds: string[] | null;
140
145
  routings: any;
146
+ paymentGateways: any;
141
147
  gtmId: string | null;
142
148
  fbpId: string | null;
143
149
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront",
3
- "version": "0.0.110",
3
+ "version": "0.0.111",
4
4
  "main": "./build/index.js",
5
5
  "module": "./build/index.es.js",
6
6
  "author": "Umut Ozan Yıldırım",