@floristcloud/api-lib 1.0.1 → 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 +10 -7
  572. package/schemas/write-off/write-off-image.schema.ts +1 -1
  573. package/tsconfig.json +3 -3
@@ -0,0 +1,4582 @@
1
+ import { z } from 'zod';
2
+ export declare namespace AnalyzeCopyPreOrdersContractCommand {
3
+ const RequestSchema: z.ZodObject<{
4
+ preOrderUUIDList: z.ZodArray<z.ZodString, "many">;
5
+ targetPreOrderCollectionUUID: z.ZodString;
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
+ preOrderUUIDList: string[];
27
+ targetPreOrderCollectionUUID: string;
28
+ matchingConfig?: {
29
+ matchByName: boolean;
30
+ matchByCategory: boolean;
31
+ matchByColor: boolean;
32
+ matchBySize: boolean;
33
+ matchByGrower: boolean;
34
+ } | null | undefined;
35
+ }, {
36
+ preOrderUUIDList: string[];
37
+ targetPreOrderCollectionUUID: 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
+ preOrder: 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
+ sourceProduct: 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
+ sourceProduct: {
1122
+ name: string | null;
1123
+ uuid: string;
1124
+ categoryUUID: string | null;
1125
+ color: string | null;
1126
+ grower: string | null;
1127
+ category: {
1128
+ name: string;
1129
+ status: import("../../..").CategoryStatusEnum;
1130
+ uuid: string;
1131
+ createdAt: Date;
1132
+ updatedAt: Date;
1133
+ deletedAt: Date | null;
1134
+ multiplicity: number | null;
1135
+ isSizeSeparate: boolean;
1136
+ isSaveCategoryName: boolean;
1137
+ } | null;
1138
+ deliveryDate: Date | null;
1139
+ comment: string | null;
1140
+ quantity: number;
1141
+ price: number | null;
1142
+ size: string | null;
1143
+ tag: string | null;
1144
+ preOrderCollectionItemUUID: string | null;
1145
+ preOrderUUID: string;
1146
+ isPurchased: boolean;
1147
+ isReplaceable: boolean;
1148
+ stopPrice: number | null;
1149
+ highAttention: boolean;
1150
+ parentPreOrderProductUUID: string | null;
1151
+ preOrderCollectionItem: {
1152
+ name: string;
1153
+ type: {
1154
+ name: string;
1155
+ uuid: string;
1156
+ createdAt: Date;
1157
+ updatedAt: Date;
1158
+ deletedAt: Date | null;
1159
+ rank: number;
1160
+ } | null;
1161
+ uuid: string;
1162
+ country: string | null;
1163
+ createdAt: Date;
1164
+ updatedAt: Date;
1165
+ multiplicity: number;
1166
+ categoryUUID: string;
1167
+ color: string | null;
1168
+ grower: string | null;
1169
+ category: {
1170
+ name: string;
1171
+ status: import("../../..").CategoryStatusEnum;
1172
+ uuid: string;
1173
+ createdAt: Date;
1174
+ updatedAt: Date;
1175
+ deletedAt: Date | null;
1176
+ multiplicity: number | null;
1177
+ isSizeSeparate: boolean;
1178
+ isSaveCategoryName: boolean;
1179
+ } | null;
1180
+ description: string | null;
1181
+ group: string | null;
1182
+ balance: number | null;
1183
+ quantity: number | null;
1184
+ price: number;
1185
+ isOpen: boolean;
1186
+ article: string | null;
1187
+ size: string | null;
1188
+ size2: string | null;
1189
+ size3: string | null;
1190
+ imageUUID: string | null;
1191
+ vat: number | null;
1192
+ image: {
1193
+ name: string;
1194
+ uuid: string;
1195
+ country: string | null;
1196
+ createdAt: Date;
1197
+ updatedAt: Date;
1198
+ deletedAt: Date | null;
1199
+ companyUUID: string;
1200
+ categoryUUID: string | null;
1201
+ color: string | null;
1202
+ vbn: string | null;
1203
+ externalUUID: string | null;
1204
+ productImageUrl: string;
1205
+ grower: string | null;
1206
+ } | null;
1207
+ productUUID: string | null;
1208
+ preOrderCollectionUUID: string;
1209
+ advancedPrice: string | null;
1210
+ isSizeCustomizable: boolean;
1211
+ isColorCustomizable: boolean;
1212
+ salesUnit: import("../../..").SalesUnitEnum | null;
1213
+ multiplicityDescription: string | null;
1214
+ matchingProducts: {
1215
+ name: string;
1216
+ uuid: string;
1217
+ country: string | null;
1218
+ color: string | null;
1219
+ grower: string | null;
1220
+ deliveryDate: Date;
1221
+ size: string | null;
1222
+ }[];
1223
+ multiplicityOptions?: {
1224
+ uuid: string;
1225
+ rank: number;
1226
+ title: string | null;
1227
+ optionMultiplicity: number;
1228
+ optionPrice: number | null;
1229
+ }[] | undefined;
1230
+ preOrderedQuantity?: number | undefined;
1231
+ };
1232
+ multiplicityOptionUUID?: string | null | undefined;
1233
+ matchingConfig?: {
1234
+ matchByName: boolean;
1235
+ matchByCategory: boolean;
1236
+ matchByColor: boolean;
1237
+ matchBySize: boolean;
1238
+ matchByGrower: boolean;
1239
+ } | null | undefined;
1240
+ };
1241
+ matches: {
1242
+ quantity: number;
1243
+ collectionItem: {
1244
+ name: string;
1245
+ uuid: string;
1246
+ country: string | null;
1247
+ createdAt: Date;
1248
+ updatedAt: Date;
1249
+ multiplicity: number;
1250
+ categoryUUID: string;
1251
+ color: string | null;
1252
+ grower: string | null;
1253
+ description: string | null;
1254
+ group: string | null;
1255
+ balance: number | null;
1256
+ quantity: number | null;
1257
+ price: number;
1258
+ isOpen: boolean;
1259
+ article: string | null;
1260
+ size: string | null;
1261
+ size2: string | null;
1262
+ size3: string | null;
1263
+ imageUUID: string | null;
1264
+ vat: number | null;
1265
+ productUUID: string | null;
1266
+ preOrderCollectionUUID: string;
1267
+ advancedPrice: string | null;
1268
+ isSizeCustomizable: boolean;
1269
+ isColorCustomizable: boolean;
1270
+ salesUnit: import("../../..").SalesUnitEnum | null;
1271
+ multiplicityDescription: string | null;
1272
+ };
1273
+ }[];
1274
+ remainingQuantity: number;
1275
+ }, {
1276
+ sourceProduct: {
1277
+ name: string | null;
1278
+ uuid: string;
1279
+ categoryUUID: string | null;
1280
+ color: string | null;
1281
+ grower: string | null;
1282
+ category: {
1283
+ name: string;
1284
+ status: import("../../..").CategoryStatusEnum;
1285
+ uuid: string;
1286
+ createdAt: Date;
1287
+ updatedAt: Date;
1288
+ deletedAt: Date | null;
1289
+ multiplicity: number | null;
1290
+ isSizeSeparate: boolean;
1291
+ isSaveCategoryName: boolean;
1292
+ } | null;
1293
+ deliveryDate: Date | null;
1294
+ comment: string | null;
1295
+ quantity: number;
1296
+ price: number | null;
1297
+ size: string | null;
1298
+ tag: string | null;
1299
+ preOrderCollectionItemUUID: string | null;
1300
+ preOrderUUID: string;
1301
+ isPurchased: boolean;
1302
+ isReplaceable: boolean;
1303
+ stopPrice: number | null;
1304
+ highAttention: boolean;
1305
+ parentPreOrderProductUUID: string | null;
1306
+ preOrderCollectionItem: {
1307
+ name: string;
1308
+ type: {
1309
+ name: string;
1310
+ uuid: string;
1311
+ createdAt: Date;
1312
+ updatedAt: Date;
1313
+ deletedAt: Date | null;
1314
+ rank: number;
1315
+ } | null;
1316
+ uuid: string;
1317
+ country: string | null;
1318
+ createdAt: Date;
1319
+ updatedAt: Date;
1320
+ multiplicity: number;
1321
+ categoryUUID: string;
1322
+ color: string | null;
1323
+ grower: string | null;
1324
+ category: {
1325
+ name: string;
1326
+ status: import("../../..").CategoryStatusEnum;
1327
+ uuid: string;
1328
+ createdAt: Date;
1329
+ updatedAt: Date;
1330
+ deletedAt: Date | null;
1331
+ multiplicity: number | null;
1332
+ isSizeSeparate: boolean;
1333
+ isSaveCategoryName: boolean;
1334
+ } | null;
1335
+ description: string | null;
1336
+ group: string | null;
1337
+ balance: number | null;
1338
+ quantity: number | null;
1339
+ price: number;
1340
+ isOpen: boolean;
1341
+ article: string | null;
1342
+ size: string | null;
1343
+ size2: string | null;
1344
+ size3: string | null;
1345
+ imageUUID: string | null;
1346
+ vat: number | null;
1347
+ image: {
1348
+ name: string;
1349
+ uuid: string;
1350
+ country: string | null;
1351
+ createdAt: Date;
1352
+ updatedAt: Date;
1353
+ deletedAt: Date | null;
1354
+ companyUUID: string;
1355
+ categoryUUID: string | null;
1356
+ color: string | null;
1357
+ vbn: string | null;
1358
+ externalUUID: string | null;
1359
+ productImageUrl: string;
1360
+ grower: string | null;
1361
+ } | null;
1362
+ productUUID: string | null;
1363
+ preOrderCollectionUUID: string;
1364
+ advancedPrice: string | null;
1365
+ salesUnit: import("../../..").SalesUnitEnum | null;
1366
+ multiplicityDescription: string | null;
1367
+ matchingProducts: {
1368
+ name: string;
1369
+ uuid: string;
1370
+ country: string | null;
1371
+ color: string | null;
1372
+ grower: string | null;
1373
+ deliveryDate: Date;
1374
+ size: string | null;
1375
+ }[];
1376
+ isSizeCustomizable?: boolean | undefined;
1377
+ isColorCustomizable?: boolean | undefined;
1378
+ multiplicityOptions?: {
1379
+ uuid: string;
1380
+ rank: number;
1381
+ title: string | null;
1382
+ optionMultiplicity: number;
1383
+ optionPrice: number | null;
1384
+ }[] | undefined;
1385
+ preOrderedQuantity?: number | undefined;
1386
+ };
1387
+ multiplicityOptionUUID?: string | null | undefined;
1388
+ matchingConfig?: {
1389
+ matchByName: boolean;
1390
+ matchByCategory: boolean;
1391
+ matchByColor: boolean;
1392
+ matchBySize: boolean;
1393
+ matchByGrower: boolean;
1394
+ } | null | undefined;
1395
+ };
1396
+ matches: {
1397
+ quantity: number;
1398
+ collectionItem: {
1399
+ name: string;
1400
+ uuid: string;
1401
+ country: string | null;
1402
+ createdAt: Date;
1403
+ updatedAt: Date;
1404
+ multiplicity: number;
1405
+ categoryUUID: string;
1406
+ color: string | null;
1407
+ grower: string | null;
1408
+ description: string | null;
1409
+ group: string | null;
1410
+ balance: number | null;
1411
+ quantity: number | null;
1412
+ price: number;
1413
+ isOpen: boolean;
1414
+ article: string | null;
1415
+ size: string | null;
1416
+ size2: string | null;
1417
+ size3: string | null;
1418
+ imageUUID: string | null;
1419
+ vat: number | null;
1420
+ productUUID: string | null;
1421
+ preOrderCollectionUUID: string;
1422
+ advancedPrice: string | null;
1423
+ salesUnit: import("../../..").SalesUnitEnum | null;
1424
+ multiplicityDescription: string | null;
1425
+ isSizeCustomizable?: boolean | undefined;
1426
+ isColorCustomizable?: boolean | undefined;
1427
+ };
1428
+ }[];
1429
+ remainingQuantity: number;
1430
+ }>>;
1431
+ warnings: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ preOrder: {
1434
+ status: import("../../..").PreOrderStatusEnum;
1435
+ uuid: string;
1436
+ createdAt: Date;
1437
+ comment: string | null;
1438
+ clientUUID: string;
1439
+ branchUUID: string | null;
1440
+ tag: string | null;
1441
+ client: {
1442
+ email: string | null;
1443
+ phone: string | null;
1444
+ name: string;
1445
+ code: string | null;
1446
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1447
+ uuid: string;
1448
+ contactName: string | null;
1449
+ address: string | null;
1450
+ city: string | null;
1451
+ createdAt: Date;
1452
+ updatedAt: Date;
1453
+ deletedAt: Date | null;
1454
+ companyUUID: string;
1455
+ isCommon: boolean;
1456
+ contractNumber: string | null;
1457
+ contractDate: Date | null;
1458
+ group: string | null;
1459
+ marking: string | null;
1460
+ alwaysRequiresDelivery: boolean;
1461
+ additionalPhone: string | null;
1462
+ comment: string | null;
1463
+ balance: number;
1464
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1465
+ responsibleUserUUID: string | null;
1466
+ responsibleSince: Date | null;
1467
+ };
1468
+ branch: {
1469
+ name: string;
1470
+ uuid: string;
1471
+ contactName: string | null;
1472
+ contactPhone: string | null;
1473
+ address: string | null;
1474
+ city: string | null;
1475
+ region: string | null;
1476
+ country: string | null;
1477
+ clientId: string;
1478
+ createdAt: Date;
1479
+ updatedAt: Date;
1480
+ } | null;
1481
+ preOrderCollection: {
1482
+ status: import("../../..").PreOrderCollectionStatusEnum;
1483
+ uuid: string;
1484
+ deliveryDate: Date;
1485
+ description: string;
1486
+ label: string | null;
1487
+ availableUntil: Date;
1488
+ imageUrl: string | null;
1489
+ hideItemOptions: boolean;
1490
+ } | null;
1491
+ preOrderNum: number;
1492
+ };
1493
+ mappings: Record<string, {
1494
+ sourceProduct: {
1495
+ name: string | null;
1496
+ uuid: string;
1497
+ categoryUUID: string | null;
1498
+ color: string | null;
1499
+ grower: string | null;
1500
+ category: {
1501
+ name: string;
1502
+ status: import("../../..").CategoryStatusEnum;
1503
+ uuid: string;
1504
+ createdAt: Date;
1505
+ updatedAt: Date;
1506
+ deletedAt: Date | null;
1507
+ multiplicity: number | null;
1508
+ isSizeSeparate: boolean;
1509
+ isSaveCategoryName: boolean;
1510
+ } | null;
1511
+ deliveryDate: Date | null;
1512
+ comment: string | null;
1513
+ quantity: number;
1514
+ price: number | null;
1515
+ size: string | null;
1516
+ tag: string | null;
1517
+ preOrderCollectionItemUUID: string | null;
1518
+ preOrderUUID: string;
1519
+ isPurchased: boolean;
1520
+ isReplaceable: boolean;
1521
+ stopPrice: number | null;
1522
+ highAttention: boolean;
1523
+ parentPreOrderProductUUID: string | null;
1524
+ preOrderCollectionItem: {
1525
+ name: string;
1526
+ type: {
1527
+ name: string;
1528
+ uuid: string;
1529
+ createdAt: Date;
1530
+ updatedAt: Date;
1531
+ deletedAt: Date | null;
1532
+ rank: number;
1533
+ } | null;
1534
+ uuid: string;
1535
+ country: string | null;
1536
+ createdAt: Date;
1537
+ updatedAt: Date;
1538
+ multiplicity: number;
1539
+ categoryUUID: string;
1540
+ color: string | null;
1541
+ grower: string | null;
1542
+ category: {
1543
+ name: string;
1544
+ status: import("../../..").CategoryStatusEnum;
1545
+ uuid: string;
1546
+ createdAt: Date;
1547
+ updatedAt: Date;
1548
+ deletedAt: Date | null;
1549
+ multiplicity: number | null;
1550
+ isSizeSeparate: boolean;
1551
+ isSaveCategoryName: boolean;
1552
+ } | null;
1553
+ description: string | null;
1554
+ group: string | null;
1555
+ balance: number | null;
1556
+ quantity: number | null;
1557
+ price: number;
1558
+ isOpen: boolean;
1559
+ article: string | null;
1560
+ size: string | null;
1561
+ size2: string | null;
1562
+ size3: string | null;
1563
+ imageUUID: string | null;
1564
+ vat: number | null;
1565
+ image: {
1566
+ name: string;
1567
+ uuid: string;
1568
+ country: string | null;
1569
+ createdAt: Date;
1570
+ updatedAt: Date;
1571
+ deletedAt: Date | null;
1572
+ companyUUID: string;
1573
+ categoryUUID: string | null;
1574
+ color: string | null;
1575
+ vbn: string | null;
1576
+ externalUUID: string | null;
1577
+ productImageUrl: string;
1578
+ grower: string | null;
1579
+ } | null;
1580
+ productUUID: string | null;
1581
+ preOrderCollectionUUID: string;
1582
+ advancedPrice: string | null;
1583
+ isSizeCustomizable: boolean;
1584
+ isColorCustomizable: boolean;
1585
+ salesUnit: import("../../..").SalesUnitEnum | null;
1586
+ multiplicityDescription: string | null;
1587
+ matchingProducts: {
1588
+ name: string;
1589
+ uuid: string;
1590
+ country: string | null;
1591
+ color: string | null;
1592
+ grower: string | null;
1593
+ deliveryDate: Date;
1594
+ size: string | null;
1595
+ }[];
1596
+ multiplicityOptions?: {
1597
+ uuid: string;
1598
+ rank: number;
1599
+ title: string | null;
1600
+ optionMultiplicity: number;
1601
+ optionPrice: number | null;
1602
+ }[] | undefined;
1603
+ preOrderedQuantity?: number | undefined;
1604
+ };
1605
+ multiplicityOptionUUID?: string | null | undefined;
1606
+ matchingConfig?: {
1607
+ matchByName: boolean;
1608
+ matchByCategory: boolean;
1609
+ matchByColor: boolean;
1610
+ matchBySize: boolean;
1611
+ matchByGrower: boolean;
1612
+ } | null | undefined;
1613
+ };
1614
+ matches: {
1615
+ quantity: number;
1616
+ collectionItem: {
1617
+ name: string;
1618
+ uuid: string;
1619
+ country: string | null;
1620
+ createdAt: Date;
1621
+ updatedAt: Date;
1622
+ multiplicity: number;
1623
+ categoryUUID: string;
1624
+ color: string | null;
1625
+ grower: string | null;
1626
+ description: string | null;
1627
+ group: string | null;
1628
+ balance: number | null;
1629
+ quantity: number | null;
1630
+ price: number;
1631
+ isOpen: boolean;
1632
+ article: string | null;
1633
+ size: string | null;
1634
+ size2: string | null;
1635
+ size3: string | null;
1636
+ imageUUID: string | null;
1637
+ vat: number | null;
1638
+ productUUID: string | null;
1639
+ preOrderCollectionUUID: string;
1640
+ advancedPrice: string | null;
1641
+ isSizeCustomizable: boolean;
1642
+ isColorCustomizable: boolean;
1643
+ salesUnit: import("../../..").SalesUnitEnum | null;
1644
+ multiplicityDescription: string | null;
1645
+ };
1646
+ }[];
1647
+ remainingQuantity: number;
1648
+ }>;
1649
+ warnings: Record<string, string[]>;
1650
+ }, {
1651
+ preOrder: {
1652
+ status: import("../../..").PreOrderStatusEnum;
1653
+ uuid: string;
1654
+ createdAt: Date;
1655
+ comment: string | null;
1656
+ clientUUID: string;
1657
+ branchUUID: string | null;
1658
+ tag: string | null;
1659
+ client: {
1660
+ email: string | null;
1661
+ phone: string | null;
1662
+ name: string;
1663
+ code: string | null;
1664
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1665
+ uuid: string;
1666
+ contactName: string | null;
1667
+ address: string | null;
1668
+ city: string | null;
1669
+ createdAt: Date;
1670
+ updatedAt: Date;
1671
+ deletedAt: Date | null;
1672
+ companyUUID: string;
1673
+ isCommon: boolean;
1674
+ contractNumber: string | null;
1675
+ contractDate: Date | null;
1676
+ group: string | null;
1677
+ marking: string | null;
1678
+ alwaysRequiresDelivery: boolean;
1679
+ additionalPhone: string | null;
1680
+ comment: string | null;
1681
+ balance: number;
1682
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1683
+ responsibleUserUUID: string | null;
1684
+ responsibleSince: Date | null;
1685
+ };
1686
+ branch: {
1687
+ name: string;
1688
+ uuid: string;
1689
+ contactName: string | null;
1690
+ contactPhone: string | null;
1691
+ address: string | null;
1692
+ city: string | null;
1693
+ region: string | null;
1694
+ country: string | null;
1695
+ clientId: string;
1696
+ createdAt: Date;
1697
+ updatedAt: Date;
1698
+ } | null;
1699
+ preOrderCollection: {
1700
+ status: import("../../..").PreOrderCollectionStatusEnum;
1701
+ uuid: string;
1702
+ deliveryDate: Date;
1703
+ description: string;
1704
+ label: string | null;
1705
+ availableUntil: Date;
1706
+ imageUrl: string | null;
1707
+ hideItemOptions: boolean;
1708
+ } | null;
1709
+ preOrderNum: number;
1710
+ };
1711
+ mappings: Record<string, {
1712
+ sourceProduct: {
1713
+ name: string | null;
1714
+ uuid: string;
1715
+ categoryUUID: string | null;
1716
+ color: string | null;
1717
+ grower: string | null;
1718
+ category: {
1719
+ name: string;
1720
+ status: import("../../..").CategoryStatusEnum;
1721
+ uuid: string;
1722
+ createdAt: Date;
1723
+ updatedAt: Date;
1724
+ deletedAt: Date | null;
1725
+ multiplicity: number | null;
1726
+ isSizeSeparate: boolean;
1727
+ isSaveCategoryName: boolean;
1728
+ } | null;
1729
+ deliveryDate: Date | null;
1730
+ comment: string | null;
1731
+ quantity: number;
1732
+ price: number | null;
1733
+ size: string | null;
1734
+ tag: string | null;
1735
+ preOrderCollectionItemUUID: string | null;
1736
+ preOrderUUID: string;
1737
+ isPurchased: boolean;
1738
+ isReplaceable: boolean;
1739
+ stopPrice: number | null;
1740
+ highAttention: boolean;
1741
+ parentPreOrderProductUUID: string | null;
1742
+ preOrderCollectionItem: {
1743
+ name: string;
1744
+ type: {
1745
+ name: string;
1746
+ uuid: string;
1747
+ createdAt: Date;
1748
+ updatedAt: Date;
1749
+ deletedAt: Date | null;
1750
+ rank: number;
1751
+ } | null;
1752
+ uuid: string;
1753
+ country: string | null;
1754
+ createdAt: Date;
1755
+ updatedAt: Date;
1756
+ multiplicity: number;
1757
+ categoryUUID: string;
1758
+ color: string | null;
1759
+ grower: string | null;
1760
+ category: {
1761
+ name: string;
1762
+ status: import("../../..").CategoryStatusEnum;
1763
+ uuid: string;
1764
+ createdAt: Date;
1765
+ updatedAt: Date;
1766
+ deletedAt: Date | null;
1767
+ multiplicity: number | null;
1768
+ isSizeSeparate: boolean;
1769
+ isSaveCategoryName: boolean;
1770
+ } | null;
1771
+ description: string | null;
1772
+ group: string | null;
1773
+ balance: number | null;
1774
+ quantity: number | null;
1775
+ price: number;
1776
+ isOpen: boolean;
1777
+ article: string | null;
1778
+ size: string | null;
1779
+ size2: string | null;
1780
+ size3: string | null;
1781
+ imageUUID: string | null;
1782
+ vat: number | null;
1783
+ image: {
1784
+ name: string;
1785
+ uuid: string;
1786
+ country: string | null;
1787
+ createdAt: Date;
1788
+ updatedAt: Date;
1789
+ deletedAt: Date | null;
1790
+ companyUUID: string;
1791
+ categoryUUID: string | null;
1792
+ color: string | null;
1793
+ vbn: string | null;
1794
+ externalUUID: string | null;
1795
+ productImageUrl: string;
1796
+ grower: string | null;
1797
+ } | null;
1798
+ productUUID: string | null;
1799
+ preOrderCollectionUUID: string;
1800
+ advancedPrice: string | null;
1801
+ salesUnit: import("../../..").SalesUnitEnum | null;
1802
+ multiplicityDescription: string | null;
1803
+ matchingProducts: {
1804
+ name: string;
1805
+ uuid: string;
1806
+ country: string | null;
1807
+ color: string | null;
1808
+ grower: string | null;
1809
+ deliveryDate: Date;
1810
+ size: string | null;
1811
+ }[];
1812
+ isSizeCustomizable?: boolean | undefined;
1813
+ isColorCustomizable?: boolean | undefined;
1814
+ multiplicityOptions?: {
1815
+ uuid: string;
1816
+ rank: number;
1817
+ title: string | null;
1818
+ optionMultiplicity: number;
1819
+ optionPrice: number | null;
1820
+ }[] | undefined;
1821
+ preOrderedQuantity?: number | undefined;
1822
+ };
1823
+ multiplicityOptionUUID?: string | null | undefined;
1824
+ matchingConfig?: {
1825
+ matchByName: boolean;
1826
+ matchByCategory: boolean;
1827
+ matchByColor: boolean;
1828
+ matchBySize: boolean;
1829
+ matchByGrower: boolean;
1830
+ } | null | undefined;
1831
+ };
1832
+ matches: {
1833
+ quantity: number;
1834
+ collectionItem: {
1835
+ name: string;
1836
+ uuid: string;
1837
+ country: string | null;
1838
+ createdAt: Date;
1839
+ updatedAt: Date;
1840
+ multiplicity: number;
1841
+ categoryUUID: string;
1842
+ color: string | null;
1843
+ grower: string | null;
1844
+ description: string | null;
1845
+ group: string | null;
1846
+ balance: number | null;
1847
+ quantity: number | null;
1848
+ price: number;
1849
+ isOpen: boolean;
1850
+ article: string | null;
1851
+ size: string | null;
1852
+ size2: string | null;
1853
+ size3: string | null;
1854
+ imageUUID: string | null;
1855
+ vat: number | null;
1856
+ productUUID: string | null;
1857
+ preOrderCollectionUUID: string;
1858
+ advancedPrice: string | null;
1859
+ salesUnit: import("../../..").SalesUnitEnum | null;
1860
+ multiplicityDescription: string | null;
1861
+ isSizeCustomizable?: boolean | undefined;
1862
+ isColorCustomizable?: boolean | undefined;
1863
+ };
1864
+ }[];
1865
+ remainingQuantity: number;
1866
+ }>;
1867
+ warnings: Record<string, string[]>;
1868
+ }>, "many">;
1869
+ errorList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1870
+ }, "strip", z.ZodTypeAny, {
1871
+ analyses: {
1872
+ preOrder: {
1873
+ status: import("../../..").PreOrderStatusEnum;
1874
+ uuid: string;
1875
+ createdAt: Date;
1876
+ comment: string | null;
1877
+ clientUUID: string;
1878
+ branchUUID: string | null;
1879
+ tag: string | null;
1880
+ client: {
1881
+ email: string | null;
1882
+ phone: string | null;
1883
+ name: string;
1884
+ code: string | null;
1885
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1886
+ uuid: string;
1887
+ contactName: string | null;
1888
+ address: string | null;
1889
+ city: string | null;
1890
+ createdAt: Date;
1891
+ updatedAt: Date;
1892
+ deletedAt: Date | null;
1893
+ companyUUID: string;
1894
+ isCommon: boolean;
1895
+ contractNumber: string | null;
1896
+ contractDate: Date | null;
1897
+ group: string | null;
1898
+ marking: string | null;
1899
+ alwaysRequiresDelivery: boolean;
1900
+ additionalPhone: string | null;
1901
+ comment: string | null;
1902
+ balance: number;
1903
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1904
+ responsibleUserUUID: string | null;
1905
+ responsibleSince: Date | null;
1906
+ };
1907
+ branch: {
1908
+ name: string;
1909
+ uuid: string;
1910
+ contactName: string | null;
1911
+ contactPhone: string | null;
1912
+ address: string | null;
1913
+ city: string | null;
1914
+ region: string | null;
1915
+ country: string | null;
1916
+ clientId: string;
1917
+ createdAt: Date;
1918
+ updatedAt: Date;
1919
+ } | null;
1920
+ preOrderCollection: {
1921
+ status: import("../../..").PreOrderCollectionStatusEnum;
1922
+ uuid: string;
1923
+ deliveryDate: Date;
1924
+ description: string;
1925
+ label: string | null;
1926
+ availableUntil: Date;
1927
+ imageUrl: string | null;
1928
+ hideItemOptions: boolean;
1929
+ } | null;
1930
+ preOrderNum: number;
1931
+ };
1932
+ mappings: Record<string, {
1933
+ sourceProduct: {
1934
+ name: string | null;
1935
+ uuid: string;
1936
+ categoryUUID: string | null;
1937
+ color: string | null;
1938
+ grower: string | null;
1939
+ category: {
1940
+ name: string;
1941
+ status: import("../../..").CategoryStatusEnum;
1942
+ uuid: string;
1943
+ createdAt: Date;
1944
+ updatedAt: Date;
1945
+ deletedAt: Date | null;
1946
+ multiplicity: number | null;
1947
+ isSizeSeparate: boolean;
1948
+ isSaveCategoryName: boolean;
1949
+ } | null;
1950
+ deliveryDate: Date | null;
1951
+ comment: string | null;
1952
+ quantity: number;
1953
+ price: number | null;
1954
+ size: string | null;
1955
+ tag: string | null;
1956
+ preOrderCollectionItemUUID: string | null;
1957
+ preOrderUUID: string;
1958
+ isPurchased: boolean;
1959
+ isReplaceable: boolean;
1960
+ stopPrice: number | null;
1961
+ highAttention: boolean;
1962
+ parentPreOrderProductUUID: string | null;
1963
+ preOrderCollectionItem: {
1964
+ name: string;
1965
+ type: {
1966
+ name: string;
1967
+ uuid: string;
1968
+ createdAt: Date;
1969
+ updatedAt: Date;
1970
+ deletedAt: Date | null;
1971
+ rank: number;
1972
+ } | null;
1973
+ uuid: string;
1974
+ country: string | null;
1975
+ createdAt: Date;
1976
+ updatedAt: Date;
1977
+ multiplicity: number;
1978
+ categoryUUID: string;
1979
+ color: string | null;
1980
+ grower: string | null;
1981
+ category: {
1982
+ name: string;
1983
+ status: import("../../..").CategoryStatusEnum;
1984
+ uuid: string;
1985
+ createdAt: Date;
1986
+ updatedAt: Date;
1987
+ deletedAt: Date | null;
1988
+ multiplicity: number | null;
1989
+ isSizeSeparate: boolean;
1990
+ isSaveCategoryName: boolean;
1991
+ } | null;
1992
+ description: string | null;
1993
+ group: string | null;
1994
+ balance: number | null;
1995
+ quantity: number | null;
1996
+ price: number;
1997
+ isOpen: boolean;
1998
+ article: string | null;
1999
+ size: string | null;
2000
+ size2: string | null;
2001
+ size3: string | null;
2002
+ imageUUID: string | null;
2003
+ vat: number | null;
2004
+ image: {
2005
+ name: string;
2006
+ uuid: string;
2007
+ country: string | null;
2008
+ createdAt: Date;
2009
+ updatedAt: Date;
2010
+ deletedAt: Date | null;
2011
+ companyUUID: string;
2012
+ categoryUUID: string | null;
2013
+ color: string | null;
2014
+ vbn: string | null;
2015
+ externalUUID: string | null;
2016
+ productImageUrl: string;
2017
+ grower: string | null;
2018
+ } | null;
2019
+ productUUID: string | null;
2020
+ preOrderCollectionUUID: string;
2021
+ advancedPrice: string | null;
2022
+ isSizeCustomizable: boolean;
2023
+ isColorCustomizable: boolean;
2024
+ salesUnit: import("../../..").SalesUnitEnum | null;
2025
+ multiplicityDescription: string | null;
2026
+ matchingProducts: {
2027
+ name: string;
2028
+ uuid: string;
2029
+ country: string | null;
2030
+ color: string | null;
2031
+ grower: string | null;
2032
+ deliveryDate: Date;
2033
+ size: string | null;
2034
+ }[];
2035
+ multiplicityOptions?: {
2036
+ uuid: string;
2037
+ rank: number;
2038
+ title: string | null;
2039
+ optionMultiplicity: number;
2040
+ optionPrice: number | null;
2041
+ }[] | undefined;
2042
+ preOrderedQuantity?: number | undefined;
2043
+ };
2044
+ multiplicityOptionUUID?: string | null | undefined;
2045
+ matchingConfig?: {
2046
+ matchByName: boolean;
2047
+ matchByCategory: boolean;
2048
+ matchByColor: boolean;
2049
+ matchBySize: boolean;
2050
+ matchByGrower: boolean;
2051
+ } | null | undefined;
2052
+ };
2053
+ matches: {
2054
+ quantity: number;
2055
+ collectionItem: {
2056
+ name: string;
2057
+ uuid: string;
2058
+ country: string | null;
2059
+ createdAt: Date;
2060
+ updatedAt: Date;
2061
+ multiplicity: number;
2062
+ categoryUUID: string;
2063
+ color: string | null;
2064
+ grower: string | null;
2065
+ description: string | null;
2066
+ group: string | null;
2067
+ balance: number | null;
2068
+ quantity: number | null;
2069
+ price: number;
2070
+ isOpen: boolean;
2071
+ article: string | null;
2072
+ size: string | null;
2073
+ size2: string | null;
2074
+ size3: string | null;
2075
+ imageUUID: string | null;
2076
+ vat: number | null;
2077
+ productUUID: string | null;
2078
+ preOrderCollectionUUID: string;
2079
+ advancedPrice: string | null;
2080
+ isSizeCustomizable: boolean;
2081
+ isColorCustomizable: boolean;
2082
+ salesUnit: import("../../..").SalesUnitEnum | null;
2083
+ multiplicityDescription: string | null;
2084
+ };
2085
+ }[];
2086
+ remainingQuantity: number;
2087
+ }>;
2088
+ warnings: Record<string, string[]>;
2089
+ }[];
2090
+ errorList?: string[] | undefined;
2091
+ }, {
2092
+ analyses: {
2093
+ preOrder: {
2094
+ status: import("../../..").PreOrderStatusEnum;
2095
+ uuid: string;
2096
+ createdAt: Date;
2097
+ comment: string | null;
2098
+ clientUUID: string;
2099
+ branchUUID: string | null;
2100
+ tag: string | null;
2101
+ client: {
2102
+ email: string | null;
2103
+ phone: string | null;
2104
+ name: string;
2105
+ code: string | null;
2106
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2107
+ uuid: string;
2108
+ contactName: string | null;
2109
+ address: string | null;
2110
+ city: string | null;
2111
+ createdAt: Date;
2112
+ updatedAt: Date;
2113
+ deletedAt: Date | null;
2114
+ companyUUID: string;
2115
+ isCommon: boolean;
2116
+ contractNumber: string | null;
2117
+ contractDate: Date | null;
2118
+ group: string | null;
2119
+ marking: string | null;
2120
+ alwaysRequiresDelivery: boolean;
2121
+ additionalPhone: string | null;
2122
+ comment: string | null;
2123
+ balance: number;
2124
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2125
+ responsibleUserUUID: string | null;
2126
+ responsibleSince: Date | null;
2127
+ };
2128
+ branch: {
2129
+ name: string;
2130
+ uuid: string;
2131
+ contactName: string | null;
2132
+ contactPhone: string | null;
2133
+ address: string | null;
2134
+ city: string | null;
2135
+ region: string | null;
2136
+ country: string | null;
2137
+ clientId: string;
2138
+ createdAt: Date;
2139
+ updatedAt: Date;
2140
+ } | null;
2141
+ preOrderCollection: {
2142
+ status: import("../../..").PreOrderCollectionStatusEnum;
2143
+ uuid: string;
2144
+ deliveryDate: Date;
2145
+ description: string;
2146
+ label: string | null;
2147
+ availableUntil: Date;
2148
+ imageUrl: string | null;
2149
+ hideItemOptions: boolean;
2150
+ } | null;
2151
+ preOrderNum: number;
2152
+ };
2153
+ mappings: Record<string, {
2154
+ sourceProduct: {
2155
+ name: string | null;
2156
+ uuid: string;
2157
+ categoryUUID: string | null;
2158
+ color: string | null;
2159
+ grower: string | null;
2160
+ category: {
2161
+ name: string;
2162
+ status: import("../../..").CategoryStatusEnum;
2163
+ uuid: string;
2164
+ createdAt: Date;
2165
+ updatedAt: Date;
2166
+ deletedAt: Date | null;
2167
+ multiplicity: number | null;
2168
+ isSizeSeparate: boolean;
2169
+ isSaveCategoryName: boolean;
2170
+ } | null;
2171
+ deliveryDate: Date | null;
2172
+ comment: string | null;
2173
+ quantity: number;
2174
+ price: number | null;
2175
+ size: string | null;
2176
+ tag: string | null;
2177
+ preOrderCollectionItemUUID: string | null;
2178
+ preOrderUUID: string;
2179
+ isPurchased: boolean;
2180
+ isReplaceable: boolean;
2181
+ stopPrice: number | null;
2182
+ highAttention: boolean;
2183
+ parentPreOrderProductUUID: string | null;
2184
+ preOrderCollectionItem: {
2185
+ name: string;
2186
+ type: {
2187
+ name: string;
2188
+ uuid: string;
2189
+ createdAt: Date;
2190
+ updatedAt: Date;
2191
+ deletedAt: Date | null;
2192
+ rank: number;
2193
+ } | null;
2194
+ uuid: string;
2195
+ country: string | null;
2196
+ createdAt: Date;
2197
+ updatedAt: Date;
2198
+ multiplicity: number;
2199
+ categoryUUID: string;
2200
+ color: string | null;
2201
+ grower: string | null;
2202
+ category: {
2203
+ name: string;
2204
+ status: import("../../..").CategoryStatusEnum;
2205
+ uuid: string;
2206
+ createdAt: Date;
2207
+ updatedAt: Date;
2208
+ deletedAt: Date | null;
2209
+ multiplicity: number | null;
2210
+ isSizeSeparate: boolean;
2211
+ isSaveCategoryName: boolean;
2212
+ } | null;
2213
+ description: string | null;
2214
+ group: string | null;
2215
+ balance: number | null;
2216
+ quantity: number | null;
2217
+ price: number;
2218
+ isOpen: boolean;
2219
+ article: string | null;
2220
+ size: string | null;
2221
+ size2: string | null;
2222
+ size3: string | null;
2223
+ imageUUID: string | null;
2224
+ vat: number | null;
2225
+ image: {
2226
+ name: string;
2227
+ uuid: string;
2228
+ country: string | null;
2229
+ createdAt: Date;
2230
+ updatedAt: Date;
2231
+ deletedAt: Date | null;
2232
+ companyUUID: string;
2233
+ categoryUUID: string | null;
2234
+ color: string | null;
2235
+ vbn: string | null;
2236
+ externalUUID: string | null;
2237
+ productImageUrl: string;
2238
+ grower: string | null;
2239
+ } | null;
2240
+ productUUID: string | null;
2241
+ preOrderCollectionUUID: string;
2242
+ advancedPrice: string | null;
2243
+ salesUnit: import("../../..").SalesUnitEnum | null;
2244
+ multiplicityDescription: string | null;
2245
+ matchingProducts: {
2246
+ name: string;
2247
+ uuid: string;
2248
+ country: string | null;
2249
+ color: string | null;
2250
+ grower: string | null;
2251
+ deliveryDate: Date;
2252
+ size: string | null;
2253
+ }[];
2254
+ isSizeCustomizable?: boolean | undefined;
2255
+ isColorCustomizable?: boolean | undefined;
2256
+ multiplicityOptions?: {
2257
+ uuid: string;
2258
+ rank: number;
2259
+ title: string | null;
2260
+ optionMultiplicity: number;
2261
+ optionPrice: number | null;
2262
+ }[] | undefined;
2263
+ preOrderedQuantity?: number | undefined;
2264
+ };
2265
+ multiplicityOptionUUID?: string | null | undefined;
2266
+ matchingConfig?: {
2267
+ matchByName: boolean;
2268
+ matchByCategory: boolean;
2269
+ matchByColor: boolean;
2270
+ matchBySize: boolean;
2271
+ matchByGrower: boolean;
2272
+ } | null | undefined;
2273
+ };
2274
+ matches: {
2275
+ quantity: number;
2276
+ collectionItem: {
2277
+ name: string;
2278
+ uuid: string;
2279
+ country: string | null;
2280
+ createdAt: Date;
2281
+ updatedAt: Date;
2282
+ multiplicity: number;
2283
+ categoryUUID: string;
2284
+ color: string | null;
2285
+ grower: string | null;
2286
+ description: string | null;
2287
+ group: string | null;
2288
+ balance: number | null;
2289
+ quantity: number | null;
2290
+ price: number;
2291
+ isOpen: boolean;
2292
+ article: string | null;
2293
+ size: string | null;
2294
+ size2: string | null;
2295
+ size3: string | null;
2296
+ imageUUID: string | null;
2297
+ vat: number | null;
2298
+ productUUID: string | null;
2299
+ preOrderCollectionUUID: string;
2300
+ advancedPrice: string | null;
2301
+ salesUnit: import("../../..").SalesUnitEnum | null;
2302
+ multiplicityDescription: string | null;
2303
+ isSizeCustomizable?: boolean | undefined;
2304
+ isColorCustomizable?: boolean | undefined;
2305
+ };
2306
+ }[];
2307
+ remainingQuantity: number;
2308
+ }>;
2309
+ warnings: Record<string, string[]>;
2310
+ }[];
2311
+ errorList?: string[] | undefined;
2312
+ }>;
2313
+ }, "strip", z.ZodTypeAny, {
2314
+ data: {
2315
+ analyses: {
2316
+ preOrder: {
2317
+ status: import("../../..").PreOrderStatusEnum;
2318
+ uuid: string;
2319
+ createdAt: Date;
2320
+ comment: string | null;
2321
+ clientUUID: string;
2322
+ branchUUID: string | null;
2323
+ tag: string | null;
2324
+ client: {
2325
+ email: string | null;
2326
+ phone: string | null;
2327
+ name: string;
2328
+ code: string | null;
2329
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2330
+ uuid: string;
2331
+ contactName: string | null;
2332
+ address: string | null;
2333
+ city: string | null;
2334
+ createdAt: Date;
2335
+ updatedAt: Date;
2336
+ deletedAt: Date | null;
2337
+ companyUUID: string;
2338
+ isCommon: boolean;
2339
+ contractNumber: string | null;
2340
+ contractDate: Date | null;
2341
+ group: string | null;
2342
+ marking: string | null;
2343
+ alwaysRequiresDelivery: boolean;
2344
+ additionalPhone: string | null;
2345
+ comment: string | null;
2346
+ balance: number;
2347
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2348
+ responsibleUserUUID: string | null;
2349
+ responsibleSince: Date | null;
2350
+ };
2351
+ branch: {
2352
+ name: string;
2353
+ uuid: string;
2354
+ contactName: string | null;
2355
+ contactPhone: string | null;
2356
+ address: string | null;
2357
+ city: string | null;
2358
+ region: string | null;
2359
+ country: string | null;
2360
+ clientId: string;
2361
+ createdAt: Date;
2362
+ updatedAt: Date;
2363
+ } | null;
2364
+ preOrderCollection: {
2365
+ status: import("../../..").PreOrderCollectionStatusEnum;
2366
+ uuid: string;
2367
+ deliveryDate: Date;
2368
+ description: string;
2369
+ label: string | null;
2370
+ availableUntil: Date;
2371
+ imageUrl: string | null;
2372
+ hideItemOptions: boolean;
2373
+ } | null;
2374
+ preOrderNum: number;
2375
+ };
2376
+ mappings: Record<string, {
2377
+ sourceProduct: {
2378
+ name: string | null;
2379
+ uuid: string;
2380
+ categoryUUID: string | null;
2381
+ color: string | null;
2382
+ grower: string | null;
2383
+ category: {
2384
+ name: string;
2385
+ status: import("../../..").CategoryStatusEnum;
2386
+ uuid: string;
2387
+ createdAt: Date;
2388
+ updatedAt: Date;
2389
+ deletedAt: Date | null;
2390
+ multiplicity: number | null;
2391
+ isSizeSeparate: boolean;
2392
+ isSaveCategoryName: boolean;
2393
+ } | null;
2394
+ deliveryDate: Date | null;
2395
+ comment: string | null;
2396
+ quantity: number;
2397
+ price: number | null;
2398
+ size: string | null;
2399
+ tag: string | null;
2400
+ preOrderCollectionItemUUID: string | null;
2401
+ preOrderUUID: string;
2402
+ isPurchased: boolean;
2403
+ isReplaceable: boolean;
2404
+ stopPrice: number | null;
2405
+ highAttention: boolean;
2406
+ parentPreOrderProductUUID: string | null;
2407
+ preOrderCollectionItem: {
2408
+ name: string;
2409
+ type: {
2410
+ name: string;
2411
+ uuid: string;
2412
+ createdAt: Date;
2413
+ updatedAt: Date;
2414
+ deletedAt: Date | null;
2415
+ rank: number;
2416
+ } | null;
2417
+ uuid: string;
2418
+ country: string | null;
2419
+ createdAt: Date;
2420
+ updatedAt: Date;
2421
+ multiplicity: number;
2422
+ categoryUUID: string;
2423
+ color: string | null;
2424
+ grower: string | null;
2425
+ category: {
2426
+ name: string;
2427
+ status: import("../../..").CategoryStatusEnum;
2428
+ uuid: string;
2429
+ createdAt: Date;
2430
+ updatedAt: Date;
2431
+ deletedAt: Date | null;
2432
+ multiplicity: number | null;
2433
+ isSizeSeparate: boolean;
2434
+ isSaveCategoryName: boolean;
2435
+ } | null;
2436
+ description: string | null;
2437
+ group: string | null;
2438
+ balance: number | null;
2439
+ quantity: number | null;
2440
+ price: number;
2441
+ isOpen: boolean;
2442
+ article: string | null;
2443
+ size: string | null;
2444
+ size2: string | null;
2445
+ size3: string | null;
2446
+ imageUUID: string | null;
2447
+ vat: number | null;
2448
+ image: {
2449
+ name: string;
2450
+ uuid: string;
2451
+ country: string | null;
2452
+ createdAt: Date;
2453
+ updatedAt: Date;
2454
+ deletedAt: Date | null;
2455
+ companyUUID: string;
2456
+ categoryUUID: string | null;
2457
+ color: string | null;
2458
+ vbn: string | null;
2459
+ externalUUID: string | null;
2460
+ productImageUrl: string;
2461
+ grower: string | null;
2462
+ } | null;
2463
+ productUUID: string | null;
2464
+ preOrderCollectionUUID: string;
2465
+ advancedPrice: string | null;
2466
+ isSizeCustomizable: boolean;
2467
+ isColorCustomizable: boolean;
2468
+ salesUnit: import("../../..").SalesUnitEnum | null;
2469
+ multiplicityDescription: string | null;
2470
+ matchingProducts: {
2471
+ name: string;
2472
+ uuid: string;
2473
+ country: string | null;
2474
+ color: string | null;
2475
+ grower: string | null;
2476
+ deliveryDate: Date;
2477
+ size: string | null;
2478
+ }[];
2479
+ multiplicityOptions?: {
2480
+ uuid: string;
2481
+ rank: number;
2482
+ title: string | null;
2483
+ optionMultiplicity: number;
2484
+ optionPrice: number | null;
2485
+ }[] | undefined;
2486
+ preOrderedQuantity?: number | undefined;
2487
+ };
2488
+ multiplicityOptionUUID?: string | null | undefined;
2489
+ matchingConfig?: {
2490
+ matchByName: boolean;
2491
+ matchByCategory: boolean;
2492
+ matchByColor: boolean;
2493
+ matchBySize: boolean;
2494
+ matchByGrower: boolean;
2495
+ } | null | undefined;
2496
+ };
2497
+ matches: {
2498
+ quantity: number;
2499
+ collectionItem: {
2500
+ name: string;
2501
+ uuid: string;
2502
+ country: string | null;
2503
+ createdAt: Date;
2504
+ updatedAt: Date;
2505
+ multiplicity: number;
2506
+ categoryUUID: string;
2507
+ color: string | null;
2508
+ grower: string | null;
2509
+ description: string | null;
2510
+ group: string | null;
2511
+ balance: number | null;
2512
+ quantity: number | null;
2513
+ price: number;
2514
+ isOpen: boolean;
2515
+ article: string | null;
2516
+ size: string | null;
2517
+ size2: string | null;
2518
+ size3: string | null;
2519
+ imageUUID: string | null;
2520
+ vat: number | null;
2521
+ productUUID: string | null;
2522
+ preOrderCollectionUUID: string;
2523
+ advancedPrice: string | null;
2524
+ isSizeCustomizable: boolean;
2525
+ isColorCustomizable: boolean;
2526
+ salesUnit: import("../../..").SalesUnitEnum | null;
2527
+ multiplicityDescription: string | null;
2528
+ };
2529
+ }[];
2530
+ remainingQuantity: number;
2531
+ }>;
2532
+ warnings: Record<string, string[]>;
2533
+ }[];
2534
+ errorList?: string[] | undefined;
2535
+ };
2536
+ message?: string | undefined;
2537
+ }, {
2538
+ data: {
2539
+ analyses: {
2540
+ preOrder: {
2541
+ status: import("../../..").PreOrderStatusEnum;
2542
+ uuid: string;
2543
+ createdAt: Date;
2544
+ comment: string | null;
2545
+ clientUUID: string;
2546
+ branchUUID: string | null;
2547
+ tag: string | null;
2548
+ client: {
2549
+ email: string | null;
2550
+ phone: string | null;
2551
+ name: string;
2552
+ code: string | null;
2553
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2554
+ uuid: string;
2555
+ contactName: string | null;
2556
+ address: string | null;
2557
+ city: string | null;
2558
+ createdAt: Date;
2559
+ updatedAt: Date;
2560
+ deletedAt: Date | null;
2561
+ companyUUID: string;
2562
+ isCommon: boolean;
2563
+ contractNumber: string | null;
2564
+ contractDate: Date | null;
2565
+ group: string | null;
2566
+ marking: string | null;
2567
+ alwaysRequiresDelivery: boolean;
2568
+ additionalPhone: string | null;
2569
+ comment: string | null;
2570
+ balance: number;
2571
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2572
+ responsibleUserUUID: string | null;
2573
+ responsibleSince: Date | null;
2574
+ };
2575
+ branch: {
2576
+ name: string;
2577
+ uuid: string;
2578
+ contactName: string | null;
2579
+ contactPhone: string | null;
2580
+ address: string | null;
2581
+ city: string | null;
2582
+ region: string | null;
2583
+ country: string | null;
2584
+ clientId: string;
2585
+ createdAt: Date;
2586
+ updatedAt: Date;
2587
+ } | null;
2588
+ preOrderCollection: {
2589
+ status: import("../../..").PreOrderCollectionStatusEnum;
2590
+ uuid: string;
2591
+ deliveryDate: Date;
2592
+ description: string;
2593
+ label: string | null;
2594
+ availableUntil: Date;
2595
+ imageUrl: string | null;
2596
+ hideItemOptions: boolean;
2597
+ } | null;
2598
+ preOrderNum: number;
2599
+ };
2600
+ mappings: Record<string, {
2601
+ sourceProduct: {
2602
+ name: string | null;
2603
+ uuid: string;
2604
+ categoryUUID: string | null;
2605
+ color: string | null;
2606
+ grower: string | null;
2607
+ category: {
2608
+ name: string;
2609
+ status: import("../../..").CategoryStatusEnum;
2610
+ uuid: string;
2611
+ createdAt: Date;
2612
+ updatedAt: Date;
2613
+ deletedAt: Date | null;
2614
+ multiplicity: number | null;
2615
+ isSizeSeparate: boolean;
2616
+ isSaveCategoryName: boolean;
2617
+ } | null;
2618
+ deliveryDate: Date | null;
2619
+ comment: string | null;
2620
+ quantity: number;
2621
+ price: number | null;
2622
+ size: string | null;
2623
+ tag: string | null;
2624
+ preOrderCollectionItemUUID: string | null;
2625
+ preOrderUUID: string;
2626
+ isPurchased: boolean;
2627
+ isReplaceable: boolean;
2628
+ stopPrice: number | null;
2629
+ highAttention: boolean;
2630
+ parentPreOrderProductUUID: string | null;
2631
+ preOrderCollectionItem: {
2632
+ name: string;
2633
+ type: {
2634
+ name: string;
2635
+ uuid: string;
2636
+ createdAt: Date;
2637
+ updatedAt: Date;
2638
+ deletedAt: Date | null;
2639
+ rank: number;
2640
+ } | null;
2641
+ uuid: string;
2642
+ country: string | null;
2643
+ createdAt: Date;
2644
+ updatedAt: Date;
2645
+ multiplicity: number;
2646
+ categoryUUID: string;
2647
+ color: string | null;
2648
+ grower: string | null;
2649
+ category: {
2650
+ name: string;
2651
+ status: import("../../..").CategoryStatusEnum;
2652
+ uuid: string;
2653
+ createdAt: Date;
2654
+ updatedAt: Date;
2655
+ deletedAt: Date | null;
2656
+ multiplicity: number | null;
2657
+ isSizeSeparate: boolean;
2658
+ isSaveCategoryName: boolean;
2659
+ } | null;
2660
+ description: string | null;
2661
+ group: string | null;
2662
+ balance: number | null;
2663
+ quantity: number | null;
2664
+ price: number;
2665
+ isOpen: boolean;
2666
+ article: string | null;
2667
+ size: string | null;
2668
+ size2: string | null;
2669
+ size3: string | null;
2670
+ imageUUID: string | null;
2671
+ vat: number | null;
2672
+ image: {
2673
+ name: string;
2674
+ uuid: string;
2675
+ country: string | null;
2676
+ createdAt: Date;
2677
+ updatedAt: Date;
2678
+ deletedAt: Date | null;
2679
+ companyUUID: string;
2680
+ categoryUUID: string | null;
2681
+ color: string | null;
2682
+ vbn: string | null;
2683
+ externalUUID: string | null;
2684
+ productImageUrl: string;
2685
+ grower: string | null;
2686
+ } | null;
2687
+ productUUID: string | null;
2688
+ preOrderCollectionUUID: string;
2689
+ advancedPrice: string | null;
2690
+ salesUnit: import("../../..").SalesUnitEnum | null;
2691
+ multiplicityDescription: string | null;
2692
+ matchingProducts: {
2693
+ name: string;
2694
+ uuid: string;
2695
+ country: string | null;
2696
+ color: string | null;
2697
+ grower: string | null;
2698
+ deliveryDate: Date;
2699
+ size: string | null;
2700
+ }[];
2701
+ isSizeCustomizable?: boolean | undefined;
2702
+ isColorCustomizable?: boolean | undefined;
2703
+ multiplicityOptions?: {
2704
+ uuid: string;
2705
+ rank: number;
2706
+ title: string | null;
2707
+ optionMultiplicity: number;
2708
+ optionPrice: number | null;
2709
+ }[] | undefined;
2710
+ preOrderedQuantity?: number | undefined;
2711
+ };
2712
+ multiplicityOptionUUID?: string | null | undefined;
2713
+ matchingConfig?: {
2714
+ matchByName: boolean;
2715
+ matchByCategory: boolean;
2716
+ matchByColor: boolean;
2717
+ matchBySize: boolean;
2718
+ matchByGrower: boolean;
2719
+ } | null | undefined;
2720
+ };
2721
+ matches: {
2722
+ quantity: number;
2723
+ collectionItem: {
2724
+ name: string;
2725
+ uuid: string;
2726
+ country: string | null;
2727
+ createdAt: Date;
2728
+ updatedAt: Date;
2729
+ multiplicity: number;
2730
+ categoryUUID: string;
2731
+ color: string | null;
2732
+ grower: string | null;
2733
+ description: string | null;
2734
+ group: string | null;
2735
+ balance: number | null;
2736
+ quantity: number | null;
2737
+ price: number;
2738
+ isOpen: boolean;
2739
+ article: string | null;
2740
+ size: string | null;
2741
+ size2: string | null;
2742
+ size3: string | null;
2743
+ imageUUID: string | null;
2744
+ vat: number | null;
2745
+ productUUID: string | null;
2746
+ preOrderCollectionUUID: string;
2747
+ advancedPrice: string | null;
2748
+ salesUnit: import("../../..").SalesUnitEnum | null;
2749
+ multiplicityDescription: string | null;
2750
+ isSizeCustomizable?: boolean | undefined;
2751
+ isColorCustomizable?: boolean | undefined;
2752
+ };
2753
+ }[];
2754
+ remainingQuantity: number;
2755
+ }>;
2756
+ warnings: Record<string, string[]>;
2757
+ }[];
2758
+ errorList?: string[] | undefined;
2759
+ };
2760
+ message?: string | undefined;
2761
+ }>;
2762
+ type Response = z.infer<typeof ResponseSchema>;
2763
+ const AnalysisSchema: z.ZodObject<{
2764
+ preOrder: z.ZodObject<{
2765
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderStatusEnum>;
2766
+ uuid: z.ZodString;
2767
+ createdAt: z.ZodDate;
2768
+ comment: z.ZodNullable<z.ZodString>;
2769
+ clientUUID: z.ZodString;
2770
+ branchUUID: z.ZodNullable<z.ZodString>;
2771
+ tag: z.ZodNullable<z.ZodString>;
2772
+ preOrderNum: z.ZodNumber;
2773
+ preOrderCollection: z.ZodNullable<z.ZodObject<{
2774
+ uuid: z.ZodString;
2775
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderCollectionStatusEnum>;
2776
+ description: z.ZodString;
2777
+ availableUntil: z.ZodDate;
2778
+ deliveryDate: z.ZodDate;
2779
+ label: z.ZodNullable<z.ZodString>;
2780
+ imageUrl: z.ZodNullable<z.ZodString>;
2781
+ hideItemOptions: z.ZodBoolean;
2782
+ }, "strip", z.ZodTypeAny, {
2783
+ status: import("../../..").PreOrderCollectionStatusEnum;
2784
+ uuid: string;
2785
+ deliveryDate: Date;
2786
+ description: string;
2787
+ label: string | null;
2788
+ availableUntil: Date;
2789
+ imageUrl: string | null;
2790
+ hideItemOptions: boolean;
2791
+ }, {
2792
+ status: import("../../..").PreOrderCollectionStatusEnum;
2793
+ uuid: string;
2794
+ deliveryDate: Date;
2795
+ description: string;
2796
+ label: string | null;
2797
+ availableUntil: Date;
2798
+ imageUrl: string | null;
2799
+ hideItemOptions: boolean;
2800
+ }>>;
2801
+ client: z.ZodObject<{
2802
+ uuid: z.ZodString;
2803
+ name: z.ZodString;
2804
+ contactName: z.ZodNullable<z.ZodString>;
2805
+ phone: z.ZodNullable<z.ZodString>;
2806
+ email: z.ZodNullable<z.ZodString>;
2807
+ status: z.ZodNativeEnum<typeof import("../../../enum/client-status.enum").ClientStatusEnum>;
2808
+ isCommon: z.ZodBoolean;
2809
+ contractNumber: z.ZodNullable<z.ZodString>;
2810
+ contractDate: z.ZodNullable<z.ZodDate>;
2811
+ address: z.ZodNullable<z.ZodString>;
2812
+ city: z.ZodNullable<z.ZodString>;
2813
+ code: z.ZodNullable<z.ZodString>;
2814
+ group: z.ZodNullable<z.ZodString>;
2815
+ marking: z.ZodNullable<z.ZodString>;
2816
+ alwaysRequiresDelivery: z.ZodBoolean;
2817
+ additionalPhone: z.ZodNullable<z.ZodString>;
2818
+ comment: z.ZodNullable<z.ZodString>;
2819
+ balance: z.ZodNumber;
2820
+ deletedAt: z.ZodNullable<z.ZodDate>;
2821
+ createdAt: z.ZodDate;
2822
+ updatedAt: z.ZodDate;
2823
+ companyUUID: z.ZodString;
2824
+ clientType: z.ZodNativeEnum<typeof import("../../../enum/client-type.enum").ClientTypeEnum>;
2825
+ responsibleUserUUID: z.ZodNullable<z.ZodString>;
2826
+ responsibleSince: z.ZodNullable<z.ZodDate>;
2827
+ }, "strip", z.ZodTypeAny, {
2828
+ email: string | null;
2829
+ phone: string | null;
2830
+ name: string;
2831
+ code: string | null;
2832
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2833
+ uuid: string;
2834
+ contactName: string | null;
2835
+ address: string | null;
2836
+ city: string | null;
2837
+ createdAt: Date;
2838
+ updatedAt: Date;
2839
+ deletedAt: Date | null;
2840
+ companyUUID: string;
2841
+ isCommon: boolean;
2842
+ contractNumber: string | null;
2843
+ contractDate: Date | null;
2844
+ group: string | null;
2845
+ marking: string | null;
2846
+ alwaysRequiresDelivery: boolean;
2847
+ additionalPhone: string | null;
2848
+ comment: string | null;
2849
+ balance: number;
2850
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2851
+ responsibleUserUUID: string | null;
2852
+ responsibleSince: Date | null;
2853
+ }, {
2854
+ email: string | null;
2855
+ phone: string | null;
2856
+ name: string;
2857
+ code: string | null;
2858
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2859
+ uuid: string;
2860
+ contactName: string | null;
2861
+ address: string | null;
2862
+ city: string | null;
2863
+ createdAt: Date;
2864
+ updatedAt: Date;
2865
+ deletedAt: Date | null;
2866
+ companyUUID: string;
2867
+ isCommon: boolean;
2868
+ contractNumber: string | null;
2869
+ contractDate: Date | null;
2870
+ group: string | null;
2871
+ marking: string | null;
2872
+ alwaysRequiresDelivery: boolean;
2873
+ additionalPhone: string | null;
2874
+ comment: string | null;
2875
+ balance: number;
2876
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2877
+ responsibleUserUUID: string | null;
2878
+ responsibleSince: Date | null;
2879
+ }>;
2880
+ branch: z.ZodNullable<z.ZodObject<{
2881
+ uuid: z.ZodString;
2882
+ name: z.ZodString;
2883
+ contactName: z.ZodNullable<z.ZodString>;
2884
+ contactPhone: z.ZodNullable<z.ZodString>;
2885
+ address: z.ZodNullable<z.ZodString>;
2886
+ city: z.ZodNullable<z.ZodString>;
2887
+ region: z.ZodNullable<z.ZodString>;
2888
+ country: z.ZodNullable<z.ZodString>;
2889
+ clientId: z.ZodString;
2890
+ createdAt: z.ZodDate;
2891
+ updatedAt: z.ZodDate;
2892
+ }, "strip", z.ZodTypeAny, {
2893
+ name: string;
2894
+ uuid: string;
2895
+ contactName: string | null;
2896
+ contactPhone: string | null;
2897
+ address: string | null;
2898
+ city: string | null;
2899
+ region: string | null;
2900
+ country: string | null;
2901
+ clientId: string;
2902
+ createdAt: Date;
2903
+ updatedAt: Date;
2904
+ }, {
2905
+ name: string;
2906
+ uuid: string;
2907
+ contactName: string | null;
2908
+ contactPhone: string | null;
2909
+ address: string | null;
2910
+ city: string | null;
2911
+ region: string | null;
2912
+ country: string | null;
2913
+ clientId: string;
2914
+ createdAt: Date;
2915
+ updatedAt: Date;
2916
+ }>>;
2917
+ }, "strip", z.ZodTypeAny, {
2918
+ status: import("../../..").PreOrderStatusEnum;
2919
+ uuid: string;
2920
+ createdAt: Date;
2921
+ comment: string | null;
2922
+ clientUUID: string;
2923
+ branchUUID: string | null;
2924
+ tag: string | null;
2925
+ client: {
2926
+ email: string | null;
2927
+ phone: string | null;
2928
+ name: string;
2929
+ code: string | null;
2930
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2931
+ uuid: string;
2932
+ contactName: string | null;
2933
+ address: string | null;
2934
+ city: string | null;
2935
+ createdAt: Date;
2936
+ updatedAt: Date;
2937
+ deletedAt: Date | null;
2938
+ companyUUID: string;
2939
+ isCommon: boolean;
2940
+ contractNumber: string | null;
2941
+ contractDate: Date | null;
2942
+ group: string | null;
2943
+ marking: string | null;
2944
+ alwaysRequiresDelivery: boolean;
2945
+ additionalPhone: string | null;
2946
+ comment: string | null;
2947
+ balance: number;
2948
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2949
+ responsibleUserUUID: string | null;
2950
+ responsibleSince: Date | null;
2951
+ };
2952
+ branch: {
2953
+ name: string;
2954
+ uuid: string;
2955
+ contactName: string | null;
2956
+ contactPhone: string | null;
2957
+ address: string | null;
2958
+ city: string | null;
2959
+ region: string | null;
2960
+ country: string | null;
2961
+ clientId: string;
2962
+ createdAt: Date;
2963
+ updatedAt: Date;
2964
+ } | null;
2965
+ preOrderCollection: {
2966
+ status: import("../../..").PreOrderCollectionStatusEnum;
2967
+ uuid: string;
2968
+ deliveryDate: Date;
2969
+ description: string;
2970
+ label: string | null;
2971
+ availableUntil: Date;
2972
+ imageUrl: string | null;
2973
+ hideItemOptions: boolean;
2974
+ } | null;
2975
+ preOrderNum: number;
2976
+ }, {
2977
+ status: import("../../..").PreOrderStatusEnum;
2978
+ uuid: string;
2979
+ createdAt: Date;
2980
+ comment: string | null;
2981
+ clientUUID: string;
2982
+ branchUUID: string | null;
2983
+ tag: string | null;
2984
+ client: {
2985
+ email: string | null;
2986
+ phone: string | null;
2987
+ name: string;
2988
+ code: string | null;
2989
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2990
+ uuid: string;
2991
+ contactName: string | null;
2992
+ address: string | null;
2993
+ city: string | null;
2994
+ createdAt: Date;
2995
+ updatedAt: Date;
2996
+ deletedAt: Date | null;
2997
+ companyUUID: string;
2998
+ isCommon: boolean;
2999
+ contractNumber: string | null;
3000
+ contractDate: Date | null;
3001
+ group: string | null;
3002
+ marking: string | null;
3003
+ alwaysRequiresDelivery: boolean;
3004
+ additionalPhone: string | null;
3005
+ comment: string | null;
3006
+ balance: number;
3007
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
3008
+ responsibleUserUUID: string | null;
3009
+ responsibleSince: Date | null;
3010
+ };
3011
+ branch: {
3012
+ name: string;
3013
+ uuid: string;
3014
+ contactName: string | null;
3015
+ contactPhone: string | null;
3016
+ address: string | null;
3017
+ city: string | null;
3018
+ region: string | null;
3019
+ country: string | null;
3020
+ clientId: string;
3021
+ createdAt: Date;
3022
+ updatedAt: Date;
3023
+ } | null;
3024
+ preOrderCollection: {
3025
+ status: import("../../..").PreOrderCollectionStatusEnum;
3026
+ uuid: string;
3027
+ deliveryDate: Date;
3028
+ description: string;
3029
+ label: string | null;
3030
+ availableUntil: Date;
3031
+ imageUrl: string | null;
3032
+ hideItemOptions: boolean;
3033
+ } | null;
3034
+ preOrderNum: number;
3035
+ }>;
3036
+ mappings: z.ZodRecord<z.ZodString, z.ZodObject<{
3037
+ sourceProduct: z.ZodObject<{
3038
+ name: z.ZodNullable<z.ZodString>;
3039
+ uuid: z.ZodString;
3040
+ categoryUUID: z.ZodNullable<z.ZodString>;
3041
+ color: z.ZodNullable<z.ZodString>;
3042
+ grower: z.ZodNullable<z.ZodString>;
3043
+ comment: z.ZodNullable<z.ZodString>;
3044
+ quantity: z.ZodNumber;
3045
+ price: z.ZodNullable<z.ZodNumber>;
3046
+ size: z.ZodNullable<z.ZodString>;
3047
+ tag: z.ZodNullable<z.ZodString>;
3048
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3049
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
3050
+ preOrderUUID: z.ZodString;
3051
+ isPurchased: z.ZodBoolean;
3052
+ isReplaceable: z.ZodBoolean;
3053
+ stopPrice: z.ZodNullable<z.ZodNumber>;
3054
+ highAttention: z.ZodBoolean;
3055
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
3056
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3057
+ matchByName: z.ZodBoolean;
3058
+ matchByCategory: z.ZodBoolean;
3059
+ matchByColor: z.ZodBoolean;
3060
+ matchBySize: z.ZodBoolean;
3061
+ matchByGrower: z.ZodBoolean;
3062
+ }, "strip", z.ZodTypeAny, {
3063
+ matchByName: boolean;
3064
+ matchByCategory: boolean;
3065
+ matchByColor: boolean;
3066
+ matchBySize: boolean;
3067
+ matchByGrower: boolean;
3068
+ }, {
3069
+ matchByName: boolean;
3070
+ matchByCategory: boolean;
3071
+ matchByColor: boolean;
3072
+ matchBySize: boolean;
3073
+ matchByGrower: boolean;
3074
+ }>>>;
3075
+ preOrderCollectionItem: z.ZodObject<{
3076
+ name: z.ZodString;
3077
+ uuid: z.ZodString;
3078
+ country: z.ZodNullable<z.ZodString>;
3079
+ createdAt: z.ZodDate;
3080
+ updatedAt: z.ZodDate;
3081
+ multiplicity: z.ZodNumber;
3082
+ categoryUUID: z.ZodString;
3083
+ color: z.ZodNullable<z.ZodString>;
3084
+ grower: z.ZodNullable<z.ZodString>;
3085
+ description: z.ZodNullable<z.ZodString>;
3086
+ group: z.ZodNullable<z.ZodString>;
3087
+ balance: z.ZodNullable<z.ZodNumber>;
3088
+ quantity: z.ZodNullable<z.ZodNumber>;
3089
+ price: z.ZodNumber;
3090
+ isOpen: z.ZodBoolean;
3091
+ article: z.ZodNullable<z.ZodString>;
3092
+ size: z.ZodNullable<z.ZodString>;
3093
+ size2: z.ZodNullable<z.ZodString>;
3094
+ size3: z.ZodNullable<z.ZodString>;
3095
+ imageUUID: z.ZodNullable<z.ZodString>;
3096
+ vat: z.ZodNullable<z.ZodNumber>;
3097
+ productUUID: z.ZodNullable<z.ZodString>;
3098
+ preOrderCollectionUUID: z.ZodString;
3099
+ advancedPrice: z.ZodNullable<z.ZodString>;
3100
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
3101
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
3102
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").SalesUnitEnum>>;
3103
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
3104
+ image: z.ZodNullable<z.ZodObject<{
3105
+ uuid: z.ZodString;
3106
+ categoryUUID: z.ZodNullable<z.ZodString>;
3107
+ name: z.ZodString;
3108
+ color: z.ZodNullable<z.ZodString>;
3109
+ vbn: z.ZodNullable<z.ZodString>;
3110
+ externalUUID: z.ZodNullable<z.ZodString>;
3111
+ productImageUrl: z.ZodString;
3112
+ companyUUID: z.ZodString;
3113
+ country: z.ZodNullable<z.ZodString>;
3114
+ grower: z.ZodNullable<z.ZodString>;
3115
+ createdAt: z.ZodDate;
3116
+ updatedAt: z.ZodDate;
3117
+ deletedAt: z.ZodNullable<z.ZodDate>;
3118
+ }, "strip", z.ZodTypeAny, {
3119
+ name: string;
3120
+ uuid: string;
3121
+ country: string | null;
3122
+ createdAt: Date;
3123
+ updatedAt: Date;
3124
+ deletedAt: Date | null;
3125
+ companyUUID: string;
3126
+ categoryUUID: string | null;
3127
+ color: string | null;
3128
+ vbn: string | null;
3129
+ externalUUID: string | null;
3130
+ productImageUrl: string;
3131
+ grower: string | null;
3132
+ }, {
3133
+ name: string;
3134
+ uuid: string;
3135
+ country: string | null;
3136
+ createdAt: Date;
3137
+ updatedAt: Date;
3138
+ deletedAt: Date | null;
3139
+ companyUUID: string;
3140
+ categoryUUID: string | null;
3141
+ color: string | null;
3142
+ vbn: string | null;
3143
+ externalUUID: string | null;
3144
+ productImageUrl: string;
3145
+ grower: string | null;
3146
+ }>>;
3147
+ category: z.ZodNullable<z.ZodObject<{
3148
+ uuid: z.ZodString;
3149
+ name: z.ZodString;
3150
+ multiplicity: z.ZodNullable<z.ZodNumber>;
3151
+ isSizeSeparate: z.ZodBoolean;
3152
+ isSaveCategoryName: z.ZodBoolean;
3153
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
3154
+ createdAt: z.ZodDate;
3155
+ updatedAt: z.ZodDate;
3156
+ deletedAt: z.ZodNullable<z.ZodDate>;
3157
+ }, "strip", z.ZodTypeAny, {
3158
+ name: string;
3159
+ status: import("../../..").CategoryStatusEnum;
3160
+ uuid: string;
3161
+ createdAt: Date;
3162
+ updatedAt: Date;
3163
+ deletedAt: Date | null;
3164
+ multiplicity: number | null;
3165
+ isSizeSeparate: boolean;
3166
+ isSaveCategoryName: boolean;
3167
+ }, {
3168
+ name: string;
3169
+ status: import("../../..").CategoryStatusEnum;
3170
+ uuid: string;
3171
+ createdAt: Date;
3172
+ updatedAt: Date;
3173
+ deletedAt: Date | null;
3174
+ multiplicity: number | null;
3175
+ isSizeSeparate: boolean;
3176
+ isSaveCategoryName: boolean;
3177
+ }>>;
3178
+ type: z.ZodNullable<z.ZodObject<{
3179
+ uuid: z.ZodString;
3180
+ name: z.ZodString;
3181
+ rank: z.ZodNumber;
3182
+ deletedAt: z.ZodNullable<z.ZodDate>;
3183
+ createdAt: z.ZodDate;
3184
+ updatedAt: z.ZodDate;
3185
+ }, "strip", z.ZodTypeAny, {
3186
+ name: string;
3187
+ uuid: string;
3188
+ createdAt: Date;
3189
+ updatedAt: Date;
3190
+ deletedAt: Date | null;
3191
+ rank: number;
3192
+ }, {
3193
+ name: string;
3194
+ uuid: string;
3195
+ createdAt: Date;
3196
+ updatedAt: Date;
3197
+ deletedAt: Date | null;
3198
+ rank: number;
3199
+ }>>;
3200
+ matchingProducts: z.ZodArray<z.ZodObject<{
3201
+ uuid: z.ZodString;
3202
+ name: z.ZodString;
3203
+ size: z.ZodNullable<z.ZodString>;
3204
+ grower: z.ZodNullable<z.ZodString>;
3205
+ color: z.ZodNullable<z.ZodString>;
3206
+ country: z.ZodNullable<z.ZodString>;
3207
+ deliveryDate: z.ZodDate;
3208
+ }, "strip", z.ZodTypeAny, {
3209
+ name: string;
3210
+ uuid: string;
3211
+ country: string | null;
3212
+ color: string | null;
3213
+ grower: string | null;
3214
+ deliveryDate: Date;
3215
+ size: string | null;
3216
+ }, {
3217
+ name: string;
3218
+ uuid: string;
3219
+ country: string | null;
3220
+ color: string | null;
3221
+ grower: string | null;
3222
+ deliveryDate: Date;
3223
+ size: string | null;
3224
+ }>, "many">;
3225
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3226
+ uuid: z.ZodString;
3227
+ title: z.ZodNullable<z.ZodString>;
3228
+ optionMultiplicity: z.ZodNumber;
3229
+ optionPrice: z.ZodNullable<z.ZodNumber>;
3230
+ rank: z.ZodNumber;
3231
+ }, "strip", z.ZodTypeAny, {
3232
+ uuid: string;
3233
+ rank: number;
3234
+ title: string | null;
3235
+ optionMultiplicity: number;
3236
+ optionPrice: number | null;
3237
+ }, {
3238
+ uuid: string;
3239
+ rank: number;
3240
+ title: string | null;
3241
+ optionMultiplicity: number;
3242
+ optionPrice: number | null;
3243
+ }>, "many">>;
3244
+ preOrderedQuantity: z.ZodOptional<z.ZodNumber>;
3245
+ }, "strip", z.ZodTypeAny, {
3246
+ name: string;
3247
+ type: {
3248
+ name: string;
3249
+ uuid: string;
3250
+ createdAt: Date;
3251
+ updatedAt: Date;
3252
+ deletedAt: Date | null;
3253
+ rank: number;
3254
+ } | null;
3255
+ uuid: string;
3256
+ country: string | null;
3257
+ createdAt: Date;
3258
+ updatedAt: Date;
3259
+ multiplicity: number;
3260
+ categoryUUID: string;
3261
+ color: string | null;
3262
+ grower: string | null;
3263
+ category: {
3264
+ name: string;
3265
+ status: import("../../..").CategoryStatusEnum;
3266
+ uuid: string;
3267
+ createdAt: Date;
3268
+ updatedAt: Date;
3269
+ deletedAt: Date | null;
3270
+ multiplicity: number | null;
3271
+ isSizeSeparate: boolean;
3272
+ isSaveCategoryName: boolean;
3273
+ } | null;
3274
+ description: string | null;
3275
+ group: string | null;
3276
+ balance: number | null;
3277
+ quantity: number | null;
3278
+ price: number;
3279
+ isOpen: boolean;
3280
+ article: string | null;
3281
+ size: string | null;
3282
+ size2: string | null;
3283
+ size3: string | null;
3284
+ imageUUID: string | null;
3285
+ vat: number | null;
3286
+ image: {
3287
+ name: string;
3288
+ uuid: string;
3289
+ country: string | null;
3290
+ createdAt: Date;
3291
+ updatedAt: Date;
3292
+ deletedAt: Date | null;
3293
+ companyUUID: string;
3294
+ categoryUUID: string | null;
3295
+ color: string | null;
3296
+ vbn: string | null;
3297
+ externalUUID: string | null;
3298
+ productImageUrl: string;
3299
+ grower: string | null;
3300
+ } | null;
3301
+ productUUID: string | null;
3302
+ preOrderCollectionUUID: string;
3303
+ advancedPrice: string | null;
3304
+ isSizeCustomizable: boolean;
3305
+ isColorCustomizable: boolean;
3306
+ salesUnit: import("../../..").SalesUnitEnum | null;
3307
+ multiplicityDescription: string | null;
3308
+ matchingProducts: {
3309
+ name: string;
3310
+ uuid: string;
3311
+ country: string | null;
3312
+ color: string | null;
3313
+ grower: string | null;
3314
+ deliveryDate: Date;
3315
+ size: string | null;
3316
+ }[];
3317
+ multiplicityOptions?: {
3318
+ uuid: string;
3319
+ rank: number;
3320
+ title: string | null;
3321
+ optionMultiplicity: number;
3322
+ optionPrice: number | null;
3323
+ }[] | undefined;
3324
+ preOrderedQuantity?: number | undefined;
3325
+ }, {
3326
+ name: string;
3327
+ type: {
3328
+ name: string;
3329
+ uuid: string;
3330
+ createdAt: Date;
3331
+ updatedAt: Date;
3332
+ deletedAt: Date | null;
3333
+ rank: number;
3334
+ } | null;
3335
+ uuid: string;
3336
+ country: string | null;
3337
+ createdAt: Date;
3338
+ updatedAt: Date;
3339
+ multiplicity: number;
3340
+ categoryUUID: string;
3341
+ color: string | null;
3342
+ grower: string | null;
3343
+ category: {
3344
+ name: string;
3345
+ status: import("../../..").CategoryStatusEnum;
3346
+ uuid: string;
3347
+ createdAt: Date;
3348
+ updatedAt: Date;
3349
+ deletedAt: Date | null;
3350
+ multiplicity: number | null;
3351
+ isSizeSeparate: boolean;
3352
+ isSaveCategoryName: boolean;
3353
+ } | null;
3354
+ description: string | null;
3355
+ group: string | null;
3356
+ balance: number | null;
3357
+ quantity: number | null;
3358
+ price: number;
3359
+ isOpen: boolean;
3360
+ article: string | null;
3361
+ size: string | null;
3362
+ size2: string | null;
3363
+ size3: string | null;
3364
+ imageUUID: string | null;
3365
+ vat: number | null;
3366
+ image: {
3367
+ name: string;
3368
+ uuid: string;
3369
+ country: string | null;
3370
+ createdAt: Date;
3371
+ updatedAt: Date;
3372
+ deletedAt: Date | null;
3373
+ companyUUID: string;
3374
+ categoryUUID: string | null;
3375
+ color: string | null;
3376
+ vbn: string | null;
3377
+ externalUUID: string | null;
3378
+ productImageUrl: string;
3379
+ grower: string | null;
3380
+ } | null;
3381
+ productUUID: string | null;
3382
+ preOrderCollectionUUID: string;
3383
+ advancedPrice: string | null;
3384
+ salesUnit: import("../../..").SalesUnitEnum | null;
3385
+ multiplicityDescription: string | null;
3386
+ matchingProducts: {
3387
+ name: string;
3388
+ uuid: string;
3389
+ country: string | null;
3390
+ color: string | null;
3391
+ grower: string | null;
3392
+ deliveryDate: Date;
3393
+ size: string | null;
3394
+ }[];
3395
+ isSizeCustomizable?: boolean | undefined;
3396
+ isColorCustomizable?: boolean | undefined;
3397
+ multiplicityOptions?: {
3398
+ uuid: string;
3399
+ rank: number;
3400
+ title: string | null;
3401
+ optionMultiplicity: number;
3402
+ optionPrice: number | null;
3403
+ }[] | undefined;
3404
+ preOrderedQuantity?: number | undefined;
3405
+ }>;
3406
+ category: z.ZodNullable<z.ZodObject<{
3407
+ uuid: z.ZodString;
3408
+ name: z.ZodString;
3409
+ multiplicity: z.ZodNullable<z.ZodNumber>;
3410
+ isSizeSeparate: z.ZodBoolean;
3411
+ isSaveCategoryName: z.ZodBoolean;
3412
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
3413
+ createdAt: z.ZodDate;
3414
+ updatedAt: z.ZodDate;
3415
+ deletedAt: z.ZodNullable<z.ZodDate>;
3416
+ }, "strip", z.ZodTypeAny, {
3417
+ name: string;
3418
+ status: import("../../..").CategoryStatusEnum;
3419
+ uuid: string;
3420
+ createdAt: Date;
3421
+ updatedAt: Date;
3422
+ deletedAt: Date | null;
3423
+ multiplicity: number | null;
3424
+ isSizeSeparate: boolean;
3425
+ isSaveCategoryName: boolean;
3426
+ }, {
3427
+ name: string;
3428
+ status: import("../../..").CategoryStatusEnum;
3429
+ uuid: string;
3430
+ createdAt: Date;
3431
+ updatedAt: Date;
3432
+ deletedAt: Date | null;
3433
+ multiplicity: number | null;
3434
+ isSizeSeparate: boolean;
3435
+ isSaveCategoryName: boolean;
3436
+ }>>;
3437
+ deliveryDate: z.ZodNullable<z.ZodDate>;
3438
+ }, "strip", z.ZodTypeAny, {
3439
+ name: string | null;
3440
+ uuid: string;
3441
+ categoryUUID: string | null;
3442
+ color: string | null;
3443
+ grower: string | null;
3444
+ category: {
3445
+ name: string;
3446
+ status: import("../../..").CategoryStatusEnum;
3447
+ uuid: string;
3448
+ createdAt: Date;
3449
+ updatedAt: Date;
3450
+ deletedAt: Date | null;
3451
+ multiplicity: number | null;
3452
+ isSizeSeparate: boolean;
3453
+ isSaveCategoryName: boolean;
3454
+ } | null;
3455
+ deliveryDate: Date | null;
3456
+ comment: string | null;
3457
+ quantity: number;
3458
+ price: number | null;
3459
+ size: string | null;
3460
+ tag: string | null;
3461
+ preOrderCollectionItemUUID: string | null;
3462
+ preOrderUUID: string;
3463
+ isPurchased: boolean;
3464
+ isReplaceable: boolean;
3465
+ stopPrice: number | null;
3466
+ highAttention: boolean;
3467
+ parentPreOrderProductUUID: string | null;
3468
+ preOrderCollectionItem: {
3469
+ name: string;
3470
+ type: {
3471
+ name: string;
3472
+ uuid: string;
3473
+ createdAt: Date;
3474
+ updatedAt: Date;
3475
+ deletedAt: Date | null;
3476
+ rank: number;
3477
+ } | null;
3478
+ uuid: string;
3479
+ country: string | null;
3480
+ createdAt: Date;
3481
+ updatedAt: Date;
3482
+ multiplicity: number;
3483
+ categoryUUID: string;
3484
+ color: string | null;
3485
+ grower: string | null;
3486
+ category: {
3487
+ name: string;
3488
+ status: import("../../..").CategoryStatusEnum;
3489
+ uuid: string;
3490
+ createdAt: Date;
3491
+ updatedAt: Date;
3492
+ deletedAt: Date | null;
3493
+ multiplicity: number | null;
3494
+ isSizeSeparate: boolean;
3495
+ isSaveCategoryName: boolean;
3496
+ } | null;
3497
+ description: string | null;
3498
+ group: string | null;
3499
+ balance: number | null;
3500
+ quantity: number | null;
3501
+ price: number;
3502
+ isOpen: boolean;
3503
+ article: string | null;
3504
+ size: string | null;
3505
+ size2: string | null;
3506
+ size3: string | null;
3507
+ imageUUID: string | null;
3508
+ vat: number | null;
3509
+ image: {
3510
+ name: string;
3511
+ uuid: string;
3512
+ country: string | null;
3513
+ createdAt: Date;
3514
+ updatedAt: Date;
3515
+ deletedAt: Date | null;
3516
+ companyUUID: string;
3517
+ categoryUUID: string | null;
3518
+ color: string | null;
3519
+ vbn: string | null;
3520
+ externalUUID: string | null;
3521
+ productImageUrl: string;
3522
+ grower: string | null;
3523
+ } | null;
3524
+ productUUID: string | null;
3525
+ preOrderCollectionUUID: string;
3526
+ advancedPrice: string | null;
3527
+ isSizeCustomizable: boolean;
3528
+ isColorCustomizable: boolean;
3529
+ salesUnit: import("../../..").SalesUnitEnum | null;
3530
+ multiplicityDescription: string | null;
3531
+ matchingProducts: {
3532
+ name: string;
3533
+ uuid: string;
3534
+ country: string | null;
3535
+ color: string | null;
3536
+ grower: string | null;
3537
+ deliveryDate: Date;
3538
+ size: string | null;
3539
+ }[];
3540
+ multiplicityOptions?: {
3541
+ uuid: string;
3542
+ rank: number;
3543
+ title: string | null;
3544
+ optionMultiplicity: number;
3545
+ optionPrice: number | null;
3546
+ }[] | undefined;
3547
+ preOrderedQuantity?: number | undefined;
3548
+ };
3549
+ multiplicityOptionUUID?: string | null | undefined;
3550
+ matchingConfig?: {
3551
+ matchByName: boolean;
3552
+ matchByCategory: boolean;
3553
+ matchByColor: boolean;
3554
+ matchBySize: boolean;
3555
+ matchByGrower: boolean;
3556
+ } | null | undefined;
3557
+ }, {
3558
+ name: string | null;
3559
+ uuid: string;
3560
+ categoryUUID: string | null;
3561
+ color: string | null;
3562
+ grower: string | null;
3563
+ category: {
3564
+ name: string;
3565
+ status: import("../../..").CategoryStatusEnum;
3566
+ uuid: string;
3567
+ createdAt: Date;
3568
+ updatedAt: Date;
3569
+ deletedAt: Date | null;
3570
+ multiplicity: number | null;
3571
+ isSizeSeparate: boolean;
3572
+ isSaveCategoryName: boolean;
3573
+ } | null;
3574
+ deliveryDate: Date | null;
3575
+ comment: string | null;
3576
+ quantity: number;
3577
+ price: number | null;
3578
+ size: string | null;
3579
+ tag: string | null;
3580
+ preOrderCollectionItemUUID: string | null;
3581
+ preOrderUUID: string;
3582
+ isPurchased: boolean;
3583
+ isReplaceable: boolean;
3584
+ stopPrice: number | null;
3585
+ highAttention: boolean;
3586
+ parentPreOrderProductUUID: string | null;
3587
+ preOrderCollectionItem: {
3588
+ name: string;
3589
+ type: {
3590
+ name: string;
3591
+ uuid: string;
3592
+ createdAt: Date;
3593
+ updatedAt: Date;
3594
+ deletedAt: Date | null;
3595
+ rank: number;
3596
+ } | null;
3597
+ uuid: string;
3598
+ country: string | null;
3599
+ createdAt: Date;
3600
+ updatedAt: Date;
3601
+ multiplicity: number;
3602
+ categoryUUID: string;
3603
+ color: string | null;
3604
+ grower: string | null;
3605
+ category: {
3606
+ name: string;
3607
+ status: import("../../..").CategoryStatusEnum;
3608
+ uuid: string;
3609
+ createdAt: Date;
3610
+ updatedAt: Date;
3611
+ deletedAt: Date | null;
3612
+ multiplicity: number | null;
3613
+ isSizeSeparate: boolean;
3614
+ isSaveCategoryName: boolean;
3615
+ } | null;
3616
+ description: string | null;
3617
+ group: string | null;
3618
+ balance: number | null;
3619
+ quantity: number | null;
3620
+ price: number;
3621
+ isOpen: boolean;
3622
+ article: string | null;
3623
+ size: string | null;
3624
+ size2: string | null;
3625
+ size3: string | null;
3626
+ imageUUID: string | null;
3627
+ vat: number | null;
3628
+ image: {
3629
+ name: string;
3630
+ uuid: string;
3631
+ country: string | null;
3632
+ createdAt: Date;
3633
+ updatedAt: Date;
3634
+ deletedAt: Date | null;
3635
+ companyUUID: string;
3636
+ categoryUUID: string | null;
3637
+ color: string | null;
3638
+ vbn: string | null;
3639
+ externalUUID: string | null;
3640
+ productImageUrl: string;
3641
+ grower: string | null;
3642
+ } | null;
3643
+ productUUID: string | null;
3644
+ preOrderCollectionUUID: string;
3645
+ advancedPrice: string | null;
3646
+ salesUnit: import("../../..").SalesUnitEnum | null;
3647
+ multiplicityDescription: string | null;
3648
+ matchingProducts: {
3649
+ name: string;
3650
+ uuid: string;
3651
+ country: string | null;
3652
+ color: string | null;
3653
+ grower: string | null;
3654
+ deliveryDate: Date;
3655
+ size: string | null;
3656
+ }[];
3657
+ isSizeCustomizable?: boolean | undefined;
3658
+ isColorCustomizable?: boolean | undefined;
3659
+ multiplicityOptions?: {
3660
+ uuid: string;
3661
+ rank: number;
3662
+ title: string | null;
3663
+ optionMultiplicity: number;
3664
+ optionPrice: number | null;
3665
+ }[] | undefined;
3666
+ preOrderedQuantity?: number | undefined;
3667
+ };
3668
+ multiplicityOptionUUID?: string | null | undefined;
3669
+ matchingConfig?: {
3670
+ matchByName: boolean;
3671
+ matchByCategory: boolean;
3672
+ matchByColor: boolean;
3673
+ matchBySize: boolean;
3674
+ matchByGrower: boolean;
3675
+ } | null | undefined;
3676
+ }>;
3677
+ matches: z.ZodArray<z.ZodObject<{
3678
+ collectionItem: z.ZodObject<{
3679
+ uuid: z.ZodString;
3680
+ productUUID: z.ZodNullable<z.ZodString>;
3681
+ categoryUUID: z.ZodString;
3682
+ isOpen: z.ZodBoolean;
3683
+ preOrderCollectionUUID: z.ZodString;
3684
+ name: z.ZodString;
3685
+ multiplicity: z.ZodNumber;
3686
+ quantity: z.ZodNullable<z.ZodNumber>;
3687
+ balance: z.ZodNullable<z.ZodNumber>;
3688
+ imageUUID: z.ZodNullable<z.ZodString>;
3689
+ price: z.ZodNumber;
3690
+ advancedPrice: z.ZodNullable<z.ZodString>;
3691
+ grower: z.ZodNullable<z.ZodString>;
3692
+ size: z.ZodNullable<z.ZodString>;
3693
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
3694
+ size2: z.ZodNullable<z.ZodString>;
3695
+ size3: z.ZodNullable<z.ZodString>;
3696
+ color: z.ZodNullable<z.ZodString>;
3697
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
3698
+ country: z.ZodNullable<z.ZodString>;
3699
+ vat: z.ZodNullable<z.ZodNumber>;
3700
+ description: z.ZodNullable<z.ZodString>;
3701
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").SalesUnitEnum>>;
3702
+ article: z.ZodNullable<z.ZodString>;
3703
+ group: z.ZodNullable<z.ZodString>;
3704
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
3705
+ createdAt: z.ZodDate;
3706
+ updatedAt: z.ZodDate;
3707
+ }, "strip", z.ZodTypeAny, {
3708
+ name: string;
3709
+ uuid: string;
3710
+ country: string | null;
3711
+ createdAt: Date;
3712
+ updatedAt: Date;
3713
+ multiplicity: number;
3714
+ categoryUUID: string;
3715
+ color: string | null;
3716
+ grower: string | null;
3717
+ description: string | null;
3718
+ group: string | null;
3719
+ balance: number | null;
3720
+ quantity: number | null;
3721
+ price: number;
3722
+ isOpen: boolean;
3723
+ article: string | null;
3724
+ size: string | null;
3725
+ size2: string | null;
3726
+ size3: string | null;
3727
+ imageUUID: string | null;
3728
+ vat: number | null;
3729
+ productUUID: string | null;
3730
+ preOrderCollectionUUID: string;
3731
+ advancedPrice: string | null;
3732
+ isSizeCustomizable: boolean;
3733
+ isColorCustomizable: boolean;
3734
+ salesUnit: import("../../..").SalesUnitEnum | null;
3735
+ multiplicityDescription: string | null;
3736
+ }, {
3737
+ name: string;
3738
+ uuid: string;
3739
+ country: string | null;
3740
+ createdAt: Date;
3741
+ updatedAt: Date;
3742
+ multiplicity: number;
3743
+ categoryUUID: string;
3744
+ color: string | null;
3745
+ grower: string | null;
3746
+ description: string | null;
3747
+ group: string | null;
3748
+ balance: number | null;
3749
+ quantity: number | null;
3750
+ price: number;
3751
+ isOpen: boolean;
3752
+ article: string | null;
3753
+ size: string | null;
3754
+ size2: string | null;
3755
+ size3: string | null;
3756
+ imageUUID: string | null;
3757
+ vat: number | null;
3758
+ productUUID: string | null;
3759
+ preOrderCollectionUUID: string;
3760
+ advancedPrice: string | null;
3761
+ salesUnit: import("../../..").SalesUnitEnum | null;
3762
+ multiplicityDescription: string | null;
3763
+ isSizeCustomizable?: boolean | undefined;
3764
+ isColorCustomizable?: boolean | undefined;
3765
+ }>;
3766
+ quantity: z.ZodNumber;
3767
+ }, "strip", z.ZodTypeAny, {
3768
+ quantity: number;
3769
+ collectionItem: {
3770
+ name: string;
3771
+ uuid: string;
3772
+ country: string | null;
3773
+ createdAt: Date;
3774
+ updatedAt: Date;
3775
+ multiplicity: number;
3776
+ categoryUUID: string;
3777
+ color: string | null;
3778
+ grower: string | null;
3779
+ description: string | null;
3780
+ group: string | null;
3781
+ balance: number | null;
3782
+ quantity: number | null;
3783
+ price: number;
3784
+ isOpen: boolean;
3785
+ article: string | null;
3786
+ size: string | null;
3787
+ size2: string | null;
3788
+ size3: string | null;
3789
+ imageUUID: string | null;
3790
+ vat: number | null;
3791
+ productUUID: string | null;
3792
+ preOrderCollectionUUID: string;
3793
+ advancedPrice: string | null;
3794
+ isSizeCustomizable: boolean;
3795
+ isColorCustomizable: boolean;
3796
+ salesUnit: import("../../..").SalesUnitEnum | null;
3797
+ multiplicityDescription: string | null;
3798
+ };
3799
+ }, {
3800
+ quantity: number;
3801
+ collectionItem: {
3802
+ name: string;
3803
+ uuid: string;
3804
+ country: string | null;
3805
+ createdAt: Date;
3806
+ updatedAt: Date;
3807
+ multiplicity: number;
3808
+ categoryUUID: string;
3809
+ color: string | null;
3810
+ grower: string | null;
3811
+ description: string | null;
3812
+ group: string | null;
3813
+ balance: number | null;
3814
+ quantity: number | null;
3815
+ price: number;
3816
+ isOpen: boolean;
3817
+ article: string | null;
3818
+ size: string | null;
3819
+ size2: string | null;
3820
+ size3: string | null;
3821
+ imageUUID: string | null;
3822
+ vat: number | null;
3823
+ productUUID: string | null;
3824
+ preOrderCollectionUUID: string;
3825
+ advancedPrice: string | null;
3826
+ salesUnit: import("../../..").SalesUnitEnum | null;
3827
+ multiplicityDescription: string | null;
3828
+ isSizeCustomizable?: boolean | undefined;
3829
+ isColorCustomizable?: boolean | undefined;
3830
+ };
3831
+ }>, "many">;
3832
+ remainingQuantity: z.ZodNumber;
3833
+ }, "strip", z.ZodTypeAny, {
3834
+ sourceProduct: {
3835
+ name: string | null;
3836
+ uuid: string;
3837
+ categoryUUID: string | null;
3838
+ color: string | null;
3839
+ grower: string | null;
3840
+ category: {
3841
+ name: string;
3842
+ status: import("../../..").CategoryStatusEnum;
3843
+ uuid: string;
3844
+ createdAt: Date;
3845
+ updatedAt: Date;
3846
+ deletedAt: Date | null;
3847
+ multiplicity: number | null;
3848
+ isSizeSeparate: boolean;
3849
+ isSaveCategoryName: boolean;
3850
+ } | null;
3851
+ deliveryDate: Date | null;
3852
+ comment: string | null;
3853
+ quantity: number;
3854
+ price: number | null;
3855
+ size: string | null;
3856
+ tag: string | null;
3857
+ preOrderCollectionItemUUID: string | null;
3858
+ preOrderUUID: string;
3859
+ isPurchased: boolean;
3860
+ isReplaceable: boolean;
3861
+ stopPrice: number | null;
3862
+ highAttention: boolean;
3863
+ parentPreOrderProductUUID: string | null;
3864
+ preOrderCollectionItem: {
3865
+ name: string;
3866
+ type: {
3867
+ name: string;
3868
+ uuid: string;
3869
+ createdAt: Date;
3870
+ updatedAt: Date;
3871
+ deletedAt: Date | null;
3872
+ rank: number;
3873
+ } | null;
3874
+ uuid: string;
3875
+ country: string | null;
3876
+ createdAt: Date;
3877
+ updatedAt: Date;
3878
+ multiplicity: number;
3879
+ categoryUUID: string;
3880
+ color: string | null;
3881
+ grower: string | null;
3882
+ category: {
3883
+ name: string;
3884
+ status: import("../../..").CategoryStatusEnum;
3885
+ uuid: string;
3886
+ createdAt: Date;
3887
+ updatedAt: Date;
3888
+ deletedAt: Date | null;
3889
+ multiplicity: number | null;
3890
+ isSizeSeparate: boolean;
3891
+ isSaveCategoryName: boolean;
3892
+ } | null;
3893
+ description: string | null;
3894
+ group: string | null;
3895
+ balance: number | null;
3896
+ quantity: number | null;
3897
+ price: number;
3898
+ isOpen: boolean;
3899
+ article: string | null;
3900
+ size: string | null;
3901
+ size2: string | null;
3902
+ size3: string | null;
3903
+ imageUUID: string | null;
3904
+ vat: number | null;
3905
+ image: {
3906
+ name: string;
3907
+ uuid: string;
3908
+ country: string | null;
3909
+ createdAt: Date;
3910
+ updatedAt: Date;
3911
+ deletedAt: Date | null;
3912
+ companyUUID: string;
3913
+ categoryUUID: string | null;
3914
+ color: string | null;
3915
+ vbn: string | null;
3916
+ externalUUID: string | null;
3917
+ productImageUrl: string;
3918
+ grower: string | null;
3919
+ } | null;
3920
+ productUUID: string | null;
3921
+ preOrderCollectionUUID: string;
3922
+ advancedPrice: string | null;
3923
+ isSizeCustomizable: boolean;
3924
+ isColorCustomizable: boolean;
3925
+ salesUnit: import("../../..").SalesUnitEnum | null;
3926
+ multiplicityDescription: string | null;
3927
+ matchingProducts: {
3928
+ name: string;
3929
+ uuid: string;
3930
+ country: string | null;
3931
+ color: string | null;
3932
+ grower: string | null;
3933
+ deliveryDate: Date;
3934
+ size: string | null;
3935
+ }[];
3936
+ multiplicityOptions?: {
3937
+ uuid: string;
3938
+ rank: number;
3939
+ title: string | null;
3940
+ optionMultiplicity: number;
3941
+ optionPrice: number | null;
3942
+ }[] | undefined;
3943
+ preOrderedQuantity?: number | undefined;
3944
+ };
3945
+ multiplicityOptionUUID?: string | null | undefined;
3946
+ matchingConfig?: {
3947
+ matchByName: boolean;
3948
+ matchByCategory: boolean;
3949
+ matchByColor: boolean;
3950
+ matchBySize: boolean;
3951
+ matchByGrower: boolean;
3952
+ } | null | undefined;
3953
+ };
3954
+ matches: {
3955
+ quantity: number;
3956
+ collectionItem: {
3957
+ name: string;
3958
+ uuid: string;
3959
+ country: string | null;
3960
+ createdAt: Date;
3961
+ updatedAt: Date;
3962
+ multiplicity: number;
3963
+ categoryUUID: string;
3964
+ color: string | null;
3965
+ grower: string | null;
3966
+ description: string | null;
3967
+ group: string | null;
3968
+ balance: number | null;
3969
+ quantity: number | null;
3970
+ price: number;
3971
+ isOpen: boolean;
3972
+ article: string | null;
3973
+ size: string | null;
3974
+ size2: string | null;
3975
+ size3: string | null;
3976
+ imageUUID: string | null;
3977
+ vat: number | null;
3978
+ productUUID: string | null;
3979
+ preOrderCollectionUUID: string;
3980
+ advancedPrice: string | null;
3981
+ isSizeCustomizable: boolean;
3982
+ isColorCustomizable: boolean;
3983
+ salesUnit: import("../../..").SalesUnitEnum | null;
3984
+ multiplicityDescription: string | null;
3985
+ };
3986
+ }[];
3987
+ remainingQuantity: number;
3988
+ }, {
3989
+ sourceProduct: {
3990
+ name: string | null;
3991
+ uuid: string;
3992
+ categoryUUID: string | null;
3993
+ color: string | null;
3994
+ grower: string | null;
3995
+ category: {
3996
+ name: string;
3997
+ status: import("../../..").CategoryStatusEnum;
3998
+ uuid: string;
3999
+ createdAt: Date;
4000
+ updatedAt: Date;
4001
+ deletedAt: Date | null;
4002
+ multiplicity: number | null;
4003
+ isSizeSeparate: boolean;
4004
+ isSaveCategoryName: boolean;
4005
+ } | null;
4006
+ deliveryDate: Date | null;
4007
+ comment: string | null;
4008
+ quantity: number;
4009
+ price: number | null;
4010
+ size: string | null;
4011
+ tag: string | null;
4012
+ preOrderCollectionItemUUID: string | null;
4013
+ preOrderUUID: string;
4014
+ isPurchased: boolean;
4015
+ isReplaceable: boolean;
4016
+ stopPrice: number | null;
4017
+ highAttention: boolean;
4018
+ parentPreOrderProductUUID: string | null;
4019
+ preOrderCollectionItem: {
4020
+ name: string;
4021
+ type: {
4022
+ name: string;
4023
+ uuid: string;
4024
+ createdAt: Date;
4025
+ updatedAt: Date;
4026
+ deletedAt: Date | null;
4027
+ rank: number;
4028
+ } | null;
4029
+ uuid: string;
4030
+ country: string | null;
4031
+ createdAt: Date;
4032
+ updatedAt: Date;
4033
+ multiplicity: number;
4034
+ categoryUUID: string;
4035
+ color: string | null;
4036
+ grower: string | null;
4037
+ category: {
4038
+ name: string;
4039
+ status: import("../../..").CategoryStatusEnum;
4040
+ uuid: string;
4041
+ createdAt: Date;
4042
+ updatedAt: Date;
4043
+ deletedAt: Date | null;
4044
+ multiplicity: number | null;
4045
+ isSizeSeparate: boolean;
4046
+ isSaveCategoryName: boolean;
4047
+ } | null;
4048
+ description: string | null;
4049
+ group: string | null;
4050
+ balance: number | null;
4051
+ quantity: number | null;
4052
+ price: number;
4053
+ isOpen: boolean;
4054
+ article: string | null;
4055
+ size: string | null;
4056
+ size2: string | null;
4057
+ size3: string | null;
4058
+ imageUUID: string | null;
4059
+ vat: number | null;
4060
+ image: {
4061
+ name: string;
4062
+ uuid: string;
4063
+ country: string | null;
4064
+ createdAt: Date;
4065
+ updatedAt: Date;
4066
+ deletedAt: Date | null;
4067
+ companyUUID: string;
4068
+ categoryUUID: string | null;
4069
+ color: string | null;
4070
+ vbn: string | null;
4071
+ externalUUID: string | null;
4072
+ productImageUrl: string;
4073
+ grower: string | null;
4074
+ } | null;
4075
+ productUUID: string | null;
4076
+ preOrderCollectionUUID: string;
4077
+ advancedPrice: string | null;
4078
+ salesUnit: import("../../..").SalesUnitEnum | null;
4079
+ multiplicityDescription: string | null;
4080
+ matchingProducts: {
4081
+ name: string;
4082
+ uuid: string;
4083
+ country: string | null;
4084
+ color: string | null;
4085
+ grower: string | null;
4086
+ deliveryDate: Date;
4087
+ size: string | null;
4088
+ }[];
4089
+ isSizeCustomizable?: boolean | undefined;
4090
+ isColorCustomizable?: boolean | undefined;
4091
+ multiplicityOptions?: {
4092
+ uuid: string;
4093
+ rank: number;
4094
+ title: string | null;
4095
+ optionMultiplicity: number;
4096
+ optionPrice: number | null;
4097
+ }[] | undefined;
4098
+ preOrderedQuantity?: number | undefined;
4099
+ };
4100
+ multiplicityOptionUUID?: string | null | undefined;
4101
+ matchingConfig?: {
4102
+ matchByName: boolean;
4103
+ matchByCategory: boolean;
4104
+ matchByColor: boolean;
4105
+ matchBySize: boolean;
4106
+ matchByGrower: boolean;
4107
+ } | null | undefined;
4108
+ };
4109
+ matches: {
4110
+ quantity: number;
4111
+ collectionItem: {
4112
+ name: string;
4113
+ uuid: string;
4114
+ country: string | null;
4115
+ createdAt: Date;
4116
+ updatedAt: Date;
4117
+ multiplicity: number;
4118
+ categoryUUID: string;
4119
+ color: string | null;
4120
+ grower: string | null;
4121
+ description: string | null;
4122
+ group: string | null;
4123
+ balance: number | null;
4124
+ quantity: number | null;
4125
+ price: number;
4126
+ isOpen: boolean;
4127
+ article: string | null;
4128
+ size: string | null;
4129
+ size2: string | null;
4130
+ size3: string | null;
4131
+ imageUUID: string | null;
4132
+ vat: number | null;
4133
+ productUUID: string | null;
4134
+ preOrderCollectionUUID: string;
4135
+ advancedPrice: string | null;
4136
+ salesUnit: import("../../..").SalesUnitEnum | null;
4137
+ multiplicityDescription: string | null;
4138
+ isSizeCustomizable?: boolean | undefined;
4139
+ isColorCustomizable?: boolean | undefined;
4140
+ };
4141
+ }[];
4142
+ remainingQuantity: number;
4143
+ }>>;
4144
+ warnings: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
4145
+ }, "strip", z.ZodTypeAny, {
4146
+ preOrder: {
4147
+ status: import("../../..").PreOrderStatusEnum;
4148
+ uuid: string;
4149
+ createdAt: Date;
4150
+ comment: string | null;
4151
+ clientUUID: string;
4152
+ branchUUID: string | null;
4153
+ tag: string | null;
4154
+ client: {
4155
+ email: string | null;
4156
+ phone: string | null;
4157
+ name: string;
4158
+ code: string | null;
4159
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
4160
+ uuid: string;
4161
+ contactName: string | null;
4162
+ address: string | null;
4163
+ city: string | null;
4164
+ createdAt: Date;
4165
+ updatedAt: Date;
4166
+ deletedAt: Date | null;
4167
+ companyUUID: string;
4168
+ isCommon: boolean;
4169
+ contractNumber: string | null;
4170
+ contractDate: Date | null;
4171
+ group: string | null;
4172
+ marking: string | null;
4173
+ alwaysRequiresDelivery: boolean;
4174
+ additionalPhone: string | null;
4175
+ comment: string | null;
4176
+ balance: number;
4177
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
4178
+ responsibleUserUUID: string | null;
4179
+ responsibleSince: Date | null;
4180
+ };
4181
+ branch: {
4182
+ name: string;
4183
+ uuid: string;
4184
+ contactName: string | null;
4185
+ contactPhone: string | null;
4186
+ address: string | null;
4187
+ city: string | null;
4188
+ region: string | null;
4189
+ country: string | null;
4190
+ clientId: string;
4191
+ createdAt: Date;
4192
+ updatedAt: Date;
4193
+ } | null;
4194
+ preOrderCollection: {
4195
+ status: import("../../..").PreOrderCollectionStatusEnum;
4196
+ uuid: string;
4197
+ deliveryDate: Date;
4198
+ description: string;
4199
+ label: string | null;
4200
+ availableUntil: Date;
4201
+ imageUrl: string | null;
4202
+ hideItemOptions: boolean;
4203
+ } | null;
4204
+ preOrderNum: number;
4205
+ };
4206
+ mappings: Record<string, {
4207
+ sourceProduct: {
4208
+ name: string | null;
4209
+ uuid: string;
4210
+ categoryUUID: string | null;
4211
+ color: string | null;
4212
+ grower: string | null;
4213
+ category: {
4214
+ name: string;
4215
+ status: import("../../..").CategoryStatusEnum;
4216
+ uuid: string;
4217
+ createdAt: Date;
4218
+ updatedAt: Date;
4219
+ deletedAt: Date | null;
4220
+ multiplicity: number | null;
4221
+ isSizeSeparate: boolean;
4222
+ isSaveCategoryName: boolean;
4223
+ } | null;
4224
+ deliveryDate: Date | null;
4225
+ comment: string | null;
4226
+ quantity: number;
4227
+ price: number | null;
4228
+ size: string | null;
4229
+ tag: string | null;
4230
+ preOrderCollectionItemUUID: string | null;
4231
+ preOrderUUID: string;
4232
+ isPurchased: boolean;
4233
+ isReplaceable: boolean;
4234
+ stopPrice: number | null;
4235
+ highAttention: boolean;
4236
+ parentPreOrderProductUUID: string | null;
4237
+ preOrderCollectionItem: {
4238
+ name: string;
4239
+ type: {
4240
+ name: string;
4241
+ uuid: string;
4242
+ createdAt: Date;
4243
+ updatedAt: Date;
4244
+ deletedAt: Date | null;
4245
+ rank: number;
4246
+ } | null;
4247
+ uuid: string;
4248
+ country: string | null;
4249
+ createdAt: Date;
4250
+ updatedAt: Date;
4251
+ multiplicity: number;
4252
+ categoryUUID: string;
4253
+ color: string | null;
4254
+ grower: string | null;
4255
+ category: {
4256
+ name: string;
4257
+ status: import("../../..").CategoryStatusEnum;
4258
+ uuid: string;
4259
+ createdAt: Date;
4260
+ updatedAt: Date;
4261
+ deletedAt: Date | null;
4262
+ multiplicity: number | null;
4263
+ isSizeSeparate: boolean;
4264
+ isSaveCategoryName: boolean;
4265
+ } | null;
4266
+ description: string | null;
4267
+ group: string | null;
4268
+ balance: number | null;
4269
+ quantity: number | null;
4270
+ price: number;
4271
+ isOpen: boolean;
4272
+ article: string | null;
4273
+ size: string | null;
4274
+ size2: string | null;
4275
+ size3: string | null;
4276
+ imageUUID: string | null;
4277
+ vat: number | null;
4278
+ image: {
4279
+ name: string;
4280
+ uuid: string;
4281
+ country: string | null;
4282
+ createdAt: Date;
4283
+ updatedAt: Date;
4284
+ deletedAt: Date | null;
4285
+ companyUUID: string;
4286
+ categoryUUID: string | null;
4287
+ color: string | null;
4288
+ vbn: string | null;
4289
+ externalUUID: string | null;
4290
+ productImageUrl: string;
4291
+ grower: string | null;
4292
+ } | null;
4293
+ productUUID: string | null;
4294
+ preOrderCollectionUUID: string;
4295
+ advancedPrice: string | null;
4296
+ isSizeCustomizable: boolean;
4297
+ isColorCustomizable: boolean;
4298
+ salesUnit: import("../../..").SalesUnitEnum | null;
4299
+ multiplicityDescription: string | null;
4300
+ matchingProducts: {
4301
+ name: string;
4302
+ uuid: string;
4303
+ country: string | null;
4304
+ color: string | null;
4305
+ grower: string | null;
4306
+ deliveryDate: Date;
4307
+ size: string | null;
4308
+ }[];
4309
+ multiplicityOptions?: {
4310
+ uuid: string;
4311
+ rank: number;
4312
+ title: string | null;
4313
+ optionMultiplicity: number;
4314
+ optionPrice: number | null;
4315
+ }[] | undefined;
4316
+ preOrderedQuantity?: number | undefined;
4317
+ };
4318
+ multiplicityOptionUUID?: string | null | undefined;
4319
+ matchingConfig?: {
4320
+ matchByName: boolean;
4321
+ matchByCategory: boolean;
4322
+ matchByColor: boolean;
4323
+ matchBySize: boolean;
4324
+ matchByGrower: boolean;
4325
+ } | null | undefined;
4326
+ };
4327
+ matches: {
4328
+ quantity: number;
4329
+ collectionItem: {
4330
+ name: string;
4331
+ uuid: string;
4332
+ country: string | null;
4333
+ createdAt: Date;
4334
+ updatedAt: Date;
4335
+ multiplicity: number;
4336
+ categoryUUID: string;
4337
+ color: string | null;
4338
+ grower: string | null;
4339
+ description: string | null;
4340
+ group: string | null;
4341
+ balance: number | null;
4342
+ quantity: number | null;
4343
+ price: number;
4344
+ isOpen: boolean;
4345
+ article: string | null;
4346
+ size: string | null;
4347
+ size2: string | null;
4348
+ size3: string | null;
4349
+ imageUUID: string | null;
4350
+ vat: number | null;
4351
+ productUUID: string | null;
4352
+ preOrderCollectionUUID: string;
4353
+ advancedPrice: string | null;
4354
+ isSizeCustomizable: boolean;
4355
+ isColorCustomizable: boolean;
4356
+ salesUnit: import("../../..").SalesUnitEnum | null;
4357
+ multiplicityDescription: string | null;
4358
+ };
4359
+ }[];
4360
+ remainingQuantity: number;
4361
+ }>;
4362
+ warnings: Record<string, string[]>;
4363
+ }, {
4364
+ preOrder: {
4365
+ status: import("../../..").PreOrderStatusEnum;
4366
+ uuid: string;
4367
+ createdAt: Date;
4368
+ comment: string | null;
4369
+ clientUUID: string;
4370
+ branchUUID: string | null;
4371
+ tag: string | null;
4372
+ client: {
4373
+ email: string | null;
4374
+ phone: string | null;
4375
+ name: string;
4376
+ code: string | null;
4377
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
4378
+ uuid: string;
4379
+ contactName: string | null;
4380
+ address: string | null;
4381
+ city: string | null;
4382
+ createdAt: Date;
4383
+ updatedAt: Date;
4384
+ deletedAt: Date | null;
4385
+ companyUUID: string;
4386
+ isCommon: boolean;
4387
+ contractNumber: string | null;
4388
+ contractDate: Date | null;
4389
+ group: string | null;
4390
+ marking: string | null;
4391
+ alwaysRequiresDelivery: boolean;
4392
+ additionalPhone: string | null;
4393
+ comment: string | null;
4394
+ balance: number;
4395
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
4396
+ responsibleUserUUID: string | null;
4397
+ responsibleSince: Date | null;
4398
+ };
4399
+ branch: {
4400
+ name: string;
4401
+ uuid: string;
4402
+ contactName: string | null;
4403
+ contactPhone: string | null;
4404
+ address: string | null;
4405
+ city: string | null;
4406
+ region: string | null;
4407
+ country: string | null;
4408
+ clientId: string;
4409
+ createdAt: Date;
4410
+ updatedAt: Date;
4411
+ } | null;
4412
+ preOrderCollection: {
4413
+ status: import("../../..").PreOrderCollectionStatusEnum;
4414
+ uuid: string;
4415
+ deliveryDate: Date;
4416
+ description: string;
4417
+ label: string | null;
4418
+ availableUntil: Date;
4419
+ imageUrl: string | null;
4420
+ hideItemOptions: boolean;
4421
+ } | null;
4422
+ preOrderNum: number;
4423
+ };
4424
+ mappings: Record<string, {
4425
+ sourceProduct: {
4426
+ name: string | null;
4427
+ uuid: string;
4428
+ categoryUUID: string | null;
4429
+ color: string | null;
4430
+ grower: string | null;
4431
+ category: {
4432
+ name: string;
4433
+ status: import("../../..").CategoryStatusEnum;
4434
+ uuid: string;
4435
+ createdAt: Date;
4436
+ updatedAt: Date;
4437
+ deletedAt: Date | null;
4438
+ multiplicity: number | null;
4439
+ isSizeSeparate: boolean;
4440
+ isSaveCategoryName: boolean;
4441
+ } | null;
4442
+ deliveryDate: Date | null;
4443
+ comment: string | null;
4444
+ quantity: number;
4445
+ price: number | null;
4446
+ size: string | null;
4447
+ tag: string | null;
4448
+ preOrderCollectionItemUUID: string | null;
4449
+ preOrderUUID: string;
4450
+ isPurchased: boolean;
4451
+ isReplaceable: boolean;
4452
+ stopPrice: number | null;
4453
+ highAttention: boolean;
4454
+ parentPreOrderProductUUID: string | null;
4455
+ preOrderCollectionItem: {
4456
+ name: string;
4457
+ type: {
4458
+ name: string;
4459
+ uuid: string;
4460
+ createdAt: Date;
4461
+ updatedAt: Date;
4462
+ deletedAt: Date | null;
4463
+ rank: number;
4464
+ } | null;
4465
+ uuid: string;
4466
+ country: string | null;
4467
+ createdAt: Date;
4468
+ updatedAt: Date;
4469
+ multiplicity: number;
4470
+ categoryUUID: string;
4471
+ color: string | null;
4472
+ grower: string | null;
4473
+ category: {
4474
+ name: string;
4475
+ status: import("../../..").CategoryStatusEnum;
4476
+ uuid: string;
4477
+ createdAt: Date;
4478
+ updatedAt: Date;
4479
+ deletedAt: Date | null;
4480
+ multiplicity: number | null;
4481
+ isSizeSeparate: boolean;
4482
+ isSaveCategoryName: boolean;
4483
+ } | null;
4484
+ description: string | null;
4485
+ group: string | null;
4486
+ balance: number | null;
4487
+ quantity: number | null;
4488
+ price: number;
4489
+ isOpen: boolean;
4490
+ article: string | null;
4491
+ size: string | null;
4492
+ size2: string | null;
4493
+ size3: string | null;
4494
+ imageUUID: string | null;
4495
+ vat: number | null;
4496
+ image: {
4497
+ name: string;
4498
+ uuid: string;
4499
+ country: string | null;
4500
+ createdAt: Date;
4501
+ updatedAt: Date;
4502
+ deletedAt: Date | null;
4503
+ companyUUID: string;
4504
+ categoryUUID: string | null;
4505
+ color: string | null;
4506
+ vbn: string | null;
4507
+ externalUUID: string | null;
4508
+ productImageUrl: string;
4509
+ grower: string | null;
4510
+ } | null;
4511
+ productUUID: string | null;
4512
+ preOrderCollectionUUID: string;
4513
+ advancedPrice: string | null;
4514
+ salesUnit: import("../../..").SalesUnitEnum | null;
4515
+ multiplicityDescription: string | null;
4516
+ matchingProducts: {
4517
+ name: string;
4518
+ uuid: string;
4519
+ country: string | null;
4520
+ color: string | null;
4521
+ grower: string | null;
4522
+ deliveryDate: Date;
4523
+ size: string | null;
4524
+ }[];
4525
+ isSizeCustomizable?: boolean | undefined;
4526
+ isColorCustomizable?: boolean | undefined;
4527
+ multiplicityOptions?: {
4528
+ uuid: string;
4529
+ rank: number;
4530
+ title: string | null;
4531
+ optionMultiplicity: number;
4532
+ optionPrice: number | null;
4533
+ }[] | undefined;
4534
+ preOrderedQuantity?: number | undefined;
4535
+ };
4536
+ multiplicityOptionUUID?: string | null | undefined;
4537
+ matchingConfig?: {
4538
+ matchByName: boolean;
4539
+ matchByCategory: boolean;
4540
+ matchByColor: boolean;
4541
+ matchBySize: boolean;
4542
+ matchByGrower: boolean;
4543
+ } | null | undefined;
4544
+ };
4545
+ matches: {
4546
+ quantity: number;
4547
+ collectionItem: {
4548
+ name: string;
4549
+ uuid: string;
4550
+ country: string | null;
4551
+ createdAt: Date;
4552
+ updatedAt: Date;
4553
+ multiplicity: number;
4554
+ categoryUUID: string;
4555
+ color: string | null;
4556
+ grower: string | null;
4557
+ description: string | null;
4558
+ group: string | null;
4559
+ balance: number | null;
4560
+ quantity: number | null;
4561
+ price: number;
4562
+ isOpen: boolean;
4563
+ article: string | null;
4564
+ size: string | null;
4565
+ size2: string | null;
4566
+ size3: string | null;
4567
+ imageUUID: string | null;
4568
+ vat: number | null;
4569
+ productUUID: string | null;
4570
+ preOrderCollectionUUID: string;
4571
+ advancedPrice: string | null;
4572
+ salesUnit: import("../../..").SalesUnitEnum | null;
4573
+ multiplicityDescription: string | null;
4574
+ isSizeCustomizable?: boolean | undefined;
4575
+ isColorCustomizable?: boolean | undefined;
4576
+ };
4577
+ }[];
4578
+ remainingQuantity: number;
4579
+ }>;
4580
+ warnings: Record<string, string[]>;
4581
+ }>;
4582
+ }