@floristcloud/api-lib 1.0.1 → 1.0.3

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