@floristcloud/api-lib 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (573) hide show
  1. package/build/commands/action-log/create-action-log.command.d.ts +1439 -0
  2. package/build/commands/action-log/get-action-log-list-for-client.query.d.ts +1888 -0
  3. package/build/commands/action-log/get-action-log-list.query.d.ts +1893 -0
  4. package/build/commands/action-log/index.d.ts +3 -0
  5. package/build/commands/auth/index.d.ts +7 -0
  6. package/build/commands/auth/login-user.command.d.ts +51 -0
  7. package/build/commands/auth/register-user.command.d.ts +41 -0
  8. package/build/commands/auth/reset-password-by-admin.command.d.ts +19 -0
  9. package/build/commands/auth/reset-password-by-security-code.command.d.ts +77 -0
  10. package/build/commands/auth/reset-password-by-token.command.d.ts +97 -0
  11. package/build/commands/auth/reset-password-by-user.command.d.ts +19 -0
  12. package/build/commands/auth/restore-password-by-security-code.command.d.ts +39 -0
  13. package/build/commands/branch/create-branch.command.d.ts +100 -0
  14. package/build/commands/branch/delete-branch.command.d.ts +32 -0
  15. package/build/commands/branch/get-branch-list-all-by-client-uuid.query.d.ts +115 -0
  16. package/build/commands/branch/get-branch-list.query.d.ts +124 -0
  17. package/build/commands/branch/get-branch.query.d.ts +76 -0
  18. package/build/commands/branch/index.d.ts +6 -0
  19. package/build/commands/branch/update-branch.command.d.ts +100 -0
  20. package/build/commands/category/create-category.command.d.ts +84 -0
  21. package/build/commands/category/delete-category.command.d.ts +32 -0
  22. package/build/commands/category/get-category-by-uuid.query.d.ts +126 -0
  23. package/build/commands/category/get-category-list.query.d.ts +194 -0
  24. package/build/commands/category/index.d.ts +5 -0
  25. package/build/commands/category/update-category-command.d.ts +88 -0
  26. package/build/commands/category/webshop/get-category-list-for-client.query.d.ts +118 -0
  27. package/build/commands/category-alias/create-category-alias.command.d.ts +62 -0
  28. package/build/commands/category-alias/delete-category-alias.command.d.ts +32 -0
  29. package/build/commands/category-alias/get-category-alias-by-uuid.query.d.ts +62 -0
  30. package/build/commands/category-alias/get-category-alias-list-by-category-uuid.query.d.ts +58 -0
  31. package/build/commands/category-alias/get-category-alias-list.query.d.ts +64 -0
  32. package/build/commands/category-alias/index.d.ts +1 -0
  33. package/build/commands/category-alias/update-category-alias.command.d.ts +65 -0
  34. package/build/commands/category-template/create-category-template.command.d.ts +116 -0
  35. package/build/commands/category-template/get-category-template-by-uuid.query.d.ts +80 -0
  36. package/build/commands/category-template/get-category-template-list.query.d.ts +80 -0
  37. package/build/commands/category-template/index.d.ts +4 -0
  38. package/build/commands/category-template/update-category-template.command.d.ts +116 -0
  39. package/build/commands/client/attach-user-to-client.command.d.ts +152 -0
  40. package/build/commands/client/create-client.command.d.ts +202 -0
  41. package/build/commands/client/delete-client.command.d.ts +32 -0
  42. package/build/commands/client/detach-user-from-client.command.d.ts +146 -0
  43. package/build/commands/client/get-client-calculate.query.d.ts +39 -0
  44. package/build/commands/client/get-client-filters-values.query.d.ts +31 -0
  45. package/build/commands/client/get-client-list.query.d.ts +1257 -0
  46. package/build/commands/client/get-client.query.d.ts +938 -0
  47. package/build/commands/client/import-client.command.d.ts +75 -0
  48. package/build/commands/client/index.d.ts +17 -0
  49. package/build/commands/client/marking/create-client-marking.command.d.ts +37 -0
  50. package/build/commands/client/marking/delete-client-marking.command.d.ts +31 -0
  51. package/build/commands/client/marking/get-client-marking-by-client-list.command.d.ts +22 -0
  52. package/build/commands/client/marking/update-client-marking.command.d.ts +37 -0
  53. package/build/commands/client/profile/create-client-individual-profile.command.d.ts +71 -0
  54. package/build/commands/client/profile/create-client-legal-profile.command.d.ts +162 -0
  55. package/build/commands/client/profile/delete-client-individual-profile.command.d.ts +26 -0
  56. package/build/commands/client/profile/delete-client-legal-profile.command.d.ts +26 -0
  57. package/build/commands/client/profile/get-client-individual-profile.query.d.ts +62 -0
  58. package/build/commands/client/profile/index.d.ts +7 -0
  59. package/build/commands/client/profile/update-client-individual-profile.command.d.ts +71 -0
  60. package/build/commands/client/profile/update-client-legal-profile.command.d.ts +162 -0
  61. package/build/commands/client/set-balance-calculate-client.command.d.ts +144 -0
  62. package/build/commands/client/update-client.command.d.ts +208 -0
  63. package/build/commands/client/webshop/register-client-webshop.command.d.ts +168 -0
  64. package/build/commands/client/webshop/update-client-for-client.command.d.ts +164 -0
  65. package/build/commands/company/createCompany.command.d.ts +341 -0
  66. package/build/commands/company/createCompanyWithUser.command.d.ts +105 -0
  67. package/build/commands/company/deleteCompany.command.d.ts +32 -0
  68. package/build/commands/company/getCompany.query.d.ts +62 -0
  69. package/build/commands/company/getCompanyList.query.d.ts +96 -0
  70. package/build/commands/company/index.d.ts +6 -0
  71. package/build/commands/company/updateCompany.command.d.ts +62 -0
  72. package/build/commands/consignment/create-consignment.command.d.ts +119 -0
  73. package/build/commands/consignment/delete-consignment.command.d.ts +32 -0
  74. package/build/commands/consignment/export-consignment.command.d.ts +32 -0
  75. package/build/commands/consignment/get-access-clients-consignment.query.d.ts +144 -0
  76. package/build/commands/consignment/get-client-uuids-consignment.query.d.ts +24 -0
  77. package/build/commands/consignment/get-consignment-filters-values.query.d.ts +26 -0
  78. package/build/commands/consignment/get-consignment-list.query.d.ts +242 -0
  79. package/build/commands/consignment/get-consignment.query.d.ts +159 -0
  80. package/build/commands/consignment/import-consignment.command.d.ts +159 -0
  81. package/build/commands/consignment/import-packing-consignment.command.d.ts +123 -0
  82. package/build/commands/consignment/index.d.ts +13 -0
  83. package/build/commands/consignment/update-consignment.command.d.ts +119 -0
  84. package/build/commands/consignment/upsert-access-clients-consignment.command.d.ts +300 -0
  85. package/build/commands/consignment/validate-consignment-distribution.query.d.ts +1997 -0
  86. package/build/commands/consignment-import-schema/create-consignment-import-scheme.command.d.ts +60 -0
  87. package/build/commands/consignment-import-schema/get-all-consignment-import-schema.query.d.ts +88 -0
  88. package/build/commands/consignment-import-schema/get-cosignment-import-schema.query.d.ts +88 -0
  89. package/build/commands/consignment-import-schema/index.d.ts +2 -0
  90. package/build/commands/consignment-import-schema/update-consignment-import-schema.command.d.ts +47 -0
  91. package/build/commands/delivery-route/attach-order-list-to-delivery-route.command.d.ts +32 -0
  92. package/build/commands/delivery-route/create-delivery-route.command.d.ts +84 -0
  93. package/build/commands/delivery-route/delete-delivery-route.command.d.ts +24 -0
  94. package/build/commands/delivery-route/detach-order-list-to-delivery-route.command.d.ts +32 -0
  95. package/build/commands/delivery-route/get-delivery-route-list.query.d.ts +280 -0
  96. package/build/commands/delivery-route/get-delivery-route.query.d.ts +190 -0
  97. package/build/commands/delivery-route/index.d.ts +7 -0
  98. package/build/commands/delivery-route/update-delivery-route.command.d.ts +87 -0
  99. package/build/commands/discount-rules/create-discount-rules.command.d.ts +649 -0
  100. package/build/commands/discount-rules/delete-discount-rules.command.d.ts +24 -0
  101. package/build/commands/discount-rules/get-discount-rules-all.query.d.ts +286 -0
  102. package/build/commands/discount-rules/get-discount-rules-extended.query.d.ts +1213 -0
  103. package/build/commands/discount-rules/get-discount-rules-list.query.d.ts +391 -0
  104. package/build/commands/discount-rules/get-discount-rules.query.d.ts +347 -0
  105. package/build/commands/discount-rules/index.d.ts +9 -0
  106. package/build/commands/discount-rules/split-quantity-discount-rules-for-client.query.d.ts +71 -0
  107. package/build/commands/discount-rules/split-quantity-discount-rules.query.d.ts +73 -0
  108. package/build/commands/discount-rules/update-discount-rules.command.d.ts +662 -0
  109. package/build/commands/distribution/create-distribution.command.d.ts +72 -0
  110. package/build/commands/distribution/index.d.ts +3 -0
  111. package/build/commands/distribution/update-is-packed-distribution.command.d.ts +72 -0
  112. package/build/commands/distribution/validate-distribution-by-product.query.d.ts +36 -0
  113. package/build/commands/domain/create-domain.command.d.ts +60 -0
  114. package/build/commands/domain/delete-domain.command.d.ts +24 -0
  115. package/build/commands/domain/get-domain-by-uuid.query.d.ts +49 -0
  116. package/build/commands/domain/get-domain-list.query.d.ts +89 -0
  117. package/build/commands/domain/index.d.ts +5 -0
  118. package/build/commands/domain/update-domain.command.d.ts +57 -0
  119. package/build/commands/employee-schedule/create-employee-schedule.command.d.ts +92 -0
  120. package/build/commands/employee-schedule/delete-employee-schedule.command.d.ts +24 -0
  121. package/build/commands/employee-schedule/get-employee-schedule-extended-list.query.d.ts +237 -0
  122. package/build/commands/employee-schedule/get-employee-schedule-list.query.d.ts +133 -0
  123. package/build/commands/employee-schedule/index.d.ts +5 -0
  124. package/build/commands/employee-schedule/update-employee-schedule.command.d.ts +92 -0
  125. package/build/commands/file/deleteFile.command.d.ts +32 -0
  126. package/build/commands/file/deleteFile.command.js +1 -1
  127. package/build/commands/file/index.d.ts +2 -0
  128. package/build/commands/file/uploadFile.command.d.ts +11 -0
  129. package/build/commands/index.d.ts +44 -0
  130. package/build/commands/message/get-clients-messages-context-with-unread.query.d.ts +116 -0
  131. package/build/commands/message/get-context-unread-count.query.d.ts +39 -0
  132. package/build/commands/message/get-contexts-with-unread.query.d.ts +134 -0
  133. package/build/commands/message/index.d.ts +6 -0
  134. package/build/commands/message/list-context-messages.query.d.ts +152 -0
  135. package/build/commands/message/mark-context-read.command.d.ts +39 -0
  136. package/build/commands/message/send-context-message.command.d.ts +95 -0
  137. package/build/commands/money-account/create-money-account.command.d.ts +76 -0
  138. package/build/commands/money-account/delete-money-account.command.d.ts +24 -0
  139. package/build/commands/money-account/get-money-account-by-criteria.query.d.ts +61 -0
  140. package/build/commands/money-account/get-money-account-list.query.d.ts +103 -0
  141. package/build/commands/money-account/get-money-account.query.d.ts +59 -0
  142. package/build/commands/money-account/index.d.ts +6 -0
  143. package/build/commands/money-account/update-money-account.command.d.ts +78 -0
  144. package/build/commands/order/apply-order-discount.command.d.ts +32 -0
  145. package/build/commands/order/copy-order.command.d.ts +159 -0
  146. package/build/commands/order/create-order.command.d.ts +228 -0
  147. package/build/commands/order/delete-order.command.d.ts +24 -0
  148. package/build/commands/order/export-order-invoice.command.d.ts +14 -0
  149. package/build/commands/order/get-order-list.query.d.ts +864 -0
  150. package/build/commands/order/get-order.query.d.ts +578 -0
  151. package/build/commands/order/group/deletet-group-order.command.d.ts +32 -0
  152. package/build/commands/order/group/split-group-order.command.d.ts +167 -0
  153. package/build/commands/order/group/update-group-order-status.command.d.ts +36 -0
  154. package/build/commands/order/group/update-group-order-tag.command.d.ts +35 -0
  155. package/build/commands/order/group/update-group-order-type.command.d.ts +36 -0
  156. package/build/commands/order/index.d.ts +20 -0
  157. package/build/commands/order/send-order-invoice.command.d.ts +33 -0
  158. package/build/commands/order/update-order.command.d.ts +198 -0
  159. package/build/commands/order/webshop/create-cart.command.d.ts +153 -0
  160. package/build/commands/order/webshop/get-order-for-client.query.d.ts +498 -0
  161. package/build/commands/order/webshop/get-order-list-for-client.query.d.ts +705 -0
  162. package/build/commands/order/webshop/get-order-sales-by-month.query.d.ts +22 -0
  163. package/build/commands/order/webshop/update-cart.command.d.ts +185 -0
  164. package/build/commands/order/zeroing-receipt-delivery-order.command.d.ts +24 -0
  165. package/build/commands/order-delivery/create-order-delivery.command.d.ts +74 -0
  166. package/build/commands/order-delivery/delete-order-delivery.command.d.ts +26 -0
  167. package/build/commands/order-delivery/index.d.ts +3 -0
  168. package/build/commands/order-delivery/update-order-delivery.command.d.ts +78 -0
  169. package/build/commands/order-product/create-order-product.command.d.ts +347 -0
  170. package/build/commands/order-product/delete-order-product.command.d.ts +26 -0
  171. package/build/commands/order-product/get-order-product-list-all.query.d.ts +1378 -0
  172. package/build/commands/order-product/get-order-product-list-for-distribute.query.d.ts +1162 -0
  173. package/build/commands/order-product/get-order-product-list.query.d.ts +1390 -0
  174. package/build/commands/order-product/get-order-product.query.d.ts +1077 -0
  175. package/build/commands/order-product/group/delete-group-order-product.command.d.ts +32 -0
  176. package/build/commands/order-product/group/update-group-order-product-order.command.d.ts +56 -0
  177. package/build/commands/order-product/group/update-group-order-product-tag.command.d.ts +35 -0
  178. package/build/commands/order-product/group/verify-group-order-product.command.d.ts +35 -0
  179. package/build/commands/order-product/group/zeroing-receipt-order-product.command.d.ts +32 -0
  180. package/build/commands/order-product/index.d.ts +15 -0
  181. package/build/commands/order-product/update-order-product.command.d.ts +350 -0
  182. package/build/commands/order-product/verify-order-product.command.d.ts +326 -0
  183. package/build/commands/order-product/webshop/create-order-product-for-client.command.d.ts +323 -0
  184. package/build/commands/order-product/webshop/get-order-product-for-client-list.query.d.ts +670 -0
  185. package/build/commands/order-product/webshop/update-order-product-for-client.command.d.ts +326 -0
  186. package/build/commands/package/create-package.command.d.ts +96 -0
  187. package/build/commands/package/delete-package.command.d.ts +26 -0
  188. package/build/commands/package/get-package-by-uuid.query.d.ts +71 -0
  189. package/build/commands/package/get-package-filters-values.query.d.ts +99 -0
  190. package/build/commands/package/get-package-list.query.d.ts +753 -0
  191. package/build/commands/package/index.d.ts +7 -0
  192. package/build/commands/package/reorder-packages.command.d.ts +47 -0
  193. package/build/commands/package/update-package.command.d.ts +91 -0
  194. package/build/commands/package/validate-product-package.query.d.ts +36 -0
  195. package/build/commands/pre-order/create-order-from-pre-order.command.d.ts +240 -0
  196. package/build/commands/pre-order/create-pre-order.command.d.ts +79 -0
  197. package/build/commands/pre-order/delete-pre-order.command.d.ts +24 -0
  198. package/build/commands/pre-order/get-pre-order-by-pre-order-collection-uuid.command.d.ts +56 -0
  199. package/build/commands/pre-order/get-pre-order-list.query.d.ts +587 -0
  200. package/build/commands/pre-order/get-pre-order.query.d.ts +415 -0
  201. package/build/commands/pre-order/get-standing-order-import-template.command.d.ts +21 -0
  202. package/build/commands/pre-order/group/analyze-copy-pre-orders.command.d.ts +4582 -0
  203. package/build/commands/pre-order/group/analyze-create-orders-from-pre-orders.command.d.ts +3665 -0
  204. package/build/commands/pre-order/group/analyze-create-pre-orders-from-standing-orders.command.d.ts +2784 -0
  205. package/build/commands/pre-order/group/group-copy-pre-orders-to-collection.command.d.ts +221 -0
  206. package/build/commands/pre-order/group/group-create-orders-from-pre-orders.command.d.ts +415 -0
  207. package/build/commands/pre-order/group/group-create-pre-orders-from-standing-orders.command.d.ts +230 -0
  208. package/build/commands/pre-order/group/group-delete-pre-order.command.d.ts +32 -0
  209. package/build/commands/pre-order/group/group-update-pre-order.command.d.ts +65 -0
  210. package/build/commands/pre-order/group/index.d.ts +9 -0
  211. package/build/commands/pre-order/import-standing-order.command.d.ts +132 -0
  212. package/build/commands/pre-order/index.d.ts +12 -0
  213. package/build/commands/pre-order/update-pre-order.command.d.ts +79 -0
  214. package/build/commands/pre-order/webshop/checkout-pre-order-webshop.command.d.ts +61 -0
  215. package/build/commands/pre-order/webshop/create-pre-order-webshop.command.d.ts +73 -0
  216. package/build/commands/pre-order/webshop/delete-pre-order-webshop.command.d.ts +24 -0
  217. package/build/commands/pre-order/webshop/get-pre-order-list-webshop.command.d.ts +569 -0
  218. package/build/commands/pre-order/webshop/index.d.ts +5 -0
  219. package/build/commands/pre-order/webshop/update-pre-order-webshop.command.d.ts +70 -0
  220. package/build/commands/pre-order-collection/copy-pre-order-collection.command.d.ts +59 -0
  221. package/build/commands/pre-order-collection/create-pre-order-collection.command.d.ts +85 -0
  222. package/build/commands/pre-order-collection/delete-pre-order-collection.command.d.ts +24 -0
  223. package/build/commands/pre-order-collection/get-pre-order-collection-all.query.d.ts +59 -0
  224. package/build/commands/pre-order-collection/get-pre-order-collection-list.query.d.ts +168 -0
  225. package/build/commands/pre-order-collection/get-pre-order-collection.query.d.ts +99 -0
  226. package/build/commands/pre-order-collection/index.d.ts +8 -0
  227. package/build/commands/pre-order-collection/match-images-for-collection.command.d.ts +40 -0
  228. package/build/commands/pre-order-collection/update-pre-order-collection.command.d.ts +85 -0
  229. package/build/commands/pre-order-collection/webshop/get-pre-order-collection-list-with-categories.query.d.ts +85 -0
  230. package/build/commands/pre-order-collection-item/create-group-pre-order-collection-item.command.d.ts +101 -0
  231. package/build/commands/pre-order-collection-item/create-pre-order-collection-item.command.d.ts +236 -0
  232. package/build/commands/pre-order-collection-item/delete-group-pre-order-collection-item.command.d.ts +37 -0
  233. package/build/commands/pre-order-collection-item/delete-pre-order-collection-item.command.d.ts +24 -0
  234. package/build/commands/pre-order-collection-item/execute-pre-order-collection-item-update.command.d.ts +226 -0
  235. package/build/commands/pre-order-collection-item/export-pre-order-collection-item-with-clients-horizontal.query.d.ts +26 -0
  236. package/build/commands/pre-order-collection-item/export-pre-order-collection-item-with-clients-vertical.query.d.ts +33 -0
  237. package/build/commands/pre-order-collection-item/get-active-pre-order-collection-item-list.query.d.ts +693 -0
  238. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-extended-with-clients-pre-order-product-list.query.d.ts +1031 -0
  239. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-filter-values-for-client.query.d.ts +85 -0
  240. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-filter-values.query.d.ts +77 -0
  241. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list-for-client.query.d.ts +760 -0
  242. package/build/commands/pre-order-collection-item/get-pre-order-collection-item-list.query.d.ts +708 -0
  243. package/build/commands/pre-order-collection-item/get-pre-order-collection-item.query.d.ts +504 -0
  244. package/build/commands/pre-order-collection-item/index.d.ts +23 -0
  245. package/build/commands/pre-order-collection-item/multiplicity-option/create-pre-order-collection-item-multiplicity-option.command.d.ts +61 -0
  246. package/build/commands/pre-order-collection-item/multiplicity-option/delete-pre-order-collection-item-multiplicity-option.command.d.ts +26 -0
  247. package/build/commands/pre-order-collection-item/multiplicity-option/get-pre-order-collection-item-multiplicity-option-titles.query.d.ts +16 -0
  248. package/build/commands/pre-order-collection-item/multiplicity-option/get-pre-order-collection-item-multiplicity-options.query.d.ts +68 -0
  249. package/build/commands/pre-order-collection-item/multiplicity-option/reorder-pre-order-collection-item-multiplicity-options.command.d.ts +47 -0
  250. package/build/commands/pre-order-collection-item/multiplicity-option/update-pre-order-collection-item-multiplicity-option.command.d.ts +61 -0
  251. package/build/commands/pre-order-collection-item/update-group-pre-order-collection-item.command.d.ts +165 -0
  252. package/build/commands/pre-order-collection-item/update-pre-order-collection-item-product-maching.command.d.ts +32 -0
  253. package/build/commands/pre-order-collection-item/update-pre-order-collection-item.command.d.ts +239 -0
  254. package/build/commands/pre-order-product/create-manually-pre-order-product-for-standing-order.command.d.ts +234 -0
  255. package/build/commands/pre-order-product/create-manually-pre-order-product.command.d.ts +262 -0
  256. package/build/commands/pre-order-product/create-pre-order-product-webshop.command.d.ts +214 -0
  257. package/build/commands/pre-order-product/create-pre-order-product.command.d.ts +242 -0
  258. package/build/commands/pre-order-product/delete-many-pre-order-product-by-pre-order-collection-item.command.d.ts +24 -0
  259. package/build/commands/pre-order-product/delete-pre-order-product-webshop.command.d.ts +24 -0
  260. package/build/commands/pre-order-product/delete-pre-order-product.command.d.ts +24 -0
  261. package/build/commands/pre-order-product/get-pre-order-product-extended-list.query.d.ts +1155 -0
  262. package/build/commands/pre-order-product/get-pre-order-product-list.query.d.ts +234 -0
  263. package/build/commands/pre-order-product/get-pre-order-product.query.d.ts +891 -0
  264. package/build/commands/pre-order-product/get-pre-order-products-by-pre-order-list.command.d.ts +899 -0
  265. package/build/commands/pre-order-product/get-pre-order-products-by-pre-order.command.d.ts +891 -0
  266. package/build/commands/pre-order-product/index.d.ts +15 -0
  267. package/build/commands/pre-order-product/purchase-many-pre-order-product-by-pre-order-collection-item.command.d.ts +39 -0
  268. package/build/commands/pre-order-product/update-pre-order-product-webshop.command.d.ts +179 -0
  269. package/build/commands/pre-order-product/update-pre-order-product.command.d.ts +242 -0
  270. package/build/commands/product/create-product.command.d.ts +630 -0
  271. package/build/commands/product/delete-product.command.d.ts +26 -0
  272. package/build/commands/product/generate-product-qr.query.d.ts +89 -0
  273. package/build/commands/product/get-all-product-by-consignment.query.d.ts +445 -0
  274. package/build/commands/product/get-product-list-filters-values.query.d.ts +102 -0
  275. package/build/commands/product/get-product-list.query.d.ts +784 -0
  276. package/build/commands/product/get-product-quantity-calculate.query.d.ts +57 -0
  277. package/build/commands/product/get-product.query.d.ts +555 -0
  278. package/build/commands/product/get-products-unique.query.d.ts +614 -0
  279. package/build/commands/product/group/delete-group-product.command.d.ts +58 -0
  280. package/build/commands/product/group/index.d.ts +7 -0
  281. package/build/commands/product/group/update-group-product-category.command.d.ts +35 -0
  282. package/build/commands/product/group/update-group-product-consignment.command.d.ts +35 -0
  283. package/build/commands/product/group/update-group-product-is-open-by-consignment.command.d.ts +32 -0
  284. package/build/commands/product/group/update-group-product-is-open.command.d.ts +35 -0
  285. package/build/commands/product/group/update-group-product-prices.command.d.ts +52 -0
  286. package/build/commands/product/group/update-group-product-update-batch.command.d.ts +141 -0
  287. package/build/commands/product/index.d.ts +19 -0
  288. package/build/commands/product/multiplicity-option/create-product-multiplicity-option.command.d.ts +61 -0
  289. package/build/commands/product/multiplicity-option/delete-product-multiplicity-option.command.d.ts +26 -0
  290. package/build/commands/product/multiplicity-option/get-product-multiplicity-option-titles.query.d.ts +16 -0
  291. package/build/commands/product/multiplicity-option/get-product-multiplicity-options.query.d.ts +68 -0
  292. package/build/commands/product/multiplicity-option/reorder-product-multiplicity-options.command.d.ts +47 -0
  293. package/build/commands/product/multiplicity-option/update-product-multiplicity-option.command.d.ts +61 -0
  294. package/build/commands/product/update-product.command.d.ts +630 -0
  295. package/build/commands/product/webshop/get-client-product-list-filters-values.query.d.ts +70 -0
  296. package/build/commands/product/webshop/get-product-for-client.query.d.ts +336 -0
  297. package/build/commands/product/webshop/get-product-list-for-client.query.d.ts +484 -0
  298. package/build/commands/product-configuration/create-product-configuration.command.d.ts +86 -0
  299. package/build/commands/product-configuration/delete-product-configuration.command.d.ts +26 -0
  300. package/build/commands/product-configuration/get-product-configuration-list.query.d.ts +119 -0
  301. package/build/commands/product-configuration/get-product-configuration.query.d.ts +61 -0
  302. package/build/commands/product-configuration/index.d.ts +5 -0
  303. package/build/commands/product-configuration/update-product-configuration.command.d.ts +82 -0
  304. package/build/commands/product-image/alias/create-product-image-alias.command.d.ts +37 -0
  305. package/build/commands/product-image/alias/delete-product-image-alias.command.d.ts +31 -0
  306. package/build/commands/product-image/alias/update-product-image-alias.command.d.ts +37 -0
  307. package/build/commands/product-image/create-product-image.command.d.ts +113 -0
  308. package/build/commands/product-image/delete-product-image.command.d.ts +84 -0
  309. package/build/commands/product-image/get-product-image-filter-values.query.d.ts +77 -0
  310. package/build/commands/product-image/get-product-image-list.query.d.ts +377 -0
  311. package/build/commands/product-image/get-product-image.query.d.ts +255 -0
  312. package/build/commands/product-image/group/delete-group-product-image.command.d.ts +32 -0
  313. package/build/commands/product-image/group/update-group-product-image.command.d.ts +80 -0
  314. package/build/commands/product-image/index.d.ts +12 -0
  315. package/build/commands/product-image/sync-product-image.command.d.ts +24 -0
  316. package/build/commands/product-image/update-product-image.command.d.ts +113 -0
  317. package/build/commands/product-image-template/create-product-image-template.command.d.ts +90 -0
  318. package/build/commands/product-image-template/delete-group-product-image-template.command.d.ts +32 -0
  319. package/build/commands/product-image-template/delete-product-image-template.command.d.ts +24 -0
  320. package/build/commands/product-image-template/get-product-image-template-list.query.d.ts +116 -0
  321. package/build/commands/product-image-template/get-product-image-template.query.d.ts +64 -0
  322. package/build/commands/product-image-template/index.d.ts +7 -0
  323. package/build/commands/product-image-template/start-parsing-product-image-template.command.d.ts +24 -0
  324. package/build/commands/product-image-template/update-product-image-template.command.d.ts +87 -0
  325. package/build/commands/product-in-package/create-product-in-package.command.d.ts +94 -0
  326. package/build/commands/product-in-package/delete-from-orders-by-package.command.d.ts +26 -0
  327. package/build/commands/product-in-package/delete-product-in-package.command.d.ts +24 -0
  328. package/build/commands/product-in-package/get-product-in-package-by-uuid.query.d.ts +69 -0
  329. package/build/commands/product-in-package/index.d.ts +5 -0
  330. package/build/commands/product-in-package/update-product-in-package.command.d.ts +92 -0
  331. package/build/commands/report/export-client-statement.query.d.ts +68 -0
  332. package/build/commands/report/export-inventory-movement.query.d.ts +124 -0
  333. package/build/commands/report/export-inventory-stock.query.d.ts +82 -0
  334. package/build/commands/report/export-inventory-turnover.query.d.ts +148 -0
  335. package/build/commands/report/export-sales-by-client.query.d.ts +83 -0
  336. package/build/commands/report/export-sales-revenue.query.d.ts +64 -0
  337. package/build/commands/report/get-report-by-client-weeks.query.d.ts +81 -0
  338. package/build/commands/report/get-report-for-period.query.d.ts +106 -0
  339. package/build/commands/report/get-report-group-by-client.query.d.ts +146 -0
  340. package/build/commands/report/get-report-group-by-position.query.d.ts +266 -0
  341. package/build/commands/report/index.d.ts +10 -0
  342. package/build/commands/settings/get-settings-for-admin.query.d.ts +352 -0
  343. package/build/commands/settings/get-settings.query.d.ts +312 -0
  344. package/build/commands/settings/index.d.ts +3 -0
  345. package/build/commands/settings/update-settings.command.d.ts +486 -0
  346. package/build/commands/transaction/create-transaction.command.d.ts +100 -0
  347. package/build/commands/transaction/delete-transaction.command.d.ts +26 -0
  348. package/build/commands/transaction/export-transactions.command.d.ts +62 -0
  349. package/build/commands/transaction/generate-check-transaction.command.d.ts +35 -0
  350. package/build/commands/transaction/generate-pre-payment-check.command.d.ts +35 -0
  351. package/build/commands/transaction/get-sum-transaction-by-money-account.query.d.ts +46 -0
  352. package/build/commands/transaction/get-transaction-list.query.d.ts +763 -0
  353. package/build/commands/transaction/get-transaction-summary.query.d.ts +77 -0
  354. package/build/commands/transaction/get-transaction.query.d.ts +539 -0
  355. package/build/commands/transaction/index.d.ts +11 -0
  356. package/build/commands/transaction/update-transaction.command.d.ts +85 -0
  357. package/build/commands/transaction/webshop/get-transaction-list-for-client.query.d.ts +742 -0
  358. package/build/commands/type/create-type.command.d.ts +60 -0
  359. package/build/commands/type/delete-type.command.d.ts +32 -0
  360. package/build/commands/type/get-type-by-criteria.query.d.ts +51 -0
  361. package/build/commands/type/get-type-by-uuid.query.d.ts +57 -0
  362. package/build/commands/type/get-type-list.query.d.ts +102 -0
  363. package/build/commands/type/index.d.ts +8 -0
  364. package/build/commands/type/update-type-rank-many.command.d.ts +72 -0
  365. package/build/commands/type/update-type-rank.command.d.ts +39 -0
  366. package/build/commands/type/update-type.command.d.ts +75 -0
  367. package/build/commands/user/attachUserToCompany.command.d.ts +84 -0
  368. package/build/commands/user/create-user-global.command.d.ts +101 -0
  369. package/build/commands/user/createUser.command.d.ts +107 -0
  370. package/build/commands/user/createUserByClientId.command.d.ts +138 -0
  371. package/build/commands/user/createUserForCompany.command.d.ts +105 -0
  372. package/build/commands/user/generate-and-send-password-by-admin.command.d.ts +20 -0
  373. package/build/commands/user/get-user-list.query.d.ts +149 -0
  374. package/build/commands/user/getUser.command.d.ts +107 -0
  375. package/build/commands/user/index.d.ts +10 -0
  376. package/build/commands/user/update-password-by-user.command.d.ts +19 -0
  377. package/build/commands/user/update-user.command.d.ts +98 -0
  378. package/build/commands/user/updateRole.command.d.ts +106 -0
  379. package/build/commands/work-session/close-work-session-for-employee.command.d.ts +69 -0
  380. package/build/commands/work-session/create-many-work-session.command.d.ts +108 -0
  381. package/build/commands/work-session/create-work-session-for-employee.command.d.ts +86 -0
  382. package/build/commands/work-session/delete-work-session.command.d.ts +24 -0
  383. package/build/commands/work-session/get-work-session-extended-list.query.d.ts +243 -0
  384. package/build/commands/work-session/index.d.ts +6 -0
  385. package/build/commands/work-session/update-work-session.command.d.ts +86 -0
  386. package/build/commands/wrire-off-archive/create-wrire-off-archive.command.d.ts +32 -0
  387. package/build/commands/wrire-off-archive/index.d.ts +2 -0
  388. package/build/commands/wrire-off-archive/info-wrire-off-archive.command.d.ts +32 -0
  389. package/build/commands/write-off/create-write-off-from-order.command.d.ts +1679 -0
  390. package/build/commands/write-off/create-write-off-from-pending.command.d.ts +1674 -0
  391. package/build/commands/write-off/create-write-off-images.command.d.ts +52 -0
  392. package/build/commands/write-off/create-write-off-images.command.js +1 -1
  393. package/build/commands/write-off/create-write-off.command.d.ts +1676 -0
  394. package/build/commands/write-off/delete-write-off-image.command.d.ts +26 -0
  395. package/build/commands/write-off/delete-write-off.command.d.ts +26 -0
  396. package/build/commands/write-off/get-write-off-list.query.d.ts +2144 -0
  397. package/build/commands/write-off/get-write-off-reason-list.query.d.ts +22 -0
  398. package/build/commands/write-off/get-write-off-sum-by-order.query.d.ts +16 -0
  399. package/build/commands/write-off/get-write-off.query.d.ts +1659 -0
  400. package/build/commands/write-off/index.d.ts +13 -0
  401. package/build/commands/write-off/update-write-off-price.command.d.ts +1670 -0
  402. package/build/commands/write-off/update-write-off-status.command.d.ts +1671 -0
  403. package/build/commands/write-off/webshop/create-write-off-from-order-for-client.command.d.ts +1676 -0
  404. package/build/commands/write-off/webshop/get-write-off-list-by-order.query.d.ts +1661 -0
  405. package/build/commands/write-off/webshop/index.d.ts +2 -0
  406. package/build/constant/error-i18n-key.d.ts +5 -0
  407. package/build/constant/error.d.ts +2047 -0
  408. package/build/constant/index.d.ts +2 -0
  409. package/build/constant/verbose.d.ts +42 -0
  410. package/build/enum/action-log-type.enum.d.ts +14 -0
  411. package/build/enum/category-status.enum.d.ts +4 -0
  412. package/build/enum/client-import-entity-property.enum.d.ts +30 -0
  413. package/build/enum/client-legal-type.enum.d.ts +4 -0
  414. package/build/enum/client-statement-type.enum.d.ts +5 -0
  415. package/build/enum/client-status.enum.d.ts +5 -0
  416. package/build/enum/client-type.enum.d.ts +4 -0
  417. package/build/enum/companyStatus.enum.d.ts +5 -0
  418. package/build/enum/consignment-access-client-status.enum.d.ts +4 -0
  419. package/build/enum/consignment-distribution-validation-status.enum.d.ts +4 -0
  420. package/build/enum/consignment-distribution-validation-type.enum.d.ts +4 -0
  421. package/build/enum/consignment-import-errors.enum.d.ts +5 -0
  422. package/build/enum/consignment-import-schema-relation-entity-property.enum.d.ts +30 -0
  423. package/build/enum/consignment-status.enum.d.ts +5 -0
  424. package/build/enum/consignment-write-off-archives-status.enum.d.ts +5 -0
  425. package/build/enum/context-message-context-type.enum.d.ts +5 -0
  426. package/build/enum/country-code.enum.d.ts +253 -0
  427. package/build/enum/delivery-route-status.enum.d.ts +5 -0
  428. package/build/enum/discount-price-routing.enum.d.ts +6 -0
  429. package/build/enum/discount-rules-apply-type.enum.d.ts +4 -0
  430. package/build/enum/discount-rules-mode-type.enum.d.ts +4 -0
  431. package/build/enum/discount-rules-status.enum.d.ts +4 -0
  432. package/build/enum/discount-rules-type.enum.d.ts +7 -0
  433. package/build/enum/file-expire-prefix.enum.d.ts +3 -0
  434. package/build/enum/file-expire-prefix.enum.js +7 -0
  435. package/build/enum/image-type.enum.d.ts +4 -0
  436. package/build/enum/import-error-code.enum.d.ts +7 -0
  437. package/build/enum/index.d.ts +59 -0
  438. package/build/enum/inventory-movement-type.enum.d.ts +6 -0
  439. package/build/enum/language.enum.d.ts +4 -0
  440. package/build/enum/menu-items-url.enum.d.ts +11 -0
  441. package/build/enum/money-account-status.enum.d.ts +4 -0
  442. package/build/enum/notification-channel.enum.d.ts +9 -0
  443. package/build/enum/notification-status.enum.d.ts +6 -0
  444. package/build/enum/notification-type.enum.d.ts +6 -0
  445. package/build/enum/order-active-status-list.d.ts +2 -0
  446. package/build/enum/order-balance-status-list.d.ts +2 -0
  447. package/build/enum/order-by.enum.d.ts +4 -0
  448. package/build/enum/order-delivery-status.enum.d.ts +4 -0
  449. package/build/enum/order-distribute-status-list.d.ts +2 -0
  450. package/build/enum/order-restricted-status-list.d.ts +2 -0
  451. package/build/enum/order-status.enum.d.ts +13 -0
  452. package/build/enum/order-type.enum.d.ts +4 -0
  453. package/build/enum/order-webshop-available-status-list.d.ts +2 -0
  454. package/build/enum/package-status.enum.d.ts +5 -0
  455. package/build/enum/package-type.enum.d.ts +32 -0
  456. package/build/enum/parse-status.enum.d.ts +5 -0
  457. package/build/enum/position-report-type.enum.d.ts +4 -0
  458. package/build/enum/pre-order-aggregation-mode.enum.d.ts +5 -0
  459. package/build/enum/pre-order-collection-item-import-entity-property.enum.d.ts +21 -0
  460. package/build/enum/pre-order-collection-status.enum.d.ts +4 -0
  461. package/build/enum/pre-order-status.enum.d.ts +8 -0
  462. package/build/enum/product-image-created-from.enum.d.ts +4 -0
  463. package/build/enum/product-image-order.enum.d.ts +4 -0
  464. package/build/enum/product-in-package-status.enum.d.ts +4 -0
  465. package/build/enum/report-period-type.enum.d.ts +5 -0
  466. package/build/enum/sales-unit.enum.d.ts +5 -0
  467. package/build/enum/security-code-status.enum.d.ts +7 -0
  468. package/build/enum/transaction-type-groups.d.ts +4 -0
  469. package/build/enum/transaction-type.enum.d.ts +6 -0
  470. package/build/enum/user-type.enum.d.ts +4 -0
  471. package/build/enum/userRole.enum.d.ts +12 -0
  472. package/build/enum/userStatus.enum.d.ts +5 -0
  473. package/build/enum/webshop-main-display-mode.enum.d.ts +4 -0
  474. package/build/enum/webshop-mode.enum.d.ts +4 -0
  475. package/build/enum/write-off-status.enum.d.ts +5 -0
  476. package/build/helpers/date.helper.d.ts +3 -0
  477. package/build/index.d.ts +5 -0
  478. package/build/schemas/action-log/action-log-payload.schema.d.ts +496 -0
  479. package/build/schemas/action-log/action-log.schema.d.ts +2439 -0
  480. package/build/schemas/action-log/index.d.ts +14 -0
  481. package/build/schemas/action-log/order-create-action-log.schema.d.ts +53 -0
  482. package/build/schemas/action-log/order-delete-action-log-payload.schema.d.ts +53 -0
  483. package/build/schemas/action-log/order-info.schema.d.ts +29 -0
  484. package/build/schemas/action-log/order-product-delete-action-log.schema.d.ts +63 -0
  485. package/build/schemas/action-log/order-product-info.schema.d.ts +35 -0
  486. package/build/schemas/action-log/order-product-update-action-log.schema.d.ts +69 -0
  487. package/build/schemas/action-log/order-update-action-log.schema.d.ts +12 -0
  488. package/build/schemas/action-log/pre-order-create-action-log.schema.d.ts +38 -0
  489. package/build/schemas/action-log/pre-order-delete-action-log.schema.d.ts +38 -0
  490. package/build/schemas/action-log/pre-order-info.schema.d.ts +20 -0
  491. package/build/schemas/action-log/pre-order-product-delete-action-log.schema.d.ts +48 -0
  492. package/build/schemas/action-log/pre-order-product-info.schema.d.ts +26 -0
  493. package/build/schemas/action-log/pre-order-product-update-action-log.schema.d.ts +57 -0
  494. package/build/schemas/action-log/transaction-add-action-log.schema.d.ts +43 -0
  495. package/build/schemas/action-log/transaction-delete-action-log.schema.d.ts +43 -0
  496. package/build/schemas/action-log/transaction-info.schema.d.ts +24 -0
  497. package/build/schemas/branch/branch-list.schema.d.ts +71 -0
  498. package/build/schemas/branch/branch.schema.d.ts +38 -0
  499. package/build/schemas/category/category.schema.d.ts +102 -0
  500. package/build/schemas/category-alias/category-alias.schema.d.ts +36 -0
  501. package/build/schemas/category-template/category-template.schema.d.ts +55 -0
  502. package/build/schemas/category-template/index.d.ts +1 -0
  503. package/build/schemas/client/client-individual-profile.schema.d.ts +26 -0
  504. package/build/schemas/client/client-legal-profile.schema.d.ts +60 -0
  505. package/build/schemas/client/client-marking.schema.d.ts +11 -0
  506. package/build/schemas/client/client.schema.d.ts +1665 -0
  507. package/build/schemas/client/index.d.ts +4 -0
  508. package/build/schemas/company/company.schema.d.ts +27 -0
  509. package/build/schemas/company/companyList.schema.d.ts +51 -0
  510. package/build/schemas/consignment/consignment-distribution-validation.schema.d.ts +2487 -0
  511. package/build/schemas/consignment/consignment-list.schema.d.ts +133 -0
  512. package/build/schemas/consignment/consignment.schema.d.ts +420 -0
  513. package/build/schemas/consignment-import-schema/consignment-import-schema.scheme.d.ts +136 -0
  514. package/build/schemas/consignment-import-schema/index.d.ts +1 -0
  515. package/build/schemas/consignment-import-schema-relation/consignment-import-schema-relation.schema.d.ts +21 -0
  516. package/build/schemas/delete-data-response.schema.d.ts +8 -0
  517. package/build/schemas/delivery-route/delivery-route.schema.d.ts +193 -0
  518. package/build/schemas/discount-rules/discount-rules.schema.d.ts +1794 -0
  519. package/build/schemas/distribution/distribution.schema.d.ts +55 -0
  520. package/build/schemas/distribution/validate-distribution-by-product.schema.d.ts +14 -0
  521. package/build/schemas/domain/domain.schema.d.ts +85 -0
  522. package/build/schemas/employee-schedule/employee-schedule.schema.d.ts +399 -0
  523. package/build/schemas/file/file.schema.d.ts +8 -0
  524. package/build/schemas/file/index.d.ts +1 -0
  525. package/build/schemas/index.d.ts +53 -0
  526. package/build/schemas/message/client-inbox-item.schema.d.ts +32 -0
  527. package/build/schemas/message/context-inbox.schema.d.ts +109 -0
  528. package/build/schemas/message/context-message-list.schema.d.ts +80 -0
  529. package/build/schemas/message/context-message.schema.d.ts +39 -0
  530. package/build/schemas/message/index.d.ts +4 -0
  531. package/build/schemas/money-account/money-account.schema.d.ts +31 -0
  532. package/build/schemas/order/order.schema.d.ts +884 -0
  533. package/build/schemas/order-delivery/order-delivery.schema.d.ts +27 -0
  534. package/build/schemas/order-product/order-product-list.schema.d.ts +1587 -0
  535. package/build/schemas/order-product/order-product-multiplicity-optiom.schema.d.ts +17 -0
  536. package/build/schemas/order-product/order-product.schema.d.ts +2173 -0
  537. package/build/schemas/package/package.schema.d.ts +1111 -0
  538. package/build/schemas/package/validate-package.schema.d.ts +14 -0
  539. package/build/schemas/pre-order/pre-order-copy.schema.d.ts +3083 -0
  540. package/build/schemas/pre-order/pre-order.schema.d.ts +1058 -0
  541. package/build/schemas/pre-order-collection/pre-order-collection.schema.d.ts +277 -0
  542. package/build/schemas/pre-order-collection-item/pre-order-collection-item-multiplicity-option.schema.d.ts +20 -0
  543. package/build/schemas/pre-order-collection-item/pre-order-collection-item.schema.d.ts +2725 -0
  544. package/build/schemas/pre-order-product/pre-order-product.schema.d.ts +2039 -0
  545. package/build/schemas/product/product-list.schema.d.ts +885 -0
  546. package/build/schemas/product/product-multiplicity-option.schema.d.ts +20 -0
  547. package/build/schemas/product/product.schema.d.ts +1383 -0
  548. package/build/schemas/product-configuration/product-configuration.schema.d.ts +78 -0
  549. package/build/schemas/product-image/product-image-alias.schema.d.ts +11 -0
  550. package/build/schemas/product-image/product-image.schema.d.ts +240 -0
  551. package/build/schemas/product-image-template/product-image-template.schema.d.ts +139 -0
  552. package/build/schemas/product-in-package/product-in-package.schema.d.ts +86 -0
  553. package/build/schemas/report/client-by-weeks.schema.d.ts +29 -0
  554. package/build/schemas/report/client-statement.schema.d.ts +24 -0
  555. package/build/schemas/settings/settings.schema.d.ts +770 -0
  556. package/build/schemas/transaction/transaction-list.schema.d.ts +1055 -0
  557. package/build/schemas/transaction/transaction.schema.d.ts +763 -0
  558. package/build/schemas/type/type.schema.d.ts +36 -0
  559. package/build/schemas/type/typeList.schema.d.ts +14 -0
  560. package/build/schemas/user/user.schema.d.ts +67 -0
  561. package/build/schemas/work-session/work-session.schema.d.ts +344 -0
  562. package/build/schemas/write-off/write-off-image.schema.d.ts +20 -0
  563. package/build/schemas/write-off/write-off-image.schema.js +1 -1
  564. package/build/schemas/write-off/write-off-list.schema.d.ts +1656 -0
  565. package/build/schemas/write-off/write-off.schema.d.ts +1214 -0
  566. package/build/types/client-import-data.type.d.ts +34 -0
  567. package/build/types/index.d.ts +1 -0
  568. package/commands/file/deleteFile.command.ts +1 -1
  569. package/commands/write-off/create-write-off-images.command.ts +1 -1
  570. package/enum/file-expire-prefix.enum.ts +3 -0
  571. package/package.json +9 -6
  572. package/schemas/write-off/write-off-image.schema.ts +1 -1
  573. package/tsconfig.json +3 -3
@@ -0,0 +1,2039 @@
1
+ import { z } from 'zod';
2
+ export declare const MatchingConfigSchema: z.ZodObject<{
3
+ matchByName: z.ZodBoolean;
4
+ matchByCategory: z.ZodBoolean;
5
+ matchByColor: z.ZodBoolean;
6
+ matchBySize: z.ZodBoolean;
7
+ matchByGrower: z.ZodBoolean;
8
+ }, "strip", z.ZodTypeAny, {
9
+ matchByName: boolean;
10
+ matchByCategory: boolean;
11
+ matchByColor: boolean;
12
+ matchBySize: boolean;
13
+ matchByGrower: boolean;
14
+ }, {
15
+ matchByName: boolean;
16
+ matchByCategory: boolean;
17
+ matchByColor: boolean;
18
+ matchBySize: boolean;
19
+ matchByGrower: boolean;
20
+ }>;
21
+ export declare const PreOrderProductSchema: z.ZodObject<{
22
+ uuid: z.ZodString;
23
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
24
+ preOrderUUID: z.ZodString;
25
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26
+ quantity: z.ZodNumber;
27
+ comment: z.ZodNullable<z.ZodString>;
28
+ tag: z.ZodNullable<z.ZodString>;
29
+ isPurchased: z.ZodBoolean;
30
+ isReplaceable: z.ZodBoolean;
31
+ stopPrice: z.ZodNullable<z.ZodNumber>;
32
+ highAttention: z.ZodBoolean;
33
+ categoryUUID: z.ZodNullable<z.ZodString>;
34
+ name: z.ZodNullable<z.ZodString>;
35
+ grower: z.ZodNullable<z.ZodString>;
36
+ size: z.ZodNullable<z.ZodString>;
37
+ price: z.ZodNullable<z.ZodNumber>;
38
+ color: z.ZodNullable<z.ZodString>;
39
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
40
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
41
+ matchByName: z.ZodBoolean;
42
+ matchByCategory: z.ZodBoolean;
43
+ matchByColor: z.ZodBoolean;
44
+ matchBySize: z.ZodBoolean;
45
+ matchByGrower: z.ZodBoolean;
46
+ }, "strip", z.ZodTypeAny, {
47
+ matchByName: boolean;
48
+ matchByCategory: boolean;
49
+ matchByColor: boolean;
50
+ matchBySize: boolean;
51
+ matchByGrower: boolean;
52
+ }, {
53
+ matchByName: boolean;
54
+ matchByCategory: boolean;
55
+ matchByColor: boolean;
56
+ matchBySize: boolean;
57
+ matchByGrower: boolean;
58
+ }>>>;
59
+ }, "strip", z.ZodTypeAny, {
60
+ name: string | null;
61
+ uuid: string;
62
+ categoryUUID: string | null;
63
+ color: string | null;
64
+ grower: string | null;
65
+ comment: string | null;
66
+ quantity: number;
67
+ price: number | null;
68
+ size: string | null;
69
+ tag: string | null;
70
+ preOrderCollectionItemUUID: string | null;
71
+ preOrderUUID: string;
72
+ isPurchased: boolean;
73
+ isReplaceable: boolean;
74
+ stopPrice: number | null;
75
+ highAttention: boolean;
76
+ parentPreOrderProductUUID: string | null;
77
+ multiplicityOptionUUID?: string | null | undefined;
78
+ matchingConfig?: {
79
+ matchByName: boolean;
80
+ matchByCategory: boolean;
81
+ matchByColor: boolean;
82
+ matchBySize: boolean;
83
+ matchByGrower: boolean;
84
+ } | null | undefined;
85
+ }, {
86
+ name: string | null;
87
+ uuid: string;
88
+ categoryUUID: string | null;
89
+ color: string | null;
90
+ grower: string | null;
91
+ comment: string | null;
92
+ quantity: number;
93
+ price: number | null;
94
+ size: string | null;
95
+ tag: string | null;
96
+ preOrderCollectionItemUUID: string | null;
97
+ preOrderUUID: string;
98
+ isPurchased: boolean;
99
+ isReplaceable: boolean;
100
+ stopPrice: number | null;
101
+ highAttention: boolean;
102
+ parentPreOrderProductUUID: string | null;
103
+ multiplicityOptionUUID?: string | null | undefined;
104
+ matchingConfig?: {
105
+ matchByName: boolean;
106
+ matchByCategory: boolean;
107
+ matchByColor: boolean;
108
+ matchBySize: boolean;
109
+ matchByGrower: boolean;
110
+ } | null | undefined;
111
+ }>;
112
+ export declare const PreOrderProductExtendedSchema: z.ZodObject<{
113
+ name: z.ZodNullable<z.ZodString>;
114
+ uuid: z.ZodString;
115
+ categoryUUID: z.ZodNullable<z.ZodString>;
116
+ color: z.ZodNullable<z.ZodString>;
117
+ grower: z.ZodNullable<z.ZodString>;
118
+ comment: z.ZodNullable<z.ZodString>;
119
+ quantity: z.ZodNumber;
120
+ price: z.ZodNullable<z.ZodNumber>;
121
+ size: z.ZodNullable<z.ZodString>;
122
+ tag: z.ZodNullable<z.ZodString>;
123
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
124
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
125
+ preOrderUUID: z.ZodString;
126
+ isPurchased: z.ZodBoolean;
127
+ isReplaceable: z.ZodBoolean;
128
+ stopPrice: z.ZodNullable<z.ZodNumber>;
129
+ highAttention: z.ZodBoolean;
130
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
131
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
132
+ matchByName: z.ZodBoolean;
133
+ matchByCategory: z.ZodBoolean;
134
+ matchByColor: z.ZodBoolean;
135
+ matchBySize: z.ZodBoolean;
136
+ matchByGrower: z.ZodBoolean;
137
+ }, "strip", z.ZodTypeAny, {
138
+ matchByName: boolean;
139
+ matchByCategory: boolean;
140
+ matchByColor: boolean;
141
+ matchBySize: boolean;
142
+ matchByGrower: boolean;
143
+ }, {
144
+ matchByName: boolean;
145
+ matchByCategory: boolean;
146
+ matchByColor: boolean;
147
+ matchBySize: boolean;
148
+ matchByGrower: boolean;
149
+ }>>>;
150
+ preOrderCollectionItem: z.ZodObject<{
151
+ name: z.ZodString;
152
+ uuid: z.ZodString;
153
+ country: z.ZodNullable<z.ZodString>;
154
+ createdAt: z.ZodDate;
155
+ updatedAt: z.ZodDate;
156
+ multiplicity: z.ZodNumber;
157
+ categoryUUID: z.ZodString;
158
+ color: z.ZodNullable<z.ZodString>;
159
+ grower: z.ZodNullable<z.ZodString>;
160
+ description: z.ZodNullable<z.ZodString>;
161
+ group: z.ZodNullable<z.ZodString>;
162
+ balance: z.ZodNullable<z.ZodNumber>;
163
+ quantity: z.ZodNullable<z.ZodNumber>;
164
+ price: z.ZodNumber;
165
+ isOpen: z.ZodBoolean;
166
+ article: z.ZodNullable<z.ZodString>;
167
+ size: z.ZodNullable<z.ZodString>;
168
+ size2: z.ZodNullable<z.ZodString>;
169
+ size3: z.ZodNullable<z.ZodString>;
170
+ imageUUID: z.ZodNullable<z.ZodString>;
171
+ vat: z.ZodNullable<z.ZodNumber>;
172
+ productUUID: z.ZodNullable<z.ZodString>;
173
+ preOrderCollectionUUID: z.ZodString;
174
+ advancedPrice: z.ZodNullable<z.ZodString>;
175
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
176
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
177
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../..").SalesUnitEnum>>;
178
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
179
+ image: z.ZodNullable<z.ZodObject<{
180
+ uuid: z.ZodString;
181
+ categoryUUID: z.ZodNullable<z.ZodString>;
182
+ name: z.ZodString;
183
+ color: z.ZodNullable<z.ZodString>;
184
+ vbn: z.ZodNullable<z.ZodString>;
185
+ externalUUID: z.ZodNullable<z.ZodString>;
186
+ productImageUrl: z.ZodString;
187
+ companyUUID: z.ZodString;
188
+ country: z.ZodNullable<z.ZodString>;
189
+ grower: z.ZodNullable<z.ZodString>;
190
+ createdAt: z.ZodDate;
191
+ updatedAt: z.ZodDate;
192
+ deletedAt: z.ZodNullable<z.ZodDate>;
193
+ }, "strip", z.ZodTypeAny, {
194
+ name: string;
195
+ uuid: string;
196
+ country: string | null;
197
+ createdAt: Date;
198
+ updatedAt: Date;
199
+ deletedAt: Date | null;
200
+ companyUUID: string;
201
+ categoryUUID: string | null;
202
+ color: string | null;
203
+ vbn: string | null;
204
+ externalUUID: string | null;
205
+ productImageUrl: string;
206
+ grower: string | null;
207
+ }, {
208
+ name: string;
209
+ uuid: string;
210
+ country: string | null;
211
+ createdAt: Date;
212
+ updatedAt: Date;
213
+ deletedAt: Date | null;
214
+ companyUUID: string;
215
+ categoryUUID: string | null;
216
+ color: string | null;
217
+ vbn: string | null;
218
+ externalUUID: string | null;
219
+ productImageUrl: string;
220
+ grower: string | null;
221
+ }>>;
222
+ category: z.ZodNullable<z.ZodObject<{
223
+ uuid: z.ZodString;
224
+ name: z.ZodString;
225
+ multiplicity: z.ZodNullable<z.ZodNumber>;
226
+ isSizeSeparate: z.ZodBoolean;
227
+ isSaveCategoryName: z.ZodBoolean;
228
+ status: z.ZodNativeEnum<typeof import("../..").CategoryStatusEnum>;
229
+ createdAt: z.ZodDate;
230
+ updatedAt: z.ZodDate;
231
+ deletedAt: z.ZodNullable<z.ZodDate>;
232
+ }, "strip", z.ZodTypeAny, {
233
+ name: string;
234
+ status: import("../..").CategoryStatusEnum;
235
+ uuid: string;
236
+ createdAt: Date;
237
+ updatedAt: Date;
238
+ deletedAt: Date | null;
239
+ multiplicity: number | null;
240
+ isSizeSeparate: boolean;
241
+ isSaveCategoryName: boolean;
242
+ }, {
243
+ name: string;
244
+ status: import("../..").CategoryStatusEnum;
245
+ uuid: string;
246
+ createdAt: Date;
247
+ updatedAt: Date;
248
+ deletedAt: Date | null;
249
+ multiplicity: number | null;
250
+ isSizeSeparate: boolean;
251
+ isSaveCategoryName: boolean;
252
+ }>>;
253
+ type: z.ZodNullable<z.ZodObject<{
254
+ uuid: z.ZodString;
255
+ name: z.ZodString;
256
+ rank: z.ZodNumber;
257
+ deletedAt: z.ZodNullable<z.ZodDate>;
258
+ createdAt: z.ZodDate;
259
+ updatedAt: z.ZodDate;
260
+ }, "strip", z.ZodTypeAny, {
261
+ name: string;
262
+ uuid: string;
263
+ createdAt: Date;
264
+ updatedAt: Date;
265
+ deletedAt: Date | null;
266
+ rank: number;
267
+ }, {
268
+ name: string;
269
+ uuid: string;
270
+ createdAt: Date;
271
+ updatedAt: Date;
272
+ deletedAt: Date | null;
273
+ rank: number;
274
+ }>>;
275
+ matchingProducts: z.ZodArray<z.ZodObject<{
276
+ uuid: z.ZodString;
277
+ name: z.ZodString;
278
+ size: z.ZodNullable<z.ZodString>;
279
+ grower: z.ZodNullable<z.ZodString>;
280
+ color: z.ZodNullable<z.ZodString>;
281
+ country: z.ZodNullable<z.ZodString>;
282
+ deliveryDate: z.ZodDate;
283
+ }, "strip", z.ZodTypeAny, {
284
+ name: string;
285
+ uuid: string;
286
+ country: string | null;
287
+ color: string | null;
288
+ grower: string | null;
289
+ deliveryDate: Date;
290
+ size: string | null;
291
+ }, {
292
+ name: string;
293
+ uuid: string;
294
+ country: string | null;
295
+ color: string | null;
296
+ grower: string | null;
297
+ deliveryDate: Date;
298
+ size: string | null;
299
+ }>, "many">;
300
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
301
+ uuid: z.ZodString;
302
+ title: z.ZodNullable<z.ZodString>;
303
+ optionMultiplicity: z.ZodNumber;
304
+ optionPrice: z.ZodNullable<z.ZodNumber>;
305
+ rank: z.ZodNumber;
306
+ }, "strip", z.ZodTypeAny, {
307
+ uuid: string;
308
+ rank: number;
309
+ title: string | null;
310
+ optionMultiplicity: number;
311
+ optionPrice: number | null;
312
+ }, {
313
+ uuid: string;
314
+ rank: number;
315
+ title: string | null;
316
+ optionMultiplicity: number;
317
+ optionPrice: number | null;
318
+ }>, "many">>;
319
+ preOrderedQuantity: z.ZodOptional<z.ZodNumber>;
320
+ }, "strip", z.ZodTypeAny, {
321
+ name: string;
322
+ type: {
323
+ name: string;
324
+ uuid: string;
325
+ createdAt: Date;
326
+ updatedAt: Date;
327
+ deletedAt: Date | null;
328
+ rank: number;
329
+ } | null;
330
+ uuid: string;
331
+ country: string | null;
332
+ createdAt: Date;
333
+ updatedAt: Date;
334
+ multiplicity: number;
335
+ categoryUUID: string;
336
+ color: string | null;
337
+ grower: string | null;
338
+ category: {
339
+ name: string;
340
+ status: import("../..").CategoryStatusEnum;
341
+ uuid: string;
342
+ createdAt: Date;
343
+ updatedAt: Date;
344
+ deletedAt: Date | null;
345
+ multiplicity: number | null;
346
+ isSizeSeparate: boolean;
347
+ isSaveCategoryName: boolean;
348
+ } | null;
349
+ description: string | null;
350
+ group: string | null;
351
+ balance: number | null;
352
+ quantity: number | null;
353
+ price: number;
354
+ isOpen: boolean;
355
+ article: string | null;
356
+ size: string | null;
357
+ size2: string | null;
358
+ size3: string | null;
359
+ imageUUID: string | null;
360
+ vat: number | null;
361
+ image: {
362
+ name: string;
363
+ uuid: string;
364
+ country: string | null;
365
+ createdAt: Date;
366
+ updatedAt: Date;
367
+ deletedAt: Date | null;
368
+ companyUUID: string;
369
+ categoryUUID: string | null;
370
+ color: string | null;
371
+ vbn: string | null;
372
+ externalUUID: string | null;
373
+ productImageUrl: string;
374
+ grower: string | null;
375
+ } | null;
376
+ productUUID: string | null;
377
+ preOrderCollectionUUID: string;
378
+ advancedPrice: string | null;
379
+ isSizeCustomizable: boolean;
380
+ isColorCustomizable: boolean;
381
+ salesUnit: import("../..").SalesUnitEnum | null;
382
+ multiplicityDescription: string | null;
383
+ matchingProducts: {
384
+ name: string;
385
+ uuid: string;
386
+ country: string | null;
387
+ color: string | null;
388
+ grower: string | null;
389
+ deliveryDate: Date;
390
+ size: string | null;
391
+ }[];
392
+ multiplicityOptions?: {
393
+ uuid: string;
394
+ rank: number;
395
+ title: string | null;
396
+ optionMultiplicity: number;
397
+ optionPrice: number | null;
398
+ }[] | undefined;
399
+ preOrderedQuantity?: number | undefined;
400
+ }, {
401
+ name: string;
402
+ type: {
403
+ name: string;
404
+ uuid: string;
405
+ createdAt: Date;
406
+ updatedAt: Date;
407
+ deletedAt: Date | null;
408
+ rank: number;
409
+ } | null;
410
+ uuid: string;
411
+ country: string | null;
412
+ createdAt: Date;
413
+ updatedAt: Date;
414
+ multiplicity: number;
415
+ categoryUUID: string;
416
+ color: string | null;
417
+ grower: string | null;
418
+ category: {
419
+ name: string;
420
+ status: import("../..").CategoryStatusEnum;
421
+ uuid: string;
422
+ createdAt: Date;
423
+ updatedAt: Date;
424
+ deletedAt: Date | null;
425
+ multiplicity: number | null;
426
+ isSizeSeparate: boolean;
427
+ isSaveCategoryName: boolean;
428
+ } | null;
429
+ description: string | null;
430
+ group: string | null;
431
+ balance: number | null;
432
+ quantity: number | null;
433
+ price: number;
434
+ isOpen: boolean;
435
+ article: string | null;
436
+ size: string | null;
437
+ size2: string | null;
438
+ size3: string | null;
439
+ imageUUID: string | null;
440
+ vat: number | null;
441
+ image: {
442
+ name: string;
443
+ uuid: string;
444
+ country: string | null;
445
+ createdAt: Date;
446
+ updatedAt: Date;
447
+ deletedAt: Date | null;
448
+ companyUUID: string;
449
+ categoryUUID: string | null;
450
+ color: string | null;
451
+ vbn: string | null;
452
+ externalUUID: string | null;
453
+ productImageUrl: string;
454
+ grower: string | null;
455
+ } | null;
456
+ productUUID: string | null;
457
+ preOrderCollectionUUID: string;
458
+ advancedPrice: string | null;
459
+ salesUnit: import("../..").SalesUnitEnum | null;
460
+ multiplicityDescription: string | null;
461
+ matchingProducts: {
462
+ name: string;
463
+ uuid: string;
464
+ country: string | null;
465
+ color: string | null;
466
+ grower: string | null;
467
+ deliveryDate: Date;
468
+ size: string | null;
469
+ }[];
470
+ isSizeCustomizable?: boolean | undefined;
471
+ isColorCustomizable?: boolean | undefined;
472
+ multiplicityOptions?: {
473
+ uuid: string;
474
+ rank: number;
475
+ title: string | null;
476
+ optionMultiplicity: number;
477
+ optionPrice: number | null;
478
+ }[] | undefined;
479
+ preOrderedQuantity?: number | undefined;
480
+ }>;
481
+ category: z.ZodNullable<z.ZodObject<{
482
+ uuid: z.ZodString;
483
+ name: z.ZodString;
484
+ multiplicity: z.ZodNullable<z.ZodNumber>;
485
+ isSizeSeparate: z.ZodBoolean;
486
+ isSaveCategoryName: z.ZodBoolean;
487
+ status: z.ZodNativeEnum<typeof import("../..").CategoryStatusEnum>;
488
+ createdAt: z.ZodDate;
489
+ updatedAt: z.ZodDate;
490
+ deletedAt: z.ZodNullable<z.ZodDate>;
491
+ }, "strip", z.ZodTypeAny, {
492
+ name: string;
493
+ status: import("../..").CategoryStatusEnum;
494
+ uuid: string;
495
+ createdAt: Date;
496
+ updatedAt: Date;
497
+ deletedAt: Date | null;
498
+ multiplicity: number | null;
499
+ isSizeSeparate: boolean;
500
+ isSaveCategoryName: boolean;
501
+ }, {
502
+ name: string;
503
+ status: import("../..").CategoryStatusEnum;
504
+ uuid: string;
505
+ createdAt: Date;
506
+ updatedAt: Date;
507
+ deletedAt: Date | null;
508
+ multiplicity: number | null;
509
+ isSizeSeparate: boolean;
510
+ isSaveCategoryName: boolean;
511
+ }>>;
512
+ deliveryDate: z.ZodNullable<z.ZodDate>;
513
+ }, "strip", z.ZodTypeAny, {
514
+ name: string | null;
515
+ uuid: string;
516
+ categoryUUID: string | null;
517
+ color: string | null;
518
+ grower: string | null;
519
+ category: {
520
+ name: string;
521
+ status: import("../..").CategoryStatusEnum;
522
+ uuid: string;
523
+ createdAt: Date;
524
+ updatedAt: Date;
525
+ deletedAt: Date | null;
526
+ multiplicity: number | null;
527
+ isSizeSeparate: boolean;
528
+ isSaveCategoryName: boolean;
529
+ } | null;
530
+ deliveryDate: Date | null;
531
+ comment: string | null;
532
+ quantity: number;
533
+ price: number | null;
534
+ size: string | null;
535
+ tag: string | null;
536
+ preOrderCollectionItemUUID: string | null;
537
+ preOrderUUID: string;
538
+ isPurchased: boolean;
539
+ isReplaceable: boolean;
540
+ stopPrice: number | null;
541
+ highAttention: boolean;
542
+ parentPreOrderProductUUID: string | null;
543
+ preOrderCollectionItem: {
544
+ name: string;
545
+ type: {
546
+ name: string;
547
+ uuid: string;
548
+ createdAt: Date;
549
+ updatedAt: Date;
550
+ deletedAt: Date | null;
551
+ rank: number;
552
+ } | null;
553
+ uuid: string;
554
+ country: string | null;
555
+ createdAt: Date;
556
+ updatedAt: Date;
557
+ multiplicity: number;
558
+ categoryUUID: string;
559
+ color: string | null;
560
+ grower: string | null;
561
+ category: {
562
+ name: string;
563
+ status: import("../..").CategoryStatusEnum;
564
+ uuid: string;
565
+ createdAt: Date;
566
+ updatedAt: Date;
567
+ deletedAt: Date | null;
568
+ multiplicity: number | null;
569
+ isSizeSeparate: boolean;
570
+ isSaveCategoryName: boolean;
571
+ } | null;
572
+ description: string | null;
573
+ group: string | null;
574
+ balance: number | null;
575
+ quantity: number | null;
576
+ price: number;
577
+ isOpen: boolean;
578
+ article: string | null;
579
+ size: string | null;
580
+ size2: string | null;
581
+ size3: string | null;
582
+ imageUUID: string | null;
583
+ vat: number | null;
584
+ image: {
585
+ name: string;
586
+ uuid: string;
587
+ country: string | null;
588
+ createdAt: Date;
589
+ updatedAt: Date;
590
+ deletedAt: Date | null;
591
+ companyUUID: string;
592
+ categoryUUID: string | null;
593
+ color: string | null;
594
+ vbn: string | null;
595
+ externalUUID: string | null;
596
+ productImageUrl: string;
597
+ grower: string | null;
598
+ } | null;
599
+ productUUID: string | null;
600
+ preOrderCollectionUUID: string;
601
+ advancedPrice: string | null;
602
+ isSizeCustomizable: boolean;
603
+ isColorCustomizable: boolean;
604
+ salesUnit: import("../..").SalesUnitEnum | null;
605
+ multiplicityDescription: string | null;
606
+ matchingProducts: {
607
+ name: string;
608
+ uuid: string;
609
+ country: string | null;
610
+ color: string | null;
611
+ grower: string | null;
612
+ deliveryDate: Date;
613
+ size: string | null;
614
+ }[];
615
+ multiplicityOptions?: {
616
+ uuid: string;
617
+ rank: number;
618
+ title: string | null;
619
+ optionMultiplicity: number;
620
+ optionPrice: number | null;
621
+ }[] | undefined;
622
+ preOrderedQuantity?: number | undefined;
623
+ };
624
+ multiplicityOptionUUID?: string | null | undefined;
625
+ matchingConfig?: {
626
+ matchByName: boolean;
627
+ matchByCategory: boolean;
628
+ matchByColor: boolean;
629
+ matchBySize: boolean;
630
+ matchByGrower: boolean;
631
+ } | null | undefined;
632
+ }, {
633
+ name: string | null;
634
+ uuid: string;
635
+ categoryUUID: string | null;
636
+ color: string | null;
637
+ grower: string | null;
638
+ category: {
639
+ name: string;
640
+ status: import("../..").CategoryStatusEnum;
641
+ uuid: string;
642
+ createdAt: Date;
643
+ updatedAt: Date;
644
+ deletedAt: Date | null;
645
+ multiplicity: number | null;
646
+ isSizeSeparate: boolean;
647
+ isSaveCategoryName: boolean;
648
+ } | null;
649
+ deliveryDate: Date | null;
650
+ comment: string | null;
651
+ quantity: number;
652
+ price: number | null;
653
+ size: string | null;
654
+ tag: string | null;
655
+ preOrderCollectionItemUUID: string | null;
656
+ preOrderUUID: string;
657
+ isPurchased: boolean;
658
+ isReplaceable: boolean;
659
+ stopPrice: number | null;
660
+ highAttention: boolean;
661
+ parentPreOrderProductUUID: string | null;
662
+ preOrderCollectionItem: {
663
+ name: string;
664
+ type: {
665
+ name: string;
666
+ uuid: string;
667
+ createdAt: Date;
668
+ updatedAt: Date;
669
+ deletedAt: Date | null;
670
+ rank: number;
671
+ } | null;
672
+ uuid: string;
673
+ country: string | null;
674
+ createdAt: Date;
675
+ updatedAt: Date;
676
+ multiplicity: number;
677
+ categoryUUID: string;
678
+ color: string | null;
679
+ grower: string | null;
680
+ category: {
681
+ name: string;
682
+ status: import("../..").CategoryStatusEnum;
683
+ uuid: string;
684
+ createdAt: Date;
685
+ updatedAt: Date;
686
+ deletedAt: Date | null;
687
+ multiplicity: number | null;
688
+ isSizeSeparate: boolean;
689
+ isSaveCategoryName: boolean;
690
+ } | null;
691
+ description: string | null;
692
+ group: string | null;
693
+ balance: number | null;
694
+ quantity: number | null;
695
+ price: number;
696
+ isOpen: boolean;
697
+ article: string | null;
698
+ size: string | null;
699
+ size2: string | null;
700
+ size3: string | null;
701
+ imageUUID: string | null;
702
+ vat: number | null;
703
+ image: {
704
+ name: string;
705
+ uuid: string;
706
+ country: string | null;
707
+ createdAt: Date;
708
+ updatedAt: Date;
709
+ deletedAt: Date | null;
710
+ companyUUID: string;
711
+ categoryUUID: string | null;
712
+ color: string | null;
713
+ vbn: string | null;
714
+ externalUUID: string | null;
715
+ productImageUrl: string;
716
+ grower: string | null;
717
+ } | null;
718
+ productUUID: string | null;
719
+ preOrderCollectionUUID: string;
720
+ advancedPrice: string | null;
721
+ salesUnit: import("../..").SalesUnitEnum | null;
722
+ multiplicityDescription: string | null;
723
+ matchingProducts: {
724
+ name: string;
725
+ uuid: string;
726
+ country: string | null;
727
+ color: string | null;
728
+ grower: string | null;
729
+ deliveryDate: Date;
730
+ size: string | null;
731
+ }[];
732
+ isSizeCustomizable?: boolean | undefined;
733
+ isColorCustomizable?: boolean | undefined;
734
+ multiplicityOptions?: {
735
+ uuid: string;
736
+ rank: number;
737
+ title: string | null;
738
+ optionMultiplicity: number;
739
+ optionPrice: number | null;
740
+ }[] | undefined;
741
+ preOrderedQuantity?: number | undefined;
742
+ };
743
+ multiplicityOptionUUID?: string | null | undefined;
744
+ matchingConfig?: {
745
+ matchByName: boolean;
746
+ matchByCategory: boolean;
747
+ matchByColor: boolean;
748
+ matchBySize: boolean;
749
+ matchByGrower: boolean;
750
+ } | null | undefined;
751
+ }>;
752
+ export declare const CreatePreOrderProductSchema: z.ZodObject<{
753
+ comment: z.ZodNullable<z.ZodString>;
754
+ quantity: z.ZodNumber;
755
+ tag: z.ZodNullable<z.ZodString>;
756
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
757
+ isPurchased: z.ZodBoolean;
758
+ isReplaceable: z.ZodBoolean;
759
+ stopPrice: z.ZodNullable<z.ZodNumber>;
760
+ highAttention: z.ZodBoolean;
761
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
762
+ categoryUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
763
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
764
+ grower: z.ZodOptional<z.ZodNullable<z.ZodString>>;
765
+ size: z.ZodOptional<z.ZodNullable<z.ZodString>>;
766
+ price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
767
+ color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
768
+ parentPreOrderProductUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
769
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
770
+ matchByName: z.ZodBoolean;
771
+ matchByCategory: z.ZodBoolean;
772
+ matchByColor: z.ZodBoolean;
773
+ matchBySize: z.ZodBoolean;
774
+ matchByGrower: z.ZodBoolean;
775
+ }, "strip", z.ZodTypeAny, {
776
+ matchByName: boolean;
777
+ matchByCategory: boolean;
778
+ matchByColor: boolean;
779
+ matchBySize: boolean;
780
+ matchByGrower: boolean;
781
+ }, {
782
+ matchByName: boolean;
783
+ matchByCategory: boolean;
784
+ matchByColor: boolean;
785
+ matchBySize: boolean;
786
+ matchByGrower: boolean;
787
+ }>>>;
788
+ }, "strip", z.ZodTypeAny, {
789
+ comment: string | null;
790
+ quantity: number;
791
+ tag: string | null;
792
+ preOrderCollectionItemUUID: string | null;
793
+ isPurchased: boolean;
794
+ isReplaceable: boolean;
795
+ stopPrice: number | null;
796
+ highAttention: boolean;
797
+ multiplicityOptionUUID?: string | null | undefined;
798
+ categoryUUID?: string | null | undefined;
799
+ name?: string | null | undefined;
800
+ grower?: string | null | undefined;
801
+ size?: string | null | undefined;
802
+ price?: number | null | undefined;
803
+ color?: string | null | undefined;
804
+ parentPreOrderProductUUID?: string | null | undefined;
805
+ matchingConfig?: {
806
+ matchByName: boolean;
807
+ matchByCategory: boolean;
808
+ matchByColor: boolean;
809
+ matchBySize: boolean;
810
+ matchByGrower: boolean;
811
+ } | null | undefined;
812
+ }, {
813
+ comment: string | null;
814
+ quantity: number;
815
+ tag: string | null;
816
+ preOrderCollectionItemUUID: string | null;
817
+ isPurchased: boolean;
818
+ isReplaceable: boolean;
819
+ stopPrice: number | null;
820
+ highAttention: boolean;
821
+ multiplicityOptionUUID?: string | null | undefined;
822
+ categoryUUID?: string | null | undefined;
823
+ name?: string | null | undefined;
824
+ grower?: string | null | undefined;
825
+ size?: string | null | undefined;
826
+ price?: number | null | undefined;
827
+ color?: string | null | undefined;
828
+ parentPreOrderProductUUID?: string | null | undefined;
829
+ matchingConfig?: {
830
+ matchByName: boolean;
831
+ matchByCategory: boolean;
832
+ matchByColor: boolean;
833
+ matchBySize: boolean;
834
+ matchByGrower: boolean;
835
+ } | null | undefined;
836
+ }>;
837
+ export declare const UpdatePreOrderProductSchema: z.ZodObject<{
838
+ comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
839
+ quantity: z.ZodOptional<z.ZodNumber>;
840
+ tag: z.ZodOptional<z.ZodNullable<z.ZodString>>;
841
+ preOrderCollectionItemUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
842
+ isPurchased: z.ZodOptional<z.ZodBoolean>;
843
+ isReplaceable: z.ZodOptional<z.ZodBoolean>;
844
+ stopPrice: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
845
+ highAttention: z.ZodOptional<z.ZodBoolean>;
846
+ multiplicityOptionUUID: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
847
+ categoryUUID: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
848
+ name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
849
+ grower: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
850
+ size: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
851
+ price: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
852
+ color: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
853
+ parentPreOrderProductUUID: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
854
+ matchingConfig: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
855
+ matchByName: z.ZodBoolean;
856
+ matchByCategory: z.ZodBoolean;
857
+ matchByColor: z.ZodBoolean;
858
+ matchBySize: z.ZodBoolean;
859
+ matchByGrower: z.ZodBoolean;
860
+ }, "strip", z.ZodTypeAny, {
861
+ matchByName: boolean;
862
+ matchByCategory: boolean;
863
+ matchByColor: boolean;
864
+ matchBySize: boolean;
865
+ matchByGrower: boolean;
866
+ }, {
867
+ matchByName: boolean;
868
+ matchByCategory: boolean;
869
+ matchByColor: boolean;
870
+ matchBySize: boolean;
871
+ matchByGrower: boolean;
872
+ }>>>>;
873
+ }, "strip", z.ZodTypeAny, {
874
+ comment?: string | null | undefined;
875
+ quantity?: number | undefined;
876
+ tag?: string | null | undefined;
877
+ preOrderCollectionItemUUID?: string | null | undefined;
878
+ isPurchased?: boolean | undefined;
879
+ isReplaceable?: boolean | undefined;
880
+ stopPrice?: number | null | undefined;
881
+ highAttention?: boolean | undefined;
882
+ multiplicityOptionUUID?: string | null | undefined;
883
+ categoryUUID?: string | null | undefined;
884
+ name?: string | null | undefined;
885
+ grower?: string | null | undefined;
886
+ size?: string | null | undefined;
887
+ price?: number | null | undefined;
888
+ color?: string | null | undefined;
889
+ parentPreOrderProductUUID?: string | null | undefined;
890
+ matchingConfig?: {
891
+ matchByName: boolean;
892
+ matchByCategory: boolean;
893
+ matchByColor: boolean;
894
+ matchBySize: boolean;
895
+ matchByGrower: boolean;
896
+ } | null | undefined;
897
+ }, {
898
+ comment?: string | null | undefined;
899
+ quantity?: number | undefined;
900
+ tag?: string | null | undefined;
901
+ preOrderCollectionItemUUID?: string | null | undefined;
902
+ isPurchased?: boolean | undefined;
903
+ isReplaceable?: boolean | undefined;
904
+ stopPrice?: number | null | undefined;
905
+ highAttention?: boolean | undefined;
906
+ multiplicityOptionUUID?: string | null | undefined;
907
+ categoryUUID?: string | null | undefined;
908
+ name?: string | null | undefined;
909
+ grower?: string | null | undefined;
910
+ size?: string | null | undefined;
911
+ price?: number | null | undefined;
912
+ color?: string | null | undefined;
913
+ parentPreOrderProductUUID?: string | null | undefined;
914
+ matchingConfig?: {
915
+ matchByName: boolean;
916
+ matchByCategory: boolean;
917
+ matchByColor: boolean;
918
+ matchBySize: boolean;
919
+ matchByGrower: boolean;
920
+ } | null | undefined;
921
+ }>;
922
+ export declare const CreatePreOrderProductWebshopSchema: z.ZodObject<Omit<{
923
+ uuid: z.ZodString;
924
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
925
+ preOrderUUID: z.ZodString;
926
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
927
+ quantity: z.ZodNumber;
928
+ comment: z.ZodNullable<z.ZodString>;
929
+ tag: z.ZodNullable<z.ZodString>;
930
+ isPurchased: z.ZodBoolean;
931
+ isReplaceable: z.ZodBoolean;
932
+ stopPrice: z.ZodNullable<z.ZodNumber>;
933
+ highAttention: z.ZodBoolean;
934
+ categoryUUID: z.ZodNullable<z.ZodString>;
935
+ name: z.ZodNullable<z.ZodString>;
936
+ grower: z.ZodNullable<z.ZodString>;
937
+ size: z.ZodNullable<z.ZodString>;
938
+ price: z.ZodNullable<z.ZodNumber>;
939
+ color: z.ZodNullable<z.ZodString>;
940
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
941
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
942
+ matchByName: z.ZodBoolean;
943
+ matchByCategory: z.ZodBoolean;
944
+ matchByColor: z.ZodBoolean;
945
+ matchBySize: z.ZodBoolean;
946
+ matchByGrower: z.ZodBoolean;
947
+ }, "strip", z.ZodTypeAny, {
948
+ matchByName: boolean;
949
+ matchByCategory: boolean;
950
+ matchByColor: boolean;
951
+ matchBySize: boolean;
952
+ matchByGrower: boolean;
953
+ }, {
954
+ matchByName: boolean;
955
+ matchByCategory: boolean;
956
+ matchByColor: boolean;
957
+ matchBySize: boolean;
958
+ matchByGrower: boolean;
959
+ }>>>;
960
+ }, "name" | "uuid" | "categoryUUID" | "color" | "grower" | "price" | "size" | "tag" | "isPurchased" | "parentPreOrderProductUUID" | "matchingConfig">, "strip", z.ZodTypeAny, {
961
+ comment: string | null;
962
+ quantity: number;
963
+ preOrderCollectionItemUUID: string | null;
964
+ preOrderUUID: string;
965
+ isReplaceable: boolean;
966
+ stopPrice: number | null;
967
+ highAttention: boolean;
968
+ multiplicityOptionUUID?: string | null | undefined;
969
+ }, {
970
+ comment: string | null;
971
+ quantity: number;
972
+ preOrderCollectionItemUUID: string | null;
973
+ preOrderUUID: string;
974
+ isReplaceable: boolean;
975
+ stopPrice: number | null;
976
+ highAttention: boolean;
977
+ multiplicityOptionUUID?: string | null | undefined;
978
+ }>;
979
+ export declare const UpdatePreOrderProductWebshopSchema: z.ZodObject<{
980
+ comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
981
+ quantity: z.ZodOptional<z.ZodNumber>;
982
+ multiplicityOptionUUID: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
983
+ isReplaceable: z.ZodOptional<z.ZodBoolean>;
984
+ stopPrice: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
985
+ highAttention: z.ZodOptional<z.ZodBoolean>;
986
+ }, "strip", z.ZodTypeAny, {
987
+ comment?: string | null | undefined;
988
+ quantity?: number | undefined;
989
+ multiplicityOptionUUID?: string | null | undefined;
990
+ isReplaceable?: boolean | undefined;
991
+ stopPrice?: number | null | undefined;
992
+ highAttention?: boolean | undefined;
993
+ }, {
994
+ comment?: string | null | undefined;
995
+ quantity?: number | undefined;
996
+ multiplicityOptionUUID?: string | null | undefined;
997
+ isReplaceable?: boolean | undefined;
998
+ stopPrice?: number | null | undefined;
999
+ highAttention?: boolean | undefined;
1000
+ }>;
1001
+ export declare const PreOrderProductListSchema: z.ZodObject<{
1002
+ list: z.ZodArray<z.ZodObject<{
1003
+ uuid: z.ZodString;
1004
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
1005
+ preOrderUUID: z.ZodString;
1006
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1007
+ quantity: z.ZodNumber;
1008
+ comment: z.ZodNullable<z.ZodString>;
1009
+ tag: z.ZodNullable<z.ZodString>;
1010
+ isPurchased: z.ZodBoolean;
1011
+ isReplaceable: z.ZodBoolean;
1012
+ stopPrice: z.ZodNullable<z.ZodNumber>;
1013
+ highAttention: z.ZodBoolean;
1014
+ categoryUUID: z.ZodNullable<z.ZodString>;
1015
+ name: z.ZodNullable<z.ZodString>;
1016
+ grower: z.ZodNullable<z.ZodString>;
1017
+ size: z.ZodNullable<z.ZodString>;
1018
+ price: z.ZodNullable<z.ZodNumber>;
1019
+ color: z.ZodNullable<z.ZodString>;
1020
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
1021
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1022
+ matchByName: z.ZodBoolean;
1023
+ matchByCategory: z.ZodBoolean;
1024
+ matchByColor: z.ZodBoolean;
1025
+ matchBySize: z.ZodBoolean;
1026
+ matchByGrower: z.ZodBoolean;
1027
+ }, "strip", z.ZodTypeAny, {
1028
+ matchByName: boolean;
1029
+ matchByCategory: boolean;
1030
+ matchByColor: boolean;
1031
+ matchBySize: boolean;
1032
+ matchByGrower: boolean;
1033
+ }, {
1034
+ matchByName: boolean;
1035
+ matchByCategory: boolean;
1036
+ matchByColor: boolean;
1037
+ matchBySize: boolean;
1038
+ matchByGrower: boolean;
1039
+ }>>>;
1040
+ }, "strip", z.ZodTypeAny, {
1041
+ name: string | null;
1042
+ uuid: string;
1043
+ categoryUUID: string | null;
1044
+ color: string | null;
1045
+ grower: string | null;
1046
+ comment: string | null;
1047
+ quantity: number;
1048
+ price: number | null;
1049
+ size: string | null;
1050
+ tag: string | null;
1051
+ preOrderCollectionItemUUID: string | null;
1052
+ preOrderUUID: string;
1053
+ isPurchased: boolean;
1054
+ isReplaceable: boolean;
1055
+ stopPrice: number | null;
1056
+ highAttention: boolean;
1057
+ parentPreOrderProductUUID: string | null;
1058
+ multiplicityOptionUUID?: string | null | undefined;
1059
+ matchingConfig?: {
1060
+ matchByName: boolean;
1061
+ matchByCategory: boolean;
1062
+ matchByColor: boolean;
1063
+ matchBySize: boolean;
1064
+ matchByGrower: boolean;
1065
+ } | null | undefined;
1066
+ }, {
1067
+ name: string | null;
1068
+ uuid: string;
1069
+ categoryUUID: string | null;
1070
+ color: string | null;
1071
+ grower: string | null;
1072
+ comment: string | null;
1073
+ quantity: number;
1074
+ price: number | null;
1075
+ size: string | null;
1076
+ tag: string | null;
1077
+ preOrderCollectionItemUUID: string | null;
1078
+ preOrderUUID: string;
1079
+ isPurchased: boolean;
1080
+ isReplaceable: boolean;
1081
+ stopPrice: number | null;
1082
+ highAttention: boolean;
1083
+ parentPreOrderProductUUID: string | null;
1084
+ multiplicityOptionUUID?: string | null | undefined;
1085
+ matchingConfig?: {
1086
+ matchByName: boolean;
1087
+ matchByCategory: boolean;
1088
+ matchByColor: boolean;
1089
+ matchBySize: boolean;
1090
+ matchByGrower: boolean;
1091
+ } | null | undefined;
1092
+ }>, "many">;
1093
+ total: z.ZodNumber;
1094
+ }, "strip", z.ZodTypeAny, {
1095
+ total: number;
1096
+ list: {
1097
+ name: string | null;
1098
+ uuid: string;
1099
+ categoryUUID: string | null;
1100
+ color: string | null;
1101
+ grower: string | null;
1102
+ comment: string | null;
1103
+ quantity: number;
1104
+ price: number | null;
1105
+ size: string | null;
1106
+ tag: string | null;
1107
+ preOrderCollectionItemUUID: string | null;
1108
+ preOrderUUID: string;
1109
+ isPurchased: boolean;
1110
+ isReplaceable: boolean;
1111
+ stopPrice: number | null;
1112
+ highAttention: boolean;
1113
+ parentPreOrderProductUUID: string | null;
1114
+ multiplicityOptionUUID?: string | null | undefined;
1115
+ matchingConfig?: {
1116
+ matchByName: boolean;
1117
+ matchByCategory: boolean;
1118
+ matchByColor: boolean;
1119
+ matchBySize: boolean;
1120
+ matchByGrower: boolean;
1121
+ } | null | undefined;
1122
+ }[];
1123
+ }, {
1124
+ total: number;
1125
+ list: {
1126
+ name: string | null;
1127
+ uuid: string;
1128
+ categoryUUID: string | null;
1129
+ color: string | null;
1130
+ grower: string | null;
1131
+ comment: string | null;
1132
+ quantity: number;
1133
+ price: number | null;
1134
+ size: string | null;
1135
+ tag: string | null;
1136
+ preOrderCollectionItemUUID: string | null;
1137
+ preOrderUUID: string;
1138
+ isPurchased: boolean;
1139
+ isReplaceable: boolean;
1140
+ stopPrice: number | null;
1141
+ highAttention: boolean;
1142
+ parentPreOrderProductUUID: string | null;
1143
+ multiplicityOptionUUID?: string | null | undefined;
1144
+ matchingConfig?: {
1145
+ matchByName: boolean;
1146
+ matchByCategory: boolean;
1147
+ matchByColor: boolean;
1148
+ matchBySize: boolean;
1149
+ matchByGrower: boolean;
1150
+ } | null | undefined;
1151
+ }[];
1152
+ }>;
1153
+ export declare const preOrderProductExtendedListSchema: z.ZodObject<{
1154
+ list: z.ZodArray<z.ZodObject<{
1155
+ name: z.ZodNullable<z.ZodString>;
1156
+ uuid: z.ZodString;
1157
+ categoryUUID: z.ZodNullable<z.ZodString>;
1158
+ color: z.ZodNullable<z.ZodString>;
1159
+ grower: z.ZodNullable<z.ZodString>;
1160
+ comment: z.ZodNullable<z.ZodString>;
1161
+ quantity: z.ZodNumber;
1162
+ price: z.ZodNullable<z.ZodNumber>;
1163
+ size: z.ZodNullable<z.ZodString>;
1164
+ tag: z.ZodNullable<z.ZodString>;
1165
+ multiplicityOptionUUID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1166
+ preOrderCollectionItemUUID: z.ZodNullable<z.ZodString>;
1167
+ preOrderUUID: z.ZodString;
1168
+ isPurchased: z.ZodBoolean;
1169
+ isReplaceable: z.ZodBoolean;
1170
+ stopPrice: z.ZodNullable<z.ZodNumber>;
1171
+ highAttention: z.ZodBoolean;
1172
+ parentPreOrderProductUUID: z.ZodNullable<z.ZodString>;
1173
+ matchingConfig: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1174
+ matchByName: z.ZodBoolean;
1175
+ matchByCategory: z.ZodBoolean;
1176
+ matchByColor: z.ZodBoolean;
1177
+ matchBySize: z.ZodBoolean;
1178
+ matchByGrower: z.ZodBoolean;
1179
+ }, "strip", z.ZodTypeAny, {
1180
+ matchByName: boolean;
1181
+ matchByCategory: boolean;
1182
+ matchByColor: boolean;
1183
+ matchBySize: boolean;
1184
+ matchByGrower: boolean;
1185
+ }, {
1186
+ matchByName: boolean;
1187
+ matchByCategory: boolean;
1188
+ matchByColor: boolean;
1189
+ matchBySize: boolean;
1190
+ matchByGrower: boolean;
1191
+ }>>>;
1192
+ preOrderCollectionItem: z.ZodObject<{
1193
+ name: z.ZodString;
1194
+ uuid: z.ZodString;
1195
+ country: z.ZodNullable<z.ZodString>;
1196
+ createdAt: z.ZodDate;
1197
+ updatedAt: z.ZodDate;
1198
+ multiplicity: z.ZodNumber;
1199
+ categoryUUID: z.ZodString;
1200
+ color: z.ZodNullable<z.ZodString>;
1201
+ grower: z.ZodNullable<z.ZodString>;
1202
+ description: z.ZodNullable<z.ZodString>;
1203
+ group: z.ZodNullable<z.ZodString>;
1204
+ balance: z.ZodNullable<z.ZodNumber>;
1205
+ quantity: z.ZodNullable<z.ZodNumber>;
1206
+ price: z.ZodNumber;
1207
+ isOpen: z.ZodBoolean;
1208
+ article: z.ZodNullable<z.ZodString>;
1209
+ size: z.ZodNullable<z.ZodString>;
1210
+ size2: z.ZodNullable<z.ZodString>;
1211
+ size3: z.ZodNullable<z.ZodString>;
1212
+ imageUUID: z.ZodNullable<z.ZodString>;
1213
+ vat: z.ZodNullable<z.ZodNumber>;
1214
+ productUUID: z.ZodNullable<z.ZodString>;
1215
+ preOrderCollectionUUID: z.ZodString;
1216
+ advancedPrice: z.ZodNullable<z.ZodString>;
1217
+ isSizeCustomizable: z.ZodDefault<z.ZodBoolean>;
1218
+ isColorCustomizable: z.ZodDefault<z.ZodBoolean>;
1219
+ salesUnit: z.ZodNullable<z.ZodNativeEnum<typeof import("../..").SalesUnitEnum>>;
1220
+ multiplicityDescription: z.ZodNullable<z.ZodString>;
1221
+ image: z.ZodNullable<z.ZodObject<{
1222
+ uuid: z.ZodString;
1223
+ categoryUUID: z.ZodNullable<z.ZodString>;
1224
+ name: z.ZodString;
1225
+ color: z.ZodNullable<z.ZodString>;
1226
+ vbn: z.ZodNullable<z.ZodString>;
1227
+ externalUUID: z.ZodNullable<z.ZodString>;
1228
+ productImageUrl: z.ZodString;
1229
+ companyUUID: z.ZodString;
1230
+ country: z.ZodNullable<z.ZodString>;
1231
+ grower: z.ZodNullable<z.ZodString>;
1232
+ createdAt: z.ZodDate;
1233
+ updatedAt: z.ZodDate;
1234
+ deletedAt: z.ZodNullable<z.ZodDate>;
1235
+ }, "strip", z.ZodTypeAny, {
1236
+ name: string;
1237
+ uuid: string;
1238
+ country: string | null;
1239
+ createdAt: Date;
1240
+ updatedAt: Date;
1241
+ deletedAt: Date | null;
1242
+ companyUUID: string;
1243
+ categoryUUID: string | null;
1244
+ color: string | null;
1245
+ vbn: string | null;
1246
+ externalUUID: string | null;
1247
+ productImageUrl: string;
1248
+ grower: string | null;
1249
+ }, {
1250
+ name: string;
1251
+ uuid: string;
1252
+ country: string | null;
1253
+ createdAt: Date;
1254
+ updatedAt: Date;
1255
+ deletedAt: Date | null;
1256
+ companyUUID: string;
1257
+ categoryUUID: string | null;
1258
+ color: string | null;
1259
+ vbn: string | null;
1260
+ externalUUID: string | null;
1261
+ productImageUrl: string;
1262
+ grower: string | null;
1263
+ }>>;
1264
+ category: z.ZodNullable<z.ZodObject<{
1265
+ uuid: z.ZodString;
1266
+ name: z.ZodString;
1267
+ multiplicity: z.ZodNullable<z.ZodNumber>;
1268
+ isSizeSeparate: z.ZodBoolean;
1269
+ isSaveCategoryName: z.ZodBoolean;
1270
+ status: z.ZodNativeEnum<typeof import("../..").CategoryStatusEnum>;
1271
+ createdAt: z.ZodDate;
1272
+ updatedAt: z.ZodDate;
1273
+ deletedAt: z.ZodNullable<z.ZodDate>;
1274
+ }, "strip", z.ZodTypeAny, {
1275
+ name: string;
1276
+ status: import("../..").CategoryStatusEnum;
1277
+ uuid: string;
1278
+ createdAt: Date;
1279
+ updatedAt: Date;
1280
+ deletedAt: Date | null;
1281
+ multiplicity: number | null;
1282
+ isSizeSeparate: boolean;
1283
+ isSaveCategoryName: boolean;
1284
+ }, {
1285
+ name: string;
1286
+ status: import("../..").CategoryStatusEnum;
1287
+ uuid: string;
1288
+ createdAt: Date;
1289
+ updatedAt: Date;
1290
+ deletedAt: Date | null;
1291
+ multiplicity: number | null;
1292
+ isSizeSeparate: boolean;
1293
+ isSaveCategoryName: boolean;
1294
+ }>>;
1295
+ type: z.ZodNullable<z.ZodObject<{
1296
+ uuid: z.ZodString;
1297
+ name: z.ZodString;
1298
+ rank: z.ZodNumber;
1299
+ deletedAt: z.ZodNullable<z.ZodDate>;
1300
+ createdAt: z.ZodDate;
1301
+ updatedAt: z.ZodDate;
1302
+ }, "strip", z.ZodTypeAny, {
1303
+ name: string;
1304
+ uuid: string;
1305
+ createdAt: Date;
1306
+ updatedAt: Date;
1307
+ deletedAt: Date | null;
1308
+ rank: number;
1309
+ }, {
1310
+ name: string;
1311
+ uuid: string;
1312
+ createdAt: Date;
1313
+ updatedAt: Date;
1314
+ deletedAt: Date | null;
1315
+ rank: number;
1316
+ }>>;
1317
+ matchingProducts: z.ZodArray<z.ZodObject<{
1318
+ uuid: z.ZodString;
1319
+ name: z.ZodString;
1320
+ size: z.ZodNullable<z.ZodString>;
1321
+ grower: z.ZodNullable<z.ZodString>;
1322
+ color: z.ZodNullable<z.ZodString>;
1323
+ country: z.ZodNullable<z.ZodString>;
1324
+ deliveryDate: z.ZodDate;
1325
+ }, "strip", z.ZodTypeAny, {
1326
+ name: string;
1327
+ uuid: string;
1328
+ country: string | null;
1329
+ color: string | null;
1330
+ grower: string | null;
1331
+ deliveryDate: Date;
1332
+ size: string | null;
1333
+ }, {
1334
+ name: string;
1335
+ uuid: string;
1336
+ country: string | null;
1337
+ color: string | null;
1338
+ grower: string | null;
1339
+ deliveryDate: Date;
1340
+ size: string | null;
1341
+ }>, "many">;
1342
+ multiplicityOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1343
+ uuid: z.ZodString;
1344
+ title: z.ZodNullable<z.ZodString>;
1345
+ optionMultiplicity: z.ZodNumber;
1346
+ optionPrice: z.ZodNullable<z.ZodNumber>;
1347
+ rank: z.ZodNumber;
1348
+ }, "strip", z.ZodTypeAny, {
1349
+ uuid: string;
1350
+ rank: number;
1351
+ title: string | null;
1352
+ optionMultiplicity: number;
1353
+ optionPrice: number | null;
1354
+ }, {
1355
+ uuid: string;
1356
+ rank: number;
1357
+ title: string | null;
1358
+ optionMultiplicity: number;
1359
+ optionPrice: number | null;
1360
+ }>, "many">>;
1361
+ preOrderedQuantity: z.ZodOptional<z.ZodNumber>;
1362
+ }, "strip", z.ZodTypeAny, {
1363
+ name: string;
1364
+ type: {
1365
+ name: string;
1366
+ uuid: string;
1367
+ createdAt: Date;
1368
+ updatedAt: Date;
1369
+ deletedAt: Date | null;
1370
+ rank: number;
1371
+ } | null;
1372
+ uuid: string;
1373
+ country: string | null;
1374
+ createdAt: Date;
1375
+ updatedAt: Date;
1376
+ multiplicity: number;
1377
+ categoryUUID: string;
1378
+ color: string | null;
1379
+ grower: string | null;
1380
+ category: {
1381
+ name: string;
1382
+ status: import("../..").CategoryStatusEnum;
1383
+ uuid: string;
1384
+ createdAt: Date;
1385
+ updatedAt: Date;
1386
+ deletedAt: Date | null;
1387
+ multiplicity: number | null;
1388
+ isSizeSeparate: boolean;
1389
+ isSaveCategoryName: boolean;
1390
+ } | null;
1391
+ description: string | null;
1392
+ group: string | null;
1393
+ balance: number | null;
1394
+ quantity: number | null;
1395
+ price: number;
1396
+ isOpen: boolean;
1397
+ article: string | null;
1398
+ size: string | null;
1399
+ size2: string | null;
1400
+ size3: string | null;
1401
+ imageUUID: string | null;
1402
+ vat: number | null;
1403
+ image: {
1404
+ name: string;
1405
+ uuid: string;
1406
+ country: string | null;
1407
+ createdAt: Date;
1408
+ updatedAt: Date;
1409
+ deletedAt: Date | null;
1410
+ companyUUID: string;
1411
+ categoryUUID: string | null;
1412
+ color: string | null;
1413
+ vbn: string | null;
1414
+ externalUUID: string | null;
1415
+ productImageUrl: string;
1416
+ grower: string | null;
1417
+ } | null;
1418
+ productUUID: string | null;
1419
+ preOrderCollectionUUID: string;
1420
+ advancedPrice: string | null;
1421
+ isSizeCustomizable: boolean;
1422
+ isColorCustomizable: boolean;
1423
+ salesUnit: import("../..").SalesUnitEnum | null;
1424
+ multiplicityDescription: string | null;
1425
+ matchingProducts: {
1426
+ name: string;
1427
+ uuid: string;
1428
+ country: string | null;
1429
+ color: string | null;
1430
+ grower: string | null;
1431
+ deliveryDate: Date;
1432
+ size: string | null;
1433
+ }[];
1434
+ multiplicityOptions?: {
1435
+ uuid: string;
1436
+ rank: number;
1437
+ title: string | null;
1438
+ optionMultiplicity: number;
1439
+ optionPrice: number | null;
1440
+ }[] | undefined;
1441
+ preOrderedQuantity?: number | undefined;
1442
+ }, {
1443
+ name: string;
1444
+ type: {
1445
+ name: string;
1446
+ uuid: string;
1447
+ createdAt: Date;
1448
+ updatedAt: Date;
1449
+ deletedAt: Date | null;
1450
+ rank: number;
1451
+ } | null;
1452
+ uuid: string;
1453
+ country: string | null;
1454
+ createdAt: Date;
1455
+ updatedAt: Date;
1456
+ multiplicity: number;
1457
+ categoryUUID: string;
1458
+ color: string | null;
1459
+ grower: string | null;
1460
+ category: {
1461
+ name: string;
1462
+ status: import("../..").CategoryStatusEnum;
1463
+ uuid: string;
1464
+ createdAt: Date;
1465
+ updatedAt: Date;
1466
+ deletedAt: Date | null;
1467
+ multiplicity: number | null;
1468
+ isSizeSeparate: boolean;
1469
+ isSaveCategoryName: boolean;
1470
+ } | null;
1471
+ description: string | null;
1472
+ group: string | null;
1473
+ balance: number | null;
1474
+ quantity: number | null;
1475
+ price: number;
1476
+ isOpen: boolean;
1477
+ article: string | null;
1478
+ size: string | null;
1479
+ size2: string | null;
1480
+ size3: string | null;
1481
+ imageUUID: string | null;
1482
+ vat: number | null;
1483
+ image: {
1484
+ name: string;
1485
+ uuid: string;
1486
+ country: string | null;
1487
+ createdAt: Date;
1488
+ updatedAt: Date;
1489
+ deletedAt: Date | null;
1490
+ companyUUID: string;
1491
+ categoryUUID: string | null;
1492
+ color: string | null;
1493
+ vbn: string | null;
1494
+ externalUUID: string | null;
1495
+ productImageUrl: string;
1496
+ grower: string | null;
1497
+ } | null;
1498
+ productUUID: string | null;
1499
+ preOrderCollectionUUID: string;
1500
+ advancedPrice: string | null;
1501
+ salesUnit: import("../..").SalesUnitEnum | null;
1502
+ multiplicityDescription: string | null;
1503
+ matchingProducts: {
1504
+ name: string;
1505
+ uuid: string;
1506
+ country: string | null;
1507
+ color: string | null;
1508
+ grower: string | null;
1509
+ deliveryDate: Date;
1510
+ size: string | null;
1511
+ }[];
1512
+ isSizeCustomizable?: boolean | undefined;
1513
+ isColorCustomizable?: boolean | undefined;
1514
+ multiplicityOptions?: {
1515
+ uuid: string;
1516
+ rank: number;
1517
+ title: string | null;
1518
+ optionMultiplicity: number;
1519
+ optionPrice: number | null;
1520
+ }[] | undefined;
1521
+ preOrderedQuantity?: number | undefined;
1522
+ }>;
1523
+ category: z.ZodNullable<z.ZodObject<{
1524
+ uuid: z.ZodString;
1525
+ name: z.ZodString;
1526
+ multiplicity: z.ZodNullable<z.ZodNumber>;
1527
+ isSizeSeparate: z.ZodBoolean;
1528
+ isSaveCategoryName: z.ZodBoolean;
1529
+ status: z.ZodNativeEnum<typeof import("../..").CategoryStatusEnum>;
1530
+ createdAt: z.ZodDate;
1531
+ updatedAt: z.ZodDate;
1532
+ deletedAt: z.ZodNullable<z.ZodDate>;
1533
+ }, "strip", z.ZodTypeAny, {
1534
+ name: string;
1535
+ status: import("../..").CategoryStatusEnum;
1536
+ uuid: string;
1537
+ createdAt: Date;
1538
+ updatedAt: Date;
1539
+ deletedAt: Date | null;
1540
+ multiplicity: number | null;
1541
+ isSizeSeparate: boolean;
1542
+ isSaveCategoryName: boolean;
1543
+ }, {
1544
+ name: string;
1545
+ status: import("../..").CategoryStatusEnum;
1546
+ uuid: string;
1547
+ createdAt: Date;
1548
+ updatedAt: Date;
1549
+ deletedAt: Date | null;
1550
+ multiplicity: number | null;
1551
+ isSizeSeparate: boolean;
1552
+ isSaveCategoryName: boolean;
1553
+ }>>;
1554
+ deliveryDate: z.ZodNullable<z.ZodDate>;
1555
+ }, "strip", z.ZodTypeAny, {
1556
+ name: string | null;
1557
+ uuid: string;
1558
+ categoryUUID: string | null;
1559
+ color: string | null;
1560
+ grower: string | null;
1561
+ category: {
1562
+ name: string;
1563
+ status: import("../..").CategoryStatusEnum;
1564
+ uuid: string;
1565
+ createdAt: Date;
1566
+ updatedAt: Date;
1567
+ deletedAt: Date | null;
1568
+ multiplicity: number | null;
1569
+ isSizeSeparate: boolean;
1570
+ isSaveCategoryName: boolean;
1571
+ } | null;
1572
+ deliveryDate: Date | null;
1573
+ comment: string | null;
1574
+ quantity: number;
1575
+ price: number | null;
1576
+ size: string | null;
1577
+ tag: string | null;
1578
+ preOrderCollectionItemUUID: string | null;
1579
+ preOrderUUID: string;
1580
+ isPurchased: boolean;
1581
+ isReplaceable: boolean;
1582
+ stopPrice: number | null;
1583
+ highAttention: boolean;
1584
+ parentPreOrderProductUUID: string | null;
1585
+ preOrderCollectionItem: {
1586
+ name: string;
1587
+ type: {
1588
+ name: string;
1589
+ uuid: string;
1590
+ createdAt: Date;
1591
+ updatedAt: Date;
1592
+ deletedAt: Date | null;
1593
+ rank: number;
1594
+ } | null;
1595
+ uuid: string;
1596
+ country: string | null;
1597
+ createdAt: Date;
1598
+ updatedAt: Date;
1599
+ multiplicity: number;
1600
+ categoryUUID: string;
1601
+ color: string | null;
1602
+ grower: string | null;
1603
+ category: {
1604
+ name: string;
1605
+ status: import("../..").CategoryStatusEnum;
1606
+ uuid: string;
1607
+ createdAt: Date;
1608
+ updatedAt: Date;
1609
+ deletedAt: Date | null;
1610
+ multiplicity: number | null;
1611
+ isSizeSeparate: boolean;
1612
+ isSaveCategoryName: boolean;
1613
+ } | null;
1614
+ description: string | null;
1615
+ group: string | null;
1616
+ balance: number | null;
1617
+ quantity: number | null;
1618
+ price: number;
1619
+ isOpen: boolean;
1620
+ article: string | null;
1621
+ size: string | null;
1622
+ size2: string | null;
1623
+ size3: string | null;
1624
+ imageUUID: string | null;
1625
+ vat: number | null;
1626
+ image: {
1627
+ name: string;
1628
+ uuid: string;
1629
+ country: string | null;
1630
+ createdAt: Date;
1631
+ updatedAt: Date;
1632
+ deletedAt: Date | null;
1633
+ companyUUID: string;
1634
+ categoryUUID: string | null;
1635
+ color: string | null;
1636
+ vbn: string | null;
1637
+ externalUUID: string | null;
1638
+ productImageUrl: string;
1639
+ grower: string | null;
1640
+ } | null;
1641
+ productUUID: string | null;
1642
+ preOrderCollectionUUID: string;
1643
+ advancedPrice: string | null;
1644
+ isSizeCustomizable: boolean;
1645
+ isColorCustomizable: boolean;
1646
+ salesUnit: import("../..").SalesUnitEnum | null;
1647
+ multiplicityDescription: string | null;
1648
+ matchingProducts: {
1649
+ name: string;
1650
+ uuid: string;
1651
+ country: string | null;
1652
+ color: string | null;
1653
+ grower: string | null;
1654
+ deliveryDate: Date;
1655
+ size: string | null;
1656
+ }[];
1657
+ multiplicityOptions?: {
1658
+ uuid: string;
1659
+ rank: number;
1660
+ title: string | null;
1661
+ optionMultiplicity: number;
1662
+ optionPrice: number | null;
1663
+ }[] | undefined;
1664
+ preOrderedQuantity?: number | undefined;
1665
+ };
1666
+ multiplicityOptionUUID?: string | null | undefined;
1667
+ matchingConfig?: {
1668
+ matchByName: boolean;
1669
+ matchByCategory: boolean;
1670
+ matchByColor: boolean;
1671
+ matchBySize: boolean;
1672
+ matchByGrower: boolean;
1673
+ } | null | undefined;
1674
+ }, {
1675
+ name: string | null;
1676
+ uuid: string;
1677
+ categoryUUID: string | null;
1678
+ color: string | null;
1679
+ grower: string | null;
1680
+ category: {
1681
+ name: string;
1682
+ status: import("../..").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
+ deliveryDate: Date | null;
1692
+ comment: string | null;
1693
+ quantity: number;
1694
+ price: number | null;
1695
+ size: string | null;
1696
+ tag: string | null;
1697
+ preOrderCollectionItemUUID: string | null;
1698
+ preOrderUUID: string;
1699
+ isPurchased: boolean;
1700
+ isReplaceable: boolean;
1701
+ stopPrice: number | null;
1702
+ highAttention: boolean;
1703
+ parentPreOrderProductUUID: string | null;
1704
+ preOrderCollectionItem: {
1705
+ name: string;
1706
+ type: {
1707
+ name: string;
1708
+ uuid: string;
1709
+ createdAt: Date;
1710
+ updatedAt: Date;
1711
+ deletedAt: Date | null;
1712
+ rank: number;
1713
+ } | null;
1714
+ uuid: string;
1715
+ country: string | null;
1716
+ createdAt: Date;
1717
+ updatedAt: Date;
1718
+ multiplicity: number;
1719
+ categoryUUID: string;
1720
+ color: string | null;
1721
+ grower: string | null;
1722
+ category: {
1723
+ name: string;
1724
+ status: import("../..").CategoryStatusEnum;
1725
+ uuid: string;
1726
+ createdAt: Date;
1727
+ updatedAt: Date;
1728
+ deletedAt: Date | null;
1729
+ multiplicity: number | null;
1730
+ isSizeSeparate: boolean;
1731
+ isSaveCategoryName: boolean;
1732
+ } | null;
1733
+ description: string | null;
1734
+ group: string | null;
1735
+ balance: number | null;
1736
+ quantity: number | null;
1737
+ price: number;
1738
+ isOpen: boolean;
1739
+ article: string | null;
1740
+ size: string | null;
1741
+ size2: string | null;
1742
+ size3: string | null;
1743
+ imageUUID: string | null;
1744
+ vat: number | null;
1745
+ image: {
1746
+ name: string;
1747
+ uuid: string;
1748
+ country: string | null;
1749
+ createdAt: Date;
1750
+ updatedAt: Date;
1751
+ deletedAt: Date | null;
1752
+ companyUUID: string;
1753
+ categoryUUID: string | null;
1754
+ color: string | null;
1755
+ vbn: string | null;
1756
+ externalUUID: string | null;
1757
+ productImageUrl: string;
1758
+ grower: string | null;
1759
+ } | null;
1760
+ productUUID: string | null;
1761
+ preOrderCollectionUUID: string;
1762
+ advancedPrice: string | null;
1763
+ salesUnit: import("../..").SalesUnitEnum | null;
1764
+ multiplicityDescription: string | null;
1765
+ matchingProducts: {
1766
+ name: string;
1767
+ uuid: string;
1768
+ country: string | null;
1769
+ color: string | null;
1770
+ grower: string | null;
1771
+ deliveryDate: Date;
1772
+ size: string | null;
1773
+ }[];
1774
+ isSizeCustomizable?: boolean | undefined;
1775
+ isColorCustomizable?: boolean | undefined;
1776
+ multiplicityOptions?: {
1777
+ uuid: string;
1778
+ rank: number;
1779
+ title: string | null;
1780
+ optionMultiplicity: number;
1781
+ optionPrice: number | null;
1782
+ }[] | undefined;
1783
+ preOrderedQuantity?: number | undefined;
1784
+ };
1785
+ multiplicityOptionUUID?: string | null | undefined;
1786
+ matchingConfig?: {
1787
+ matchByName: boolean;
1788
+ matchByCategory: boolean;
1789
+ matchByColor: boolean;
1790
+ matchBySize: boolean;
1791
+ matchByGrower: boolean;
1792
+ } | null | undefined;
1793
+ }>, "many">;
1794
+ total: z.ZodNumber;
1795
+ }, "strip", z.ZodTypeAny, {
1796
+ total: number;
1797
+ list: {
1798
+ name: string | null;
1799
+ uuid: string;
1800
+ categoryUUID: string | null;
1801
+ color: string | null;
1802
+ grower: string | null;
1803
+ category: {
1804
+ name: string;
1805
+ status: import("../..").CategoryStatusEnum;
1806
+ uuid: string;
1807
+ createdAt: Date;
1808
+ updatedAt: Date;
1809
+ deletedAt: Date | null;
1810
+ multiplicity: number | null;
1811
+ isSizeSeparate: boolean;
1812
+ isSaveCategoryName: boolean;
1813
+ } | null;
1814
+ deliveryDate: Date | null;
1815
+ comment: string | null;
1816
+ quantity: number;
1817
+ price: number | null;
1818
+ size: string | null;
1819
+ tag: string | null;
1820
+ preOrderCollectionItemUUID: string | null;
1821
+ preOrderUUID: string;
1822
+ isPurchased: boolean;
1823
+ isReplaceable: boolean;
1824
+ stopPrice: number | null;
1825
+ highAttention: boolean;
1826
+ parentPreOrderProductUUID: string | null;
1827
+ preOrderCollectionItem: {
1828
+ name: string;
1829
+ type: {
1830
+ name: string;
1831
+ uuid: string;
1832
+ createdAt: Date;
1833
+ updatedAt: Date;
1834
+ deletedAt: Date | null;
1835
+ rank: number;
1836
+ } | null;
1837
+ uuid: string;
1838
+ country: string | null;
1839
+ createdAt: Date;
1840
+ updatedAt: Date;
1841
+ multiplicity: number;
1842
+ categoryUUID: string;
1843
+ color: string | null;
1844
+ grower: string | null;
1845
+ category: {
1846
+ name: string;
1847
+ status: import("../..").CategoryStatusEnum;
1848
+ uuid: string;
1849
+ createdAt: Date;
1850
+ updatedAt: Date;
1851
+ deletedAt: Date | null;
1852
+ multiplicity: number | null;
1853
+ isSizeSeparate: boolean;
1854
+ isSaveCategoryName: boolean;
1855
+ } | null;
1856
+ description: string | null;
1857
+ group: string | null;
1858
+ balance: number | null;
1859
+ quantity: number | null;
1860
+ price: number;
1861
+ isOpen: boolean;
1862
+ article: string | null;
1863
+ size: string | null;
1864
+ size2: string | null;
1865
+ size3: string | null;
1866
+ imageUUID: string | null;
1867
+ vat: number | null;
1868
+ image: {
1869
+ name: string;
1870
+ uuid: string;
1871
+ country: string | null;
1872
+ createdAt: Date;
1873
+ updatedAt: Date;
1874
+ deletedAt: Date | null;
1875
+ companyUUID: string;
1876
+ categoryUUID: string | null;
1877
+ color: string | null;
1878
+ vbn: string | null;
1879
+ externalUUID: string | null;
1880
+ productImageUrl: string;
1881
+ grower: string | null;
1882
+ } | null;
1883
+ productUUID: string | null;
1884
+ preOrderCollectionUUID: string;
1885
+ advancedPrice: string | null;
1886
+ isSizeCustomizable: boolean;
1887
+ isColorCustomizable: boolean;
1888
+ salesUnit: import("../..").SalesUnitEnum | null;
1889
+ multiplicityDescription: string | null;
1890
+ matchingProducts: {
1891
+ name: string;
1892
+ uuid: string;
1893
+ country: string | null;
1894
+ color: string | null;
1895
+ grower: string | null;
1896
+ deliveryDate: Date;
1897
+ size: string | null;
1898
+ }[];
1899
+ multiplicityOptions?: {
1900
+ uuid: string;
1901
+ rank: number;
1902
+ title: string | null;
1903
+ optionMultiplicity: number;
1904
+ optionPrice: number | null;
1905
+ }[] | undefined;
1906
+ preOrderedQuantity?: number | undefined;
1907
+ };
1908
+ multiplicityOptionUUID?: string | null | undefined;
1909
+ matchingConfig?: {
1910
+ matchByName: boolean;
1911
+ matchByCategory: boolean;
1912
+ matchByColor: boolean;
1913
+ matchBySize: boolean;
1914
+ matchByGrower: boolean;
1915
+ } | null | undefined;
1916
+ }[];
1917
+ }, {
1918
+ total: number;
1919
+ list: {
1920
+ name: string | null;
1921
+ uuid: string;
1922
+ categoryUUID: string | null;
1923
+ color: string | null;
1924
+ grower: string | null;
1925
+ category: {
1926
+ name: string;
1927
+ status: import("../..").CategoryStatusEnum;
1928
+ uuid: string;
1929
+ createdAt: Date;
1930
+ updatedAt: Date;
1931
+ deletedAt: Date | null;
1932
+ multiplicity: number | null;
1933
+ isSizeSeparate: boolean;
1934
+ isSaveCategoryName: boolean;
1935
+ } | null;
1936
+ deliveryDate: Date | null;
1937
+ comment: string | null;
1938
+ quantity: number;
1939
+ price: number | null;
1940
+ size: string | null;
1941
+ tag: string | null;
1942
+ preOrderCollectionItemUUID: string | null;
1943
+ preOrderUUID: string;
1944
+ isPurchased: boolean;
1945
+ isReplaceable: boolean;
1946
+ stopPrice: number | null;
1947
+ highAttention: boolean;
1948
+ parentPreOrderProductUUID: string | null;
1949
+ preOrderCollectionItem: {
1950
+ name: string;
1951
+ type: {
1952
+ name: string;
1953
+ uuid: string;
1954
+ createdAt: Date;
1955
+ updatedAt: Date;
1956
+ deletedAt: Date | null;
1957
+ rank: number;
1958
+ } | null;
1959
+ uuid: string;
1960
+ country: string | null;
1961
+ createdAt: Date;
1962
+ updatedAt: Date;
1963
+ multiplicity: number;
1964
+ categoryUUID: string;
1965
+ color: string | null;
1966
+ grower: string | null;
1967
+ category: {
1968
+ name: string;
1969
+ status: import("../..").CategoryStatusEnum;
1970
+ uuid: string;
1971
+ createdAt: Date;
1972
+ updatedAt: Date;
1973
+ deletedAt: Date | null;
1974
+ multiplicity: number | null;
1975
+ isSizeSeparate: boolean;
1976
+ isSaveCategoryName: boolean;
1977
+ } | null;
1978
+ description: string | null;
1979
+ group: string | null;
1980
+ balance: number | null;
1981
+ quantity: number | null;
1982
+ price: number;
1983
+ isOpen: boolean;
1984
+ article: string | null;
1985
+ size: string | null;
1986
+ size2: string | null;
1987
+ size3: string | null;
1988
+ imageUUID: string | null;
1989
+ vat: number | null;
1990
+ image: {
1991
+ name: string;
1992
+ uuid: string;
1993
+ country: string | null;
1994
+ createdAt: Date;
1995
+ updatedAt: Date;
1996
+ deletedAt: Date | null;
1997
+ companyUUID: string;
1998
+ categoryUUID: string | null;
1999
+ color: string | null;
2000
+ vbn: string | null;
2001
+ externalUUID: string | null;
2002
+ productImageUrl: string;
2003
+ grower: string | null;
2004
+ } | null;
2005
+ productUUID: string | null;
2006
+ preOrderCollectionUUID: string;
2007
+ advancedPrice: string | null;
2008
+ salesUnit: import("../..").SalesUnitEnum | null;
2009
+ multiplicityDescription: string | null;
2010
+ matchingProducts: {
2011
+ name: string;
2012
+ uuid: string;
2013
+ country: string | null;
2014
+ color: string | null;
2015
+ grower: string | null;
2016
+ deliveryDate: Date;
2017
+ size: string | null;
2018
+ }[];
2019
+ isSizeCustomizable?: boolean | undefined;
2020
+ isColorCustomizable?: boolean | undefined;
2021
+ multiplicityOptions?: {
2022
+ uuid: string;
2023
+ rank: number;
2024
+ title: string | null;
2025
+ optionMultiplicity: number;
2026
+ optionPrice: number | null;
2027
+ }[] | undefined;
2028
+ preOrderedQuantity?: number | undefined;
2029
+ };
2030
+ multiplicityOptionUUID?: string | null | undefined;
2031
+ matchingConfig?: {
2032
+ matchByName: boolean;
2033
+ matchByCategory: boolean;
2034
+ matchByColor: boolean;
2035
+ matchBySize: boolean;
2036
+ matchByGrower: boolean;
2037
+ } | null | undefined;
2038
+ }[];
2039
+ }>;