├── .gitignore ├── LICENSE ├── README.md ├── api-management ├── awesomepets.yaml ├── configuration.md └── cors.md ├── demo-bank-app ├── LICENSE ├── README.md ├── backend │ ├── .choreo │ │ └── component.yaml │ ├── .dockerignore │ ├── .env.example │ ├── .gitignore │ ├── BankingMicroservice.csproj │ ├── Controllers │ │ ├── AccountsController.cs │ │ └── TransactionsController.cs │ ├── Data │ │ └── BankingContext.cs │ ├── Dockerfile │ ├── Models │ │ ├── BankAccount.cs │ │ ├── Transaction.cs │ │ └── TransactionInput.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── appsettings.Development.json.example │ ├── appsettings.json │ ├── backend-dot-net.sln │ ├── openapi.yaml │ └── setup.sql ├── frontend │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── api │ │ │ └── index.ts │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── AccountTable.tsx │ │ │ ├── CommonLoaders.tsx │ │ │ ├── NavBar.tsx │ │ │ ├── NewAccount.tsx │ │ │ ├── NoData.tsx │ │ │ ├── Transaction.tsx │ │ │ └── User.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── Accounts.tsx │ │ │ ├── Error.tsx │ │ │ └── Transactions.tsx │ │ ├── utils │ │ │ ├── accounts.ts │ │ │ └── cookie.ts │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── usecase.png └── userstore.csv ├── hotel-reservation-app-db ├── hotel-reservation-frontend │ ├── .env │ ├── .gitignore │ ├── .prettierignore │ ├── openapitools.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.tsx │ │ ├── api │ │ │ ├── config.ts │ │ │ └── retry.ts │ │ ├── contexts │ │ │ └── user.tsx │ │ ├── hooks │ │ │ ├── query.tsx │ │ │ ├── reservations.tsx │ │ │ └── rooms.tsx │ │ ├── index.tsx │ │ ├── layout │ │ │ └── AppBar.tsx │ │ ├── pages │ │ │ ├── error │ │ │ │ └── index.tsx │ │ │ ├── landing_page │ │ │ │ └── index.tsx │ │ │ ├── not_found │ │ │ │ └── index.tsx │ │ │ ├── reservation_listing │ │ │ │ ├── ReservationListItem.tsx │ │ │ │ └── index.tsx │ │ │ ├── reservations_adding │ │ │ │ ├── ReservationForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── reservations_updating │ │ │ │ ├── ReservationUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ └── room_listing │ │ │ │ ├── RoomListItem.tsx │ │ │ │ ├── RoomSearchBar.tsx │ │ │ │ └── index.tsx │ │ ├── resources │ │ │ └── hotel-room.png │ │ ├── setupProxy.js │ │ ├── theme.ts │ │ ├── types │ │ │ └── generated │ │ │ │ ├── error-payload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reservation-request.ts │ │ │ │ ├── reservation.ts │ │ │ │ ├── room-type.ts │ │ │ │ ├── room.ts │ │ │ │ ├── update-reservation-request.ts │ │ │ │ └── user.ts │ │ └── utils │ │ │ └── utils.ts │ └── tsconfig.json ├── hotel-reservation-service-db │ ├── .choreo │ │ └── component.yaml │ ├── LICENSE │ ├── README.md │ ├── dao.ts │ ├── index.ts │ ├── openapi.yaml │ ├── package-lock.json │ ├── package.json │ ├── postgresql.ts │ ├── schema.sql │ ├── seed.sql │ ├── tsconfig.json │ ├── types.ts │ └── util.ts └── training-guide.pdf ├── hotel-reservation-app ├── README.md ├── hotel-reservation-frontend │ ├── .env │ ├── .gitignore │ ├── .prettierignore │ ├── openapitools.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.tsx │ │ ├── api │ │ │ ├── config.ts │ │ │ └── retry.ts │ │ ├── contexts │ │ │ └── user.tsx │ │ ├── hooks │ │ │ ├── query.tsx │ │ │ ├── reservations.tsx │ │ │ └── rooms.tsx │ │ ├── index.tsx │ │ ├── layout │ │ │ └── AppBar.tsx │ │ ├── pages │ │ │ ├── error │ │ │ │ └── index.tsx │ │ │ ├── landing_page │ │ │ │ └── index.tsx │ │ │ ├── not_found │ │ │ │ └── index.tsx │ │ │ ├── reservation_listing │ │ │ │ ├── ReservationListItem.tsx │ │ │ │ └── index.tsx │ │ │ ├── reservations_adding │ │ │ │ ├── ReservationForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── reservations_updating │ │ │ │ ├── ReservationUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ └── room_listing │ │ │ │ ├── RoomListItem.tsx │ │ │ │ ├── RoomSearchBar.tsx │ │ │ │ └── index.tsx │ │ ├── resources │ │ │ └── hotel-room.png │ │ ├── setupProxy.js │ │ ├── theme.ts │ │ ├── types │ │ │ └── generated │ │ │ │ ├── error-payload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reservation-request.ts │ │ │ │ ├── reservation.ts │ │ │ │ ├── room-type.ts │ │ │ │ ├── room.ts │ │ │ │ ├── update-reservation-request.ts │ │ │ │ └── user.ts │ │ └── utils │ │ │ └── utils.ts │ └── tsconfig.json ├── hotel-reservation-service │ ├── .choreo │ │ └── endpoints.yaml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── index.ts │ ├── openapi.yaml │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ ├── types.ts │ └── util.ts └── training-guide.pdf ├── integration ├── CompositeAPI_payload.json ├── ContactsInput.json ├── ContactsOutput.json ├── dbtosf_project │ ├── .devcontainer.json │ ├── .gitignore │ ├── Ballerina.toml │ ├── Config.toml │ ├── Dependencies.toml │ ├── RestClient.http │ ├── service.bal │ └── tests │ │ └── service_test.bal └── github-email-integration │ ├── Ballerina.toml │ ├── Cloud.toml │ ├── Dependencies.toml │ └── webhook.bal ├── issue_template.md └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/README.md -------------------------------------------------------------------------------- /api-management/awesomepets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/api-management/awesomepets.yaml -------------------------------------------------------------------------------- /api-management/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/api-management/configuration.md -------------------------------------------------------------------------------- /api-management/cors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/api-management/cors.md -------------------------------------------------------------------------------- /demo-bank-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/LICENSE -------------------------------------------------------------------------------- /demo-bank-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/README.md -------------------------------------------------------------------------------- /demo-bank-app/backend/.choreo/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/.choreo/component.yaml -------------------------------------------------------------------------------- /demo-bank-app/backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/.dockerignore -------------------------------------------------------------------------------- /demo-bank-app/backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/.env.example -------------------------------------------------------------------------------- /demo-bank-app/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/.gitignore -------------------------------------------------------------------------------- /demo-bank-app/backend/BankingMicroservice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/BankingMicroservice.csproj -------------------------------------------------------------------------------- /demo-bank-app/backend/Controllers/AccountsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Controllers/AccountsController.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Controllers/TransactionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Controllers/TransactionsController.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Data/BankingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Data/BankingContext.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Dockerfile -------------------------------------------------------------------------------- /demo-bank-app/backend/Models/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Models/BankAccount.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Models/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Models/Transaction.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Models/TransactionInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Models/TransactionInput.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Program.cs -------------------------------------------------------------------------------- /demo-bank-app/backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo-bank-app/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/README.md -------------------------------------------------------------------------------- /demo-bank-app/backend/appsettings.Development.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/appsettings.Development.json.example -------------------------------------------------------------------------------- /demo-bank-app/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/appsettings.json -------------------------------------------------------------------------------- /demo-bank-app/backend/backend-dot-net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/backend-dot-net.sln -------------------------------------------------------------------------------- /demo-bank-app/backend/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/openapi.yaml -------------------------------------------------------------------------------- /demo-bank-app/backend/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/backend/setup.sql -------------------------------------------------------------------------------- /demo-bank-app/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/.eslintrc.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/.gitignore -------------------------------------------------------------------------------- /demo-bank-app/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/.prettierrc -------------------------------------------------------------------------------- /demo-bank-app/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/README.md -------------------------------------------------------------------------------- /demo-bank-app/frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/eslint.config.js -------------------------------------------------------------------------------- /demo-bank-app/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/index.html -------------------------------------------------------------------------------- /demo-bank-app/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/package-lock.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/package.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/public/vite.svg -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/App.css -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/App.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/api/index.ts -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/AccountTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/AccountTable.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/CommonLoaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/CommonLoaders.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/NavBar.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/NewAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/NewAccount.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/NoData.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/Transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/Transaction.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/components/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/components/User.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/index.css -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/main.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/pages/Accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/pages/Accounts.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/pages/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/pages/Error.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/pages/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/pages/Transactions.tsx -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/utils/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/utils/accounts.ts -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/src/utils/cookie.ts -------------------------------------------------------------------------------- /demo-bank-app/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo-bank-app/frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/tsconfig.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /demo-bank-app/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/frontend/vite.config.ts -------------------------------------------------------------------------------- /demo-bank-app/usecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/usecase.png -------------------------------------------------------------------------------- /demo-bank-app/userstore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/demo-bank-app/userstore.csv -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_USER_INFO_COOKIE="" 2 | -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/.gitignore -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | src/types/generated -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/openapitools.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/package-lock.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/package.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/public/favicon.ico -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/public/index.html -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/App.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/api/config.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/api/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/api/retry.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/contexts/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/contexts/user.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/query.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/reservations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/reservations.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/rooms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/hooks/rooms.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/layout/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/layout/AppBar.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/error/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/landing_page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/landing_page/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/not_found/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/not_found/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservation_listing/ReservationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservation_listing/ReservationListItem.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservation_listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservation_listing/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_adding/ReservationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_adding/ReservationForm.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_adding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_adding/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_updating/ReservationUpdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_updating/ReservationUpdateForm.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_updating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/reservations_updating/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/RoomListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/RoomListItem.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/RoomSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/RoomSearchBar.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/pages/room_listing/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/resources/hotel-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/resources/hotel-room.png -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/setupProxy.js -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/theme.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/error-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/error-payload.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/index.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/reservation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/reservation-request.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/reservation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/reservation.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/room-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/room-type.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/room.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/update-reservation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/update-reservation-request.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/types/generated/user.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/src/utils/utils.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-frontend/tsconfig.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/.choreo/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/.choreo/component.yaml -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/LICENSE -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/README.md -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/dao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/dao.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/index.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/openapi.yaml -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/package-lock.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/package.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/postgresql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/postgresql.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/schema.sql -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/seed.sql -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/tsconfig.json -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/types.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/hotel-reservation-service-db/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/hotel-reservation-service-db/util.ts -------------------------------------------------------------------------------- /hotel-reservation-app-db/training-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app-db/training-guide.pdf -------------------------------------------------------------------------------- /hotel-reservation-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/README.md -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_USER_INFO_COOKIE="" 2 | -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/.gitignore -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | src/types/generated -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/openapitools.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/package-lock.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/package.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/public/favicon.ico -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/public/index.html -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/App.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/api/config.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/api/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/api/retry.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/contexts/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/contexts/user.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/hooks/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/hooks/query.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/hooks/reservations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/hooks/reservations.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/hooks/rooms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/hooks/rooms.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/layout/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/layout/AppBar.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/error/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/landing_page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/landing_page/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/not_found/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/not_found/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservation_listing/ReservationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservation_listing/ReservationListItem.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservation_listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservation_listing/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_adding/ReservationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_adding/ReservationForm.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_adding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_adding/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_updating/ReservationUpdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_updating/ReservationUpdateForm.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_updating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/reservations_updating/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/RoomListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/RoomListItem.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/RoomSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/RoomSearchBar.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/pages/room_listing/index.tsx -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/resources/hotel-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/resources/hotel-room.png -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/setupProxy.js -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/theme.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/error-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/error-payload.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/index.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/reservation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/reservation-request.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/reservation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/reservation.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/room-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/room-type.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/room.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/update-reservation-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/update-reservation-request.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/types/generated/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/types/generated/user.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/src/utils/utils.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-frontend/tsconfig.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/.choreo/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/.choreo/endpoints.yaml -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/.gitignore -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/LICENSE -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/README.md -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/index.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/openapi.yaml -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/package-lock.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/package.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/tsconfig.json -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/types.ts -------------------------------------------------------------------------------- /hotel-reservation-app/hotel-reservation-service/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/hotel-reservation-service/util.ts -------------------------------------------------------------------------------- /hotel-reservation-app/training-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/hotel-reservation-app/training-guide.pdf -------------------------------------------------------------------------------- /integration/CompositeAPI_payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/CompositeAPI_payload.json -------------------------------------------------------------------------------- /integration/ContactsInput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/ContactsInput.json -------------------------------------------------------------------------------- /integration/ContactsOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/ContactsOutput.json -------------------------------------------------------------------------------- /integration/dbtosf_project/.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/.devcontainer.json -------------------------------------------------------------------------------- /integration/dbtosf_project/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /integration/dbtosf_project/Ballerina.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/Ballerina.toml -------------------------------------------------------------------------------- /integration/dbtosf_project/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/Config.toml -------------------------------------------------------------------------------- /integration/dbtosf_project/Dependencies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/Dependencies.toml -------------------------------------------------------------------------------- /integration/dbtosf_project/RestClient.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/RestClient.http -------------------------------------------------------------------------------- /integration/dbtosf_project/service.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/service.bal -------------------------------------------------------------------------------- /integration/dbtosf_project/tests/service_test.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/dbtosf_project/tests/service_test.bal -------------------------------------------------------------------------------- /integration/github-email-integration/Ballerina.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/github-email-integration/Ballerina.toml -------------------------------------------------------------------------------- /integration/github-email-integration/Cloud.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/github-email-integration/Cloud.toml -------------------------------------------------------------------------------- /integration/github-email-integration/Dependencies.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/github-email-integration/webhook.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/integration/github-email-integration/webhook.bal -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/choreo-training-artifacts/HEAD/pull_request_template.md --------------------------------------------------------------------------------