@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,3665 @@
1
+ import { z } from 'zod';
2
+ export declare namespace AnalyzeCreateOrdersFromPreOrdersContractCommand {
3
+ const RequestSchema: z.ZodObject<{
4
+ preOrderUUIDs: z.ZodArray<z.ZodString, "many">;
5
+ consignmentUUIDs: z.ZodArray<z.ZodString, "many">;
6
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7
+ matchByName: z.ZodBoolean;
8
+ matchByCategory: z.ZodBoolean;
9
+ matchByColor: z.ZodBoolean;
10
+ matchBySize: z.ZodBoolean;
11
+ matchByGrower: z.ZodBoolean;
12
+ }, "strip", z.ZodTypeAny, {
13
+ matchByName: boolean;
14
+ matchByCategory: boolean;
15
+ matchByColor: boolean;
16
+ matchBySize: boolean;
17
+ matchByGrower: boolean;
18
+ }, {
19
+ matchByName: boolean;
20
+ matchByCategory: boolean;
21
+ matchByColor: boolean;
22
+ matchBySize: boolean;
23
+ matchByGrower: boolean;
24
+ }>>>;
25
+ isProportionalAllocation: z.ZodOptional<z.ZodBoolean>;
26
+ }, "strip", z.ZodTypeAny, {
27
+ preOrderUUIDs: string[];
28
+ consignmentUUIDs: string[];
29
+ matchingConfig?: {
30
+ matchByName: boolean;
31
+ matchByCategory: boolean;
32
+ matchByColor: boolean;
33
+ matchBySize: boolean;
34
+ matchByGrower: boolean;
35
+ } | null | undefined;
36
+ isProportionalAllocation?: boolean | undefined;
37
+ }, {
38
+ preOrderUUIDs: string[];
39
+ consignmentUUIDs: string[];
40
+ matchingConfig?: {
41
+ matchByName: boolean;
42
+ matchByCategory: boolean;
43
+ matchByColor: boolean;
44
+ matchBySize: boolean;
45
+ matchByGrower: boolean;
46
+ } | null | undefined;
47
+ isProportionalAllocation?: boolean | undefined;
48
+ }>;
49
+ type Request = z.infer<typeof RequestSchema>;
50
+ const ResponseSchema: z.ZodObject<{
51
+ message: z.ZodOptional<z.ZodString>;
52
+ data: z.ZodObject<{
53
+ analyses: z.ZodArray<z.ZodObject<{
54
+ preOrder: z.ZodObject<{
55
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderStatusEnum>;
56
+ uuid: z.ZodString;
57
+ createdAt: z.ZodDate;
58
+ comment: z.ZodNullable<z.ZodString>;
59
+ clientUUID: z.ZodString;
60
+ branchUUID: z.ZodNullable<z.ZodString>;
61
+ tag: z.ZodNullable<z.ZodString>;
62
+ preOrderNum: z.ZodNumber;
63
+ preOrderCollection: z.ZodNullable<z.ZodObject<{
64
+ uuid: z.ZodString;
65
+ status: z.ZodNativeEnum<typeof import("../../..").PreOrderCollectionStatusEnum>;
66
+ description: z.ZodString;
67
+ availableUntil: z.ZodDate;
68
+ deliveryDate: z.ZodDate;
69
+ label: z.ZodNullable<z.ZodString>;
70
+ imageUrl: z.ZodNullable<z.ZodString>;
71
+ hideItemOptions: z.ZodBoolean;
72
+ }, "strip", z.ZodTypeAny, {
73
+ status: import("../../..").PreOrderCollectionStatusEnum;
74
+ uuid: string;
75
+ deliveryDate: Date;
76
+ description: string;
77
+ label: string | null;
78
+ availableUntil: Date;
79
+ imageUrl: string | null;
80
+ hideItemOptions: boolean;
81
+ }, {
82
+ status: import("../../..").PreOrderCollectionStatusEnum;
83
+ uuid: string;
84
+ deliveryDate: Date;
85
+ description: string;
86
+ label: string | null;
87
+ availableUntil: Date;
88
+ imageUrl: string | null;
89
+ hideItemOptions: boolean;
90
+ }>>;
91
+ client: z.ZodObject<{
92
+ uuid: z.ZodString;
93
+ name: z.ZodString;
94
+ contactName: z.ZodNullable<z.ZodString>;
95
+ phone: z.ZodNullable<z.ZodString>;
96
+ email: z.ZodNullable<z.ZodString>;
97
+ status: z.ZodNativeEnum<typeof import("../../../enum/client-status.enum").ClientStatusEnum>;
98
+ isCommon: z.ZodBoolean;
99
+ contractNumber: z.ZodNullable<z.ZodString>;
100
+ contractDate: z.ZodNullable<z.ZodDate>;
101
+ address: z.ZodNullable<z.ZodString>;
102
+ city: z.ZodNullable<z.ZodString>;
103
+ code: z.ZodNullable<z.ZodString>;
104
+ group: z.ZodNullable<z.ZodString>;
105
+ marking: z.ZodNullable<z.ZodString>;
106
+ alwaysRequiresDelivery: z.ZodBoolean;
107
+ additionalPhone: z.ZodNullable<z.ZodString>;
108
+ comment: z.ZodNullable<z.ZodString>;
109
+ balance: z.ZodNumber;
110
+ deletedAt: z.ZodNullable<z.ZodDate>;
111
+ createdAt: z.ZodDate;
112
+ updatedAt: z.ZodDate;
113
+ companyUUID: z.ZodString;
114
+ clientType: z.ZodNativeEnum<typeof import("../../../enum/client-type.enum").ClientTypeEnum>;
115
+ responsibleUserUUID: z.ZodNullable<z.ZodString>;
116
+ responsibleSince: z.ZodNullable<z.ZodDate>;
117
+ }, "strip", z.ZodTypeAny, {
118
+ email: string | null;
119
+ phone: string | null;
120
+ name: string;
121
+ code: string | null;
122
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
123
+ uuid: string;
124
+ contactName: string | null;
125
+ address: string | null;
126
+ city: string | null;
127
+ createdAt: Date;
128
+ updatedAt: Date;
129
+ deletedAt: Date | null;
130
+ companyUUID: string;
131
+ isCommon: boolean;
132
+ contractNumber: string | null;
133
+ contractDate: Date | null;
134
+ group: string | null;
135
+ marking: string | null;
136
+ alwaysRequiresDelivery: boolean;
137
+ additionalPhone: string | null;
138
+ comment: string | null;
139
+ balance: number;
140
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
141
+ responsibleUserUUID: string | null;
142
+ responsibleSince: Date | null;
143
+ }, {
144
+ email: string | null;
145
+ phone: string | null;
146
+ name: string;
147
+ code: string | null;
148
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
149
+ uuid: string;
150
+ contactName: string | null;
151
+ address: string | null;
152
+ city: string | null;
153
+ createdAt: Date;
154
+ updatedAt: Date;
155
+ deletedAt: Date | null;
156
+ companyUUID: string;
157
+ isCommon: boolean;
158
+ contractNumber: string | null;
159
+ contractDate: Date | null;
160
+ group: string | null;
161
+ marking: string | null;
162
+ alwaysRequiresDelivery: boolean;
163
+ additionalPhone: string | null;
164
+ comment: string | null;
165
+ balance: number;
166
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
167
+ responsibleUserUUID: string | null;
168
+ responsibleSince: Date | null;
169
+ }>;
170
+ branch: z.ZodNullable<z.ZodObject<{
171
+ uuid: z.ZodString;
172
+ name: z.ZodString;
173
+ contactName: z.ZodNullable<z.ZodString>;
174
+ contactPhone: z.ZodNullable<z.ZodString>;
175
+ address: z.ZodNullable<z.ZodString>;
176
+ city: z.ZodNullable<z.ZodString>;
177
+ region: z.ZodNullable<z.ZodString>;
178
+ country: z.ZodNullable<z.ZodString>;
179
+ clientId: z.ZodString;
180
+ createdAt: z.ZodDate;
181
+ updatedAt: z.ZodDate;
182
+ }, "strip", z.ZodTypeAny, {
183
+ name: string;
184
+ uuid: string;
185
+ contactName: string | null;
186
+ contactPhone: string | null;
187
+ address: string | null;
188
+ city: string | null;
189
+ region: string | null;
190
+ country: string | null;
191
+ clientId: string;
192
+ createdAt: Date;
193
+ updatedAt: Date;
194
+ }, {
195
+ name: string;
196
+ uuid: string;
197
+ contactName: string | null;
198
+ contactPhone: string | null;
199
+ address: string | null;
200
+ city: string | null;
201
+ region: string | null;
202
+ country: string | null;
203
+ clientId: string;
204
+ createdAt: Date;
205
+ updatedAt: Date;
206
+ }>>;
207
+ }, "strip", z.ZodTypeAny, {
208
+ status: import("../../..").PreOrderStatusEnum;
209
+ uuid: string;
210
+ createdAt: Date;
211
+ comment: string | null;
212
+ clientUUID: string;
213
+ branchUUID: string | null;
214
+ tag: string | null;
215
+ client: {
216
+ email: string | null;
217
+ phone: string | null;
218
+ name: string;
219
+ code: string | null;
220
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
221
+ uuid: string;
222
+ contactName: string | null;
223
+ address: string | null;
224
+ city: string | null;
225
+ createdAt: Date;
226
+ updatedAt: Date;
227
+ deletedAt: Date | null;
228
+ companyUUID: string;
229
+ isCommon: boolean;
230
+ contractNumber: string | null;
231
+ contractDate: Date | null;
232
+ group: string | null;
233
+ marking: string | null;
234
+ alwaysRequiresDelivery: boolean;
235
+ additionalPhone: string | null;
236
+ comment: string | null;
237
+ balance: number;
238
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
239
+ responsibleUserUUID: string | null;
240
+ responsibleSince: Date | null;
241
+ };
242
+ branch: {
243
+ name: string;
244
+ uuid: string;
245
+ contactName: string | null;
246
+ contactPhone: string | null;
247
+ address: string | null;
248
+ city: string | null;
249
+ region: string | null;
250
+ country: string | null;
251
+ clientId: string;
252
+ createdAt: Date;
253
+ updatedAt: Date;
254
+ } | null;
255
+ preOrderCollection: {
256
+ status: import("../../..").PreOrderCollectionStatusEnum;
257
+ uuid: string;
258
+ deliveryDate: Date;
259
+ description: string;
260
+ label: string | null;
261
+ availableUntil: Date;
262
+ imageUrl: string | null;
263
+ hideItemOptions: boolean;
264
+ } | null;
265
+ preOrderNum: number;
266
+ }, {
267
+ status: import("../../..").PreOrderStatusEnum;
268
+ uuid: string;
269
+ createdAt: Date;
270
+ comment: string | null;
271
+ clientUUID: string;
272
+ branchUUID: string | null;
273
+ tag: string | null;
274
+ client: {
275
+ email: string | null;
276
+ phone: string | null;
277
+ name: string;
278
+ code: string | null;
279
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
280
+ uuid: string;
281
+ contactName: string | null;
282
+ address: string | null;
283
+ city: string | null;
284
+ createdAt: Date;
285
+ updatedAt: Date;
286
+ deletedAt: Date | null;
287
+ companyUUID: string;
288
+ isCommon: boolean;
289
+ contractNumber: string | null;
290
+ contractDate: Date | null;
291
+ group: string | null;
292
+ marking: string | null;
293
+ alwaysRequiresDelivery: boolean;
294
+ additionalPhone: string | null;
295
+ comment: string | null;
296
+ balance: number;
297
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
298
+ responsibleUserUUID: string | null;
299
+ responsibleSince: Date | null;
300
+ };
301
+ branch: {
302
+ name: string;
303
+ uuid: string;
304
+ contactName: string | null;
305
+ contactPhone: string | null;
306
+ address: string | null;
307
+ city: string | null;
308
+ region: string | null;
309
+ country: string | null;
310
+ clientId: string;
311
+ createdAt: Date;
312
+ updatedAt: Date;
313
+ } | null;
314
+ preOrderCollection: {
315
+ status: import("../../..").PreOrderCollectionStatusEnum;
316
+ uuid: string;
317
+ deliveryDate: Date;
318
+ description: string;
319
+ label: string | null;
320
+ availableUntil: Date;
321
+ imageUrl: string | null;
322
+ hideItemOptions: boolean;
323
+ } | null;
324
+ preOrderNum: number;
325
+ }>;
326
+ mappings: z.ZodRecord<z.ZodString, z.ZodObject<{
327
+ item: z.ZodObject<{
328
+ name: z.ZodNullable<z.ZodString>;
329
+ uuid: z.ZodString;
330
+ categoryUUID: z.ZodNullable<z.ZodString>;
331
+ color: z.ZodNullable<z.ZodString>;
332
+ grower: z.ZodNullable<z.ZodString>;
333
+ comment: z.ZodNullable<z.ZodString>;
334
+ quantity: z.ZodNumber;
335
+ price: z.ZodNullable<z.ZodNumber>;
336
+ size: z.ZodNullable<z.ZodString>;
337
+ tag: z.ZodNullable<z.ZodString>;
338
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
339
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
340
+ preOrderUUID: z.ZodString;
341
+ isPurchased: z.ZodBoolean;
342
+ isReplaceable: z.ZodBoolean;
343
+ stopPrice: z.ZodNullable<z.ZodNumber>;
344
+ highAttention: z.ZodBoolean;
345
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
346
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
347
+ matchByName: z.ZodBoolean;
348
+ matchByCategory: z.ZodBoolean;
349
+ matchByColor: z.ZodBoolean;
350
+ matchBySize: z.ZodBoolean;
351
+ matchByGrower: z.ZodBoolean;
352
+ }, "strip", z.ZodTypeAny, {
353
+ matchByName: boolean;
354
+ matchByCategory: boolean;
355
+ matchByColor: boolean;
356
+ matchBySize: boolean;
357
+ matchByGrower: boolean;
358
+ }, {
359
+ matchByName: boolean;
360
+ matchByCategory: boolean;
361
+ matchByColor: boolean;
362
+ matchBySize: boolean;
363
+ matchByGrower: boolean;
364
+ }>>>;
365
+ preOrderCollectionItem: z.ZodObject<{
366
+ name: z.ZodString;
367
+ uuid: z.ZodString;
368
+ country: z.ZodNullable<z.ZodString>;
369
+ createdAt: z.ZodDate;
370
+ updatedAt: z.ZodDate;
371
+ multiplicity: z.ZodNumber;
372
+ categoryUUID: z.ZodString;
373
+ color: z.ZodNullable<z.ZodString>;
374
+ grower: z.ZodNullable<z.ZodString>;
375
+ description: z.ZodNullable<z.ZodString>;
376
+ group: z.ZodNullable<z.ZodString>;
377
+ balance: z.ZodNullable<z.ZodNumber>;
378
+ quantity: z.ZodNullable<z.ZodNumber>;
379
+ price: z.ZodNumber;
380
+ isOpen: z.ZodBoolean;
381
+ article: z.ZodNullable<z.ZodString>;
382
+ size: z.ZodNullable<z.ZodString>;
383
+ size2: z.ZodNullable<z.ZodString>;
384
+ size3: z.ZodNullable<z.ZodString>;
385
+ imageUUID: z.ZodNullable<z.ZodString>;
386
+ vat: z.ZodNullable<z.ZodNumber>;
387
+ productUUID: z.ZodNullable<z.ZodString>;
388
+ preOrderCollectionUUID: z.ZodString;
389
+ advancedPrice: z.ZodNullable<z.ZodString>;
390
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
391
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
392
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").SalesUnitEnum>>;
393
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
394
+ image: z.ZodNullable<z.ZodObject<{
395
+ uuid: z.ZodString;
396
+ categoryUUID: z.ZodNullable<z.ZodString>;
397
+ name: z.ZodString;
398
+ color: z.ZodNullable<z.ZodString>;
399
+ vbn: z.ZodNullable<z.ZodString>;
400
+ externalUUID: z.ZodNullable<z.ZodString>;
401
+ productImageUrl: z.ZodString;
402
+ companyUUID: z.ZodString;
403
+ country: z.ZodNullable<z.ZodString>;
404
+ grower: z.ZodNullable<z.ZodString>;
405
+ createdAt: z.ZodDate;
406
+ updatedAt: z.ZodDate;
407
+ deletedAt: z.ZodNullable<z.ZodDate>;
408
+ }, "strip", z.ZodTypeAny, {
409
+ name: string;
410
+ uuid: string;
411
+ country: string | null;
412
+ createdAt: Date;
413
+ updatedAt: Date;
414
+ deletedAt: Date | null;
415
+ companyUUID: string;
416
+ categoryUUID: string | null;
417
+ color: string | null;
418
+ vbn: string | null;
419
+ externalUUID: string | null;
420
+ productImageUrl: string;
421
+ grower: string | null;
422
+ }, {
423
+ name: string;
424
+ uuid: string;
425
+ country: string | null;
426
+ createdAt: Date;
427
+ updatedAt: Date;
428
+ deletedAt: Date | null;
429
+ companyUUID: string;
430
+ categoryUUID: string | null;
431
+ color: string | null;
432
+ vbn: string | null;
433
+ externalUUID: string | null;
434
+ productImageUrl: string;
435
+ grower: string | null;
436
+ }>>;
437
+ category: z.ZodNullable<z.ZodObject<{
438
+ uuid: z.ZodString;
439
+ name: z.ZodString;
440
+ multiplicity: z.ZodNullable<z.ZodNumber>;
441
+ isSizeSeparate: z.ZodBoolean;
442
+ isSaveCategoryName: z.ZodBoolean;
443
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
444
+ createdAt: z.ZodDate;
445
+ updatedAt: z.ZodDate;
446
+ deletedAt: z.ZodNullable<z.ZodDate>;
447
+ }, "strip", z.ZodTypeAny, {
448
+ name: string;
449
+ status: import("../../..").CategoryStatusEnum;
450
+ uuid: string;
451
+ createdAt: Date;
452
+ updatedAt: Date;
453
+ deletedAt: Date | null;
454
+ multiplicity: number | null;
455
+ isSizeSeparate: boolean;
456
+ isSaveCategoryName: boolean;
457
+ }, {
458
+ name: string;
459
+ status: import("../../..").CategoryStatusEnum;
460
+ uuid: string;
461
+ createdAt: Date;
462
+ updatedAt: Date;
463
+ deletedAt: Date | null;
464
+ multiplicity: number | null;
465
+ isSizeSeparate: boolean;
466
+ isSaveCategoryName: boolean;
467
+ }>>;
468
+ type: z.ZodNullable<z.ZodObject<{
469
+ uuid: z.ZodString;
470
+ name: z.ZodString;
471
+ rank: z.ZodNumber;
472
+ deletedAt: z.ZodNullable<z.ZodDate>;
473
+ createdAt: z.ZodDate;
474
+ updatedAt: z.ZodDate;
475
+ }, "strip", z.ZodTypeAny, {
476
+ name: string;
477
+ uuid: string;
478
+ createdAt: Date;
479
+ updatedAt: Date;
480
+ deletedAt: Date | null;
481
+ rank: number;
482
+ }, {
483
+ name: string;
484
+ uuid: string;
485
+ createdAt: Date;
486
+ updatedAt: Date;
487
+ deletedAt: Date | null;
488
+ rank: number;
489
+ }>>;
490
+ matchingProducts: z.ZodArray<z.ZodObject<{
491
+ uuid: z.ZodString;
492
+ name: z.ZodString;
493
+ size: z.ZodNullable<z.ZodString>;
494
+ grower: z.ZodNullable<z.ZodString>;
495
+ color: z.ZodNullable<z.ZodString>;
496
+ country: z.ZodNullable<z.ZodString>;
497
+ deliveryDate: z.ZodDate;
498
+ }, "strip", z.ZodTypeAny, {
499
+ name: string;
500
+ uuid: string;
501
+ country: string | null;
502
+ color: string | null;
503
+ grower: string | null;
504
+ deliveryDate: Date;
505
+ size: string | null;
506
+ }, {
507
+ name: string;
508
+ uuid: string;
509
+ country: string | null;
510
+ color: string | null;
511
+ grower: string | null;
512
+ deliveryDate: Date;
513
+ size: string | null;
514
+ }>, "many">;
515
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
516
+ uuid: z.ZodString;
517
+ title: z.ZodNullable<z.ZodString>;
518
+ optionMultiplicity: z.ZodNumber;
519
+ optionPrice: z.ZodNullable<z.ZodNumber>;
520
+ rank: z.ZodNumber;
521
+ }, "strip", z.ZodTypeAny, {
522
+ uuid: string;
523
+ rank: number;
524
+ title: string | null;
525
+ optionMultiplicity: number;
526
+ optionPrice: number | null;
527
+ }, {
528
+ uuid: string;
529
+ rank: number;
530
+ title: string | null;
531
+ optionMultiplicity: number;
532
+ optionPrice: number | null;
533
+ }>, "many">>;
534
+ preOrderedQuantity: z.ZodOptional<z.ZodNumber>;
535
+ }, "strip", z.ZodTypeAny, {
536
+ name: string;
537
+ type: {
538
+ name: string;
539
+ uuid: string;
540
+ createdAt: Date;
541
+ updatedAt: Date;
542
+ deletedAt: Date | null;
543
+ rank: number;
544
+ } | null;
545
+ uuid: string;
546
+ country: string | null;
547
+ createdAt: Date;
548
+ updatedAt: Date;
549
+ multiplicity: number;
550
+ categoryUUID: string;
551
+ color: string | null;
552
+ grower: string | null;
553
+ category: {
554
+ name: string;
555
+ status: import("../../..").CategoryStatusEnum;
556
+ uuid: string;
557
+ createdAt: Date;
558
+ updatedAt: Date;
559
+ deletedAt: Date | null;
560
+ multiplicity: number | null;
561
+ isSizeSeparate: boolean;
562
+ isSaveCategoryName: boolean;
563
+ } | null;
564
+ description: string | null;
565
+ group: string | null;
566
+ balance: number | null;
567
+ quantity: number | null;
568
+ price: number;
569
+ isOpen: boolean;
570
+ article: string | null;
571
+ size: string | null;
572
+ size2: string | null;
573
+ size3: string | null;
574
+ imageUUID: string | null;
575
+ vat: number | null;
576
+ image: {
577
+ name: string;
578
+ uuid: string;
579
+ country: string | null;
580
+ createdAt: Date;
581
+ updatedAt: Date;
582
+ deletedAt: Date | null;
583
+ companyUUID: string;
584
+ categoryUUID: string | null;
585
+ color: string | null;
586
+ vbn: string | null;
587
+ externalUUID: string | null;
588
+ productImageUrl: string;
589
+ grower: string | null;
590
+ } | null;
591
+ productUUID: string | null;
592
+ preOrderCollectionUUID: string;
593
+ advancedPrice: string | null;
594
+ isSizeCustomizable: boolean;
595
+ isColorCustomizable: boolean;
596
+ salesUnit: import("../../..").SalesUnitEnum | null;
597
+ multiplicityDescription: string | null;
598
+ matchingProducts: {
599
+ name: string;
600
+ uuid: string;
601
+ country: string | null;
602
+ color: string | null;
603
+ grower: string | null;
604
+ deliveryDate: Date;
605
+ size: string | null;
606
+ }[];
607
+ multiplicityOptions?: {
608
+ uuid: string;
609
+ rank: number;
610
+ title: string | null;
611
+ optionMultiplicity: number;
612
+ optionPrice: number | null;
613
+ }[] | undefined;
614
+ preOrderedQuantity?: number | undefined;
615
+ }, {
616
+ name: string;
617
+ type: {
618
+ name: string;
619
+ uuid: string;
620
+ createdAt: Date;
621
+ updatedAt: Date;
622
+ deletedAt: Date | null;
623
+ rank: number;
624
+ } | null;
625
+ uuid: string;
626
+ country: string | null;
627
+ createdAt: Date;
628
+ updatedAt: Date;
629
+ multiplicity: number;
630
+ categoryUUID: string;
631
+ color: string | null;
632
+ grower: string | null;
633
+ category: {
634
+ name: string;
635
+ status: import("../../..").CategoryStatusEnum;
636
+ uuid: string;
637
+ createdAt: Date;
638
+ updatedAt: Date;
639
+ deletedAt: Date | null;
640
+ multiplicity: number | null;
641
+ isSizeSeparate: boolean;
642
+ isSaveCategoryName: boolean;
643
+ } | null;
644
+ description: string | null;
645
+ group: string | null;
646
+ balance: number | null;
647
+ quantity: number | null;
648
+ price: number;
649
+ isOpen: boolean;
650
+ article: string | null;
651
+ size: string | null;
652
+ size2: string | null;
653
+ size3: string | null;
654
+ imageUUID: string | null;
655
+ vat: number | null;
656
+ image: {
657
+ name: string;
658
+ uuid: string;
659
+ country: string | null;
660
+ createdAt: Date;
661
+ updatedAt: Date;
662
+ deletedAt: Date | null;
663
+ companyUUID: string;
664
+ categoryUUID: string | null;
665
+ color: string | null;
666
+ vbn: string | null;
667
+ externalUUID: string | null;
668
+ productImageUrl: string;
669
+ grower: string | null;
670
+ } | null;
671
+ productUUID: string | null;
672
+ preOrderCollectionUUID: string;
673
+ advancedPrice: string | null;
674
+ salesUnit: import("../../..").SalesUnitEnum | null;
675
+ multiplicityDescription: string | null;
676
+ matchingProducts: {
677
+ name: string;
678
+ uuid: string;
679
+ country: string | null;
680
+ color: string | null;
681
+ grower: string | null;
682
+ deliveryDate: Date;
683
+ size: string | null;
684
+ }[];
685
+ isSizeCustomizable?: boolean | undefined;
686
+ isColorCustomizable?: boolean | undefined;
687
+ multiplicityOptions?: {
688
+ uuid: string;
689
+ rank: number;
690
+ title: string | null;
691
+ optionMultiplicity: number;
692
+ optionPrice: number | null;
693
+ }[] | undefined;
694
+ preOrderedQuantity?: number | undefined;
695
+ }>;
696
+ category: z.ZodNullable<z.ZodObject<{
697
+ uuid: z.ZodString;
698
+ name: z.ZodString;
699
+ multiplicity: z.ZodNullable<z.ZodNumber>;
700
+ isSizeSeparate: z.ZodBoolean;
701
+ isSaveCategoryName: z.ZodBoolean;
702
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
703
+ createdAt: z.ZodDate;
704
+ updatedAt: z.ZodDate;
705
+ deletedAt: z.ZodNullable<z.ZodDate>;
706
+ }, "strip", z.ZodTypeAny, {
707
+ name: string;
708
+ status: import("../../..").CategoryStatusEnum;
709
+ uuid: string;
710
+ createdAt: Date;
711
+ updatedAt: Date;
712
+ deletedAt: Date | null;
713
+ multiplicity: number | null;
714
+ isSizeSeparate: boolean;
715
+ isSaveCategoryName: boolean;
716
+ }, {
717
+ name: string;
718
+ status: import("../../..").CategoryStatusEnum;
719
+ uuid: string;
720
+ createdAt: Date;
721
+ updatedAt: Date;
722
+ deletedAt: Date | null;
723
+ multiplicity: number | null;
724
+ isSizeSeparate: boolean;
725
+ isSaveCategoryName: boolean;
726
+ }>>;
727
+ deliveryDate: z.ZodNullable<z.ZodDate>;
728
+ }, "strip", z.ZodTypeAny, {
729
+ name: string | null;
730
+ uuid: string;
731
+ categoryUUID: string | null;
732
+ color: string | null;
733
+ grower: string | null;
734
+ category: {
735
+ name: string;
736
+ status: import("../../..").CategoryStatusEnum;
737
+ uuid: string;
738
+ createdAt: Date;
739
+ updatedAt: Date;
740
+ deletedAt: Date | null;
741
+ multiplicity: number | null;
742
+ isSizeSeparate: boolean;
743
+ isSaveCategoryName: boolean;
744
+ } | null;
745
+ deliveryDate: Date | null;
746
+ comment: string | null;
747
+ quantity: number;
748
+ price: number | null;
749
+ size: string | null;
750
+ tag: string | null;
751
+ preOrderCollectionItemUUID: string | null;
752
+ preOrderUUID: string;
753
+ isPurchased: boolean;
754
+ isReplaceable: boolean;
755
+ stopPrice: number | null;
756
+ highAttention: boolean;
757
+ parentPreOrderProductUUID: string | null;
758
+ preOrderCollectionItem: {
759
+ name: string;
760
+ type: {
761
+ name: string;
762
+ uuid: string;
763
+ createdAt: Date;
764
+ updatedAt: Date;
765
+ deletedAt: Date | null;
766
+ rank: number;
767
+ } | null;
768
+ uuid: string;
769
+ country: string | null;
770
+ createdAt: Date;
771
+ updatedAt: Date;
772
+ multiplicity: number;
773
+ categoryUUID: string;
774
+ color: string | null;
775
+ grower: string | null;
776
+ category: {
777
+ name: string;
778
+ status: import("../../..").CategoryStatusEnum;
779
+ uuid: string;
780
+ createdAt: Date;
781
+ updatedAt: Date;
782
+ deletedAt: Date | null;
783
+ multiplicity: number | null;
784
+ isSizeSeparate: boolean;
785
+ isSaveCategoryName: boolean;
786
+ } | null;
787
+ description: string | null;
788
+ group: string | null;
789
+ balance: number | null;
790
+ quantity: number | null;
791
+ price: number;
792
+ isOpen: boolean;
793
+ article: string | null;
794
+ size: string | null;
795
+ size2: string | null;
796
+ size3: string | null;
797
+ imageUUID: string | null;
798
+ vat: number | null;
799
+ image: {
800
+ name: string;
801
+ uuid: string;
802
+ country: string | null;
803
+ createdAt: Date;
804
+ updatedAt: Date;
805
+ deletedAt: Date | null;
806
+ companyUUID: string;
807
+ categoryUUID: string | null;
808
+ color: string | null;
809
+ vbn: string | null;
810
+ externalUUID: string | null;
811
+ productImageUrl: string;
812
+ grower: string | null;
813
+ } | null;
814
+ productUUID: string | null;
815
+ preOrderCollectionUUID: string;
816
+ advancedPrice: string | null;
817
+ isSizeCustomizable: boolean;
818
+ isColorCustomizable: boolean;
819
+ salesUnit: import("../../..").SalesUnitEnum | null;
820
+ multiplicityDescription: string | null;
821
+ matchingProducts: {
822
+ name: string;
823
+ uuid: string;
824
+ country: string | null;
825
+ color: string | null;
826
+ grower: string | null;
827
+ deliveryDate: Date;
828
+ size: string | null;
829
+ }[];
830
+ multiplicityOptions?: {
831
+ uuid: string;
832
+ rank: number;
833
+ title: string | null;
834
+ optionMultiplicity: number;
835
+ optionPrice: number | null;
836
+ }[] | undefined;
837
+ preOrderedQuantity?: number | undefined;
838
+ };
839
+ multiplicityOptionUUID?: string | null | undefined;
840
+ matchingConfig?: {
841
+ matchByName: boolean;
842
+ matchByCategory: boolean;
843
+ matchByColor: boolean;
844
+ matchBySize: boolean;
845
+ matchByGrower: boolean;
846
+ } | null | undefined;
847
+ }, {
848
+ name: string | null;
849
+ uuid: string;
850
+ categoryUUID: string | null;
851
+ color: string | null;
852
+ grower: string | null;
853
+ category: {
854
+ name: string;
855
+ status: import("../../..").CategoryStatusEnum;
856
+ uuid: string;
857
+ createdAt: Date;
858
+ updatedAt: Date;
859
+ deletedAt: Date | null;
860
+ multiplicity: number | null;
861
+ isSizeSeparate: boolean;
862
+ isSaveCategoryName: boolean;
863
+ } | null;
864
+ deliveryDate: Date | null;
865
+ comment: string | null;
866
+ quantity: number;
867
+ price: number | null;
868
+ size: string | null;
869
+ tag: string | null;
870
+ preOrderCollectionItemUUID: string | null;
871
+ preOrderUUID: string;
872
+ isPurchased: boolean;
873
+ isReplaceable: boolean;
874
+ stopPrice: number | null;
875
+ highAttention: boolean;
876
+ parentPreOrderProductUUID: string | null;
877
+ preOrderCollectionItem: {
878
+ name: string;
879
+ type: {
880
+ name: string;
881
+ uuid: string;
882
+ createdAt: Date;
883
+ updatedAt: Date;
884
+ deletedAt: Date | null;
885
+ rank: number;
886
+ } | null;
887
+ uuid: string;
888
+ country: string | null;
889
+ createdAt: Date;
890
+ updatedAt: Date;
891
+ multiplicity: number;
892
+ categoryUUID: string;
893
+ color: string | null;
894
+ grower: string | null;
895
+ category: {
896
+ name: string;
897
+ status: import("../../..").CategoryStatusEnum;
898
+ uuid: string;
899
+ createdAt: Date;
900
+ updatedAt: Date;
901
+ deletedAt: Date | null;
902
+ multiplicity: number | null;
903
+ isSizeSeparate: boolean;
904
+ isSaveCategoryName: boolean;
905
+ } | null;
906
+ description: string | null;
907
+ group: string | null;
908
+ balance: number | null;
909
+ quantity: number | null;
910
+ price: number;
911
+ isOpen: boolean;
912
+ article: string | null;
913
+ size: string | null;
914
+ size2: string | null;
915
+ size3: string | null;
916
+ imageUUID: string | null;
917
+ vat: number | null;
918
+ image: {
919
+ name: string;
920
+ uuid: string;
921
+ country: string | null;
922
+ createdAt: Date;
923
+ updatedAt: Date;
924
+ deletedAt: Date | null;
925
+ companyUUID: string;
926
+ categoryUUID: string | null;
927
+ color: string | null;
928
+ vbn: string | null;
929
+ externalUUID: string | null;
930
+ productImageUrl: string;
931
+ grower: string | null;
932
+ } | null;
933
+ productUUID: string | null;
934
+ preOrderCollectionUUID: string;
935
+ advancedPrice: string | null;
936
+ salesUnit: import("../../..").SalesUnitEnum | null;
937
+ multiplicityDescription: string | null;
938
+ matchingProducts: {
939
+ name: string;
940
+ uuid: string;
941
+ country: string | null;
942
+ color: string | null;
943
+ grower: string | null;
944
+ deliveryDate: Date;
945
+ size: string | null;
946
+ }[];
947
+ isSizeCustomizable?: boolean | undefined;
948
+ isColorCustomizable?: boolean | undefined;
949
+ multiplicityOptions?: {
950
+ uuid: string;
951
+ rank: number;
952
+ title: string | null;
953
+ optionMultiplicity: number;
954
+ optionPrice: number | null;
955
+ }[] | undefined;
956
+ preOrderedQuantity?: number | undefined;
957
+ };
958
+ multiplicityOptionUUID?: string | null | undefined;
959
+ matchingConfig?: {
960
+ matchByName: boolean;
961
+ matchByCategory: boolean;
962
+ matchByColor: boolean;
963
+ matchBySize: boolean;
964
+ matchByGrower: boolean;
965
+ } | null | undefined;
966
+ }>;
967
+ matches: z.ZodArray<z.ZodObject<{
968
+ product: z.ZodObject<{
969
+ name: z.ZodString;
970
+ type: z.ZodNullable<z.ZodObject<{
971
+ uuid: z.ZodString;
972
+ name: z.ZodString;
973
+ rank: z.ZodNumber;
974
+ deletedAt: z.ZodNullable<z.ZodDate>;
975
+ createdAt: z.ZodDate;
976
+ updatedAt: z.ZodDate;
977
+ }, "strip", z.ZodTypeAny, {
978
+ name: string;
979
+ uuid: string;
980
+ createdAt: Date;
981
+ updatedAt: Date;
982
+ deletedAt: Date | null;
983
+ rank: number;
984
+ }, {
985
+ name: string;
986
+ uuid: string;
987
+ createdAt: Date;
988
+ updatedAt: Date;
989
+ deletedAt: Date | null;
990
+ rank: number;
991
+ }>>;
992
+ uuid: z.ZodString;
993
+ country: z.ZodNullable<z.ZodString>;
994
+ createdAt: z.ZodDate;
995
+ updatedAt: z.ZodDate;
996
+ deletedAt: z.ZodNullable<z.ZodDate>;
997
+ multiplicity: z.ZodNumber;
998
+ categoryUUID: z.ZodNullable<z.ZodString>;
999
+ color: z.ZodNullable<z.ZodString>;
1000
+ vbn: z.ZodNullable<z.ZodString>;
1001
+ grower: z.ZodNullable<z.ZodString>;
1002
+ category: z.ZodNullable<z.ZodObject<{
1003
+ uuid: z.ZodString;
1004
+ name: z.ZodString;
1005
+ multiplicity: z.ZodNullable<z.ZodNumber>;
1006
+ isSizeSeparate: z.ZodBoolean;
1007
+ isSaveCategoryName: z.ZodBoolean;
1008
+ status: z.ZodNativeEnum<typeof import("../../..").CategoryStatusEnum>;
1009
+ createdAt: z.ZodDate;
1010
+ updatedAt: z.ZodDate;
1011
+ deletedAt: z.ZodNullable<z.ZodDate>;
1012
+ }, "strip", z.ZodTypeAny, {
1013
+ name: string;
1014
+ status: import("../../..").CategoryStatusEnum;
1015
+ uuid: string;
1016
+ createdAt: Date;
1017
+ updatedAt: Date;
1018
+ deletedAt: Date | null;
1019
+ multiplicity: number | null;
1020
+ isSizeSeparate: boolean;
1021
+ isSaveCategoryName: boolean;
1022
+ }, {
1023
+ name: string;
1024
+ status: import("../../..").CategoryStatusEnum;
1025
+ uuid: string;
1026
+ createdAt: Date;
1027
+ updatedAt: Date;
1028
+ deletedAt: Date | null;
1029
+ multiplicity: number | null;
1030
+ isSizeSeparate: boolean;
1031
+ isSaveCategoryName: boolean;
1032
+ }>>;
1033
+ description: z.ZodNullable<z.ZodString>;
1034
+ balance: z.ZodNumber;
1035
+ dataSyncId: z.ZodNullable<z.ZodString>;
1036
+ consignmentUUID: z.ZodString;
1037
+ quantity: z.ZodNumber;
1038
+ price: z.ZodNumber;
1039
+ costPrice: z.ZodNumber;
1040
+ isOpen: z.ZodBoolean;
1041
+ article: z.ZodNullable<z.ZodString>;
1042
+ barcode: z.ZodNullable<z.ZodString>;
1043
+ size: z.ZodNullable<z.ZodString>;
1044
+ size2: z.ZodNullable<z.ZodString>;
1045
+ size3: z.ZodNullable<z.ZodString>;
1046
+ invoicePrice: z.ZodNullable<z.ZodNumber>;
1047
+ invoiceNumber: z.ZodNullable<z.ZodString>;
1048
+ imageUUID: z.ZodNullable<z.ZodString>;
1049
+ quality: z.ZodNullable<z.ZodString>;
1050
+ vat: z.ZodNullable<z.ZodNumber>;
1051
+ image: z.ZodNullable<z.ZodObject<{
1052
+ uuid: z.ZodString;
1053
+ categoryUUID: z.ZodNullable<z.ZodString>;
1054
+ name: z.ZodString;
1055
+ color: z.ZodNullable<z.ZodString>;
1056
+ vbn: z.ZodNullable<z.ZodString>;
1057
+ externalUUID: z.ZodNullable<z.ZodString>;
1058
+ productImageUrl: z.ZodString;
1059
+ companyUUID: z.ZodString;
1060
+ country: z.ZodNullable<z.ZodString>;
1061
+ grower: z.ZodNullable<z.ZodString>;
1062
+ createdAt: z.ZodDate;
1063
+ updatedAt: z.ZodDate;
1064
+ deletedAt: z.ZodNullable<z.ZodDate>;
1065
+ }, "strip", z.ZodTypeAny, {
1066
+ name: string;
1067
+ uuid: string;
1068
+ country: string | null;
1069
+ createdAt: Date;
1070
+ updatedAt: Date;
1071
+ deletedAt: Date | null;
1072
+ companyUUID: string;
1073
+ categoryUUID: string | null;
1074
+ color: string | null;
1075
+ vbn: string | null;
1076
+ externalUUID: string | null;
1077
+ productImageUrl: string;
1078
+ grower: string | null;
1079
+ }, {
1080
+ name: string;
1081
+ uuid: string;
1082
+ country: string | null;
1083
+ createdAt: Date;
1084
+ updatedAt: Date;
1085
+ deletedAt: Date | null;
1086
+ companyUUID: string;
1087
+ categoryUUID: string | null;
1088
+ color: string | null;
1089
+ vbn: string | null;
1090
+ externalUUID: string | null;
1091
+ productImageUrl: string;
1092
+ grower: string | null;
1093
+ }>>;
1094
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1095
+ uuid: z.ZodString;
1096
+ title: z.ZodNullable<z.ZodString>;
1097
+ optionMultiplicity: z.ZodNumber;
1098
+ optionPrice: z.ZodNullable<z.ZodNumber>;
1099
+ rank: z.ZodNumber;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ uuid: string;
1102
+ rank: number;
1103
+ title: string | null;
1104
+ optionMultiplicity: number;
1105
+ optionPrice: number | null;
1106
+ }, {
1107
+ uuid: string;
1108
+ rank: number;
1109
+ title: string | null;
1110
+ optionMultiplicity: number;
1111
+ optionPrice: number | null;
1112
+ }>, "many">>;
1113
+ consignment: z.ZodObject<{
1114
+ uuid: z.ZodString;
1115
+ deliveryDate: z.ZodDate;
1116
+ id: z.ZodNumber;
1117
+ deliveryTime: z.ZodNullable<z.ZodString>;
1118
+ clientDeliveryDate: z.ZodDate;
1119
+ description: z.ZodNullable<z.ZodString>;
1120
+ label: z.ZodNullable<z.ZodString>;
1121
+ isInStock: z.ZodBoolean;
1122
+ status: z.ZodNativeEnum<typeof import("../../..").ConsignmentStatusEnum>;
1123
+ url: z.ZodNullable<z.ZodString>;
1124
+ isWithSync: z.ZodBoolean;
1125
+ createdAt: z.ZodDate;
1126
+ updatedAt: z.ZodDate;
1127
+ deletedAt: z.ZodNullable<z.ZodDate>;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ status: import("../../..").ConsignmentStatusEnum;
1130
+ uuid: string;
1131
+ createdAt: Date;
1132
+ updatedAt: Date;
1133
+ deletedAt: Date | null;
1134
+ deliveryDate: Date;
1135
+ id: number;
1136
+ deliveryTime: string | null;
1137
+ clientDeliveryDate: Date;
1138
+ description: string | null;
1139
+ label: string | null;
1140
+ isInStock: boolean;
1141
+ url: string | null;
1142
+ isWithSync: boolean;
1143
+ }, {
1144
+ status: import("../../..").ConsignmentStatusEnum;
1145
+ uuid: string;
1146
+ createdAt: Date;
1147
+ updatedAt: Date;
1148
+ deletedAt: Date | null;
1149
+ deliveryDate: Date;
1150
+ id: number;
1151
+ deliveryTime: string | null;
1152
+ clientDeliveryDate: Date;
1153
+ description: string | null;
1154
+ label: string | null;
1155
+ isInStock: boolean;
1156
+ url: string | null;
1157
+ isWithSync: boolean;
1158
+ }>;
1159
+ }, "strip", z.ZodTypeAny, {
1160
+ name: string;
1161
+ type: {
1162
+ name: string;
1163
+ uuid: string;
1164
+ createdAt: Date;
1165
+ updatedAt: Date;
1166
+ deletedAt: Date | null;
1167
+ rank: number;
1168
+ } | null;
1169
+ uuid: string;
1170
+ country: string | null;
1171
+ createdAt: Date;
1172
+ updatedAt: Date;
1173
+ deletedAt: Date | null;
1174
+ multiplicity: number;
1175
+ categoryUUID: string | null;
1176
+ color: string | null;
1177
+ vbn: string | null;
1178
+ grower: string | null;
1179
+ category: {
1180
+ name: string;
1181
+ status: import("../../..").CategoryStatusEnum;
1182
+ uuid: string;
1183
+ createdAt: Date;
1184
+ updatedAt: Date;
1185
+ deletedAt: Date | null;
1186
+ multiplicity: number | null;
1187
+ isSizeSeparate: boolean;
1188
+ isSaveCategoryName: boolean;
1189
+ } | null;
1190
+ description: string | null;
1191
+ balance: number;
1192
+ dataSyncId: string | null;
1193
+ consignmentUUID: string;
1194
+ quantity: number;
1195
+ price: number;
1196
+ costPrice: number;
1197
+ isOpen: boolean;
1198
+ article: string | null;
1199
+ barcode: string | null;
1200
+ size: string | null;
1201
+ size2: string | null;
1202
+ size3: string | null;
1203
+ invoicePrice: number | null;
1204
+ invoiceNumber: string | null;
1205
+ imageUUID: string | null;
1206
+ quality: string | null;
1207
+ vat: number | null;
1208
+ image: {
1209
+ name: string;
1210
+ uuid: string;
1211
+ country: string | null;
1212
+ createdAt: Date;
1213
+ updatedAt: Date;
1214
+ deletedAt: Date | null;
1215
+ companyUUID: string;
1216
+ categoryUUID: string | null;
1217
+ color: string | null;
1218
+ vbn: string | null;
1219
+ externalUUID: string | null;
1220
+ productImageUrl: string;
1221
+ grower: string | null;
1222
+ } | null;
1223
+ consignment: {
1224
+ status: import("../../..").ConsignmentStatusEnum;
1225
+ uuid: string;
1226
+ createdAt: Date;
1227
+ updatedAt: Date;
1228
+ deletedAt: Date | null;
1229
+ deliveryDate: Date;
1230
+ id: number;
1231
+ deliveryTime: string | null;
1232
+ clientDeliveryDate: Date;
1233
+ description: string | null;
1234
+ label: string | null;
1235
+ isInStock: boolean;
1236
+ url: string | null;
1237
+ isWithSync: boolean;
1238
+ };
1239
+ multiplicityOptions?: {
1240
+ uuid: string;
1241
+ rank: number;
1242
+ title: string | null;
1243
+ optionMultiplicity: number;
1244
+ optionPrice: number | null;
1245
+ }[] | undefined;
1246
+ }, {
1247
+ name: string;
1248
+ type: {
1249
+ name: string;
1250
+ uuid: string;
1251
+ createdAt: Date;
1252
+ updatedAt: Date;
1253
+ deletedAt: Date | null;
1254
+ rank: number;
1255
+ } | null;
1256
+ uuid: string;
1257
+ country: string | null;
1258
+ createdAt: Date;
1259
+ updatedAt: Date;
1260
+ deletedAt: Date | null;
1261
+ multiplicity: number;
1262
+ categoryUUID: string | null;
1263
+ color: string | null;
1264
+ vbn: string | null;
1265
+ grower: string | null;
1266
+ category: {
1267
+ name: string;
1268
+ status: import("../../..").CategoryStatusEnum;
1269
+ uuid: string;
1270
+ createdAt: Date;
1271
+ updatedAt: Date;
1272
+ deletedAt: Date | null;
1273
+ multiplicity: number | null;
1274
+ isSizeSeparate: boolean;
1275
+ isSaveCategoryName: boolean;
1276
+ } | null;
1277
+ description: string | null;
1278
+ balance: number;
1279
+ dataSyncId: string | null;
1280
+ consignmentUUID: string;
1281
+ quantity: number;
1282
+ price: number;
1283
+ costPrice: number;
1284
+ isOpen: boolean;
1285
+ article: string | null;
1286
+ barcode: string | null;
1287
+ size: string | null;
1288
+ size2: string | null;
1289
+ size3: string | null;
1290
+ invoicePrice: number | null;
1291
+ invoiceNumber: string | null;
1292
+ imageUUID: string | null;
1293
+ quality: string | null;
1294
+ vat: number | null;
1295
+ image: {
1296
+ name: string;
1297
+ uuid: string;
1298
+ country: string | null;
1299
+ createdAt: Date;
1300
+ updatedAt: Date;
1301
+ deletedAt: Date | null;
1302
+ companyUUID: string;
1303
+ categoryUUID: string | null;
1304
+ color: string | null;
1305
+ vbn: string | null;
1306
+ externalUUID: string | null;
1307
+ productImageUrl: string;
1308
+ grower: string | null;
1309
+ } | null;
1310
+ consignment: {
1311
+ status: import("../../..").ConsignmentStatusEnum;
1312
+ uuid: string;
1313
+ createdAt: Date;
1314
+ updatedAt: Date;
1315
+ deletedAt: Date | null;
1316
+ deliveryDate: Date;
1317
+ id: number;
1318
+ deliveryTime: string | null;
1319
+ clientDeliveryDate: Date;
1320
+ description: string | null;
1321
+ label: string | null;
1322
+ isInStock: boolean;
1323
+ url: string | null;
1324
+ isWithSync: boolean;
1325
+ };
1326
+ multiplicityOptions?: {
1327
+ uuid: string;
1328
+ rank: number;
1329
+ title: string | null;
1330
+ optionMultiplicity: number;
1331
+ optionPrice: number | null;
1332
+ }[] | undefined;
1333
+ }>;
1334
+ quantity: z.ZodNumber;
1335
+ remainingBalance: z.ZodNumber;
1336
+ }, "strip", z.ZodTypeAny, {
1337
+ quantity: number;
1338
+ product: {
1339
+ name: string;
1340
+ type: {
1341
+ name: string;
1342
+ uuid: string;
1343
+ createdAt: Date;
1344
+ updatedAt: Date;
1345
+ deletedAt: Date | null;
1346
+ rank: number;
1347
+ } | null;
1348
+ uuid: string;
1349
+ country: string | null;
1350
+ createdAt: Date;
1351
+ updatedAt: Date;
1352
+ deletedAt: Date | null;
1353
+ multiplicity: number;
1354
+ categoryUUID: string | null;
1355
+ color: string | null;
1356
+ vbn: string | null;
1357
+ grower: string | null;
1358
+ category: {
1359
+ name: string;
1360
+ status: import("../../..").CategoryStatusEnum;
1361
+ uuid: string;
1362
+ createdAt: Date;
1363
+ updatedAt: Date;
1364
+ deletedAt: Date | null;
1365
+ multiplicity: number | null;
1366
+ isSizeSeparate: boolean;
1367
+ isSaveCategoryName: boolean;
1368
+ } | null;
1369
+ description: string | null;
1370
+ balance: number;
1371
+ dataSyncId: string | null;
1372
+ consignmentUUID: string;
1373
+ quantity: number;
1374
+ price: number;
1375
+ costPrice: number;
1376
+ isOpen: boolean;
1377
+ article: string | null;
1378
+ barcode: string | null;
1379
+ size: string | null;
1380
+ size2: string | null;
1381
+ size3: string | null;
1382
+ invoicePrice: number | null;
1383
+ invoiceNumber: string | null;
1384
+ imageUUID: string | null;
1385
+ quality: string | null;
1386
+ vat: number | null;
1387
+ image: {
1388
+ name: string;
1389
+ uuid: string;
1390
+ country: string | null;
1391
+ createdAt: Date;
1392
+ updatedAt: Date;
1393
+ deletedAt: Date | null;
1394
+ companyUUID: string;
1395
+ categoryUUID: string | null;
1396
+ color: string | null;
1397
+ vbn: string | null;
1398
+ externalUUID: string | null;
1399
+ productImageUrl: string;
1400
+ grower: string | null;
1401
+ } | null;
1402
+ consignment: {
1403
+ status: import("../../..").ConsignmentStatusEnum;
1404
+ uuid: string;
1405
+ createdAt: Date;
1406
+ updatedAt: Date;
1407
+ deletedAt: Date | null;
1408
+ deliveryDate: Date;
1409
+ id: number;
1410
+ deliveryTime: string | null;
1411
+ clientDeliveryDate: Date;
1412
+ description: string | null;
1413
+ label: string | null;
1414
+ isInStock: boolean;
1415
+ url: string | null;
1416
+ isWithSync: boolean;
1417
+ };
1418
+ multiplicityOptions?: {
1419
+ uuid: string;
1420
+ rank: number;
1421
+ title: string | null;
1422
+ optionMultiplicity: number;
1423
+ optionPrice: number | null;
1424
+ }[] | undefined;
1425
+ };
1426
+ remainingBalance: number;
1427
+ }, {
1428
+ quantity: number;
1429
+ product: {
1430
+ name: string;
1431
+ type: {
1432
+ name: string;
1433
+ uuid: string;
1434
+ createdAt: Date;
1435
+ updatedAt: Date;
1436
+ deletedAt: Date | null;
1437
+ rank: number;
1438
+ } | null;
1439
+ uuid: string;
1440
+ country: string | null;
1441
+ createdAt: Date;
1442
+ updatedAt: Date;
1443
+ deletedAt: Date | null;
1444
+ multiplicity: number;
1445
+ categoryUUID: string | null;
1446
+ color: string | null;
1447
+ vbn: string | null;
1448
+ grower: string | null;
1449
+ category: {
1450
+ name: string;
1451
+ status: import("../../..").CategoryStatusEnum;
1452
+ uuid: string;
1453
+ createdAt: Date;
1454
+ updatedAt: Date;
1455
+ deletedAt: Date | null;
1456
+ multiplicity: number | null;
1457
+ isSizeSeparate: boolean;
1458
+ isSaveCategoryName: boolean;
1459
+ } | null;
1460
+ description: string | null;
1461
+ balance: number;
1462
+ dataSyncId: string | null;
1463
+ consignmentUUID: string;
1464
+ quantity: number;
1465
+ price: number;
1466
+ costPrice: number;
1467
+ isOpen: boolean;
1468
+ article: string | null;
1469
+ barcode: string | null;
1470
+ size: string | null;
1471
+ size2: string | null;
1472
+ size3: string | null;
1473
+ invoicePrice: number | null;
1474
+ invoiceNumber: string | null;
1475
+ imageUUID: string | null;
1476
+ quality: string | null;
1477
+ vat: number | null;
1478
+ image: {
1479
+ name: string;
1480
+ uuid: string;
1481
+ country: string | null;
1482
+ createdAt: Date;
1483
+ updatedAt: Date;
1484
+ deletedAt: Date | null;
1485
+ companyUUID: string;
1486
+ categoryUUID: string | null;
1487
+ color: string | null;
1488
+ vbn: string | null;
1489
+ externalUUID: string | null;
1490
+ productImageUrl: string;
1491
+ grower: string | null;
1492
+ } | null;
1493
+ consignment: {
1494
+ status: import("../../..").ConsignmentStatusEnum;
1495
+ uuid: string;
1496
+ createdAt: Date;
1497
+ updatedAt: Date;
1498
+ deletedAt: Date | null;
1499
+ deliveryDate: Date;
1500
+ id: number;
1501
+ deliveryTime: string | null;
1502
+ clientDeliveryDate: Date;
1503
+ description: string | null;
1504
+ label: string | null;
1505
+ isInStock: boolean;
1506
+ url: string | null;
1507
+ isWithSync: boolean;
1508
+ };
1509
+ multiplicityOptions?: {
1510
+ uuid: string;
1511
+ rank: number;
1512
+ title: string | null;
1513
+ optionMultiplicity: number;
1514
+ optionPrice: number | null;
1515
+ }[] | undefined;
1516
+ };
1517
+ remainingBalance: number;
1518
+ }>, "many">;
1519
+ warnings: z.ZodArray<z.ZodString, "many">;
1520
+ remainingQuantity: z.ZodNumber;
1521
+ }, "strip", z.ZodTypeAny, {
1522
+ matches: {
1523
+ quantity: number;
1524
+ product: {
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
+ deletedAt: Date | null;
1539
+ multiplicity: number;
1540
+ categoryUUID: string | null;
1541
+ color: string | null;
1542
+ vbn: string | null;
1543
+ grower: string | null;
1544
+ category: {
1545
+ name: string;
1546
+ status: import("../../..").CategoryStatusEnum;
1547
+ uuid: string;
1548
+ createdAt: Date;
1549
+ updatedAt: Date;
1550
+ deletedAt: Date | null;
1551
+ multiplicity: number | null;
1552
+ isSizeSeparate: boolean;
1553
+ isSaveCategoryName: boolean;
1554
+ } | null;
1555
+ description: string | null;
1556
+ balance: number;
1557
+ dataSyncId: string | null;
1558
+ consignmentUUID: string;
1559
+ quantity: number;
1560
+ price: number;
1561
+ costPrice: number;
1562
+ isOpen: boolean;
1563
+ article: string | null;
1564
+ barcode: string | null;
1565
+ size: string | null;
1566
+ size2: string | null;
1567
+ size3: string | null;
1568
+ invoicePrice: number | null;
1569
+ invoiceNumber: string | null;
1570
+ imageUUID: string | null;
1571
+ quality: string | null;
1572
+ vat: number | null;
1573
+ image: {
1574
+ name: string;
1575
+ uuid: string;
1576
+ country: string | null;
1577
+ createdAt: Date;
1578
+ updatedAt: Date;
1579
+ deletedAt: Date | null;
1580
+ companyUUID: string;
1581
+ categoryUUID: string | null;
1582
+ color: string | null;
1583
+ vbn: string | null;
1584
+ externalUUID: string | null;
1585
+ productImageUrl: string;
1586
+ grower: string | null;
1587
+ } | null;
1588
+ consignment: {
1589
+ status: import("../../..").ConsignmentStatusEnum;
1590
+ uuid: string;
1591
+ createdAt: Date;
1592
+ updatedAt: Date;
1593
+ deletedAt: Date | null;
1594
+ deliveryDate: Date;
1595
+ id: number;
1596
+ deliveryTime: string | null;
1597
+ clientDeliveryDate: Date;
1598
+ description: string | null;
1599
+ label: string | null;
1600
+ isInStock: boolean;
1601
+ url: string | null;
1602
+ isWithSync: boolean;
1603
+ };
1604
+ multiplicityOptions?: {
1605
+ uuid: string;
1606
+ rank: number;
1607
+ title: string | null;
1608
+ optionMultiplicity: number;
1609
+ optionPrice: number | null;
1610
+ }[] | undefined;
1611
+ };
1612
+ remainingBalance: number;
1613
+ }[];
1614
+ remainingQuantity: number;
1615
+ warnings: string[];
1616
+ item: {
1617
+ name: string | null;
1618
+ uuid: string;
1619
+ categoryUUID: string | null;
1620
+ color: string | null;
1621
+ grower: string | null;
1622
+ category: {
1623
+ name: string;
1624
+ status: import("../../..").CategoryStatusEnum;
1625
+ uuid: string;
1626
+ createdAt: Date;
1627
+ updatedAt: Date;
1628
+ deletedAt: Date | null;
1629
+ multiplicity: number | null;
1630
+ isSizeSeparate: boolean;
1631
+ isSaveCategoryName: boolean;
1632
+ } | null;
1633
+ deliveryDate: Date | null;
1634
+ comment: string | null;
1635
+ quantity: number;
1636
+ price: number | null;
1637
+ size: string | null;
1638
+ tag: string | null;
1639
+ preOrderCollectionItemUUID: string | null;
1640
+ preOrderUUID: string;
1641
+ isPurchased: boolean;
1642
+ isReplaceable: boolean;
1643
+ stopPrice: number | null;
1644
+ highAttention: boolean;
1645
+ parentPreOrderProductUUID: string | null;
1646
+ preOrderCollectionItem: {
1647
+ name: string;
1648
+ type: {
1649
+ name: string;
1650
+ uuid: string;
1651
+ createdAt: Date;
1652
+ updatedAt: Date;
1653
+ deletedAt: Date | null;
1654
+ rank: number;
1655
+ } | null;
1656
+ uuid: string;
1657
+ country: string | null;
1658
+ createdAt: Date;
1659
+ updatedAt: Date;
1660
+ multiplicity: number;
1661
+ categoryUUID: string;
1662
+ color: string | null;
1663
+ grower: string | null;
1664
+ category: {
1665
+ name: string;
1666
+ status: import("../../..").CategoryStatusEnum;
1667
+ uuid: string;
1668
+ createdAt: Date;
1669
+ updatedAt: Date;
1670
+ deletedAt: Date | null;
1671
+ multiplicity: number | null;
1672
+ isSizeSeparate: boolean;
1673
+ isSaveCategoryName: boolean;
1674
+ } | null;
1675
+ description: string | null;
1676
+ group: string | null;
1677
+ balance: number | null;
1678
+ quantity: number | null;
1679
+ price: number;
1680
+ isOpen: boolean;
1681
+ article: string | null;
1682
+ size: string | null;
1683
+ size2: string | null;
1684
+ size3: string | null;
1685
+ imageUUID: string | null;
1686
+ vat: number | null;
1687
+ image: {
1688
+ name: string;
1689
+ uuid: string;
1690
+ country: string | null;
1691
+ createdAt: Date;
1692
+ updatedAt: Date;
1693
+ deletedAt: Date | null;
1694
+ companyUUID: string;
1695
+ categoryUUID: string | null;
1696
+ color: string | null;
1697
+ vbn: string | null;
1698
+ externalUUID: string | null;
1699
+ productImageUrl: string;
1700
+ grower: string | null;
1701
+ } | null;
1702
+ productUUID: string | null;
1703
+ preOrderCollectionUUID: string;
1704
+ advancedPrice: string | null;
1705
+ isSizeCustomizable: boolean;
1706
+ isColorCustomizable: boolean;
1707
+ salesUnit: import("../../..").SalesUnitEnum | null;
1708
+ multiplicityDescription: string | null;
1709
+ matchingProducts: {
1710
+ name: string;
1711
+ uuid: string;
1712
+ country: string | null;
1713
+ color: string | null;
1714
+ grower: string | null;
1715
+ deliveryDate: Date;
1716
+ size: string | null;
1717
+ }[];
1718
+ multiplicityOptions?: {
1719
+ uuid: string;
1720
+ rank: number;
1721
+ title: string | null;
1722
+ optionMultiplicity: number;
1723
+ optionPrice: number | null;
1724
+ }[] | undefined;
1725
+ preOrderedQuantity?: number | undefined;
1726
+ };
1727
+ multiplicityOptionUUID?: string | null | undefined;
1728
+ matchingConfig?: {
1729
+ matchByName: boolean;
1730
+ matchByCategory: boolean;
1731
+ matchByColor: boolean;
1732
+ matchBySize: boolean;
1733
+ matchByGrower: boolean;
1734
+ } | null | undefined;
1735
+ };
1736
+ }, {
1737
+ matches: {
1738
+ quantity: number;
1739
+ product: {
1740
+ name: string;
1741
+ type: {
1742
+ name: string;
1743
+ uuid: string;
1744
+ createdAt: Date;
1745
+ updatedAt: Date;
1746
+ deletedAt: Date | null;
1747
+ rank: number;
1748
+ } | null;
1749
+ uuid: string;
1750
+ country: string | null;
1751
+ createdAt: Date;
1752
+ updatedAt: Date;
1753
+ deletedAt: Date | null;
1754
+ multiplicity: number;
1755
+ categoryUUID: string | null;
1756
+ color: string | null;
1757
+ vbn: string | null;
1758
+ grower: string | null;
1759
+ category: {
1760
+ name: string;
1761
+ status: import("../../..").CategoryStatusEnum;
1762
+ uuid: string;
1763
+ createdAt: Date;
1764
+ updatedAt: Date;
1765
+ deletedAt: Date | null;
1766
+ multiplicity: number | null;
1767
+ isSizeSeparate: boolean;
1768
+ isSaveCategoryName: boolean;
1769
+ } | null;
1770
+ description: string | null;
1771
+ balance: number;
1772
+ dataSyncId: string | null;
1773
+ consignmentUUID: string;
1774
+ quantity: number;
1775
+ price: number;
1776
+ costPrice: number;
1777
+ isOpen: boolean;
1778
+ article: string | null;
1779
+ barcode: string | null;
1780
+ size: string | null;
1781
+ size2: string | null;
1782
+ size3: string | null;
1783
+ invoicePrice: number | null;
1784
+ invoiceNumber: string | null;
1785
+ imageUUID: string | null;
1786
+ quality: string | null;
1787
+ vat: number | null;
1788
+ image: {
1789
+ name: string;
1790
+ uuid: string;
1791
+ country: string | null;
1792
+ createdAt: Date;
1793
+ updatedAt: Date;
1794
+ deletedAt: Date | null;
1795
+ companyUUID: string;
1796
+ categoryUUID: string | null;
1797
+ color: string | null;
1798
+ vbn: string | null;
1799
+ externalUUID: string | null;
1800
+ productImageUrl: string;
1801
+ grower: string | null;
1802
+ } | null;
1803
+ consignment: {
1804
+ status: import("../../..").ConsignmentStatusEnum;
1805
+ uuid: string;
1806
+ createdAt: Date;
1807
+ updatedAt: Date;
1808
+ deletedAt: Date | null;
1809
+ deliveryDate: Date;
1810
+ id: number;
1811
+ deliveryTime: string | null;
1812
+ clientDeliveryDate: Date;
1813
+ description: string | null;
1814
+ label: string | null;
1815
+ isInStock: boolean;
1816
+ url: string | null;
1817
+ isWithSync: boolean;
1818
+ };
1819
+ multiplicityOptions?: {
1820
+ uuid: string;
1821
+ rank: number;
1822
+ title: string | null;
1823
+ optionMultiplicity: number;
1824
+ optionPrice: number | null;
1825
+ }[] | undefined;
1826
+ };
1827
+ remainingBalance: number;
1828
+ }[];
1829
+ remainingQuantity: number;
1830
+ warnings: string[];
1831
+ item: {
1832
+ name: string | null;
1833
+ uuid: string;
1834
+ categoryUUID: string | null;
1835
+ color: string | null;
1836
+ grower: string | null;
1837
+ category: {
1838
+ name: string;
1839
+ status: import("../../..").CategoryStatusEnum;
1840
+ uuid: string;
1841
+ createdAt: Date;
1842
+ updatedAt: Date;
1843
+ deletedAt: Date | null;
1844
+ multiplicity: number | null;
1845
+ isSizeSeparate: boolean;
1846
+ isSaveCategoryName: boolean;
1847
+ } | null;
1848
+ deliveryDate: Date | null;
1849
+ comment: string | null;
1850
+ quantity: number;
1851
+ price: number | null;
1852
+ size: string | null;
1853
+ tag: string | null;
1854
+ preOrderCollectionItemUUID: string | null;
1855
+ preOrderUUID: string;
1856
+ isPurchased: boolean;
1857
+ isReplaceable: boolean;
1858
+ stopPrice: number | null;
1859
+ highAttention: boolean;
1860
+ parentPreOrderProductUUID: string | null;
1861
+ preOrderCollectionItem: {
1862
+ name: string;
1863
+ type: {
1864
+ name: string;
1865
+ uuid: string;
1866
+ createdAt: Date;
1867
+ updatedAt: Date;
1868
+ deletedAt: Date | null;
1869
+ rank: number;
1870
+ } | null;
1871
+ uuid: string;
1872
+ country: string | null;
1873
+ createdAt: Date;
1874
+ updatedAt: Date;
1875
+ multiplicity: number;
1876
+ categoryUUID: string;
1877
+ color: string | null;
1878
+ grower: string | null;
1879
+ category: {
1880
+ name: string;
1881
+ status: import("../../..").CategoryStatusEnum;
1882
+ uuid: string;
1883
+ createdAt: Date;
1884
+ updatedAt: Date;
1885
+ deletedAt: Date | null;
1886
+ multiplicity: number | null;
1887
+ isSizeSeparate: boolean;
1888
+ isSaveCategoryName: boolean;
1889
+ } | null;
1890
+ description: string | null;
1891
+ group: string | null;
1892
+ balance: number | null;
1893
+ quantity: number | null;
1894
+ price: number;
1895
+ isOpen: boolean;
1896
+ article: string | null;
1897
+ size: string | null;
1898
+ size2: string | null;
1899
+ size3: string | null;
1900
+ imageUUID: string | null;
1901
+ vat: number | null;
1902
+ image: {
1903
+ name: string;
1904
+ uuid: string;
1905
+ country: string | null;
1906
+ createdAt: Date;
1907
+ updatedAt: Date;
1908
+ deletedAt: Date | null;
1909
+ companyUUID: string;
1910
+ categoryUUID: string | null;
1911
+ color: string | null;
1912
+ vbn: string | null;
1913
+ externalUUID: string | null;
1914
+ productImageUrl: string;
1915
+ grower: string | null;
1916
+ } | null;
1917
+ productUUID: string | null;
1918
+ preOrderCollectionUUID: string;
1919
+ advancedPrice: string | null;
1920
+ salesUnit: import("../../..").SalesUnitEnum | null;
1921
+ multiplicityDescription: string | null;
1922
+ matchingProducts: {
1923
+ name: string;
1924
+ uuid: string;
1925
+ country: string | null;
1926
+ color: string | null;
1927
+ grower: string | null;
1928
+ deliveryDate: Date;
1929
+ size: string | null;
1930
+ }[];
1931
+ isSizeCustomizable?: boolean | undefined;
1932
+ isColorCustomizable?: boolean | undefined;
1933
+ multiplicityOptions?: {
1934
+ uuid: string;
1935
+ rank: number;
1936
+ title: string | null;
1937
+ optionMultiplicity: number;
1938
+ optionPrice: number | null;
1939
+ }[] | undefined;
1940
+ preOrderedQuantity?: number | undefined;
1941
+ };
1942
+ multiplicityOptionUUID?: string | null | undefined;
1943
+ matchingConfig?: {
1944
+ matchByName: boolean;
1945
+ matchByCategory: boolean;
1946
+ matchByColor: boolean;
1947
+ matchBySize: boolean;
1948
+ matchByGrower: boolean;
1949
+ } | null | undefined;
1950
+ };
1951
+ }>>;
1952
+ warnings: z.ZodArray<z.ZodString, "many">;
1953
+ }, "strip", z.ZodTypeAny, {
1954
+ preOrder: {
1955
+ status: import("../../..").PreOrderStatusEnum;
1956
+ uuid: string;
1957
+ createdAt: Date;
1958
+ comment: string | null;
1959
+ clientUUID: string;
1960
+ branchUUID: string | null;
1961
+ tag: string | null;
1962
+ client: {
1963
+ email: string | null;
1964
+ phone: string | null;
1965
+ name: string;
1966
+ code: string | null;
1967
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
1968
+ uuid: string;
1969
+ contactName: string | null;
1970
+ address: string | null;
1971
+ city: string | null;
1972
+ createdAt: Date;
1973
+ updatedAt: Date;
1974
+ deletedAt: Date | null;
1975
+ companyUUID: string;
1976
+ isCommon: boolean;
1977
+ contractNumber: string | null;
1978
+ contractDate: Date | null;
1979
+ group: string | null;
1980
+ marking: string | null;
1981
+ alwaysRequiresDelivery: boolean;
1982
+ additionalPhone: string | null;
1983
+ comment: string | null;
1984
+ balance: number;
1985
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
1986
+ responsibleUserUUID: string | null;
1987
+ responsibleSince: Date | null;
1988
+ };
1989
+ branch: {
1990
+ name: string;
1991
+ uuid: string;
1992
+ contactName: string | null;
1993
+ contactPhone: string | null;
1994
+ address: string | null;
1995
+ city: string | null;
1996
+ region: string | null;
1997
+ country: string | null;
1998
+ clientId: string;
1999
+ createdAt: Date;
2000
+ updatedAt: Date;
2001
+ } | null;
2002
+ preOrderCollection: {
2003
+ status: import("../../..").PreOrderCollectionStatusEnum;
2004
+ uuid: string;
2005
+ deliveryDate: Date;
2006
+ description: string;
2007
+ label: string | null;
2008
+ availableUntil: Date;
2009
+ imageUrl: string | null;
2010
+ hideItemOptions: boolean;
2011
+ } | null;
2012
+ preOrderNum: number;
2013
+ };
2014
+ mappings: Record<string, {
2015
+ matches: {
2016
+ quantity: number;
2017
+ product: {
2018
+ name: string;
2019
+ type: {
2020
+ name: string;
2021
+ uuid: string;
2022
+ createdAt: Date;
2023
+ updatedAt: Date;
2024
+ deletedAt: Date | null;
2025
+ rank: number;
2026
+ } | null;
2027
+ uuid: string;
2028
+ country: string | null;
2029
+ createdAt: Date;
2030
+ updatedAt: Date;
2031
+ deletedAt: Date | null;
2032
+ multiplicity: number;
2033
+ categoryUUID: string | null;
2034
+ color: string | null;
2035
+ vbn: string | null;
2036
+ grower: string | null;
2037
+ category: {
2038
+ name: string;
2039
+ status: import("../../..").CategoryStatusEnum;
2040
+ uuid: string;
2041
+ createdAt: Date;
2042
+ updatedAt: Date;
2043
+ deletedAt: Date | null;
2044
+ multiplicity: number | null;
2045
+ isSizeSeparate: boolean;
2046
+ isSaveCategoryName: boolean;
2047
+ } | null;
2048
+ description: string | null;
2049
+ balance: number;
2050
+ dataSyncId: string | null;
2051
+ consignmentUUID: string;
2052
+ quantity: number;
2053
+ price: number;
2054
+ costPrice: number;
2055
+ isOpen: boolean;
2056
+ article: string | null;
2057
+ barcode: string | null;
2058
+ size: string | null;
2059
+ size2: string | null;
2060
+ size3: string | null;
2061
+ invoicePrice: number | null;
2062
+ invoiceNumber: string | null;
2063
+ imageUUID: string | null;
2064
+ quality: string | null;
2065
+ vat: number | null;
2066
+ image: {
2067
+ name: string;
2068
+ uuid: string;
2069
+ country: string | null;
2070
+ createdAt: Date;
2071
+ updatedAt: Date;
2072
+ deletedAt: Date | null;
2073
+ companyUUID: string;
2074
+ categoryUUID: string | null;
2075
+ color: string | null;
2076
+ vbn: string | null;
2077
+ externalUUID: string | null;
2078
+ productImageUrl: string;
2079
+ grower: string | null;
2080
+ } | null;
2081
+ consignment: {
2082
+ status: import("../../..").ConsignmentStatusEnum;
2083
+ uuid: string;
2084
+ createdAt: Date;
2085
+ updatedAt: Date;
2086
+ deletedAt: Date | null;
2087
+ deliveryDate: Date;
2088
+ id: number;
2089
+ deliveryTime: string | null;
2090
+ clientDeliveryDate: Date;
2091
+ description: string | null;
2092
+ label: string | null;
2093
+ isInStock: boolean;
2094
+ url: string | null;
2095
+ isWithSync: boolean;
2096
+ };
2097
+ multiplicityOptions?: {
2098
+ uuid: string;
2099
+ rank: number;
2100
+ title: string | null;
2101
+ optionMultiplicity: number;
2102
+ optionPrice: number | null;
2103
+ }[] | undefined;
2104
+ };
2105
+ remainingBalance: number;
2106
+ }[];
2107
+ remainingQuantity: number;
2108
+ warnings: string[];
2109
+ item: {
2110
+ name: string | null;
2111
+ uuid: string;
2112
+ categoryUUID: string | null;
2113
+ color: string | null;
2114
+ grower: string | null;
2115
+ category: {
2116
+ name: string;
2117
+ status: import("../../..").CategoryStatusEnum;
2118
+ uuid: string;
2119
+ createdAt: Date;
2120
+ updatedAt: Date;
2121
+ deletedAt: Date | null;
2122
+ multiplicity: number | null;
2123
+ isSizeSeparate: boolean;
2124
+ isSaveCategoryName: boolean;
2125
+ } | null;
2126
+ deliveryDate: Date | null;
2127
+ comment: string | null;
2128
+ quantity: number;
2129
+ price: number | null;
2130
+ size: string | null;
2131
+ tag: string | null;
2132
+ preOrderCollectionItemUUID: string | null;
2133
+ preOrderUUID: string;
2134
+ isPurchased: boolean;
2135
+ isReplaceable: boolean;
2136
+ stopPrice: number | null;
2137
+ highAttention: boolean;
2138
+ parentPreOrderProductUUID: string | null;
2139
+ preOrderCollectionItem: {
2140
+ name: string;
2141
+ type: {
2142
+ name: string;
2143
+ uuid: string;
2144
+ createdAt: Date;
2145
+ updatedAt: Date;
2146
+ deletedAt: Date | null;
2147
+ rank: number;
2148
+ } | null;
2149
+ uuid: string;
2150
+ country: string | null;
2151
+ createdAt: Date;
2152
+ updatedAt: Date;
2153
+ multiplicity: number;
2154
+ categoryUUID: string;
2155
+ color: string | null;
2156
+ grower: string | null;
2157
+ category: {
2158
+ name: string;
2159
+ status: import("../../..").CategoryStatusEnum;
2160
+ uuid: string;
2161
+ createdAt: Date;
2162
+ updatedAt: Date;
2163
+ deletedAt: Date | null;
2164
+ multiplicity: number | null;
2165
+ isSizeSeparate: boolean;
2166
+ isSaveCategoryName: boolean;
2167
+ } | null;
2168
+ description: string | null;
2169
+ group: string | null;
2170
+ balance: number | null;
2171
+ quantity: number | null;
2172
+ price: number;
2173
+ isOpen: boolean;
2174
+ article: string | null;
2175
+ size: string | null;
2176
+ size2: string | null;
2177
+ size3: string | null;
2178
+ imageUUID: string | null;
2179
+ vat: number | null;
2180
+ image: {
2181
+ name: string;
2182
+ uuid: string;
2183
+ country: string | null;
2184
+ createdAt: Date;
2185
+ updatedAt: Date;
2186
+ deletedAt: Date | null;
2187
+ companyUUID: string;
2188
+ categoryUUID: string | null;
2189
+ color: string | null;
2190
+ vbn: string | null;
2191
+ externalUUID: string | null;
2192
+ productImageUrl: string;
2193
+ grower: string | null;
2194
+ } | null;
2195
+ productUUID: string | null;
2196
+ preOrderCollectionUUID: string;
2197
+ advancedPrice: string | null;
2198
+ isSizeCustomizable: boolean;
2199
+ isColorCustomizable: boolean;
2200
+ salesUnit: import("../../..").SalesUnitEnum | null;
2201
+ multiplicityDescription: string | null;
2202
+ matchingProducts: {
2203
+ name: string;
2204
+ uuid: string;
2205
+ country: string | null;
2206
+ color: string | null;
2207
+ grower: string | null;
2208
+ deliveryDate: Date;
2209
+ size: string | null;
2210
+ }[];
2211
+ multiplicityOptions?: {
2212
+ uuid: string;
2213
+ rank: number;
2214
+ title: string | null;
2215
+ optionMultiplicity: number;
2216
+ optionPrice: number | null;
2217
+ }[] | undefined;
2218
+ preOrderedQuantity?: number | undefined;
2219
+ };
2220
+ multiplicityOptionUUID?: string | null | undefined;
2221
+ matchingConfig?: {
2222
+ matchByName: boolean;
2223
+ matchByCategory: boolean;
2224
+ matchByColor: boolean;
2225
+ matchBySize: boolean;
2226
+ matchByGrower: boolean;
2227
+ } | null | undefined;
2228
+ };
2229
+ }>;
2230
+ warnings: string[];
2231
+ }, {
2232
+ preOrder: {
2233
+ status: import("../../..").PreOrderStatusEnum;
2234
+ uuid: string;
2235
+ createdAt: Date;
2236
+ comment: string | null;
2237
+ clientUUID: string;
2238
+ branchUUID: string | null;
2239
+ tag: string | null;
2240
+ client: {
2241
+ email: string | null;
2242
+ phone: string | null;
2243
+ name: string;
2244
+ code: string | null;
2245
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2246
+ uuid: string;
2247
+ contactName: string | null;
2248
+ address: string | null;
2249
+ city: string | null;
2250
+ createdAt: Date;
2251
+ updatedAt: Date;
2252
+ deletedAt: Date | null;
2253
+ companyUUID: string;
2254
+ isCommon: boolean;
2255
+ contractNumber: string | null;
2256
+ contractDate: Date | null;
2257
+ group: string | null;
2258
+ marking: string | null;
2259
+ alwaysRequiresDelivery: boolean;
2260
+ additionalPhone: string | null;
2261
+ comment: string | null;
2262
+ balance: number;
2263
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2264
+ responsibleUserUUID: string | null;
2265
+ responsibleSince: Date | null;
2266
+ };
2267
+ branch: {
2268
+ name: string;
2269
+ uuid: string;
2270
+ contactName: string | null;
2271
+ contactPhone: string | null;
2272
+ address: string | null;
2273
+ city: string | null;
2274
+ region: string | null;
2275
+ country: string | null;
2276
+ clientId: string;
2277
+ createdAt: Date;
2278
+ updatedAt: Date;
2279
+ } | null;
2280
+ preOrderCollection: {
2281
+ status: import("../../..").PreOrderCollectionStatusEnum;
2282
+ uuid: string;
2283
+ deliveryDate: Date;
2284
+ description: string;
2285
+ label: string | null;
2286
+ availableUntil: Date;
2287
+ imageUrl: string | null;
2288
+ hideItemOptions: boolean;
2289
+ } | null;
2290
+ preOrderNum: number;
2291
+ };
2292
+ mappings: Record<string, {
2293
+ matches: {
2294
+ quantity: number;
2295
+ product: {
2296
+ name: string;
2297
+ type: {
2298
+ name: string;
2299
+ uuid: string;
2300
+ createdAt: Date;
2301
+ updatedAt: Date;
2302
+ deletedAt: Date | null;
2303
+ rank: number;
2304
+ } | null;
2305
+ uuid: string;
2306
+ country: string | null;
2307
+ createdAt: Date;
2308
+ updatedAt: Date;
2309
+ deletedAt: Date | null;
2310
+ multiplicity: number;
2311
+ categoryUUID: string | null;
2312
+ color: string | null;
2313
+ vbn: string | null;
2314
+ grower: string | null;
2315
+ category: {
2316
+ name: string;
2317
+ status: import("../../..").CategoryStatusEnum;
2318
+ uuid: string;
2319
+ createdAt: Date;
2320
+ updatedAt: Date;
2321
+ deletedAt: Date | null;
2322
+ multiplicity: number | null;
2323
+ isSizeSeparate: boolean;
2324
+ isSaveCategoryName: boolean;
2325
+ } | null;
2326
+ description: string | null;
2327
+ balance: number;
2328
+ dataSyncId: string | null;
2329
+ consignmentUUID: string;
2330
+ quantity: number;
2331
+ price: number;
2332
+ costPrice: number;
2333
+ isOpen: boolean;
2334
+ article: string | null;
2335
+ barcode: string | null;
2336
+ size: string | null;
2337
+ size2: string | null;
2338
+ size3: string | null;
2339
+ invoicePrice: number | null;
2340
+ invoiceNumber: string | null;
2341
+ imageUUID: string | null;
2342
+ quality: string | null;
2343
+ vat: number | null;
2344
+ image: {
2345
+ name: string;
2346
+ uuid: string;
2347
+ country: string | null;
2348
+ createdAt: Date;
2349
+ updatedAt: Date;
2350
+ deletedAt: Date | null;
2351
+ companyUUID: string;
2352
+ categoryUUID: string | null;
2353
+ color: string | null;
2354
+ vbn: string | null;
2355
+ externalUUID: string | null;
2356
+ productImageUrl: string;
2357
+ grower: string | null;
2358
+ } | null;
2359
+ consignment: {
2360
+ status: import("../../..").ConsignmentStatusEnum;
2361
+ uuid: string;
2362
+ createdAt: Date;
2363
+ updatedAt: Date;
2364
+ deletedAt: Date | null;
2365
+ deliveryDate: Date;
2366
+ id: number;
2367
+ deliveryTime: string | null;
2368
+ clientDeliveryDate: Date;
2369
+ description: string | null;
2370
+ label: string | null;
2371
+ isInStock: boolean;
2372
+ url: string | null;
2373
+ isWithSync: boolean;
2374
+ };
2375
+ multiplicityOptions?: {
2376
+ uuid: string;
2377
+ rank: number;
2378
+ title: string | null;
2379
+ optionMultiplicity: number;
2380
+ optionPrice: number | null;
2381
+ }[] | undefined;
2382
+ };
2383
+ remainingBalance: number;
2384
+ }[];
2385
+ remainingQuantity: number;
2386
+ warnings: string[];
2387
+ item: {
2388
+ name: string | null;
2389
+ uuid: string;
2390
+ categoryUUID: string | null;
2391
+ color: string | null;
2392
+ grower: string | null;
2393
+ category: {
2394
+ name: string;
2395
+ status: import("../../..").CategoryStatusEnum;
2396
+ uuid: string;
2397
+ createdAt: Date;
2398
+ updatedAt: Date;
2399
+ deletedAt: Date | null;
2400
+ multiplicity: number | null;
2401
+ isSizeSeparate: boolean;
2402
+ isSaveCategoryName: boolean;
2403
+ } | null;
2404
+ deliveryDate: Date | null;
2405
+ comment: string | null;
2406
+ quantity: number;
2407
+ price: number | null;
2408
+ size: string | null;
2409
+ tag: string | null;
2410
+ preOrderCollectionItemUUID: string | null;
2411
+ preOrderUUID: string;
2412
+ isPurchased: boolean;
2413
+ isReplaceable: boolean;
2414
+ stopPrice: number | null;
2415
+ highAttention: boolean;
2416
+ parentPreOrderProductUUID: string | null;
2417
+ preOrderCollectionItem: {
2418
+ name: string;
2419
+ type: {
2420
+ name: string;
2421
+ uuid: string;
2422
+ createdAt: Date;
2423
+ updatedAt: Date;
2424
+ deletedAt: Date | null;
2425
+ rank: number;
2426
+ } | null;
2427
+ uuid: string;
2428
+ country: string | null;
2429
+ createdAt: Date;
2430
+ updatedAt: Date;
2431
+ multiplicity: number;
2432
+ categoryUUID: string;
2433
+ color: string | null;
2434
+ grower: string | null;
2435
+ category: {
2436
+ name: string;
2437
+ status: import("../../..").CategoryStatusEnum;
2438
+ uuid: string;
2439
+ createdAt: Date;
2440
+ updatedAt: Date;
2441
+ deletedAt: Date | null;
2442
+ multiplicity: number | null;
2443
+ isSizeSeparate: boolean;
2444
+ isSaveCategoryName: boolean;
2445
+ } | null;
2446
+ description: string | null;
2447
+ group: string | null;
2448
+ balance: number | null;
2449
+ quantity: number | null;
2450
+ price: number;
2451
+ isOpen: boolean;
2452
+ article: string | null;
2453
+ size: string | null;
2454
+ size2: string | null;
2455
+ size3: string | null;
2456
+ imageUUID: string | null;
2457
+ vat: number | null;
2458
+ image: {
2459
+ name: string;
2460
+ uuid: string;
2461
+ country: string | null;
2462
+ createdAt: Date;
2463
+ updatedAt: Date;
2464
+ deletedAt: Date | null;
2465
+ companyUUID: string;
2466
+ categoryUUID: string | null;
2467
+ color: string | null;
2468
+ vbn: string | null;
2469
+ externalUUID: string | null;
2470
+ productImageUrl: string;
2471
+ grower: string | null;
2472
+ } | null;
2473
+ productUUID: string | null;
2474
+ preOrderCollectionUUID: string;
2475
+ advancedPrice: string | null;
2476
+ salesUnit: import("../../..").SalesUnitEnum | null;
2477
+ multiplicityDescription: string | null;
2478
+ matchingProducts: {
2479
+ name: string;
2480
+ uuid: string;
2481
+ country: string | null;
2482
+ color: string | null;
2483
+ grower: string | null;
2484
+ deliveryDate: Date;
2485
+ size: string | null;
2486
+ }[];
2487
+ isSizeCustomizable?: boolean | undefined;
2488
+ isColorCustomizable?: boolean | undefined;
2489
+ multiplicityOptions?: {
2490
+ uuid: string;
2491
+ rank: number;
2492
+ title: string | null;
2493
+ optionMultiplicity: number;
2494
+ optionPrice: number | null;
2495
+ }[] | undefined;
2496
+ preOrderedQuantity?: number | undefined;
2497
+ };
2498
+ multiplicityOptionUUID?: string | null | undefined;
2499
+ matchingConfig?: {
2500
+ matchByName: boolean;
2501
+ matchByCategory: boolean;
2502
+ matchByColor: boolean;
2503
+ matchBySize: boolean;
2504
+ matchByGrower: boolean;
2505
+ } | null | undefined;
2506
+ };
2507
+ }>;
2508
+ warnings: string[];
2509
+ }>, "many">;
2510
+ errorList: z.ZodOptional<z.ZodArray<z.ZodObject<{
2511
+ code: z.ZodString;
2512
+ message: z.ZodString;
2513
+ }, "strip", z.ZodTypeAny, {
2514
+ code: string;
2515
+ message: string;
2516
+ }, {
2517
+ code: string;
2518
+ message: string;
2519
+ }>, "many">>;
2520
+ }, "strip", z.ZodTypeAny, {
2521
+ analyses: {
2522
+ preOrder: {
2523
+ status: import("../../..").PreOrderStatusEnum;
2524
+ uuid: string;
2525
+ createdAt: Date;
2526
+ comment: string | null;
2527
+ clientUUID: string;
2528
+ branchUUID: string | null;
2529
+ tag: string | null;
2530
+ client: {
2531
+ email: string | null;
2532
+ phone: string | null;
2533
+ name: string;
2534
+ code: string | null;
2535
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2536
+ uuid: string;
2537
+ contactName: string | null;
2538
+ address: string | null;
2539
+ city: string | null;
2540
+ createdAt: Date;
2541
+ updatedAt: Date;
2542
+ deletedAt: Date | null;
2543
+ companyUUID: string;
2544
+ isCommon: boolean;
2545
+ contractNumber: string | null;
2546
+ contractDate: Date | null;
2547
+ group: string | null;
2548
+ marking: string | null;
2549
+ alwaysRequiresDelivery: boolean;
2550
+ additionalPhone: string | null;
2551
+ comment: string | null;
2552
+ balance: number;
2553
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2554
+ responsibleUserUUID: string | null;
2555
+ responsibleSince: Date | null;
2556
+ };
2557
+ branch: {
2558
+ name: string;
2559
+ uuid: string;
2560
+ contactName: string | null;
2561
+ contactPhone: string | null;
2562
+ address: string | null;
2563
+ city: string | null;
2564
+ region: string | null;
2565
+ country: string | null;
2566
+ clientId: string;
2567
+ createdAt: Date;
2568
+ updatedAt: Date;
2569
+ } | null;
2570
+ preOrderCollection: {
2571
+ status: import("../../..").PreOrderCollectionStatusEnum;
2572
+ uuid: string;
2573
+ deliveryDate: Date;
2574
+ description: string;
2575
+ label: string | null;
2576
+ availableUntil: Date;
2577
+ imageUrl: string | null;
2578
+ hideItemOptions: boolean;
2579
+ } | null;
2580
+ preOrderNum: number;
2581
+ };
2582
+ mappings: Record<string, {
2583
+ matches: {
2584
+ quantity: number;
2585
+ product: {
2586
+ name: string;
2587
+ type: {
2588
+ name: string;
2589
+ uuid: string;
2590
+ createdAt: Date;
2591
+ updatedAt: Date;
2592
+ deletedAt: Date | null;
2593
+ rank: number;
2594
+ } | null;
2595
+ uuid: string;
2596
+ country: string | null;
2597
+ createdAt: Date;
2598
+ updatedAt: Date;
2599
+ deletedAt: Date | null;
2600
+ multiplicity: number;
2601
+ categoryUUID: string | null;
2602
+ color: string | null;
2603
+ vbn: string | null;
2604
+ grower: string | null;
2605
+ category: {
2606
+ name: string;
2607
+ status: import("../../..").CategoryStatusEnum;
2608
+ uuid: string;
2609
+ createdAt: Date;
2610
+ updatedAt: Date;
2611
+ deletedAt: Date | null;
2612
+ multiplicity: number | null;
2613
+ isSizeSeparate: boolean;
2614
+ isSaveCategoryName: boolean;
2615
+ } | null;
2616
+ description: string | null;
2617
+ balance: number;
2618
+ dataSyncId: string | null;
2619
+ consignmentUUID: string;
2620
+ quantity: number;
2621
+ price: number;
2622
+ costPrice: number;
2623
+ isOpen: boolean;
2624
+ article: string | null;
2625
+ barcode: string | null;
2626
+ size: string | null;
2627
+ size2: string | null;
2628
+ size3: string | null;
2629
+ invoicePrice: number | null;
2630
+ invoiceNumber: string | null;
2631
+ imageUUID: string | null;
2632
+ quality: string | null;
2633
+ vat: number | null;
2634
+ image: {
2635
+ name: string;
2636
+ uuid: string;
2637
+ country: string | null;
2638
+ createdAt: Date;
2639
+ updatedAt: Date;
2640
+ deletedAt: Date | null;
2641
+ companyUUID: string;
2642
+ categoryUUID: string | null;
2643
+ color: string | null;
2644
+ vbn: string | null;
2645
+ externalUUID: string | null;
2646
+ productImageUrl: string;
2647
+ grower: string | null;
2648
+ } | null;
2649
+ consignment: {
2650
+ status: import("../../..").ConsignmentStatusEnum;
2651
+ uuid: string;
2652
+ createdAt: Date;
2653
+ updatedAt: Date;
2654
+ deletedAt: Date | null;
2655
+ deliveryDate: Date;
2656
+ id: number;
2657
+ deliveryTime: string | null;
2658
+ clientDeliveryDate: Date;
2659
+ description: string | null;
2660
+ label: string | null;
2661
+ isInStock: boolean;
2662
+ url: string | null;
2663
+ isWithSync: boolean;
2664
+ };
2665
+ multiplicityOptions?: {
2666
+ uuid: string;
2667
+ rank: number;
2668
+ title: string | null;
2669
+ optionMultiplicity: number;
2670
+ optionPrice: number | null;
2671
+ }[] | undefined;
2672
+ };
2673
+ remainingBalance: number;
2674
+ }[];
2675
+ remainingQuantity: number;
2676
+ warnings: string[];
2677
+ item: {
2678
+ name: string | null;
2679
+ uuid: string;
2680
+ categoryUUID: string | null;
2681
+ color: string | null;
2682
+ grower: string | null;
2683
+ category: {
2684
+ name: string;
2685
+ status: import("../../..").CategoryStatusEnum;
2686
+ uuid: string;
2687
+ createdAt: Date;
2688
+ updatedAt: Date;
2689
+ deletedAt: Date | null;
2690
+ multiplicity: number | null;
2691
+ isSizeSeparate: boolean;
2692
+ isSaveCategoryName: boolean;
2693
+ } | null;
2694
+ deliveryDate: Date | null;
2695
+ comment: string | null;
2696
+ quantity: number;
2697
+ price: number | null;
2698
+ size: string | null;
2699
+ tag: string | null;
2700
+ preOrderCollectionItemUUID: string | null;
2701
+ preOrderUUID: string;
2702
+ isPurchased: boolean;
2703
+ isReplaceable: boolean;
2704
+ stopPrice: number | null;
2705
+ highAttention: boolean;
2706
+ parentPreOrderProductUUID: string | null;
2707
+ preOrderCollectionItem: {
2708
+ name: string;
2709
+ type: {
2710
+ name: string;
2711
+ uuid: string;
2712
+ createdAt: Date;
2713
+ updatedAt: Date;
2714
+ deletedAt: Date | null;
2715
+ rank: number;
2716
+ } | null;
2717
+ uuid: string;
2718
+ country: string | null;
2719
+ createdAt: Date;
2720
+ updatedAt: Date;
2721
+ multiplicity: number;
2722
+ categoryUUID: string;
2723
+ color: string | null;
2724
+ grower: string | null;
2725
+ category: {
2726
+ name: string;
2727
+ status: import("../../..").CategoryStatusEnum;
2728
+ uuid: string;
2729
+ createdAt: Date;
2730
+ updatedAt: Date;
2731
+ deletedAt: Date | null;
2732
+ multiplicity: number | null;
2733
+ isSizeSeparate: boolean;
2734
+ isSaveCategoryName: boolean;
2735
+ } | null;
2736
+ description: string | null;
2737
+ group: string | null;
2738
+ balance: number | null;
2739
+ quantity: number | null;
2740
+ price: number;
2741
+ isOpen: boolean;
2742
+ article: string | null;
2743
+ size: string | null;
2744
+ size2: string | null;
2745
+ size3: string | null;
2746
+ imageUUID: string | null;
2747
+ vat: number | null;
2748
+ image: {
2749
+ name: string;
2750
+ uuid: string;
2751
+ country: string | null;
2752
+ createdAt: Date;
2753
+ updatedAt: Date;
2754
+ deletedAt: Date | null;
2755
+ companyUUID: string;
2756
+ categoryUUID: string | null;
2757
+ color: string | null;
2758
+ vbn: string | null;
2759
+ externalUUID: string | null;
2760
+ productImageUrl: string;
2761
+ grower: string | null;
2762
+ } | null;
2763
+ productUUID: string | null;
2764
+ preOrderCollectionUUID: string;
2765
+ advancedPrice: string | null;
2766
+ isSizeCustomizable: boolean;
2767
+ isColorCustomizable: boolean;
2768
+ salesUnit: import("../../..").SalesUnitEnum | null;
2769
+ multiplicityDescription: string | null;
2770
+ matchingProducts: {
2771
+ name: string;
2772
+ uuid: string;
2773
+ country: string | null;
2774
+ color: string | null;
2775
+ grower: string | null;
2776
+ deliveryDate: Date;
2777
+ size: string | null;
2778
+ }[];
2779
+ multiplicityOptions?: {
2780
+ uuid: string;
2781
+ rank: number;
2782
+ title: string | null;
2783
+ optionMultiplicity: number;
2784
+ optionPrice: number | null;
2785
+ }[] | undefined;
2786
+ preOrderedQuantity?: number | undefined;
2787
+ };
2788
+ multiplicityOptionUUID?: string | null | undefined;
2789
+ matchingConfig?: {
2790
+ matchByName: boolean;
2791
+ matchByCategory: boolean;
2792
+ matchByColor: boolean;
2793
+ matchBySize: boolean;
2794
+ matchByGrower: boolean;
2795
+ } | null | undefined;
2796
+ };
2797
+ }>;
2798
+ warnings: string[];
2799
+ }[];
2800
+ errorList?: {
2801
+ code: string;
2802
+ message: string;
2803
+ }[] | undefined;
2804
+ }, {
2805
+ analyses: {
2806
+ preOrder: {
2807
+ status: import("../../..").PreOrderStatusEnum;
2808
+ uuid: string;
2809
+ createdAt: Date;
2810
+ comment: string | null;
2811
+ clientUUID: string;
2812
+ branchUUID: string | null;
2813
+ tag: string | null;
2814
+ client: {
2815
+ email: string | null;
2816
+ phone: string | null;
2817
+ name: string;
2818
+ code: string | null;
2819
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
2820
+ uuid: string;
2821
+ contactName: string | null;
2822
+ address: string | null;
2823
+ city: string | null;
2824
+ createdAt: Date;
2825
+ updatedAt: Date;
2826
+ deletedAt: Date | null;
2827
+ companyUUID: string;
2828
+ isCommon: boolean;
2829
+ contractNumber: string | null;
2830
+ contractDate: Date | null;
2831
+ group: string | null;
2832
+ marking: string | null;
2833
+ alwaysRequiresDelivery: boolean;
2834
+ additionalPhone: string | null;
2835
+ comment: string | null;
2836
+ balance: number;
2837
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
2838
+ responsibleUserUUID: string | null;
2839
+ responsibleSince: Date | null;
2840
+ };
2841
+ branch: {
2842
+ name: string;
2843
+ uuid: string;
2844
+ contactName: string | null;
2845
+ contactPhone: string | null;
2846
+ address: string | null;
2847
+ city: string | null;
2848
+ region: string | null;
2849
+ country: string | null;
2850
+ clientId: string;
2851
+ createdAt: Date;
2852
+ updatedAt: Date;
2853
+ } | null;
2854
+ preOrderCollection: {
2855
+ status: import("../../..").PreOrderCollectionStatusEnum;
2856
+ uuid: string;
2857
+ deliveryDate: Date;
2858
+ description: string;
2859
+ label: string | null;
2860
+ availableUntil: Date;
2861
+ imageUrl: string | null;
2862
+ hideItemOptions: boolean;
2863
+ } | null;
2864
+ preOrderNum: number;
2865
+ };
2866
+ mappings: Record<string, {
2867
+ matches: {
2868
+ quantity: number;
2869
+ product: {
2870
+ name: string;
2871
+ type: {
2872
+ name: string;
2873
+ uuid: string;
2874
+ createdAt: Date;
2875
+ updatedAt: Date;
2876
+ deletedAt: Date | null;
2877
+ rank: number;
2878
+ } | null;
2879
+ uuid: string;
2880
+ country: string | null;
2881
+ createdAt: Date;
2882
+ updatedAt: Date;
2883
+ deletedAt: Date | null;
2884
+ multiplicity: number;
2885
+ categoryUUID: string | null;
2886
+ color: string | null;
2887
+ vbn: string | null;
2888
+ grower: string | null;
2889
+ category: {
2890
+ name: string;
2891
+ status: import("../../..").CategoryStatusEnum;
2892
+ uuid: string;
2893
+ createdAt: Date;
2894
+ updatedAt: Date;
2895
+ deletedAt: Date | null;
2896
+ multiplicity: number | null;
2897
+ isSizeSeparate: boolean;
2898
+ isSaveCategoryName: boolean;
2899
+ } | null;
2900
+ description: string | null;
2901
+ balance: number;
2902
+ dataSyncId: string | null;
2903
+ consignmentUUID: string;
2904
+ quantity: number;
2905
+ price: number;
2906
+ costPrice: number;
2907
+ isOpen: boolean;
2908
+ article: string | null;
2909
+ barcode: string | null;
2910
+ size: string | null;
2911
+ size2: string | null;
2912
+ size3: string | null;
2913
+ invoicePrice: number | null;
2914
+ invoiceNumber: string | null;
2915
+ imageUUID: string | null;
2916
+ quality: string | null;
2917
+ vat: number | null;
2918
+ image: {
2919
+ name: string;
2920
+ uuid: string;
2921
+ country: string | null;
2922
+ createdAt: Date;
2923
+ updatedAt: Date;
2924
+ deletedAt: Date | null;
2925
+ companyUUID: string;
2926
+ categoryUUID: string | null;
2927
+ color: string | null;
2928
+ vbn: string | null;
2929
+ externalUUID: string | null;
2930
+ productImageUrl: string;
2931
+ grower: string | null;
2932
+ } | null;
2933
+ consignment: {
2934
+ status: import("../../..").ConsignmentStatusEnum;
2935
+ uuid: string;
2936
+ createdAt: Date;
2937
+ updatedAt: Date;
2938
+ deletedAt: Date | null;
2939
+ deliveryDate: Date;
2940
+ id: number;
2941
+ deliveryTime: string | null;
2942
+ clientDeliveryDate: Date;
2943
+ description: string | null;
2944
+ label: string | null;
2945
+ isInStock: boolean;
2946
+ url: string | null;
2947
+ isWithSync: boolean;
2948
+ };
2949
+ multiplicityOptions?: {
2950
+ uuid: string;
2951
+ rank: number;
2952
+ title: string | null;
2953
+ optionMultiplicity: number;
2954
+ optionPrice: number | null;
2955
+ }[] | undefined;
2956
+ };
2957
+ remainingBalance: number;
2958
+ }[];
2959
+ remainingQuantity: number;
2960
+ warnings: string[];
2961
+ item: {
2962
+ name: string | null;
2963
+ uuid: string;
2964
+ categoryUUID: string | null;
2965
+ color: string | null;
2966
+ grower: string | null;
2967
+ category: {
2968
+ name: string;
2969
+ status: import("../../..").CategoryStatusEnum;
2970
+ uuid: string;
2971
+ createdAt: Date;
2972
+ updatedAt: Date;
2973
+ deletedAt: Date | null;
2974
+ multiplicity: number | null;
2975
+ isSizeSeparate: boolean;
2976
+ isSaveCategoryName: boolean;
2977
+ } | null;
2978
+ deliveryDate: Date | null;
2979
+ comment: string | null;
2980
+ quantity: number;
2981
+ price: number | null;
2982
+ size: string | null;
2983
+ tag: string | null;
2984
+ preOrderCollectionItemUUID: string | null;
2985
+ preOrderUUID: string;
2986
+ isPurchased: boolean;
2987
+ isReplaceable: boolean;
2988
+ stopPrice: number | null;
2989
+ highAttention: boolean;
2990
+ parentPreOrderProductUUID: string | null;
2991
+ preOrderCollectionItem: {
2992
+ name: string;
2993
+ type: {
2994
+ name: string;
2995
+ uuid: string;
2996
+ createdAt: Date;
2997
+ updatedAt: Date;
2998
+ deletedAt: Date | null;
2999
+ rank: number;
3000
+ } | null;
3001
+ uuid: string;
3002
+ country: string | null;
3003
+ createdAt: Date;
3004
+ updatedAt: Date;
3005
+ multiplicity: number;
3006
+ categoryUUID: string;
3007
+ color: string | null;
3008
+ grower: string | null;
3009
+ category: {
3010
+ name: string;
3011
+ status: import("../../..").CategoryStatusEnum;
3012
+ uuid: string;
3013
+ createdAt: Date;
3014
+ updatedAt: Date;
3015
+ deletedAt: Date | null;
3016
+ multiplicity: number | null;
3017
+ isSizeSeparate: boolean;
3018
+ isSaveCategoryName: boolean;
3019
+ } | null;
3020
+ description: string | null;
3021
+ group: string | null;
3022
+ balance: number | null;
3023
+ quantity: number | null;
3024
+ price: number;
3025
+ isOpen: boolean;
3026
+ article: string | null;
3027
+ size: string | null;
3028
+ size2: string | null;
3029
+ size3: string | null;
3030
+ imageUUID: string | null;
3031
+ vat: number | null;
3032
+ image: {
3033
+ name: string;
3034
+ uuid: string;
3035
+ country: string | null;
3036
+ createdAt: Date;
3037
+ updatedAt: Date;
3038
+ deletedAt: Date | null;
3039
+ companyUUID: string;
3040
+ categoryUUID: string | null;
3041
+ color: string | null;
3042
+ vbn: string | null;
3043
+ externalUUID: string | null;
3044
+ productImageUrl: string;
3045
+ grower: string | null;
3046
+ } | null;
3047
+ productUUID: string | null;
3048
+ preOrderCollectionUUID: string;
3049
+ advancedPrice: string | null;
3050
+ salesUnit: import("../../..").SalesUnitEnum | null;
3051
+ multiplicityDescription: string | null;
3052
+ matchingProducts: {
3053
+ name: string;
3054
+ uuid: string;
3055
+ country: string | null;
3056
+ color: string | null;
3057
+ grower: string | null;
3058
+ deliveryDate: Date;
3059
+ size: string | null;
3060
+ }[];
3061
+ isSizeCustomizable?: boolean | undefined;
3062
+ isColorCustomizable?: boolean | undefined;
3063
+ multiplicityOptions?: {
3064
+ uuid: string;
3065
+ rank: number;
3066
+ title: string | null;
3067
+ optionMultiplicity: number;
3068
+ optionPrice: number | null;
3069
+ }[] | undefined;
3070
+ preOrderedQuantity?: number | undefined;
3071
+ };
3072
+ multiplicityOptionUUID?: string | null | undefined;
3073
+ matchingConfig?: {
3074
+ matchByName: boolean;
3075
+ matchByCategory: boolean;
3076
+ matchByColor: boolean;
3077
+ matchBySize: boolean;
3078
+ matchByGrower: boolean;
3079
+ } | null | undefined;
3080
+ };
3081
+ }>;
3082
+ warnings: string[];
3083
+ }[];
3084
+ errorList?: {
3085
+ code: string;
3086
+ message: string;
3087
+ }[] | undefined;
3088
+ }>;
3089
+ }, "strip", z.ZodTypeAny, {
3090
+ data: {
3091
+ analyses: {
3092
+ preOrder: {
3093
+ status: import("../../..").PreOrderStatusEnum;
3094
+ uuid: string;
3095
+ createdAt: Date;
3096
+ comment: string | null;
3097
+ clientUUID: string;
3098
+ branchUUID: string | null;
3099
+ tag: string | null;
3100
+ client: {
3101
+ email: string | null;
3102
+ phone: string | null;
3103
+ name: string;
3104
+ code: string | null;
3105
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
3106
+ uuid: string;
3107
+ contactName: string | null;
3108
+ address: string | null;
3109
+ city: string | null;
3110
+ createdAt: Date;
3111
+ updatedAt: Date;
3112
+ deletedAt: Date | null;
3113
+ companyUUID: string;
3114
+ isCommon: boolean;
3115
+ contractNumber: string | null;
3116
+ contractDate: Date | null;
3117
+ group: string | null;
3118
+ marking: string | null;
3119
+ alwaysRequiresDelivery: boolean;
3120
+ additionalPhone: string | null;
3121
+ comment: string | null;
3122
+ balance: number;
3123
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
3124
+ responsibleUserUUID: string | null;
3125
+ responsibleSince: Date | null;
3126
+ };
3127
+ branch: {
3128
+ name: string;
3129
+ uuid: string;
3130
+ contactName: string | null;
3131
+ contactPhone: string | null;
3132
+ address: string | null;
3133
+ city: string | null;
3134
+ region: string | null;
3135
+ country: string | null;
3136
+ clientId: string;
3137
+ createdAt: Date;
3138
+ updatedAt: Date;
3139
+ } | null;
3140
+ preOrderCollection: {
3141
+ status: import("../../..").PreOrderCollectionStatusEnum;
3142
+ uuid: string;
3143
+ deliveryDate: Date;
3144
+ description: string;
3145
+ label: string | null;
3146
+ availableUntil: Date;
3147
+ imageUrl: string | null;
3148
+ hideItemOptions: boolean;
3149
+ } | null;
3150
+ preOrderNum: number;
3151
+ };
3152
+ mappings: Record<string, {
3153
+ matches: {
3154
+ quantity: number;
3155
+ product: {
3156
+ name: string;
3157
+ type: {
3158
+ name: string;
3159
+ uuid: string;
3160
+ createdAt: Date;
3161
+ updatedAt: Date;
3162
+ deletedAt: Date | null;
3163
+ rank: number;
3164
+ } | null;
3165
+ uuid: string;
3166
+ country: string | null;
3167
+ createdAt: Date;
3168
+ updatedAt: Date;
3169
+ deletedAt: Date | null;
3170
+ multiplicity: number;
3171
+ categoryUUID: string | null;
3172
+ color: string | null;
3173
+ vbn: string | null;
3174
+ grower: string | null;
3175
+ category: {
3176
+ name: string;
3177
+ status: import("../../..").CategoryStatusEnum;
3178
+ uuid: string;
3179
+ createdAt: Date;
3180
+ updatedAt: Date;
3181
+ deletedAt: Date | null;
3182
+ multiplicity: number | null;
3183
+ isSizeSeparate: boolean;
3184
+ isSaveCategoryName: boolean;
3185
+ } | null;
3186
+ description: string | null;
3187
+ balance: number;
3188
+ dataSyncId: string | null;
3189
+ consignmentUUID: string;
3190
+ quantity: number;
3191
+ price: number;
3192
+ costPrice: number;
3193
+ isOpen: boolean;
3194
+ article: string | null;
3195
+ barcode: string | null;
3196
+ size: string | null;
3197
+ size2: string | null;
3198
+ size3: string | null;
3199
+ invoicePrice: number | null;
3200
+ invoiceNumber: string | null;
3201
+ imageUUID: string | null;
3202
+ quality: string | null;
3203
+ vat: number | null;
3204
+ image: {
3205
+ name: string;
3206
+ uuid: string;
3207
+ country: string | null;
3208
+ createdAt: Date;
3209
+ updatedAt: Date;
3210
+ deletedAt: Date | null;
3211
+ companyUUID: string;
3212
+ categoryUUID: string | null;
3213
+ color: string | null;
3214
+ vbn: string | null;
3215
+ externalUUID: string | null;
3216
+ productImageUrl: string;
3217
+ grower: string | null;
3218
+ } | null;
3219
+ consignment: {
3220
+ status: import("../../..").ConsignmentStatusEnum;
3221
+ uuid: string;
3222
+ createdAt: Date;
3223
+ updatedAt: Date;
3224
+ deletedAt: Date | null;
3225
+ deliveryDate: Date;
3226
+ id: number;
3227
+ deliveryTime: string | null;
3228
+ clientDeliveryDate: Date;
3229
+ description: string | null;
3230
+ label: string | null;
3231
+ isInStock: boolean;
3232
+ url: string | null;
3233
+ isWithSync: boolean;
3234
+ };
3235
+ multiplicityOptions?: {
3236
+ uuid: string;
3237
+ rank: number;
3238
+ title: string | null;
3239
+ optionMultiplicity: number;
3240
+ optionPrice: number | null;
3241
+ }[] | undefined;
3242
+ };
3243
+ remainingBalance: number;
3244
+ }[];
3245
+ remainingQuantity: number;
3246
+ warnings: string[];
3247
+ item: {
3248
+ name: string | null;
3249
+ uuid: string;
3250
+ categoryUUID: string | null;
3251
+ color: string | null;
3252
+ grower: string | null;
3253
+ category: {
3254
+ name: string;
3255
+ status: import("../../..").CategoryStatusEnum;
3256
+ uuid: string;
3257
+ createdAt: Date;
3258
+ updatedAt: Date;
3259
+ deletedAt: Date | null;
3260
+ multiplicity: number | null;
3261
+ isSizeSeparate: boolean;
3262
+ isSaveCategoryName: boolean;
3263
+ } | null;
3264
+ deliveryDate: Date | null;
3265
+ comment: string | null;
3266
+ quantity: number;
3267
+ price: number | null;
3268
+ size: string | null;
3269
+ tag: string | null;
3270
+ preOrderCollectionItemUUID: string | null;
3271
+ preOrderUUID: string;
3272
+ isPurchased: boolean;
3273
+ isReplaceable: boolean;
3274
+ stopPrice: number | null;
3275
+ highAttention: boolean;
3276
+ parentPreOrderProductUUID: string | null;
3277
+ preOrderCollectionItem: {
3278
+ name: string;
3279
+ type: {
3280
+ name: string;
3281
+ uuid: string;
3282
+ createdAt: Date;
3283
+ updatedAt: Date;
3284
+ deletedAt: Date | null;
3285
+ rank: number;
3286
+ } | null;
3287
+ uuid: string;
3288
+ country: string | null;
3289
+ createdAt: Date;
3290
+ updatedAt: Date;
3291
+ multiplicity: number;
3292
+ categoryUUID: string;
3293
+ color: string | null;
3294
+ grower: string | null;
3295
+ category: {
3296
+ name: string;
3297
+ status: import("../../..").CategoryStatusEnum;
3298
+ uuid: string;
3299
+ createdAt: Date;
3300
+ updatedAt: Date;
3301
+ deletedAt: Date | null;
3302
+ multiplicity: number | null;
3303
+ isSizeSeparate: boolean;
3304
+ isSaveCategoryName: boolean;
3305
+ } | null;
3306
+ description: string | null;
3307
+ group: string | null;
3308
+ balance: number | null;
3309
+ quantity: number | null;
3310
+ price: number;
3311
+ isOpen: boolean;
3312
+ article: string | null;
3313
+ size: string | null;
3314
+ size2: string | null;
3315
+ size3: string | null;
3316
+ imageUUID: string | null;
3317
+ vat: number | null;
3318
+ image: {
3319
+ name: string;
3320
+ uuid: string;
3321
+ country: string | null;
3322
+ createdAt: Date;
3323
+ updatedAt: Date;
3324
+ deletedAt: Date | null;
3325
+ companyUUID: string;
3326
+ categoryUUID: string | null;
3327
+ color: string | null;
3328
+ vbn: string | null;
3329
+ externalUUID: string | null;
3330
+ productImageUrl: string;
3331
+ grower: string | null;
3332
+ } | null;
3333
+ productUUID: string | null;
3334
+ preOrderCollectionUUID: string;
3335
+ advancedPrice: string | null;
3336
+ isSizeCustomizable: boolean;
3337
+ isColorCustomizable: boolean;
3338
+ salesUnit: import("../../..").SalesUnitEnum | null;
3339
+ multiplicityDescription: string | null;
3340
+ matchingProducts: {
3341
+ name: string;
3342
+ uuid: string;
3343
+ country: string | null;
3344
+ color: string | null;
3345
+ grower: string | null;
3346
+ deliveryDate: Date;
3347
+ size: string | null;
3348
+ }[];
3349
+ multiplicityOptions?: {
3350
+ uuid: string;
3351
+ rank: number;
3352
+ title: string | null;
3353
+ optionMultiplicity: number;
3354
+ optionPrice: number | null;
3355
+ }[] | undefined;
3356
+ preOrderedQuantity?: number | undefined;
3357
+ };
3358
+ multiplicityOptionUUID?: string | null | undefined;
3359
+ matchingConfig?: {
3360
+ matchByName: boolean;
3361
+ matchByCategory: boolean;
3362
+ matchByColor: boolean;
3363
+ matchBySize: boolean;
3364
+ matchByGrower: boolean;
3365
+ } | null | undefined;
3366
+ };
3367
+ }>;
3368
+ warnings: string[];
3369
+ }[];
3370
+ errorList?: {
3371
+ code: string;
3372
+ message: string;
3373
+ }[] | undefined;
3374
+ };
3375
+ message?: string | undefined;
3376
+ }, {
3377
+ data: {
3378
+ analyses: {
3379
+ preOrder: {
3380
+ status: import("../../..").PreOrderStatusEnum;
3381
+ uuid: string;
3382
+ createdAt: Date;
3383
+ comment: string | null;
3384
+ clientUUID: string;
3385
+ branchUUID: string | null;
3386
+ tag: string | null;
3387
+ client: {
3388
+ email: string | null;
3389
+ phone: string | null;
3390
+ name: string;
3391
+ code: string | null;
3392
+ status: import("../../../enum/client-status.enum").ClientStatusEnum;
3393
+ uuid: string;
3394
+ contactName: string | null;
3395
+ address: string | null;
3396
+ city: string | null;
3397
+ createdAt: Date;
3398
+ updatedAt: Date;
3399
+ deletedAt: Date | null;
3400
+ companyUUID: string;
3401
+ isCommon: boolean;
3402
+ contractNumber: string | null;
3403
+ contractDate: Date | null;
3404
+ group: string | null;
3405
+ marking: string | null;
3406
+ alwaysRequiresDelivery: boolean;
3407
+ additionalPhone: string | null;
3408
+ comment: string | null;
3409
+ balance: number;
3410
+ clientType: import("../../../enum/client-type.enum").ClientTypeEnum;
3411
+ responsibleUserUUID: string | null;
3412
+ responsibleSince: Date | null;
3413
+ };
3414
+ branch: {
3415
+ name: string;
3416
+ uuid: string;
3417
+ contactName: string | null;
3418
+ contactPhone: string | null;
3419
+ address: string | null;
3420
+ city: string | null;
3421
+ region: string | null;
3422
+ country: string | null;
3423
+ clientId: string;
3424
+ createdAt: Date;
3425
+ updatedAt: Date;
3426
+ } | null;
3427
+ preOrderCollection: {
3428
+ status: import("../../..").PreOrderCollectionStatusEnum;
3429
+ uuid: string;
3430
+ deliveryDate: Date;
3431
+ description: string;
3432
+ label: string | null;
3433
+ availableUntil: Date;
3434
+ imageUrl: string | null;
3435
+ hideItemOptions: boolean;
3436
+ } | null;
3437
+ preOrderNum: number;
3438
+ };
3439
+ mappings: Record<string, {
3440
+ matches: {
3441
+ quantity: number;
3442
+ product: {
3443
+ name: string;
3444
+ type: {
3445
+ name: string;
3446
+ uuid: string;
3447
+ createdAt: Date;
3448
+ updatedAt: Date;
3449
+ deletedAt: Date | null;
3450
+ rank: number;
3451
+ } | null;
3452
+ uuid: string;
3453
+ country: string | null;
3454
+ createdAt: Date;
3455
+ updatedAt: Date;
3456
+ deletedAt: Date | null;
3457
+ multiplicity: number;
3458
+ categoryUUID: string | null;
3459
+ color: string | null;
3460
+ vbn: string | null;
3461
+ grower: string | null;
3462
+ category: {
3463
+ name: string;
3464
+ status: import("../../..").CategoryStatusEnum;
3465
+ uuid: string;
3466
+ createdAt: Date;
3467
+ updatedAt: Date;
3468
+ deletedAt: Date | null;
3469
+ multiplicity: number | null;
3470
+ isSizeSeparate: boolean;
3471
+ isSaveCategoryName: boolean;
3472
+ } | null;
3473
+ description: string | null;
3474
+ balance: number;
3475
+ dataSyncId: string | null;
3476
+ consignmentUUID: string;
3477
+ quantity: number;
3478
+ price: number;
3479
+ costPrice: number;
3480
+ isOpen: boolean;
3481
+ article: string | null;
3482
+ barcode: string | null;
3483
+ size: string | null;
3484
+ size2: string | null;
3485
+ size3: string | null;
3486
+ invoicePrice: number | null;
3487
+ invoiceNumber: string | null;
3488
+ imageUUID: string | null;
3489
+ quality: string | null;
3490
+ vat: number | null;
3491
+ image: {
3492
+ name: string;
3493
+ uuid: string;
3494
+ country: string | null;
3495
+ createdAt: Date;
3496
+ updatedAt: Date;
3497
+ deletedAt: Date | null;
3498
+ companyUUID: string;
3499
+ categoryUUID: string | null;
3500
+ color: string | null;
3501
+ vbn: string | null;
3502
+ externalUUID: string | null;
3503
+ productImageUrl: string;
3504
+ grower: string | null;
3505
+ } | null;
3506
+ consignment: {
3507
+ status: import("../../..").ConsignmentStatusEnum;
3508
+ uuid: string;
3509
+ createdAt: Date;
3510
+ updatedAt: Date;
3511
+ deletedAt: Date | null;
3512
+ deliveryDate: Date;
3513
+ id: number;
3514
+ deliveryTime: string | null;
3515
+ clientDeliveryDate: Date;
3516
+ description: string | null;
3517
+ label: string | null;
3518
+ isInStock: boolean;
3519
+ url: string | null;
3520
+ isWithSync: boolean;
3521
+ };
3522
+ multiplicityOptions?: {
3523
+ uuid: string;
3524
+ rank: number;
3525
+ title: string | null;
3526
+ optionMultiplicity: number;
3527
+ optionPrice: number | null;
3528
+ }[] | undefined;
3529
+ };
3530
+ remainingBalance: number;
3531
+ }[];
3532
+ remainingQuantity: number;
3533
+ warnings: string[];
3534
+ item: {
3535
+ name: string | null;
3536
+ uuid: string;
3537
+ categoryUUID: string | null;
3538
+ color: string | null;
3539
+ grower: string | null;
3540
+ category: {
3541
+ name: string;
3542
+ status: import("../../..").CategoryStatusEnum;
3543
+ uuid: string;
3544
+ createdAt: Date;
3545
+ updatedAt: Date;
3546
+ deletedAt: Date | null;
3547
+ multiplicity: number | null;
3548
+ isSizeSeparate: boolean;
3549
+ isSaveCategoryName: boolean;
3550
+ } | null;
3551
+ deliveryDate: Date | null;
3552
+ comment: string | null;
3553
+ quantity: number;
3554
+ price: number | null;
3555
+ size: string | null;
3556
+ tag: string | null;
3557
+ preOrderCollectionItemUUID: string | null;
3558
+ preOrderUUID: string;
3559
+ isPurchased: boolean;
3560
+ isReplaceable: boolean;
3561
+ stopPrice: number | null;
3562
+ highAttention: boolean;
3563
+ parentPreOrderProductUUID: string | null;
3564
+ preOrderCollectionItem: {
3565
+ name: string;
3566
+ type: {
3567
+ name: string;
3568
+ uuid: string;
3569
+ createdAt: Date;
3570
+ updatedAt: Date;
3571
+ deletedAt: Date | null;
3572
+ rank: number;
3573
+ } | null;
3574
+ uuid: string;
3575
+ country: string | null;
3576
+ createdAt: Date;
3577
+ updatedAt: Date;
3578
+ multiplicity: number;
3579
+ categoryUUID: string;
3580
+ color: string | null;
3581
+ grower: string | null;
3582
+ category: {
3583
+ name: string;
3584
+ status: import("../../..").CategoryStatusEnum;
3585
+ uuid: string;
3586
+ createdAt: Date;
3587
+ updatedAt: Date;
3588
+ deletedAt: Date | null;
3589
+ multiplicity: number | null;
3590
+ isSizeSeparate: boolean;
3591
+ isSaveCategoryName: boolean;
3592
+ } | null;
3593
+ description: string | null;
3594
+ group: string | null;
3595
+ balance: number | null;
3596
+ quantity: number | null;
3597
+ price: number;
3598
+ isOpen: boolean;
3599
+ article: string | null;
3600
+ size: string | null;
3601
+ size2: string | null;
3602
+ size3: string | null;
3603
+ imageUUID: string | null;
3604
+ vat: number | null;
3605
+ image: {
3606
+ name: string;
3607
+ uuid: string;
3608
+ country: string | null;
3609
+ createdAt: Date;
3610
+ updatedAt: Date;
3611
+ deletedAt: Date | null;
3612
+ companyUUID: string;
3613
+ categoryUUID: string | null;
3614
+ color: string | null;
3615
+ vbn: string | null;
3616
+ externalUUID: string | null;
3617
+ productImageUrl: string;
3618
+ grower: string | null;
3619
+ } | null;
3620
+ productUUID: string | null;
3621
+ preOrderCollectionUUID: string;
3622
+ advancedPrice: string | null;
3623
+ salesUnit: import("../../..").SalesUnitEnum | null;
3624
+ multiplicityDescription: string | null;
3625
+ matchingProducts: {
3626
+ name: string;
3627
+ uuid: string;
3628
+ country: string | null;
3629
+ color: string | null;
3630
+ grower: string | null;
3631
+ deliveryDate: Date;
3632
+ size: string | null;
3633
+ }[];
3634
+ isSizeCustomizable?: boolean | undefined;
3635
+ isColorCustomizable?: boolean | undefined;
3636
+ multiplicityOptions?: {
3637
+ uuid: string;
3638
+ rank: number;
3639
+ title: string | null;
3640
+ optionMultiplicity: number;
3641
+ optionPrice: number | null;
3642
+ }[] | undefined;
3643
+ preOrderedQuantity?: number | undefined;
3644
+ };
3645
+ multiplicityOptionUUID?: string | null | undefined;
3646
+ matchingConfig?: {
3647
+ matchByName: boolean;
3648
+ matchByCategory: boolean;
3649
+ matchByColor: boolean;
3650
+ matchBySize: boolean;
3651
+ matchByGrower: boolean;
3652
+ } | null | undefined;
3653
+ };
3654
+ }>;
3655
+ warnings: string[];
3656
+ }[];
3657
+ errorList?: {
3658
+ code: string;
3659
+ message: string;
3660
+ }[] | undefined;
3661
+ };
3662
+ message?: string | undefined;
3663
+ }>;
3664
+ type Response = z.infer<typeof ResponseSchema>;
3665
+ }