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