├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── DeliverUS-Backend ├── .env.example ├── .eslintrc.js ├── .sequelizerc ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── LICENSE ├── README.md ├── backend.js ├── config │ ├── config.js │ ├── passport.js │ └── sequelize.js ├── controllers │ ├── OrderController.js │ ├── ProductCategoryController.js │ ├── ProductController.js │ ├── RestaurantCategoryController.js │ ├── RestaurantController.js │ ├── UserController.js │ └── validation │ │ ├── FileValidationHelper.js │ │ ├── OrderValidation.js │ │ ├── ProductValidation.js │ │ ├── RestaurantCategoryValidation.js │ │ ├── RestaurantValidation.js │ │ └── UserValidation.js ├── database │ ├── migrations │ │ ├── 20210629181312-create-user.js │ │ ├── 20210629194824-create-product-category.js │ │ ├── 20210629194959-create-restaurant-category.js │ │ ├── 20210629195916-create-restaurant.js │ │ ├── 20210718065005-create-product.js │ │ └── 20210723214455-create-order.js │ └── seeders │ │ ├── 20210629204508-users-seeder.js │ │ ├── 20210701110046-restaurant-categories-seeder.js │ │ ├── 20210701111741-restaurants-seeder.js │ │ ├── 20210718065648-product-categories-seeder.js │ │ ├── 20210718074835-products-seeder.js │ │ └── 20210723222630-orders-seeder.js ├── example_api_client │ ├── example_assets │ │ ├── 100MontaditosHero.jpeg │ │ ├── 100MontaditosLogo.jpeg │ │ ├── aceitunas.jpeg │ │ ├── agua.png │ │ ├── applePie.jpeg │ │ ├── burritos.jpeg │ │ ├── cafe.jpeg │ │ ├── casaFelixLogo.jpeg │ │ ├── cerveza.jpeg │ │ ├── chocolateCake.jpeg │ │ ├── chocolateIceCream.jpeg │ │ ├── churros.jpeg │ │ ├── cola.jpeg │ │ ├── ensaladilla.jpeg │ │ ├── femaleAvatar.png │ │ ├── grilledTuna.jpeg │ │ ├── heroImage.jpg │ │ ├── logo.jpeg │ │ ├── maleAvatar.png │ │ ├── montaditoChocolate.png │ │ ├── montaditoJamon.jpeg │ │ ├── montaditoQuesoTomate.jpeg │ │ ├── montaditoSalmon.jpeg │ │ ├── muffin.jpeg │ │ ├── paella.jpeg │ │ ├── salchichon.jpeg │ │ └── steak.jpeg │ └── thunder-tests │ │ ├── _db-backup │ │ ├── thunderCollection.json │ │ ├── thunderEnvironment.json │ │ └── thunderclient.json │ │ ├── collections │ │ ├── tc_col_deliverus.json │ │ └── tc_col_history.json │ │ ├── environments │ │ └── tc_env_deliverus.json │ │ └── thunderActivity.json ├── middlewares │ ├── AuthMiddleware.js │ ├── EntityMiddleware.js │ ├── OrderMiddleware.js │ ├── ProductMiddleware.js │ ├── RestaurantMiddleware.js │ ├── ValidationHandlingMiddleware.js │ └── index.js ├── models │ ├── Order.js │ ├── Product.js │ ├── ProductCategory.js │ ├── Restaurant.js │ ├── RestaurantCategory.js │ ├── User.js │ └── index.js ├── package-lock.json ├── package.json ├── public │ ├── avatars │ │ ├── 20oqf-1681726594184.png │ │ ├── 5nmqk-1681726594691.png │ │ ├── 6jlu8j-1681726596906.png │ │ ├── e9814-1681726593648.png │ │ ├── femaleAvatar.png │ │ ├── iiezua-1681726593996.png │ │ ├── maleAvatar.png │ │ ├── tjrk8l-1681726593810.png │ │ └── ugelh-1681726597321.png │ └── restaurants │ │ ├── 0bh0v-1681726594581.jpg │ │ ├── 100MontaditosHero.jpeg │ │ ├── 100MontaditosLogo.jpeg │ │ ├── 1k2tie-1688322005286.jpeg │ │ ├── 4hj6p-1681726594513.jpeg │ │ ├── 7rcpvl-1688322005281.jpeg │ │ ├── casaFelixLogo.jpeg │ │ ├── el4tnd-1688322001735.jpeg │ │ ├── i5eieo-1681726594515.jpg │ │ ├── nuyuhi-1681726594643.jpeg │ │ ├── products │ │ ├── 0kjvio-1688403039872.jpeg │ │ ├── 26yqln-1688403046923.jpeg │ │ ├── 6mzrh8-1681726596803.jpeg │ │ ├── 6qaasp-1688403045222.jpeg │ │ ├── 76bz4k-1681726596645.jpeg │ │ ├── 8gznkd-1688403051100.jpeg │ │ ├── aceitunas.jpeg │ │ ├── agua.png │ │ ├── applePie.jpeg │ │ ├── burritos.jpeg │ │ ├── cafe.jpeg │ │ ├── cerveza.jpeg │ │ ├── chocolateCake.jpeg │ │ ├── chocolateIceCream.jpeg │ │ ├── churros.jpeg │ │ ├── cola.jpeg │ │ ├── ensaladilla.jpeg │ │ ├── grilledTuna.jpeg │ │ ├── jbngva-1681726597082.jpeg │ │ ├── k3rl5a-1681726596699.jpeg │ │ ├── lbi1-1688402948573.jpeg │ │ ├── montaditoChocolate.png │ │ ├── montaditoJamon.jpeg │ │ ├── montaditoQuesoTomate.jpeg │ │ ├── montaditoSalmon.jpeg │ │ ├── muffin.jpeg │ │ ├── q74msd-1681726596752.jpeg │ │ ├── salchichon.jpeg │ │ ├── steak.jpeg │ │ ├── y9i7i-1681726597132.jpeg │ │ ├── z180pb-1688402949523.jpeg │ │ ├── z8w8a-1688403044439.jpeg │ │ └── zvlvcd-1688403037328.jpeg │ │ ├── ym51t-1681726594637.jpg │ │ └── z4bioj-1681726594579.jpeg └── routes │ ├── HomeRoutes.js │ ├── OrderRoutes.js │ ├── ProductCategoryRoutes.js │ ├── ProductRoutes.js │ ├── RestaurantCategoryRoutes.js │ ├── RestaurantRoutes.js │ ├── UserRoutes.js │ └── index.js ├── DeliverUS-Frontend-Owner ├── .env.example ├── .eslintrc.js ├── .vscode │ ├── launch.json │ └── settings.json ├── App.js ├── README.md ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── logo.png │ ├── maleAvatar.png │ ├── product.jpeg │ ├── restaurantBackground.jpeg │ ├── restaurantLogo.jpeg │ └── splash.png ├── babel.config.js ├── package-lock.json ├── package.json └── src │ ├── api │ ├── AuthEndpoints.js │ ├── OrderEndpoints.js │ ├── ProductEndpoints.js │ ├── RestaurantEndpoints.js │ └── helpers │ │ ├── ApiRequestsHelper.js │ │ ├── Errors.js │ │ └── FileUploadHelper.js │ ├── components │ ├── ConfirmationModal.js │ ├── DeleteModal.js │ ├── ImageCard.js │ ├── InputItem.js │ ├── SystemInfo.js │ ├── TextError.js │ ├── TextRegular.js │ └── TextSemibold.js │ ├── context │ ├── AppContext.js │ └── AuthorizationContext.js │ ├── screens │ ├── Helper.js │ ├── Layout.js │ ├── controlPanel │ │ └── ControlPanelScreen.js │ ├── orders │ │ ├── ConfirmOrderScreen.js │ │ ├── ConfirmUpdateOrderScreen.js │ │ ├── OrderDetailScreen.js │ │ ├── OrdersScreen.js │ │ ├── OrdersStack.js │ │ └── UpdateOrderScreen.js │ ├── profile │ │ ├── LoginScreen.js │ │ ├── ProfileScreen.js │ │ ├── ProfileStack.js │ │ └── RegisterScreen.js │ └── restaurants │ │ ├── CreateProductScreen.js │ │ ├── CreateRestaurantCategoryScreen.js │ │ ├── CreateRestaurantScreen.js │ │ ├── EditProductScreen.js │ │ ├── EditRestaurantScreen.js │ │ ├── RestaurantDetailScreen.js │ │ ├── RestaurantsScreen.js │ │ └── RestaurantsStack.js │ └── styles │ └── GlobalStyles.js ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /DeliverUS-Backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.env.example -------------------------------------------------------------------------------- /DeliverUS-Backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.eslintrc.js -------------------------------------------------------------------------------- /DeliverUS-Backend/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.sequelizerc -------------------------------------------------------------------------------- /DeliverUS-Backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.vscode/launch.json -------------------------------------------------------------------------------- /DeliverUS-Backend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.vscode/settings.json -------------------------------------------------------------------------------- /DeliverUS-Backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/.vscode/tasks.json -------------------------------------------------------------------------------- /DeliverUS-Backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/LICENSE -------------------------------------------------------------------------------- /DeliverUS-Backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/README.md -------------------------------------------------------------------------------- /DeliverUS-Backend/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/backend.js -------------------------------------------------------------------------------- /DeliverUS-Backend/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/config/config.js -------------------------------------------------------------------------------- /DeliverUS-Backend/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/config/passport.js -------------------------------------------------------------------------------- /DeliverUS-Backend/config/sequelize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/config/sequelize.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/OrderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/OrderController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/ProductCategoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/ProductCategoryController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/ProductController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/ProductController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/RestaurantCategoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/RestaurantCategoryController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/RestaurantController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/RestaurantController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/UserController.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/FileValidationHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/FileValidationHelper.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/OrderValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/OrderValidation.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/ProductValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/ProductValidation.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/RestaurantCategoryValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/RestaurantCategoryValidation.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/RestaurantValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/RestaurantValidation.js -------------------------------------------------------------------------------- /DeliverUS-Backend/controllers/validation/UserValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/controllers/validation/UserValidation.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210629181312-create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210629181312-create-user.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210629194824-create-product-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210629194824-create-product-category.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210629194959-create-restaurant-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210629194959-create-restaurant-category.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210629195916-create-restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210629195916-create-restaurant.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210718065005-create-product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210718065005-create-product.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/migrations/20210723214455-create-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/migrations/20210723214455-create-order.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210629204508-users-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210629204508-users-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210701110046-restaurant-categories-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210701110046-restaurant-categories-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210701111741-restaurants-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210701111741-restaurants-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210718065648-product-categories-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210718065648-product-categories-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210718074835-products-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210718074835-products-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/database/seeders/20210723222630-orders-seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/database/seeders/20210723222630-orders-seeder.js -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/100MontaditosHero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/100MontaditosHero.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/100MontaditosLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/100MontaditosLogo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/aceitunas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/aceitunas.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/agua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/agua.png -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/applePie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/applePie.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/burritos.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/burritos.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/cafe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/cafe.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/casaFelixLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/casaFelixLogo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/cerveza.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/cerveza.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/chocolateCake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/chocolateCake.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/chocolateIceCream.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/chocolateIceCream.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/churros.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/churros.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/cola.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/cola.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/ensaladilla.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/ensaladilla.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/femaleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/femaleAvatar.png -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/grilledTuna.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/grilledTuna.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/heroImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/heroImage.jpg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/logo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/maleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/maleAvatar.png -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/montaditoChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/montaditoChocolate.png -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/montaditoJamon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/montaditoJamon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/montaditoQuesoTomate.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/montaditoQuesoTomate.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/montaditoSalmon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/montaditoSalmon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/muffin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/muffin.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/paella.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/paella.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/salchichon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/salchichon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/example_assets/steak.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/example_assets/steak.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderCollection.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderEnvironment.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderclient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/_db-backup/thunderclient.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/collections/tc_col_deliverus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/collections/tc_col_deliverus.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/collections/tc_col_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/collections/tc_col_history.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/environments/tc_env_deliverus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/example_api_client/thunder-tests/environments/tc_env_deliverus.json -------------------------------------------------------------------------------- /DeliverUS-Backend/example_api_client/thunder-tests/thunderActivity.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/AuthMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/AuthMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/EntityMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/EntityMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/OrderMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/OrderMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/ProductMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/ProductMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/RestaurantMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/RestaurantMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/ValidationHandlingMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/ValidationHandlingMiddleware.js -------------------------------------------------------------------------------- /DeliverUS-Backend/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/middlewares/index.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/Order.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/Product.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/ProductCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/ProductCategory.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/Restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/Restaurant.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/RestaurantCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/RestaurantCategory.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/User.js -------------------------------------------------------------------------------- /DeliverUS-Backend/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/models/index.js -------------------------------------------------------------------------------- /DeliverUS-Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/package-lock.json -------------------------------------------------------------------------------- /DeliverUS-Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/package.json -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/20oqf-1681726594184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/20oqf-1681726594184.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/5nmqk-1681726594691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/5nmqk-1681726594691.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/6jlu8j-1681726596906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/6jlu8j-1681726596906.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/e9814-1681726593648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/e9814-1681726593648.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/femaleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/femaleAvatar.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/iiezua-1681726593996.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/iiezua-1681726593996.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/maleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/maleAvatar.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/tjrk8l-1681726593810.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/tjrk8l-1681726593810.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/avatars/ugelh-1681726597321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/avatars/ugelh-1681726597321.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/0bh0v-1681726594581.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/0bh0v-1681726594581.jpg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/100MontaditosHero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/100MontaditosHero.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/100MontaditosLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/100MontaditosLogo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/1k2tie-1688322005286.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/1k2tie-1688322005286.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/4hj6p-1681726594513.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/4hj6p-1681726594513.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/7rcpvl-1688322005281.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/7rcpvl-1688322005281.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/casaFelixLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/casaFelixLogo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/el4tnd-1688322001735.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/el4tnd-1688322001735.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/i5eieo-1681726594515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/i5eieo-1681726594515.jpg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/nuyuhi-1681726594643.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/nuyuhi-1681726594643.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/0kjvio-1688403039872.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/0kjvio-1688403039872.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/26yqln-1688403046923.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/26yqln-1688403046923.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/6mzrh8-1681726596803.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/6mzrh8-1681726596803.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/6qaasp-1688403045222.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/6qaasp-1688403045222.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/76bz4k-1681726596645.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/76bz4k-1681726596645.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/8gznkd-1688403051100.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/8gznkd-1688403051100.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/aceitunas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/aceitunas.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/agua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/agua.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/applePie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/applePie.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/burritos.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/burritos.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/cafe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/cafe.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/cerveza.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/cerveza.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/chocolateCake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/chocolateCake.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/chocolateIceCream.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/chocolateIceCream.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/churros.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/churros.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/cola.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/cola.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/ensaladilla.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/ensaladilla.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/grilledTuna.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/grilledTuna.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/jbngva-1681726597082.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/jbngva-1681726597082.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/k3rl5a-1681726596699.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/k3rl5a-1681726596699.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/lbi1-1688402948573.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/lbi1-1688402948573.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/montaditoChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/montaditoChocolate.png -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/montaditoJamon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/montaditoJamon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/montaditoQuesoTomate.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/montaditoQuesoTomate.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/montaditoSalmon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/montaditoSalmon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/muffin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/muffin.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/q74msd-1681726596752.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/q74msd-1681726596752.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/salchichon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/salchichon.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/steak.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/steak.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/y9i7i-1681726597132.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/y9i7i-1681726597132.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/z180pb-1688402949523.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/z180pb-1688402949523.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/z8w8a-1688403044439.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/z8w8a-1688403044439.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/products/zvlvcd-1688403037328.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/products/zvlvcd-1688403037328.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/ym51t-1681726594637.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/ym51t-1681726594637.jpg -------------------------------------------------------------------------------- /DeliverUS-Backend/public/restaurants/z4bioj-1681726594579.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/public/restaurants/z4bioj-1681726594579.jpeg -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/HomeRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/HomeRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/OrderRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/OrderRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/ProductCategoryRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/ProductCategoryRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/ProductRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/ProductRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/RestaurantCategoryRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/RestaurantCategoryRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/RestaurantRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/RestaurantRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/UserRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/UserRoutes.js -------------------------------------------------------------------------------- /DeliverUS-Backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Backend/routes/index.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/.env.example -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/.eslintrc.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/.vscode/launch.json -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/.vscode/settings.json -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/App.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/README.md -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/app.json -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/adaptive-icon.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/favicon.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/icon.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/logo.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/maleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/maleAvatar.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/product.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/product.jpeg -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/restaurantBackground.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/restaurantBackground.jpeg -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/restaurantLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/restaurantLogo.jpeg -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/assets/splash.png -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/babel.config.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/package-lock.json -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/package.json -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/AuthEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/AuthEndpoints.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/OrderEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/OrderEndpoints.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/ProductEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/ProductEndpoints.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/RestaurantEndpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/RestaurantEndpoints.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/helpers/ApiRequestsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/helpers/ApiRequestsHelper.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/helpers/Errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/helpers/Errors.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/api/helpers/FileUploadHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/api/helpers/FileUploadHelper.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/ConfirmationModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/ConfirmationModal.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/DeleteModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/DeleteModal.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/ImageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/ImageCard.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/InputItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/InputItem.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/SystemInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/SystemInfo.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/TextError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/TextError.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/TextRegular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/TextRegular.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/components/TextSemibold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/components/TextSemibold.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/context/AppContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/context/AppContext.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/context/AuthorizationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/context/AuthorizationContext.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/Helper.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/Layout.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/controlPanel/ControlPanelScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/controlPanel/ControlPanelScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/ConfirmOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/ConfirmOrderScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/ConfirmUpdateOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/ConfirmUpdateOrderScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/OrderDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/OrderDetailScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/OrdersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/OrdersScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/OrdersStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/OrdersStack.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/orders/UpdateOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/orders/UpdateOrderScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/profile/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/profile/LoginScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/profile/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/profile/ProfileScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/profile/ProfileStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/profile/ProfileStack.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/profile/RegisterScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/profile/RegisterScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/CreateProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/CreateProductScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/CreateRestaurantCategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/CreateRestaurantCategoryScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/CreateRestaurantScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/CreateRestaurantScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/EditProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/EditProductScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/EditRestaurantScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/EditRestaurantScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantDetailScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantsScreen.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantsStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/screens/restaurants/RestaurantsStack.js -------------------------------------------------------------------------------- /DeliverUS-Frontend-Owner/src/styles/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/DeliverUS-Frontend-Owner/src/styles/GlobalStyles.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablobuza014/DeliverUS-OwnerALL/HEAD/package.json --------------------------------------------------------------------------------