@floristcloud/api-lib 1.0.2 → 1.0.3

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