@pastelarai/pastelarai-shared-types 1.0.110 → 1.0.112

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.
@@ -53,6 +53,7 @@ export interface Pricing {
53
53
  size_pack?: number;
54
54
  }
55
55
  export interface Product {
56
+ source: string;
56
57
  name: string;
57
58
  category: PRODUCTCATEGORY;
58
59
  holidays: string;
@@ -26,6 +26,7 @@ export interface Storage {
26
26
  value: number;
27
27
  }
28
28
  export interface Recipe {
29
+ source: string;
29
30
  name: string;
30
31
  recipe_base: boolean;
31
32
  storage: Storage;
@@ -52,7 +53,8 @@ export interface WorkingLaminatedDough extends Omit<LaminatedDough, 'ingredient_
52
53
  }
53
54
  export interface WorkingRecipe extends Omit<Recipe, 'ingredients_list' | 'laminated_dough'> {
54
55
  ingredients_list: WorkingRecipeContent[];
55
- laminated_dough: WorkingLaminatedDough;
56
+ laminated_dough?: WorkingLaminatedDough;
57
+ subrecipes?: WorkingRecipe[];
56
58
  }
57
59
  export interface SharableLaminatedDough {
58
60
  weight_unit_dough: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pastelarai/pastelarai-shared-types",
3
- "version": "1.0.110",
3
+ "version": "1.0.112",
4
4
  "description": "Shared types for PastelarAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",