@floristcloud/api-lib 1.0.2 → 1.0.3

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 (573) hide show
  1. package/build/commands/action-log/create-action-log.command.d.ts +1439 -0
  2. package/build/commands/action-log/get-action-log-list-for-client.query.d.ts +1888 -0
  3. package/build/commands/action-log/get-action-log-list.query.d.ts +1893 -0
  4. package/build/commands/action-log/index.d.ts +3 -0
  5. package/build/commands/auth/index.d.ts +7 -0
  6. package/build/commands/auth/login-user.command.d.ts +51 -0
  7. package/build/commands/auth/register-user.command.d.ts +41 -0
  8. package/build/commands/auth/reset-password-by-admin.command.d.ts +19 -0
  9. package/build/commands/auth/reset-password-by-security-code.command.d.ts +77 -0
  10. package/build/commands/auth/reset-password-by-token.command.d.ts +97 -0
  11. package/build/commands/auth/reset-password-by-user.command.d.ts +19 -0
  12. package/build/commands/auth/restore-password-by-security-code.command.d.ts +39 -0
  13. package/build/commands/branch/create-branch.command.d.ts +100 -0
  14. package/build/commands/branch/delete-branch.command.d.ts +32 -0
  15. package/build/commands/branch/get-branch-list-all-by-client-uuid.query.d.ts +115 -0
  16. package/build/commands/branch/get-branch-list.query.d.ts +124 -0
  17. package/build/commands/branch/get-branch.query.d.ts +76 -0
  18. package/build/commands/branch/index.d.ts +6 -0
  19. package/build/commands/branch/update-branch.command.d.ts +100 -0
  20. package/build/commands/category/create-category.command.d.ts +84 -0
  21. package/build/commands/category/delete-category.command.d.ts +32 -0
  22. package/build/commands/category/get-category-by-uuid.query.d.ts +126 -0
  23. package/build/commands/category/get-category-list.query.d.ts +194 -0
  24. package/build/commands/category/index.d.ts +5 -0
  25. package/build/commands/category/update-category-command.d.ts +88 -0
  26. package/build/commands/category/webshop/get-category-list-for-client.query.d.ts +118 -0
  27. package/build/commands/category-alias/create-category-alias.command.d.ts +62 -0
  28. package/build/commands/category-alias/delete-category-alias.command.d.ts +32 -0
  29. package/build/commands/category-alias/get-category-alias-by-uuid.query.d.ts +62 -0
  30. package/build/commands/category-alias/get-category-alias-list-by-category-uuid.query.d.ts +58 -0
  31. package/build/commands/category-alias/get-category-alias-list.query.d.ts +64 -0
  32. package/build/commands/category-alias/index.d.ts +1 -0
  33. package/build/commands/category-alias/update-category-alias.command.d.ts +65 -0
  34. package/build/commands/category-template/create-category-template.command.d.ts +116 -0
  35. package/build/commands/category-template/get-category-template-by-uuid.query.d.ts +80 -0
  36. package/build/commands/category-template/get-category-template-list.query.d.ts +80 -0
  37. package/build/commands/category-template/index.d.ts +4 -0
  38. package/build/commands/category-template/update-category-template.command.d.ts +116 -0
  39. package/build/commands/client/attach-user-to-client.command.d.ts +152 -0
  40. package/build/commands/client/create-client.command.d.ts +202 -0
  41. package/build/commands/client/delete-client.command.d.ts +32 -0
  42. package/build/commands/client/detach-user-from-client.command.d.ts +146 -0
  43. package/build/commands/client/get-client-calculate.query.d.ts +39 -0
  44. package/build/commands/client/get-client-filters-values.query.d.ts +31 -0
  45. package/build/commands/client/get-client-list.query.d.ts +1257 -0
  46. package/build/commands/client/get-client.query.d.ts +938 -0
  47. package/build/commands/client/import-client.command.d.ts +75 -0
  48. package/build/commands/client/index.d.ts +17 -0
  49. package/build/commands/client/marking/create-client-marking.command.d.ts +37 -0
  50. package/build/commands/client/marking/delete-client-marking.command.d.ts +31 -0
  51. package/build/commands/client/marking/get-client-marking-by-client-list.command.d.ts +22 -0
  52. package/build/commands/client/marking/update-client-marking.command.d.ts +37 -0
  53. package/build/commands/client/profile/create-client-individual-profile.command.d.ts +71 -0
  54. package/build/commands/client/profile/create-client-legal-profile.command.d.ts +162 -0
  55. package/build/commands/client/profile/delete-client-individual-profile.command.d.ts +26 -0
  56. package/build/commands/client/profile/delete-client-legal-profile.command.d.ts +26 -0
  57. package/build/commands/client/profile/get-client-individual-profile.query.d.ts +62 -0
  58. package/build/commands/client/profile/index.d.ts +7 -0
  59. package/build/commands/client/profile/update-client-individual-profile.command.d.ts +71 -0
  60. package/build/commands/client/profile/update-client-legal-profile.command.d.ts +162 -0
  61. package/build/commands/client/set-balance-calculate-client.command.d.ts +144 -0
  62. package/build/commands/client/update-client.command.d.ts +208 -0
  63. package/build/commands/client/webshop/register-client-webshop.command.d.ts +168 -0
  64. package/build/commands/client/webshop/update-client-for-client.command.d.ts +164 -0
  65. package/build/commands/company/createCompany.command.d.ts +341 -0
  66. package/build/commands/company/createCompanyWithUser.command.d.ts +105 -0
  67. package/build/commands/company/deleteCompany.command.d.ts +32 -0
  68. package/build/commands/company/getCompany.query.d.ts +62 -0
  69. package/build/commands/company/getCompanyList.query.d.ts +96 -0
  70. package/build/commands/company/index.d.ts +6 -0
  71. package/build/commands/company/updateCompany.command.d.ts +62 -0
  72. package/build/commands/consignment/create-consignment.command.d.ts +119 -0
  73. package/build/commands/consignment/delete-consignment.command.d.ts +32 -0
  74. package/build/commands/consignment/export-consignment.command.d.ts +32 -0
  75. package/build/commands/consignment/get-access-clients-consignment.query.d.ts +144 -0
  76. package/build/commands/consignment/get-client-uuids-consignment.query.d.ts +24 -0
  77. package/build/commands/consignment/get-consignment-filters-values.query.d.ts +26 -0
  78. package/build/commands/consignment/get-consignment-list.query.d.ts +242 -0
  79. package/build/commands/consignment/get-consignment.query.d.ts +159 -0
  80. package/build/commands/consignment/import-consignment.command.d.ts +159 -0
  81. package/build/commands/consignment/import-packing-consignment.command.d.ts +123 -0
  82. package/build/commands/consignment/index.d.ts +13 -0
  83. package/build/commands/consignment/update-consignment.command.d.ts +119 -0
  84. package/build/commands/consignment/upsert-access-clients-consignment.command.d.ts +300 -0
  85. package/build/commands/consignment/validate-consignment-distribution.query.d.ts +1997 -0
  86. package/build/commands/consignment-import-schema/create-consignment-import-scheme.command.d.ts +60 -0
  87. package/build/commands/consignment-import-schema/get-all-consignment-import-schema.query.d.ts +88 -0
  88. package/build/commands/consignment-import-schema/get-cosignment-import-schema.query.d.ts +88 -0
  89. package/build/commands/consignment-import-schema/index.d.ts +2 -0
  90. package/build/commands/consignment-import-schema/update-consignment-import-schema.command.d.ts +47 -0
  91. package/build/commands/delivery-route/attach-order-list-to-delivery-route.command.d.ts +32 -0
  92. package/build/commands/delivery-route/create-delivery-route.command.d.ts +84 -0
  93. package/build/commands/delivery-route/delete-delivery-route.command.d.ts +24 -0
  94. package/build/commands/delivery-route/detach-order-list-to-delivery-route.command.d.ts +32 -0
  95. package/build/commands/delivery-route/get-delivery-route-list.query.d.ts +280 -0
  96. package/build/commands/delivery-route/get-delivery-route.query.d.ts +190 -0
  97. package/build/commands/delivery-route/index.d.ts +7 -0
  98. package/build/commands/delivery-route/update-delivery-route.command.d.ts +87 -0
  99. package/build/commands/discount-rules/create-discount-rules.command.d.ts +649 -0
  100. package/build/commands/discount-rules/delete-discount-rules.command.d.ts +24 -0
  101. package/build/commands/discount-rules/get-discount-rules-all.query.d.ts +286 -0
  102. package/build/commands/discount-rules/get-discount-rules-extended.query.d.ts +1213 -0
  103. package/build/commands/discount-rules/get-discount-rules-list.query.d.ts +391 -0
  104. package/build/commands/discount-rules/get-discount-rules.query.d.ts +347 -0
  105. package/build/commands/discount-rules/index.d.ts +9 -0
  106. package/build/commands/discount-rules/split-quantity-discount-rules-for-client.query.d.ts +71 -0
  107. package/build/commands/discount-rules/split-quantity-discount-rules.query.d.ts +73 -0
  108. package/build/commands/discount-rules/update-discount-rules.command.d.ts +662 -0
  109. package/build/commands/distribution/create-distribution.command.d.ts +72 -0
  110. package/build/commands/distribution/index.d.ts +3 -0
  111. package/build/commands/distribution/update-is-packed-distribution.command.d.ts +72 -0
  112. package/build/commands/distribution/validate-distribution-by-product.query.d.ts +36 -0
  113. package/build/commands/domain/create-domain.command.d.ts +60 -0
  114. package/build/commands/domain/delete-domain.command.d.ts +24 -0
  115. package/build/commands/domain/get-domain-by-uuid.query.d.ts +49 -0
  116. package/build/commands/domain/get-domain-list.query.d.ts +89 -0
  117. package/build/commands/domain/index.d.ts +5 -0
  118. package/build/commands/domain/update-domain.command.d.ts +57 -0
  119. package/build/commands/employee-schedule/create-employee-schedule.command.d.ts +92 -0
  120. package/build/commands/employee-schedule/delete-employee-schedule.command.d.ts +24 -0
  121. package/build/commands/employee-schedule/get-employee-schedule-extended-list.query.d.ts +237 -0
  122. package/build/commands/employee-schedule/get-employee-schedule-list.query.d.ts +133 -0
  123. package/build/commands/employee-schedule/index.d.ts +5 -0
  124. package/build/commands/employee-schedule/update-employee-schedule.command.d.ts +92 -0
  125. package/build/commands/file/deleteFile.command.d.ts +32 -0
  126. package/build/commands/file/deleteFile.command.js +1 -1
  127. package/build/commands/file/index.d.ts +2 -0
  128. package/build/commands/file/uploadFile.command.d.ts +11 -0
  129. package/build/commands/index.d.ts +44 -0
  130. package/build/commands/message/get-clients-messages-context-with-unread.query.d.ts +116 -0
  131. package/build/commands/message/get-context-unread-count.query.d.ts +39 -0
  132. package/build/commands/message/get-contexts-with-unread.query.d.ts +134 -0
  133. package/build/commands/message/index.d.ts +6 -0
  134. package/build/commands/message/list-context-messages.query.d.ts +152 -0
  135. package/build/commands/message/mark-context-read.command.d.ts +39 -0
  136. package/build/commands/message/send-context-message.command.d.ts +95 -0
  137. package/build/commands/money-account/create-money-account.command.d.ts +76 -0
  138. package/build/commands/money-account/delete-money-account.command.d.ts +24 -0
  139. package/build/commands/money-account/get-money-account-by-criteria.query.d.ts +61 -0
  140. package/build/commands/money-account/get-money-account-list.query.d.ts +103 -0
  141. package/build/commands/money-account/get-money-account.query.d.ts +59 -0
  142. package/build/commands/money-account/index.d.ts +6 -0
  143. package/build/commands/money-account/update-money-account.command.d.ts +78 -0
  144. package/build/commands/order/apply-order-discount.command.d.ts +32 -0
  145. package/build/commands/order/copy-order.command.d.ts +159 -0
  146. package/build/commands/order/create-order.command.d.ts +228 -0
  147. package/build/commands/order/delete-order.command.d.ts +24 -0
  148. package/build/commands/order/export-order-invoice.command.d.ts +14 -0
  149. package/build/commands/order/get-order-list.query.d.ts +864 -0
  150. package/build/commands/order/get-order.query.d.ts +578 -0
  151. package/build/commands/order/group/deletet-group-order.command.d.ts +32 -0
  152. package/build/commands/order/group/split-group-order.command.d.ts +167 -0
  153. package/build/commands/order/group/update-group-order-status.command.d.ts +36 -0
  154. package/build/commands/order/group/update-group-order-tag.command.d.ts +35 -0
  155. package/build/commands/order/group/update-group-order-type.command.d.ts +36 -0
  156. package/build/commands/order/index.d.ts +20 -0
  157. package/build/commands/order/send-order-invoice.command.d.ts +33 -0
  158. package/build/commands/order/update-order.command.d.ts +198 -0
  159. package/build/commands/order/webshop/create-cart.command.d.ts +153 -0
  160. package/build/commands/order/webshop/get-order-for-client.query.d.ts +498 -0
  161. package/build/commands/order/webshop/get-order-list-for-client.query.d.ts +705 -0
  162. package/build/commands/order/webshop/get-order-sales-by-month.query.d.ts +22 -0
  163. package/build/commands/order/webshop/update-cart.command.d.ts +185 -0
  164. package/build/commands/order/zeroing-receipt-delivery-order.command.d.ts +24 -0
  165. package/build/commands/order-delivery/create-order-delivery.command.d.ts +74 -0
  166. package/build/commands/order-delivery/delete-order-delivery.command.d.ts +26 -0
  167. package/build/commands/order-delivery/index.d.ts +3 -0
  168. package/build/commands/order-delivery/update-order-delivery.command.d.ts +78 -0
  169. package/build/commands/order-product/create-order-product.command.d.ts +347 -0
  170. package/build/commands/order-product/delete-order-product.command.d.ts +26 -0
  171. package/build/commands/order-product/get-order-product-list-all.query.d.ts +1378 -0
  172. package/build/commands/order-product/get-order-product-list-for-distribute.query.d.ts +1162 -0
  173. package/build/commands/order-product/get-order-product-list.query.d.ts +1390 -0
  174. package/build/commands/order-product/get-order-product.query.d.ts +1077 -0
  175. package/build/commands/order-product/group/delete-group-order-product.command.d.ts +32 -0
  176. package/build/commands/order-product/group/update-group-order-product-order.command.d.ts +56 -0
  177. package/build/commands/order-product/group/update-group-order-product-tag.command.d.ts +35 -0
  178. package/build/commands/order-product/group/verify-group-order-product.command.d.ts +35 -0
  179. package/build/commands/order-product/group/zeroing-receipt-order-product.command.d.ts +32 -0
  180. package/build/commands/order-product/index.d.ts +15 -0
  181. package/build/commands/order-product/update-order-product.command.d.ts +350 -0
  182. package/build/commands/order-product/verify-order-product.command.d.ts +326 -0
  183. package/build/commands/order-product/webshop/create-order-product-for-client.command.d.ts +323 -0
  184. package/build/commands/order-product/webshop/get-order-product-for-client-list.query.d.ts +670 -0
  185. package/build/commands/order-product/webshop/update-order-product-for-client.command.d.ts +326 -0
  186. package/build/commands/package/create-package.command.d.ts +96 -0
  187. package/build/commands/package/delete-package.command.d.ts +26 -0
  188. package/build/commands/package/get-package-by-uuid.query.d.ts +71 -0
  189. package/build/commands/package/get-package-filters-values.query.d.ts +99 -0
  190. package/build/commands/package/get-package-list.query.d.ts +753 -0
  191. package/build/commands/package/index.d.ts +7 -0
  192. package/build/commands/package/reorder-packages.command.d.ts +47 -0
  193. package/build/commands/package/update-package.command.d.ts +91 -0
  194. package/build/commands/package/validate-product-package.query.d.ts +36 -0
  195. package/build/commands/pre-order/create-order-from-pre-order.command.d.ts +240 -0
  196. package/build/commands/pre-order/create-pre-order.command.d.ts +79 -0
  197. package/build/commands/pre-order/delete-pre-order.command.d.ts +24 -0
  198. package/build/commands/pre-order/get-pre-order-by-pre-order-collection-uuid.command.d.ts +56 -0
  199. package/build/commands/pre-order/get-pre-order-list.query.d.ts +587 -0
  200. package/build/commands/pre-order/get-pre-order.query.d.ts +415 -0
  201. package/build/commands/pre-order/get-standing-order-import-template.command.d.ts +21 -0
  202. package/build/commands/pre-order/group/analyze-copy-pre-orders.command.d.ts +4582 -0
  203. package/build/commands/pre-order/group/analyze-create-orders-from-pre-orders.command.d.ts +3665 -0
  204. package/build/commands/pre-order/group/analyze-create-pre-orders-from-standing-orders.command.d.ts +2784 -0
  205. package/build/commands/pre-order/group/group-copy-pre-orders-to-collection.command.d.ts +221 -0
  206. package/build/commands/pre-order/group/group-create-orders-from-pre-orders.command.d.ts +415 -0
  207. package/build/commands/pre-order/group/group-create-pre-orders-from-standing-orders.command.d.ts +230 -0
  208. package/build/commands/pre-order/group/group-delete-pre-order.command.d.ts +32 -0
  209. package/build/commands/pre-order/group/group-update-pre-order.command.d.ts +65 -0
  210. package/build/commands/pre-order/group/index.d.ts +9 -0
  211. package/build/commands/pre-order/import-standing-order.command.d.ts +132 -0
  212. package/build/commands/pre-order/index.d.ts +12 -0
  213. package/build/commands/pre-order/update-pre-order.command.d.ts +79 -0
  214. package/build/commands/pre-order/webshop/checkout-pre-order-webshop.command.d.ts +61 -0
  215. package/build/commands/pre-order/webshop/create-pre-order-webshop.command.d.ts +73 -0
  216. package/build/commands/pre-order/webshop/delete-pre-order-webshop.command.d.ts +24 -0
  217. package/build/commands/pre-order/webshop/get-pre-order-list-webshop.command.d.ts +569 -0
  218. package/build/commands/pre-order/webshop/index.d.ts +5 -0
  219. package/build/commands/pre-order/webshop/update-pre-order-webshop.command.d.ts +70 -0
  220. package/build/commands/pre-order-collection/copy-pre-order-collection.command.d.ts +59 -0
  221. package/build/commands/pre-order-collection/create-pre-order-collection.command.d.ts +85 -0
  222. package/build/commands/pre-order-collection/delete-pre-order-collection.command.d.ts +24 -0
  223. package/build/commands/pre-order-collection/get-pre-order-collection-all.query.d.ts +59 -0
  224. package/build/commands/pre-order-collection/get-pre-order-collection-list.query.d.ts +168 -0
  225. package/build/commands/pre-order-collection/get-pre-order-collection.query.d.ts +99 -0
  226. package/build/commands/pre-order-collection/index.d.ts +8 -0
  227. package/build/commands/pre-order-collection/match-images-for-collection.command.d.ts +40 -0
  228. package/build/commands/pre-order-collection/update-pre-order-collection.command.d.ts +85 -0
  229. package/build/commands/pre-order-collection/webshop/get-pre-order-collection-list-with-categories.query.d.ts +85 -0
  230. package/build/commands/pre-order-collection-item/create-group-pre-order-collection-item.command.d.ts +101 -0
  231. package/build/commands/pre-order-collection-item/create-pre-order-collection-item.command.d.ts +236 -0
  232. package/build/commands/pre-order-collection-item/delete-group-pre-order-collection-item.command.d.ts +37 -0
  233. package/build/commands/pre-order-collection-item/delete-pre-order-collection-item.command.d.ts +24 -0
  234. package/build/commands/pre-order-collection-item/execute-pre-order-collection-item-update.command.d.ts +226 -0
  235. package/build/commands/pre-order-collection-item/export-pre-order-collection-item-with-clients-horizontal.query.d.ts +26 -0
  236. package/build/commands/pre-order-collection-item/export-pre-order-collection-item-with-clients-vertical.query.d.ts +33 -0
  237. package/build/commands/pre-order-collection-item/get-active-pre-order-collection-item-list.query.d.ts +693 -0
  238. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-extended-with-clients-pre-order-product-list.query.d.ts +1031 -0
  239. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-filter-values-for-client.query.d.ts +85 -0
  240. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-filter-values.query.d.ts +77 -0
  241. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-for-client.query.d.ts +760 -0
  242. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list.query.d.ts +708 -0
  243. package/build/commands/pre-order-collection-item/get-pre-order-collection-item.query.d.ts +504 -0
  244. package/build/commands/pre-order-collection-item/index.d.ts +23 -0
  245. package/build/commands/pre-order-collection-item/multiplicity-option/create-pre-order-collection-item-multiplicity-option.command.d.ts +61 -0
  246. package/build/commands/pre-order-collection-item/multiplicity-option/delete-pre-order-collection-item-multiplicity-option.command.d.ts +26 -0
  247. package/build/commands/pre-order-collection-item/multiplicity-option/get-pre-order-collection-item-multiplicity-option-titles.query.d.ts +16 -0
  248. package/build/commands/pre-order-collection-item/multiplicity-option/get-pre-order-collection-item-multiplicity-options.query.d.ts +68 -0
  249. package/build/commands/pre-order-collection-item/multiplicity-option/reorder-pre-order-collection-item-multiplicity-options.command.d.ts +47 -0
  250. package/build/commands/pre-order-collection-item/multiplicity-option/update-pre-order-collection-item-multiplicity-option.command.d.ts +61 -0
  251. package/build/commands/pre-order-collection-item/update-group-pre-order-collection-item.command.d.ts +165 -0
  252. package/build/commands/pre-order-collection-item/update-pre-order-collection-item-product-maching.command.d.ts +32 -0
  253. package/build/commands/pre-order-collection-item/update-pre-order-collection-item.command.d.ts +239 -0
  254. package/build/commands/pre-order-product/create-manually-pre-order-product-for-standing-order.command.d.ts +234 -0
  255. package/build/commands/pre-order-product/create-manually-pre-order-product.command.d.ts +262 -0
  256. package/build/commands/pre-order-product/create-pre-order-product-webshop.command.d.ts +214 -0
  257. package/build/commands/pre-order-product/create-pre-order-product.command.d.ts +242 -0
  258. package/build/commands/pre-order-product/delete-many-pre-order-product-by-pre-order-collection-item.command.d.ts +24 -0
  259. package/build/commands/pre-order-product/delete-pre-order-product-webshop.command.d.ts +24 -0
  260. package/build/commands/pre-order-product/delete-pre-order-product.command.d.ts +24 -0
  261. package/build/commands/pre-order-product/get-pre-order-product-extended-list.query.d.ts +1155 -0
  262. package/build/commands/pre-order-product/get-pre-order-product-list.query.d.ts +234 -0
  263. package/build/commands/pre-order-product/get-pre-order-product.query.d.ts +891 -0
  264. package/build/commands/pre-order-product/get-pre-order-products-by-pre-order-list.command.d.ts +899 -0
  265. package/build/commands/pre-order-product/get-pre-order-products-by-pre-order.command.d.ts +891 -0
  266. package/build/commands/pre-order-product/index.d.ts +15 -0
  267. package/build/commands/pre-order-product/purchase-many-pre-order-product-by-pre-order-collection-item.command.d.ts +39 -0
  268. package/build/commands/pre-order-product/update-pre-order-product-webshop.command.d.ts +179 -0
  269. package/build/commands/pre-order-product/update-pre-order-product.command.d.ts +242 -0
  270. package/build/commands/product/create-product.command.d.ts +630 -0
  271. package/build/commands/product/delete-product.command.d.ts +26 -0
  272. package/build/commands/product/generate-product-qr.query.d.ts +89 -0
  273. package/build/commands/product/get-all-product-by-consignment.query.d.ts +445 -0
  274. package/build/commands/product/get-product-list-filters-values.query.d.ts +102 -0
  275. package/build/commands/product/get-product-list.query.d.ts +784 -0
  276. package/build/commands/product/get-product-quantity-calculate.query.d.ts +57 -0
  277. package/build/commands/product/get-product.query.d.ts +555 -0
  278. package/build/commands/product/get-products-unique.query.d.ts +614 -0
  279. package/build/commands/product/group/delete-group-product.command.d.ts +58 -0
  280. package/build/commands/product/group/index.d.ts +7 -0
  281. package/build/commands/product/group/update-group-product-category.command.d.ts +35 -0
  282. package/build/commands/product/group/update-group-product-consignment.command.d.ts +35 -0
  283. package/build/commands/product/group/update-group-product-is-open-by-consignment.command.d.ts +32 -0
  284. package/build/commands/product/group/update-group-product-is-open.command.d.ts +35 -0
  285. package/build/commands/product/group/update-group-product-prices.command.d.ts +52 -0
  286. package/build/commands/product/group/update-group-product-update-batch.command.d.ts +141 -0
  287. package/build/commands/product/index.d.ts +19 -0
  288. package/build/commands/product/multiplicity-option/create-product-multiplicity-option.command.d.ts +61 -0
  289. package/build/commands/product/multiplicity-option/delete-product-multiplicity-option.command.d.ts +26 -0
  290. package/build/commands/product/multiplicity-option/get-product-multiplicity-option-titles.query.d.ts +16 -0
  291. package/build/commands/product/multiplicity-option/get-product-multiplicity-options.query.d.ts +68 -0
  292. package/build/commands/product/multiplicity-option/reorder-product-multiplicity-options.command.d.ts +47 -0
  293. package/build/commands/product/multiplicity-option/update-product-multiplicity-option.command.d.ts +61 -0
  294. package/build/commands/product/update-product.command.d.ts +630 -0
  295. package/build/commands/product/webshop/get-client-product-list-filters-values.query.d.ts +70 -0
  296. package/build/commands/product/webshop/get-product-for-client.query.d.ts +336 -0
  297. package/build/commands/product/webshop/get-product-list-for-client.query.d.ts +484 -0
  298. package/build/commands/product-configuration/create-product-configuration.command.d.ts +86 -0
  299. package/build/commands/product-configuration/delete-product-configuration.command.d.ts +26 -0
  300. package/build/commands/product-configuration/get-product-configuration-list.query.d.ts +119 -0
  301. package/build/commands/product-configuration/get-product-configuration.query.d.ts +61 -0
  302. package/build/commands/product-configuration/index.d.ts +5 -0
  303. package/build/commands/product-configuration/update-product-configuration.command.d.ts +82 -0
  304. package/build/commands/product-image/alias/create-product-image-alias.command.d.ts +37 -0
  305. package/build/commands/product-image/alias/delete-product-image-alias.command.d.ts +31 -0
  306. package/build/commands/product-image/alias/update-product-image-alias.command.d.ts +37 -0
  307. package/build/commands/product-image/create-product-image.command.d.ts +113 -0
  308. package/build/commands/product-image/delete-product-image.command.d.ts +84 -0
  309. package/build/commands/product-image/get-product-image-filter-values.query.d.ts +77 -0
  310. package/build/commands/product-image/get-product-image-list.query.d.ts +377 -0
  311. package/build/commands/product-image/get-product-image.query.d.ts +255 -0
  312. package/build/commands/product-image/group/delete-group-product-image.command.d.ts +32 -0
  313. package/build/commands/product-image/group/update-group-product-image.command.d.ts +80 -0
  314. package/build/commands/product-image/index.d.ts +12 -0
  315. package/build/commands/product-image/sync-product-image.command.d.ts +24 -0
  316. package/build/commands/product-image/update-product-image.command.d.ts +113 -0
  317. package/build/commands/product-image-template/create-product-image-template.command.d.ts +90 -0
  318. package/build/commands/product-image-template/delete-group-product-image-template.command.d.ts +32 -0
  319. package/build/commands/product-image-template/delete-product-image-template.command.d.ts +24 -0
  320. package/build/commands/product-image-template/get-product-image-template-list.query.d.ts +116 -0
  321. package/build/commands/product-image-template/get-product-image-template.query.d.ts +64 -0
  322. package/build/commands/product-image-template/index.d.ts +7 -0
  323. package/build/commands/product-image-template/start-parsing-product-image-template.command.d.ts +24 -0
  324. package/build/commands/product-image-template/update-product-image-template.command.d.ts +87 -0
  325. package/build/commands/product-in-package/create-product-in-package.command.d.ts +94 -0
  326. package/build/commands/product-in-package/delete-from-orders-by-package.command.d.ts +26 -0
  327. package/build/commands/product-in-package/delete-product-in-package.command.d.ts +24 -0
  328. package/build/commands/product-in-package/get-product-in-package-by-uuid.query.d.ts +69 -0
  329. package/build/commands/product-in-package/index.d.ts +5 -0
  330. package/build/commands/product-in-package/update-product-in-package.command.d.ts +92 -0
  331. package/build/commands/report/export-client-statement.query.d.ts +68 -0
  332. package/build/commands/report/export-inventory-movement.query.d.ts +124 -0
  333. package/build/commands/report/export-inventory-stock.query.d.ts +82 -0
  334. package/build/commands/report/export-inventory-turnover.query.d.ts +148 -0
  335. package/build/commands/report/export-sales-by-client.query.d.ts +83 -0
  336. package/build/commands/report/export-sales-revenue.query.d.ts +64 -0
  337. package/build/commands/report/get-report-by-client-weeks.query.d.ts +81 -0
  338. package/build/commands/report/get-report-for-period.query.d.ts +106 -0
  339. package/build/commands/report/get-report-group-by-client.query.d.ts +146 -0
  340. package/build/commands/report/get-report-group-by-position.query.d.ts +266 -0
  341. package/build/commands/report/index.d.ts +10 -0
  342. package/build/commands/settings/get-settings-for-admin.query.d.ts +352 -0
  343. package/build/commands/settings/get-settings.query.d.ts +312 -0
  344. package/build/commands/settings/index.d.ts +3 -0
  345. package/build/commands/settings/update-settings.command.d.ts +486 -0
  346. package/build/commands/transaction/create-transaction.command.d.ts +100 -0
  347. package/build/commands/transaction/delete-transaction.command.d.ts +26 -0
  348. package/build/commands/transaction/export-transactions.command.d.ts +62 -0
  349. package/build/commands/transaction/generate-check-transaction.command.d.ts +35 -0
  350. package/build/commands/transaction/generate-pre-payment-check.command.d.ts +35 -0
  351. package/build/commands/transaction/get-sum-transaction-by-money-account.query.d.ts +46 -0
  352. package/build/commands/transaction/get-transaction-list.query.d.ts +763 -0
  353. package/build/commands/transaction/get-transaction-summary.query.d.ts +77 -0
  354. package/build/commands/transaction/get-transaction.query.d.ts +539 -0
  355. package/build/commands/transaction/index.d.ts +11 -0
  356. package/build/commands/transaction/update-transaction.command.d.ts +85 -0
  357. package/build/commands/transaction/webshop/get-transaction-list-for-client.query.d.ts +742 -0
  358. package/build/commands/type/create-type.command.d.ts +60 -0
  359. package/build/commands/type/delete-type.command.d.ts +32 -0
  360. package/build/commands/type/get-type-by-criteria.query.d.ts +51 -0
  361. package/build/commands/type/get-type-by-uuid.query.d.ts +57 -0
  362. package/build/commands/type/get-type-list.query.d.ts +102 -0
  363. package/build/commands/type/index.d.ts +8 -0
  364. package/build/commands/type/update-type-rank-many.command.d.ts +72 -0
  365. package/build/commands/type/update-type-rank.command.d.ts +39 -0
  366. package/build/commands/type/update-type.command.d.ts +75 -0
  367. package/build/commands/user/attachUserToCompany.command.d.ts +84 -0
  368. package/build/commands/user/create-user-global.command.d.ts +101 -0
  369. package/build/commands/user/createUser.command.d.ts +107 -0
  370. package/build/commands/user/createUserByClientId.command.d.ts +138 -0
  371. package/build/commands/user/createUserForCompany.command.d.ts +105 -0
  372. package/build/commands/user/generate-and-send-password-by-admin.command.d.ts +20 -0
  373. package/build/commands/user/get-user-list.query.d.ts +149 -0
  374. package/build/commands/user/getUser.command.d.ts +107 -0
  375. package/build/commands/user/index.d.ts +10 -0
  376. package/build/commands/user/update-password-by-user.command.d.ts +19 -0
  377. package/build/commands/user/update-user.command.d.ts +98 -0
  378. package/build/commands/user/updateRole.command.d.ts +106 -0
  379. package/build/commands/work-session/close-work-session-for-employee.command.d.ts +69 -0
  380. package/build/commands/work-session/create-many-work-session.command.d.ts +108 -0
  381. package/build/commands/work-session/create-work-session-for-employee.command.d.ts +86 -0
  382. package/build/commands/work-session/delete-work-session.command.d.ts +24 -0
  383. package/build/commands/work-session/get-work-session-extended-list.query.d.ts +243 -0
  384. package/build/commands/work-session/index.d.ts +6 -0
  385. package/build/commands/work-session/update-work-session.command.d.ts +86 -0
  386. package/build/commands/wrire-off-archive/create-wrire-off-archive.command.d.ts +32 -0
  387. package/build/commands/wrire-off-archive/index.d.ts +2 -0
  388. package/build/commands/wrire-off-archive/info-wrire-off-archive.command.d.ts +32 -0
  389. package/build/commands/write-off/create-write-off-from-order.command.d.ts +1679 -0
  390. package/build/commands/write-off/create-write-off-from-pending.command.d.ts +1674 -0
  391. package/build/commands/write-off/create-write-off-images.command.d.ts +52 -0
  392. package/build/commands/write-off/create-write-off-images.command.js +1 -1
  393. package/build/commands/write-off/create-write-off.command.d.ts +1676 -0
  394. package/build/commands/write-off/delete-write-off-image.command.d.ts +26 -0
  395. package/build/commands/write-off/delete-write-off.command.d.ts +26 -0
  396. package/build/commands/write-off/get-write-off-list.query.d.ts +2144 -0
  397. package/build/commands/write-off/get-write-off-reason-list.query.d.ts +22 -0
  398. package/build/commands/write-off/get-write-off-sum-by-order.query.d.ts +16 -0
  399. package/build/commands/write-off/get-write-off.query.d.ts +1659 -0
  400. package/build/commands/write-off/index.d.ts +13 -0
  401. package/build/commands/write-off/update-write-off-price.command.d.ts +1670 -0
  402. package/build/commands/write-off/update-write-off-status.command.d.ts +1671 -0
  403. package/build/commands/write-off/webshop/create-write-off-from-order-for-client.command.d.ts +1676 -0
  404. package/build/commands/write-off/webshop/get-write-off-list-by-order.query.d.ts +1661 -0
  405. package/build/commands/write-off/webshop/index.d.ts +2 -0
  406. package/build/constant/error-i18n-key.d.ts +5 -0
  407. package/build/constant/error.d.ts +2047 -0
  408. package/build/constant/index.d.ts +2 -0
  409. package/build/constant/verbose.d.ts +42 -0
  410. package/build/enum/action-log-type.enum.d.ts +14 -0
  411. package/build/enum/category-status.enum.d.ts +4 -0
  412. package/build/enum/client-import-entity-property.enum.d.ts +30 -0
  413. package/build/enum/client-legal-type.enum.d.ts +4 -0
  414. package/build/enum/client-statement-type.enum.d.ts +5 -0
  415. package/build/enum/client-status.enum.d.ts +5 -0
  416. package/build/enum/client-type.enum.d.ts +4 -0
  417. package/build/enum/companyStatus.enum.d.ts +5 -0
  418. package/build/enum/consignment-access-client-status.enum.d.ts +4 -0
  419. package/build/enum/consignment-distribution-validation-status.enum.d.ts +4 -0
  420. package/build/enum/consignment-distribution-validation-type.enum.d.ts +4 -0
  421. package/build/enum/consignment-import-errors.enum.d.ts +5 -0
  422. package/build/enum/consignment-import-schema-relation-entity-property.enum.d.ts +30 -0
  423. package/build/enum/consignment-status.enum.d.ts +5 -0
  424. package/build/enum/consignment-write-off-archives-status.enum.d.ts +5 -0
  425. package/build/enum/context-message-context-type.enum.d.ts +5 -0
  426. package/build/enum/country-code.enum.d.ts +253 -0
  427. package/build/enum/delivery-route-status.enum.d.ts +5 -0
  428. package/build/enum/discount-price-routing.enum.d.ts +6 -0
  429. package/build/enum/discount-rules-apply-type.enum.d.ts +4 -0
  430. package/build/enum/discount-rules-mode-type.enum.d.ts +4 -0
  431. package/build/enum/discount-rules-status.enum.d.ts +4 -0
  432. package/build/enum/discount-rules-type.enum.d.ts +7 -0
  433. package/build/enum/file-expire-prefix.enum.d.ts +3 -0
  434. package/build/enum/file-expire-prefix.enum.js +7 -0
  435. package/build/enum/image-type.enum.d.ts +4 -0
  436. package/build/enum/import-error-code.enum.d.ts +7 -0
  437. package/build/enum/index.d.ts +59 -0
  438. package/build/enum/inventory-movement-type.enum.d.ts +6 -0
  439. package/build/enum/language.enum.d.ts +4 -0
  440. package/build/enum/menu-items-url.enum.d.ts +11 -0
  441. package/build/enum/money-account-status.enum.d.ts +4 -0
  442. package/build/enum/notification-channel.enum.d.ts +9 -0
  443. package/build/enum/notification-status.enum.d.ts +6 -0
  444. package/build/enum/notification-type.enum.d.ts +6 -0
  445. package/build/enum/order-active-status-list.d.ts +2 -0
  446. package/build/enum/order-balance-status-list.d.ts +2 -0
  447. package/build/enum/order-by.enum.d.ts +4 -0
  448. package/build/enum/order-delivery-status.enum.d.ts +4 -0
  449. package/build/enum/order-distribute-status-list.d.ts +2 -0
  450. package/build/enum/order-restricted-status-list.d.ts +2 -0
  451. package/build/enum/order-status.enum.d.ts +13 -0
  452. package/build/enum/order-type.enum.d.ts +4 -0
  453. package/build/enum/order-webshop-available-status-list.d.ts +2 -0
  454. package/build/enum/package-status.enum.d.ts +5 -0
  455. package/build/enum/package-type.enum.d.ts +32 -0
  456. package/build/enum/parse-status.enum.d.ts +5 -0
  457. package/build/enum/position-report-type.enum.d.ts +4 -0
  458. package/build/enum/pre-order-aggregation-mode.enum.d.ts +5 -0
  459. package/build/enum/pre-order-collection-item-import-entity-property.enum.d.ts +21 -0
  460. package/build/enum/pre-order-collection-status.enum.d.ts +4 -0
  461. package/build/enum/pre-order-status.enum.d.ts +8 -0
  462. package/build/enum/product-image-created-from.enum.d.ts +4 -0
  463. package/build/enum/product-image-order.enum.d.ts +4 -0
  464. package/build/enum/product-in-package-status.enum.d.ts +4 -0
  465. package/build/enum/report-period-type.enum.d.ts +5 -0
  466. package/build/enum/sales-unit.enum.d.ts +5 -0
  467. package/build/enum/security-code-status.enum.d.ts +7 -0
  468. package/build/enum/transaction-type-groups.d.ts +4 -0
  469. package/build/enum/transaction-type.enum.d.ts +6 -0
  470. package/build/enum/user-type.enum.d.ts +4 -0
  471. package/build/enum/userRole.enum.d.ts +12 -0
  472. package/build/enum/userStatus.enum.d.ts +5 -0
  473. package/build/enum/webshop-main-display-mode.enum.d.ts +4 -0
  474. package/build/enum/webshop-mode.enum.d.ts +4 -0
  475. package/build/enum/write-off-status.enum.d.ts +5 -0
  476. package/build/helpers/date.helper.d.ts +3 -0
  477. package/build/index.d.ts +5 -0
  478. package/build/schemas/action-log/action-log-payload.schema.d.ts +496 -0
  479. package/build/schemas/action-log/action-log.schema.d.ts +2439 -0
  480. package/build/schemas/action-log/index.d.ts +14 -0
  481. package/build/schemas/action-log/order-create-action-log.schema.d.ts +53 -0
  482. package/build/schemas/action-log/order-delete-action-log-payload.schema.d.ts +53 -0
  483. package/build/schemas/action-log/order-info.schema.d.ts +29 -0
  484. package/build/schemas/action-log/order-product-delete-action-log.schema.d.ts +63 -0
  485. package/build/schemas/action-log/order-product-info.schema.d.ts +35 -0
  486. package/build/schemas/action-log/order-product-update-action-log.schema.d.ts +69 -0
  487. package/build/schemas/action-log/order-update-action-log.schema.d.ts +12 -0
  488. package/build/schemas/action-log/pre-order-create-action-log.schema.d.ts +38 -0
  489. package/build/schemas/action-log/pre-order-delete-action-log.schema.d.ts +38 -0
  490. package/build/schemas/action-log/pre-order-info.schema.d.ts +20 -0
  491. package/build/schemas/action-log/pre-order-product-delete-action-log.schema.d.ts +48 -0
  492. package/build/schemas/action-log/pre-order-product-info.schema.d.ts +26 -0
  493. package/build/schemas/action-log/pre-order-product-update-action-log.schema.d.ts +57 -0
  494. package/build/schemas/action-log/transaction-add-action-log.schema.d.ts +43 -0
  495. package/build/schemas/action-log/transaction-delete-action-log.schema.d.ts +43 -0
  496. package/build/schemas/action-log/transaction-info.schema.d.ts +24 -0
  497. package/build/schemas/branch/branch-list.schema.d.ts +71 -0
  498. package/build/schemas/branch/branch.schema.d.ts +38 -0
  499. package/build/schemas/category/category.schema.d.ts +102 -0
  500. package/build/schemas/category-alias/category-alias.schema.d.ts +36 -0
  501. package/build/schemas/category-template/category-template.schema.d.ts +55 -0
  502. package/build/schemas/category-template/index.d.ts +1 -0
  503. package/build/schemas/client/client-individual-profile.schema.d.ts +26 -0
  504. package/build/schemas/client/client-legal-profile.schema.d.ts +60 -0
  505. package/build/schemas/client/client-marking.schema.d.ts +11 -0
  506. package/build/schemas/client/client.schema.d.ts +1665 -0
  507. package/build/schemas/client/index.d.ts +4 -0
  508. package/build/schemas/company/company.schema.d.ts +27 -0
  509. package/build/schemas/company/companyList.schema.d.ts +51 -0
  510. package/build/schemas/consignment/consignment-distribution-validation.schema.d.ts +2487 -0
  511. package/build/schemas/consignment/consignment-list.schema.d.ts +133 -0
  512. package/build/schemas/consignment/consignment.schema.d.ts +420 -0
  513. package/build/schemas/consignment-import-schema/consignment-import-schema.scheme.d.ts +136 -0
  514. package/build/schemas/consignment-import-schema/index.d.ts +1 -0
  515. package/build/schemas/consignment-import-schema-relation/consignment-import-schema-relation.schema.d.ts +21 -0
  516. package/build/schemas/delete-data-response.schema.d.ts +8 -0
  517. package/build/schemas/delivery-route/delivery-route.schema.d.ts +193 -0
  518. package/build/schemas/discount-rules/discount-rules.schema.d.ts +1794 -0
  519. package/build/schemas/distribution/distribution.schema.d.ts +55 -0
  520. package/build/schemas/distribution/validate-distribution-by-product.schema.d.ts +14 -0
  521. package/build/schemas/domain/domain.schema.d.ts +85 -0
  522. package/build/schemas/employee-schedule/employee-schedule.schema.d.ts +399 -0
  523. package/build/schemas/file/file.schema.d.ts +8 -0
  524. package/build/schemas/file/index.d.ts +1 -0
  525. package/build/schemas/index.d.ts +53 -0
  526. package/build/schemas/message/client-inbox-item.schema.d.ts +32 -0
  527. package/build/schemas/message/context-inbox.schema.d.ts +109 -0
  528. package/build/schemas/message/context-message-list.schema.d.ts +80 -0
  529. package/build/schemas/message/context-message.schema.d.ts +39 -0
  530. package/build/schemas/message/index.d.ts +4 -0
  531. package/build/schemas/money-account/money-account.schema.d.ts +31 -0
  532. package/build/schemas/order/order.schema.d.ts +884 -0
  533. package/build/schemas/order-delivery/order-delivery.schema.d.ts +27 -0
  534. package/build/schemas/order-product/order-product-list.schema.d.ts +1587 -0
  535. package/build/schemas/order-product/order-product-multiplicity-optiom.schema.d.ts +17 -0
  536. package/build/schemas/order-product/order-product.schema.d.ts +2173 -0
  537. package/build/schemas/package/package.schema.d.ts +1111 -0
  538. package/build/schemas/package/validate-package.schema.d.ts +14 -0
  539. package/build/schemas/pre-order/pre-order-copy.schema.d.ts +3083 -0
  540. package/build/schemas/pre-order/pre-order.schema.d.ts +1058 -0
  541. package/build/schemas/pre-order-collection/pre-order-collection.schema.d.ts +277 -0
  542. package/build/schemas/pre-order-collection-item/pre-order-collection-item-multiplicity-option.schema.d.ts +20 -0
  543. package/build/schemas/pre-order-collection-item/pre-order-collection-item.schema.d.ts +2725 -0
  544. package/build/schemas/pre-order-product/pre-order-product.schema.d.ts +2039 -0
  545. package/build/schemas/product/product-list.schema.d.ts +885 -0
  546. package/build/schemas/product/product-multiplicity-option.schema.d.ts +20 -0
  547. package/build/schemas/product/product.schema.d.ts +1383 -0
  548. package/build/schemas/product-configuration/product-configuration.schema.d.ts +78 -0
  549. package/build/schemas/product-image/product-image-alias.schema.d.ts +11 -0
  550. package/build/schemas/product-image/product-image.schema.d.ts +240 -0
  551. package/build/schemas/product-image-template/product-image-template.schema.d.ts +139 -0
  552. package/build/schemas/product-in-package/product-in-package.schema.d.ts +86 -0
  553. package/build/schemas/report/client-by-weeks.schema.d.ts +29 -0
  554. package/build/schemas/report/client-statement.schema.d.ts +24 -0
  555. package/build/schemas/settings/settings.schema.d.ts +770 -0
  556. package/build/schemas/transaction/transaction-list.schema.d.ts +1055 -0
  557. package/build/schemas/transaction/transaction.schema.d.ts +763 -0
  558. package/build/schemas/type/type.schema.d.ts +36 -0
  559. package/build/schemas/type/typeList.schema.d.ts +14 -0
  560. package/build/schemas/user/user.schema.d.ts +67 -0
  561. package/build/schemas/work-session/work-session.schema.d.ts +344 -0
  562. package/build/schemas/write-off/write-off-image.schema.d.ts +20 -0
  563. package/build/schemas/write-off/write-off-image.schema.js +1 -1
  564. package/build/schemas/write-off/write-off-list.schema.d.ts +1656 -0
  565. package/build/schemas/write-off/write-off.schema.d.ts +1214 -0
  566. package/build/types/client-import-data.type.d.ts +34 -0
  567. package/build/types/index.d.ts +1 -0
  568. package/commands/file/deleteFile.command.ts +1 -1
  569. package/commands/write-off/create-write-off-images.command.ts +1 -1
  570. package/enum/file-expire-prefix.enum.ts +3 -0
  571. package/package.json +9 -6
  572. package/schemas/write-off/write-off-image.schema.ts +1 -1
  573. package/tsconfig.json +3 -3
@@ -0,0 +1,2784 @@
1
+ import { z } from 'zod';
2
+ export declare namespace AnalyzeCreatePreOrdersFromStandingOrdersContractCommand {
3
+ const RequestSchema: z.ZodObject<{
4
+ standingOrderUUIDs: z.ZodArray<z.ZodString, "many">;
5
+ preOrderCollectionUUIDs: z.ZodArray<z.ZodString, "many">;
6
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7
+ matchByName: z.ZodBoolean;
8
+ matchByCategory: z.ZodBoolean;
9
+ matchByColor: z.ZodBoolean;
10
+ matchBySize: z.ZodBoolean;
11
+ matchByGrower: z.ZodBoolean;
12
+ }, "strip", z.ZodTypeAny, {
13
+ matchByName: boolean;
14
+ matchByCategory: boolean;
15
+ matchByColor: boolean;
16
+ matchBySize: boolean;
17
+ matchByGrower: boolean;
18
+ }, {
19
+ matchByName: boolean;
20
+ matchByCategory: boolean;
21
+ matchByColor: boolean;
22
+ matchBySize: boolean;
23
+ matchByGrower: boolean;
24
+ }>>>;
25
+ }, "strip", z.ZodTypeAny, {
26
+ standingOrderUUIDs: string[];
27
+ preOrderCollectionUUIDs: string[];
28
+ matchingConfig?: {
29
+ matchByName: boolean;
30
+ matchByCategory: boolean;
31
+ matchByColor: boolean;
32
+ matchBySize: boolean;
33
+ matchByGrower: boolean;
34
+ } | null | undefined;
35
+ }, {
36
+ standingOrderUUIDs: string[];
37
+ preOrderCollectionUUIDs: string[];
38
+ matchingConfig?: {
39
+ matchByName: boolean;
40
+ matchByCategory: boolean;
41
+ matchByColor: boolean;
42
+ matchBySize: boolean;
43
+ matchByGrower: boolean;
44
+ } | null | undefined;
45
+ }>;
46
+ type Request = z.infer<typeof RequestSchema>;
47
+ const ResponseSchema: z.ZodObject<{
48
+ message: z.ZodOptional<z.ZodString>;
49
+ data: z.ZodObject<{
50
+ analyses: z.ZodArray<z.ZodObject<{
51
+ standingOrder: z.ZodObject<{
52
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderStatusEnum>;
53
+ uuid: z.ZodString;
54
+ createdAt: z.ZodDate;
55
+ comment: z.ZodNullable<z.ZodString>;
56
+ clientUUID: z.ZodString;
57
+ branchUUID: z.ZodNullable<z.ZodString>;
58
+ tag: z.ZodNullable<z.ZodString>;
59
+ preOrderNum: z.ZodNumber;
60
+ preOrderCollection: z.ZodNullable<z.ZodObject<{
61
+ uuid: z.ZodString;
62
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderCollectionStatusEnum>;
63
+ description: z.ZodString;
64
+ availableUntil: z.ZodDate;
65
+ deliveryDate: z.ZodDate;
66
+ label: z.ZodNullable<z.ZodString>;
67
+ imageUrl: z.ZodNullable<z.ZodString>;
68
+ hideItemOptions: z.ZodBoolean;
69
+ }, "strip", z.ZodTypeAny, {
70
+ status: import("../../..").PreOrderCollectionStatusEnum;
71
+ uuid: string;
72
+ deliveryDate: Date;
73
+ description: string;
74
+ label: string | null;
75
+ availableUntil: Date;
76
+ imageUrl: string | null;
77
+ hideItemOptions: boolean;
78
+ }, {
79
+ status: import("../../..").PreOrderCollectionStatusEnum;
80
+ uuid: string;
81
+ deliveryDate: Date;
82
+ description: string;
83
+ label: string | null;
84
+ availableUntil: Date;
85
+ imageUrl: string | null;
86
+ hideItemOptions: boolean;
87
+ }>>;
88
+ client: z.ZodObject<{
89
+ uuid: z.ZodString;
90
+ name: z.ZodString;
91
+ contactName: z.ZodNullable<z.ZodString>;
92
+ phone: z.ZodNullable<z.ZodString>;
93
+ email: z.ZodNullable<z.ZodString>;
94
+ status: z.ZodNativeEnum<typeof import("../../../enum/client-status.enum").ClientStatusEnum>;
95
+ isCommon: z.ZodBoolean;
96
+ contractNumber: z.ZodNullable<z.ZodString>;
97
+ contractDate: z.ZodNullable<z.ZodDate>;
98
+ address: z.ZodNullable<z.ZodString>;
99
+ city: z.ZodNullable<z.ZodString>;
100
+ code: z.ZodNullable<z.ZodString>;
101
+ group: z.ZodNullable<z.ZodString>;
102
+ marking: z.ZodNullable<z.ZodString>;
103
+ alwaysRequiresDelivery: z.ZodBoolean;
104
+ additionalPhone: z.ZodNullable<z.ZodString>;
105
+ comment: z.ZodNullable<z.ZodString>;
106
+ balance: z.ZodNumber;
107
+ deletedAt: z.ZodNullable<z.ZodDate>;
108
+ createdAt: z.ZodDate;
109
+ updatedAt: z.ZodDate;
110
+ companyUUID: z.ZodString;
111
+ clientType: z.ZodNativeEnum<typeof import("../../../enum/client-type.enum").ClientTypeEnum>;
112
+ responsibleUserUUID: z.ZodNullable<z.ZodString>;
113
+ responsibleSince: z.ZodNullable<z.ZodDate>;
114
+ }, "strip", z.ZodTypeAny, {
115
+ email: string | null;
116
+ phone: string | null;
117
+ name: string;
118
+ code: string | null;
119
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
120
+ uuid: string;
121
+ contactName: string | null;
122
+ address: string | null;
123
+ city: string | null;
124
+ createdAt: Date;
125
+ updatedAt: Date;
126
+ deletedAt: Date | null;
127
+ companyUUID: string;
128
+ isCommon: boolean;
129
+ contractNumber: string | null;
130
+ contractDate: Date | null;
131
+ group: string | null;
132
+ marking: string | null;
133
+ alwaysRequiresDelivery: boolean;
134
+ additionalPhone: string | null;
135
+ comment: string | null;
136
+ balance: number;
137
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
138
+ responsibleUserUUID: string | null;
139
+ responsibleSince: Date | null;
140
+ }, {
141
+ email: string | null;
142
+ phone: string | null;
143
+ name: string;
144
+ code: string | null;
145
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
146
+ uuid: string;
147
+ contactName: string | null;
148
+ address: string | null;
149
+ city: string | null;
150
+ createdAt: Date;
151
+ updatedAt: Date;
152
+ deletedAt: Date | null;
153
+ companyUUID: string;
154
+ isCommon: boolean;
155
+ contractNumber: string | null;
156
+ contractDate: Date | null;
157
+ group: string | null;
158
+ marking: string | null;
159
+ alwaysRequiresDelivery: boolean;
160
+ additionalPhone: string | null;
161
+ comment: string | null;
162
+ balance: number;
163
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
164
+ responsibleUserUUID: string | null;
165
+ responsibleSince: Date | null;
166
+ }>;
167
+ branch: z.ZodNullable<z.ZodObject<{
168
+ uuid: z.ZodString;
169
+ name: z.ZodString;
170
+ contactName: z.ZodNullable<z.ZodString>;
171
+ contactPhone: z.ZodNullable<z.ZodString>;
172
+ address: z.ZodNullable<z.ZodString>;
173
+ city: z.ZodNullable<z.ZodString>;
174
+ region: z.ZodNullable<z.ZodString>;
175
+ country: z.ZodNullable<z.ZodString>;
176
+ clientId: z.ZodString;
177
+ createdAt: z.ZodDate;
178
+ updatedAt: z.ZodDate;
179
+ }, "strip", z.ZodTypeAny, {
180
+ name: string;
181
+ uuid: string;
182
+ contactName: string | null;
183
+ contactPhone: string | null;
184
+ address: string | null;
185
+ city: string | null;
186
+ region: string | null;
187
+ country: string | null;
188
+ clientId: string;
189
+ createdAt: Date;
190
+ updatedAt: Date;
191
+ }, {
192
+ name: string;
193
+ uuid: string;
194
+ contactName: string | null;
195
+ contactPhone: string | null;
196
+ address: string | null;
197
+ city: string | null;
198
+ region: string | null;
199
+ country: string | null;
200
+ clientId: string;
201
+ createdAt: Date;
202
+ updatedAt: Date;
203
+ }>>;
204
+ }, "strip", z.ZodTypeAny, {
205
+ status: import("../../..").PreOrderStatusEnum;
206
+ uuid: string;
207
+ createdAt: Date;
208
+ comment: string | null;
209
+ clientUUID: string;
210
+ branchUUID: string | null;
211
+ tag: string | null;
212
+ client: {
213
+ email: string | null;
214
+ phone: string | null;
215
+ name: string;
216
+ code: string | null;
217
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
218
+ uuid: string;
219
+ contactName: string | null;
220
+ address: string | null;
221
+ city: string | null;
222
+ createdAt: Date;
223
+ updatedAt: Date;
224
+ deletedAt: Date | null;
225
+ companyUUID: string;
226
+ isCommon: boolean;
227
+ contractNumber: string | null;
228
+ contractDate: Date | null;
229
+ group: string | null;
230
+ marking: string | null;
231
+ alwaysRequiresDelivery: boolean;
232
+ additionalPhone: string | null;
233
+ comment: string | null;
234
+ balance: number;
235
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
236
+ responsibleUserUUID: string | null;
237
+ responsibleSince: Date | null;
238
+ };
239
+ branch: {
240
+ name: string;
241
+ uuid: string;
242
+ contactName: string | null;
243
+ contactPhone: string | null;
244
+ address: string | null;
245
+ city: string | null;
246
+ region: string | null;
247
+ country: string | null;
248
+ clientId: string;
249
+ createdAt: Date;
250
+ updatedAt: Date;
251
+ } | null;
252
+ preOrderCollection: {
253
+ status: import("../../..").PreOrderCollectionStatusEnum;
254
+ uuid: string;
255
+ deliveryDate: Date;
256
+ description: string;
257
+ label: string | null;
258
+ availableUntil: Date;
259
+ imageUrl: string | null;
260
+ hideItemOptions: boolean;
261
+ } | null;
262
+ preOrderNum: number;
263
+ }, {
264
+ status: import("../../..").PreOrderStatusEnum;
265
+ uuid: string;
266
+ createdAt: Date;
267
+ comment: string | null;
268
+ clientUUID: string;
269
+ branchUUID: string | null;
270
+ tag: string | null;
271
+ client: {
272
+ email: string | null;
273
+ phone: string | null;
274
+ name: string;
275
+ code: string | null;
276
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
277
+ uuid: string;
278
+ contactName: string | null;
279
+ address: string | null;
280
+ city: string | null;
281
+ createdAt: Date;
282
+ updatedAt: Date;
283
+ deletedAt: Date | null;
284
+ companyUUID: string;
285
+ isCommon: boolean;
286
+ contractNumber: string | null;
287
+ contractDate: Date | null;
288
+ group: string | null;
289
+ marking: string | null;
290
+ alwaysRequiresDelivery: boolean;
291
+ additionalPhone: string | null;
292
+ comment: string | null;
293
+ balance: number;
294
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
295
+ responsibleUserUUID: string | null;
296
+ responsibleSince: Date | null;
297
+ };
298
+ branch: {
299
+ name: string;
300
+ uuid: string;
301
+ contactName: string | null;
302
+ contactPhone: string | null;
303
+ address: string | null;
304
+ city: string | null;
305
+ region: string | null;
306
+ country: string | null;
307
+ clientId: string;
308
+ createdAt: Date;
309
+ updatedAt: Date;
310
+ } | null;
311
+ preOrderCollection: {
312
+ status: import("../../..").PreOrderCollectionStatusEnum;
313
+ uuid: string;
314
+ deliveryDate: Date;
315
+ description: string;
316
+ label: string | null;
317
+ availableUntil: Date;
318
+ imageUrl: string | null;
319
+ hideItemOptions: boolean;
320
+ } | null;
321
+ preOrderNum: number;
322
+ }>;
323
+ mappings: z.ZodRecord<z.ZodString, z.ZodObject<{
324
+ standingOrderProduct: z.ZodObject<{
325
+ name: z.ZodNullable<z.ZodString>;
326
+ uuid: z.ZodString;
327
+ categoryUUID: z.ZodNullable<z.ZodString>;
328
+ color: z.ZodNullable<z.ZodString>;
329
+ grower: z.ZodNullable<z.ZodString>;
330
+ comment: z.ZodNullable<z.ZodString>;
331
+ quantity: z.ZodNumber;
332
+ price: z.ZodNullable<z.ZodNumber>;
333
+ size: z.ZodNullable<z.ZodString>;
334
+ tag: z.ZodNullable<z.ZodString>;
335
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
336
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
337
+ preOrderUUID: z.ZodString;
338
+ isPurchased: z.ZodBoolean;
339
+ isReplaceable: z.ZodBoolean;
340
+ stopPrice: z.ZodNullable<z.ZodNumber>;
341
+ highAttention: z.ZodBoolean;
342
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
343
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
344
+ matchByName: z.ZodBoolean;
345
+ matchByCategory: z.ZodBoolean;
346
+ matchByColor: z.ZodBoolean;
347
+ matchBySize: z.ZodBoolean;
348
+ matchByGrower: z.ZodBoolean;
349
+ }, "strip", z.ZodTypeAny, {
350
+ matchByName: boolean;
351
+ matchByCategory: boolean;
352
+ matchByColor: boolean;
353
+ matchBySize: boolean;
354
+ matchByGrower: boolean;
355
+ }, {
356
+ matchByName: boolean;
357
+ matchByCategory: boolean;
358
+ matchByColor: boolean;
359
+ matchBySize: boolean;
360
+ matchByGrower: boolean;
361
+ }>>>;
362
+ preOrderCollectionItem: z.ZodObject<{
363
+ name: z.ZodString;
364
+ uuid: z.ZodString;
365
+ country: z.ZodNullable<z.ZodString>;
366
+ createdAt: z.ZodDate;
367
+ updatedAt: z.ZodDate;
368
+ multiplicity: z.ZodNumber;
369
+ categoryUUID: z.ZodString;
370
+ color: z.ZodNullable<z.ZodString>;
371
+ grower: z.ZodNullable<z.ZodString>;
372
+ description: z.ZodNullable<z.ZodString>;
373
+ group: z.ZodNullable<z.ZodString>;
374
+ balance: z.ZodNullable<z.ZodNumber>;
375
+ quantity: z.ZodNullable<z.ZodNumber>;
376
+ price: z.ZodNumber;
377
+ isOpen: z.ZodBoolean;
378
+ article: z.ZodNullable<z.ZodString>;
379
+ size: z.ZodNullable<z.ZodString>;
380
+ size2: z.ZodNullable<z.ZodString>;
381
+ size3: z.ZodNullable<z.ZodString>;
382
+ imageUUID: z.ZodNullable<z.ZodString>;
383
+ vat: z.ZodNullable<z.ZodNumber>;
384
+ productUUID: z.ZodNullable<z.ZodString>;
385
+ preOrderCollectionUUID: z.ZodString;
386
+ advancedPrice: z.ZodNullable<z.ZodString>;
387
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
388
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
389
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").SalesUnitEnum>>;
390
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
391
+ image: z.ZodNullable<z.ZodObject<{
392
+ uuid: z.ZodString;
393
+ categoryUUID: z.ZodNullable<z.ZodString>;
394
+ name: z.ZodString;
395
+ color: z.ZodNullable<z.ZodString>;
396
+ vbn: z.ZodNullable<z.ZodString>;
397
+ externalUUID: z.ZodNullable<z.ZodString>;
398
+ productImageUrl: z.ZodString;
399
+ companyUUID: z.ZodString;
400
+ country: z.ZodNullable<z.ZodString>;
401
+ grower: z.ZodNullable<z.ZodString>;
402
+ createdAt: z.ZodDate;
403
+ updatedAt: z.ZodDate;
404
+ deletedAt: z.ZodNullable<z.ZodDate>;
405
+ }, "strip", z.ZodTypeAny, {
406
+ name: string;
407
+ uuid: string;
408
+ country: string | null;
409
+ createdAt: Date;
410
+ updatedAt: Date;
411
+ deletedAt: Date | null;
412
+ companyUUID: string;
413
+ categoryUUID: string | null;
414
+ color: string | null;
415
+ vbn: string | null;
416
+ externalUUID: string | null;
417
+ productImageUrl: string;
418
+ grower: string | null;
419
+ }, {
420
+ name: string;
421
+ uuid: string;
422
+ country: string | null;
423
+ createdAt: Date;
424
+ updatedAt: Date;
425
+ deletedAt: Date | null;
426
+ companyUUID: string;
427
+ categoryUUID: string | null;
428
+ color: string | null;
429
+ vbn: string | null;
430
+ externalUUID: string | null;
431
+ productImageUrl: string;
432
+ grower: string | null;
433
+ }>>;
434
+ category: z.ZodNullable<z.ZodObject<{
435
+ uuid: z.ZodString;
436
+ name: z.ZodString;
437
+ multiplicity: z.ZodNullable<z.ZodNumber>;
438
+ isSizeSeparate: z.ZodBoolean;
439
+ isSaveCategoryName: z.ZodBoolean;
440
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
441
+ createdAt: z.ZodDate;
442
+ updatedAt: z.ZodDate;
443
+ deletedAt: z.ZodNullable<z.ZodDate>;
444
+ }, "strip", z.ZodTypeAny, {
445
+ name: string;
446
+ status: import("../../..").CategoryStatusEnum;
447
+ uuid: string;
448
+ createdAt: Date;
449
+ updatedAt: Date;
450
+ deletedAt: Date | null;
451
+ multiplicity: number | null;
452
+ isSizeSeparate: boolean;
453
+ isSaveCategoryName: boolean;
454
+ }, {
455
+ name: string;
456
+ status: import("../../..").CategoryStatusEnum;
457
+ uuid: string;
458
+ createdAt: Date;
459
+ updatedAt: Date;
460
+ deletedAt: Date | null;
461
+ multiplicity: number | null;
462
+ isSizeSeparate: boolean;
463
+ isSaveCategoryName: boolean;
464
+ }>>;
465
+ type: z.ZodNullable<z.ZodObject<{
466
+ uuid: z.ZodString;
467
+ name: z.ZodString;
468
+ rank: z.ZodNumber;
469
+ deletedAt: z.ZodNullable<z.ZodDate>;
470
+ createdAt: z.ZodDate;
471
+ updatedAt: z.ZodDate;
472
+ }, "strip", z.ZodTypeAny, {
473
+ name: string;
474
+ uuid: string;
475
+ createdAt: Date;
476
+ updatedAt: Date;
477
+ deletedAt: Date | null;
478
+ rank: number;
479
+ }, {
480
+ name: string;
481
+ uuid: string;
482
+ createdAt: Date;
483
+ updatedAt: Date;
484
+ deletedAt: Date | null;
485
+ rank: number;
486
+ }>>;
487
+ matchingProducts: z.ZodArray<z.ZodObject<{
488
+ uuid: z.ZodString;
489
+ name: z.ZodString;
490
+ size: z.ZodNullable<z.ZodString>;
491
+ grower: z.ZodNullable<z.ZodString>;
492
+ color: z.ZodNullable<z.ZodString>;
493
+ country: z.ZodNullable<z.ZodString>;
494
+ deliveryDate: z.ZodDate;
495
+ }, "strip", z.ZodTypeAny, {
496
+ name: string;
497
+ uuid: string;
498
+ country: string | null;
499
+ color: string | null;
500
+ grower: string | null;
501
+ deliveryDate: Date;
502
+ size: string | null;
503
+ }, {
504
+ name: string;
505
+ uuid: string;
506
+ country: string | null;
507
+ color: string | null;
508
+ grower: string | null;
509
+ deliveryDate: Date;
510
+ size: string | null;
511
+ }>, "many">;
512
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
513
+ uuid: z.ZodString;
514
+ title: z.ZodNullable<z.ZodString>;
515
+ optionMultiplicity: z.ZodNumber;
516
+ optionPrice: z.ZodNullable<z.ZodNumber>;
517
+ rank: z.ZodNumber;
518
+ }, "strip", z.ZodTypeAny, {
519
+ uuid: string;
520
+ rank: number;
521
+ title: string | null;
522
+ optionMultiplicity: number;
523
+ optionPrice: number | null;
524
+ }, {
525
+ uuid: string;
526
+ rank: number;
527
+ title: string | null;
528
+ optionMultiplicity: number;
529
+ optionPrice: number | null;
530
+ }>, "many">>;
531
+ preOrderedQuantity: z.ZodOptional<z.ZodNumber>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ name: string;
534
+ type: {
535
+ name: string;
536
+ uuid: string;
537
+ createdAt: Date;
538
+ updatedAt: Date;
539
+ deletedAt: Date | null;
540
+ rank: number;
541
+ } | null;
542
+ uuid: string;
543
+ country: string | null;
544
+ createdAt: Date;
545
+ updatedAt: Date;
546
+ multiplicity: number;
547
+ categoryUUID: string;
548
+ color: string | null;
549
+ grower: string | null;
550
+ category: {
551
+ name: string;
552
+ status: import("../../..").CategoryStatusEnum;
553
+ uuid: string;
554
+ createdAt: Date;
555
+ updatedAt: Date;
556
+ deletedAt: Date | null;
557
+ multiplicity: number | null;
558
+ isSizeSeparate: boolean;
559
+ isSaveCategoryName: boolean;
560
+ } | null;
561
+ description: string | null;
562
+ group: string | null;
563
+ balance: number | null;
564
+ quantity: number | null;
565
+ price: number;
566
+ isOpen: boolean;
567
+ article: string | null;
568
+ size: string | null;
569
+ size2: string | null;
570
+ size3: string | null;
571
+ imageUUID: string | null;
572
+ vat: number | null;
573
+ image: {
574
+ name: string;
575
+ uuid: string;
576
+ country: string | null;
577
+ createdAt: Date;
578
+ updatedAt: Date;
579
+ deletedAt: Date | null;
580
+ companyUUID: string;
581
+ categoryUUID: string | null;
582
+ color: string | null;
583
+ vbn: string | null;
584
+ externalUUID: string | null;
585
+ productImageUrl: string;
586
+ grower: string | null;
587
+ } | null;
588
+ productUUID: string | null;
589
+ preOrderCollectionUUID: string;
590
+ advancedPrice: string | null;
591
+ isSizeCustomizable: boolean;
592
+ isColorCustomizable: boolean;
593
+ salesUnit: import("../../..").SalesUnitEnum | null;
594
+ multiplicityDescription: string | null;
595
+ matchingProducts: {
596
+ name: string;
597
+ uuid: string;
598
+ country: string | null;
599
+ color: string | null;
600
+ grower: string | null;
601
+ deliveryDate: Date;
602
+ size: string | null;
603
+ }[];
604
+ multiplicityOptions?: {
605
+ uuid: string;
606
+ rank: number;
607
+ title: string | null;
608
+ optionMultiplicity: number;
609
+ optionPrice: number | null;
610
+ }[] | undefined;
611
+ preOrderedQuantity?: number | undefined;
612
+ }, {
613
+ name: string;
614
+ type: {
615
+ name: string;
616
+ uuid: string;
617
+ createdAt: Date;
618
+ updatedAt: Date;
619
+ deletedAt: Date | null;
620
+ rank: number;
621
+ } | null;
622
+ uuid: string;
623
+ country: string | null;
624
+ createdAt: Date;
625
+ updatedAt: Date;
626
+ multiplicity: number;
627
+ categoryUUID: string;
628
+ color: string | null;
629
+ grower: string | null;
630
+ category: {
631
+ name: string;
632
+ status: import("../../..").CategoryStatusEnum;
633
+ uuid: string;
634
+ createdAt: Date;
635
+ updatedAt: Date;
636
+ deletedAt: Date | null;
637
+ multiplicity: number | null;
638
+ isSizeSeparate: boolean;
639
+ isSaveCategoryName: boolean;
640
+ } | null;
641
+ description: string | null;
642
+ group: string | null;
643
+ balance: number | null;
644
+ quantity: number | null;
645
+ price: number;
646
+ isOpen: boolean;
647
+ article: string | null;
648
+ size: string | null;
649
+ size2: string | null;
650
+ size3: string | null;
651
+ imageUUID: string | null;
652
+ vat: number | null;
653
+ image: {
654
+ name: string;
655
+ uuid: string;
656
+ country: string | null;
657
+ createdAt: Date;
658
+ updatedAt: Date;
659
+ deletedAt: Date | null;
660
+ companyUUID: string;
661
+ categoryUUID: string | null;
662
+ color: string | null;
663
+ vbn: string | null;
664
+ externalUUID: string | null;
665
+ productImageUrl: string;
666
+ grower: string | null;
667
+ } | null;
668
+ productUUID: string | null;
669
+ preOrderCollectionUUID: string;
670
+ advancedPrice: string | null;
671
+ salesUnit: import("../../..").SalesUnitEnum | null;
672
+ multiplicityDescription: string | null;
673
+ matchingProducts: {
674
+ name: string;
675
+ uuid: string;
676
+ country: string | null;
677
+ color: string | null;
678
+ grower: string | null;
679
+ deliveryDate: Date;
680
+ size: string | null;
681
+ }[];
682
+ isSizeCustomizable?: boolean | undefined;
683
+ isColorCustomizable?: boolean | undefined;
684
+ multiplicityOptions?: {
685
+ uuid: string;
686
+ rank: number;
687
+ title: string | null;
688
+ optionMultiplicity: number;
689
+ optionPrice: number | null;
690
+ }[] | undefined;
691
+ preOrderedQuantity?: number | undefined;
692
+ }>;
693
+ category: z.ZodNullable<z.ZodObject<{
694
+ uuid: z.ZodString;
695
+ name: z.ZodString;
696
+ multiplicity: z.ZodNullable<z.ZodNumber>;
697
+ isSizeSeparate: z.ZodBoolean;
698
+ isSaveCategoryName: z.ZodBoolean;
699
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
700
+ createdAt: z.ZodDate;
701
+ updatedAt: z.ZodDate;
702
+ deletedAt: z.ZodNullable<z.ZodDate>;
703
+ }, "strip", z.ZodTypeAny, {
704
+ name: string;
705
+ status: import("../../..").CategoryStatusEnum;
706
+ uuid: string;
707
+ createdAt: Date;
708
+ updatedAt: Date;
709
+ deletedAt: Date | null;
710
+ multiplicity: number | null;
711
+ isSizeSeparate: boolean;
712
+ isSaveCategoryName: boolean;
713
+ }, {
714
+ name: string;
715
+ status: import("../../..").CategoryStatusEnum;
716
+ uuid: string;
717
+ createdAt: Date;
718
+ updatedAt: Date;
719
+ deletedAt: Date | null;
720
+ multiplicity: number | null;
721
+ isSizeSeparate: boolean;
722
+ isSaveCategoryName: boolean;
723
+ }>>;
724
+ deliveryDate: z.ZodNullable<z.ZodDate>;
725
+ }, "strip", z.ZodTypeAny, {
726
+ name: string | null;
727
+ uuid: string;
728
+ categoryUUID: string | null;
729
+ color: string | null;
730
+ grower: string | null;
731
+ category: {
732
+ name: string;
733
+ status: import("../../..").CategoryStatusEnum;
734
+ uuid: string;
735
+ createdAt: Date;
736
+ updatedAt: Date;
737
+ deletedAt: Date | null;
738
+ multiplicity: number | null;
739
+ isSizeSeparate: boolean;
740
+ isSaveCategoryName: boolean;
741
+ } | null;
742
+ deliveryDate: Date | null;
743
+ comment: string | null;
744
+ quantity: number;
745
+ price: number | null;
746
+ size: string | null;
747
+ tag: string | null;
748
+ preOrderCollectionItemUUID: string | null;
749
+ preOrderUUID: string;
750
+ isPurchased: boolean;
751
+ isReplaceable: boolean;
752
+ stopPrice: number | null;
753
+ highAttention: boolean;
754
+ parentPreOrderProductUUID: string | null;
755
+ preOrderCollectionItem: {
756
+ name: string;
757
+ type: {
758
+ name: string;
759
+ uuid: string;
760
+ createdAt: Date;
761
+ updatedAt: Date;
762
+ deletedAt: Date | null;
763
+ rank: number;
764
+ } | null;
765
+ uuid: string;
766
+ country: string | null;
767
+ createdAt: Date;
768
+ updatedAt: Date;
769
+ multiplicity: number;
770
+ categoryUUID: string;
771
+ color: string | null;
772
+ grower: string | null;
773
+ category: {
774
+ name: string;
775
+ status: import("../../..").CategoryStatusEnum;
776
+ uuid: string;
777
+ createdAt: Date;
778
+ updatedAt: Date;
779
+ deletedAt: Date | null;
780
+ multiplicity: number | null;
781
+ isSizeSeparate: boolean;
782
+ isSaveCategoryName: boolean;
783
+ } | null;
784
+ description: string | null;
785
+ group: string | null;
786
+ balance: number | null;
787
+ quantity: number | null;
788
+ price: number;
789
+ isOpen: boolean;
790
+ article: string | null;
791
+ size: string | null;
792
+ size2: string | null;
793
+ size3: string | null;
794
+ imageUUID: string | null;
795
+ vat: number | null;
796
+ image: {
797
+ name: string;
798
+ uuid: string;
799
+ country: string | null;
800
+ createdAt: Date;
801
+ updatedAt: Date;
802
+ deletedAt: Date | null;
803
+ companyUUID: string;
804
+ categoryUUID: string | null;
805
+ color: string | null;
806
+ vbn: string | null;
807
+ externalUUID: string | null;
808
+ productImageUrl: string;
809
+ grower: string | null;
810
+ } | null;
811
+ productUUID: string | null;
812
+ preOrderCollectionUUID: string;
813
+ advancedPrice: string | null;
814
+ isSizeCustomizable: boolean;
815
+ isColorCustomizable: boolean;
816
+ salesUnit: import("../../..").SalesUnitEnum | null;
817
+ multiplicityDescription: string | null;
818
+ matchingProducts: {
819
+ name: string;
820
+ uuid: string;
821
+ country: string | null;
822
+ color: string | null;
823
+ grower: string | null;
824
+ deliveryDate: Date;
825
+ size: string | null;
826
+ }[];
827
+ multiplicityOptions?: {
828
+ uuid: string;
829
+ rank: number;
830
+ title: string | null;
831
+ optionMultiplicity: number;
832
+ optionPrice: number | null;
833
+ }[] | undefined;
834
+ preOrderedQuantity?: number | undefined;
835
+ };
836
+ multiplicityOptionUUID?: string | null | undefined;
837
+ matchingConfig?: {
838
+ matchByName: boolean;
839
+ matchByCategory: boolean;
840
+ matchByColor: boolean;
841
+ matchBySize: boolean;
842
+ matchByGrower: boolean;
843
+ } | null | undefined;
844
+ }, {
845
+ name: string | null;
846
+ uuid: string;
847
+ categoryUUID: string | null;
848
+ color: string | null;
849
+ grower: string | null;
850
+ category: {
851
+ name: string;
852
+ status: import("../../..").CategoryStatusEnum;
853
+ uuid: string;
854
+ createdAt: Date;
855
+ updatedAt: Date;
856
+ deletedAt: Date | null;
857
+ multiplicity: number | null;
858
+ isSizeSeparate: boolean;
859
+ isSaveCategoryName: boolean;
860
+ } | null;
861
+ deliveryDate: Date | null;
862
+ comment: string | null;
863
+ quantity: number;
864
+ price: number | null;
865
+ size: string | null;
866
+ tag: string | null;
867
+ preOrderCollectionItemUUID: string | null;
868
+ preOrderUUID: string;
869
+ isPurchased: boolean;
870
+ isReplaceable: boolean;
871
+ stopPrice: number | null;
872
+ highAttention: boolean;
873
+ parentPreOrderProductUUID: string | null;
874
+ preOrderCollectionItem: {
875
+ name: string;
876
+ type: {
877
+ name: string;
878
+ uuid: string;
879
+ createdAt: Date;
880
+ updatedAt: Date;
881
+ deletedAt: Date | null;
882
+ rank: number;
883
+ } | null;
884
+ uuid: string;
885
+ country: string | null;
886
+ createdAt: Date;
887
+ updatedAt: Date;
888
+ multiplicity: number;
889
+ categoryUUID: string;
890
+ color: string | null;
891
+ grower: string | null;
892
+ category: {
893
+ name: string;
894
+ status: import("../../..").CategoryStatusEnum;
895
+ uuid: string;
896
+ createdAt: Date;
897
+ updatedAt: Date;
898
+ deletedAt: Date | null;
899
+ multiplicity: number | null;
900
+ isSizeSeparate: boolean;
901
+ isSaveCategoryName: boolean;
902
+ } | null;
903
+ description: string | null;
904
+ group: string | null;
905
+ balance: number | null;
906
+ quantity: number | null;
907
+ price: number;
908
+ isOpen: boolean;
909
+ article: string | null;
910
+ size: string | null;
911
+ size2: string | null;
912
+ size3: string | null;
913
+ imageUUID: string | null;
914
+ vat: number | null;
915
+ image: {
916
+ name: string;
917
+ uuid: string;
918
+ country: string | null;
919
+ createdAt: Date;
920
+ updatedAt: Date;
921
+ deletedAt: Date | null;
922
+ companyUUID: string;
923
+ categoryUUID: string | null;
924
+ color: string | null;
925
+ vbn: string | null;
926
+ externalUUID: string | null;
927
+ productImageUrl: string;
928
+ grower: string | null;
929
+ } | null;
930
+ productUUID: string | null;
931
+ preOrderCollectionUUID: string;
932
+ advancedPrice: string | null;
933
+ salesUnit: import("../../..").SalesUnitEnum | null;
934
+ multiplicityDescription: string | null;
935
+ matchingProducts: {
936
+ name: string;
937
+ uuid: string;
938
+ country: string | null;
939
+ color: string | null;
940
+ grower: string | null;
941
+ deliveryDate: Date;
942
+ size: string | null;
943
+ }[];
944
+ isSizeCustomizable?: boolean | undefined;
945
+ isColorCustomizable?: boolean | undefined;
946
+ multiplicityOptions?: {
947
+ uuid: string;
948
+ rank: number;
949
+ title: string | null;
950
+ optionMultiplicity: number;
951
+ optionPrice: number | null;
952
+ }[] | undefined;
953
+ preOrderedQuantity?: number | undefined;
954
+ };
955
+ multiplicityOptionUUID?: string | null | undefined;
956
+ matchingConfig?: {
957
+ matchByName: boolean;
958
+ matchByCategory: boolean;
959
+ matchByColor: boolean;
960
+ matchBySize: boolean;
961
+ matchByGrower: boolean;
962
+ } | null | undefined;
963
+ }>;
964
+ matches: z.ZodArray<z.ZodObject<{
965
+ collectionItem: z.ZodObject<{
966
+ uuid: z.ZodString;
967
+ productUUID: z.ZodNullable<z.ZodString>;
968
+ categoryUUID: z.ZodString;
969
+ isOpen: z.ZodBoolean;
970
+ preOrderCollectionUUID: z.ZodString;
971
+ name: z.ZodString;
972
+ multiplicity: z.ZodNumber;
973
+ quantity: z.ZodNullable<z.ZodNumber>;
974
+ balance: z.ZodNullable<z.ZodNumber>;
975
+ imageUUID: z.ZodNullable<z.ZodString>;
976
+ price: z.ZodNumber;
977
+ advancedPrice: z.ZodNullable<z.ZodString>;
978
+ grower: z.ZodNullable<z.ZodString>;
979
+ size: z.ZodNullable<z.ZodString>;
980
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
981
+ size2: z.ZodNullable<z.ZodString>;
982
+ size3: z.ZodNullable<z.ZodString>;
983
+ color: z.ZodNullable<z.ZodString>;
984
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
985
+ country: z.ZodNullable<z.ZodString>;
986
+ vat: z.ZodNullable<z.ZodNumber>;
987
+ description: z.ZodNullable<z.ZodString>;
988
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").SalesUnitEnum>>;
989
+ article: z.ZodNullable<z.ZodString>;
990
+ group: z.ZodNullable<z.ZodString>;
991
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
992
+ createdAt: z.ZodDate;
993
+ updatedAt: z.ZodDate;
994
+ }, "strip", z.ZodTypeAny, {
995
+ name: string;
996
+ uuid: string;
997
+ country: string | null;
998
+ createdAt: Date;
999
+ updatedAt: Date;
1000
+ multiplicity: number;
1001
+ categoryUUID: string;
1002
+ color: string | null;
1003
+ grower: string | null;
1004
+ description: string | null;
1005
+ group: string | null;
1006
+ balance: number | null;
1007
+ quantity: number | null;
1008
+ price: number;
1009
+ isOpen: boolean;
1010
+ article: string | null;
1011
+ size: string | null;
1012
+ size2: string | null;
1013
+ size3: string | null;
1014
+ imageUUID: string | null;
1015
+ vat: number | null;
1016
+ productUUID: string | null;
1017
+ preOrderCollectionUUID: string;
1018
+ advancedPrice: string | null;
1019
+ isSizeCustomizable: boolean;
1020
+ isColorCustomizable: boolean;
1021
+ salesUnit: import("../../..").SalesUnitEnum | null;
1022
+ multiplicityDescription: string | null;
1023
+ }, {
1024
+ name: string;
1025
+ uuid: string;
1026
+ country: string | null;
1027
+ createdAt: Date;
1028
+ updatedAt: Date;
1029
+ multiplicity: number;
1030
+ categoryUUID: string;
1031
+ color: string | null;
1032
+ grower: string | null;
1033
+ description: string | null;
1034
+ group: string | null;
1035
+ balance: number | null;
1036
+ quantity: number | null;
1037
+ price: number;
1038
+ isOpen: boolean;
1039
+ article: string | null;
1040
+ size: string | null;
1041
+ size2: string | null;
1042
+ size3: string | null;
1043
+ imageUUID: string | null;
1044
+ vat: number | null;
1045
+ productUUID: string | null;
1046
+ preOrderCollectionUUID: string;
1047
+ advancedPrice: string | null;
1048
+ salesUnit: import("../../..").SalesUnitEnum | null;
1049
+ multiplicityDescription: string | null;
1050
+ isSizeCustomizable?: boolean | undefined;
1051
+ isColorCustomizable?: boolean | undefined;
1052
+ }>;
1053
+ quantity: z.ZodNumber;
1054
+ }, "strip", z.ZodTypeAny, {
1055
+ quantity: number;
1056
+ collectionItem: {
1057
+ name: string;
1058
+ uuid: string;
1059
+ country: string | null;
1060
+ createdAt: Date;
1061
+ updatedAt: Date;
1062
+ multiplicity: number;
1063
+ categoryUUID: string;
1064
+ color: string | null;
1065
+ grower: string | null;
1066
+ description: string | null;
1067
+ group: string | null;
1068
+ balance: number | null;
1069
+ quantity: number | null;
1070
+ price: number;
1071
+ isOpen: boolean;
1072
+ article: string | null;
1073
+ size: string | null;
1074
+ size2: string | null;
1075
+ size3: string | null;
1076
+ imageUUID: string | null;
1077
+ vat: number | null;
1078
+ productUUID: string | null;
1079
+ preOrderCollectionUUID: string;
1080
+ advancedPrice: string | null;
1081
+ isSizeCustomizable: boolean;
1082
+ isColorCustomizable: boolean;
1083
+ salesUnit: import("../../..").SalesUnitEnum | null;
1084
+ multiplicityDescription: string | null;
1085
+ };
1086
+ }, {
1087
+ quantity: number;
1088
+ collectionItem: {
1089
+ name: string;
1090
+ uuid: string;
1091
+ country: string | null;
1092
+ createdAt: Date;
1093
+ updatedAt: Date;
1094
+ multiplicity: number;
1095
+ categoryUUID: string;
1096
+ color: string | null;
1097
+ grower: string | null;
1098
+ description: string | null;
1099
+ group: string | null;
1100
+ balance: number | null;
1101
+ quantity: number | null;
1102
+ price: number;
1103
+ isOpen: boolean;
1104
+ article: string | null;
1105
+ size: string | null;
1106
+ size2: string | null;
1107
+ size3: string | null;
1108
+ imageUUID: string | null;
1109
+ vat: number | null;
1110
+ productUUID: string | null;
1111
+ preOrderCollectionUUID: string;
1112
+ advancedPrice: string | null;
1113
+ salesUnit: import("../../..").SalesUnitEnum | null;
1114
+ multiplicityDescription: string | null;
1115
+ isSizeCustomizable?: boolean | undefined;
1116
+ isColorCustomizable?: boolean | undefined;
1117
+ };
1118
+ }>, "many">;
1119
+ remainingQuantity: z.ZodNumber;
1120
+ }, "strip", z.ZodTypeAny, {
1121
+ matches: {
1122
+ quantity: number;
1123
+ collectionItem: {
1124
+ name: string;
1125
+ uuid: string;
1126
+ country: string | null;
1127
+ createdAt: Date;
1128
+ updatedAt: Date;
1129
+ multiplicity: number;
1130
+ categoryUUID: string;
1131
+ color: string | null;
1132
+ grower: string | null;
1133
+ description: string | null;
1134
+ group: string | null;
1135
+ balance: number | null;
1136
+ quantity: number | null;
1137
+ price: number;
1138
+ isOpen: boolean;
1139
+ article: string | null;
1140
+ size: string | null;
1141
+ size2: string | null;
1142
+ size3: string | null;
1143
+ imageUUID: string | null;
1144
+ vat: number | null;
1145
+ productUUID: string | null;
1146
+ preOrderCollectionUUID: string;
1147
+ advancedPrice: string | null;
1148
+ isSizeCustomizable: boolean;
1149
+ isColorCustomizable: boolean;
1150
+ salesUnit: import("../../..").SalesUnitEnum | null;
1151
+ multiplicityDescription: string | null;
1152
+ };
1153
+ }[];
1154
+ remainingQuantity: number;
1155
+ standingOrderProduct: {
1156
+ name: string | null;
1157
+ uuid: string;
1158
+ categoryUUID: string | null;
1159
+ color: string | null;
1160
+ grower: string | null;
1161
+ category: {
1162
+ name: string;
1163
+ status: import("../../..").CategoryStatusEnum;
1164
+ uuid: string;
1165
+ createdAt: Date;
1166
+ updatedAt: Date;
1167
+ deletedAt: Date | null;
1168
+ multiplicity: number | null;
1169
+ isSizeSeparate: boolean;
1170
+ isSaveCategoryName: boolean;
1171
+ } | null;
1172
+ deliveryDate: Date | null;
1173
+ comment: string | null;
1174
+ quantity: number;
1175
+ price: number | null;
1176
+ size: string | null;
1177
+ tag: string | null;
1178
+ preOrderCollectionItemUUID: string | null;
1179
+ preOrderUUID: string;
1180
+ isPurchased: boolean;
1181
+ isReplaceable: boolean;
1182
+ stopPrice: number | null;
1183
+ highAttention: boolean;
1184
+ parentPreOrderProductUUID: string | null;
1185
+ preOrderCollectionItem: {
1186
+ name: string;
1187
+ type: {
1188
+ name: string;
1189
+ uuid: string;
1190
+ createdAt: Date;
1191
+ updatedAt: Date;
1192
+ deletedAt: Date | null;
1193
+ rank: number;
1194
+ } | null;
1195
+ uuid: string;
1196
+ country: string | null;
1197
+ createdAt: Date;
1198
+ updatedAt: Date;
1199
+ multiplicity: number;
1200
+ categoryUUID: string;
1201
+ color: string | null;
1202
+ grower: string | null;
1203
+ category: {
1204
+ name: string;
1205
+ status: import("../../..").CategoryStatusEnum;
1206
+ uuid: string;
1207
+ createdAt: Date;
1208
+ updatedAt: Date;
1209
+ deletedAt: Date | null;
1210
+ multiplicity: number | null;
1211
+ isSizeSeparate: boolean;
1212
+ isSaveCategoryName: boolean;
1213
+ } | null;
1214
+ description: string | null;
1215
+ group: string | null;
1216
+ balance: number | null;
1217
+ quantity: number | null;
1218
+ price: number;
1219
+ isOpen: boolean;
1220
+ article: string | null;
1221
+ size: string | null;
1222
+ size2: string | null;
1223
+ size3: string | null;
1224
+ imageUUID: string | null;
1225
+ vat: number | null;
1226
+ image: {
1227
+ name: string;
1228
+ uuid: string;
1229
+ country: string | null;
1230
+ createdAt: Date;
1231
+ updatedAt: Date;
1232
+ deletedAt: Date | null;
1233
+ companyUUID: string;
1234
+ categoryUUID: string | null;
1235
+ color: string | null;
1236
+ vbn: string | null;
1237
+ externalUUID: string | null;
1238
+ productImageUrl: string;
1239
+ grower: string | null;
1240
+ } | null;
1241
+ productUUID: string | null;
1242
+ preOrderCollectionUUID: string;
1243
+ advancedPrice: string | null;
1244
+ isSizeCustomizable: boolean;
1245
+ isColorCustomizable: boolean;
1246
+ salesUnit: import("../../..").SalesUnitEnum | null;
1247
+ multiplicityDescription: string | null;
1248
+ matchingProducts: {
1249
+ name: string;
1250
+ uuid: string;
1251
+ country: string | null;
1252
+ color: string | null;
1253
+ grower: string | null;
1254
+ deliveryDate: Date;
1255
+ size: string | null;
1256
+ }[];
1257
+ multiplicityOptions?: {
1258
+ uuid: string;
1259
+ rank: number;
1260
+ title: string | null;
1261
+ optionMultiplicity: number;
1262
+ optionPrice: number | null;
1263
+ }[] | undefined;
1264
+ preOrderedQuantity?: number | undefined;
1265
+ };
1266
+ multiplicityOptionUUID?: string | null | undefined;
1267
+ matchingConfig?: {
1268
+ matchByName: boolean;
1269
+ matchByCategory: boolean;
1270
+ matchByColor: boolean;
1271
+ matchBySize: boolean;
1272
+ matchByGrower: boolean;
1273
+ } | null | undefined;
1274
+ };
1275
+ }, {
1276
+ matches: {
1277
+ quantity: number;
1278
+ collectionItem: {
1279
+ name: string;
1280
+ uuid: string;
1281
+ country: string | null;
1282
+ createdAt: Date;
1283
+ updatedAt: Date;
1284
+ multiplicity: number;
1285
+ categoryUUID: string;
1286
+ color: string | null;
1287
+ grower: string | null;
1288
+ description: string | null;
1289
+ group: string | null;
1290
+ balance: number | null;
1291
+ quantity: number | null;
1292
+ price: number;
1293
+ isOpen: boolean;
1294
+ article: string | null;
1295
+ size: string | null;
1296
+ size2: string | null;
1297
+ size3: string | null;
1298
+ imageUUID: string | null;
1299
+ vat: number | null;
1300
+ productUUID: string | null;
1301
+ preOrderCollectionUUID: string;
1302
+ advancedPrice: string | null;
1303
+ salesUnit: import("../../..").SalesUnitEnum | null;
1304
+ multiplicityDescription: string | null;
1305
+ isSizeCustomizable?: boolean | undefined;
1306
+ isColorCustomizable?: boolean | undefined;
1307
+ };
1308
+ }[];
1309
+ remainingQuantity: number;
1310
+ standingOrderProduct: {
1311
+ name: string | null;
1312
+ uuid: string;
1313
+ categoryUUID: string | null;
1314
+ color: string | null;
1315
+ grower: string | null;
1316
+ category: {
1317
+ name: string;
1318
+ status: import("../../..").CategoryStatusEnum;
1319
+ uuid: string;
1320
+ createdAt: Date;
1321
+ updatedAt: Date;
1322
+ deletedAt: Date | null;
1323
+ multiplicity: number | null;
1324
+ isSizeSeparate: boolean;
1325
+ isSaveCategoryName: boolean;
1326
+ } | null;
1327
+ deliveryDate: Date | null;
1328
+ comment: string | null;
1329
+ quantity: number;
1330
+ price: number | null;
1331
+ size: string | null;
1332
+ tag: string | null;
1333
+ preOrderCollectionItemUUID: string | null;
1334
+ preOrderUUID: string;
1335
+ isPurchased: boolean;
1336
+ isReplaceable: boolean;
1337
+ stopPrice: number | null;
1338
+ highAttention: boolean;
1339
+ parentPreOrderProductUUID: string | null;
1340
+ preOrderCollectionItem: {
1341
+ name: string;
1342
+ type: {
1343
+ name: string;
1344
+ uuid: string;
1345
+ createdAt: Date;
1346
+ updatedAt: Date;
1347
+ deletedAt: Date | null;
1348
+ rank: number;
1349
+ } | null;
1350
+ uuid: string;
1351
+ country: string | null;
1352
+ createdAt: Date;
1353
+ updatedAt: Date;
1354
+ multiplicity: number;
1355
+ categoryUUID: string;
1356
+ color: string | null;
1357
+ grower: string | null;
1358
+ category: {
1359
+ name: string;
1360
+ status: import("../../..").CategoryStatusEnum;
1361
+ uuid: string;
1362
+ createdAt: Date;
1363
+ updatedAt: Date;
1364
+ deletedAt: Date | null;
1365
+ multiplicity: number | null;
1366
+ isSizeSeparate: boolean;
1367
+ isSaveCategoryName: boolean;
1368
+ } | null;
1369
+ description: string | null;
1370
+ group: string | null;
1371
+ balance: number | null;
1372
+ quantity: number | null;
1373
+ price: number;
1374
+ isOpen: boolean;
1375
+ article: string | null;
1376
+ size: string | null;
1377
+ size2: string | null;
1378
+ size3: string | null;
1379
+ imageUUID: string | null;
1380
+ vat: number | null;
1381
+ image: {
1382
+ name: string;
1383
+ uuid: string;
1384
+ country: string | null;
1385
+ createdAt: Date;
1386
+ updatedAt: Date;
1387
+ deletedAt: Date | null;
1388
+ companyUUID: string;
1389
+ categoryUUID: string | null;
1390
+ color: string | null;
1391
+ vbn: string | null;
1392
+ externalUUID: string | null;
1393
+ productImageUrl: string;
1394
+ grower: string | null;
1395
+ } | null;
1396
+ productUUID: string | null;
1397
+ preOrderCollectionUUID: string;
1398
+ advancedPrice: string | null;
1399
+ salesUnit: import("../../..").SalesUnitEnum | null;
1400
+ multiplicityDescription: string | null;
1401
+ matchingProducts: {
1402
+ name: string;
1403
+ uuid: string;
1404
+ country: string | null;
1405
+ color: string | null;
1406
+ grower: string | null;
1407
+ deliveryDate: Date;
1408
+ size: string | null;
1409
+ }[];
1410
+ isSizeCustomizable?: boolean | undefined;
1411
+ isColorCustomizable?: boolean | undefined;
1412
+ multiplicityOptions?: {
1413
+ uuid: string;
1414
+ rank: number;
1415
+ title: string | null;
1416
+ optionMultiplicity: number;
1417
+ optionPrice: number | null;
1418
+ }[] | undefined;
1419
+ preOrderedQuantity?: number | undefined;
1420
+ };
1421
+ multiplicityOptionUUID?: string | null | undefined;
1422
+ matchingConfig?: {
1423
+ matchByName: boolean;
1424
+ matchByCategory: boolean;
1425
+ matchByColor: boolean;
1426
+ matchBySize: boolean;
1427
+ matchByGrower: boolean;
1428
+ } | null | undefined;
1429
+ };
1430
+ }>>;
1431
+ warnings: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ mappings: Record<string, {
1434
+ matches: {
1435
+ quantity: number;
1436
+ collectionItem: {
1437
+ name: string;
1438
+ uuid: string;
1439
+ country: string | null;
1440
+ createdAt: Date;
1441
+ updatedAt: Date;
1442
+ multiplicity: number;
1443
+ categoryUUID: string;
1444
+ color: string | null;
1445
+ grower: string | null;
1446
+ description: string | null;
1447
+ group: string | null;
1448
+ balance: number | null;
1449
+ quantity: number | null;
1450
+ price: number;
1451
+ isOpen: boolean;
1452
+ article: string | null;
1453
+ size: string | null;
1454
+ size2: string | null;
1455
+ size3: string | null;
1456
+ imageUUID: string | null;
1457
+ vat: number | null;
1458
+ productUUID: string | null;
1459
+ preOrderCollectionUUID: string;
1460
+ advancedPrice: string | null;
1461
+ isSizeCustomizable: boolean;
1462
+ isColorCustomizable: boolean;
1463
+ salesUnit: import("../../..").SalesUnitEnum | null;
1464
+ multiplicityDescription: string | null;
1465
+ };
1466
+ }[];
1467
+ remainingQuantity: number;
1468
+ standingOrderProduct: {
1469
+ name: string | null;
1470
+ uuid: string;
1471
+ categoryUUID: string | null;
1472
+ color: string | null;
1473
+ grower: string | null;
1474
+ category: {
1475
+ name: string;
1476
+ status: import("../../..").CategoryStatusEnum;
1477
+ uuid: string;
1478
+ createdAt: Date;
1479
+ updatedAt: Date;
1480
+ deletedAt: Date | null;
1481
+ multiplicity: number | null;
1482
+ isSizeSeparate: boolean;
1483
+ isSaveCategoryName: boolean;
1484
+ } | null;
1485
+ deliveryDate: Date | null;
1486
+ comment: string | null;
1487
+ quantity: number;
1488
+ price: number | null;
1489
+ size: string | null;
1490
+ tag: string | null;
1491
+ preOrderCollectionItemUUID: string | null;
1492
+ preOrderUUID: string;
1493
+ isPurchased: boolean;
1494
+ isReplaceable: boolean;
1495
+ stopPrice: number | null;
1496
+ highAttention: boolean;
1497
+ parentPreOrderProductUUID: string | null;
1498
+ preOrderCollectionItem: {
1499
+ name: string;
1500
+ type: {
1501
+ name: string;
1502
+ uuid: string;
1503
+ createdAt: Date;
1504
+ updatedAt: Date;
1505
+ deletedAt: Date | null;
1506
+ rank: number;
1507
+ } | null;
1508
+ uuid: string;
1509
+ country: string | null;
1510
+ createdAt: Date;
1511
+ updatedAt: Date;
1512
+ multiplicity: number;
1513
+ categoryUUID: string;
1514
+ color: string | null;
1515
+ grower: string | null;
1516
+ category: {
1517
+ name: string;
1518
+ status: import("../../..").CategoryStatusEnum;
1519
+ uuid: string;
1520
+ createdAt: Date;
1521
+ updatedAt: Date;
1522
+ deletedAt: Date | null;
1523
+ multiplicity: number | null;
1524
+ isSizeSeparate: boolean;
1525
+ isSaveCategoryName: boolean;
1526
+ } | null;
1527
+ description: string | null;
1528
+ group: string | null;
1529
+ balance: number | null;
1530
+ quantity: number | null;
1531
+ price: number;
1532
+ isOpen: boolean;
1533
+ article: string | null;
1534
+ size: string | null;
1535
+ size2: string | null;
1536
+ size3: string | null;
1537
+ imageUUID: string | null;
1538
+ vat: number | null;
1539
+ image: {
1540
+ name: string;
1541
+ uuid: string;
1542
+ country: string | null;
1543
+ createdAt: Date;
1544
+ updatedAt: Date;
1545
+ deletedAt: Date | null;
1546
+ companyUUID: string;
1547
+ categoryUUID: string | null;
1548
+ color: string | null;
1549
+ vbn: string | null;
1550
+ externalUUID: string | null;
1551
+ productImageUrl: string;
1552
+ grower: string | null;
1553
+ } | null;
1554
+ productUUID: string | null;
1555
+ preOrderCollectionUUID: string;
1556
+ advancedPrice: string | null;
1557
+ isSizeCustomizable: boolean;
1558
+ isColorCustomizable: boolean;
1559
+ salesUnit: import("../../..").SalesUnitEnum | null;
1560
+ multiplicityDescription: string | null;
1561
+ matchingProducts: {
1562
+ name: string;
1563
+ uuid: string;
1564
+ country: string | null;
1565
+ color: string | null;
1566
+ grower: string | null;
1567
+ deliveryDate: Date;
1568
+ size: string | null;
1569
+ }[];
1570
+ multiplicityOptions?: {
1571
+ uuid: string;
1572
+ rank: number;
1573
+ title: string | null;
1574
+ optionMultiplicity: number;
1575
+ optionPrice: number | null;
1576
+ }[] | undefined;
1577
+ preOrderedQuantity?: number | undefined;
1578
+ };
1579
+ multiplicityOptionUUID?: string | null | undefined;
1580
+ matchingConfig?: {
1581
+ matchByName: boolean;
1582
+ matchByCategory: boolean;
1583
+ matchByColor: boolean;
1584
+ matchBySize: boolean;
1585
+ matchByGrower: boolean;
1586
+ } | null | undefined;
1587
+ };
1588
+ }>;
1589
+ warnings: Record<string, string[]>;
1590
+ standingOrder: {
1591
+ status: import("../../..").PreOrderStatusEnum;
1592
+ uuid: string;
1593
+ createdAt: Date;
1594
+ comment: string | null;
1595
+ clientUUID: string;
1596
+ branchUUID: string | null;
1597
+ tag: string | null;
1598
+ client: {
1599
+ email: string | null;
1600
+ phone: string | null;
1601
+ name: string;
1602
+ code: string | null;
1603
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1604
+ uuid: string;
1605
+ contactName: string | null;
1606
+ address: string | null;
1607
+ city: string | null;
1608
+ createdAt: Date;
1609
+ updatedAt: Date;
1610
+ deletedAt: Date | null;
1611
+ companyUUID: string;
1612
+ isCommon: boolean;
1613
+ contractNumber: string | null;
1614
+ contractDate: Date | null;
1615
+ group: string | null;
1616
+ marking: string | null;
1617
+ alwaysRequiresDelivery: boolean;
1618
+ additionalPhone: string | null;
1619
+ comment: string | null;
1620
+ balance: number;
1621
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1622
+ responsibleUserUUID: string | null;
1623
+ responsibleSince: Date | null;
1624
+ };
1625
+ branch: {
1626
+ name: string;
1627
+ uuid: string;
1628
+ contactName: string | null;
1629
+ contactPhone: string | null;
1630
+ address: string | null;
1631
+ city: string | null;
1632
+ region: string | null;
1633
+ country: string | null;
1634
+ clientId: string;
1635
+ createdAt: Date;
1636
+ updatedAt: Date;
1637
+ } | null;
1638
+ preOrderCollection: {
1639
+ status: import("../../..").PreOrderCollectionStatusEnum;
1640
+ uuid: string;
1641
+ deliveryDate: Date;
1642
+ description: string;
1643
+ label: string | null;
1644
+ availableUntil: Date;
1645
+ imageUrl: string | null;
1646
+ hideItemOptions: boolean;
1647
+ } | null;
1648
+ preOrderNum: number;
1649
+ };
1650
+ }, {
1651
+ mappings: Record<string, {
1652
+ matches: {
1653
+ quantity: number;
1654
+ collectionItem: {
1655
+ name: string;
1656
+ uuid: string;
1657
+ country: string | null;
1658
+ createdAt: Date;
1659
+ updatedAt: Date;
1660
+ multiplicity: number;
1661
+ categoryUUID: string;
1662
+ color: string | null;
1663
+ grower: string | null;
1664
+ description: string | null;
1665
+ group: string | null;
1666
+ balance: number | null;
1667
+ quantity: number | null;
1668
+ price: number;
1669
+ isOpen: boolean;
1670
+ article: string | null;
1671
+ size: string | null;
1672
+ size2: string | null;
1673
+ size3: string | null;
1674
+ imageUUID: string | null;
1675
+ vat: number | null;
1676
+ productUUID: string | null;
1677
+ preOrderCollectionUUID: string;
1678
+ advancedPrice: string | null;
1679
+ salesUnit: import("../../..").SalesUnitEnum | null;
1680
+ multiplicityDescription: string | null;
1681
+ isSizeCustomizable?: boolean | undefined;
1682
+ isColorCustomizable?: boolean | undefined;
1683
+ };
1684
+ }[];
1685
+ remainingQuantity: number;
1686
+ standingOrderProduct: {
1687
+ name: string | null;
1688
+ uuid: string;
1689
+ categoryUUID: string | null;
1690
+ color: string | null;
1691
+ grower: string | null;
1692
+ category: {
1693
+ name: string;
1694
+ status: import("../../..").CategoryStatusEnum;
1695
+ uuid: string;
1696
+ createdAt: Date;
1697
+ updatedAt: Date;
1698
+ deletedAt: Date | null;
1699
+ multiplicity: number | null;
1700
+ isSizeSeparate: boolean;
1701
+ isSaveCategoryName: boolean;
1702
+ } | null;
1703
+ deliveryDate: Date | null;
1704
+ comment: string | null;
1705
+ quantity: number;
1706
+ price: number | null;
1707
+ size: string | null;
1708
+ tag: string | null;
1709
+ preOrderCollectionItemUUID: string | null;
1710
+ preOrderUUID: string;
1711
+ isPurchased: boolean;
1712
+ isReplaceable: boolean;
1713
+ stopPrice: number | null;
1714
+ highAttention: boolean;
1715
+ parentPreOrderProductUUID: string | null;
1716
+ preOrderCollectionItem: {
1717
+ name: string;
1718
+ type: {
1719
+ name: string;
1720
+ uuid: string;
1721
+ createdAt: Date;
1722
+ updatedAt: Date;
1723
+ deletedAt: Date | null;
1724
+ rank: number;
1725
+ } | null;
1726
+ uuid: string;
1727
+ country: string | null;
1728
+ createdAt: Date;
1729
+ updatedAt: Date;
1730
+ multiplicity: number;
1731
+ categoryUUID: string;
1732
+ color: string | null;
1733
+ grower: string | null;
1734
+ category: {
1735
+ name: string;
1736
+ status: import("../../..").CategoryStatusEnum;
1737
+ uuid: string;
1738
+ createdAt: Date;
1739
+ updatedAt: Date;
1740
+ deletedAt: Date | null;
1741
+ multiplicity: number | null;
1742
+ isSizeSeparate: boolean;
1743
+ isSaveCategoryName: boolean;
1744
+ } | null;
1745
+ description: string | null;
1746
+ group: string | null;
1747
+ balance: number | null;
1748
+ quantity: number | null;
1749
+ price: number;
1750
+ isOpen: boolean;
1751
+ article: string | null;
1752
+ size: string | null;
1753
+ size2: string | null;
1754
+ size3: string | null;
1755
+ imageUUID: string | null;
1756
+ vat: number | null;
1757
+ image: {
1758
+ name: string;
1759
+ uuid: string;
1760
+ country: string | null;
1761
+ createdAt: Date;
1762
+ updatedAt: Date;
1763
+ deletedAt: Date | null;
1764
+ companyUUID: string;
1765
+ categoryUUID: string | null;
1766
+ color: string | null;
1767
+ vbn: string | null;
1768
+ externalUUID: string | null;
1769
+ productImageUrl: string;
1770
+ grower: string | null;
1771
+ } | null;
1772
+ productUUID: string | null;
1773
+ preOrderCollectionUUID: string;
1774
+ advancedPrice: string | null;
1775
+ salesUnit: import("../../..").SalesUnitEnum | null;
1776
+ multiplicityDescription: string | null;
1777
+ matchingProducts: {
1778
+ name: string;
1779
+ uuid: string;
1780
+ country: string | null;
1781
+ color: string | null;
1782
+ grower: string | null;
1783
+ deliveryDate: Date;
1784
+ size: string | null;
1785
+ }[];
1786
+ isSizeCustomizable?: boolean | undefined;
1787
+ isColorCustomizable?: boolean | undefined;
1788
+ multiplicityOptions?: {
1789
+ uuid: string;
1790
+ rank: number;
1791
+ title: string | null;
1792
+ optionMultiplicity: number;
1793
+ optionPrice: number | null;
1794
+ }[] | undefined;
1795
+ preOrderedQuantity?: number | undefined;
1796
+ };
1797
+ multiplicityOptionUUID?: string | null | undefined;
1798
+ matchingConfig?: {
1799
+ matchByName: boolean;
1800
+ matchByCategory: boolean;
1801
+ matchByColor: boolean;
1802
+ matchBySize: boolean;
1803
+ matchByGrower: boolean;
1804
+ } | null | undefined;
1805
+ };
1806
+ }>;
1807
+ warnings: Record<string, string[]>;
1808
+ standingOrder: {
1809
+ status: import("../../..").PreOrderStatusEnum;
1810
+ uuid: string;
1811
+ createdAt: Date;
1812
+ comment: string | null;
1813
+ clientUUID: string;
1814
+ branchUUID: string | null;
1815
+ tag: string | null;
1816
+ client: {
1817
+ email: string | null;
1818
+ phone: string | null;
1819
+ name: string;
1820
+ code: string | null;
1821
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1822
+ uuid: string;
1823
+ contactName: string | null;
1824
+ address: string | null;
1825
+ city: string | null;
1826
+ createdAt: Date;
1827
+ updatedAt: Date;
1828
+ deletedAt: Date | null;
1829
+ companyUUID: string;
1830
+ isCommon: boolean;
1831
+ contractNumber: string | null;
1832
+ contractDate: Date | null;
1833
+ group: string | null;
1834
+ marking: string | null;
1835
+ alwaysRequiresDelivery: boolean;
1836
+ additionalPhone: string | null;
1837
+ comment: string | null;
1838
+ balance: number;
1839
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1840
+ responsibleUserUUID: string | null;
1841
+ responsibleSince: Date | null;
1842
+ };
1843
+ branch: {
1844
+ name: string;
1845
+ uuid: string;
1846
+ contactName: string | null;
1847
+ contactPhone: string | null;
1848
+ address: string | null;
1849
+ city: string | null;
1850
+ region: string | null;
1851
+ country: string | null;
1852
+ clientId: string;
1853
+ createdAt: Date;
1854
+ updatedAt: Date;
1855
+ } | null;
1856
+ preOrderCollection: {
1857
+ status: import("../../..").PreOrderCollectionStatusEnum;
1858
+ uuid: string;
1859
+ deliveryDate: Date;
1860
+ description: string;
1861
+ label: string | null;
1862
+ availableUntil: Date;
1863
+ imageUrl: string | null;
1864
+ hideItemOptions: boolean;
1865
+ } | null;
1866
+ preOrderNum: number;
1867
+ };
1868
+ }>, "many">;
1869
+ errorList: z.ZodOptional<z.ZodArray<z.ZodObject<{
1870
+ code: z.ZodString;
1871
+ message: z.ZodString;
1872
+ }, "strip", z.ZodTypeAny, {
1873
+ code: string;
1874
+ message: string;
1875
+ }, {
1876
+ code: string;
1877
+ message: string;
1878
+ }>, "many">>;
1879
+ }, "strip", z.ZodTypeAny, {
1880
+ analyses: {
1881
+ mappings: Record<string, {
1882
+ matches: {
1883
+ quantity: number;
1884
+ collectionItem: {
1885
+ name: string;
1886
+ uuid: string;
1887
+ country: string | null;
1888
+ createdAt: Date;
1889
+ updatedAt: Date;
1890
+ multiplicity: number;
1891
+ categoryUUID: string;
1892
+ color: string | null;
1893
+ grower: string | null;
1894
+ description: string | null;
1895
+ group: string | null;
1896
+ balance: number | null;
1897
+ quantity: number | null;
1898
+ price: number;
1899
+ isOpen: boolean;
1900
+ article: string | null;
1901
+ size: string | null;
1902
+ size2: string | null;
1903
+ size3: string | null;
1904
+ imageUUID: string | null;
1905
+ vat: number | null;
1906
+ productUUID: string | null;
1907
+ preOrderCollectionUUID: string;
1908
+ advancedPrice: string | null;
1909
+ isSizeCustomizable: boolean;
1910
+ isColorCustomizable: boolean;
1911
+ salesUnit: import("../../..").SalesUnitEnum | null;
1912
+ multiplicityDescription: string | null;
1913
+ };
1914
+ }[];
1915
+ remainingQuantity: number;
1916
+ standingOrderProduct: {
1917
+ name: string | null;
1918
+ uuid: string;
1919
+ categoryUUID: string | null;
1920
+ color: string | null;
1921
+ grower: string | null;
1922
+ category: {
1923
+ name: string;
1924
+ status: import("../../..").CategoryStatusEnum;
1925
+ uuid: string;
1926
+ createdAt: Date;
1927
+ updatedAt: Date;
1928
+ deletedAt: Date | null;
1929
+ multiplicity: number | null;
1930
+ isSizeSeparate: boolean;
1931
+ isSaveCategoryName: boolean;
1932
+ } | null;
1933
+ deliveryDate: Date | null;
1934
+ comment: string | null;
1935
+ quantity: number;
1936
+ price: number | null;
1937
+ size: string | null;
1938
+ tag: string | null;
1939
+ preOrderCollectionItemUUID: string | null;
1940
+ preOrderUUID: string;
1941
+ isPurchased: boolean;
1942
+ isReplaceable: boolean;
1943
+ stopPrice: number | null;
1944
+ highAttention: boolean;
1945
+ parentPreOrderProductUUID: string | null;
1946
+ preOrderCollectionItem: {
1947
+ name: string;
1948
+ type: {
1949
+ name: string;
1950
+ uuid: string;
1951
+ createdAt: Date;
1952
+ updatedAt: Date;
1953
+ deletedAt: Date | null;
1954
+ rank: number;
1955
+ } | null;
1956
+ uuid: string;
1957
+ country: string | null;
1958
+ createdAt: Date;
1959
+ updatedAt: Date;
1960
+ multiplicity: number;
1961
+ categoryUUID: string;
1962
+ color: string | null;
1963
+ grower: string | null;
1964
+ category: {
1965
+ name: string;
1966
+ status: import("../../..").CategoryStatusEnum;
1967
+ uuid: string;
1968
+ createdAt: Date;
1969
+ updatedAt: Date;
1970
+ deletedAt: Date | null;
1971
+ multiplicity: number | null;
1972
+ isSizeSeparate: boolean;
1973
+ isSaveCategoryName: boolean;
1974
+ } | null;
1975
+ description: string | null;
1976
+ group: string | null;
1977
+ balance: number | null;
1978
+ quantity: number | null;
1979
+ price: number;
1980
+ isOpen: boolean;
1981
+ article: string | null;
1982
+ size: string | null;
1983
+ size2: string | null;
1984
+ size3: string | null;
1985
+ imageUUID: string | null;
1986
+ vat: number | null;
1987
+ image: {
1988
+ name: string;
1989
+ uuid: string;
1990
+ country: string | null;
1991
+ createdAt: Date;
1992
+ updatedAt: Date;
1993
+ deletedAt: Date | null;
1994
+ companyUUID: string;
1995
+ categoryUUID: string | null;
1996
+ color: string | null;
1997
+ vbn: string | null;
1998
+ externalUUID: string | null;
1999
+ productImageUrl: string;
2000
+ grower: string | null;
2001
+ } | null;
2002
+ productUUID: string | null;
2003
+ preOrderCollectionUUID: string;
2004
+ advancedPrice: string | null;
2005
+ isSizeCustomizable: boolean;
2006
+ isColorCustomizable: boolean;
2007
+ salesUnit: import("../../..").SalesUnitEnum | null;
2008
+ multiplicityDescription: string | null;
2009
+ matchingProducts: {
2010
+ name: string;
2011
+ uuid: string;
2012
+ country: string | null;
2013
+ color: string | null;
2014
+ grower: string | null;
2015
+ deliveryDate: Date;
2016
+ size: string | null;
2017
+ }[];
2018
+ multiplicityOptions?: {
2019
+ uuid: string;
2020
+ rank: number;
2021
+ title: string | null;
2022
+ optionMultiplicity: number;
2023
+ optionPrice: number | null;
2024
+ }[] | undefined;
2025
+ preOrderedQuantity?: number | undefined;
2026
+ };
2027
+ multiplicityOptionUUID?: string | null | undefined;
2028
+ matchingConfig?: {
2029
+ matchByName: boolean;
2030
+ matchByCategory: boolean;
2031
+ matchByColor: boolean;
2032
+ matchBySize: boolean;
2033
+ matchByGrower: boolean;
2034
+ } | null | undefined;
2035
+ };
2036
+ }>;
2037
+ warnings: Record<string, string[]>;
2038
+ standingOrder: {
2039
+ status: import("../../..").PreOrderStatusEnum;
2040
+ uuid: string;
2041
+ createdAt: Date;
2042
+ comment: string | null;
2043
+ clientUUID: string;
2044
+ branchUUID: string | null;
2045
+ tag: string | null;
2046
+ client: {
2047
+ email: string | null;
2048
+ phone: string | null;
2049
+ name: string;
2050
+ code: string | null;
2051
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2052
+ uuid: string;
2053
+ contactName: string | null;
2054
+ address: string | null;
2055
+ city: string | null;
2056
+ createdAt: Date;
2057
+ updatedAt: Date;
2058
+ deletedAt: Date | null;
2059
+ companyUUID: string;
2060
+ isCommon: boolean;
2061
+ contractNumber: string | null;
2062
+ contractDate: Date | null;
2063
+ group: string | null;
2064
+ marking: string | null;
2065
+ alwaysRequiresDelivery: boolean;
2066
+ additionalPhone: string | null;
2067
+ comment: string | null;
2068
+ balance: number;
2069
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2070
+ responsibleUserUUID: string | null;
2071
+ responsibleSince: Date | null;
2072
+ };
2073
+ branch: {
2074
+ name: string;
2075
+ uuid: string;
2076
+ contactName: string | null;
2077
+ contactPhone: string | null;
2078
+ address: string | null;
2079
+ city: string | null;
2080
+ region: string | null;
2081
+ country: string | null;
2082
+ clientId: string;
2083
+ createdAt: Date;
2084
+ updatedAt: Date;
2085
+ } | null;
2086
+ preOrderCollection: {
2087
+ status: import("../../..").PreOrderCollectionStatusEnum;
2088
+ uuid: string;
2089
+ deliveryDate: Date;
2090
+ description: string;
2091
+ label: string | null;
2092
+ availableUntil: Date;
2093
+ imageUrl: string | null;
2094
+ hideItemOptions: boolean;
2095
+ } | null;
2096
+ preOrderNum: number;
2097
+ };
2098
+ }[];
2099
+ errorList?: {
2100
+ code: string;
2101
+ message: string;
2102
+ }[] | undefined;
2103
+ }, {
2104
+ analyses: {
2105
+ mappings: Record<string, {
2106
+ matches: {
2107
+ quantity: number;
2108
+ collectionItem: {
2109
+ name: string;
2110
+ uuid: string;
2111
+ country: string | null;
2112
+ createdAt: Date;
2113
+ updatedAt: Date;
2114
+ multiplicity: number;
2115
+ categoryUUID: string;
2116
+ color: string | null;
2117
+ grower: string | null;
2118
+ description: string | null;
2119
+ group: string | null;
2120
+ balance: number | null;
2121
+ quantity: number | null;
2122
+ price: number;
2123
+ isOpen: boolean;
2124
+ article: string | null;
2125
+ size: string | null;
2126
+ size2: string | null;
2127
+ size3: string | null;
2128
+ imageUUID: string | null;
2129
+ vat: number | null;
2130
+ productUUID: string | null;
2131
+ preOrderCollectionUUID: string;
2132
+ advancedPrice: string | null;
2133
+ salesUnit: import("../../..").SalesUnitEnum | null;
2134
+ multiplicityDescription: string | null;
2135
+ isSizeCustomizable?: boolean | undefined;
2136
+ isColorCustomizable?: boolean | undefined;
2137
+ };
2138
+ }[];
2139
+ remainingQuantity: number;
2140
+ standingOrderProduct: {
2141
+ name: string | null;
2142
+ uuid: string;
2143
+ categoryUUID: string | null;
2144
+ color: string | null;
2145
+ grower: string | null;
2146
+ category: {
2147
+ name: string;
2148
+ status: import("../../..").CategoryStatusEnum;
2149
+ uuid: string;
2150
+ createdAt: Date;
2151
+ updatedAt: Date;
2152
+ deletedAt: Date | null;
2153
+ multiplicity: number | null;
2154
+ isSizeSeparate: boolean;
2155
+ isSaveCategoryName: boolean;
2156
+ } | null;
2157
+ deliveryDate: Date | null;
2158
+ comment: string | null;
2159
+ quantity: number;
2160
+ price: number | null;
2161
+ size: string | null;
2162
+ tag: string | null;
2163
+ preOrderCollectionItemUUID: string | null;
2164
+ preOrderUUID: string;
2165
+ isPurchased: boolean;
2166
+ isReplaceable: boolean;
2167
+ stopPrice: number | null;
2168
+ highAttention: boolean;
2169
+ parentPreOrderProductUUID: string | null;
2170
+ preOrderCollectionItem: {
2171
+ name: string;
2172
+ type: {
2173
+ name: string;
2174
+ uuid: string;
2175
+ createdAt: Date;
2176
+ updatedAt: Date;
2177
+ deletedAt: Date | null;
2178
+ rank: number;
2179
+ } | null;
2180
+ uuid: string;
2181
+ country: string | null;
2182
+ createdAt: Date;
2183
+ updatedAt: Date;
2184
+ multiplicity: number;
2185
+ categoryUUID: string;
2186
+ color: string | null;
2187
+ grower: string | null;
2188
+ category: {
2189
+ name: string;
2190
+ status: import("../../..").CategoryStatusEnum;
2191
+ uuid: string;
2192
+ createdAt: Date;
2193
+ updatedAt: Date;
2194
+ deletedAt: Date | null;
2195
+ multiplicity: number | null;
2196
+ isSizeSeparate: boolean;
2197
+ isSaveCategoryName: boolean;
2198
+ } | null;
2199
+ description: string | null;
2200
+ group: string | null;
2201
+ balance: number | null;
2202
+ quantity: number | null;
2203
+ price: number;
2204
+ isOpen: boolean;
2205
+ article: string | null;
2206
+ size: string | null;
2207
+ size2: string | null;
2208
+ size3: string | null;
2209
+ imageUUID: string | null;
2210
+ vat: number | null;
2211
+ image: {
2212
+ name: string;
2213
+ uuid: string;
2214
+ country: string | null;
2215
+ createdAt: Date;
2216
+ updatedAt: Date;
2217
+ deletedAt: Date | null;
2218
+ companyUUID: string;
2219
+ categoryUUID: string | null;
2220
+ color: string | null;
2221
+ vbn: string | null;
2222
+ externalUUID: string | null;
2223
+ productImageUrl: string;
2224
+ grower: string | null;
2225
+ } | null;
2226
+ productUUID: string | null;
2227
+ preOrderCollectionUUID: string;
2228
+ advancedPrice: string | null;
2229
+ salesUnit: import("../../..").SalesUnitEnum | null;
2230
+ multiplicityDescription: string | null;
2231
+ matchingProducts: {
2232
+ name: string;
2233
+ uuid: string;
2234
+ country: string | null;
2235
+ color: string | null;
2236
+ grower: string | null;
2237
+ deliveryDate: Date;
2238
+ size: string | null;
2239
+ }[];
2240
+ isSizeCustomizable?: boolean | undefined;
2241
+ isColorCustomizable?: boolean | undefined;
2242
+ multiplicityOptions?: {
2243
+ uuid: string;
2244
+ rank: number;
2245
+ title: string | null;
2246
+ optionMultiplicity: number;
2247
+ optionPrice: number | null;
2248
+ }[] | undefined;
2249
+ preOrderedQuantity?: number | undefined;
2250
+ };
2251
+ multiplicityOptionUUID?: string | null | undefined;
2252
+ matchingConfig?: {
2253
+ matchByName: boolean;
2254
+ matchByCategory: boolean;
2255
+ matchByColor: boolean;
2256
+ matchBySize: boolean;
2257
+ matchByGrower: boolean;
2258
+ } | null | undefined;
2259
+ };
2260
+ }>;
2261
+ warnings: Record<string, string[]>;
2262
+ standingOrder: {
2263
+ status: import("../../..").PreOrderStatusEnum;
2264
+ uuid: string;
2265
+ createdAt: Date;
2266
+ comment: string | null;
2267
+ clientUUID: string;
2268
+ branchUUID: string | null;
2269
+ tag: string | null;
2270
+ client: {
2271
+ email: string | null;
2272
+ phone: string | null;
2273
+ name: string;
2274
+ code: string | null;
2275
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2276
+ uuid: string;
2277
+ contactName: string | null;
2278
+ address: string | null;
2279
+ city: string | null;
2280
+ createdAt: Date;
2281
+ updatedAt: Date;
2282
+ deletedAt: Date | null;
2283
+ companyUUID: string;
2284
+ isCommon: boolean;
2285
+ contractNumber: string | null;
2286
+ contractDate: Date | null;
2287
+ group: string | null;
2288
+ marking: string | null;
2289
+ alwaysRequiresDelivery: boolean;
2290
+ additionalPhone: string | null;
2291
+ comment: string | null;
2292
+ balance: number;
2293
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2294
+ responsibleUserUUID: string | null;
2295
+ responsibleSince: Date | null;
2296
+ };
2297
+ branch: {
2298
+ name: string;
2299
+ uuid: string;
2300
+ contactName: string | null;
2301
+ contactPhone: string | null;
2302
+ address: string | null;
2303
+ city: string | null;
2304
+ region: string | null;
2305
+ country: string | null;
2306
+ clientId: string;
2307
+ createdAt: Date;
2308
+ updatedAt: Date;
2309
+ } | null;
2310
+ preOrderCollection: {
2311
+ status: import("../../..").PreOrderCollectionStatusEnum;
2312
+ uuid: string;
2313
+ deliveryDate: Date;
2314
+ description: string;
2315
+ label: string | null;
2316
+ availableUntil: Date;
2317
+ imageUrl: string | null;
2318
+ hideItemOptions: boolean;
2319
+ } | null;
2320
+ preOrderNum: number;
2321
+ };
2322
+ }[];
2323
+ errorList?: {
2324
+ code: string;
2325
+ message: string;
2326
+ }[] | undefined;
2327
+ }>;
2328
+ }, "strip", z.ZodTypeAny, {
2329
+ data: {
2330
+ analyses: {
2331
+ mappings: Record<string, {
2332
+ matches: {
2333
+ quantity: number;
2334
+ collectionItem: {
2335
+ name: string;
2336
+ uuid: string;
2337
+ country: string | null;
2338
+ createdAt: Date;
2339
+ updatedAt: Date;
2340
+ multiplicity: number;
2341
+ categoryUUID: string;
2342
+ color: string | null;
2343
+ grower: string | null;
2344
+ description: string | null;
2345
+ group: string | null;
2346
+ balance: number | null;
2347
+ quantity: number | null;
2348
+ price: number;
2349
+ isOpen: boolean;
2350
+ article: string | null;
2351
+ size: string | null;
2352
+ size2: string | null;
2353
+ size3: string | null;
2354
+ imageUUID: string | null;
2355
+ vat: number | null;
2356
+ productUUID: string | null;
2357
+ preOrderCollectionUUID: string;
2358
+ advancedPrice: string | null;
2359
+ isSizeCustomizable: boolean;
2360
+ isColorCustomizable: boolean;
2361
+ salesUnit: import("../../..").SalesUnitEnum | null;
2362
+ multiplicityDescription: string | null;
2363
+ };
2364
+ }[];
2365
+ remainingQuantity: number;
2366
+ standingOrderProduct: {
2367
+ name: string | null;
2368
+ uuid: string;
2369
+ categoryUUID: string | null;
2370
+ color: string | null;
2371
+ grower: string | null;
2372
+ category: {
2373
+ name: string;
2374
+ status: import("../../..").CategoryStatusEnum;
2375
+ uuid: string;
2376
+ createdAt: Date;
2377
+ updatedAt: Date;
2378
+ deletedAt: Date | null;
2379
+ multiplicity: number | null;
2380
+ isSizeSeparate: boolean;
2381
+ isSaveCategoryName: boolean;
2382
+ } | null;
2383
+ deliveryDate: Date | null;
2384
+ comment: string | null;
2385
+ quantity: number;
2386
+ price: number | null;
2387
+ size: string | null;
2388
+ tag: string | null;
2389
+ preOrderCollectionItemUUID: string | null;
2390
+ preOrderUUID: string;
2391
+ isPurchased: boolean;
2392
+ isReplaceable: boolean;
2393
+ stopPrice: number | null;
2394
+ highAttention: boolean;
2395
+ parentPreOrderProductUUID: string | null;
2396
+ preOrderCollectionItem: {
2397
+ name: string;
2398
+ type: {
2399
+ name: string;
2400
+ uuid: string;
2401
+ createdAt: Date;
2402
+ updatedAt: Date;
2403
+ deletedAt: Date | null;
2404
+ rank: number;
2405
+ } | null;
2406
+ uuid: string;
2407
+ country: string | null;
2408
+ createdAt: Date;
2409
+ updatedAt: Date;
2410
+ multiplicity: number;
2411
+ categoryUUID: string;
2412
+ color: string | null;
2413
+ grower: string | null;
2414
+ category: {
2415
+ name: string;
2416
+ status: import("../../..").CategoryStatusEnum;
2417
+ uuid: string;
2418
+ createdAt: Date;
2419
+ updatedAt: Date;
2420
+ deletedAt: Date | null;
2421
+ multiplicity: number | null;
2422
+ isSizeSeparate: boolean;
2423
+ isSaveCategoryName: boolean;
2424
+ } | null;
2425
+ description: string | null;
2426
+ group: string | null;
2427
+ balance: number | null;
2428
+ quantity: number | null;
2429
+ price: number;
2430
+ isOpen: boolean;
2431
+ article: string | null;
2432
+ size: string | null;
2433
+ size2: string | null;
2434
+ size3: string | null;
2435
+ imageUUID: string | null;
2436
+ vat: number | null;
2437
+ image: {
2438
+ name: string;
2439
+ uuid: string;
2440
+ country: string | null;
2441
+ createdAt: Date;
2442
+ updatedAt: Date;
2443
+ deletedAt: Date | null;
2444
+ companyUUID: string;
2445
+ categoryUUID: string | null;
2446
+ color: string | null;
2447
+ vbn: string | null;
2448
+ externalUUID: string | null;
2449
+ productImageUrl: string;
2450
+ grower: string | null;
2451
+ } | null;
2452
+ productUUID: string | null;
2453
+ preOrderCollectionUUID: string;
2454
+ advancedPrice: string | null;
2455
+ isSizeCustomizable: boolean;
2456
+ isColorCustomizable: boolean;
2457
+ salesUnit: import("../../..").SalesUnitEnum | null;
2458
+ multiplicityDescription: string | null;
2459
+ matchingProducts: {
2460
+ name: string;
2461
+ uuid: string;
2462
+ country: string | null;
2463
+ color: string | null;
2464
+ grower: string | null;
2465
+ deliveryDate: Date;
2466
+ size: string | null;
2467
+ }[];
2468
+ multiplicityOptions?: {
2469
+ uuid: string;
2470
+ rank: number;
2471
+ title: string | null;
2472
+ optionMultiplicity: number;
2473
+ optionPrice: number | null;
2474
+ }[] | undefined;
2475
+ preOrderedQuantity?: number | undefined;
2476
+ };
2477
+ multiplicityOptionUUID?: string | null | undefined;
2478
+ matchingConfig?: {
2479
+ matchByName: boolean;
2480
+ matchByCategory: boolean;
2481
+ matchByColor: boolean;
2482
+ matchBySize: boolean;
2483
+ matchByGrower: boolean;
2484
+ } | null | undefined;
2485
+ };
2486
+ }>;
2487
+ warnings: Record<string, string[]>;
2488
+ standingOrder: {
2489
+ status: import("../../..").PreOrderStatusEnum;
2490
+ uuid: string;
2491
+ createdAt: Date;
2492
+ comment: string | null;
2493
+ clientUUID: string;
2494
+ branchUUID: string | null;
2495
+ tag: string | null;
2496
+ client: {
2497
+ email: string | null;
2498
+ phone: string | null;
2499
+ name: string;
2500
+ code: string | null;
2501
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2502
+ uuid: string;
2503
+ contactName: string | null;
2504
+ address: string | null;
2505
+ city: string | null;
2506
+ createdAt: Date;
2507
+ updatedAt: Date;
2508
+ deletedAt: Date | null;
2509
+ companyUUID: string;
2510
+ isCommon: boolean;
2511
+ contractNumber: string | null;
2512
+ contractDate: Date | null;
2513
+ group: string | null;
2514
+ marking: string | null;
2515
+ alwaysRequiresDelivery: boolean;
2516
+ additionalPhone: string | null;
2517
+ comment: string | null;
2518
+ balance: number;
2519
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2520
+ responsibleUserUUID: string | null;
2521
+ responsibleSince: Date | null;
2522
+ };
2523
+ branch: {
2524
+ name: string;
2525
+ uuid: string;
2526
+ contactName: string | null;
2527
+ contactPhone: string | null;
2528
+ address: string | null;
2529
+ city: string | null;
2530
+ region: string | null;
2531
+ country: string | null;
2532
+ clientId: string;
2533
+ createdAt: Date;
2534
+ updatedAt: Date;
2535
+ } | null;
2536
+ preOrderCollection: {
2537
+ status: import("../../..").PreOrderCollectionStatusEnum;
2538
+ uuid: string;
2539
+ deliveryDate: Date;
2540
+ description: string;
2541
+ label: string | null;
2542
+ availableUntil: Date;
2543
+ imageUrl: string | null;
2544
+ hideItemOptions: boolean;
2545
+ } | null;
2546
+ preOrderNum: number;
2547
+ };
2548
+ }[];
2549
+ errorList?: {
2550
+ code: string;
2551
+ message: string;
2552
+ }[] | undefined;
2553
+ };
2554
+ message?: string | undefined;
2555
+ }, {
2556
+ data: {
2557
+ analyses: {
2558
+ mappings: Record<string, {
2559
+ matches: {
2560
+ quantity: number;
2561
+ collectionItem: {
2562
+ name: string;
2563
+ uuid: string;
2564
+ country: string | null;
2565
+ createdAt: Date;
2566
+ updatedAt: Date;
2567
+ multiplicity: number;
2568
+ categoryUUID: string;
2569
+ color: string | null;
2570
+ grower: string | null;
2571
+ description: string | null;
2572
+ group: string | null;
2573
+ balance: number | null;
2574
+ quantity: number | null;
2575
+ price: number;
2576
+ isOpen: boolean;
2577
+ article: string | null;
2578
+ size: string | null;
2579
+ size2: string | null;
2580
+ size3: string | null;
2581
+ imageUUID: string | null;
2582
+ vat: number | null;
2583
+ productUUID: string | null;
2584
+ preOrderCollectionUUID: string;
2585
+ advancedPrice: string | null;
2586
+ salesUnit: import("../../..").SalesUnitEnum | null;
2587
+ multiplicityDescription: string | null;
2588
+ isSizeCustomizable?: boolean | undefined;
2589
+ isColorCustomizable?: boolean | undefined;
2590
+ };
2591
+ }[];
2592
+ remainingQuantity: number;
2593
+ standingOrderProduct: {
2594
+ name: string | null;
2595
+ uuid: string;
2596
+ categoryUUID: string | null;
2597
+ color: string | null;
2598
+ grower: string | null;
2599
+ category: {
2600
+ name: string;
2601
+ status: import("../../..").CategoryStatusEnum;
2602
+ uuid: string;
2603
+ createdAt: Date;
2604
+ updatedAt: Date;
2605
+ deletedAt: Date | null;
2606
+ multiplicity: number | null;
2607
+ isSizeSeparate: boolean;
2608
+ isSaveCategoryName: boolean;
2609
+ } | null;
2610
+ deliveryDate: Date | null;
2611
+ comment: string | null;
2612
+ quantity: number;
2613
+ price: number | null;
2614
+ size: string | null;
2615
+ tag: string | null;
2616
+ preOrderCollectionItemUUID: string | null;
2617
+ preOrderUUID: string;
2618
+ isPurchased: boolean;
2619
+ isReplaceable: boolean;
2620
+ stopPrice: number | null;
2621
+ highAttention: boolean;
2622
+ parentPreOrderProductUUID: string | null;
2623
+ preOrderCollectionItem: {
2624
+ name: string;
2625
+ type: {
2626
+ name: string;
2627
+ uuid: string;
2628
+ createdAt: Date;
2629
+ updatedAt: Date;
2630
+ deletedAt: Date | null;
2631
+ rank: number;
2632
+ } | null;
2633
+ uuid: string;
2634
+ country: string | null;
2635
+ createdAt: Date;
2636
+ updatedAt: Date;
2637
+ multiplicity: number;
2638
+ categoryUUID: string;
2639
+ color: string | null;
2640
+ grower: string | null;
2641
+ category: {
2642
+ name: string;
2643
+ status: import("../../..").CategoryStatusEnum;
2644
+ uuid: string;
2645
+ createdAt: Date;
2646
+ updatedAt: Date;
2647
+ deletedAt: Date | null;
2648
+ multiplicity: number | null;
2649
+ isSizeSeparate: boolean;
2650
+ isSaveCategoryName: boolean;
2651
+ } | null;
2652
+ description: string | null;
2653
+ group: string | null;
2654
+ balance: number | null;
2655
+ quantity: number | null;
2656
+ price: number;
2657
+ isOpen: boolean;
2658
+ article: string | null;
2659
+ size: string | null;
2660
+ size2: string | null;
2661
+ size3: string | null;
2662
+ imageUUID: string | null;
2663
+ vat: number | null;
2664
+ image: {
2665
+ name: string;
2666
+ uuid: string;
2667
+ country: string | null;
2668
+ createdAt: Date;
2669
+ updatedAt: Date;
2670
+ deletedAt: Date | null;
2671
+ companyUUID: string;
2672
+ categoryUUID: string | null;
2673
+ color: string | null;
2674
+ vbn: string | null;
2675
+ externalUUID: string | null;
2676
+ productImageUrl: string;
2677
+ grower: string | null;
2678
+ } | null;
2679
+ productUUID: string | null;
2680
+ preOrderCollectionUUID: string;
2681
+ advancedPrice: string | null;
2682
+ salesUnit: import("../../..").SalesUnitEnum | null;
2683
+ multiplicityDescription: string | null;
2684
+ matchingProducts: {
2685
+ name: string;
2686
+ uuid: string;
2687
+ country: string | null;
2688
+ color: string | null;
2689
+ grower: string | null;
2690
+ deliveryDate: Date;
2691
+ size: string | null;
2692
+ }[];
2693
+ isSizeCustomizable?: boolean | undefined;
2694
+ isColorCustomizable?: boolean | undefined;
2695
+ multiplicityOptions?: {
2696
+ uuid: string;
2697
+ rank: number;
2698
+ title: string | null;
2699
+ optionMultiplicity: number;
2700
+ optionPrice: number | null;
2701
+ }[] | undefined;
2702
+ preOrderedQuantity?: number | undefined;
2703
+ };
2704
+ multiplicityOptionUUID?: string | null | undefined;
2705
+ matchingConfig?: {
2706
+ matchByName: boolean;
2707
+ matchByCategory: boolean;
2708
+ matchByColor: boolean;
2709
+ matchBySize: boolean;
2710
+ matchByGrower: boolean;
2711
+ } | null | undefined;
2712
+ };
2713
+ }>;
2714
+ warnings: Record<string, string[]>;
2715
+ standingOrder: {
2716
+ status: import("../../..").PreOrderStatusEnum;
2717
+ uuid: string;
2718
+ createdAt: Date;
2719
+ comment: string | null;
2720
+ clientUUID: string;
2721
+ branchUUID: string | null;
2722
+ tag: string | null;
2723
+ client: {
2724
+ email: string | null;
2725
+ phone: string | null;
2726
+ name: string;
2727
+ code: string | null;
2728
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2729
+ uuid: string;
2730
+ contactName: string | null;
2731
+ address: string | null;
2732
+ city: string | null;
2733
+ createdAt: Date;
2734
+ updatedAt: Date;
2735
+ deletedAt: Date | null;
2736
+ companyUUID: string;
2737
+ isCommon: boolean;
2738
+ contractNumber: string | null;
2739
+ contractDate: Date | null;
2740
+ group: string | null;
2741
+ marking: string | null;
2742
+ alwaysRequiresDelivery: boolean;
2743
+ additionalPhone: string | null;
2744
+ comment: string | null;
2745
+ balance: number;
2746
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2747
+ responsibleUserUUID: string | null;
2748
+ responsibleSince: Date | null;
2749
+ };
2750
+ branch: {
2751
+ name: string;
2752
+ uuid: string;
2753
+ contactName: string | null;
2754
+ contactPhone: string | null;
2755
+ address: string | null;
2756
+ city: string | null;
2757
+ region: string | null;
2758
+ country: string | null;
2759
+ clientId: string;
2760
+ createdAt: Date;
2761
+ updatedAt: Date;
2762
+ } | null;
2763
+ preOrderCollection: {
2764
+ status: import("../../..").PreOrderCollectionStatusEnum;
2765
+ uuid: string;
2766
+ deliveryDate: Date;
2767
+ description: string;
2768
+ label: string | null;
2769
+ availableUntil: Date;
2770
+ imageUrl: string | null;
2771
+ hideItemOptions: boolean;
2772
+ } | null;
2773
+ preOrderNum: number;
2774
+ };
2775
+ }[];
2776
+ errorList?: {
2777
+ code: string;
2778
+ message: string;
2779
+ }[] | undefined;
2780
+ };
2781
+ message?: string | undefined;
2782
+ }>;
2783
+ type Response = z.infer<typeof ResponseSchema>;
2784
+ }