diff --git a/.env.example b/.env.example old mode 100644 new mode 100755 diff --git a/.eslintrc.json b/.eslintrc.json old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index b2eb404..8cd0d26 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ contoh rest api POS ( point of sales ) built with hapi.js ### frontend `ReactJS Web App - kasirAja`: [Link](https://github.com/ajikamaludin/react-kasiraja-web) -`React Native Mobile App - kasirAja`: [Coming Soon](#) +`React Native Mobile App - kasirAja`: [Link](#) ### table structure ![table structure](https://github.com/ajikamaludin/hapi-kasiraja-api/raw/dev/documents/tables.png) @@ -52,4 +52,4 @@ response { "status": Ok! - } \ No newline at end of file + } diff --git a/documents/postman-collection/KasirAja API.postman_collection.json b/documents/postman-collection/KasirAja API.postman_collection.json old mode 100644 new mode 100755 diff --git a/documents/postman-collection/KasirAja Dev.postman_environment.json b/documents/postman-collection/KasirAja Dev.postman_environment.json old mode 100644 new mode 100755 diff --git a/migrations/1628181164425_create-company-table.js b/migrations/1628181164425_create-company-table.js old mode 100644 new mode 100755 diff --git a/migrations/1628181325738_create-company-product.js b/migrations/1628181325738_create-company-product.js old mode 100644 new mode 100755 diff --git a/migrations/1628181389101_create-company-transaction.js b/migrations/1628181389101_create-company-transaction.js old mode 100644 new mode 100755 diff --git a/migrations/1628221141319_create-authentications.js b/migrations/1628221141319_create-authentications.js old mode 100644 new mode 100755 diff --git a/package-lock.json b/package-lock.json old mode 100644 new mode 100755 diff --git a/package.json b/package.json old mode 100644 new mode 100755 diff --git a/src/api/authentications/handler.js b/src/api/authentications/handler.js old mode 100644 new mode 100755 diff --git a/src/api/authentications/index.js b/src/api/authentications/index.js old mode 100644 new mode 100755 diff --git a/src/api/authentications/routes.js b/src/api/authentications/routes.js old mode 100644 new mode 100755 diff --git a/src/api/categories/handler.js b/src/api/categories/handler.js old mode 100644 new mode 100755 diff --git a/src/api/categories/index.js b/src/api/categories/index.js old mode 100644 new mode 100755 diff --git a/src/api/categories/routes.js b/src/api/categories/routes.js old mode 100644 new mode 100755 diff --git a/src/api/customers/handler.js b/src/api/customers/handler.js old mode 100644 new mode 100755 diff --git a/src/api/customers/index.js b/src/api/customers/index.js old mode 100644 new mode 100755 diff --git a/src/api/customers/routes.js b/src/api/customers/routes.js old mode 100644 new mode 100755 diff --git a/src/api/general/handler.js b/src/api/general/handler.js old mode 100644 new mode 100755 diff --git a/src/api/general/index.js b/src/api/general/index.js old mode 100644 new mode 100755 diff --git a/src/api/general/routes.js b/src/api/general/routes.js old mode 100644 new mode 100755 diff --git a/src/api/products/handler.js b/src/api/products/handler.js old mode 100644 new mode 100755 diff --git a/src/api/products/index.js b/src/api/products/index.js old mode 100644 new mode 100755 diff --git a/src/api/products/routes.js b/src/api/products/routes.js old mode 100644 new mode 100755 diff --git a/src/api/purchases/handler.js b/src/api/purchases/handler.js old mode 100644 new mode 100755 diff --git a/src/api/purchases/index.js b/src/api/purchases/index.js old mode 100644 new mode 100755 diff --git a/src/api/purchases/routes.js b/src/api/purchases/routes.js old mode 100644 new mode 100755 diff --git a/src/api/registrations/handler.js b/src/api/registrations/handler.js old mode 100644 new mode 100755 diff --git a/src/api/registrations/index.js b/src/api/registrations/index.js old mode 100644 new mode 100755 diff --git a/src/api/registrations/routes.js b/src/api/registrations/routes.js old mode 100644 new mode 100755 diff --git a/src/api/sales/handler.js b/src/api/sales/handler.js old mode 100644 new mode 100755 diff --git a/src/api/sales/index.js b/src/api/sales/index.js old mode 100644 new mode 100755 diff --git a/src/api/sales/routes.js b/src/api/sales/routes.js old mode 100644 new mode 100755 diff --git a/src/api/units/handler.js b/src/api/units/handler.js old mode 100644 new mode 100755 diff --git a/src/api/units/index.js b/src/api/units/index.js old mode 100644 new mode 100755 diff --git a/src/api/units/routes.js b/src/api/units/routes.js old mode 100644 new mode 100755 diff --git a/src/api/users/handler.js b/src/api/users/handler.js old mode 100644 new mode 100755 diff --git a/src/api/users/index.js b/src/api/users/index.js old mode 100644 new mode 100755 diff --git a/src/api/users/routes.js b/src/api/users/routes.js old mode 100644 new mode 100755 diff --git a/src/exceptions/AuthenticationError.js b/src/exceptions/AuthenticationError.js old mode 100644 new mode 100755 diff --git a/src/exceptions/AuthorizationError.js b/src/exceptions/AuthorizationError.js old mode 100644 new mode 100755 diff --git a/src/exceptions/ClientError.js b/src/exceptions/ClientError.js old mode 100644 new mode 100755 diff --git a/src/exceptions/InvariantError.js b/src/exceptions/InvariantError.js old mode 100644 new mode 100755 diff --git a/src/exceptions/NotFoundError.js b/src/exceptions/NotFoundError.js old mode 100644 new mode 100755 diff --git a/src/server.js b/src/server.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/AuthenticationsService.js b/src/services/postgres/AuthenticationsService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/CategoriesService.js b/src/services/postgres/CategoriesService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/CustomersService.js b/src/services/postgres/CustomersService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/GeneralService.js b/src/services/postgres/GeneralService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/ProductsService.js b/src/services/postgres/ProductsService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/PurchasesService.js b/src/services/postgres/PurchasesService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/RegistrationService.js b/src/services/postgres/RegistrationService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/SalesService.js b/src/services/postgres/SalesService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/UnitsService.js b/src/services/postgres/UnitsService.js old mode 100644 new mode 100755 diff --git a/src/services/postgres/UsersService.js b/src/services/postgres/UsersService.js old mode 100644 new mode 100755 diff --git a/src/tokenize/TokenManager.js b/src/tokenize/TokenManager.js old mode 100644 new mode 100755 diff --git a/src/utils/index.js b/src/utils/index.js old mode 100644 new mode 100755 diff --git a/src/validator/authentications/index.js b/src/validator/authentications/index.js old mode 100644 new mode 100755 diff --git a/src/validator/authentications/schema.js b/src/validator/authentications/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/categories/index.js b/src/validator/categories/index.js old mode 100644 new mode 100755 diff --git a/src/validator/categories/schema.js b/src/validator/categories/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/customers/index.js b/src/validator/customers/index.js old mode 100644 new mode 100755 diff --git a/src/validator/customers/schema.js b/src/validator/customers/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/products/index.js b/src/validator/products/index.js old mode 100644 new mode 100755 diff --git a/src/validator/products/schema.js b/src/validator/products/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/purchases/index.js b/src/validator/purchases/index.js old mode 100644 new mode 100755 diff --git a/src/validator/purchases/schema.js b/src/validator/purchases/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/registration/index.js b/src/validator/registration/index.js old mode 100644 new mode 100755 diff --git a/src/validator/registration/schema.js b/src/validator/registration/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/sales/index.js b/src/validator/sales/index.js old mode 100644 new mode 100755 diff --git a/src/validator/sales/schema.js b/src/validator/sales/schema.js old mode 100644 new mode 100755 diff --git a/src/validator/users/index.js b/src/validator/users/index.js old mode 100644 new mode 100755 diff --git a/src/validator/users/schema.js b/src/validator/users/schema.js old mode 100644 new mode 100755