@pisell/private-materials 6.0.23 → 6.0.25

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.
Files changed (677) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +1 -1
  6. package/build/lowcode/preview.js +29 -13
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +12 -27
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +18 -33
  11. package/es/businessModel/SalesModel/Sales/index.d.ts +24 -0
  12. package/es/businessModel/SalesModel/Sales/index.js +69 -0
  13. package/es/businessModel/SalesModel/hooks/index.d.ts +1 -0
  14. package/es/businessModel/SalesModel/hooks/index.js +7 -0
  15. package/es/businessModel/SalesModel/index.d.ts +4 -0
  16. package/es/businessModel/SalesModel/index.js +18 -0
  17. package/es/businessModel/index.d.ts +0 -0
  18. package/es/businessModel/index.js +0 -0
  19. package/es/components/Sales/Cart/index.d.ts +53 -0
  20. package/es/components/Sales/Cart/index.js +590 -0
  21. package/es/components/Sales/Cart/serve.d.ts +2 -0
  22. package/es/components/Sales/Cart/serve.js +11 -0
  23. package/es/components/Sales/Cart/types.d.ts +19 -0
  24. package/es/components/Sales/Cart/types.js +1 -0
  25. package/es/components/Sales/Checkout/index.d.ts +33 -0
  26. package/es/components/Sales/Checkout/index.js +152 -0
  27. package/es/components/Sales/Checkout/serve.d.ts +2 -0
  28. package/es/components/Sales/Checkout/serve.js +11 -0
  29. package/es/components/Sales/Checkout/utils.d.ts +27 -0
  30. package/es/components/Sales/Checkout/utils.js +104 -0
  31. package/es/components/Sales/Customer/index.d.ts +24 -0
  32. package/es/components/Sales/Customer/index.js +59 -0
  33. package/es/components/Sales/Event/Detail.d.ts +27 -0
  34. package/es/components/Sales/Event/Detail.js +246 -0
  35. package/es/components/Sales/Event/index.d.ts +30 -0
  36. package/es/components/Sales/Event/index.js +123 -0
  37. package/es/components/Sales/Event/serve.d.ts +26 -0
  38. package/es/components/Sales/Event/serve.js +33 -0
  39. package/es/components/Sales/Holder/index.d.ts +33 -0
  40. package/es/components/Sales/Holder/index.js +229 -0
  41. package/es/components/Sales/Holder/serve.d.ts +8 -0
  42. package/es/components/Sales/Holder/serve.js +20 -0
  43. package/es/components/Sales/Init/index.d.ts +24 -0
  44. package/es/components/Sales/Init/index.js +117 -0
  45. package/es/components/Sales/Init/serve.d.ts +3 -0
  46. package/es/components/Sales/Init/serve.js +11 -0
  47. package/es/components/Sales/Resource/index.d.ts +26 -0
  48. package/es/components/Sales/Resource/index.js +128 -0
  49. package/es/components/Sales/Resource/serve.d.ts +5 -0
  50. package/es/components/Sales/Resource/serve.js +8 -0
  51. package/es/components/Sales/Step/index.d.ts +37 -0
  52. package/es/components/Sales/Step/index.js +195 -0
  53. package/es/components/Sales/Summary/index.d.ts +25 -0
  54. package/es/components/Sales/Summary/index.js +50 -0
  55. package/es/components/Sales/Summary/serve.d.ts +0 -0
  56. package/es/components/Sales/Summary/serve.js +0 -0
  57. package/es/components/Sales/Summary/utils.d.ts +36 -0
  58. package/es/components/Sales/Summary/utils.js +63 -0
  59. package/es/components/Sales/hooks/index.d.ts +1 -0
  60. package/es/components/Sales/hooks/index.js +3 -0
  61. package/es/components/Sales/index.d.ts +20 -0
  62. package/es/components/Sales/index.js +26 -0
  63. package/es/components/Sales/utils/index.d.ts +1 -0
  64. package/es/components/Sales/utils/index.js +18 -0
  65. package/es/components/booking/components/customSelect/index.d.ts +1 -0
  66. package/es/components/booking/components/customSelect/index.js +6 -2
  67. package/es/components/booking/components/footer/AppointmentProductModal/index.d.ts +3 -0
  68. package/es/components/booking/components/footer/AppointmentProductModal/index.js +38 -0
  69. package/es/components/booking/components/footer/AppointmentProductModal/index.less +0 -0
  70. package/es/components/booking/components/footer/amount.js +46 -22
  71. package/es/components/booking/components/footer/index.js +116 -79
  72. package/es/components/booking/components/footer/serve.d.ts +2 -0
  73. package/es/components/booking/components/footer/serve.js +44 -0
  74. package/es/components/booking/components/footer/utils.js +280 -35
  75. package/es/components/booking/info/Provider.d.ts +0 -0
  76. package/es/components/booking/info/Provider.js +54 -0
  77. package/es/components/booking/info/addServiceVariant/index.js +8 -1
  78. package/es/components/booking/info/clientVariant/vertical/SelectDrawer.d.ts +1 -0
  79. package/es/components/booking/info/clientVariant/vertical/SelectDrawer.js +14 -13
  80. package/es/components/booking/info/clientVariant/vertical/index.js +131 -15
  81. package/es/components/booking/info/dateRange/index.d.ts +4 -0
  82. package/es/components/booking/info/dateRange/index.js +98 -0
  83. package/es/components/booking/info/dateRange/index.less +21 -0
  84. package/es/components/booking/info/main.js +44 -28
  85. package/es/components/booking/info/model.js +3 -0
  86. package/es/components/booking/info/pet/ChangePetModal/index.d.ts +4 -0
  87. package/es/components/booking/info/pet/ChangePetModal/index.js +134 -0
  88. package/es/components/booking/info/pet/ChangePetModal/index.less +4 -0
  89. package/es/components/booking/info/pet/index.d.ts +1 -1
  90. package/es/components/booking/info/pet/index.js +93 -34
  91. package/es/components/booking/info/service/addService/index.d.ts +0 -1
  92. package/es/components/booking/info/service/addService/index.js +195 -104
  93. package/es/components/booking/info/service/addService/index.less +13 -3
  94. package/es/components/booking/info/service/addService/utils.d.ts +12 -2
  95. package/es/components/booking/info/service/addService/utils.js +103 -26
  96. package/es/components/booking/info/service/addTimeModal/index.d.ts +0 -1
  97. package/es/components/booking/info/service/editService/BookingList/index.d.ts +4 -0
  98. package/es/components/booking/info/service/editService/BookingList/index.js +39 -0
  99. package/es/components/booking/info/service/editService/EditTabs/index.d.ts +3 -0
  100. package/es/components/booking/info/service/editService/EditTabs/index.js +35 -0
  101. package/es/components/booking/info/service/editService/index.js +449 -141
  102. package/es/components/booking/info/service/editService/index.less +18 -13
  103. package/es/components/booking/info/service/serve.d.ts +10 -0
  104. package/es/components/booking/info/service/serve.js +28 -0
  105. package/es/components/booking/info/service/serviceManager/distributeDiscount.d.ts +11 -0
  106. package/es/components/booking/info/service/serviceManager/distributeDiscount.js +55 -0
  107. package/es/components/booking/info/service/serviceManager/index.d.ts +20 -0
  108. package/es/components/booking/info/service/serviceManager/index.js +281 -0
  109. package/es/components/booking/info/service/serviceManager/utils.d.ts +0 -0
  110. package/es/components/booking/info/service/serviceManager/utils.js +0 -0
  111. package/es/components/booking/info/service2/Group/utils.d.ts +14 -0
  112. package/es/components/booking/info/service2/Group/utils.js +146 -0
  113. package/es/components/booking/info/service2/Lists.d.ts +3 -0
  114. package/es/components/booking/info/service2/Lists.js +153 -0
  115. package/es/components/booking/info/service2/hooks/useSelectPet.d.ts +6 -0
  116. package/es/components/booking/info/service2/hooks/useSelectPet.js +54 -0
  117. package/es/components/booking/info/service2/index.d.ts +6 -0
  118. package/es/components/booking/info/service2/index.js +57 -0
  119. package/es/components/booking/info/service2/status.d.ts +31 -0
  120. package/es/components/booking/info/service2/status.js +78 -0
  121. package/es/components/booking/info/service2/utils.d.ts +240 -0
  122. package/es/components/booking/info/service2/utils.js +1077 -0
  123. package/es/components/booking/info/utils.d.ts +20 -0
  124. package/es/components/booking/info/utils.js +38 -1
  125. package/es/components/booking/info2/utilsByBooking.js +0 -1
  126. package/es/components/booking/locales.d.ts +66 -0
  127. package/es/components/booking/locales.js +81 -3
  128. package/es/components/booking/materiels/contacts/index.d.ts +1 -0
  129. package/es/components/booking/materiels/holder/index.d.ts +7 -0
  130. package/es/components/booking/materiels/holder/index.js +51 -0
  131. package/es/components/booking/model.d.ts +5 -1
  132. package/es/components/booking/model.js +4 -2
  133. package/es/components/booking/utils.d.ts +12 -3
  134. package/es/components/booking/utils.js +143 -26
  135. package/es/components/eftpos/hooks.d.ts +4 -4
  136. package/es/components/eftpos/index.d.ts +1 -0
  137. package/es/components/eftposPay/component/fail/failCustom.d.ts +0 -1
  138. package/es/components/eftposPay/component/fail/index.d.ts +0 -1
  139. package/es/components/eftposPay/component/fail/unknow.d.ts +0 -1
  140. package/es/components/eftposPay/component/step/index.d.ts +6 -6
  141. package/es/components/eftposPay/component/step/step.d.ts +4 -4
  142. package/es/components/eftposPay/hooks.d.ts +1 -1
  143. package/es/components/eftposPay/pay.d.ts +0 -1
  144. package/es/components/eftposPay/tyro/hooks.d.ts +2 -2
  145. package/es/components/eftposPay/windcave/helper.d.ts +1 -1
  146. package/es/components/eventBooking/assets/alert-circle.png +0 -0
  147. package/es/components/eventBooking/assets/calendar-heart.svg +5 -0
  148. package/es/components/eventBooking/assets/compass.svg +13 -0
  149. package/es/components/eventBooking/assets/image.svg +5 -0
  150. package/es/components/eventBooking/assets/phone.svg +5 -0
  151. package/es/components/eventBooking/assets/shopping-cart.svg +10 -0
  152. package/es/components/eventBooking/components/ErrorTip/index.d.ts +3 -0
  153. package/es/components/eventBooking/components/ErrorTip/index.js +14 -0
  154. package/es/components/eventBooking/components/ErrorTip/index.less +51 -0
  155. package/es/components/eventBooking/components/OpenCard/index.d.ts +4 -0
  156. package/es/components/eventBooking/components/OpenCard/index.js +65 -0
  157. package/es/components/eventBooking/components/OpenCard/index.less +52 -0
  158. package/es/components/eventBooking/components/Provider/Cart/ContinueButton/index.d.ts +3 -0
  159. package/es/components/eventBooking/components/Provider/Cart/ContinueButton/index.js +274 -0
  160. package/es/components/eventBooking/components/Provider/Cart/ContinueButton/index.less +0 -0
  161. package/es/components/eventBooking/components/Provider/Cart/Item/Total.d.ts +3 -0
  162. package/es/components/eventBooking/components/Provider/Cart/Item/Total.js +46 -0
  163. package/es/components/eventBooking/components/Provider/Cart/Item/index.d.ts +3 -0
  164. package/es/components/eventBooking/components/Provider/Cart/Item/index.js +63 -0
  165. package/es/components/eventBooking/components/Provider/Cart/Item/index.less +87 -0
  166. package/es/components/eventBooking/components/Provider/Cart/index.d.ts +3 -0
  167. package/es/components/eventBooking/components/Provider/Cart/index.js +30 -0
  168. package/es/components/eventBooking/components/Provider/Cart/index.less +2 -0
  169. package/es/components/eventBooking/components/Provider/Content/index.d.ts +4 -0
  170. package/es/components/eventBooking/components/Provider/Content/index.js +65 -0
  171. package/es/components/eventBooking/components/Provider/Content/index.less +31 -0
  172. package/es/components/eventBooking/components/Provider/EmptyHolderModal/index.d.ts +3 -0
  173. package/es/components/eventBooking/components/Provider/EmptyHolderModal/index.js +34 -0
  174. package/es/components/eventBooking/components/Provider/EmptyHolderModal/index.less +17 -0
  175. package/es/components/eventBooking/components/Provider/Event/index.d.ts +3 -0
  176. package/es/components/eventBooking/components/Provider/Event/index.js +93 -0
  177. package/es/components/eventBooking/components/Provider/Event/index.less +20 -0
  178. package/es/components/eventBooking/components/Provider/Footer/index.d.ts +3 -0
  179. package/es/components/eventBooking/components/Provider/Footer/index.js +76 -0
  180. package/es/components/eventBooking/components/Provider/Footer/index.less +64 -0
  181. package/es/components/eventBooking/components/Provider/Header/index.d.ts +4 -0
  182. package/es/components/eventBooking/components/Provider/Header/index.js +75 -0
  183. package/es/components/eventBooking/components/Provider/Header/index.less +2 -0
  184. package/es/components/eventBooking/components/Provider/Information/index.d.ts +3 -0
  185. package/es/components/eventBooking/components/Provider/Information/index.js +178 -0
  186. package/es/components/eventBooking/components/Provider/Information/index.less +92 -0
  187. package/es/components/eventBooking/components/Provider/InformationOptionsModal/index.d.ts +3 -0
  188. package/es/components/eventBooking/components/Provider/InformationOptionsModal/index.js +34 -0
  189. package/es/components/eventBooking/components/Provider/InformationOptionsModal/index.less +27 -0
  190. package/es/components/eventBooking/components/Provider/OrderProductModal/index.d.ts +3 -0
  191. package/es/components/eventBooking/components/Provider/OrderProductModal/index.js +27 -0
  192. package/es/components/eventBooking/components/Provider/OrderProductModal/index.less +32 -0
  193. package/es/components/eventBooking/components/Provider/RemoveOptionConfirmModal.d.ts +2 -0
  194. package/es/components/eventBooking/components/Provider/RemoveOptionConfirmModal.js +31 -0
  195. package/es/components/eventBooking/components/Provider/Resource/index.d.ts +3 -0
  196. package/es/components/eventBooking/components/Provider/Resource/index.js +79 -0
  197. package/es/components/eventBooking/components/Provider/Resource/index.less +46 -0
  198. package/es/components/eventBooking/components/Provider/SelectHolderModal.d.ts +3 -0
  199. package/es/components/eventBooking/components/Provider/SelectHolderModal.js +90 -0
  200. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.d.ts +4 -0
  201. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.js +26 -0
  202. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.less +25 -0
  203. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.d.ts +10 -0
  204. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.js +65 -0
  205. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.less +32 -0
  206. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.d.ts +3 -0
  207. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.js +69 -0
  208. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.less +12 -0
  209. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.d.ts +12 -0
  210. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.js +152 -0
  211. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.less +35 -0
  212. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +4 -0
  213. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.js +20 -0
  214. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.less +28 -0
  215. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +5 -0
  216. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.js +38 -0
  217. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.less +87 -0
  218. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.d.ts +4 -0
  219. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.js +28 -0
  220. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.less +25 -0
  221. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.d.ts +4 -0
  222. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.js +269 -0
  223. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.less +119 -0
  224. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/state.d.ts +63 -0
  225. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/state.js +256 -0
  226. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.d.ts +4 -0
  227. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.js +173 -0
  228. package/es/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.less +4 -0
  229. package/es/components/eventBooking/components/bookingAvailabilityCalendar/index.d.ts +14 -0
  230. package/es/components/eventBooking/components/bookingAvailabilityCalendar/index.js +36 -0
  231. package/es/components/eventBooking/components/bookingAvailabilityCalendar/index.less +2 -0
  232. package/es/components/eventBooking/components/bookingAvailabilityCalendar/utils.d.ts +34 -0
  233. package/es/components/eventBooking/components/bookingAvailabilityCalendar/utils.js +70 -0
  234. package/es/components/eventBooking/components/bookingDetailModal/components/BookingOptions.d.ts +2 -0
  235. package/es/components/eventBooking/components/bookingDetailModal/components/BookingOptions.js +38 -0
  236. package/es/components/eventBooking/components/bookingDetailModal/components/Resource.d.ts +3 -0
  237. package/es/components/eventBooking/components/bookingDetailModal/components/Resource.js +33 -0
  238. package/es/components/eventBooking/components/bookingDetailModal/components/Schedule.d.ts +3 -0
  239. package/es/components/eventBooking/components/bookingDetailModal/components/Schedule.js +30 -0
  240. package/es/components/eventBooking/components/bookingDetailModal/index.d.ts +7 -0
  241. package/es/components/eventBooking/components/bookingDetailModal/index.js +337 -0
  242. package/es/components/eventBooking/components/bookingDetailModal/index.less +82 -0
  243. package/es/components/eventBooking/components/bookingServiceList/index.d.ts +17 -0
  244. package/es/components/eventBooking/components/bookingServiceList/index.js +52 -0
  245. package/es/components/eventBooking/components/bookingServiceList/index.less +6 -0
  246. package/es/components/eventBooking/components/eventCard/index.d.ts +14 -0
  247. package/es/components/eventBooking/components/eventCard/index.js +116 -0
  248. package/es/components/eventBooking/components/eventCard/index.less +81 -0
  249. package/es/components/eventBooking/components/productCard/index.d.ts +16 -0
  250. package/es/components/eventBooking/components/productCard/index.js +79 -0
  251. package/es/components/eventBooking/components/productCard/index.less +60 -0
  252. package/es/components/eventBooking/components/progressBar/index.d.ts +16 -0
  253. package/es/components/eventBooking/components/progressBar/index.js +93 -0
  254. package/es/components/eventBooking/components/progressBar/index.less +15 -0
  255. package/es/components/eventBooking/components/resourceDisplay/index.d.ts +23 -0
  256. package/es/components/eventBooking/components/resourceDisplay/index.js +148 -0
  257. package/es/components/eventBooking/components/resourceDisplay/index.less +95 -0
  258. package/es/components/eventBooking/components/resourceUsability/index.d.ts +12 -0
  259. package/es/components/eventBooking/components/resourceUsability/index.js +44 -0
  260. package/es/components/eventBooking/components/resourceUsability/index.less +40 -0
  261. package/es/components/eventBooking/components/scheduleCalendar/ProductItem/index.d.ts +10 -0
  262. package/es/components/eventBooking/components/scheduleCalendar/ProductItem/index.js +37 -0
  263. package/es/components/eventBooking/components/scheduleCalendar/ProductItem/index.less +58 -0
  264. package/es/components/eventBooking/components/scheduleCalendar/calendarItem.d.ts +11 -0
  265. package/es/components/eventBooking/components/scheduleCalendar/calendarItem.js +127 -0
  266. package/es/components/eventBooking/components/scheduleCalendar/index.d.ts +13 -0
  267. package/es/components/eventBooking/components/scheduleCalendar/index.js +142 -0
  268. package/es/components/eventBooking/components/scheduleCalendar/index.less +222 -0
  269. package/es/components/eventBooking/components/selectHolder/index.d.ts +22 -0
  270. package/es/components/eventBooking/components/selectHolder/index.js +118 -0
  271. package/es/components/eventBooking/components/selectHolder/index.less +70 -0
  272. package/es/components/eventBooking/components/timeResourceSelector/index.d.ts +20 -0
  273. package/es/components/eventBooking/components/timeResourceSelector/index.js +168 -0
  274. package/es/components/eventBooking/components/timeResourceSelector/index.less +74 -0
  275. package/es/components/eventBooking/index.d.ts +4 -0
  276. package/es/components/eventBooking/index.js +58 -0
  277. package/es/components/eventBooking/index.less +22 -0
  278. package/es/components/eventBooking/locales.d.ts +216 -0
  279. package/es/components/eventBooking/locales.js +251 -0
  280. package/es/components/eventBooking/mock.d.ts +627 -0
  281. package/es/components/eventBooking/mock.js +1172 -0
  282. package/es/components/eventBooking/status.d.ts +21 -0
  283. package/es/components/eventBooking/status.js +51 -0
  284. package/es/components/eventBooking/type.d.ts +17 -0
  285. package/es/components/eventBooking/type.js +1 -0
  286. package/es/components/eventBooking/utils.d.ts +45 -0
  287. package/es/components/eventBooking/utils.js +99 -0
  288. package/es/components/login/index.d.ts +1 -0
  289. package/es/components/productExtension/index.d.ts +1 -0
  290. package/es/components/shoppingCart/Provider.d.ts +3 -0
  291. package/es/components/shoppingCart/Provider.js +86 -0
  292. package/es/components/shoppingCart/components/Cart/Product.d.ts +3 -0
  293. package/es/components/shoppingCart/components/Cart/Product.js +71 -0
  294. package/es/components/shoppingCart/components/Cart/index.d.ts +3 -0
  295. package/es/components/shoppingCart/components/Cart/index.js +73 -0
  296. package/es/components/shoppingCart/components/Cart/index.less +68 -0
  297. package/es/components/shoppingCart/components/Empty/index.d.ts +4 -0
  298. package/es/components/shoppingCart/components/Empty/index.js +15 -0
  299. package/es/components/shoppingCart/components/Empty/index.less +19 -0
  300. package/es/components/shoppingCart/components/Render/index.d.ts +4 -0
  301. package/es/components/shoppingCart/components/Render/index.js +70 -0
  302. package/es/components/shoppingCart/components/Render/index.less +2 -0
  303. package/es/components/shoppingCart/components/SelectHolderModal/index.d.ts +4 -0
  304. package/es/components/shoppingCart/components/SelectHolderModal/index.js +132 -0
  305. package/es/components/shoppingCart/components/SelectHolderModal/index.less +32 -0
  306. package/es/components/shoppingCart/hooks/useAddService.d.ts +2 -0
  307. package/es/components/shoppingCart/hooks/useAddService.js +23 -0
  308. package/es/components/shoppingCart/hooks/useClearCart.d.ts +2 -0
  309. package/es/components/shoppingCart/hooks/useClearCart.js +59 -0
  310. package/es/components/shoppingCart/hooks/useContext.d.ts +1 -0
  311. package/es/components/shoppingCart/hooks/useContext.js +5 -0
  312. package/es/components/shoppingCart/index.d.ts +4 -0
  313. package/es/components/shoppingCart/index.js +24 -0
  314. package/es/components/shoppingCart/locales.d.ts +33 -0
  315. package/es/components/shoppingCart/locales.js +38 -0
  316. package/es/components/shoppingCart/mock.d.ts +40 -0
  317. package/es/components/shoppingCart/mock.js +40 -0
  318. package/es/components/shoppingCart/status.d.ts +2 -0
  319. package/es/components/shoppingCart/status.js +22 -0
  320. package/es/components/shoppingCart/type.d.ts +40 -0
  321. package/es/components/shoppingCart/type.js +1 -0
  322. package/es/components/shoppingCart/utils.d.ts +63 -0
  323. package/es/components/shoppingCart/utils.js +116 -0
  324. package/es/components/tabProduct/tabs/index.less +13 -3
  325. package/es/components/taxSelect/index.d.ts +1 -0
  326. package/es/components/wallet/hooks/useWalletCard.d.ts +1 -0
  327. package/es/components/workSpaceList/components/AppearanceEdit/IconPanel.js +1 -1
  328. package/es/components/workSpaceList/components/AppearanceEdit/constants.js +11 -1
  329. package/es/components/workSpaceList/components/Card/constants.js +2 -1
  330. package/es/components/workSpaceList/components/EditableString/index.js +1 -1
  331. package/es/components/workSpaceList/components/SearchBar/index.js +4 -1
  332. package/es/components/workSpaceList/components/SearchWorkspaceAndBase/index.js +1 -1
  333. package/es/components/workSpaceList/components/Sort/index.js +1 -1
  334. package/es/components/workSpaceList/components/WorkspaceItem/index.js +1 -1
  335. package/es/components/workSpaceList/server.d.ts +3 -3
  336. package/es/index.d.ts +13 -0
  337. package/es/index.js +14 -1
  338. package/lib/businessModel/SalesModel/Sales/index.d.ts +24 -0
  339. package/lib/businessModel/SalesModel/Sales/index.js +104 -0
  340. package/lib/businessModel/SalesModel/hooks/index.d.ts +1 -0
  341. package/lib/businessModel/SalesModel/hooks/index.js +34 -0
  342. package/lib/businessModel/SalesModel/index.d.ts +4 -0
  343. package/lib/businessModel/SalesModel/index.js +51 -0
  344. package/lib/businessModel/index.d.ts +0 -0
  345. package/lib/businessModel/index.js +0 -0
  346. package/lib/components/Sales/Cart/index.d.ts +53 -0
  347. package/lib/components/Sales/Cart/index.js +500 -0
  348. package/lib/components/Sales/Cart/serve.d.ts +2 -0
  349. package/lib/components/Sales/Cart/serve.js +37 -0
  350. package/lib/components/Sales/Cart/types.d.ts +19 -0
  351. package/lib/components/Sales/Cart/types.js +17 -0
  352. package/lib/components/Sales/Checkout/index.d.ts +33 -0
  353. package/lib/components/Sales/Checkout/index.js +130 -0
  354. package/lib/components/Sales/Checkout/serve.d.ts +2 -0
  355. package/lib/components/Sales/Checkout/serve.js +37 -0
  356. package/lib/components/Sales/Checkout/utils.d.ts +27 -0
  357. package/lib/components/Sales/Checkout/utils.js +88 -0
  358. package/lib/components/Sales/Customer/index.d.ts +24 -0
  359. package/lib/components/Sales/Customer/index.js +90 -0
  360. package/lib/components/Sales/Event/Detail.d.ts +27 -0
  361. package/lib/components/Sales/Event/Detail.js +224 -0
  362. package/lib/components/Sales/Event/index.d.ts +30 -0
  363. package/lib/components/Sales/Event/index.js +136 -0
  364. package/lib/components/Sales/Event/serve.d.ts +26 -0
  365. package/lib/components/Sales/Event/serve.js +54 -0
  366. package/lib/components/Sales/Holder/index.d.ts +33 -0
  367. package/lib/components/Sales/Holder/index.js +210 -0
  368. package/lib/components/Sales/Holder/serve.d.ts +8 -0
  369. package/lib/components/Sales/Holder/serve.js +37 -0
  370. package/lib/components/Sales/Init/index.d.ts +24 -0
  371. package/lib/components/Sales/Init/index.js +128 -0
  372. package/lib/components/Sales/Init/serve.d.ts +3 -0
  373. package/lib/components/Sales/Init/serve.js +34 -0
  374. package/lib/components/Sales/Resource/index.d.ts +26 -0
  375. package/lib/components/Sales/Resource/index.js +133 -0
  376. package/lib/components/Sales/Resource/serve.d.ts +5 -0
  377. package/lib/components/Sales/Resource/serve.js +32 -0
  378. package/lib/components/Sales/Step/index.d.ts +37 -0
  379. package/lib/components/Sales/Step/index.js +170 -0
  380. package/lib/components/Sales/Summary/index.d.ts +25 -0
  381. package/lib/components/Sales/Summary/index.js +83 -0
  382. package/lib/components/Sales/Summary/serve.d.ts +0 -0
  383. package/lib/components/Sales/Summary/serve.js +0 -0
  384. package/lib/components/Sales/Summary/utils.d.ts +36 -0
  385. package/lib/components/Sales/Summary/utils.js +80 -0
  386. package/lib/components/Sales/hooks/index.d.ts +1 -0
  387. package/lib/components/Sales/hooks/index.js +31 -0
  388. package/lib/components/Sales/index.d.ts +20 -0
  389. package/lib/components/Sales/index.js +79 -0
  390. package/lib/components/Sales/utils/index.d.ts +1 -0
  391. package/lib/components/Sales/utils/index.js +43 -0
  392. package/lib/components/booking/components/customSelect/index.d.ts +1 -0
  393. package/lib/components/booking/components/customSelect/index.js +6 -2
  394. package/lib/components/booking/components/footer/AppointmentProductModal/index.d.ts +3 -0
  395. package/lib/components/booking/components/footer/AppointmentProductModal/index.js +60 -0
  396. package/lib/components/booking/components/footer/AppointmentProductModal/index.less +0 -0
  397. package/lib/components/booking/components/footer/amount.js +27 -8
  398. package/lib/components/booking/components/footer/index.js +48 -55
  399. package/lib/components/booking/components/footer/serve.d.ts +2 -0
  400. package/lib/components/booking/components/footer/serve.js +12 -0
  401. package/lib/components/booking/components/footer/utils.js +168 -37
  402. package/lib/components/booking/info/Provider.d.ts +0 -0
  403. package/lib/components/booking/info/Provider.js +0 -0
  404. package/lib/components/booking/info/addServiceVariant/index.js +5 -0
  405. package/lib/components/booking/info/clientVariant/vertical/SelectDrawer.d.ts +1 -0
  406. package/lib/components/booking/info/clientVariant/vertical/SelectDrawer.js +8 -7
  407. package/lib/components/booking/info/clientVariant/vertical/index.js +96 -20
  408. package/lib/components/booking/info/dateRange/index.d.ts +4 -0
  409. package/lib/components/booking/info/dateRange/index.js +111 -0
  410. package/lib/components/booking/info/dateRange/index.less +21 -0
  411. package/lib/components/booking/info/main.js +33 -22
  412. package/lib/components/booking/info/model.js +3 -0
  413. package/lib/components/booking/info/pet/ChangePetModal/index.d.ts +4 -0
  414. package/lib/components/booking/info/pet/ChangePetModal/index.js +121 -0
  415. package/lib/components/booking/info/pet/ChangePetModal/index.less +4 -0
  416. package/lib/components/booking/info/pet/index.d.ts +1 -1
  417. package/lib/components/booking/info/pet/index.js +90 -44
  418. package/lib/components/booking/info/service/addService/index.d.ts +0 -1
  419. package/lib/components/booking/info/service/addService/index.js +131 -101
  420. package/lib/components/booking/info/service/addService/index.less +13 -3
  421. package/lib/components/booking/info/service/addService/utils.d.ts +12 -2
  422. package/lib/components/booking/info/service/addService/utils.js +57 -10
  423. package/lib/components/booking/info/service/addTimeModal/index.d.ts +0 -1
  424. package/lib/components/booking/info/service/editService/BookingList/index.d.ts +4 -0
  425. package/lib/components/booking/info/service/editService/BookingList/index.js +55 -0
  426. package/lib/components/booking/info/service/editService/EditTabs/index.d.ts +3 -0
  427. package/lib/components/booking/info/service/editService/EditTabs/index.js +75 -0
  428. package/lib/components/booking/info/service/editService/index.js +446 -197
  429. package/lib/components/booking/info/service/editService/index.less +18 -13
  430. package/lib/components/booking/info/service/serve.d.ts +10 -0
  431. package/lib/components/booking/info/service/serve.js +7 -2
  432. package/lib/components/booking/info/service/serviceManager/distributeDiscount.d.ts +11 -0
  433. package/lib/components/booking/info/service/serviceManager/distributeDiscount.js +70 -0
  434. package/lib/components/booking/info/service/serviceManager/index.d.ts +20 -0
  435. package/lib/components/booking/info/service/serviceManager/index.js +211 -0
  436. package/lib/components/booking/info/service/serviceManager/utils.d.ts +0 -0
  437. package/lib/components/booking/info/service/serviceManager/utils.js +0 -0
  438. package/lib/components/booking/info/service2/Group/utils.d.ts +14 -0
  439. package/lib/components/booking/info/service2/Group/utils.js +142 -0
  440. package/lib/components/booking/info/service2/Lists.d.ts +3 -0
  441. package/lib/components/booking/info/service2/Lists.js +116 -0
  442. package/lib/components/booking/info/service2/hooks/useSelectPet.d.ts +6 -0
  443. package/lib/components/booking/info/service2/hooks/useSelectPet.js +49 -0
  444. package/lib/components/booking/info/service2/index.d.ts +6 -0
  445. package/lib/components/booking/info/service2/index.js +75 -0
  446. package/lib/components/booking/info/service2/status.d.ts +31 -0
  447. package/lib/components/booking/info/service2/status.js +81 -0
  448. package/lib/components/booking/info/service2/utils.d.ts +240 -0
  449. package/lib/components/booking/info/service2/utils.js +686 -0
  450. package/lib/components/booking/info/utils.d.ts +20 -0
  451. package/lib/components/booking/info/utils.js +42 -1
  452. package/lib/components/booking/locales.d.ts +66 -0
  453. package/lib/components/booking/locales.js +69 -3
  454. package/lib/components/booking/materiels/contacts/index.d.ts +1 -0
  455. package/lib/components/booking/materiels/holder/index.d.ts +7 -0
  456. package/lib/components/booking/materiels/holder/index.js +64 -0
  457. package/lib/components/booking/model.d.ts +5 -1
  458. package/lib/components/booking/model.js +4 -2
  459. package/lib/components/booking/utils.d.ts +12 -3
  460. package/lib/components/booking/utils.js +89 -18
  461. package/lib/components/eftpos/hooks.d.ts +4 -4
  462. package/lib/components/eftpos/index.d.ts +1 -0
  463. package/lib/components/eftposPay/component/fail/failCustom.d.ts +0 -1
  464. package/lib/components/eftposPay/component/fail/index.d.ts +0 -1
  465. package/lib/components/eftposPay/component/fail/unknow.d.ts +0 -1
  466. package/lib/components/eftposPay/component/step/index.d.ts +6 -6
  467. package/lib/components/eftposPay/component/step/step.d.ts +4 -4
  468. package/lib/components/eftposPay/hooks.d.ts +1 -1
  469. package/lib/components/eftposPay/pay.d.ts +0 -1
  470. package/lib/components/eftposPay/tyro/hooks.d.ts +2 -2
  471. package/lib/components/eftposPay/windcave/helper.d.ts +1 -1
  472. package/lib/components/eventBooking/assets/alert-circle.png +0 -0
  473. package/lib/components/eventBooking/assets/calendar-heart.svg +5 -0
  474. package/lib/components/eventBooking/assets/compass.svg +13 -0
  475. package/lib/components/eventBooking/assets/image.svg +5 -0
  476. package/lib/components/eventBooking/assets/phone.svg +5 -0
  477. package/lib/components/eventBooking/assets/shopping-cart.svg +10 -0
  478. package/lib/components/eventBooking/components/ErrorTip/index.d.ts +3 -0
  479. package/lib/components/eventBooking/components/ErrorTip/index.js +30 -0
  480. package/lib/components/eventBooking/components/ErrorTip/index.less +51 -0
  481. package/lib/components/eventBooking/components/OpenCard/index.d.ts +4 -0
  482. package/lib/components/eventBooking/components/OpenCard/index.js +90 -0
  483. package/lib/components/eventBooking/components/OpenCard/index.less +52 -0
  484. package/lib/components/eventBooking/components/Provider/Cart/ContinueButton/index.d.ts +3 -0
  485. package/lib/components/eventBooking/components/Provider/Cart/ContinueButton/index.js +158 -0
  486. package/lib/components/eventBooking/components/Provider/Cart/ContinueButton/index.less +0 -0
  487. package/lib/components/eventBooking/components/Provider/Cart/Item/Total.d.ts +3 -0
  488. package/lib/components/eventBooking/components/Provider/Cart/Item/Total.js +82 -0
  489. package/lib/components/eventBooking/components/Provider/Cart/Item/index.d.ts +3 -0
  490. package/lib/components/eventBooking/components/Provider/Cart/Item/index.js +92 -0
  491. package/lib/components/eventBooking/components/Provider/Cart/Item/index.less +87 -0
  492. package/lib/components/eventBooking/components/Provider/Cart/index.d.ts +3 -0
  493. package/lib/components/eventBooking/components/Provider/Cart/index.js +59 -0
  494. package/lib/components/eventBooking/components/Provider/Cart/index.less +2 -0
  495. package/lib/components/eventBooking/components/Provider/Content/index.d.ts +4 -0
  496. package/lib/components/eventBooking/components/Provider/Content/index.js +90 -0
  497. package/lib/components/eventBooking/components/Provider/Content/index.less +31 -0
  498. package/lib/components/eventBooking/components/Provider/EmptyHolderModal/index.d.ts +3 -0
  499. package/lib/components/eventBooking/components/Provider/EmptyHolderModal/index.js +60 -0
  500. package/lib/components/eventBooking/components/Provider/EmptyHolderModal/index.less +17 -0
  501. package/lib/components/eventBooking/components/Provider/Event/index.d.ts +3 -0
  502. package/lib/components/eventBooking/components/Provider/Event/index.js +100 -0
  503. package/lib/components/eventBooking/components/Provider/Event/index.less +20 -0
  504. package/lib/components/eventBooking/components/Provider/Footer/index.d.ts +3 -0
  505. package/lib/components/eventBooking/components/Provider/Footer/index.js +87 -0
  506. package/lib/components/eventBooking/components/Provider/Footer/index.less +64 -0
  507. package/lib/components/eventBooking/components/Provider/Header/index.d.ts +4 -0
  508. package/lib/components/eventBooking/components/Provider/Header/index.js +80 -0
  509. package/lib/components/eventBooking/components/Provider/Header/index.less +2 -0
  510. package/lib/components/eventBooking/components/Provider/Information/index.d.ts +3 -0
  511. package/lib/components/eventBooking/components/Provider/Information/index.js +151 -0
  512. package/lib/components/eventBooking/components/Provider/Information/index.less +92 -0
  513. package/lib/components/eventBooking/components/Provider/InformationOptionsModal/index.d.ts +3 -0
  514. package/lib/components/eventBooking/components/Provider/InformationOptionsModal/index.js +67 -0
  515. package/lib/components/eventBooking/components/Provider/InformationOptionsModal/index.less +27 -0
  516. package/lib/components/eventBooking/components/Provider/OrderProductModal/index.d.ts +3 -0
  517. package/lib/components/eventBooking/components/Provider/OrderProductModal/index.js +57 -0
  518. package/lib/components/eventBooking/components/Provider/OrderProductModal/index.less +32 -0
  519. package/lib/components/eventBooking/components/Provider/RemoveOptionConfirmModal.d.ts +2 -0
  520. package/lib/components/eventBooking/components/Provider/RemoveOptionConfirmModal.js +62 -0
  521. package/lib/components/eventBooking/components/Provider/Resource/index.d.ts +3 -0
  522. package/lib/components/eventBooking/components/Provider/Resource/index.js +90 -0
  523. package/lib/components/eventBooking/components/Provider/Resource/index.less +46 -0
  524. package/lib/components/eventBooking/components/Provider/SelectHolderModal.d.ts +3 -0
  525. package/lib/components/eventBooking/components/Provider/SelectHolderModal.js +97 -0
  526. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.d.ts +4 -0
  527. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.js +55 -0
  528. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateStatus/index.less +25 -0
  529. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.d.ts +10 -0
  530. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.js +78 -0
  531. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/CallToBook/index.less +32 -0
  532. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.d.ts +3 -0
  533. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.js +86 -0
  534. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/WeekItem/index.less +12 -0
  535. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.d.ts +12 -0
  536. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.js +121 -0
  537. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/CalenDateWeek/index.less +35 -0
  538. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.d.ts +4 -0
  539. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.js +37 -0
  540. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/DayItem/index.less +28 -0
  541. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.d.ts +5 -0
  542. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.js +58 -0
  543. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Item/index.less +87 -0
  544. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.d.ts +4 -0
  545. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.js +55 -0
  546. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/Status/index.less +25 -0
  547. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.d.ts +4 -0
  548. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.js +196 -0
  549. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/index.less +119 -0
  550. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/state.d.ts +63 -0
  551. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/CalendarDate/state.js +198 -0
  552. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.d.ts +4 -0
  553. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.js +122 -0
  554. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/components/SelectDate/index.less +4 -0
  555. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/index.d.ts +14 -0
  556. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/index.js +70 -0
  557. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/index.less +2 -0
  558. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/utils.d.ts +34 -0
  559. package/lib/components/eventBooking/components/bookingAvailabilityCalendar/utils.js +70 -0
  560. package/lib/components/eventBooking/components/bookingDetailModal/components/BookingOptions.d.ts +2 -0
  561. package/lib/components/eventBooking/components/bookingDetailModal/components/BookingOptions.js +75 -0
  562. package/lib/components/eventBooking/components/bookingDetailModal/components/Resource.d.ts +3 -0
  563. package/lib/components/eventBooking/components/bookingDetailModal/components/Resource.js +66 -0
  564. package/lib/components/eventBooking/components/bookingDetailModal/components/Schedule.d.ts +3 -0
  565. package/lib/components/eventBooking/components/bookingDetailModal/components/Schedule.js +69 -0
  566. package/lib/components/eventBooking/components/bookingDetailModal/index.d.ts +7 -0
  567. package/lib/components/eventBooking/components/bookingDetailModal/index.js +248 -0
  568. package/lib/components/eventBooking/components/bookingDetailModal/index.less +82 -0
  569. package/lib/components/eventBooking/components/bookingServiceList/index.d.ts +17 -0
  570. package/lib/components/eventBooking/components/bookingServiceList/index.js +79 -0
  571. package/lib/components/eventBooking/components/bookingServiceList/index.less +6 -0
  572. package/lib/components/eventBooking/components/eventCard/index.d.ts +14 -0
  573. package/lib/components/eventBooking/components/eventCard/index.js +124 -0
  574. package/lib/components/eventBooking/components/eventCard/index.less +81 -0
  575. package/lib/components/eventBooking/components/productCard/index.d.ts +16 -0
  576. package/lib/components/eventBooking/components/productCard/index.js +77 -0
  577. package/lib/components/eventBooking/components/productCard/index.less +60 -0
  578. package/lib/components/eventBooking/components/progressBar/index.d.ts +16 -0
  579. package/lib/components/eventBooking/components/progressBar/index.js +100 -0
  580. package/lib/components/eventBooking/components/progressBar/index.less +15 -0
  581. package/lib/components/eventBooking/components/resourceDisplay/index.d.ts +23 -0
  582. package/lib/components/eventBooking/components/resourceDisplay/index.js +116 -0
  583. package/lib/components/eventBooking/components/resourceDisplay/index.less +95 -0
  584. package/lib/components/eventBooking/components/resourceUsability/index.d.ts +12 -0
  585. package/lib/components/eventBooking/components/resourceUsability/index.js +76 -0
  586. package/lib/components/eventBooking/components/resourceUsability/index.less +40 -0
  587. package/lib/components/eventBooking/components/scheduleCalendar/ProductItem/index.d.ts +10 -0
  588. package/lib/components/eventBooking/components/scheduleCalendar/ProductItem/index.js +73 -0
  589. package/lib/components/eventBooking/components/scheduleCalendar/ProductItem/index.less +58 -0
  590. package/lib/components/eventBooking/components/scheduleCalendar/calendarItem.d.ts +11 -0
  591. package/lib/components/eventBooking/components/scheduleCalendar/calendarItem.js +135 -0
  592. package/lib/components/eventBooking/components/scheduleCalendar/index.d.ts +13 -0
  593. package/lib/components/eventBooking/components/scheduleCalendar/index.js +125 -0
  594. package/lib/components/eventBooking/components/scheduleCalendar/index.less +222 -0
  595. package/lib/components/eventBooking/components/selectHolder/index.d.ts +22 -0
  596. package/lib/components/eventBooking/components/selectHolder/index.js +106 -0
  597. package/lib/components/eventBooking/components/selectHolder/index.less +70 -0
  598. package/lib/components/eventBooking/components/timeResourceSelector/index.d.ts +20 -0
  599. package/lib/components/eventBooking/components/timeResourceSelector/index.js +146 -0
  600. package/lib/components/eventBooking/components/timeResourceSelector/index.less +74 -0
  601. package/lib/components/eventBooking/index.d.ts +4 -0
  602. package/lib/components/eventBooking/index.js +78 -0
  603. package/lib/components/eventBooking/index.less +22 -0
  604. package/lib/components/eventBooking/locales.d.ts +216 -0
  605. package/lib/components/eventBooking/locales.js +239 -0
  606. package/lib/components/eventBooking/mock.d.ts +627 -0
  607. package/lib/components/eventBooking/mock.js +1352 -0
  608. package/lib/components/eventBooking/status.d.ts +21 -0
  609. package/lib/components/eventBooking/status.js +70 -0
  610. package/lib/components/eventBooking/type.d.ts +17 -0
  611. package/lib/components/eventBooking/type.js +17 -0
  612. package/lib/components/eventBooking/utils.d.ts +45 -0
  613. package/lib/components/eventBooking/utils.js +90 -0
  614. package/lib/components/login/index.d.ts +1 -0
  615. package/lib/components/productExtension/index.d.ts +1 -0
  616. package/lib/components/shoppingCart/Provider.d.ts +3 -0
  617. package/lib/components/shoppingCart/Provider.js +110 -0
  618. package/lib/components/shoppingCart/components/Cart/Product.d.ts +3 -0
  619. package/lib/components/shoppingCart/components/Cart/Product.js +72 -0
  620. package/lib/components/shoppingCart/components/Cart/index.d.ts +3 -0
  621. package/lib/components/shoppingCart/components/Cart/index.js +85 -0
  622. package/lib/components/shoppingCart/components/Cart/index.less +68 -0
  623. package/lib/components/shoppingCart/components/Empty/index.d.ts +4 -0
  624. package/lib/components/shoppingCart/components/Empty/index.js +43 -0
  625. package/lib/components/shoppingCart/components/Empty/index.less +19 -0
  626. package/lib/components/shoppingCart/components/Render/index.d.ts +4 -0
  627. package/lib/components/shoppingCart/components/Render/index.js +75 -0
  628. package/lib/components/shoppingCart/components/Render/index.less +2 -0
  629. package/lib/components/shoppingCart/components/SelectHolderModal/index.d.ts +4 -0
  630. package/lib/components/shoppingCart/components/SelectHolderModal/index.js +124 -0
  631. package/lib/components/shoppingCart/components/SelectHolderModal/index.less +32 -0
  632. package/lib/components/shoppingCart/hooks/useAddService.d.ts +2 -0
  633. package/lib/components/shoppingCart/hooks/useAddService.js +55 -0
  634. package/lib/components/shoppingCart/hooks/useClearCart.d.ts +2 -0
  635. package/lib/components/shoppingCart/hooks/useClearCart.js +66 -0
  636. package/lib/components/shoppingCart/hooks/useContext.d.ts +1 -0
  637. package/lib/components/shoppingCart/hooks/useContext.js +31 -0
  638. package/lib/components/shoppingCart/index.d.ts +4 -0
  639. package/lib/components/shoppingCart/index.js +60 -0
  640. package/lib/components/shoppingCart/locales.d.ts +33 -0
  641. package/lib/components/shoppingCart/locales.js +56 -0
  642. package/lib/components/shoppingCart/mock.d.ts +40 -0
  643. package/lib/components/shoppingCart/mock.js +76 -0
  644. package/lib/components/shoppingCart/status.d.ts +2 -0
  645. package/lib/components/shoppingCart/status.js +60 -0
  646. package/lib/components/shoppingCart/type.d.ts +40 -0
  647. package/lib/components/shoppingCart/type.js +17 -0
  648. package/lib/components/shoppingCart/utils.d.ts +63 -0
  649. package/lib/components/shoppingCart/utils.js +83 -0
  650. package/lib/components/tabProduct/tabs/index.less +13 -3
  651. package/lib/components/taxSelect/index.d.ts +1 -0
  652. package/lib/components/wallet/hooks/useWalletCard.d.ts +1 -0
  653. package/lib/components/workSpaceList/components/AppearanceEdit/IconPanel.js +2 -2
  654. package/lib/components/workSpaceList/components/AppearanceEdit/constants.js +32 -12
  655. package/lib/components/workSpaceList/components/Card/constants.js +4 -3
  656. package/lib/components/workSpaceList/components/EditableString/index.js +2 -2
  657. package/lib/components/workSpaceList/components/SearchBar/index.js +8 -5
  658. package/lib/components/workSpaceList/components/SearchWorkspaceAndBase/index.js +2 -2
  659. package/lib/components/workSpaceList/components/Sort/index.js +2 -2
  660. package/lib/components/workSpaceList/components/WorkspaceItem/index.js +2 -2
  661. package/lib/components/workSpaceList/server.d.ts +3 -3
  662. package/lib/index.d.ts +13 -0
  663. package/lib/index.js +39 -0
  664. package/lowcode/event-booking/meta.ts +69 -0
  665. package/lowcode/event-booking-availability-calendar/meta.ts +53 -0
  666. package/lowcode/event-booking-detail-modal/meta.ts +39 -0
  667. package/lowcode/event-booking-service-list/meta.ts +77 -0
  668. package/lowcode/event-card/meta.ts +77 -0
  669. package/lowcode/event-product-card/meta.ts +79 -0
  670. package/lowcode/event-progress-bar/meta.ts +65 -0
  671. package/lowcode/event-resource-display/meta.ts +169 -0
  672. package/lowcode/event-resource-usability/meta.ts +67 -0
  673. package/lowcode/event-schedule-calendar/meta.ts +56 -0
  674. package/lowcode/event-select-holder/meta.ts +84 -0
  675. package/lowcode/event-time-resource-selector/meta.ts +69 -0
  676. package/lowcode/shopping-cart/meta.ts +98 -0
  677. package/package.json +4 -4
@@ -0,0 +1,1352 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/components/eventBooking/mock.ts
20
+ var mock_exports = {};
21
+ __export(mock_exports, {
22
+ mock: () => mock
23
+ });
24
+ module.exports = __toCommonJS(mock_exports);
25
+ var mock = {
26
+ event_card: {
27
+ title: "Event Title",
28
+ subtitle: "Event Subtitle",
29
+ description: "Event Description 0: #1b1b1b; --color-grey-20: #303030; --color-grey-30: #474747; --color-grey-40: #5e5e5e; --color-grey-50: #777777; --color-grey-60: #919191; --color-grey-70: #ababab; --color-grey-80: #c6c6c6; --color-grey-90: #e2e2e2; --color-grey-95: #f1f1f1; --color-grey-98: #fafafa; --color-grey-99: #fcfcfc; --color-primary: #705DFF; --color-text-1: var(--color-grey-10); --color-text-2: var(--color-grey-50); --color-text-3: var(--color-grey-60); --color-text-4: var(--color-gre",
30
+ price: 20,
31
+ origin_price: 30
32
+ },
33
+ resource_display: {
34
+ title: "Resource Display Title",
35
+ subtitle: "Resource Display Description",
36
+ image: "https://picsum.photos/200/300",
37
+ contact: "123456789",
38
+ location: "河南省 郑州市"
39
+ },
40
+ resource_usability: {
41
+ start_time: "10:00",
42
+ end_time: "12:00",
43
+ remainingCount: 20,
44
+ id: 1
45
+ },
46
+ product_card: {
47
+ title: 'Product Title showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div>',
48
+ subtitle: "Product Subtitle",
49
+ description: "Product Description",
50
+ price: 20,
51
+ origin_price: 30,
52
+ image: "https://picsum.photos/200/300",
53
+ id: 1,
54
+ currency: "&"
55
+ },
56
+ time_resource: [
57
+ {
58
+ id: "1",
59
+ remainingCount: 5,
60
+ start_time: "9:45",
61
+ end_time: "12:00",
62
+ disabled: true
63
+ },
64
+ {
65
+ id: "2",
66
+ remainingCount: 14,
67
+ start_time: "13:45",
68
+ end_time: "18:00",
69
+ disabled: false
70
+ },
71
+ {
72
+ id: "3",
73
+ remainingCount: 8,
74
+ disabled: true,
75
+ start_time: "18:00",
76
+ end_time: "21:00"
77
+ },
78
+ {
79
+ id: "4",
80
+ remainingCount: 8,
81
+ disabled: false,
82
+ start_time: "18:00",
83
+ end_time: "21:00"
84
+ },
85
+ {
86
+ id: "5",
87
+ remainingCount: 8,
88
+ disabled: false,
89
+ start_time: "18:00",
90
+ end_time: "21:00"
91
+ }
92
+ ],
93
+ schedule: {
94
+ list: [
95
+ {
96
+ "id": 474,
97
+ "name": "套餐商品",
98
+ "icon": "",
99
+ "slug": "套餐商品",
100
+ "sort": 200,
101
+ "products": [
102
+ {
103
+ "id": 60115,
104
+ "extension_id": 57,
105
+ "extension_type": "product_party",
106
+ "shop_id": 9,
107
+ "title": "9.26party1",
108
+ "slug": "9-26party",
109
+ "status": "published",
110
+ "stock_quantity": -53,
111
+ "sales_quantity": 58,
112
+ "sum_stock": -53,
113
+ "price": "2.00",
114
+ "original_price": "0.00",
115
+ "cost_price": "0.00",
116
+ "cover": "",
117
+ "channel_application": [
118
+ "kiosk"
119
+ ],
120
+ "is_track": 1,
121
+ "over_sold": 1,
122
+ "is_gst": 1,
123
+ "code": "",
124
+ "barcode": "",
125
+ "is_delivery": 0,
126
+ "weight_unit": "KILOGRAMS",
127
+ "weight_value": "0.00",
128
+ "type": "physical",
129
+ "unit": "",
130
+ "sort": 9999999,
131
+ "is_variant": 0,
132
+ "variant_count": 0,
133
+ "cut_off_time": {
134
+ "unit": 1,
135
+ "unit_type": "days",
136
+ "future_day": 365,
137
+ "type": "advance",
138
+ "ongoing": {
139
+ "type": "before_end",
140
+ "unit": 60
141
+ }
142
+ },
143
+ "schedule.ids": [
144
+ 191,
145
+ 942,
146
+ 943,
147
+ 940,
148
+ 941
149
+ ],
150
+ "schedule.times_limit": [
151
+ {
152
+ "schedule_id": 191,
153
+ "times_id": 0,
154
+ "start_time": "",
155
+ "end_time": "",
156
+ "max_participants_type": "no-limit",
157
+ "max_participants_limit": 0
158
+ },
159
+ {
160
+ "schedule_id": 941,
161
+ "times_id": 0,
162
+ "start_time": "",
163
+ "end_time": "",
164
+ "max_participants_type": "no-limit",
165
+ "max_participants_limit": 0
166
+ },
167
+ {
168
+ "schedule_id": 940,
169
+ "times_id": 408,
170
+ "start_time": "09:00",
171
+ "end_time": "11:00",
172
+ "max_participants_type": "no-limit",
173
+ "max_participants_limit": 0
174
+ },
175
+ {
176
+ "schedule_id": 940,
177
+ "times_id": 409,
178
+ "start_time": "13:00",
179
+ "end_time": "18:00",
180
+ "max_participants_type": "no-limit",
181
+ "max_participants_limit": 0
182
+ }
183
+ ],
184
+ "shelf_product_datas": [],
185
+ "step_value": 1,
186
+ "min_num_unit": 1,
187
+ "schedules": [
188
+ {
189
+ "id": 191,
190
+ "shop_id": 9,
191
+ "name": "全天",
192
+ "color": "#2e90fa",
193
+ "type": "standard",
194
+ "start_time": "2023-02-20 00:00:00",
195
+ "end_time": "2023-02-20 23:59:59",
196
+ "note": "",
197
+ "repeat_type": "daily",
198
+ "repeat_rule": {
199
+ "end": {
200
+ "type": "never",
201
+ "end_date": null,
202
+ "occurrence": null
203
+ },
204
+ "frequency": 1,
205
+ "excluded_date": [],
206
+ "included_date": [],
207
+ "frequency_date": []
208
+ },
209
+ "designation": null,
210
+ "is_all": 1,
211
+ "create_account_id": 6,
212
+ "update_account_id": 6,
213
+ "created_at": "2023-01-09 19:26:23",
214
+ "updated_at": "2023-03-04 20:25:53",
215
+ "order_count": 0,
216
+ "limit": 0,
217
+ "form_record_ids": []
218
+ },
219
+ {
220
+ "id": 940,
221
+ "shop_id": 9,
222
+ "name": "指定早班",
223
+ "color": "#2E90FA",
224
+ "type": "time-slots",
225
+ "start_time": "2024-10-24 00:00:00",
226
+ "end_time": null,
227
+ "note": "",
228
+ "repeat_type": "daily",
229
+ "repeat_rule": {
230
+ "end": {
231
+ "type": "never",
232
+ "end_date": null,
233
+ "occurrence": null
234
+ },
235
+ "frequency": 1,
236
+ "excluded_date": [],
237
+ "included_date": [],
238
+ "frequency_date": []
239
+ },
240
+ "designation": null,
241
+ "is_all": 0,
242
+ "create_account_id": 25,
243
+ "update_account_id": 390,
244
+ "created_at": "2024-10-24 20:03:41",
245
+ "updated_at": "2024-11-04 13:50:19",
246
+ "order_count": 0,
247
+ "limit": 0,
248
+ "form_record_ids": []
249
+ }
250
+ ],
251
+ "is_charge_tax": 1,
252
+ "base_price": "2.00",
253
+ "variant": [],
254
+ "category": [
255
+ {
256
+ "id": 474,
257
+ "name": "套餐商品",
258
+ "icon": "",
259
+ "slug": "套餐商品",
260
+ "sort": 200
261
+ }
262
+ ],
263
+ "_schedules": {
264
+ "minTime": "2024-12-31T16:00:00.000Z",
265
+ "maxTime": "2026-01-11T15:59:59.000Z",
266
+ "str": "全天"
267
+ }
268
+ }
269
+ ]
270
+ },
271
+ {
272
+ "id": 813,
273
+ "name": "报价单预约party",
274
+ "icon": "",
275
+ "slug": "报价单预约party",
276
+ "sort": 133,
277
+ "products": [
278
+ {
279
+ "id": 39241,
280
+ "extension_id": 57,
281
+ "extension_type": "product_party",
282
+ "shop_id": 9,
283
+ "title": "2/11party时间段不一致",
284
+ "slug": "2-11party时间段不一致",
285
+ "status": "published",
286
+ "stock_quantity": 111111,
287
+ "sales_quantity": 0,
288
+ "sum_stock": 111111,
289
+ "price": "1.00",
290
+ "original_price": "0.00",
291
+ "cost_price": "0.00",
292
+ "cover": "",
293
+ "channel_application": [
294
+ "online-store",
295
+ "pos"
296
+ ],
297
+ "is_track": 1,
298
+ "over_sold": 0,
299
+ "is_gst": 1,
300
+ "code": "",
301
+ "barcode": "",
302
+ "is_delivery": 0,
303
+ "weight_unit": "KILOGRAMS",
304
+ "weight_value": "0.00",
305
+ "type": "physical",
306
+ "unit": "",
307
+ "sort": 0,
308
+ "is_variant": 0,
309
+ "variant_count": 0,
310
+ "cut_off_time": {
311
+ "unit": 1,
312
+ "unit_type": "days",
313
+ "future_day": 365
314
+ },
315
+ "schedule.ids": [
316
+ 232
317
+ ],
318
+ "schedule.times_limit": [
319
+ {
320
+ "schedule_id": 232,
321
+ "times_id": 117,
322
+ "start_time": "00:00",
323
+ "end_time": "23:59",
324
+ "max_participants_type": "no-limit",
325
+ "max_participants_limit": 0
326
+ }
327
+ ],
328
+ "shelf_product_datas": [],
329
+ "step_value": 1,
330
+ "min_num_unit": 1,
331
+ "schedules": [
332
+ {
333
+ "id": 232,
334
+ "shop_id": 9,
335
+ "name": "12日时间段0点-23:59每天重复",
336
+ "color": "#2e90fa",
337
+ "type": "time-slots",
338
+ "start_time": "2023-02-12 00:00:00",
339
+ "end_time": null,
340
+ "note": "",
341
+ "repeat_type": "daily",
342
+ "repeat_rule": {
343
+ "end": {
344
+ "type": "never",
345
+ "end_date": null,
346
+ "occurrence": null
347
+ },
348
+ "frequency": 1,
349
+ "excluded_date": [],
350
+ "included_date": [],
351
+ "frequency_date": []
352
+ },
353
+ "designation": null,
354
+ "is_all": 0,
355
+ "create_account_id": 6,
356
+ "update_account_id": 6,
357
+ "created_at": "2023-02-11 15:52:52",
358
+ "updated_at": "2023-02-11 15:52:52",
359
+ "order_count": 0,
360
+ "limit": 0,
361
+ "form_record_ids": []
362
+ }
363
+ ],
364
+ "is_charge_tax": 1,
365
+ "base_price": "1.00",
366
+ "variant": [],
367
+ "category": [
368
+ {
369
+ "id": 813,
370
+ "name": "报价单预约party",
371
+ "icon": "",
372
+ "slug": "报价单预约party",
373
+ "sort": 133
374
+ }
375
+ ],
376
+ "_schedules": {
377
+ "minTime": "2024-12-31T16:00:00.000Z",
378
+ "maxTime": "2026-01-11T15:59:00.000Z",
379
+ "str": "全天"
380
+ }
381
+ },
382
+ {
383
+ "id": 39240,
384
+ "extension_id": 57,
385
+ "extension_type": "product_party",
386
+ "shop_id": 9,
387
+ "title": "2/11party时间段晚于开始日期",
388
+ "slug": "2-11party时间段晚于开始日期",
389
+ "status": "published",
390
+ "stock_quantity": 111111,
391
+ "sales_quantity": 0,
392
+ "sum_stock": 111111,
393
+ "price": "1.00",
394
+ "original_price": "0.00",
395
+ "cost_price": "0.00",
396
+ "cover": "",
397
+ "channel_application": [
398
+ "online-store",
399
+ "pos"
400
+ ],
401
+ "is_track": 1,
402
+ "over_sold": 0,
403
+ "is_gst": 1,
404
+ "code": "",
405
+ "barcode": "",
406
+ "is_delivery": 0,
407
+ "weight_unit": "KILOGRAMS",
408
+ "weight_value": "0.00",
409
+ "type": "physical",
410
+ "unit": "",
411
+ "sort": 0,
412
+ "is_variant": 0,
413
+ "variant_count": 0,
414
+ "cut_off_time": {
415
+ "unit": 1,
416
+ "unit_type": "days",
417
+ "future_day": 365
418
+ },
419
+ "schedule.ids": [
420
+ 232
421
+ ],
422
+ "schedule.times_limit": [
423
+ {
424
+ "schedule_id": 232,
425
+ "times_id": 117,
426
+ "start_time": "00:00",
427
+ "end_time": "23:59",
428
+ "max_participants_type": "no-limit",
429
+ "max_participants_limit": 0
430
+ }
431
+ ],
432
+ "shelf_product_datas": [],
433
+ "step_value": 1,
434
+ "min_num_unit": 1,
435
+ "schedules": [
436
+ {
437
+ "id": 232,
438
+ "shop_id": 9,
439
+ "name": "12日时间段0点-23:59每天重复",
440
+ "color": "#2e90fa",
441
+ "type": "time-slots",
442
+ "start_time": "2023-02-12 00:00:00",
443
+ "end_time": null,
444
+ "note": "",
445
+ "repeat_type": "daily",
446
+ "repeat_rule": {
447
+ "end": {
448
+ "type": "never",
449
+ "end_date": null,
450
+ "occurrence": null
451
+ },
452
+ "frequency": 1,
453
+ "excluded_date": [],
454
+ "included_date": [],
455
+ "frequency_date": []
456
+ },
457
+ "designation": null,
458
+ "is_all": 0,
459
+ "create_account_id": 6,
460
+ "update_account_id": 6,
461
+ "created_at": "2023-02-11 15:52:52",
462
+ "updated_at": "2023-02-11 15:52:52",
463
+ "order_count": 0,
464
+ "limit": 0,
465
+ "form_record_ids": []
466
+ }
467
+ ],
468
+ "is_charge_tax": 1,
469
+ "base_price": "1.00",
470
+ "variant": [],
471
+ "category": [
472
+ {
473
+ "id": 813,
474
+ "name": "报价单预约party",
475
+ "icon": "",
476
+ "slug": "报价单预约party",
477
+ "sort": 133
478
+ }
479
+ ],
480
+ "_schedules": {
481
+ "minTime": "2024-12-31T16:00:00.000Z",
482
+ "maxTime": "2026-01-11T15:59:00.000Z",
483
+ "str": "全天"
484
+ }
485
+ },
486
+ {
487
+ "id": 39239,
488
+ "extension_id": 57,
489
+ "extension_type": "product_party",
490
+ "shop_id": 9,
491
+ "title": "2/11party0点-23:59每天重复",
492
+ "slug": "2-11party0点-23-59每天重复",
493
+ "status": "published",
494
+ "stock_quantity": 111111,
495
+ "sales_quantity": 1,
496
+ "sum_stock": 111111,
497
+ "price": "1.00",
498
+ "original_price": "0.00",
499
+ "cost_price": "0.00",
500
+ "cover": "",
501
+ "channel_application": [
502
+ "online-store",
503
+ "pos"
504
+ ],
505
+ "is_track": 1,
506
+ "over_sold": 0,
507
+ "is_gst": 1,
508
+ "code": "",
509
+ "barcode": "",
510
+ "is_delivery": 0,
511
+ "weight_unit": "KILOGRAMS",
512
+ "weight_value": "0.00",
513
+ "type": "physical",
514
+ "unit": "",
515
+ "sort": 0,
516
+ "is_variant": 0,
517
+ "variant_count": 0,
518
+ "cut_off_time": {
519
+ "unit": 1,
520
+ "unit_type": "days",
521
+ "future_day": 365
522
+ },
523
+ "schedule.ids": [
524
+ 232
525
+ ],
526
+ "schedule.times_limit": [
527
+ {
528
+ "schedule_id": 232,
529
+ "times_id": 117,
530
+ "start_time": "00:00",
531
+ "end_time": "23:59",
532
+ "max_participants_type": "no-limit",
533
+ "max_participants_limit": 0
534
+ }
535
+ ],
536
+ "shelf_product_datas": [],
537
+ "step_value": 1,
538
+ "min_num_unit": 1,
539
+ "schedules": [
540
+ {
541
+ "id": 232,
542
+ "shop_id": 9,
543
+ "name": "12日时间段0点-23:59每天重复",
544
+ "color": "#2e90fa",
545
+ "type": "time-slots",
546
+ "start_time": "2023-02-12 00:00:00",
547
+ "end_time": null,
548
+ "note": "",
549
+ "repeat_type": "daily",
550
+ "repeat_rule": {
551
+ "end": {
552
+ "type": "never",
553
+ "end_date": null,
554
+ "occurrence": null
555
+ },
556
+ "frequency": 1,
557
+ "excluded_date": [],
558
+ "included_date": [],
559
+ "frequency_date": []
560
+ },
561
+ "designation": null,
562
+ "is_all": 0,
563
+ "create_account_id": 6,
564
+ "update_account_id": 6,
565
+ "created_at": "2023-02-11 15:52:52",
566
+ "updated_at": "2023-02-11 15:52:52",
567
+ "order_count": 0,
568
+ "limit": 0,
569
+ "form_record_ids": []
570
+ }
571
+ ],
572
+ "is_charge_tax": 1,
573
+ "base_price": "1.00",
574
+ "variant": [],
575
+ "category": [
576
+ {
577
+ "id": 813,
578
+ "name": "报价单预约party",
579
+ "icon": "",
580
+ "slug": "报价单预约party",
581
+ "sort": 133
582
+ }
583
+ ],
584
+ "_schedules": {
585
+ "minTime": "2024-12-31T16:00:00.000Z",
586
+ "maxTime": "2026-01-11T15:59:00.000Z",
587
+ "str": "全天"
588
+ }
589
+ },
590
+ {
591
+ "id": 39233,
592
+ "extension_id": 57,
593
+ "extension_type": "product_party",
594
+ "shop_id": 9,
595
+ "title": "套餐123",
596
+ "slug": "套餐123",
597
+ "status": "published",
598
+ "stock_quantity": 111091,
599
+ "sales_quantity": 23,
600
+ "sum_stock": 111091,
601
+ "price": "11.00",
602
+ "original_price": "12.00",
603
+ "cost_price": "0.00",
604
+ "cover": "",
605
+ "channel_application": [
606
+ "online-store",
607
+ "pos"
608
+ ],
609
+ "is_track": 1,
610
+ "over_sold": 1,
611
+ "is_gst": 1,
612
+ "code": "",
613
+ "barcode": "",
614
+ "is_delivery": 0,
615
+ "weight_unit": "KILOGRAMS",
616
+ "weight_value": "0.00",
617
+ "type": "physical",
618
+ "unit": "",
619
+ "sort": 0,
620
+ "is_variant": 0,
621
+ "variant_count": 0,
622
+ "cut_off_time": {
623
+ "unit": 1,
624
+ "unit_type": "days",
625
+ "future_day": 365
626
+ },
627
+ "schedule.ids": [
628
+ 191
629
+ ],
630
+ "schedule.times_limit": [
631
+ {
632
+ "schedule_id": 191,
633
+ "times_id": 0,
634
+ "start_time": "",
635
+ "end_time": "",
636
+ "max_participants_type": "no-limit",
637
+ "max_participants_limit": 0
638
+ }
639
+ ],
640
+ "shelf_product_datas": [],
641
+ "step_value": 1,
642
+ "min_num_unit": 1,
643
+ "schedules": [
644
+ {
645
+ "id": 191,
646
+ "shop_id": 9,
647
+ "name": "全天",
648
+ "color": "#2e90fa",
649
+ "type": "standard",
650
+ "start_time": "2023-02-20 00:00:00",
651
+ "end_time": "2023-02-20 23:59:59",
652
+ "note": "",
653
+ "repeat_type": "daily",
654
+ "repeat_rule": {
655
+ "end": {
656
+ "type": "never",
657
+ "end_date": null,
658
+ "occurrence": null
659
+ },
660
+ "frequency": 1,
661
+ "excluded_date": [],
662
+ "included_date": [],
663
+ "frequency_date": []
664
+ },
665
+ "designation": null,
666
+ "is_all": 1,
667
+ "create_account_id": 6,
668
+ "update_account_id": 6,
669
+ "created_at": "2023-01-09 19:26:23",
670
+ "updated_at": "2023-03-04 20:25:53",
671
+ "order_count": 0,
672
+ "limit": 0,
673
+ "form_record_ids": []
674
+ }
675
+ ],
676
+ "is_charge_tax": 1,
677
+ "base_price": "11.00",
678
+ "variant": [],
679
+ "category": [
680
+ {
681
+ "id": 813,
682
+ "name": "报价单预约party",
683
+ "icon": "",
684
+ "slug": "报价单预约party",
685
+ "sort": 133
686
+ }
687
+ ],
688
+ "_schedules": {
689
+ "minTime": "2024-12-31T16:00:00.000Z",
690
+ "maxTime": "2026-01-11T15:59:59.000Z",
691
+ "str": "全天"
692
+ }
693
+ },
694
+ {
695
+ "id": 39232,
696
+ "extension_id": 57,
697
+ "extension_type": "product_party",
698
+ "shop_id": 9,
699
+ "title": "2/11全天party1",
700
+ "slug": "2-11全天party1",
701
+ "status": "published",
702
+ "stock_quantity": 107,
703
+ "sales_quantity": 4,
704
+ "sum_stock": 107,
705
+ "price": "1.00",
706
+ "original_price": "0.00",
707
+ "cost_price": "0.00",
708
+ "cover": "https://file.mypisell-dev.com/pisel/image/9/d8bbfb8c380458614feab35d382c39652022_12_29_14_49_53_245_02412126339__1170_1970__.jpeg",
709
+ "channel_application": [
710
+ "online-store",
711
+ "pos"
712
+ ],
713
+ "is_track": 1,
714
+ "over_sold": 0,
715
+ "is_gst": 1,
716
+ "code": "",
717
+ "barcode": "",
718
+ "is_delivery": 0,
719
+ "weight_unit": "KILOGRAMS",
720
+ "weight_value": "0.00",
721
+ "type": "physical",
722
+ "unit": "",
723
+ "sort": 0,
724
+ "is_variant": 0,
725
+ "variant_count": 0,
726
+ "cut_off_time": {
727
+ "unit": 1,
728
+ "unit_type": "days",
729
+ "future_day": 365
730
+ },
731
+ "schedule.ids": [
732
+ 191
733
+ ],
734
+ "schedule.times_limit": [
735
+ {
736
+ "schedule_id": 191,
737
+ "times_id": 0,
738
+ "start_time": "",
739
+ "end_time": "",
740
+ "max_participants_type": "no-limit",
741
+ "max_participants_limit": 0
742
+ }
743
+ ],
744
+ "shelf_product_datas": [],
745
+ "step_value": 1,
746
+ "min_num_unit": 1,
747
+ "schedules": [
748
+ {
749
+ "id": 191,
750
+ "shop_id": 9,
751
+ "name": "全天",
752
+ "color": "#2e90fa",
753
+ "type": "standard",
754
+ "start_time": "2023-02-20 00:00:00",
755
+ "end_time": "2023-02-20 23:59:59",
756
+ "note": "",
757
+ "repeat_type": "daily",
758
+ "repeat_rule": {
759
+ "end": {
760
+ "type": "never",
761
+ "end_date": null,
762
+ "occurrence": null
763
+ },
764
+ "frequency": 1,
765
+ "excluded_date": [],
766
+ "included_date": [],
767
+ "frequency_date": []
768
+ },
769
+ "designation": null,
770
+ "is_all": 1,
771
+ "create_account_id": 6,
772
+ "update_account_id": 6,
773
+ "created_at": "2023-01-09 19:26:23",
774
+ "updated_at": "2023-03-04 20:25:53",
775
+ "order_count": 0,
776
+ "limit": 0,
777
+ "form_record_ids": []
778
+ }
779
+ ],
780
+ "is_charge_tax": 1,
781
+ "base_price": "1.00",
782
+ "variant": [],
783
+ "category": [
784
+ {
785
+ "id": 813,
786
+ "name": "报价单预约party",
787
+ "icon": "",
788
+ "slug": "报价单预约party",
789
+ "sort": 133
790
+ }
791
+ ],
792
+ "_schedules": {
793
+ "minTime": "2024-12-31T16:00:00.000Z",
794
+ "maxTime": "2026-01-11T15:59:59.000Z",
795
+ "str": "全天"
796
+ }
797
+ }
798
+ ]
799
+ }
800
+ ]
801
+ },
802
+ holder: [
803
+ {
804
+ id: 1,
805
+ name: "holder1",
806
+ avatar: "https://picsum.photos/200/300"
807
+ },
808
+ {
809
+ id: 2,
810
+ name: "holder1",
811
+ avatar: "https://picsum.photos/200/300"
812
+ },
813
+ {
814
+ id: 3,
815
+ name: "holder1",
816
+ avatar: "https://picsum.photos/200/300"
817
+ },
818
+ {
819
+ id: 4,
820
+ name: "holder1",
821
+ avatar: "https://picsum.photos/200/300"
822
+ }
823
+ ],
824
+ service_list: [
825
+ {
826
+ key: "1",
827
+ title: "分类1",
828
+ href: "#1",
829
+ children: [{
830
+ title: 'Product Title showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div>',
831
+ subtitle: "Product Subtitle",
832
+ description: "Product Description",
833
+ price: 20,
834
+ origin_price: 30,
835
+ image: "https://picsum.photos/200/300",
836
+ id: 1,
837
+ currency: "&"
838
+ }, {
839
+ title: "Product Title2",
840
+ subtitle: "Product Subtitle",
841
+ description: "Product Description",
842
+ price: 20,
843
+ origin_price: 30,
844
+ image: "https://picsum.photos/200/300",
845
+ id: 2,
846
+ currency: "&"
847
+ }]
848
+ },
849
+ {
850
+ key: "2",
851
+ title: "分类2",
852
+ href: "#2",
853
+ children: [{
854
+ title: 'Product Title showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div> showName && <div className="pisell-product-card-name">{title}</div>',
855
+ subtitle: "Product Subtitle",
856
+ description: "Product Description",
857
+ price: 20,
858
+ origin_price: 30,
859
+ image: "https://picsum.photos/200/300",
860
+ id: 3,
861
+ currency: "&"
862
+ }]
863
+ }
864
+ ],
865
+ calendar: [
866
+ { date: "2024-02-15", status: "lotsOfSpace" },
867
+ { date: "2024-02-16", status: "fillingUpFast" },
868
+ { date: "2024-02-17", status: "callToBook" },
869
+ { date: "2024-02-18", status: "unavailable" },
870
+ { date: "2024-02-19", status: "lotsOfSpace" },
871
+ { date: "2024-02-20", status: "soldOut" }
872
+ ],
873
+ availability_calendar: {
874
+ detail: {
875
+ "id": 57887,
876
+ "extension_type": "product_party",
877
+ "shop_id": 9,
878
+ "slug": "party商品aaba",
879
+ "title": "party商品Aaba",
880
+ "subtitle": "配货商品名字超长1",
881
+ "description": "<p>12323</p>",
882
+ "status": "published",
883
+ "stock_quantity": 1e5,
884
+ "sum_stock": 1122313,
885
+ "sales_quantity": 22,
886
+ "price": "12.00",
887
+ "original_price": "23.00",
888
+ "cover": "",
889
+ "type": "physical",
890
+ "is_track": 1,
891
+ "is_gst": 1,
892
+ "over_sold": 1,
893
+ "is_recommend": 0,
894
+ "channel_id": 0,
895
+ "shop_status": "show",
896
+ "audit_status": "online",
897
+ "is_delivery": 0,
898
+ "weight_unit": "KILOGRAMS",
899
+ "weight_value": "0.00",
900
+ "channel_application": [
901
+ "online-store",
902
+ "pos",
903
+ "kiosk"
904
+ ],
905
+ "shop_update_time": "2024-12-05 10:30:42",
906
+ "unit": "",
907
+ "source_shop_id": 0,
908
+ "sort": 9999999,
909
+ "seo": {
910
+ "title": "party商品Aaba",
911
+ "is_set_title": 0,
912
+ "description": "<p>12323</p>",
913
+ "is_set_desc": 0,
914
+ "keywords": "party商品,测试定金商品组-party商品,测试类别名称,不等于,party主商品,10/19,10/192",
915
+ "is_set_keywords": 0
916
+ },
917
+ "cut_off_time": {
918
+ "unit": 1,
919
+ "unit_type": "days",
920
+ "future_day": 365
921
+ },
922
+ "schedule.ids": [
923
+ 753,
924
+ 752,
925
+ 755,
926
+ 754
927
+ ],
928
+ "schedule.times_limit": [
929
+ {
930
+ "schedule_id": 754,
931
+ "times_id": 0,
932
+ "start_time": "",
933
+ "end_time": "",
934
+ "max_participants_type": "no-limit",
935
+ "max_participants_limit": 0
936
+ },
937
+ {
938
+ "schedule_id": 753,
939
+ "times_id": 318,
940
+ "start_time": "00:00",
941
+ "end_time": "07:00",
942
+ "max_participants_type": "no-limit",
943
+ "max_participants_limit": 0
944
+ },
945
+ {
946
+ "schedule_id": 752,
947
+ "times_id": 317,
948
+ "start_time": "00:00",
949
+ "end_time": "07:00",
950
+ "max_participants_type": "no-limit",
951
+ "max_participants_limit": 0
952
+ },
953
+ {
954
+ "schedule_id": 755,
955
+ "times_id": 319,
956
+ "start_time": "00:00",
957
+ "end_time": "08:00",
958
+ "max_participants_type": "exclusive",
959
+ "max_participants_limit": 1
960
+ },
961
+ {
962
+ "schedule_id": 755,
963
+ "times_id": 320,
964
+ "start_time": "09:00",
965
+ "end_time": "11:00",
966
+ "max_participants_type": "no-limit",
967
+ "max_participants_limit": 0
968
+ }
969
+ ],
970
+ "shelf_product_datas": [],
971
+ "step_value": 1,
972
+ "min_num_unit": 1,
973
+ "is_grey": 0,
974
+ "is_eject": 1,
975
+ "share_url": "https://aa269b.mypisell-dev.cn/product-detail?id=57887",
976
+ "token_check_msg": "",
977
+ "is_charge_tax": 1,
978
+ "base_price": "12.00",
979
+ "media": [],
980
+ "tag": [],
981
+ "vendor": [],
982
+ "category": [
983
+ {
984
+ "id": 808,
985
+ "shop_id": 9,
986
+ "parent_id": 0,
987
+ "name": "party商品",
988
+ "slug": "party商品",
989
+ "icon": "",
990
+ "status": "published",
991
+ "last_applicable_time": 1733365843,
992
+ "sort": 132,
993
+ "create_account_id": 7,
994
+ "update_account_id": 6,
995
+ "created_at": "2023-02-06 10:06:24",
996
+ "updated_at": "2024-12-05 10:30:43"
997
+ }
998
+ ],
999
+ "collection": [
1000
+ {
1001
+ "id": 182,
1002
+ "shop_id": 9,
1003
+ "title": "测试定金商品组-party商品",
1004
+ "title_letter": "C",
1005
+ "description": "<p>22</p>",
1006
+ "cover": "",
1007
+ "rule_type": "or",
1008
+ "rule": [
1009
+ {
1010
+ "class": "extensionType",
1011
+ "value": "product_party",
1012
+ "operator": "eq"
1013
+ }
1014
+ ],
1015
+ "product_quantity": 103,
1016
+ "type": "auto",
1017
+ "order_type": "",
1018
+ "disabled": 0,
1019
+ "create_account_id": 270,
1020
+ "update_account_id": 7,
1021
+ "created_at": "2023-02-02 23:52:00",
1022
+ "updated_at": "2024-11-28 10:40:41"
1023
+ },
1024
+ {
1025
+ "id": 201,
1026
+ "shop_id": 9,
1027
+ "title": "测试类别名称",
1028
+ "title_letter": "C",
1029
+ "description": null,
1030
+ "cover": "",
1031
+ "rule_type": "and",
1032
+ "rule": [
1033
+ {
1034
+ "class": "category",
1035
+ "value": "库存预警",
1036
+ "operator": "not_contain"
1037
+ }
1038
+ ],
1039
+ "product_quantity": 4041,
1040
+ "type": "auto",
1041
+ "order_type": "",
1042
+ "disabled": 0,
1043
+ "create_account_id": 270,
1044
+ "update_account_id": 270,
1045
+ "created_at": "2023-06-08 11:35:53",
1046
+ "updated_at": "2025-01-09 14:00:54"
1047
+ },
1048
+ {
1049
+ "id": 206,
1050
+ "shop_id": 9,
1051
+ "title": "不等于",
1052
+ "title_letter": "B",
1053
+ "description": null,
1054
+ "cover": "",
1055
+ "rule_type": "and",
1056
+ "rule": [
1057
+ {
1058
+ "class": "categoryId",
1059
+ "value": 904,
1060
+ "operator": "neq"
1061
+ },
1062
+ {
1063
+ "class": "categoryId",
1064
+ "value": 474,
1065
+ "operator": "neq"
1066
+ },
1067
+ {
1068
+ "class": "categoryId",
1069
+ "value": 773,
1070
+ "operator": "neq"
1071
+ }
1072
+ ],
1073
+ "product_quantity": 3817,
1074
+ "type": "auto",
1075
+ "order_type": "",
1076
+ "disabled": 0,
1077
+ "create_account_id": 6,
1078
+ "update_account_id": 6,
1079
+ "created_at": "2023-07-10 10:56:56",
1080
+ "updated_at": "2025-01-09 14:00:54"
1081
+ },
1082
+ {
1083
+ "id": 229,
1084
+ "shop_id": 9,
1085
+ "title": "party主商品",
1086
+ "title_letter": "P",
1087
+ "description": null,
1088
+ "cover": "",
1089
+ "rule_type": "and",
1090
+ "rule": [
1091
+ {
1092
+ "class": "extensionType",
1093
+ "value": "product_party",
1094
+ "operator": "eq"
1095
+ }
1096
+ ],
1097
+ "product_quantity": 103,
1098
+ "type": "auto",
1099
+ "order_type": "",
1100
+ "disabled": 0,
1101
+ "create_account_id": 6,
1102
+ "update_account_id": 6,
1103
+ "created_at": "2024-02-20 10:11:32",
1104
+ "updated_at": "2024-11-28 10:40:38"
1105
+ },
1106
+ {
1107
+ "id": 223,
1108
+ "shop_id": 9,
1109
+ "title": "party商品",
1110
+ "title_letter": "P",
1111
+ "description": null,
1112
+ "cover": "",
1113
+ "rule_type": "and",
1114
+ "rule": [
1115
+ {
1116
+ "class": "extensionType",
1117
+ "value": "product_party",
1118
+ "operator": "eq"
1119
+ }
1120
+ ],
1121
+ "product_quantity": 103,
1122
+ "type": "auto",
1123
+ "order_type": "",
1124
+ "disabled": 0,
1125
+ "create_account_id": 6,
1126
+ "update_account_id": 6,
1127
+ "created_at": "2023-08-18 11:48:42",
1128
+ "updated_at": "2024-11-28 10:40:38"
1129
+ },
1130
+ {
1131
+ "id": 261,
1132
+ "shop_id": 9,
1133
+ "title": "10/19",
1134
+ "title_letter": "",
1135
+ "description": null,
1136
+ "cover": "",
1137
+ "rule_type": "or",
1138
+ "rule": [
1139
+ {
1140
+ "class": "productName",
1141
+ "value": "规格",
1142
+ "operator": "contain"
1143
+ },
1144
+ {
1145
+ "class": "productName",
1146
+ "value": "无规格1",
1147
+ "operator": "eq"
1148
+ },
1149
+ {
1150
+ "class": "productName",
1151
+ "value": "商品",
1152
+ "operator": "contain"
1153
+ }
1154
+ ],
1155
+ "product_quantity": 693,
1156
+ "type": "auto",
1157
+ "order_type": "",
1158
+ "disabled": 0,
1159
+ "create_account_id": 390,
1160
+ "update_account_id": 390,
1161
+ "created_at": "2024-10-19 09:44:45",
1162
+ "updated_at": "2025-01-09 14:00:54"
1163
+ },
1164
+ {
1165
+ "id": 262,
1166
+ "shop_id": 9,
1167
+ "title": "10/192",
1168
+ "title_letter": "",
1169
+ "description": null,
1170
+ "cover": "",
1171
+ "rule_type": "or",
1172
+ "rule": [
1173
+ {
1174
+ "class": "productName",
1175
+ "value": "无规格1",
1176
+ "operator": "contain"
1177
+ },
1178
+ {
1179
+ "class": "productName",
1180
+ "value": "商品",
1181
+ "operator": "contain"
1182
+ }
1183
+ ],
1184
+ "product_quantity": 458,
1185
+ "type": "auto",
1186
+ "order_type": "",
1187
+ "disabled": 0,
1188
+ "create_account_id": 390,
1189
+ "update_account_id": 390,
1190
+ "created_at": "2024-10-19 09:45:47",
1191
+ "updated_at": "2025-01-09 13:22:17"
1192
+ }
1193
+ ],
1194
+ "variant_group": [],
1195
+ "option_group": [],
1196
+ "variant": [],
1197
+ "shop": {
1198
+ "id": 9,
1199
+ "name": "Devtest shop",
1200
+ "default_domain": "aa269b.mypisell-dev.cn",
1201
+ "default_url": "https://aa269b.mypisell-dev.cn"
1202
+ },
1203
+ "bundle_group": []
1204
+ },
1205
+ currentDate: "2025-01-14",
1206
+ cutTime: {
1207
+ "shop_time": "2025-01-14 17:58:24",
1208
+ "unit": 1,
1209
+ "unit_type": "days",
1210
+ "future_day": 365
1211
+ },
1212
+ limitData: {
1213
+ "2025-01-12": {
1214
+ "date": "2025-01-12",
1215
+ "times": [
1216
+ {
1217
+ "start_at": "2025-01-12 00:00",
1218
+ "end_at": "2025-01-12 07:00",
1219
+ "limit": 0,
1220
+ "order_count": 3,
1221
+ "is_all": 0
1222
+ },
1223
+ {
1224
+ "start_at": "2025-01-12 00:00",
1225
+ "end_at": "2025-01-12 23:59",
1226
+ "limit": 0,
1227
+ "order_count": 3,
1228
+ "is_all": 1
1229
+ }
1230
+ ]
1231
+ },
1232
+ "2025-01-13": {
1233
+ "date": "2025-01-13",
1234
+ "times": [
1235
+ {
1236
+ "start_at": "2025-01-13 00:00",
1237
+ "end_at": "2025-01-13 07:00",
1238
+ "limit": 0,
1239
+ "order_count": 4,
1240
+ "is_all": 0
1241
+ },
1242
+ {
1243
+ "start_at": "2025-01-13 00:00",
1244
+ "end_at": "2025-01-13 23:59",
1245
+ "limit": 0,
1246
+ "order_count": 4,
1247
+ "is_all": 1
1248
+ }
1249
+ ]
1250
+ },
1251
+ "2025-01-14": {
1252
+ "date": "2025-01-14",
1253
+ "times": [
1254
+ {
1255
+ "start_at": "2025-01-14 00:00",
1256
+ "end_at": "2025-01-14 07:00",
1257
+ "limit": 0,
1258
+ "order_count": 4,
1259
+ "is_all": 0
1260
+ },
1261
+ {
1262
+ "start_at": "2025-01-14 00:00",
1263
+ "end_at": "2025-01-14 23:59",
1264
+ "limit": 0,
1265
+ "order_count": 4,
1266
+ "is_all": 1
1267
+ }
1268
+ ]
1269
+ },
1270
+ "2025-01-15": {
1271
+ "date": "2025-01-15",
1272
+ "times": [
1273
+ {
1274
+ "start_at": "2025-01-15 00:00",
1275
+ "end_at": "2025-01-15 07:00",
1276
+ "limit": 0,
1277
+ "order_count": 4,
1278
+ "is_all": 0
1279
+ },
1280
+ {
1281
+ "start_at": "2025-01-15 00:00",
1282
+ "end_at": "2025-01-15 23:59",
1283
+ "limit": 0,
1284
+ "order_count": 4,
1285
+ "is_all": 1
1286
+ }
1287
+ ]
1288
+ },
1289
+ "2025-01-16": {
1290
+ "date": "2025-01-16",
1291
+ "times": [
1292
+ {
1293
+ "start_at": "2025-01-16 00:00",
1294
+ "end_at": "2025-01-16 07:00",
1295
+ "limit": 0,
1296
+ "order_count": 3,
1297
+ "is_all": 0
1298
+ },
1299
+ {
1300
+ "start_at": "2025-01-16 00:00",
1301
+ "end_at": "2025-01-16 23:59",
1302
+ "limit": 0,
1303
+ "order_count": 3,
1304
+ "is_all": 1
1305
+ }
1306
+ ]
1307
+ },
1308
+ "2025-01-17": {
1309
+ "date": "2025-01-17",
1310
+ "times": [
1311
+ {
1312
+ "start_at": "2025-01-17 00:00",
1313
+ "end_at": "2025-01-17 07:00",
1314
+ "limit": 0,
1315
+ "order_count": 3,
1316
+ "is_all": 0
1317
+ },
1318
+ {
1319
+ "start_at": "2025-01-17 00:00",
1320
+ "end_at": "2025-01-17 23:59",
1321
+ "limit": 0,
1322
+ "order_count": 3,
1323
+ "is_all": 1
1324
+ }
1325
+ ]
1326
+ },
1327
+ "2025-01-18": {
1328
+ "date": "2025-01-18",
1329
+ "times": [
1330
+ {
1331
+ "start_at": "2025-01-18 00:00",
1332
+ "end_at": "2025-01-18 07:00",
1333
+ "limit": 0,
1334
+ "order_count": 3,
1335
+ "is_all": 0
1336
+ },
1337
+ {
1338
+ "start_at": "2025-01-18 00:00",
1339
+ "end_at": "2025-01-18 23:59",
1340
+ "limit": 0,
1341
+ "order_count": 3,
1342
+ "is_all": 1
1343
+ }
1344
+ ]
1345
+ }
1346
+ }
1347
+ }
1348
+ };
1349
+ // Annotate the CommonJS export names for ESM import in node:
1350
+ 0 && (module.exports = {
1351
+ mock
1352
+ });