@omniumretail/shared-resources 0.2.33 → 0.2.34

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.
@@ -260,9 +260,14 @@ export interface DocumentSitoo {
260
260
  OrderItems: OrderItems;
261
261
  Payments: Payment;
262
262
  }
263
+ export interface Language {
264
+ Content: string;
265
+ Type: string;
266
+ }
263
267
  export interface Block {
264
- PT: string;
265
- ES: string;
268
+ PT: Language[];
269
+ ES: Language[];
270
+ Type: string;
266
271
  }
267
272
  export interface Section {
268
273
  Title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.2.33",
3
+ "version": "0.2.34",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -283,10 +283,16 @@ export interface DocumentSitoo {
283
283
  OrderItems: OrderItems;
284
284
  Payments: Payment;
285
285
  }
286
+ export interface Language {
287
+ Content: string;
288
+ Type: string;
289
+ }
290
+
286
291
 
287
292
  export interface Block {
288
- PT: string;
289
- ES: string;
293
+ PT: Language[];
294
+ ES: Language[];
295
+ Type: string;
290
296
  }
291
297
 
292
298
  export interface Section {