@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:
|
|
265
|
-
ES:
|
|
268
|
+
PT: Language[];
|
|
269
|
+
ES: Language[];
|
|
270
|
+
Type: string;
|
|
266
271
|
}
|
|
267
272
|
export interface Section {
|
|
268
273
|
Title: string;
|
package/package.json
CHANGED
package/src/interfaces/OUSA.ts
CHANGED
|
@@ -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:
|
|
289
|
-
ES:
|
|
293
|
+
PT: Language[];
|
|
294
|
+
ES: Language[];
|
|
295
|
+
Type: string;
|
|
290
296
|
}
|
|
291
297
|
|
|
292
298
|
export interface Section {
|