@feedmepos/mf-order-setting 0.0.2 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.dev +13 -0
- package/.env.example +11 -0
- package/.env.prod +12 -0
- package/.eslintrc.cjs +15 -0
- package/.nvmrc +1 -0
- package/.prettierrc.json +8 -0
- package/.vscode/extensions.json +8 -0
- package/README.md +31 -0
- package/dist/KioskSettingView-BTDNtWJ1.js +4 -0
- package/{app-gcisgtft.js → dist/app-XcwzVa60.js} +7363 -7390
- package/dist/app.js +6 -0
- package/dist/frontend/mf-order/src/app.d.ts +4 -0
- package/dist/frontend/mf-order/src/router/routes.d.ts +3 -0
- package/dist/frontend/mf-order/src/views/order-settings/sms/SmsSetting.vue.d.ts +2 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -0
- package/env.d.ts +95 -0
- package/index.html +16 -0
- package/package.json +5 -4
- package/postcss.config.js +6 -0
- package/public/favicon.ico +0 -0
- package/src/App.vue +19 -0
- package/src/Entry.vue +42 -0
- package/src/api/auth/index.ts +20 -0
- package/src/api/delivery/index.ts +15 -0
- package/src/api/index.ts +171 -0
- package/src/api/kiosk/index.ts +22 -0
- package/src/api/menu/index.ts +13 -0
- package/src/api/order/index.ts +15 -0
- package/src/api/order-setting/index.ts +25 -0
- package/src/api/public-setting/index.ts +11 -0
- package/src/api/remoteOrder/index.ts +142 -0
- package/src/api/restaurant-setting/index.ts +55 -0
- package/src/api/table-setting/index.ts +30 -0
- package/src/app.ts +7 -0
- package/src/assets/base.css +6 -0
- package/src/assets/images/no-data.svg +35 -0
- package/src/assets/logo.svg +1 -0
- package/src/assets/main.css +1 -0
- package/src/components/GoogleMap.vue +216 -0
- package/src/components/RestaurantSelection.vue +34 -0
- package/src/components/index.ts +7 -0
- package/src/components/snackbar.ts +44 -0
- package/src/components/type.ts +103 -0
- package/src/composables/index.ts +7 -0
- package/src/composables/loading/index.ts +51 -0
- package/src/composables/search.ts +18 -0
- package/src/helpers/currency.ts +6 -0
- package/src/helpers/date.ts +29 -0
- package/src/helpers/iteration.ts +87 -0
- package/src/helpers/map.ts +92 -0
- package/src/helpers/menu.ts +166 -0
- package/src/helpers/number.ts +25 -0
- package/src/helpers/object.ts +12 -0
- package/src/helpers/profile.ts +52 -0
- package/src/i18n.ts +43 -0
- package/src/index.d.ts +3 -0
- package/src/main.ts +77 -0
- package/src/modules/kiosk/interface.ts +16 -0
- package/src/modules/order-setting/interface.ts +4 -0
- package/src/modules/order-setting/kiosk/interface.ts +52 -0
- package/src/plugins/google-maps.ts +28 -0
- package/src/router/index.ts +10 -0
- package/src/router/routes.ts +43 -0
- package/src/stores/app/index.ts +58 -0
- package/src/stores/iframe/index.ts +23 -0
- package/src/stores/kiosk/index.ts +40 -0
- package/src/stores/kiosk/mapper.ts +25 -0
- package/src/stores/menu/menu.ts +258 -0
- package/src/stores/order-setting/index.ts +61 -0
- package/src/stores/order-setting/mapper.ts +104 -0
- package/src/stores/restaurant/index.ts +138 -0
- package/src/stores/table-settings.ts +160 -0
- package/src/stores/type.ts +65 -0
- package/src/utils/constants/route.ts +15 -0
- package/src/utils/number.ts +16 -0
- package/src/utils/object.ts +15 -0
- package/src/views/all-orders/ActionMenuCell.vue +92 -0
- package/src/views/all-orders/FilterRestaurant.vue +71 -0
- package/src/views/all-orders/FilterStatus.vue +121 -0
- package/src/views/all-orders/FilterStatusMenu.vue +44 -0
- package/src/views/all-orders/Orders.vue +524 -0
- package/src/views/all-orders/ReflowOrder.vue +105 -0
- package/src/views/all-orders/UpdateDeliveryOrderDialog.vue +313 -0
- package/src/views/all-orders/order.ts +584 -0
- package/src/views/feedme-express/FeedMeExpress.vue +139 -0
- package/src/views/feedme-express/FeedMeExpressSummary.vue +62 -0
- package/src/views/kiosk/KioskSummary.vue +74 -0
- package/src/views/kiosk/KioskView.vue +140 -0
- package/src/views/kiosk/devices/KioskDeviceCard.vue +105 -0
- package/src/views/kiosk/devices/KioskDeviceDetail.vue +28 -0
- package/src/views/kiosk/devices/KioskDevicesView.vue +27 -0
- package/src/views/kiosk/devices/KioskOtpDialog.vue +15 -0
- package/src/views/kiosk/devices/KioskUnbindConfirm.vue +28 -0
- package/src/views/kiosk/settings/KioskDineInSection.vue +86 -0
- package/src/views/kiosk/settings/KioskDisplayStandSection.vue +98 -0
- package/src/views/kiosk/settings/KioskPickAtCounterSection.vue +25 -0
- package/src/views/kiosk/settings/KioskSettingView.vue +61 -0
- package/src/views/kiosk/settings/KioskTakeawaySection.vue +39 -0
- package/src/views/order-settings/OrderSettingsView.vue +52 -0
- package/src/views/order-settings/components/RestaurantSelector.vue +77 -0
- package/src/views/order-settings/delivery/DeliverySetting.vue +799 -0
- package/src/views/order-settings/delivery/LocalDelivery.vue +0 -0
- package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +167 -0
- package/src/views/order-settings/delivery/delivery.data.ts +75 -0
- package/src/views/order-settings/delivery/delivery.ts +41 -0
- package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +47 -0
- package/src/views/order-settings/delivery/inhouse/DeliveryCustomTime.vue +235 -0
- package/src/views/order-settings/delivery/inhouse/DeliveryOrder.vue +236 -0
- package/src/views/order-settings/delivery/inhouse/DeliveryTime.vue +143 -0
- package/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue +186 -0
- package/src/views/order-settings/delivery/inhouse/TimePicker.vue +76 -0
- package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +143 -0
- package/src/views/order-settings/delivery/integrated-delivery/FeedmeDelivery.vue +244 -0
- package/src/views/order-settings/delivery/integrated-delivery/FoodpandaCampaignDialog.vue +110 -0
- package/src/views/order-settings/delivery/integrated-delivery/FoodpandaSetting.vue +261 -0
- package/src/views/order-settings/delivery/integrated-delivery/GrabfoodSetting.vue +128 -0
- package/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue +272 -0
- package/src/views/order-settings/delivery/integrated-delivery/ShopeefoodSetting.vue +135 -0
- package/src/views/order-settings/delivery/integrated.data.interface.ts +0 -0
- package/src/views/order-settings/dinein/DineInSetting.vue +128 -0
- package/src/views/order-settings/dinein/OfflinePaymentTypeDialog.vue +51 -0
- package/src/views/order-settings/dinein/OfflinePaymentTypeDialogContent.vue +44 -0
- package/src/views/order-settings/dinein/PaymentType.vue +172 -0
- package/src/views/order-settings/pickup/AddressInput.vue +48 -0
- package/src/views/order-settings/pickup/CustomPayment.vue +84 -0
- package/src/views/order-settings/pickup/PaymentSidesheet.vue +167 -0
- package/src/views/order-settings/pickup/PickUpPointDialog.vue +125 -0
- package/src/views/order-settings/pickup/PickUpPointDialogContent.vue +95 -0
- package/src/views/order-settings/pickup/PickUpSetting.vue +233 -0
- package/src/views/order-settings/pickup/PickUpSettingDialog.vue +148 -0
- package/src/views/order-settings/pickup/PickUpSideSheet.vue +15 -0
- package/src/views/order-settings/pickup/Preorder.vue +139 -0
- package/src/views/order-settings/servicecharge/RateInput.vue +34 -0
- package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +453 -0
- package/src/views/order-settings/servicecharge/ServiceChargeSetting.vue +233 -0
- package/src/views/order-settings/sms/SmsSetting.vue +162 -0
- package/tailwind.config.js +20 -0
- package/tsconfig.app.json +25 -0
- package/tsconfig.json +18 -0
- package/tsconfig.node.json +16 -0
- package/vite.config.ts +60 -0
- package/KioskSettingView-BRJpaAwI.js +0 -4
- package/app.js +0 -5
- package/frontend/mf-order/src/app.d.ts +0 -2
- package/frontend/mf-order/tsconfig.app.tsbuildinfo +0 -1
- package/style.css +0 -1
- package/{common → dist/common}/booking/index.d.ts +0 -0
- package/{common → dist/common}/config/bank/index.d.ts +0 -0
- package/{common → dist/common}/config/bank/malaysia.d.ts +0 -0
- package/{common → dist/common}/config/bank/singapore.d.ts +0 -0
- package/{common → dist/common}/config/index.d.ts +0 -0
- package/{common → dist/common}/convertor/index.d.ts +0 -0
- package/{common → dist/common}/index.d.ts +0 -0
- package/{common → dist/common}/number/index.d.ts +0 -0
- package/{common → dist/common}/sms/index.d.ts +0 -0
- package/{common → dist/common}/util/index.d.ts +0 -0
- package/{favicon.ico → dist/favicon.ico} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/App.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/all-orders/Orders.vue.d.ts → dist/frontend/mf-order/src/Entry.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/auth/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/delivery/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/kiosk/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/menu/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/order/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/order-setting/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/public-setting/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/remoteOrder/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/restaurant-setting/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/api/table-setting/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/components/GoogleMap.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/components/RestaurantSelection.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/components/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/components/snackbar.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/components/type.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/composables/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/composables/loading/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/composables/search.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/currency.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/date.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/iteration.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/map.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/menu.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/number.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/object.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/helpers/profile.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/i18n.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/main.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/modules/kiosk/interface.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/modules/order-setting/interface.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/modules/order-setting/kiosk/interface.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/plugins/google-maps.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/router/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/app/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/iframe/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/kiosk/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/kiosk/mapper.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/menu/menu.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/order-setting/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/order-setting/mapper.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/restaurant/index.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/table-settings.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/stores/type.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/utils/constants/route.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/utils/number.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/utils/object.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/ActionMenuCell.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/FilterRestaurant.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/FilterStatus.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/FilterStatusMenu.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/feedme-express/FeedMeExpress.vue.d.ts → dist/frontend/mf-order/src/views/all-orders/Orders.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/UpdateDeliveryOrderDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/all-orders/order.d.ts +2 -2
- package/{frontend/mf-order/src/views/kiosk/KioskView.vue.d.ts → dist/frontend/mf-order/src/views/feedme-express/FeedMeExpress.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/feedme-express/FeedMeExpressSummary.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/KioskSummary.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/OrderSettingsView.vue.d.ts → dist/frontend/mf-order/src/views/kiosk/KioskView.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/devices/KioskDeviceCard.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/devices/KioskDeviceDetail.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/devices/KioskOtpDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/devices/KioskUnbindConfirm.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/settings/KioskDineInSection.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/settings/KioskDisplayStandSection.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/settings/KioskPickAtCounterSection.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/settings/KioskSettingView.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/kiosk/settings/KioskTakeawaySection.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/delivery/LocalDelivery.vue.d.ts → dist/frontend/mf-order/src/views/order-settings/OrderSettingsView.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/components/RestaurantSelector.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/dinein/DineInSetting.vue.d.ts → dist/frontend/mf-order/src/views/order-settings/delivery/LocalDelivery.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/delivery.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/delivery.data.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/CurrencyInput.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/DeliveryCustomTime.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/DeliveryOrder.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/DeliveryTime.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/TimePicker.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/inhouse/ZoneDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/FeedmeDelivery.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/FoodpandaCampaignDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/FoodpandaSetting.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/GrabfoodSetting.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/IntegratedDelivery.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated-delivery/ShopeefoodSetting.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/delivery/integrated.data.interface.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/pickup/PickUpSideSheet.vue.d.ts → dist/frontend/mf-order/src/views/order-settings/dinein/DineInSetting.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/dinein/OfflinePaymentTypeDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/dinein/OfflinePaymentTypeDialogContent.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/dinein/PaymentType.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/AddressInput.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/CustomPayment.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/PaymentSidesheet.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/PickUpPointDialog.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/PickUpPointDialogContent.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/PickUpSetting.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/PickUpSettingDialog.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeSetting.vue.d.ts → dist/frontend/mf-order/src/views/order-settings/pickup/PickUpSideSheet.vue.d.ts} +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/pickup/Preorder.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/servicecharge/RateInput.vue.d.ts +0 -0
- package/{frontend → dist/frontend}/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +0 -0
- package/{frontend/mf-order/src/views/order-settings/sms/SmsSetting.vue.d.ts → dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeSetting.vue.d.ts} +0 -0
- package/{package → dist/package}/entity/booking/booking.do.d.ts +0 -0
- package/{package → dist/package}/entity/booking/booking.dto.d.ts +0 -0
- package/{package → dist/package}/entity/booking/booking.enum.d.ts +0 -0
- package/{package → dist/package}/entity/business/business.dto.d.ts +0 -0
- package/{package → dist/package}/entity/clickup/clickup.dto.d.ts +0 -0
- package/{package → dist/package}/entity/cursor/cursor.dto.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/delivery.do.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/delivery.dto.d.ts +28 -28
- package/{package → dist/package}/entity/delivery/delivery.enum.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/grab.dto.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/grab.enum.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/kosmo.dto.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/kosmo.enum.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/manual.dto.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/manual.enum.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/gateway/pandago.dto.d.ts +2 -2
- package/{package → dist/package}/entity/delivery/gateway/pandago.enum.d.ts +0 -0
- package/{package → dist/package}/entity/delivery/linked-delivery.do.d.ts +0 -0
- package/{package → dist/package}/entity/food-court/food-court.do.d.ts +0 -0
- package/{package → dist/package}/entity/food-court/food-court.dto.d.ts +0 -0
- package/{package → dist/package}/entity/food-court/food-court.enum.d.ts +0 -0
- package/{package → dist/package}/entity/food-court/order.do.d.ts +0 -0
- package/{package → dist/package}/entity/food-court/order.dto.d.ts +0 -0
- package/{package → dist/package}/entity/general/dateTime.dto.d.ts +0 -0
- package/{package → dist/package}/entity/general/number.dto.d.ts +0 -0
- package/{package → dist/package}/entity/general/search.dto.d.ts +0 -0
- package/{package → dist/package}/entity/incoming-order/incoming-order-to-bill.dto.d.ts +0 -0
- package/{package → dist/package}/entity/incoming-order/incoming-order.do.d.ts +0 -0
- package/{package → dist/package}/entity/incoming-order/incoming-order.dto.d.ts +0 -0
- package/{package → dist/package}/entity/incoming-order/incoming-order.enum.d.ts +0 -0
- package/{package → dist/package}/entity/index.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/kiosk.do.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/kiosk.dto.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/marketing/marketing.dto.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/scanner/scanner.do.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/scanner/scanner.dto.d.ts +0 -0
- package/{package → dist/package}/entity/kiosk/scanner/scanner.enum.d.ts +0 -0
- package/{package → dist/package}/entity/marketing/marketing.dto.d.ts +0 -0
- package/{package → dist/package}/entity/member/member.dto.d.ts +0 -0
- package/{package → dist/package}/entity/money/money.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order/dine-in/dine-in.do.d.ts +0 -0
- package/{package → dist/package}/entity/order/dine-in/dine-in.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/dine-in/qr.do.d.ts +0 -0
- package/{package → dist/package}/entity/order/dine-in/reservation.do.d.ts +0 -0
- package/{package → dist/package}/entity/order/dine-in/reservation.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/effects/effect.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/effects/effect.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order/menu/menu.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/order-item/order-item.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/order.do.d.ts +0 -0
- package/{package → dist/package}/entity/order/order.dto.d.ts +4 -4
- package/{package → dist/package}/entity/order/order.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order/payment/payment.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/pickup/pickup.do.d.ts +0 -0
- package/{package → dist/package}/entity/order/pickup/pickup.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/timeslot/timeslot.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order/timeslot/timeslot.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/base-integration.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda-menu.dto.d.ts +48 -48
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +16 -16
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +6 -6
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/foodpanda/foodpanda.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/grabfood/grabfood-menu.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/grabfood/grabfood-order.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/grabfood/grabfood-settings.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/grabfood/grabfood.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/grabfood/grabfood.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/menu.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/order-platform.dto.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/order-platform.enum.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood-menu.do.d.ts +0 -0
- package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +20 -20
- /package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-platform/shopeefood/shopeefood.enum.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/customization/color.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/customization/color.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/kiosk/kiosk.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/kiosk/kiosk.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/order-setting.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/order-setting.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/queue/queue.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/queue/queue.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/reservation/reservation.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/reservation/reservation.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/sequence/sequence.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/sequence/sequence.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/sms/sms.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/sms/sms.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/sms/sms.enum.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/upselling/upselling.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/upselling/upselling.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/v3/v3.do.d.ts +0 -0
- /package/{package → dist/package}/entity/order-setting/v3/v3.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/pagination/pagination.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/payment/payment.enum.d.ts +0 -0
- /package/{package → dist/package}/entity/printer/printer.do.d.ts +0 -0
- /package/{package → dist/package}/entity/queue/queue.do.d.ts +0 -0
- /package/{package → dist/package}/entity/queue/queue.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/queue/queue.enum.d.ts +0 -0
- /package/{package → dist/package}/entity/restaurant/restaurant.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/user/user.do.d.ts +0 -0
- /package/{package → dist/package}/entity/websocket/websocket.dto.d.ts +0 -0
- /package/{package → dist/package}/entity/websocket/websocket.enum.d.ts +0 -0
|
@@ -199,10 +199,10 @@ export declare const FPCatalogMenuV2: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
199
199
|
id: string;
|
|
200
200
|
type: "Image";
|
|
201
201
|
}> | null | undefined;
|
|
202
|
-
id: string;
|
|
203
202
|
title: {
|
|
204
203
|
default: string;
|
|
205
204
|
} & Record<string, string>;
|
|
205
|
+
id: string;
|
|
206
206
|
type: "Menu";
|
|
207
207
|
products: Record<string, {
|
|
208
208
|
id: string;
|
|
@@ -224,10 +224,10 @@ export declare const FPCatalogMenuV2: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
224
224
|
id: string;
|
|
225
225
|
type: "Image";
|
|
226
226
|
}> | null | undefined;
|
|
227
|
-
id: string;
|
|
228
227
|
title: {
|
|
229
228
|
default: string;
|
|
230
229
|
} & Record<string, string>;
|
|
230
|
+
id: string;
|
|
231
231
|
type: "Menu";
|
|
232
232
|
products: Record<string, {
|
|
233
233
|
id: string;
|
|
@@ -356,10 +356,10 @@ export declare const FPCatalogProductV2: z.ZodObject<z.extendShape<z.extendShape
|
|
|
356
356
|
id: string;
|
|
357
357
|
type: "Topping";
|
|
358
358
|
}> | null | undefined;
|
|
359
|
-
id: string;
|
|
360
359
|
title: {
|
|
361
360
|
default: string;
|
|
362
361
|
} & Record<string, string>;
|
|
362
|
+
id: string;
|
|
363
363
|
type: "Product";
|
|
364
364
|
}, {
|
|
365
365
|
description?: ({
|
|
@@ -391,10 +391,10 @@ export declare const FPCatalogProductV2: z.ZodObject<z.extendShape<z.extendShape
|
|
|
391
391
|
id: string;
|
|
392
392
|
type: "Topping";
|
|
393
393
|
}> | null | undefined;
|
|
394
|
-
id: string;
|
|
395
394
|
title: {
|
|
396
395
|
default: string;
|
|
397
396
|
} & Record<string, string>;
|
|
397
|
+
id: string;
|
|
398
398
|
type: "Product";
|
|
399
399
|
}>;
|
|
400
400
|
export declare const FPCatalogCategoryV2: z.ZodObject<z.extendShape<z.extendShape<{
|
|
@@ -463,10 +463,10 @@ export declare const FPCatalogCategoryV2: z.ZodObject<z.extendShape<z.extendShap
|
|
|
463
463
|
id: string;
|
|
464
464
|
type: "Image";
|
|
465
465
|
}> | null | undefined;
|
|
466
|
-
id: string;
|
|
467
466
|
title: {
|
|
468
467
|
default: string;
|
|
469
468
|
} & Record<string, string>;
|
|
469
|
+
id: string;
|
|
470
470
|
type: "Category";
|
|
471
471
|
products: Record<string, {
|
|
472
472
|
order?: number | null | undefined;
|
|
@@ -483,10 +483,10 @@ export declare const FPCatalogCategoryV2: z.ZodObject<z.extendShape<z.extendShap
|
|
|
483
483
|
id: string;
|
|
484
484
|
type: "Image";
|
|
485
485
|
}> | null | undefined;
|
|
486
|
-
id: string;
|
|
487
486
|
title: {
|
|
488
487
|
default: string;
|
|
489
488
|
} & Record<string, string>;
|
|
489
|
+
id: string;
|
|
490
490
|
type: "Category";
|
|
491
491
|
products: Record<string, {
|
|
492
492
|
order?: number | null | undefined;
|
|
@@ -570,10 +570,10 @@ export declare const FPCatalogToppingV2: z.ZodObject<z.extendShape<z.extendShape
|
|
|
570
570
|
id: string;
|
|
571
571
|
type: "Image";
|
|
572
572
|
}> | null | undefined;
|
|
573
|
-
id: string;
|
|
574
573
|
title: {
|
|
575
574
|
default: string;
|
|
576
575
|
} & Record<string, string>;
|
|
576
|
+
id: string;
|
|
577
577
|
type: "Topping";
|
|
578
578
|
quantity: {
|
|
579
579
|
minimum?: number | null | undefined;
|
|
@@ -595,10 +595,10 @@ export declare const FPCatalogToppingV2: z.ZodObject<z.extendShape<z.extendShape
|
|
|
595
595
|
id: string;
|
|
596
596
|
type: "Image";
|
|
597
597
|
}> | null | undefined;
|
|
598
|
-
id: string;
|
|
599
598
|
title: {
|
|
600
599
|
default: string;
|
|
601
600
|
} & Record<string, string>;
|
|
601
|
+
id: string;
|
|
602
602
|
type: "Topping";
|
|
603
603
|
quantity: {
|
|
604
604
|
minimum?: number | null | undefined;
|
|
@@ -748,10 +748,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
748
748
|
id: string;
|
|
749
749
|
type: "Image";
|
|
750
750
|
}> | null | undefined;
|
|
751
|
-
id: string;
|
|
752
751
|
title: {
|
|
753
752
|
default: string;
|
|
754
753
|
} & Record<string, string>;
|
|
754
|
+
id: string;
|
|
755
755
|
type: "Menu";
|
|
756
756
|
products: Record<string, {
|
|
757
757
|
id: string;
|
|
@@ -773,10 +773,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
773
773
|
id: string;
|
|
774
774
|
type: "Image";
|
|
775
775
|
}> | null | undefined;
|
|
776
|
-
id: string;
|
|
777
776
|
title: {
|
|
778
777
|
default: string;
|
|
779
778
|
} & Record<string, string>;
|
|
779
|
+
id: string;
|
|
780
780
|
type: "Menu";
|
|
781
781
|
products: Record<string, {
|
|
782
782
|
id: string;
|
|
@@ -904,10 +904,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
904
904
|
id: string;
|
|
905
905
|
type: "Topping";
|
|
906
906
|
}> | null | undefined;
|
|
907
|
-
id: string;
|
|
908
907
|
title: {
|
|
909
908
|
default: string;
|
|
910
909
|
} & Record<string, string>;
|
|
910
|
+
id: string;
|
|
911
911
|
type: "Product";
|
|
912
912
|
}, {
|
|
913
913
|
description?: ({
|
|
@@ -939,10 +939,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
939
939
|
id: string;
|
|
940
940
|
type: "Topping";
|
|
941
941
|
}> | null | undefined;
|
|
942
|
-
id: string;
|
|
943
942
|
title: {
|
|
944
943
|
default: string;
|
|
945
944
|
} & Record<string, string>;
|
|
945
|
+
id: string;
|
|
946
946
|
type: "Product";
|
|
947
947
|
}> | z.ZodObject<z.extendShape<z.extendShape<{
|
|
948
948
|
id: z.ZodString;
|
|
@@ -1010,10 +1010,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1010
1010
|
id: string;
|
|
1011
1011
|
type: "Image";
|
|
1012
1012
|
}> | null | undefined;
|
|
1013
|
-
id: string;
|
|
1014
1013
|
title: {
|
|
1015
1014
|
default: string;
|
|
1016
1015
|
} & Record<string, string>;
|
|
1016
|
+
id: string;
|
|
1017
1017
|
type: "Category";
|
|
1018
1018
|
products: Record<string, {
|
|
1019
1019
|
order?: number | null | undefined;
|
|
@@ -1030,10 +1030,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1030
1030
|
id: string;
|
|
1031
1031
|
type: "Image";
|
|
1032
1032
|
}> | null | undefined;
|
|
1033
|
-
id: string;
|
|
1034
1033
|
title: {
|
|
1035
1034
|
default: string;
|
|
1036
1035
|
} & Record<string, string>;
|
|
1036
|
+
id: string;
|
|
1037
1037
|
type: "Category";
|
|
1038
1038
|
products: Record<string, {
|
|
1039
1039
|
order?: number | null | undefined;
|
|
@@ -1116,10 +1116,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1116
1116
|
id: string;
|
|
1117
1117
|
type: "Image";
|
|
1118
1118
|
}> | null | undefined;
|
|
1119
|
-
id: string;
|
|
1120
1119
|
title: {
|
|
1121
1120
|
default: string;
|
|
1122
1121
|
} & Record<string, string>;
|
|
1122
|
+
id: string;
|
|
1123
1123
|
type: "Topping";
|
|
1124
1124
|
quantity: {
|
|
1125
1125
|
minimum?: number | null | undefined;
|
|
@@ -1141,10 +1141,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1141
1141
|
id: string;
|
|
1142
1142
|
type: "Image";
|
|
1143
1143
|
}> | null | undefined;
|
|
1144
|
-
id: string;
|
|
1145
1144
|
title: {
|
|
1146
1145
|
default: string;
|
|
1147
1146
|
} & Record<string, string>;
|
|
1147
|
+
id: string;
|
|
1148
1148
|
type: "Topping";
|
|
1149
1149
|
quantity: {
|
|
1150
1150
|
minimum?: number | null | undefined;
|
|
@@ -1226,10 +1226,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1226
1226
|
id: string;
|
|
1227
1227
|
type: "Image";
|
|
1228
1228
|
}> | null | undefined;
|
|
1229
|
-
id: string;
|
|
1230
1229
|
title: {
|
|
1231
1230
|
default: string;
|
|
1232
1231
|
} & Record<string, string>;
|
|
1232
|
+
id: string;
|
|
1233
1233
|
type: "Menu";
|
|
1234
1234
|
products: Record<string, {
|
|
1235
1235
|
id: string;
|
|
@@ -1266,10 +1266,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1266
1266
|
id: string;
|
|
1267
1267
|
type: "Topping";
|
|
1268
1268
|
}> | null | undefined;
|
|
1269
|
-
id: string;
|
|
1270
1269
|
title: {
|
|
1271
1270
|
default: string;
|
|
1272
1271
|
} & Record<string, string>;
|
|
1272
|
+
id: string;
|
|
1273
1273
|
type: "Product";
|
|
1274
1274
|
} | {
|
|
1275
1275
|
description?: ({
|
|
@@ -1281,10 +1281,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1281
1281
|
id: string;
|
|
1282
1282
|
type: "Image";
|
|
1283
1283
|
}> | null | undefined;
|
|
1284
|
-
id: string;
|
|
1285
1284
|
title: {
|
|
1286
1285
|
default: string;
|
|
1287
1286
|
} & Record<string, string>;
|
|
1287
|
+
id: string;
|
|
1288
1288
|
type: "Category";
|
|
1289
1289
|
products: Record<string, {
|
|
1290
1290
|
order?: number | null | undefined;
|
|
@@ -1301,10 +1301,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1301
1301
|
id: string;
|
|
1302
1302
|
type: "Image";
|
|
1303
1303
|
}> | null | undefined;
|
|
1304
|
-
id: string;
|
|
1305
1304
|
title: {
|
|
1306
1305
|
default: string;
|
|
1307
1306
|
} & Record<string, string>;
|
|
1307
|
+
id: string;
|
|
1308
1308
|
type: "Topping";
|
|
1309
1309
|
quantity: {
|
|
1310
1310
|
minimum?: number | null | undefined;
|
|
@@ -1348,10 +1348,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1348
1348
|
id: string;
|
|
1349
1349
|
type: "Image";
|
|
1350
1350
|
}> | null | undefined;
|
|
1351
|
-
id: string;
|
|
1352
1351
|
title: {
|
|
1353
1352
|
default: string;
|
|
1354
1353
|
} & Record<string, string>;
|
|
1354
|
+
id: string;
|
|
1355
1355
|
type: "Menu";
|
|
1356
1356
|
products: Record<string, {
|
|
1357
1357
|
id: string;
|
|
@@ -1388,10 +1388,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1388
1388
|
id: string;
|
|
1389
1389
|
type: "Topping";
|
|
1390
1390
|
}> | null | undefined;
|
|
1391
|
-
id: string;
|
|
1392
1391
|
title: {
|
|
1393
1392
|
default: string;
|
|
1394
1393
|
} & Record<string, string>;
|
|
1394
|
+
id: string;
|
|
1395
1395
|
type: "Product";
|
|
1396
1396
|
} | {
|
|
1397
1397
|
description?: ({
|
|
@@ -1403,10 +1403,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1403
1403
|
id: string;
|
|
1404
1404
|
type: "Image";
|
|
1405
1405
|
}> | null | undefined;
|
|
1406
|
-
id: string;
|
|
1407
1406
|
title: {
|
|
1408
1407
|
default: string;
|
|
1409
1408
|
} & Record<string, string>;
|
|
1409
|
+
id: string;
|
|
1410
1410
|
type: "Category";
|
|
1411
1411
|
products: Record<string, {
|
|
1412
1412
|
order?: number | null | undefined;
|
|
@@ -1423,10 +1423,10 @@ declare const FPCatalogV2: z.ZodObject<{
|
|
|
1423
1423
|
id: string;
|
|
1424
1424
|
type: "Image";
|
|
1425
1425
|
}> | null | undefined;
|
|
1426
|
-
id: string;
|
|
1427
1426
|
title: {
|
|
1428
1427
|
default: string;
|
|
1429
1428
|
} & Record<string, string>;
|
|
1429
|
+
id: string;
|
|
1430
1430
|
type: "Topping";
|
|
1431
1431
|
quantity: {
|
|
1432
1432
|
minimum?: number | null | undefined;
|
|
@@ -1540,10 +1540,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1540
1540
|
id: string;
|
|
1541
1541
|
type: "Image";
|
|
1542
1542
|
}> | null | undefined;
|
|
1543
|
-
id: string;
|
|
1544
1543
|
title: {
|
|
1545
1544
|
default: string;
|
|
1546
1545
|
} & Record<string, string>;
|
|
1546
|
+
id: string;
|
|
1547
1547
|
type: "Menu";
|
|
1548
1548
|
products: Record<string, {
|
|
1549
1549
|
id: string;
|
|
@@ -1565,10 +1565,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1565
1565
|
id: string;
|
|
1566
1566
|
type: "Image";
|
|
1567
1567
|
}> | null | undefined;
|
|
1568
|
-
id: string;
|
|
1569
1568
|
title: {
|
|
1570
1569
|
default: string;
|
|
1571
1570
|
} & Record<string, string>;
|
|
1571
|
+
id: string;
|
|
1572
1572
|
type: "Menu";
|
|
1573
1573
|
products: Record<string, {
|
|
1574
1574
|
id: string;
|
|
@@ -1696,10 +1696,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1696
1696
|
id: string;
|
|
1697
1697
|
type: "Topping";
|
|
1698
1698
|
}> | null | undefined;
|
|
1699
|
-
id: string;
|
|
1700
1699
|
title: {
|
|
1701
1700
|
default: string;
|
|
1702
1701
|
} & Record<string, string>;
|
|
1702
|
+
id: string;
|
|
1703
1703
|
type: "Product";
|
|
1704
1704
|
}, {
|
|
1705
1705
|
description?: ({
|
|
@@ -1731,10 +1731,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1731
1731
|
id: string;
|
|
1732
1732
|
type: "Topping";
|
|
1733
1733
|
}> | null | undefined;
|
|
1734
|
-
id: string;
|
|
1735
1734
|
title: {
|
|
1736
1735
|
default: string;
|
|
1737
1736
|
} & Record<string, string>;
|
|
1737
|
+
id: string;
|
|
1738
1738
|
type: "Product";
|
|
1739
1739
|
}> | z.ZodObject<z.extendShape<z.extendShape<{
|
|
1740
1740
|
id: z.ZodString;
|
|
@@ -1802,10 +1802,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1802
1802
|
id: string;
|
|
1803
1803
|
type: "Image";
|
|
1804
1804
|
}> | null | undefined;
|
|
1805
|
-
id: string;
|
|
1806
1805
|
title: {
|
|
1807
1806
|
default: string;
|
|
1808
1807
|
} & Record<string, string>;
|
|
1808
|
+
id: string;
|
|
1809
1809
|
type: "Category";
|
|
1810
1810
|
products: Record<string, {
|
|
1811
1811
|
order?: number | null | undefined;
|
|
@@ -1822,10 +1822,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1822
1822
|
id: string;
|
|
1823
1823
|
type: "Image";
|
|
1824
1824
|
}> | null | undefined;
|
|
1825
|
-
id: string;
|
|
1826
1825
|
title: {
|
|
1827
1826
|
default: string;
|
|
1828
1827
|
} & Record<string, string>;
|
|
1828
|
+
id: string;
|
|
1829
1829
|
type: "Category";
|
|
1830
1830
|
products: Record<string, {
|
|
1831
1831
|
order?: number | null | undefined;
|
|
@@ -1908,10 +1908,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1908
1908
|
id: string;
|
|
1909
1909
|
type: "Image";
|
|
1910
1910
|
}> | null | undefined;
|
|
1911
|
-
id: string;
|
|
1912
1911
|
title: {
|
|
1913
1912
|
default: string;
|
|
1914
1913
|
} & Record<string, string>;
|
|
1914
|
+
id: string;
|
|
1915
1915
|
type: "Topping";
|
|
1916
1916
|
quantity: {
|
|
1917
1917
|
minimum?: number | null | undefined;
|
|
@@ -1933,10 +1933,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
1933
1933
|
id: string;
|
|
1934
1934
|
type: "Image";
|
|
1935
1935
|
}> | null | undefined;
|
|
1936
|
-
id: string;
|
|
1937
1936
|
title: {
|
|
1938
1937
|
default: string;
|
|
1939
1938
|
} & Record<string, string>;
|
|
1939
|
+
id: string;
|
|
1940
1940
|
type: "Topping";
|
|
1941
1941
|
quantity: {
|
|
1942
1942
|
minimum?: number | null | undefined;
|
|
@@ -2018,10 +2018,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2018
2018
|
id: string;
|
|
2019
2019
|
type: "Image";
|
|
2020
2020
|
}> | null | undefined;
|
|
2021
|
-
id: string;
|
|
2022
2021
|
title: {
|
|
2023
2022
|
default: string;
|
|
2024
2023
|
} & Record<string, string>;
|
|
2024
|
+
id: string;
|
|
2025
2025
|
type: "Menu";
|
|
2026
2026
|
products: Record<string, {
|
|
2027
2027
|
id: string;
|
|
@@ -2058,10 +2058,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2058
2058
|
id: string;
|
|
2059
2059
|
type: "Topping";
|
|
2060
2060
|
}> | null | undefined;
|
|
2061
|
-
id: string;
|
|
2062
2061
|
title: {
|
|
2063
2062
|
default: string;
|
|
2064
2063
|
} & Record<string, string>;
|
|
2064
|
+
id: string;
|
|
2065
2065
|
type: "Product";
|
|
2066
2066
|
} | {
|
|
2067
2067
|
description?: ({
|
|
@@ -2073,10 +2073,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2073
2073
|
id: string;
|
|
2074
2074
|
type: "Image";
|
|
2075
2075
|
}> | null | undefined;
|
|
2076
|
-
id: string;
|
|
2077
2076
|
title: {
|
|
2078
2077
|
default: string;
|
|
2079
2078
|
} & Record<string, string>;
|
|
2079
|
+
id: string;
|
|
2080
2080
|
type: "Category";
|
|
2081
2081
|
products: Record<string, {
|
|
2082
2082
|
order?: number | null | undefined;
|
|
@@ -2093,10 +2093,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2093
2093
|
id: string;
|
|
2094
2094
|
type: "Image";
|
|
2095
2095
|
}> | null | undefined;
|
|
2096
|
-
id: string;
|
|
2097
2096
|
title: {
|
|
2098
2097
|
default: string;
|
|
2099
2098
|
} & Record<string, string>;
|
|
2099
|
+
id: string;
|
|
2100
2100
|
type: "Topping";
|
|
2101
2101
|
quantity: {
|
|
2102
2102
|
minimum?: number | null | undefined;
|
|
@@ -2140,10 +2140,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2140
2140
|
id: string;
|
|
2141
2141
|
type: "Image";
|
|
2142
2142
|
}> | null | undefined;
|
|
2143
|
-
id: string;
|
|
2144
2143
|
title: {
|
|
2145
2144
|
default: string;
|
|
2146
2145
|
} & Record<string, string>;
|
|
2146
|
+
id: string;
|
|
2147
2147
|
type: "Menu";
|
|
2148
2148
|
products: Record<string, {
|
|
2149
2149
|
id: string;
|
|
@@ -2180,10 +2180,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2180
2180
|
id: string;
|
|
2181
2181
|
type: "Topping";
|
|
2182
2182
|
}> | null | undefined;
|
|
2183
|
-
id: string;
|
|
2184
2183
|
title: {
|
|
2185
2184
|
default: string;
|
|
2186
2185
|
} & Record<string, string>;
|
|
2186
|
+
id: string;
|
|
2187
2187
|
type: "Product";
|
|
2188
2188
|
} | {
|
|
2189
2189
|
description?: ({
|
|
@@ -2195,10 +2195,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2195
2195
|
id: string;
|
|
2196
2196
|
type: "Image";
|
|
2197
2197
|
}> | null | undefined;
|
|
2198
|
-
id: string;
|
|
2199
2198
|
title: {
|
|
2200
2199
|
default: string;
|
|
2201
2200
|
} & Record<string, string>;
|
|
2201
|
+
id: string;
|
|
2202
2202
|
type: "Category";
|
|
2203
2203
|
products: Record<string, {
|
|
2204
2204
|
order?: number | null | undefined;
|
|
@@ -2215,10 +2215,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2215
2215
|
id: string;
|
|
2216
2216
|
type: "Image";
|
|
2217
2217
|
}> | null | undefined;
|
|
2218
|
-
id: string;
|
|
2219
2218
|
title: {
|
|
2220
2219
|
default: string;
|
|
2221
2220
|
} & Record<string, string>;
|
|
2221
|
+
id: string;
|
|
2222
2222
|
type: "Topping";
|
|
2223
2223
|
quantity: {
|
|
2224
2224
|
minimum?: number | null | undefined;
|
|
@@ -2266,10 +2266,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2266
2266
|
id: string;
|
|
2267
2267
|
type: "Image";
|
|
2268
2268
|
}> | null | undefined;
|
|
2269
|
-
id: string;
|
|
2270
2269
|
title: {
|
|
2271
2270
|
default: string;
|
|
2272
2271
|
} & Record<string, string>;
|
|
2272
|
+
id: string;
|
|
2273
2273
|
type: "Menu";
|
|
2274
2274
|
products: Record<string, {
|
|
2275
2275
|
id: string;
|
|
@@ -2306,10 +2306,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2306
2306
|
id: string;
|
|
2307
2307
|
type: "Topping";
|
|
2308
2308
|
}> | null | undefined;
|
|
2309
|
-
id: string;
|
|
2310
2309
|
title: {
|
|
2311
2310
|
default: string;
|
|
2312
2311
|
} & Record<string, string>;
|
|
2312
|
+
id: string;
|
|
2313
2313
|
type: "Product";
|
|
2314
2314
|
} | {
|
|
2315
2315
|
description?: ({
|
|
@@ -2321,10 +2321,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2321
2321
|
id: string;
|
|
2322
2322
|
type: "Image";
|
|
2323
2323
|
}> | null | undefined;
|
|
2324
|
-
id: string;
|
|
2325
2324
|
title: {
|
|
2326
2325
|
default: string;
|
|
2327
2326
|
} & Record<string, string>;
|
|
2327
|
+
id: string;
|
|
2328
2328
|
type: "Category";
|
|
2329
2329
|
products: Record<string, {
|
|
2330
2330
|
order?: number | null | undefined;
|
|
@@ -2341,10 +2341,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2341
2341
|
id: string;
|
|
2342
2342
|
type: "Image";
|
|
2343
2343
|
}> | null | undefined;
|
|
2344
|
-
id: string;
|
|
2345
2344
|
title: {
|
|
2346
2345
|
default: string;
|
|
2347
2346
|
} & Record<string, string>;
|
|
2347
|
+
id: string;
|
|
2348
2348
|
type: "Topping";
|
|
2349
2349
|
quantity: {
|
|
2350
2350
|
minimum?: number | null | undefined;
|
|
@@ -2392,10 +2392,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2392
2392
|
id: string;
|
|
2393
2393
|
type: "Image";
|
|
2394
2394
|
}> | null | undefined;
|
|
2395
|
-
id: string;
|
|
2396
2395
|
title: {
|
|
2397
2396
|
default: string;
|
|
2398
2397
|
} & Record<string, string>;
|
|
2398
|
+
id: string;
|
|
2399
2399
|
type: "Menu";
|
|
2400
2400
|
products: Record<string, {
|
|
2401
2401
|
id: string;
|
|
@@ -2432,10 +2432,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2432
2432
|
id: string;
|
|
2433
2433
|
type: "Topping";
|
|
2434
2434
|
}> | null | undefined;
|
|
2435
|
-
id: string;
|
|
2436
2435
|
title: {
|
|
2437
2436
|
default: string;
|
|
2438
2437
|
} & Record<string, string>;
|
|
2438
|
+
id: string;
|
|
2439
2439
|
type: "Product";
|
|
2440
2440
|
} | {
|
|
2441
2441
|
description?: ({
|
|
@@ -2447,10 +2447,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2447
2447
|
id: string;
|
|
2448
2448
|
type: "Image";
|
|
2449
2449
|
}> | null | undefined;
|
|
2450
|
-
id: string;
|
|
2451
2450
|
title: {
|
|
2452
2451
|
default: string;
|
|
2453
2452
|
} & Record<string, string>;
|
|
2453
|
+
id: string;
|
|
2454
2454
|
type: "Category";
|
|
2455
2455
|
products: Record<string, {
|
|
2456
2456
|
order?: number | null | undefined;
|
|
@@ -2467,10 +2467,10 @@ declare const FPMenuV2: z.ZodObject<{
|
|
|
2467
2467
|
id: string;
|
|
2468
2468
|
type: "Image";
|
|
2469
2469
|
}> | null | undefined;
|
|
2470
|
-
id: string;
|
|
2471
2470
|
title: {
|
|
2472
2471
|
default: string;
|
|
2473
2472
|
} & Record<string, string>;
|
|
2473
|
+
id: string;
|
|
2474
2474
|
type: "Topping";
|
|
2475
2475
|
quantity: {
|
|
2476
2476
|
minimum?: number | null | undefined;
|
|
@@ -31,16 +31,16 @@ export declare const FPCustomer: z.ZodObject<{
|
|
|
31
31
|
firstName?: string | null | undefined;
|
|
32
32
|
lastName?: string | null | undefined;
|
|
33
33
|
mobilePhone?: string | null | undefined;
|
|
34
|
-
id: string;
|
|
35
34
|
code: string;
|
|
35
|
+
id: string;
|
|
36
36
|
email: string;
|
|
37
37
|
mobilePhoneCountryCode: string;
|
|
38
38
|
}, {
|
|
39
39
|
firstName?: string | null | undefined;
|
|
40
40
|
lastName?: string | null | undefined;
|
|
41
41
|
mobilePhone?: string | null | undefined;
|
|
42
|
-
id: string;
|
|
43
42
|
code: string;
|
|
43
|
+
id: string;
|
|
44
44
|
email: string;
|
|
45
45
|
mobilePhoneCountryCode: string;
|
|
46
46
|
}>;
|
|
@@ -561,16 +561,16 @@ export declare const FPOrder: z.ZodObject<{
|
|
|
561
561
|
firstName?: string | null | undefined;
|
|
562
562
|
lastName?: string | null | undefined;
|
|
563
563
|
mobilePhone?: string | null | undefined;
|
|
564
|
-
id: string;
|
|
565
564
|
code: string;
|
|
565
|
+
id: string;
|
|
566
566
|
email: string;
|
|
567
567
|
mobilePhoneCountryCode: string;
|
|
568
568
|
}, {
|
|
569
569
|
firstName?: string | null | undefined;
|
|
570
570
|
lastName?: string | null | undefined;
|
|
571
571
|
mobilePhone?: string | null | undefined;
|
|
572
|
-
id: string;
|
|
573
572
|
code: string;
|
|
573
|
+
id: string;
|
|
574
574
|
email: string;
|
|
575
575
|
mobilePhoneCountryCode: string;
|
|
576
576
|
}>;
|
|
@@ -1066,8 +1066,8 @@ export declare const FPOrder: z.ZodObject<{
|
|
|
1066
1066
|
firstName?: string | null | undefined;
|
|
1067
1067
|
lastName?: string | null | undefined;
|
|
1068
1068
|
mobilePhone?: string | null | undefined;
|
|
1069
|
-
id: string;
|
|
1070
1069
|
code: string;
|
|
1070
|
+
id: string;
|
|
1071
1071
|
email: string;
|
|
1072
1072
|
mobilePhoneCountryCode: string;
|
|
1073
1073
|
};
|
|
@@ -1207,8 +1207,8 @@ export declare const FPOrder: z.ZodObject<{
|
|
|
1207
1207
|
firstName?: string | null | undefined;
|
|
1208
1208
|
lastName?: string | null | undefined;
|
|
1209
1209
|
mobilePhone?: string | null | undefined;
|
|
1210
|
-
id: string;
|
|
1211
1210
|
code: string;
|
|
1211
|
+
id: string;
|
|
1212
1212
|
email: string;
|
|
1213
1213
|
mobilePhoneCountryCode: string;
|
|
1214
1214
|
};
|
|
@@ -1292,16 +1292,16 @@ export declare const FdoFoodpandaOrder: z.ZodObject<{
|
|
|
1292
1292
|
firstName?: string | null | undefined;
|
|
1293
1293
|
lastName?: string | null | undefined;
|
|
1294
1294
|
mobilePhone?: string | null | undefined;
|
|
1295
|
-
id: string;
|
|
1296
1295
|
code: string;
|
|
1296
|
+
id: string;
|
|
1297
1297
|
email: string;
|
|
1298
1298
|
mobilePhoneCountryCode: string;
|
|
1299
1299
|
}, {
|
|
1300
1300
|
firstName?: string | null | undefined;
|
|
1301
1301
|
lastName?: string | null | undefined;
|
|
1302
1302
|
mobilePhone?: string | null | undefined;
|
|
1303
|
-
id: string;
|
|
1304
1303
|
code: string;
|
|
1304
|
+
id: string;
|
|
1305
1305
|
email: string;
|
|
1306
1306
|
mobilePhoneCountryCode: string;
|
|
1307
1307
|
}>;
|
|
@@ -1797,8 +1797,8 @@ export declare const FdoFoodpandaOrder: z.ZodObject<{
|
|
|
1797
1797
|
firstName?: string | null | undefined;
|
|
1798
1798
|
lastName?: string | null | undefined;
|
|
1799
1799
|
mobilePhone?: string | null | undefined;
|
|
1800
|
-
id: string;
|
|
1801
1800
|
code: string;
|
|
1801
|
+
id: string;
|
|
1802
1802
|
email: string;
|
|
1803
1803
|
mobilePhoneCountryCode: string;
|
|
1804
1804
|
};
|
|
@@ -1938,8 +1938,8 @@ export declare const FdoFoodpandaOrder: z.ZodObject<{
|
|
|
1938
1938
|
firstName?: string | null | undefined;
|
|
1939
1939
|
lastName?: string | null | undefined;
|
|
1940
1940
|
mobilePhone?: string | null | undefined;
|
|
1941
|
-
id: string;
|
|
1942
1941
|
code: string;
|
|
1942
|
+
id: string;
|
|
1943
1943
|
email: string;
|
|
1944
1944
|
mobilePhoneCountryCode: string;
|
|
1945
1945
|
};
|
|
@@ -2086,8 +2086,8 @@ export declare const FdoFoodpandaOrder: z.ZodObject<{
|
|
|
2086
2086
|
firstName?: string | null | undefined;
|
|
2087
2087
|
lastName?: string | null | undefined;
|
|
2088
2088
|
mobilePhone?: string | null | undefined;
|
|
2089
|
-
id: string;
|
|
2090
2089
|
code: string;
|
|
2090
|
+
id: string;
|
|
2091
2091
|
email: string;
|
|
2092
2092
|
mobilePhoneCountryCode: string;
|
|
2093
2093
|
};
|
|
@@ -2235,8 +2235,8 @@ export declare const FdoFoodpandaOrder: z.ZodObject<{
|
|
|
2235
2235
|
firstName?: string | null | undefined;
|
|
2236
2236
|
lastName?: string | null | undefined;
|
|
2237
2237
|
mobilePhone?: string | null | undefined;
|
|
2238
|
-
id: string;
|
|
2239
2238
|
code: string;
|
|
2239
|
+
id: string;
|
|
2240
2240
|
email: string;
|
|
2241
2241
|
mobilePhoneCountryCode: string;
|
|
2242
2242
|
};
|
|
@@ -2926,16 +2926,16 @@ declare const FPOrderDetailRes: z.ZodObject<z.extendShape<{
|
|
|
2926
2926
|
firstName?: string | null | undefined;
|
|
2927
2927
|
lastName?: string | null | undefined;
|
|
2928
2928
|
mobilePhone?: string | null | undefined;
|
|
2929
|
-
id: string;
|
|
2930
2929
|
code: string;
|
|
2930
|
+
id: string;
|
|
2931
2931
|
email: string;
|
|
2932
2932
|
mobilePhoneCountryCode: string;
|
|
2933
2933
|
}, {
|
|
2934
2934
|
firstName?: string | null | undefined;
|
|
2935
2935
|
lastName?: string | null | undefined;
|
|
2936
2936
|
mobilePhone?: string | null | undefined;
|
|
2937
|
-
id: string;
|
|
2938
2937
|
code: string;
|
|
2938
|
+
id: string;
|
|
2939
2939
|
email: string;
|
|
2940
2940
|
mobilePhoneCountryCode: string;
|
|
2941
2941
|
}>;
|
|
@@ -3436,8 +3436,8 @@ declare const FPOrderDetailRes: z.ZodObject<z.extendShape<{
|
|
|
3436
3436
|
firstName?: string | null | undefined;
|
|
3437
3437
|
lastName?: string | null | undefined;
|
|
3438
3438
|
mobilePhone?: string | null | undefined;
|
|
3439
|
-
id: string;
|
|
3440
3439
|
code: string;
|
|
3440
|
+
id: string;
|
|
3441
3441
|
email: string;
|
|
3442
3442
|
mobilePhoneCountryCode: string;
|
|
3443
3443
|
};
|
|
@@ -3579,8 +3579,8 @@ declare const FPOrderDetailRes: z.ZodObject<z.extendShape<{
|
|
|
3579
3579
|
firstName?: string | null | undefined;
|
|
3580
3580
|
lastName?: string | null | undefined;
|
|
3581
3581
|
mobilePhone?: string | null | undefined;
|
|
3582
|
-
id: string;
|
|
3583
3582
|
code: string;
|
|
3583
|
+
id: string;
|
|
3584
3584
|
email: string;
|
|
3585
3585
|
mobilePhoneCountryCode: string;
|
|
3586
3586
|
};
|