@floristcloud/api-lib 1.0.1 → 1.0.3

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