@floristcloud/api-lib 1.0.2 → 1.0.3

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