├── LICENSE.md ├── README.md ├── client ├── .editorconfig ├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── overlay.png │ ├── robots.txt │ └── validation-key.txt ├── src │ ├── App.tsx │ ├── animations.ts │ ├── assets │ │ ├── fonts │ │ │ └── Roboto-font │ │ │ │ ├── Apache License.txt │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ └── Roboto-ThinItalic.ttf │ │ ├── icons │ │ │ ├── addressIcon.svg │ │ │ ├── backgroundIcon.svg │ │ │ ├── cameraIcon.svg │ │ │ ├── checkIcon.svg │ │ │ ├── clearIcon.svg │ │ │ ├── editIcon.svg │ │ │ ├── filter.svg │ │ │ ├── index.tsx │ │ │ ├── leftArrow.svg │ │ │ ├── logOut.svg │ │ │ ├── mapIcon.svg │ │ │ ├── nameIcon.svg │ │ │ ├── nigerianFlag.svg │ │ │ ├── pailot.svg │ │ │ ├── pailotSettings.svg │ │ │ ├── phoneIcon.svg │ │ │ ├── piIcon.svg │ │ │ ├── piSymbol.svg │ │ │ ├── pictureIcon.svg │ │ │ ├── plusIcon.svg │ │ │ ├── profileAvatarIcon.svg │ │ │ ├── profileIcon.svg │ │ │ ├── scan.svg │ │ │ ├── settingIcon.svg │ │ │ ├── tick.svg │ │ │ ├── userIcon.svg │ │ │ ├── walletIcon.svg │ │ │ ├── wordIcon.svg │ │ │ └── worldIcon.svg │ │ └── images │ │ │ ├── chart.svg │ │ │ ├── defaultUser.svg │ │ │ ├── defaultUser2.svg │ │ │ ├── delivery.svg │ │ │ ├── delivery2.svg │ │ │ ├── deliveryBikeMan.svg │ │ │ ├── deliveryLady.svg │ │ │ ├── deliveryMan.svg │ │ │ ├── index.tsx │ │ │ ├── logistics1.svg │ │ │ ├── logo.svg │ │ │ ├── logo__noBg.svg │ │ │ ├── pailotPurpleLogo.svg │ │ │ ├── slideImg1.png │ │ │ ├── summaryImage.svg │ │ │ └── userImg.jpg │ ├── components │ │ ├── ActiveDelivery │ │ │ ├── ActivePayment.module.css │ │ │ ├── ActivePayment.tsx │ │ │ ├── OnlineDelivery.module.css │ │ │ └── OnlineDelivery.tsx │ │ ├── Common │ │ │ ├── AlertModal │ │ │ │ ├── AlertModal.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── useAlertModal.ts │ │ │ ├── Button │ │ │ │ ├── Button.module.css │ │ │ │ └── Button.tsx │ │ │ ├── CourierCard │ │ │ │ ├── CourierCard.module.css │ │ │ │ └── CourierCard.tsx │ │ │ ├── CourierFormMods │ │ │ │ ├── CourierFormMods.module.css │ │ │ │ └── CourierFormMods.tsx │ │ │ ├── DeliveryCard │ │ │ │ ├── DeliveryCard.module.css │ │ │ │ └── DeliveryCard.tsx │ │ │ ├── FingerPrint │ │ │ │ ├── FingerPrint.module.css │ │ │ │ └── index.tsx │ │ │ ├── FooterNavBar │ │ │ │ ├── FooterNavBar.module.css │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── Header.module.css │ │ │ │ └── index.tsx │ │ │ └── HomePlus │ │ │ │ ├── HomePlus.module.css │ │ │ │ └── index.tsx │ │ ├── CourierDeliveryList │ │ │ ├── CourierDeliveryList.module.css │ │ │ └── CourierDeliveryList.tsx │ │ ├── CustomizedDelivery │ │ │ ├── DeliveryDetails.module.css │ │ │ ├── DeliveryDetails.tsx │ │ │ ├── DeliveryLocation.module.css │ │ │ ├── DeliveryLocation.tsx │ │ │ ├── DeliveryPayment.module.css │ │ │ ├── DeliveryPayment.tsx │ │ │ ├── DeliverySummary.module.css │ │ │ ├── DeliverySummary.tsx │ │ │ ├── DeliveryWeightSize.module.css │ │ │ ├── DeliveryWeightSize.tsx │ │ │ ├── LocationModal.module.css │ │ │ ├── LocationModal.tsx │ │ │ ├── ModeOfDelivery.module.css │ │ │ ├── ModeOfDelivery.tsx │ │ │ ├── OrderSucessful.module.css │ │ │ ├── OrderSucessful.tsx │ │ │ ├── UploadDeliveryImage.module.css │ │ │ └── UploadDeliveryImage.tsx │ │ ├── DashBoardPopups │ │ │ ├── ModPopup.module.css │ │ │ ├── ModPopup.tsx │ │ │ ├── PricingPopup.module.css │ │ │ └── PricingPopup.tsx │ │ ├── DispatchersList │ │ │ ├── DispatchersList.module.css │ │ │ └── DispatchersList.tsx │ │ ├── LoadingSpinner │ │ │ ├── LoadingSpinner.module.css │ │ │ └── LoadingSpinner.tsx │ │ ├── Settings │ │ │ ├── SettingsHome │ │ │ │ ├── SettingsHome.module.css │ │ │ │ └── index.tsx │ │ │ └── Wallet │ │ │ │ ├── Wallet.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── useWallet.ts │ │ ├── SplashScreen │ │ │ ├── ScreenOne │ │ │ │ ├── ScreenOne.module.css │ │ │ │ └── index.tsx │ │ │ └── ScreenTwo │ │ │ │ ├── ScreenTwo.module.css │ │ │ │ └── index.tsx │ │ ├── WelcomeScreen │ │ │ ├── AllowPi │ │ │ │ ├── AllowPi.module.css │ │ │ │ └── index.tsx │ │ │ └── SelectLanguage │ │ │ │ ├── SelectLanguage.module.css │ │ │ │ └── index.tsx │ │ └── index.tsx │ ├── constants │ │ └── url.constants.ts │ ├── hooks │ │ └── useApi.ts │ ├── index.css │ ├── index.tsx │ ├── pages │ │ ├── ActiveDelivery │ │ │ ├── ActiveDelivery.module.css │ │ │ └── ActiveDelivery.tsx │ │ ├── CourierDashBoard │ │ │ ├── CourierDashBoard.module.css │ │ │ └── CourierDashBoard.tsx │ │ ├── CourierForm │ │ │ ├── CourierForm.module.css │ │ │ └── CourierForm.tsx │ │ ├── CustomizedDelivery │ │ │ ├── CustomizedDelivery.module.css │ │ │ └── CustomizedDelivery.tsx │ │ ├── Home │ │ │ ├── Home.module.css │ │ │ └── Home.tsx │ │ ├── OnboardingCompleted │ │ │ ├── OnboardingCompleted.module.css │ │ │ └── OnboardingCompleted.tsx │ │ ├── PrivacyPolicy │ │ │ ├── PrivacyPolicy.module.css │ │ │ └── PrivacyPolicy.tsx │ │ ├── Settings │ │ │ ├── Settings.module.css │ │ │ └── Settings.tsx │ │ ├── ShareLocation │ │ │ ├── ShareLocation.module.css │ │ │ └── ShareLocation.tsx │ │ ├── SplashScreen │ │ │ ├── SplashScreen.module.css │ │ │ └── SplashScreen.tsx │ │ ├── TermsAndConditions │ │ │ ├── TermsAndCondition.tsx │ │ │ └── TermsAndConditions.module.css │ │ ├── WelcomeScreen │ │ │ ├── Welcome.module.css │ │ │ └── Welcome.tsx │ │ └── index.tsx │ ├── react-app-env.d.ts │ ├── store │ │ └── store.ts │ ├── typedefs.d.ts │ ├── types │ │ ├── SplashScreenState.ts │ │ ├── payment.ts │ │ ├── transaction.ts │ │ └── user.ts │ └── utils │ │ ├── paymentsCallback.ts │ │ └── utils.ts ├── tsconfig.json └── yarn.lock └── server ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── docker-compose.yaml ├── log └── .gitkeep ├── package.json ├── src ├── constants │ ├── environments.ts │ └── result.ts ├── db │ ├── dataSource.ts │ └── entity │ │ ├── Courier.ts │ │ ├── Earning.ts │ │ ├── Payout.ts │ │ ├── Transaction.ts │ │ ├── User.ts │ │ └── UserCourier.ts ├── index.ts ├── interfaces │ ├── payment.ts │ ├── result.ts │ ├── transaction.ts │ └── user.ts ├── middlewares │ ├── auth.ts │ ├── cloudinary.ts │ ├── cors.ts │ ├── generateCode.ts │ └── multer.ts ├── modules │ ├── payment │ │ ├── handlers │ │ │ ├── AccountToUserPayment.ts │ │ │ ├── approveU2APayment.ts │ │ │ ├── cancelledU2APayment.ts │ │ │ ├── completeU2APayment.ts │ │ │ └── incompleteU2APayment.ts │ │ ├── payment.controller.ts │ │ └── services │ │ │ └── payment.services.ts │ ├── router.ts │ ├── transaction │ │ ├── handlers │ │ │ ├── acceptPendingTransaction.ts │ │ │ ├── createTransaction.ts │ │ │ ├── deleteTransaction.ts │ │ │ ├── getAllPendingTransaction.ts │ │ │ ├── getAllTransactions.ts │ │ │ ├── getAllTransactionsForCourier.ts │ │ │ ├── getAllTransactionsForReceiver.ts │ │ │ ├── getAllTransactionsForSender.ts │ │ │ ├── getTransaction.ts │ │ │ ├── updateTransaction.ts │ │ │ └── updateTransactionStatus.ts │ │ ├── services │ │ │ └── transaction.services.ts │ │ └── transaction.controller.ts │ └── user │ │ ├── handlers │ │ ├── createCourier.ts │ │ ├── createUser.ts │ │ ├── deleteCourier.ts │ │ ├── deleteUser.ts │ │ ├── getAllCourierUsers.ts │ │ ├── getAllUser.ts │ │ ├── getUser.ts │ │ ├── getUserByUsername.ts │ │ ├── signInUser.ts │ │ ├── updateCourier.ts │ │ └── updateUser.ts │ │ ├── services │ │ └── user.services.ts │ │ └── user.controller.ts └── utils │ └── platformAPIClient.ts ├── tsconfig.build.json ├── tsconfig.json ├── yarn-error.log └── yarn.lock /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Pailot App 2 | -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/.eslintrc.json -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/.prettierrc -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/overlay.png -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/public/validation-key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/public/validation-key.txt -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/animations.ts -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Apache License.txt -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Black.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Bold.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Italic.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Light.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Medium.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Regular.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-Thin.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/Roboto-font/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/fonts/Roboto-font/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /client/src/assets/icons/addressIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/addressIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/backgroundIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/backgroundIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/cameraIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/cameraIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/checkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/checkIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/clearIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/clearIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/editIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/editIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /client/src/assets/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/index.tsx -------------------------------------------------------------------------------- /client/src/assets/icons/leftArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/leftArrow.svg -------------------------------------------------------------------------------- /client/src/assets/icons/logOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/logOut.svg -------------------------------------------------------------------------------- /client/src/assets/icons/mapIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/mapIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/nameIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/nameIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/nigerianFlag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/nigerianFlag.svg -------------------------------------------------------------------------------- /client/src/assets/icons/pailot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/pailot.svg -------------------------------------------------------------------------------- /client/src/assets/icons/pailotSettings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/pailotSettings.svg -------------------------------------------------------------------------------- /client/src/assets/icons/phoneIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/phoneIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/piIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/piIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/piSymbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/piSymbol.svg -------------------------------------------------------------------------------- /client/src/assets/icons/pictureIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/pictureIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/plusIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/plusIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/profileAvatarIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/profileAvatarIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/profileIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/profileIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/scan.svg -------------------------------------------------------------------------------- /client/src/assets/icons/settingIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/settingIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/tick.svg -------------------------------------------------------------------------------- /client/src/assets/icons/userIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/userIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/walletIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/walletIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/wordIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/wordIcon.svg -------------------------------------------------------------------------------- /client/src/assets/icons/worldIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/icons/worldIcon.svg -------------------------------------------------------------------------------- /client/src/assets/images/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/chart.svg -------------------------------------------------------------------------------- /client/src/assets/images/defaultUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/defaultUser.svg -------------------------------------------------------------------------------- /client/src/assets/images/defaultUser2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/defaultUser2.svg -------------------------------------------------------------------------------- /client/src/assets/images/delivery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/delivery.svg -------------------------------------------------------------------------------- /client/src/assets/images/delivery2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/delivery2.svg -------------------------------------------------------------------------------- /client/src/assets/images/deliveryBikeMan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/deliveryBikeMan.svg -------------------------------------------------------------------------------- /client/src/assets/images/deliveryLady.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/deliveryLady.svg -------------------------------------------------------------------------------- /client/src/assets/images/deliveryMan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/deliveryMan.svg -------------------------------------------------------------------------------- /client/src/assets/images/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/index.tsx -------------------------------------------------------------------------------- /client/src/assets/images/logistics1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/logistics1.svg -------------------------------------------------------------------------------- /client/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/logo.svg -------------------------------------------------------------------------------- /client/src/assets/images/logo__noBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/logo__noBg.svg -------------------------------------------------------------------------------- /client/src/assets/images/pailotPurpleLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/pailotPurpleLogo.svg -------------------------------------------------------------------------------- /client/src/assets/images/slideImg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/slideImg1.png -------------------------------------------------------------------------------- /client/src/assets/images/summaryImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/summaryImage.svg -------------------------------------------------------------------------------- /client/src/assets/images/userImg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/assets/images/userImg.jpg -------------------------------------------------------------------------------- /client/src/components/ActiveDelivery/ActivePayment.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/ActiveDelivery/ActivePayment.module.css -------------------------------------------------------------------------------- /client/src/components/ActiveDelivery/ActivePayment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/ActiveDelivery/ActivePayment.tsx -------------------------------------------------------------------------------- /client/src/components/ActiveDelivery/OnlineDelivery.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/ActiveDelivery/OnlineDelivery.module.css -------------------------------------------------------------------------------- /client/src/components/ActiveDelivery/OnlineDelivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/ActiveDelivery/OnlineDelivery.tsx -------------------------------------------------------------------------------- /client/src/components/Common/AlertModal/AlertModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/AlertModal/AlertModal.module.css -------------------------------------------------------------------------------- /client/src/components/Common/AlertModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/AlertModal/index.tsx -------------------------------------------------------------------------------- /client/src/components/Common/AlertModal/useAlertModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/AlertModal/useAlertModal.ts -------------------------------------------------------------------------------- /client/src/components/Common/Button/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/Button/Button.module.css -------------------------------------------------------------------------------- /client/src/components/Common/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/Button/Button.tsx -------------------------------------------------------------------------------- /client/src/components/Common/CourierCard/CourierCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/CourierCard/CourierCard.module.css -------------------------------------------------------------------------------- /client/src/components/Common/CourierCard/CourierCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/CourierCard/CourierCard.tsx -------------------------------------------------------------------------------- /client/src/components/Common/CourierFormMods/CourierFormMods.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/CourierFormMods/CourierFormMods.module.css -------------------------------------------------------------------------------- /client/src/components/Common/CourierFormMods/CourierFormMods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/CourierFormMods/CourierFormMods.tsx -------------------------------------------------------------------------------- /client/src/components/Common/DeliveryCard/DeliveryCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/DeliveryCard/DeliveryCard.module.css -------------------------------------------------------------------------------- /client/src/components/Common/DeliveryCard/DeliveryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/DeliveryCard/DeliveryCard.tsx -------------------------------------------------------------------------------- /client/src/components/Common/FingerPrint/FingerPrint.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/FingerPrint/FingerPrint.module.css -------------------------------------------------------------------------------- /client/src/components/Common/FingerPrint/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/FingerPrint/index.tsx -------------------------------------------------------------------------------- /client/src/components/Common/FooterNavBar/FooterNavBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/FooterNavBar/FooterNavBar.module.css -------------------------------------------------------------------------------- /client/src/components/Common/FooterNavBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/FooterNavBar/index.tsx -------------------------------------------------------------------------------- /client/src/components/Common/Header/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/Header/Header.module.css -------------------------------------------------------------------------------- /client/src/components/Common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/Header/index.tsx -------------------------------------------------------------------------------- /client/src/components/Common/HomePlus/HomePlus.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/HomePlus/HomePlus.module.css -------------------------------------------------------------------------------- /client/src/components/Common/HomePlus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Common/HomePlus/index.tsx -------------------------------------------------------------------------------- /client/src/components/CourierDeliveryList/CourierDeliveryList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CourierDeliveryList/CourierDeliveryList.module.css -------------------------------------------------------------------------------- /client/src/components/CourierDeliveryList/CourierDeliveryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CourierDeliveryList/CourierDeliveryList.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryDetails.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryDetails.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryLocation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryLocation.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryLocation.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryPayment.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryPayment.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryPayment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryPayment.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliverySummary.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliverySummary.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliverySummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliverySummary.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryWeightSize.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryWeightSize.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/DeliveryWeightSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/DeliveryWeightSize.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/LocationModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/LocationModal.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/LocationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/LocationModal.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/ModeOfDelivery.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/ModeOfDelivery.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/ModeOfDelivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/ModeOfDelivery.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/OrderSucessful.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/OrderSucessful.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/OrderSucessful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/OrderSucessful.tsx -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/UploadDeliveryImage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/UploadDeliveryImage.module.css -------------------------------------------------------------------------------- /client/src/components/CustomizedDelivery/UploadDeliveryImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/CustomizedDelivery/UploadDeliveryImage.tsx -------------------------------------------------------------------------------- /client/src/components/DashBoardPopups/ModPopup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DashBoardPopups/ModPopup.module.css -------------------------------------------------------------------------------- /client/src/components/DashBoardPopups/ModPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DashBoardPopups/ModPopup.tsx -------------------------------------------------------------------------------- /client/src/components/DashBoardPopups/PricingPopup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DashBoardPopups/PricingPopup.module.css -------------------------------------------------------------------------------- /client/src/components/DashBoardPopups/PricingPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DashBoardPopups/PricingPopup.tsx -------------------------------------------------------------------------------- /client/src/components/DispatchersList/DispatchersList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DispatchersList/DispatchersList.module.css -------------------------------------------------------------------------------- /client/src/components/DispatchersList/DispatchersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/DispatchersList/DispatchersList.tsx -------------------------------------------------------------------------------- /client/src/components/LoadingSpinner/LoadingSpinner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/LoadingSpinner/LoadingSpinner.module.css -------------------------------------------------------------------------------- /client/src/components/LoadingSpinner/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/LoadingSpinner/LoadingSpinner.tsx -------------------------------------------------------------------------------- /client/src/components/Settings/SettingsHome/SettingsHome.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Settings/SettingsHome/SettingsHome.module.css -------------------------------------------------------------------------------- /client/src/components/Settings/SettingsHome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Settings/SettingsHome/index.tsx -------------------------------------------------------------------------------- /client/src/components/Settings/Wallet/Wallet.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Settings/Wallet/Wallet.module.css -------------------------------------------------------------------------------- /client/src/components/Settings/Wallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Settings/Wallet/index.tsx -------------------------------------------------------------------------------- /client/src/components/Settings/Wallet/useWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/Settings/Wallet/useWallet.ts -------------------------------------------------------------------------------- /client/src/components/SplashScreen/ScreenOne/ScreenOne.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/SplashScreen/ScreenOne/ScreenOne.module.css -------------------------------------------------------------------------------- /client/src/components/SplashScreen/ScreenOne/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/SplashScreen/ScreenOne/index.tsx -------------------------------------------------------------------------------- /client/src/components/SplashScreen/ScreenTwo/ScreenTwo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/SplashScreen/ScreenTwo/ScreenTwo.module.css -------------------------------------------------------------------------------- /client/src/components/SplashScreen/ScreenTwo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/SplashScreen/ScreenTwo/index.tsx -------------------------------------------------------------------------------- /client/src/components/WelcomeScreen/AllowPi/AllowPi.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/WelcomeScreen/AllowPi/AllowPi.module.css -------------------------------------------------------------------------------- /client/src/components/WelcomeScreen/AllowPi/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/WelcomeScreen/AllowPi/index.tsx -------------------------------------------------------------------------------- /client/src/components/WelcomeScreen/SelectLanguage/SelectLanguage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/WelcomeScreen/SelectLanguage/SelectLanguage.module.css -------------------------------------------------------------------------------- /client/src/components/WelcomeScreen/SelectLanguage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/WelcomeScreen/SelectLanguage/index.tsx -------------------------------------------------------------------------------- /client/src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/components/index.tsx -------------------------------------------------------------------------------- /client/src/constants/url.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/constants/url.constants.ts -------------------------------------------------------------------------------- /client/src/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/hooks/useApi.ts -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/pages/ActiveDelivery/ActiveDelivery.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/ActiveDelivery/ActiveDelivery.module.css -------------------------------------------------------------------------------- /client/src/pages/ActiveDelivery/ActiveDelivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/ActiveDelivery/ActiveDelivery.tsx -------------------------------------------------------------------------------- /client/src/pages/CourierDashBoard/CourierDashBoard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CourierDashBoard/CourierDashBoard.module.css -------------------------------------------------------------------------------- /client/src/pages/CourierDashBoard/CourierDashBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CourierDashBoard/CourierDashBoard.tsx -------------------------------------------------------------------------------- /client/src/pages/CourierForm/CourierForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CourierForm/CourierForm.module.css -------------------------------------------------------------------------------- /client/src/pages/CourierForm/CourierForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CourierForm/CourierForm.tsx -------------------------------------------------------------------------------- /client/src/pages/CustomizedDelivery/CustomizedDelivery.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CustomizedDelivery/CustomizedDelivery.module.css -------------------------------------------------------------------------------- /client/src/pages/CustomizedDelivery/CustomizedDelivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/CustomizedDelivery/CustomizedDelivery.tsx -------------------------------------------------------------------------------- /client/src/pages/Home/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/Home/Home.module.css -------------------------------------------------------------------------------- /client/src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /client/src/pages/OnboardingCompleted/OnboardingCompleted.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/OnboardingCompleted/OnboardingCompleted.module.css -------------------------------------------------------------------------------- /client/src/pages/OnboardingCompleted/OnboardingCompleted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/OnboardingCompleted/OnboardingCompleted.tsx -------------------------------------------------------------------------------- /client/src/pages/PrivacyPolicy/PrivacyPolicy.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/PrivacyPolicy/PrivacyPolicy.module.css -------------------------------------------------------------------------------- /client/src/pages/PrivacyPolicy/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/PrivacyPolicy/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /client/src/pages/Settings/Settings.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/Settings/Settings.module.css -------------------------------------------------------------------------------- /client/src/pages/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/Settings/Settings.tsx -------------------------------------------------------------------------------- /client/src/pages/ShareLocation/ShareLocation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/ShareLocation/ShareLocation.module.css -------------------------------------------------------------------------------- /client/src/pages/ShareLocation/ShareLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/ShareLocation/ShareLocation.tsx -------------------------------------------------------------------------------- /client/src/pages/SplashScreen/SplashScreen.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/pages/SplashScreen/SplashScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/SplashScreen/SplashScreen.tsx -------------------------------------------------------------------------------- /client/src/pages/TermsAndConditions/TermsAndCondition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/TermsAndConditions/TermsAndCondition.tsx -------------------------------------------------------------------------------- /client/src/pages/TermsAndConditions/TermsAndConditions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/TermsAndConditions/TermsAndConditions.module.css -------------------------------------------------------------------------------- /client/src/pages/WelcomeScreen/Welcome.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/WelcomeScreen/Welcome.module.css -------------------------------------------------------------------------------- /client/src/pages/WelcomeScreen/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/WelcomeScreen/Welcome.tsx -------------------------------------------------------------------------------- /client/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/pages/index.tsx -------------------------------------------------------------------------------- /client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/store/store.ts -------------------------------------------------------------------------------- /client/src/typedefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/typedefs.d.ts -------------------------------------------------------------------------------- /client/src/types/SplashScreenState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/types/SplashScreenState.ts -------------------------------------------------------------------------------- /client/src/types/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/types/payment.ts -------------------------------------------------------------------------------- /client/src/types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/types/transaction.ts -------------------------------------------------------------------------------- /client/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/types/user.ts -------------------------------------------------------------------------------- /client/src/utils/paymentsCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/utils/paymentsCallback.ts -------------------------------------------------------------------------------- /client/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/src/utils/utils.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/.editorconfig -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/README.md -------------------------------------------------------------------------------- /server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/docker-compose.yaml -------------------------------------------------------------------------------- /server/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/constants/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/constants/environments.ts -------------------------------------------------------------------------------- /server/src/constants/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/constants/result.ts -------------------------------------------------------------------------------- /server/src/db/dataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/dataSource.ts -------------------------------------------------------------------------------- /server/src/db/entity/Courier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/Courier.ts -------------------------------------------------------------------------------- /server/src/db/entity/Earning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/Earning.ts -------------------------------------------------------------------------------- /server/src/db/entity/Payout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/Payout.ts -------------------------------------------------------------------------------- /server/src/db/entity/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/Transaction.ts -------------------------------------------------------------------------------- /server/src/db/entity/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/User.ts -------------------------------------------------------------------------------- /server/src/db/entity/UserCourier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/db/entity/UserCourier.ts -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/interfaces/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/interfaces/payment.ts -------------------------------------------------------------------------------- /server/src/interfaces/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/interfaces/result.ts -------------------------------------------------------------------------------- /server/src/interfaces/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/interfaces/transaction.ts -------------------------------------------------------------------------------- /server/src/interfaces/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/interfaces/user.ts -------------------------------------------------------------------------------- /server/src/middlewares/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/middlewares/auth.ts -------------------------------------------------------------------------------- /server/src/middlewares/cloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/middlewares/cloudinary.ts -------------------------------------------------------------------------------- /server/src/middlewares/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/middlewares/cors.ts -------------------------------------------------------------------------------- /server/src/middlewares/generateCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/middlewares/generateCode.ts -------------------------------------------------------------------------------- /server/src/middlewares/multer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/middlewares/multer.ts -------------------------------------------------------------------------------- /server/src/modules/payment/handlers/AccountToUserPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/handlers/AccountToUserPayment.ts -------------------------------------------------------------------------------- /server/src/modules/payment/handlers/approveU2APayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/handlers/approveU2APayment.ts -------------------------------------------------------------------------------- /server/src/modules/payment/handlers/cancelledU2APayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/handlers/cancelledU2APayment.ts -------------------------------------------------------------------------------- /server/src/modules/payment/handlers/completeU2APayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/handlers/completeU2APayment.ts -------------------------------------------------------------------------------- /server/src/modules/payment/handlers/incompleteU2APayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/handlers/incompleteU2APayment.ts -------------------------------------------------------------------------------- /server/src/modules/payment/payment.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/payment.controller.ts -------------------------------------------------------------------------------- /server/src/modules/payment/services/payment.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/payment/services/payment.services.ts -------------------------------------------------------------------------------- /server/src/modules/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/router.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/acceptPendingTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/acceptPendingTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/createTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/createTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/deleteTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/deleteTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getAllPendingTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getAllPendingTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getAllTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getAllTransactions.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getAllTransactionsForCourier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getAllTransactionsForCourier.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getAllTransactionsForReceiver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getAllTransactionsForReceiver.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getAllTransactionsForSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getAllTransactionsForSender.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/getTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/getTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/updateTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/updateTransaction.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/handlers/updateTransactionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/handlers/updateTransactionStatus.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/services/transaction.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/services/transaction.services.ts -------------------------------------------------------------------------------- /server/src/modules/transaction/transaction.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/transaction/transaction.controller.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/createCourier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/createCourier.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/createUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/createUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/deleteCourier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/deleteCourier.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/deleteUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/deleteUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/getAllCourierUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/getAllCourierUsers.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/getAllUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/getAllUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/getUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/getUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/getUserByUsername.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/getUserByUsername.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/signInUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/signInUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/updateCourier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/updateCourier.ts -------------------------------------------------------------------------------- /server/src/modules/user/handlers/updateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/handlers/updateUser.ts -------------------------------------------------------------------------------- /server/src/modules/user/services/user.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/services/user.services.ts -------------------------------------------------------------------------------- /server/src/modules/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/modules/user/user.controller.ts -------------------------------------------------------------------------------- /server/src/utils/platformAPIClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/src/utils/platformAPIClient.ts -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/yarn-error.log -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi-apps/pailot-for-pi/HEAD/server/yarn.lock --------------------------------------------------------------------------------