about summary refs log tree commit diff stats
path: root/crates/rocie-client/src/models/mod.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-02-15 22:25:39 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-02-15 22:25:39 +0100
commitb467f7202f5c0c3970e39ea396a0cec0fd6a36ee (patch)
treeaa567f84f0c2891d03de5b6414507c2d9a5f4754 /crates/rocie-client/src/models/mod.rs
parentfeat(treewide): Add recipes and user handling (diff)
downloadserver-b467f7202f5c0c3970e39ea396a0cec0fd6a36ee.zip
chore(rocie-client): Re-generate the client api
Diffstat (limited to 'crates/rocie-client/src/models/mod.rs')
-rw-r--r--crates/rocie-client/src/models/mod.rs52
1 files changed, 52 insertions, 0 deletions
diff --git a/crates/rocie-client/src/models/mod.rs b/crates/rocie-client/src/models/mod.rs
index 135d612..53b0c13 100644
--- a/crates/rocie-client/src/models/mod.rs
+++ b/crates/rocie-client/src/models/mod.rs
@@ -2,8 +2,48 @@ pub mod barcode;
 pub use self::barcode::Barcode;
 pub mod barcode_id;
 pub use self::barcode_id::BarcodeId;
+pub mod content;
+pub use self::content::Content;
+pub mod content_one_of;
+pub use self::content_one_of::ContentOneOf;
+pub mod content_one_of_1;
+pub use self::content_one_of_1::ContentOneOf1;
+pub mod cooklang_recipe;
+pub use self::cooklang_recipe::CooklangRecipe;
+pub mod cookware;
+pub use self::cookware::Cookware;
+pub mod ingredient;
+pub use self::ingredient::Ingredient;
+pub mod ingredient_one_of;
+pub use self::ingredient_one_of::IngredientOneOf;
+pub mod ingredient_one_of_1;
+pub use self::ingredient_one_of_1::IngredientOneOf1;
+pub mod ingredient_one_of_1_not_registered_product;
+pub use self::ingredient_one_of_1_not_registered_product::IngredientOneOf1NotRegisteredProduct;
+pub mod ingredient_one_of_2;
+pub use self::ingredient_one_of_2::IngredientOneOf2;
+pub mod ingredient_one_of_2_recipe_reference;
+pub use self::ingredient_one_of_2_recipe_reference::IngredientOneOf2RecipeReference;
+pub mod ingredient_one_of_registered_product;
+pub use self::ingredient_one_of_registered_product::IngredientOneOfRegisteredProduct;
+pub mod item;
+pub use self::item::Item;
+pub mod item_one_of;
+pub use self::item_one_of::ItemOneOf;
+pub mod item_one_of_1;
+pub use self::item_one_of_1::ItemOneOf1;
+pub mod item_one_of_2;
+pub use self::item_one_of_2::ItemOneOf2;
+pub mod item_one_of_3;
+pub use self::item_one_of_3::ItemOneOf3;
+pub mod item_one_of_4;
+pub use self::item_one_of_4::ItemOneOf4;
 pub mod login_info;
 pub use self::login_info::LoginInfo;
+pub mod metadata;
+pub use self::metadata::Metadata;
+pub mod name_and_url;
+pub use self::name_and_url::NameAndUrl;
 pub mod password_hash;
 pub use self::password_hash::PasswordHash;
 pub mod product;
@@ -24,8 +64,20 @@ pub mod recipe;
 pub use self::recipe::Recipe;
 pub mod recipe_id;
 pub use self::recipe_id::RecipeId;
+pub mod recipe_parent;
+pub use self::recipe_parent::RecipeParent;
+pub mod recipe_parent_id;
+pub use self::recipe_parent_id::RecipeParentId;
+pub mod recipe_parent_stub;
+pub use self::recipe_parent_stub::RecipeParentStub;
 pub mod recipe_stub;
 pub use self::recipe_stub::RecipeStub;
+pub mod section;
+pub use self::section::Section;
+pub mod step;
+pub use self::step::Step;
+pub mod timer;
+pub use self::timer::Timer;
 pub mod unit;
 pub use self::unit::Unit;
 pub mod unit_amount;