@floristcloud/api-lib 1.0.1 → 1.0.3

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