cecon-interfaces 1.7.2 → 1.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. package/dist/esm2022/ifood/enums/ifood-dietary-restrictions.enum.mjs +14 -0
  2. package/dist/esm2022/ifood/enums/ifood-selling-options.enum.mjs +8 -0
  3. package/dist/esm2022/ifood/enums/ifood-serving.enum.mjs +9 -0
  4. package/dist/esm2022/ifood/enums/ifood-unit.enum.mjs +6 -0
  5. package/dist/esm2022/ifood/enums/index.mjs +5 -1
  6. package/dist/esm2022/ifood/interfaces/i-ifood-category-items.mjs +1 -1
  7. package/dist/esm2022/ifood/interfaces/i-ifood-category-pizza.mjs +1 -1
  8. package/dist/esm2022/ifood/interfaces/i-ifood-category.mjs +1 -1
  9. package/dist/esm2022/ifood/interfaces/i-ifood-option-groups-options.mjs +2 -0
  10. package/dist/esm2022/ifood/interfaces/i-ifood-option-groups.mjs +2 -0
  11. package/dist/esm2022/ifood/interfaces/i-ifood-price.mjs +2 -0
  12. package/dist/esm2022/ifood/interfaces/i-ifood-product.mjs +2 -0
  13. package/dist/esm2022/ifood/interfaces/i-ifood-selling-options.mjs +2 -0
  14. package/dist/esm2022/ifood/interfaces/i-ifood-shifts.mjs +2 -0
  15. package/dist/esm2022/ifood/interfaces/i-ifood-weight.mjs +2 -0
  16. package/dist/esm2022/ifood/interfaces/index.mjs +1 -1
  17. package/dist/fesm2022/cecon-interfaces.mjs +38 -1
  18. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  19. package/dist/ifood/enums/ifood-dietary-restrictions.enum.d.ts +12 -0
  20. package/dist/ifood/enums/ifood-dietary-restrictions.enum.js +16 -0
  21. package/dist/ifood/enums/ifood-selling-options.enum.d.ts +6 -0
  22. package/dist/ifood/enums/ifood-selling-options.enum.js +10 -0
  23. package/dist/ifood/enums/ifood-serving.enum.d.ts +7 -0
  24. package/dist/ifood/enums/ifood-serving.enum.js +11 -0
  25. package/dist/ifood/enums/ifood-unit.enum.d.ts +4 -0
  26. package/dist/ifood/enums/ifood-unit.enum.js +8 -0
  27. package/dist/ifood/enums/index.d.ts +4 -0
  28. package/dist/ifood/enums/index.js +9 -1
  29. package/dist/ifood/interfaces/i-ifood-category-items.d.ts +13 -11
  30. package/dist/ifood/interfaces/i-ifood-category-pizza.d.ts +2 -2
  31. package/dist/ifood/interfaces/i-ifood-option-groups-options.d.ts +13 -0
  32. package/dist/ifood/interfaces/i-ifood-option-groups.d.ts +11 -0
  33. package/dist/ifood/interfaces/{i-ifood-category-items-price.d.ts → i-ifood-price.d.ts} +1 -1
  34. package/dist/ifood/interfaces/i-ifood-product.d.ts +23 -0
  35. package/dist/ifood/interfaces/i-ifood-selling-options.d.ts +7 -0
  36. package/dist/ifood/interfaces/i-ifood-selling-options.js +2 -0
  37. package/dist/ifood/interfaces/{i-ifood-category-shifts.d.ts → i-ifood-shifts.d.ts} +4 -3
  38. package/dist/ifood/interfaces/i-ifood-shifts.js +2 -0
  39. package/dist/ifood/interfaces/i-ifood-weight.d.ts +6 -0
  40. package/dist/ifood/interfaces/i-ifood-weight.js +2 -0
  41. package/dist/ifood/interfaces/index.d.ts +9 -6
  42. package/dist/package.json +1 -1
  43. package/package.json +1 -1
  44. package/dist/esm2022/ifood/interfaces/i-ifood-category-items-option-groups.mjs +0 -2
  45. package/dist/esm2022/ifood/interfaces/i-ifood-category-items-price.mjs +0 -2
  46. package/dist/esm2022/ifood/interfaces/i-ifood-category-items-selling-options.mjs +0 -2
  47. package/dist/esm2022/ifood/interfaces/i-ifood-category-shifts.mjs +0 -2
  48. package/dist/ifood/interfaces/i-ifood-category-items-option-groups.d.ts +0 -23
  49. package/dist/ifood/interfaces/i-ifood-category-items-selling-options.d.ts +0 -6
  50. /package/dist/ifood/interfaces/{i-ifood-category-items-option-groups.js → i-ifood-option-groups-options.js} +0 -0
  51. /package/dist/ifood/interfaces/{i-ifood-category-items-price.js → i-ifood-option-groups.js} +0 -0
  52. /package/dist/ifood/interfaces/{i-ifood-category-items-selling-options.js → i-ifood-price.js} +0 -0
  53. /package/dist/ifood/interfaces/{i-ifood-category-shifts.js → i-ifood-product.js} +0 -0
@@ -0,0 +1,12 @@
1
+ export declare enum EIFoodDietaryRestrictions {
2
+ VEGETARIAN = "VEGETARIAN",
3
+ VEGAN = "VEGAN",
4
+ ORGANIC = "ORGANIC",
5
+ GLUTEN_FREE = "GLUTEN_FREE",
6
+ SUGAR_FREE = "SUGAR_FREE",
7
+ LAC_FREE = "LAC_FREE",
8
+ ALCOHOLIC_DRINK = "ALCOHOLIC_DRINK",
9
+ NATURAL = "NATURAL",
10
+ ZERO = "ZERO",
11
+ DIET = "DIET"
12
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EIFoodDietaryRestrictions = void 0;
4
+ var EIFoodDietaryRestrictions;
5
+ (function (EIFoodDietaryRestrictions) {
6
+ EIFoodDietaryRestrictions["VEGETARIAN"] = "VEGETARIAN";
7
+ EIFoodDietaryRestrictions["VEGAN"] = "VEGAN";
8
+ EIFoodDietaryRestrictions["ORGANIC"] = "ORGANIC";
9
+ EIFoodDietaryRestrictions["GLUTEN_FREE"] = "GLUTEN_FREE";
10
+ EIFoodDietaryRestrictions["SUGAR_FREE"] = "SUGAR_FREE";
11
+ EIFoodDietaryRestrictions["LAC_FREE"] = "LAC_FREE";
12
+ EIFoodDietaryRestrictions["ALCOHOLIC_DRINK"] = "ALCOHOLIC_DRINK";
13
+ EIFoodDietaryRestrictions["NATURAL"] = "NATURAL";
14
+ EIFoodDietaryRestrictions["ZERO"] = "ZERO";
15
+ EIFoodDietaryRestrictions["DIET"] = "DIET";
16
+ })(EIFoodDietaryRestrictions || (exports.EIFoodDietaryRestrictions = EIFoodDietaryRestrictions = {}));
@@ -0,0 +1,6 @@
1
+ export declare enum EIFoodSellingOptions {
2
+ ITEM = "ITEM",
3
+ OPTION = "OPTION",
4
+ WEIGHT = "WEIGHT",
5
+ UNIT = "UNIT"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EIFoodSellingOptions = void 0;
4
+ var EIFoodSellingOptions;
5
+ (function (EIFoodSellingOptions) {
6
+ EIFoodSellingOptions["ITEM"] = "ITEM";
7
+ EIFoodSellingOptions["OPTION"] = "OPTION";
8
+ EIFoodSellingOptions["WEIGHT"] = "WEIGHT";
9
+ EIFoodSellingOptions["UNIT"] = "UNIT";
10
+ })(EIFoodSellingOptions || (exports.EIFoodSellingOptions = EIFoodSellingOptions = {}));
@@ -0,0 +1,7 @@
1
+ export declare enum EIFoodServing {
2
+ NOT_APPLICABLE = "NOT_APPLICABLE",
3
+ SERVES_1 = "SERVES_1",
4
+ SERVES_2 = "SERVES_2",
5
+ SERVES_3 = "SERVES_3",
6
+ SERVES_4 = "SERVES_4"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EIFoodServing = void 0;
4
+ var EIFoodServing;
5
+ (function (EIFoodServing) {
6
+ EIFoodServing["NOT_APPLICABLE"] = "NOT_APPLICABLE";
7
+ EIFoodServing["SERVES_1"] = "SERVES_1";
8
+ EIFoodServing["SERVES_2"] = "SERVES_2";
9
+ EIFoodServing["SERVES_3"] = "SERVES_3";
10
+ EIFoodServing["SERVES_4"] = "SERVES_4";
11
+ })(EIFoodServing || (exports.EIFoodServing = EIFoodServing = {}));
@@ -0,0 +1,4 @@
1
+ export declare enum EIFoodUnit {
2
+ KG = "kg",
3
+ G = "g"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EIFoodUnit = void 0;
4
+ var EIFoodUnit;
5
+ (function (EIFoodUnit) {
6
+ EIFoodUnit["KG"] = "kg";
7
+ EIFoodUnit["G"] = "g";
8
+ })(EIFoodUnit || (exports.EIFoodUnit = EIFoodUnit = {}));
@@ -1 +1,5 @@
1
1
  export { EIFoodCatalogContext } from './ifood-catalog-context.enum';
2
+ export { EIFoodDietaryRestrictions } from './ifood-dietary-restrictions.enum';
3
+ export { EIFoodSellingOptions } from './ifood-selling-options.enum';
4
+ export { EIFoodServing } from './ifood-serving.enum';
5
+ export { EIFoodUnit } from './ifood-unit.enum';
@@ -1,5 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EIFoodCatalogContext = void 0;
3
+ exports.EIFoodUnit = exports.EIFoodServing = exports.EIFoodSellingOptions = exports.EIFoodDietaryRestrictions = exports.EIFoodCatalogContext = void 0;
4
4
  var ifood_catalog_context_enum_1 = require("./ifood-catalog-context.enum");
5
5
  Object.defineProperty(exports, "EIFoodCatalogContext", { enumerable: true, get: function () { return ifood_catalog_context_enum_1.EIFoodCatalogContext; } });
6
+ var ifood_dietary_restrictions_enum_1 = require("./ifood-dietary-restrictions.enum");
7
+ Object.defineProperty(exports, "EIFoodDietaryRestrictions", { enumerable: true, get: function () { return ifood_dietary_restrictions_enum_1.EIFoodDietaryRestrictions; } });
8
+ var ifood_selling_options_enum_1 = require("./ifood-selling-options.enum");
9
+ Object.defineProperty(exports, "EIFoodSellingOptions", { enumerable: true, get: function () { return ifood_selling_options_enum_1.EIFoodSellingOptions; } });
10
+ var ifood_serving_enum_1 = require("./ifood-serving.enum");
11
+ Object.defineProperty(exports, "EIFoodServing", { enumerable: true, get: function () { return ifood_serving_enum_1.EIFoodServing; } });
12
+ var ifood_unit_enum_1 = require("./ifood-unit.enum");
13
+ Object.defineProperty(exports, "EIFoodUnit", { enumerable: true, get: function () { return ifood_unit_enum_1.EIFoodUnit; } });
@@ -1,7 +1,9 @@
1
- import { IIFoodCategoryItemsOptionGroups } from './i-ifood-category-items-option-groups';
2
- import { IIFoodCategoryItemsPrice } from './i-ifood-category-items-price';
3
- import { IIFoodCategoryItemsSellingOptions } from './i-ifood-category-items-selling-options';
4
- import { IIFoodCategoryShifts } from './i-ifood-category-shifts';
1
+ import { EIFoodDietaryRestrictions } from '../enums/ifood-dietary-restrictions.enum';
2
+ import { EIFoodServing } from '../enums/ifood-serving.enum';
3
+ import { IIFoodOptionGroups } from './i-ifood-option-groups';
4
+ import { IIFoodPrice } from './i-ifood-price';
5
+ import { IIFoodSellingOptions } from './i-ifood-selling-options';
6
+ import { IIFoodShifts } from './i-ifood-shifts';
5
7
  export interface IIFoodCategoryItems {
6
8
  id: string;
7
9
  name: string;
@@ -12,13 +14,13 @@ export interface IIFoodCategoryItems {
12
14
  productId: string;
13
15
  index: number;
14
16
  imagePath: string;
15
- price: IIFoodCategoryItemsPrice;
16
- shifts: IIFoodCategoryShifts[];
17
- serving: string;
18
- dietaryRestrictions: string[];
17
+ price: IIFoodPrice;
18
+ shifts: IIFoodShifts[];
19
+ serving: EIFoodServing;
20
+ dietaryRestrictions: EIFoodDietaryRestrictions[];
19
21
  ean: string;
20
- optionGroups: IIFoodCategoryItemsOptionGroups[];
21
- sellingOption: IIFoodCategoryItemsSellingOptions;
22
+ optionGroups: IIFoodOptionGroups[];
23
+ sellingOption: IIFoodSellingOptions;
22
24
  tags: string[];
23
- hasOptionGroups: true;
25
+ hasOptionGroups: boolean;
24
26
  }
@@ -1,13 +1,13 @@
1
1
  import { IIFoodCategoryPizzaCrusts } from './i-ifood-category-pizza-crusts';
2
2
  import { IIFoodCategoryPizzaEdges } from './i-ifood-category-pizza-edges';
3
- import { IIFoodCategoryShifts } from './i-ifood-category-shifts';
4
3
  import { IIFoodCategoryPizzaSizes } from './i-ifood-category-pizza-sizes';
5
4
  import { IIFoodCategoryPizzaToppings } from './i-ifood-category-pizza-toppings';
5
+ import { IIFoodShifts } from './i-ifood-shifts';
6
6
  export interface IIFoodCategoryPizza {
7
7
  id: string;
8
8
  sizes: IIFoodCategoryPizzaSizes[];
9
9
  crusts: IIFoodCategoryPizzaCrusts[];
10
10
  edges: IIFoodCategoryPizzaEdges[];
11
11
  toppings: IIFoodCategoryPizzaToppings[];
12
- shifts: IIFoodCategoryShifts[];
12
+ shifts: IIFoodShifts[];
13
13
  }
@@ -0,0 +1,13 @@
1
+ import { IIFoodPrice } from './i-ifood-price';
2
+ export interface IIFoodOptionGroupsOptions {
3
+ id: string;
4
+ status: string;
5
+ index: number;
6
+ productId: string;
7
+ name: string;
8
+ description: string;
9
+ externalCode: string;
10
+ imagePath: string;
11
+ price: IIFoodPrice;
12
+ ean: string;
13
+ }
@@ -0,0 +1,11 @@
1
+ import { IIFoodOptionGroupsOptions } from './i-ifood-option-groups-options';
2
+ export interface IIFoodOptionGroups {
3
+ id: string;
4
+ name: string;
5
+ externalCode: string;
6
+ status: string;
7
+ index: number;
8
+ min: number;
9
+ max: number;
10
+ options: IIFoodOptionGroupsOptions;
11
+ }
@@ -1,4 +1,4 @@
1
- export interface IIFoodCategoryItemsPrice {
1
+ export interface IIFoodPrice {
2
2
  value: number;
3
3
  originalValue: number;
4
4
  }
@@ -0,0 +1,23 @@
1
+ import { EIFoodDietaryRestrictions } from '../enums/ifood-dietary-restrictions.enum';
2
+ import { EIFoodServing } from '../enums/ifood-serving.enum';
3
+ import { IIFoodOptionGroups } from './i-ifood-option-groups';
4
+ import { IIFoodSellingOptions } from './i-ifood-selling-options';
5
+ import { IIFoodShifts } from './i-ifood-shifts';
6
+ import { IIFoodWeight } from './i-ifood-weight';
7
+ export interface IIFoodProduct {
8
+ id: string;
9
+ name: string;
10
+ description: string;
11
+ additionalInformation: string;
12
+ externalCode: string;
13
+ image: string;
14
+ shifts: IIFoodShifts;
15
+ serving: EIFoodServing;
16
+ dietaryRestrictions: EIFoodDietaryRestrictions[];
17
+ tags: string[];
18
+ ean: string;
19
+ sellingOption: IIFoodSellingOptions;
20
+ weight: IIFoodWeight;
21
+ multipleImages: string;
22
+ optionGroups: IIFoodOptionGroups;
23
+ }
@@ -0,0 +1,7 @@
1
+ import { EIFoodSellingOptions } from "../enums/ifood-selling-options.enum";
2
+ export interface IIFoodSellingOptions {
3
+ minimum: number;
4
+ incremental: number;
5
+ availableUnits: EIFoodSellingOptions[];
6
+ averageUnit: number;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,7 @@
1
- export interface IIFoodCategoryShifts {
2
- startTime: Date | string;
3
- endTime: Date | string;
1
+ export interface IIFoodShifts {
2
+ description?: string;
3
+ startTime: string;
4
+ endTime: string;
4
5
  monday: boolean;
5
6
  tuesday: boolean;
6
7
  wednesday: boolean;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { EIFoodUnit } from "../enums/ifood-unit.enum";
2
+ export interface IIFoodWeight {
3
+ description: string;
4
+ quantity: number;
5
+ unit: EIFoodUnit;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,15 +1,18 @@
1
1
  export { IIFoodAddress } from './i-ifood-address';
2
2
  export { IIFoodCatalog } from './i-ifood-catalog';
3
- export { IIFoodCategory } from './i-ifood-category';
4
3
  export { IIFoodCategoryItems } from './i-ifood-category-items';
5
- export { IIFoodCategoryItemsOptionGroups } from './i-ifood-category-items-option-groups';
6
- export { IIFoodCategoryItemsPrice } from './i-ifood-category-items-price';
7
- export { IIFoodCategoryItemsSellingOptions } from './i-ifood-category-items-selling-options';
8
- export { IIFoodCategoryShifts } from './i-ifood-category-shifts';
9
- export { IIFoodCategoryPizza } from './i-ifood-category-pizza';
10
4
  export { IIFoodCategoryPizzaCrusts } from './i-ifood-category-pizza-crusts';
11
5
  export { IIFoodCategoryPizzaEdges } from './i-ifood-category-pizza-edges';
12
6
  export { IIFoodCategoryPizzaSizes } from './i-ifood-category-pizza-sizes';
13
7
  export { IIFoodCategoryPizzaToppings } from './i-ifood-category-pizza-toppings';
8
+ export { IIFoodCategoryPizza } from './i-ifood-category-pizza';
9
+ export { IIFoodCategory } from './i-ifood-category';
14
10
  export { IIFoodClient } from './i-ifood-client';
15
11
  export { IIFoodMerchant } from './i-ifood-merchant';
12
+ export { IIFoodOptionGroupsOptions } from './i-ifood-option-groups-options';
13
+ export { IIFoodOptionGroups } from './i-ifood-option-groups';
14
+ export { IIFoodPrice } from './i-ifood-price';
15
+ export { IIFoodProduct } from './i-ifood-product';
16
+ export { IIFoodSellingOptions } from './i-ifood-selling-options';
17
+ export { IIFoodShifts } from './i-ifood-shifts';
18
+ export { IIFoodWeight } from './i-ifood-weight';
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.02",
3
+ "version": "1.7.04",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.02",
3
+ "version": "1.7.04",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1pZm9vZC1jYXRlZ29yeS1pdGVtcy1vcHRpb24tZ3JvdXBzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2lmb29kL2ludGVyZmFjZXMvaS1pZm9vZC1jYXRlZ29yeS1pdGVtcy1vcHRpb24tZ3JvdXBzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJSUZvb2RDYXRlZ29yeUl0ZW1zUHJpY2UgfSBmcm9tICcuL2ktaWZvb2QtY2F0ZWdvcnktaXRlbXMtcHJpY2UnO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBJSUZvb2RDYXRlZ29yeUl0ZW1zT3B0aW9uR3JvdXBzIHtcclxuICBpZDogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBleHRlcm5hbENvZGU6IHN0cmluZztcclxuICBzdGF0dXM6IHN0cmluZzsgLy8gJ0FWQUlMQUJMRSdcclxuICBpbmRleDogbnVtYmVyO1xyXG4gIG1pbjogbnVtYmVyO1xyXG4gIG1heDogbnVtYmVyO1xyXG4gIG9wdGlvbnM6IElJRm9vZENhdGVnb3J5SXRlbXNPcHRpb25zO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIElJRm9vZENhdGVnb3J5SXRlbXNPcHRpb25zIHtcclxuICBpZDogc3RyaW5nO1xyXG4gIHN0YXR1czogc3RyaW5nOyAvLyAnQVZBSUxBQkxFJ1xyXG4gIGluZGV4OiBudW1iZXI7XHJcbiAgcHJvZHVjdElkOiBzdHJpbmc7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIGRlc2NyaXB0aW9uOiBzdHJpbmc7XHJcbiAgZXh0ZXJuYWxDb2RlOiBzdHJpbmc7XHJcbiAgaW1hZ2VQYXRoOiBzdHJpbmc7XHJcbiAgcHJpY2U6IElJRm9vZENhdGVnb3J5SXRlbXNQcmljZTtcclxuICBlYW46IHN0cmluZztcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1pZm9vZC1jYXRlZ29yeS1pdGVtcy1wcmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9pZm9vZC9pbnRlcmZhY2VzL2ktaWZvb2QtY2F0ZWdvcnktaXRlbXMtcHJpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSUlGb29kQ2F0ZWdvcnlJdGVtc1ByaWNlIHtcclxuICB2YWx1ZTogbnVtYmVyO1xyXG4gIG9yaWdpbmFsVmFsdWU6IG51bWJlcjtcclxufVxyXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1pZm9vZC1jYXRlZ29yeS1pdGVtcy1zZWxsaW5nLW9wdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaWZvb2QvaW50ZXJmYWNlcy9pLWlmb29kLWNhdGVnb3J5LWl0ZW1zLXNlbGxpbmctb3B0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJSUZvb2RDYXRlZ29yeUl0ZW1zU2VsbGluZ09wdGlvbnMge1xyXG4gIG1pbmltdW06IG51bWJlcjtcclxuICBpbmNyZW1lbnRhbDogbnVtYmVyO1xyXG4gIGF2YWlsYWJsZVVuaXRzOiBzdHJpbmdbXTsgLy8gWydXRUlHSFQnXVxyXG4gIGF2ZXJhZ2VVbml0OiBudW1iZXI7XHJcbn1cclxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1pZm9vZC1jYXRlZ29yeS1zaGlmdHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaWZvb2QvaW50ZXJmYWNlcy9pLWlmb29kLWNhdGVnb3J5LXNoaWZ0cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJSUZvb2RDYXRlZ29yeVNoaWZ0cyB7XHJcbiAgICBzdGFydFRpbWU6IERhdGUgfCBzdHJpbmc7XHJcbiAgICBlbmRUaW1lOiBEYXRlIHwgc3RyaW5nO1xyXG4gICAgbW9uZGF5OiBib29sZWFuO1xyXG4gICAgdHVlc2RheTogYm9vbGVhbjtcclxuICAgIHdlZG5lc2RheTogYm9vbGVhbjtcclxuICAgIHRodXJzZGF5OiBib29sZWFuO1xyXG4gICAgZnJpZGF5OiBib29sZWFuO1xyXG4gICAgc2F0dXJkYXk6IGJvb2xlYW47XHJcbiAgICBzdW5kYXk6IGJvb2xlYW47XHJcbn1cclxuIl19
@@ -1,23 +0,0 @@
1
- import { IIFoodCategoryItemsPrice } from './i-ifood-category-items-price';
2
- export interface IIFoodCategoryItemsOptionGroups {
3
- id: string;
4
- name: string;
5
- externalCode: string;
6
- status: string;
7
- index: number;
8
- min: number;
9
- max: number;
10
- options: IIFoodCategoryItemsOptions;
11
- }
12
- export interface IIFoodCategoryItemsOptions {
13
- id: string;
14
- status: string;
15
- index: number;
16
- productId: string;
17
- name: string;
18
- description: string;
19
- externalCode: string;
20
- imagePath: string;
21
- price: IIFoodCategoryItemsPrice;
22
- ean: string;
23
- }
@@ -1,6 +0,0 @@
1
- export interface IIFoodCategoryItemsSellingOptions {
2
- minimum: number;
3
- incremental: number;
4
- availableUnits: string[];
5
- averageUnit: number;
6
- }