@spaceinvoices/react-ui 0.4.11 → 0.4.12

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 (633) hide show
  1. package/cli/dist/index.js +1 -1
  2. package/package.json +3 -2
  3. package/registry.json +30 -31
  4. package/src/common/autocomplete.tsx +41 -25
  5. package/src/components/activities/locales/bg.ts +21 -0
  6. package/src/components/activities/locales/cs.ts +21 -0
  7. package/src/components/activities/locales/en.ts +21 -0
  8. package/src/components/activities/locales/et.ts +21 -0
  9. package/src/components/activities/locales/fi.ts +21 -0
  10. package/src/components/activities/locales/is.ts +21 -0
  11. package/src/components/activities/locales/nb.ts +21 -0
  12. package/src/components/activities/locales/sk.ts +21 -0
  13. package/src/components/activities/locales/sv.ts +21 -0
  14. package/src/components/advance-invoices/advance-invoices.hooks.ts +2 -3
  15. package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +290 -69
  16. package/src/components/advance-invoices/create/locales/bg.ts +48 -0
  17. package/src/components/advance-invoices/create/locales/cs.ts +48 -0
  18. package/src/components/advance-invoices/create/locales/en.ts +48 -0
  19. package/src/components/advance-invoices/create/locales/et.ts +48 -0
  20. package/src/components/advance-invoices/create/locales/fi.ts +48 -0
  21. package/src/components/advance-invoices/create/locales/hr.ts +17 -17
  22. package/src/components/advance-invoices/create/locales/is.ts +48 -0
  23. package/src/components/advance-invoices/create/locales/nb.ts +48 -0
  24. package/src/components/advance-invoices/create/locales/sk.ts +48 -0
  25. package/src/components/advance-invoices/create/locales/sl.ts +9 -7
  26. package/src/components/advance-invoices/create/locales/sv.ts +48 -0
  27. package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +16 -2
  28. package/src/components/advance-invoices/list/list-row-actions.tsx +48 -16
  29. package/src/components/advance-invoices/list/list-table.tsx +33 -8
  30. package/src/components/advance-invoices/list/locales/bg.ts +51 -0
  31. package/src/components/advance-invoices/list/locales/cs.ts +51 -0
  32. package/src/components/advance-invoices/list/locales/en.ts +33 -2
  33. package/src/components/advance-invoices/list/locales/et.ts +51 -0
  34. package/src/components/advance-invoices/list/locales/fi.ts +51 -0
  35. package/src/components/advance-invoices/list/locales/hr.ts +15 -15
  36. package/src/components/advance-invoices/list/locales/is.ts +51 -0
  37. package/src/components/advance-invoices/list/locales/nb.ts +51 -0
  38. package/src/components/advance-invoices/list/locales/sk.ts +51 -0
  39. package/src/components/advance-invoices/list/locales/sv.ts +51 -0
  40. package/src/components/advance-invoices/list/use-advance-invoice-download.ts +3 -5
  41. package/src/components/common/autocomplete-locales.ts +101 -0
  42. package/src/components/company-registry/company-registry.hooks.ts +3 -7
  43. package/src/components/credit-notes/create/create-credit-note-form.tsx +211 -22
  44. package/src/components/credit-notes/create/locales/bg.ts +87 -0
  45. package/src/components/credit-notes/create/locales/cs.ts +87 -0
  46. package/src/components/credit-notes/create/locales/en.ts +87 -0
  47. package/src/components/credit-notes/create/locales/et.ts +87 -0
  48. package/src/components/credit-notes/create/locales/fi.ts +87 -0
  49. package/src/components/credit-notes/create/locales/hr.ts +24 -24
  50. package/src/components/credit-notes/create/locales/is.ts +87 -0
  51. package/src/components/credit-notes/create/locales/nb.ts +87 -0
  52. package/src/components/credit-notes/create/locales/sk.ts +87 -0
  53. package/src/components/credit-notes/create/locales/sl.ts +9 -9
  54. package/src/components/credit-notes/create/locales/sv.ts +87 -0
  55. package/src/components/credit-notes/create/prepare-credit-note-submission.ts +32 -0
  56. package/src/components/credit-notes/credit-notes.hooks.ts +15 -3
  57. package/src/components/credit-notes/list/list-row-actions.tsx +19 -7
  58. package/src/components/credit-notes/list/list-table.tsx +58 -7
  59. package/src/components/credit-notes/list/locales/bg.ts +48 -0
  60. package/src/components/credit-notes/list/locales/cs.ts +48 -0
  61. package/src/components/credit-notes/list/locales/en.ts +31 -2
  62. package/src/components/credit-notes/list/locales/et.ts +48 -0
  63. package/src/components/credit-notes/list/locales/fi.ts +48 -0
  64. package/src/components/credit-notes/list/locales/hr.ts +12 -12
  65. package/src/components/credit-notes/list/locales/is.ts +48 -0
  66. package/src/components/credit-notes/list/locales/nb.ts +48 -0
  67. package/src/components/credit-notes/list/locales/sk.ts +48 -0
  68. package/src/components/credit-notes/list/locales/sv.ts +48 -0
  69. package/src/components/credit-notes/list/use-credit-note-download.ts +3 -5
  70. package/src/components/customers/create-customer-form/locales/bg.ts +21 -0
  71. package/src/components/customers/create-customer-form/locales/cs.ts +21 -0
  72. package/src/components/customers/create-customer-form/locales/en.ts +21 -0
  73. package/src/components/customers/create-customer-form/locales/et.ts +21 -0
  74. package/src/components/customers/create-customer-form/locales/fi.ts +21 -0
  75. package/src/components/customers/create-customer-form/locales/hr.ts +11 -11
  76. package/src/components/customers/create-customer-form/locales/is.ts +21 -0
  77. package/src/components/customers/create-customer-form/locales/nb.ts +21 -0
  78. package/src/components/customers/create-customer-form/locales/sk.ts +21 -0
  79. package/src/components/customers/create-customer-form/locales/sv.ts +21 -0
  80. package/src/components/customers/customer-autocomplete.tsx +32 -4
  81. package/src/components/customers/customer-list-table/customer-list-table.tsx +8 -6
  82. package/src/components/customers/customer-list-table/locales/bg.ts +25 -0
  83. package/src/components/customers/customer-list-table/locales/cs.ts +25 -0
  84. package/src/components/customers/customer-list-table/locales/en.ts +17 -2
  85. package/src/components/customers/customer-list-table/locales/et.ts +25 -0
  86. package/src/components/customers/customer-list-table/locales/fi.ts +25 -0
  87. package/src/components/customers/customer-list-table/locales/hr.ts +11 -11
  88. package/src/components/customers/customer-list-table/locales/is.ts +25 -0
  89. package/src/components/customers/customer-list-table/locales/nb.ts +25 -0
  90. package/src/components/customers/customer-list-table/locales/sk.ts +25 -0
  91. package/src/components/customers/customer-list-table/locales/sv.ts +25 -0
  92. package/src/components/customers/customers.hooks.ts +14 -17
  93. package/src/components/customers/edit-customer-form/locales/bg.ts +13 -0
  94. package/src/components/customers/edit-customer-form/locales/cs.ts +13 -0
  95. package/src/components/customers/edit-customer-form/locales/en.ts +13 -0
  96. package/src/components/customers/edit-customer-form/locales/et.ts +13 -0
  97. package/src/components/customers/edit-customer-form/locales/fi.ts +13 -0
  98. package/src/components/customers/edit-customer-form/locales/hr.ts +5 -5
  99. package/src/components/customers/edit-customer-form/locales/is.ts +13 -0
  100. package/src/components/customers/edit-customer-form/locales/nb.ts +13 -0
  101. package/src/components/customers/edit-customer-form/locales/sk.ts +13 -0
  102. package/src/components/customers/edit-customer-form/locales/sv.ts +13 -0
  103. package/src/components/dashboard/collection-rate-card/collection-rate-card.tsx +7 -6
  104. package/src/components/dashboard/collection-rate-card/locales/en.ts +3 -0
  105. package/src/components/dashboard/collection-rate-card/use-collection-rate.ts +8 -7
  106. package/src/components/dashboard/invoice-status-chart/invoice-status-chart.tsx +7 -4
  107. package/src/components/dashboard/invoice-status-chart/locales/bg.ts +5 -5
  108. package/src/components/dashboard/invoice-status-chart/locales/cs.ts +5 -5
  109. package/src/components/dashboard/invoice-status-chart/locales/de.ts +1 -1
  110. package/src/components/dashboard/invoice-status-chart/locales/en.ts +10 -0
  111. package/src/components/dashboard/invoice-status-chart/locales/es.ts +1 -1
  112. package/src/components/dashboard/invoice-status-chart/locales/et.ts +5 -5
  113. package/src/components/dashboard/invoice-status-chart/locales/fi.ts +5 -5
  114. package/src/components/dashboard/invoice-status-chart/locales/fr.ts +1 -1
  115. package/src/components/dashboard/invoice-status-chart/locales/hr.ts +5 -5
  116. package/src/components/dashboard/invoice-status-chart/locales/is.ts +5 -5
  117. package/src/components/dashboard/invoice-status-chart/locales/it.ts +1 -1
  118. package/src/components/dashboard/invoice-status-chart/locales/nb.ts +5 -5
  119. package/src/components/dashboard/invoice-status-chart/locales/nl.ts +1 -1
  120. package/src/components/dashboard/invoice-status-chart/locales/pl.ts +1 -1
  121. package/src/components/dashboard/invoice-status-chart/locales/pt.ts +1 -1
  122. package/src/components/dashboard/invoice-status-chart/locales/sk.ts +5 -5
  123. package/src/components/dashboard/invoice-status-chart/locales/sl.ts +1 -1
  124. package/src/components/dashboard/invoice-status-chart/locales/sv.ts +5 -5
  125. package/src/components/dashboard/payment-methods-chart/locales/bg.ts +5 -5
  126. package/src/components/dashboard/payment-methods-chart/locales/cs.ts +5 -5
  127. package/src/components/dashboard/payment-methods-chart/locales/en.ts +12 -0
  128. package/src/components/dashboard/payment-methods-chart/locales/et.ts +5 -5
  129. package/src/components/dashboard/payment-methods-chart/locales/fi.ts +6 -6
  130. package/src/components/dashboard/payment-methods-chart/locales/hr.ts +3 -3
  131. package/src/components/dashboard/payment-methods-chart/locales/is.ts +5 -5
  132. package/src/components/dashboard/payment-methods-chart/locales/nb.ts +5 -5
  133. package/src/components/dashboard/payment-methods-chart/locales/sk.ts +5 -5
  134. package/src/components/dashboard/payment-methods-chart/locales/sv.ts +5 -5
  135. package/src/components/dashboard/payment-methods-chart/payment-methods-chart.tsx +4 -3
  136. package/src/components/dashboard/payment-trend-chart/locales/bg.ts +1 -1
  137. package/src/components/dashboard/payment-trend-chart/locales/cs.ts +1 -1
  138. package/src/components/dashboard/payment-trend-chart/locales/en.ts +6 -0
  139. package/src/components/dashboard/payment-trend-chart/locales/et.ts +1 -1
  140. package/src/components/dashboard/payment-trend-chart/locales/fi.ts +1 -1
  141. package/src/components/dashboard/payment-trend-chart/locales/is.ts +1 -1
  142. package/src/components/dashboard/payment-trend-chart/locales/nb.ts +1 -1
  143. package/src/components/dashboard/payment-trend-chart/locales/sk.ts +1 -1
  144. package/src/components/dashboard/payment-trend-chart/locales/sv.ts +1 -1
  145. package/src/components/dashboard/payment-trend-chart/payment-trend-chart.tsx +4 -3
  146. package/src/components/dashboard/payment-trend-chart/use-payment-trend.ts +12 -9
  147. package/src/components/dashboard/revenue-card.tsx +3 -3
  148. package/src/components/dashboard/revenue-trend-chart/locales/bg.ts +1 -1
  149. package/src/components/dashboard/revenue-trend-chart/locales/cs.ts +1 -1
  150. package/src/components/dashboard/revenue-trend-chart/locales/en.ts +6 -0
  151. package/src/components/dashboard/revenue-trend-chart/locales/et.ts +1 -1
  152. package/src/components/dashboard/revenue-trend-chart/locales/fi.ts +1 -1
  153. package/src/components/dashboard/revenue-trend-chart/locales/is.ts +1 -1
  154. package/src/components/dashboard/revenue-trend-chart/locales/nb.ts +1 -1
  155. package/src/components/dashboard/revenue-trend-chart/locales/sk.ts +1 -1
  156. package/src/components/dashboard/revenue-trend-chart/locales/sv.ts +1 -1
  157. package/src/components/dashboard/revenue-trend-chart/revenue-trend-chart.tsx +4 -3
  158. package/src/components/dashboard/revenue-trend-chart/use-revenue-trend.ts +4 -3
  159. package/src/components/dashboard/shared/local-date.ts +11 -0
  160. package/src/components/dashboard/shared/use-revenue-data.ts +6 -5
  161. package/src/components/dashboard/shared/use-stats-query.ts +7 -11
  162. package/src/components/dashboard/stat-card.tsx +3 -3
  163. package/src/components/dashboard/tax-collected-card/tax-collected-card.tsx +11 -9
  164. package/src/components/dashboard/tax-collected-card/use-tax-collected.ts +3 -2
  165. package/src/components/dashboard/top-customers-chart/locales/bg.ts +2 -2
  166. package/src/components/dashboard/top-customers-chart/locales/cs.ts +2 -2
  167. package/src/components/dashboard/top-customers-chart/locales/en.ts +7 -0
  168. package/src/components/dashboard/top-customers-chart/locales/et.ts +2 -2
  169. package/src/components/dashboard/top-customers-chart/locales/fi.ts +2 -2
  170. package/src/components/dashboard/top-customers-chart/locales/is.ts +2 -2
  171. package/src/components/dashboard/top-customers-chart/locales/nb.ts +2 -2
  172. package/src/components/dashboard/top-customers-chart/locales/sk.ts +2 -2
  173. package/src/components/dashboard/top-customers-chart/locales/sv.ts +2 -2
  174. package/src/components/dashboard/top-customers-chart/top-customers-chart.tsx +4 -3
  175. package/src/components/dashboard/top-customers-chart/use-top-customers.ts +7 -20
  176. package/src/components/delivery-notes/create/create-delivery-note-form.tsx +61 -31
  177. package/src/components/delivery-notes/create/locales/bg.ts +68 -0
  178. package/src/components/delivery-notes/create/locales/cs.ts +68 -0
  179. package/src/components/delivery-notes/create/locales/en.ts +68 -0
  180. package/src/components/delivery-notes/create/locales/et.ts +68 -0
  181. package/src/components/delivery-notes/create/locales/fi.ts +68 -0
  182. package/src/components/delivery-notes/create/locales/hr.ts +6 -6
  183. package/src/components/delivery-notes/create/locales/is.ts +68 -0
  184. package/src/components/delivery-notes/create/locales/nb.ts +68 -0
  185. package/src/components/delivery-notes/create/locales/sk.ts +68 -0
  186. package/src/components/delivery-notes/create/locales/sl.ts +5 -5
  187. package/src/components/delivery-notes/create/locales/sv.ts +68 -0
  188. package/src/components/delivery-notes/delivery-notes.hooks.ts +20 -3
  189. package/src/components/delivery-notes/list/list-row-actions.tsx +62 -16
  190. package/src/components/delivery-notes/list/list-table.tsx +42 -9
  191. package/src/components/delivery-notes/list/locales/bg.ts +40 -0
  192. package/src/components/delivery-notes/list/locales/cs.ts +40 -0
  193. package/src/components/delivery-notes/list/locales/et.ts +40 -0
  194. package/src/components/delivery-notes/list/locales/fi.ts +40 -0
  195. package/src/components/delivery-notes/list/locales/is.ts +40 -0
  196. package/src/components/delivery-notes/list/locales/nb.ts +40 -0
  197. package/src/components/delivery-notes/list/locales/sk.ts +40 -0
  198. package/src/components/delivery-notes/list/locales/sv.ts +40 -0
  199. package/src/components/delivery-notes/list/use-delivery-note-download.ts +3 -5
  200. package/src/components/documents/create/document-add-item-form.tsx +256 -147
  201. package/src/components/documents/create/document-add-item-tax-rate-field.tsx +2 -1
  202. package/src/components/documents/create/document-details-section.tsx +30 -12
  203. package/src/components/documents/create/document-item-validation.ts +50 -0
  204. package/src/components/documents/create/document-items-section.tsx +44 -6
  205. package/src/components/documents/create/document-recipient-section.tsx +10 -2
  206. package/src/components/documents/create/linked-documents-info.tsx +4 -3
  207. package/src/components/documents/create/live-preview.tsx +19 -15
  208. package/src/components/documents/create/mark-as-paid-section.tsx +77 -20
  209. package/src/components/documents/create/payment-rows.ts +291 -0
  210. package/src/components/documents/create/prepare-document-submission.ts +24 -13
  211. package/src/components/documents/create/scroll-to-first-invalid-field.ts +27 -0
  212. package/src/components/documents/create/smart-code-insert-button.tsx +5 -53
  213. package/src/components/documents/create/use-document-customer-form.ts +74 -25
  214. package/src/components/documents/documents.hooks.ts +3 -5
  215. package/src/components/documents/index.ts +1 -0
  216. package/src/components/documents/public/index.ts +1 -0
  217. package/src/components/documents/public/public-document-summary.tsx +343 -0
  218. package/src/components/documents/shared/document-preview-display.tsx +65 -39
  219. package/src/components/documents/shared/index.ts +6 -1
  220. package/src/components/documents/shared/scaled-document-preview.tsx +33 -19
  221. package/src/components/documents/types.ts +24 -0
  222. package/src/components/documents/view/document-actions-bar.tsx +241 -62
  223. package/src/components/documents/view/document-activities-list.tsx +23 -11
  224. package/src/components/documents/view/document-details-card.tsx +7 -27
  225. package/src/components/documents/view/document-payments-list.tsx +114 -57
  226. package/src/components/documents/view/document-relations-list.tsx +26 -6
  227. package/src/components/documents/view/document-sidebar.tsx +25 -3
  228. package/src/components/documents/view/document-version-history.tsx +137 -0
  229. package/src/components/documents/view/index.ts +1 -0
  230. package/src/components/documents/view/locales/bg.ts +143 -0
  231. package/src/components/documents/view/locales/cs.ts +143 -0
  232. package/src/components/documents/view/locales/de.ts +13 -0
  233. package/src/components/documents/view/locales/en.ts +143 -0
  234. package/src/components/documents/view/locales/es.ts +13 -0
  235. package/src/components/documents/view/locales/et.ts +143 -0
  236. package/src/components/documents/view/locales/fi.ts +143 -0
  237. package/src/components/documents/view/locales/fr.ts +13 -0
  238. package/src/components/documents/view/locales/hr.ts +13 -0
  239. package/src/components/documents/view/locales/is.ts +143 -0
  240. package/src/components/documents/view/locales/it.ts +13 -0
  241. package/src/components/documents/view/locales/nb.ts +143 -0
  242. package/src/components/documents/view/locales/nl.ts +13 -0
  243. package/src/components/documents/view/locales/pl.ts +13 -0
  244. package/src/components/documents/view/locales/pt.ts +13 -0
  245. package/src/components/documents/view/locales/sk.ts +143 -0
  246. package/src/components/documents/view/locales/sl.ts +13 -0
  247. package/src/components/documents/view/locales/sv.ts +143 -0
  248. package/src/components/documents/view/use-document-download.ts +18 -17
  249. package/src/components/entities/create-entity-form.tsx +200 -12
  250. package/src/components/entities/entities.hooks.ts +15 -7
  251. package/src/components/entities/entity-settings-form/entity-settings-form.tsx +121 -65
  252. package/src/components/entities/entity-settings-form/input-with-preview.tsx +28 -4
  253. package/src/components/entities/entity-settings-form/locales/bg.ts +199 -0
  254. package/src/components/entities/entity-settings-form/locales/cs.ts +199 -0
  255. package/src/components/entities/entity-settings-form/locales/de.ts +8 -3
  256. package/src/components/entities/entity-settings-form/locales/en.ts +199 -0
  257. package/src/components/entities/entity-settings-form/locales/es.ts +8 -3
  258. package/src/components/entities/entity-settings-form/locales/et.ts +198 -0
  259. package/src/components/entities/entity-settings-form/locales/fi.ts +199 -0
  260. package/src/components/entities/entity-settings-form/locales/fr.ts +8 -3
  261. package/src/components/entities/entity-settings-form/locales/hr.ts +16 -11
  262. package/src/components/entities/entity-settings-form/locales/is.ts +199 -0
  263. package/src/components/entities/entity-settings-form/locales/it.ts +8 -3
  264. package/src/components/entities/entity-settings-form/locales/nb.ts +199 -0
  265. package/src/components/entities/entity-settings-form/locales/nl.ts +8 -3
  266. package/src/components/entities/entity-settings-form/locales/pl.ts +8 -3
  267. package/src/components/entities/entity-settings-form/locales/pt.ts +8 -3
  268. package/src/components/entities/entity-settings-form/locales/sk.ts +199 -0
  269. package/src/components/entities/entity-settings-form/locales/sl.ts +20 -15
  270. package/src/components/entities/entity-settings-form/locales/sv.ts +205 -0
  271. package/src/components/entities/fina-settings-form/fina-operator-required-dialog.tsx +34 -9
  272. package/src/components/entities/fina-settings-form/fina-settings-form.tsx +2 -0
  273. package/src/components/entities/fina-settings-form/fina-settings.hooks.ts +14 -45
  274. package/src/components/entities/fina-settings-form/locales/bg.ts +163 -0
  275. package/src/components/entities/fina-settings-form/locales/cs.ts +163 -0
  276. package/src/components/entities/fina-settings-form/locales/et.ts +163 -0
  277. package/src/components/entities/fina-settings-form/locales/fi.ts +163 -0
  278. package/src/components/entities/fina-settings-form/locales/hr.ts +11 -10
  279. package/src/components/entities/fina-settings-form/locales/is.ts +164 -0
  280. package/src/components/entities/fina-settings-form/locales/nb.ts +163 -0
  281. package/src/components/entities/fina-settings-form/locales/sk.ts +163 -0
  282. package/src/components/entities/fina-settings-form/locales/sl.ts +8 -7
  283. package/src/components/entities/fina-settings-form/locales/sv.ts +165 -0
  284. package/src/components/entities/furs-settings-form/furs-operator-required-dialog.tsx +34 -9
  285. package/src/components/entities/furs-settings-form/furs-settings-form.tsx +13 -1
  286. package/src/components/entities/furs-settings-form/furs-settings.hooks.ts +141 -42
  287. package/src/components/entities/furs-settings-form/locales/bg.ts +242 -0
  288. package/src/components/entities/furs-settings-form/locales/cs.ts +241 -0
  289. package/src/components/entities/furs-settings-form/locales/de.ts +42 -15
  290. package/src/components/entities/furs-settings-form/locales/en.ts +24 -0
  291. package/src/components/entities/furs-settings-form/locales/es.ts +42 -15
  292. package/src/components/entities/furs-settings-form/locales/et.ts +242 -0
  293. package/src/components/entities/furs-settings-form/locales/fi.ts +243 -0
  294. package/src/components/entities/furs-settings-form/locales/fr.ts +43 -15
  295. package/src/components/entities/furs-settings-form/locales/hr.ts +44 -19
  296. package/src/components/entities/furs-settings-form/locales/is.ts +242 -0
  297. package/src/components/entities/furs-settings-form/locales/it.ts +42 -15
  298. package/src/components/entities/furs-settings-form/locales/nb.ts +242 -0
  299. package/src/components/entities/furs-settings-form/locales/nl.ts +42 -15
  300. package/src/components/entities/furs-settings-form/locales/pl.ts +40 -15
  301. package/src/components/entities/furs-settings-form/locales/pt.ts +42 -15
  302. package/src/components/entities/furs-settings-form/locales/sk.ts +243 -0
  303. package/src/components/entities/furs-settings-form/locales/sl.ts +34 -10
  304. package/src/components/entities/furs-settings-form/locales/sv.ts +242 -0
  305. package/src/components/entities/furs-settings-form/sections/enable-fiscalization-section.tsx +11 -0
  306. package/src/components/entities/furs-settings-form/sections/furs-internal-act-download-card.tsx +111 -0
  307. package/src/components/entities/furs-settings-form/sections/general-settings-section.tsx +27 -0
  308. package/src/components/entities/furs-settings-form/sections/premises-management-section.tsx +23 -16
  309. package/src/components/entities/furs-settings-form/sections/register-premise-dialog.tsx +89 -31
  310. package/src/components/entities/settings/branding-settings-form.tsx +11 -30
  311. package/src/components/entities/settings/company-settings-form.tsx +2 -1
  312. package/src/components/entities/settings/defaults-settings-form.tsx +106 -3
  313. package/src/components/entities/settings/email-settings-form.tsx +245 -3
  314. package/src/components/entities/settings/eslog-settings-form.tsx +2 -1
  315. package/src/components/entities/settings/number-format-settings-form.tsx +2 -1
  316. package/src/components/entities/settings/pdf-template-selector/locales/bg.ts +20 -0
  317. package/src/components/entities/settings/pdf-template-selector/locales/cs.ts +20 -0
  318. package/src/components/entities/settings/pdf-template-selector/locales/en.ts +20 -0
  319. package/src/components/entities/settings/pdf-template-selector/locales/et.ts +19 -0
  320. package/src/components/entities/settings/pdf-template-selector/locales/fi.ts +20 -0
  321. package/src/components/entities/settings/pdf-template-selector/locales/is.ts +19 -0
  322. package/src/components/entities/settings/pdf-template-selector/locales/nb.ts +19 -0
  323. package/src/components/entities/settings/pdf-template-selector/locales/sk.ts +20 -0
  324. package/src/components/entities/settings/pdf-template-selector/locales/sv.ts +19 -0
  325. package/src/components/entities/settings/tax-rules-settings-form.tsx +21 -6
  326. package/src/components/estimates/create/create-estimate-form.tsx +70 -34
  327. package/src/components/estimates/create/locales/bg.ts +76 -0
  328. package/src/components/estimates/create/locales/cs.ts +76 -0
  329. package/src/components/estimates/create/locales/en.ts +76 -0
  330. package/src/components/estimates/create/locales/et.ts +76 -0
  331. package/src/components/estimates/create/locales/fi.ts +76 -0
  332. package/src/components/estimates/create/locales/hr.ts +8 -8
  333. package/src/components/estimates/create/locales/is.ts +76 -0
  334. package/src/components/estimates/create/locales/nb.ts +76 -0
  335. package/src/components/estimates/create/locales/sk.ts +76 -0
  336. package/src/components/estimates/create/locales/sl.ts +8 -8
  337. package/src/components/estimates/create/locales/sv.ts +76 -0
  338. package/src/components/estimates/create/prepare-estimate-submission.ts +4 -1
  339. package/src/components/estimates/estimates.hooks.ts +15 -3
  340. package/src/components/estimates/list/list-row-actions.tsx +34 -7
  341. package/src/components/estimates/list/list-table.tsx +78 -10
  342. package/src/components/estimates/list/locales/bg.ts +38 -0
  343. package/src/components/estimates/list/locales/cs.ts +38 -0
  344. package/src/components/estimates/list/locales/en.ts +27 -2
  345. package/src/components/estimates/list/locales/et.ts +38 -0
  346. package/src/components/estimates/list/locales/fi.ts +38 -0
  347. package/src/components/estimates/list/locales/hr.ts +2 -2
  348. package/src/components/estimates/list/locales/is.ts +38 -0
  349. package/src/components/estimates/list/locales/nb.ts +38 -0
  350. package/src/components/estimates/list/locales/sk.ts +38 -0
  351. package/src/components/estimates/list/locales/sv.ts +38 -0
  352. package/src/components/estimates/list/use-estimate-download.ts +3 -5
  353. package/src/components/export/document-export-form.tsx +72 -15
  354. package/src/components/export/sales-per-item-export-form.tsx +3 -2
  355. package/src/components/invoices/create/create-invoice-form.tsx +294 -76
  356. package/src/components/invoices/create/eslog-validation.ts +97 -8
  357. package/src/components/invoices/create/locales/bg.ts +164 -0
  358. package/src/components/invoices/create/locales/cs.ts +164 -0
  359. package/src/components/invoices/create/locales/de.ts +24 -0
  360. package/src/components/invoices/create/locales/en.ts +164 -0
  361. package/src/components/invoices/create/locales/es.ts +24 -0
  362. package/src/components/invoices/create/locales/et.ts +164 -0
  363. package/src/components/invoices/create/locales/fi.ts +164 -0
  364. package/src/components/invoices/create/locales/fr.ts +23 -0
  365. package/src/components/invoices/create/locales/hr.ts +32 -9
  366. package/src/components/invoices/create/locales/is.ts +164 -0
  367. package/src/components/invoices/create/locales/it.ts +24 -0
  368. package/src/components/invoices/create/locales/nb.ts +164 -0
  369. package/src/components/invoices/create/locales/nl.ts +23 -0
  370. package/src/components/invoices/create/locales/pl.ts +23 -0
  371. package/src/components/invoices/create/locales/pt.ts +24 -0
  372. package/src/components/invoices/create/locales/sk.ts +164 -0
  373. package/src/components/invoices/create/locales/sl.ts +32 -9
  374. package/src/components/invoices/create/locales/sv.ts +166 -0
  375. package/src/components/invoices/create/prepare-invoice-submission.ts +19 -2
  376. package/src/components/invoices/invoices-furs.hooks.ts +11 -8
  377. package/src/components/invoices/invoices.hooks.ts +27 -10
  378. package/src/components/invoices/list/list-row-actions.tsx +54 -21
  379. package/src/components/invoices/list/list-table.tsx +92 -11
  380. package/src/components/invoices/list/locales/bg.ts +49 -0
  381. package/src/components/invoices/list/locales/cs.ts +49 -0
  382. package/src/components/invoices/list/locales/en.ts +34 -2
  383. package/src/components/invoices/list/locales/et.ts +49 -0
  384. package/src/components/invoices/list/locales/fi.ts +49 -0
  385. package/src/components/invoices/list/locales/is.ts +49 -0
  386. package/src/components/invoices/list/locales/nb.ts +49 -0
  387. package/src/components/invoices/list/locales/sk.ts +49 -0
  388. package/src/components/invoices/list/locales/sv.ts +49 -0
  389. package/src/components/invoices/list/use-invoice-download.ts +3 -5
  390. package/src/components/invoices/send-email-dialog/locales/bg.ts +58 -0
  391. package/src/components/invoices/send-email-dialog/locales/cs.ts +58 -0
  392. package/src/components/invoices/send-email-dialog/locales/de.ts +21 -0
  393. package/src/components/invoices/send-email-dialog/locales/en.ts +58 -0
  394. package/src/components/invoices/send-email-dialog/locales/es.ts +21 -0
  395. package/src/components/invoices/send-email-dialog/locales/et.ts +58 -0
  396. package/src/components/invoices/send-email-dialog/locales/fi.ts +58 -0
  397. package/src/components/invoices/send-email-dialog/locales/fr.ts +21 -0
  398. package/src/components/invoices/send-email-dialog/locales/hr.ts +21 -0
  399. package/src/components/invoices/send-email-dialog/locales/is.ts +58 -0
  400. package/src/components/invoices/send-email-dialog/locales/it.ts +21 -0
  401. package/src/components/invoices/send-email-dialog/locales/nb.ts +58 -0
  402. package/src/components/invoices/send-email-dialog/locales/nl.ts +21 -0
  403. package/src/components/invoices/send-email-dialog/locales/pl.ts +21 -0
  404. package/src/components/invoices/send-email-dialog/locales/pt.ts +21 -0
  405. package/src/components/invoices/send-email-dialog/locales/sk.ts +58 -0
  406. package/src/components/invoices/send-email-dialog/locales/sl.ts +21 -0
  407. package/src/components/invoices/send-email-dialog/locales/sv.ts +58 -0
  408. package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +188 -93
  409. package/src/components/invoices/view/eslog-info-display.tsx +2 -0
  410. package/src/components/invoices/view/fiscalization-status-card.tsx +2 -0
  411. package/src/components/items/create-item-form/create-item-form.tsx +29 -0
  412. package/src/components/items/create-item-form/locales/bg.ts +13 -0
  413. package/src/components/items/create-item-form/locales/cs.ts +13 -0
  414. package/src/components/items/create-item-form/locales/et.ts +13 -0
  415. package/src/components/items/create-item-form/locales/fi.ts +13 -0
  416. package/src/components/items/create-item-form/locales/is.ts +13 -0
  417. package/src/components/items/create-item-form/locales/nb.ts +13 -0
  418. package/src/components/items/create-item-form/locales/sk.ts +13 -0
  419. package/src/components/items/create-item-form/locales/sv.ts +13 -0
  420. package/src/components/items/edit-item-form/edit-item-form.tsx +39 -1
  421. package/src/components/items/edit-item-form/locales/bg.ts +12 -0
  422. package/src/components/items/edit-item-form/locales/cs.ts +12 -0
  423. package/src/components/items/edit-item-form/locales/en.ts +12 -0
  424. package/src/components/items/edit-item-form/locales/et.ts +12 -0
  425. package/src/components/items/edit-item-form/locales/fi.ts +12 -0
  426. package/src/components/items/edit-item-form/locales/is.ts +12 -0
  427. package/src/components/items/edit-item-form/locales/nb.ts +12 -0
  428. package/src/components/items/edit-item-form/locales/sk.ts +12 -0
  429. package/src/components/items/edit-item-form/locales/sv.ts +12 -0
  430. package/src/components/items/item-combobox.tsx +51 -18
  431. package/src/components/items/item-list-table/item-list-table.tsx +47 -23
  432. package/src/components/items/item-list-table/locales/bg.ts +16 -0
  433. package/src/components/items/item-list-table/locales/cs.ts +16 -0
  434. package/src/components/items/item-list-table/locales/en.ts +4 -3
  435. package/src/components/items/item-list-table/locales/et.ts +16 -0
  436. package/src/components/items/item-list-table/locales/fi.ts +16 -0
  437. package/src/components/items/item-list-table/locales/is.ts +16 -0
  438. package/src/components/items/item-list-table/locales/nb.ts +16 -0
  439. package/src/components/items/item-list-table/locales/sk.ts +16 -0
  440. package/src/components/items/item-list-table/locales/sv.ts +16 -0
  441. package/src/components/items/items.hooks.ts +15 -15
  442. package/src/components/payments/create-payment-form/create-payment-form.tsx +11 -7
  443. package/src/components/payments/create-payment-form/locales/bg.ts +20 -0
  444. package/src/components/payments/create-payment-form/locales/cs.ts +20 -0
  445. package/src/components/payments/create-payment-form/locales/en.ts +20 -0
  446. package/src/components/payments/create-payment-form/locales/et.ts +20 -0
  447. package/src/components/payments/create-payment-form/locales/fi.ts +20 -0
  448. package/src/components/payments/create-payment-form/locales/hr.ts +2 -2
  449. package/src/components/payments/create-payment-form/locales/is.ts +20 -0
  450. package/src/components/payments/create-payment-form/locales/nb.ts +20 -0
  451. package/src/components/payments/create-payment-form/locales/sk.ts +20 -0
  452. package/src/components/payments/create-payment-form/locales/sl.ts +4 -4
  453. package/src/components/payments/create-payment-form/locales/sv.ts +20 -0
  454. package/src/components/payments/edit-payment-form/edit-payment-form.tsx +5 -1
  455. package/src/components/payments/edit-payment-form/locales/bg.ts +20 -0
  456. package/src/components/payments/edit-payment-form/locales/cs.ts +20 -0
  457. package/src/components/payments/edit-payment-form/locales/en.ts +20 -0
  458. package/src/components/payments/edit-payment-form/locales/et.ts +20 -0
  459. package/src/components/payments/edit-payment-form/locales/fi.ts +20 -0
  460. package/src/components/payments/edit-payment-form/locales/hr.ts +2 -2
  461. package/src/components/payments/edit-payment-form/locales/is.ts +20 -0
  462. package/src/components/payments/edit-payment-form/locales/nb.ts +20 -0
  463. package/src/components/payments/edit-payment-form/locales/sk.ts +20 -0
  464. package/src/components/payments/edit-payment-form/locales/sl.ts +4 -4
  465. package/src/components/payments/edit-payment-form/locales/sv.ts +20 -0
  466. package/src/components/payments/list/list-row-actions.tsx +10 -2
  467. package/src/components/payments/list/list-table.tsx +51 -45
  468. package/src/components/payments/list/locales/bg.ts +42 -0
  469. package/src/components/payments/list/locales/cs.ts +42 -0
  470. package/src/components/payments/list/locales/de.ts +18 -0
  471. package/src/components/payments/list/locales/en.ts +37 -2
  472. package/src/components/payments/list/locales/es.ts +18 -0
  473. package/src/components/payments/list/locales/et.ts +42 -0
  474. package/src/components/payments/list/locales/fi.ts +42 -0
  475. package/src/components/payments/list/locales/fr.ts +18 -0
  476. package/src/components/payments/list/locales/hr.ts +18 -0
  477. package/src/components/payments/list/locales/is.ts +42 -0
  478. package/src/components/payments/list/locales/it.ts +18 -0
  479. package/src/components/payments/list/locales/nb.ts +42 -0
  480. package/src/components/payments/list/locales/nl.ts +18 -0
  481. package/src/components/payments/list/locales/pl.ts +18 -0
  482. package/src/components/payments/list/locales/pt.ts +18 -0
  483. package/src/components/payments/list/locales/sk.ts +42 -0
  484. package/src/components/payments/list/locales/sl.ts +18 -1
  485. package/src/components/payments/list/locales/sv.ts +42 -0
  486. package/src/components/payments/payments.hooks.ts +13 -6
  487. package/src/components/recurring-invoices/create-recurring-invoice-form/create-recurring-invoice-form.tsx +23 -17
  488. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/bg.ts +44 -0
  489. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/cs.ts +44 -0
  490. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/en.ts +44 -0
  491. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/et.ts +44 -0
  492. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/fi.ts +44 -0
  493. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/hr.ts +6 -6
  494. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/is.ts +44 -0
  495. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/nb.ts +44 -0
  496. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sk.ts +44 -0
  497. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sl.ts +4 -4
  498. package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sv.ts +44 -0
  499. package/src/components/recurring-invoices/list/list-row-actions.tsx +3 -5
  500. package/src/components/recurring-invoices/list/list-table.tsx +10 -7
  501. package/src/components/recurring-invoices/list/locales/bg.ts +28 -0
  502. package/src/components/recurring-invoices/list/locales/cs.ts +28 -0
  503. package/src/components/recurring-invoices/list/locales/en.ts +23 -0
  504. package/src/components/recurring-invoices/list/locales/et.ts +28 -0
  505. package/src/components/recurring-invoices/list/locales/fi.ts +28 -0
  506. package/src/components/recurring-invoices/list/locales/is.ts +28 -0
  507. package/src/components/recurring-invoices/list/locales/nb.ts +28 -0
  508. package/src/components/recurring-invoices/list/locales/sk.ts +28 -0
  509. package/src/components/recurring-invoices/list/locales/sv.ts +28 -0
  510. package/src/components/recurring-invoices/recurring-invoices.hooks.ts +11 -8
  511. package/src/components/request-logs/request-log-detail.tsx +30 -23
  512. package/src/components/request-logs/request-log-list-table.tsx +88 -45
  513. package/src/components/table/README.md +47 -9
  514. package/src/components/table/data-table.tsx +232 -92
  515. package/src/components/table/filter-bar.tsx +1 -1
  516. package/src/components/table/filter-panel.tsx +51 -22
  517. package/src/components/table/hooks/use-table-state.ts +64 -11
  518. package/src/components/table/index.ts +3 -0
  519. package/src/components/table/locales.ts +119 -4
  520. package/src/components/table/selection-toolbar.tsx +65 -9
  521. package/src/components/table/sorting.ts +80 -0
  522. package/src/components/table/table-skeleton.tsx +15 -9
  523. package/src/components/table/types.ts +17 -0
  524. package/src/components/tax-reports/index.ts +8 -0
  525. package/src/components/tax-reports/kir-export-form.tsx +4 -5
  526. package/src/components/tax-reports/slovenia-accounting-mappings-fields.tsx +271 -0
  527. package/src/components/tax-reports/slovenia-tax-profile-step.tsx +21 -10
  528. package/src/components/tax-reports/slovenia-vod-export-form.tsx +452 -0
  529. package/src/components/tax-reports/slovenia-yearly-export-form.tsx +17 -16
  530. package/src/components/tax-reports/slovenia-yearly-review-step.tsx +40 -18
  531. package/src/components/taxes/create-tax-form/create-tax-form.tsx +48 -2
  532. package/src/components/taxes/create-tax-form/locales/bg.ts +8 -0
  533. package/src/components/taxes/create-tax-form/locales/cs.ts +8 -0
  534. package/src/components/taxes/create-tax-form/locales/et.ts +8 -0
  535. package/src/components/taxes/create-tax-form/locales/fi.ts +8 -0
  536. package/src/components/taxes/create-tax-form/locales/is.ts +8 -0
  537. package/src/components/taxes/create-tax-form/locales/nb.ts +8 -0
  538. package/src/components/taxes/create-tax-form/locales/sk.ts +8 -0
  539. package/src/components/taxes/create-tax-form/locales/sv.ts +8 -0
  540. package/src/components/taxes/edit-tax-form/edit-tax-form.tsx +80 -11
  541. package/src/components/taxes/edit-tax-form/locales/bg.ts +6 -0
  542. package/src/components/taxes/edit-tax-form/locales/cs.ts +6 -0
  543. package/src/components/taxes/edit-tax-form/locales/en.ts +6 -0
  544. package/src/components/taxes/edit-tax-form/locales/et.ts +6 -0
  545. package/src/components/taxes/edit-tax-form/locales/fi.ts +6 -0
  546. package/src/components/taxes/edit-tax-form/locales/is.ts +6 -0
  547. package/src/components/taxes/edit-tax-form/locales/nb.ts +6 -0
  548. package/src/components/taxes/edit-tax-form/locales/sk.ts +6 -0
  549. package/src/components/taxes/edit-tax-form/locales/sv.ts +6 -0
  550. package/src/components/taxes/tax-list-table/locales/bg.ts +17 -0
  551. package/src/components/taxes/tax-list-table/locales/cs.ts +17 -0
  552. package/src/components/taxes/tax-list-table/locales/en.ts +4 -3
  553. package/src/components/taxes/tax-list-table/locales/et.ts +17 -0
  554. package/src/components/taxes/tax-list-table/locales/fi.ts +17 -0
  555. package/src/components/taxes/tax-list-table/locales/is.ts +17 -0
  556. package/src/components/taxes/tax-list-table/locales/nb.ts +17 -0
  557. package/src/components/taxes/tax-list-table/locales/sk.ts +17 -0
  558. package/src/components/taxes/tax-list-table/locales/sv.ts +17 -0
  559. package/src/components/taxes/tax-list-table/tax-list-table.tsx +53 -19
  560. package/src/components/taxes/taxes.hooks.ts +53 -12
  561. package/src/components/ui/badge.tsx +1 -1
  562. package/src/components/ui/button.tsx +1 -1
  563. package/src/components/ui/drawer.tsx +2 -2
  564. package/src/components/ui/form.tsx +118 -2
  565. package/src/components/ui/progress.tsx +6 -4
  566. package/src/components/ui/select.tsx +118 -1
  567. package/src/components/ui/sonner.tsx +17 -36
  568. package/src/components/ui/sticky-form-footer.tsx +6 -1
  569. package/src/components/ui/tooltip.tsx +15 -2
  570. package/src/components/webhook-logs/webhook-delivery-detail.tsx +22 -22
  571. package/src/components/webhook-logs/webhook-delivery-list-table.tsx +92 -17
  572. package/src/components/wl-subscription/locked-feature.tsx +11 -10
  573. package/src/components/wl-subscription/paywall.tsx +184 -72
  574. package/src/components/wl-subscription/upgrade-modal.tsx +28 -31
  575. package/src/generate-schemas.ts +14 -4
  576. package/src/generated/schemas/account_webhook.ts +43 -0
  577. package/src/generated/schemas/accountwebhook.ts +67 -0
  578. package/src/generated/schemas/entity.ts +255 -16
  579. package/src/generated/schemas/exportsloveniavodxml_body.ts +16 -0
  580. package/src/generated/schemas/furssettings.ts +1 -0
  581. package/src/generated/schemas/incomingpurchasedocument.ts +198 -0
  582. package/src/generated/schemas/incomingpurchasedocumentpayment.ts +38 -0
  583. package/src/generated/schemas/index.ts +10 -0
  584. package/src/generated/schemas/item.ts +36 -0
  585. package/src/generated/schemas/me.ts +23 -19
  586. package/src/generated/schemas/order.ts +2 -0
  587. package/src/generated/schemas/orderintegration.ts +8 -4
  588. package/src/generated/schemas/payment.ts +5 -0
  589. package/src/generated/schemas/ptatcudseries.ts +30 -0
  590. package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +35 -3
  591. package/src/generated/schemas/rendercreditnotepreview_body.ts +35 -3
  592. package/src/generated/schemas/renderdeliverynotepreview_body.ts +12 -5
  593. package/src/generated/schemas/renderestimatepreview_body.ts +38 -5
  594. package/src/generated/schemas/renderinvoicepreview_body.ts +39 -5
  595. package/src/generated/schemas/senddocument_body.ts +1 -0
  596. package/src/generated/schemas/sendemail_body.ts +67 -39
  597. package/src/generated/schemas/sloveniataxprofile.ts +97 -21
  598. package/src/generated/schemas/starteslogexport_body.ts +33 -0
  599. package/src/generated/schemas/startpdfexport_body.ts +94 -78
  600. package/src/generated/schemas/supplier.ts +59 -0
  601. package/src/generated/schemas/syncshopifyorders_body.ts +20 -0
  602. package/src/generated/schemas/tax.ts +2 -0
  603. package/src/generated/schemas/uploadfile_body.ts +1 -0
  604. package/src/generated/schemas/userptsettings.ts +26 -0
  605. package/src/generated/schemas/voidinvoice_body.ts +20 -0
  606. package/src/generated/schemas/webhook.ts +2 -0
  607. package/src/hooks/create-resource-hooks.ts +22 -19
  608. package/src/hooks/use-duplicate-document.ts +10 -8
  609. package/src/hooks/use-eslog-validation.ts +5 -1
  610. package/src/hooks/use-next-document-number.ts +13 -6
  611. package/src/hooks/use-resolved-entity-id.ts +14 -0
  612. package/src/hooks/use-resource-mutation.ts +11 -30
  613. package/src/hooks/use-transaction-type-check.ts +3 -8
  614. package/src/lib/browser-cookies.ts +1 -1
  615. package/src/lib/country-capabilities.ts +114 -0
  616. package/src/lib/date-fns-locale.ts +1 -20
  617. package/src/lib/eslog-export.ts +32 -0
  618. package/src/lib/fiscalization-options.ts +21 -1
  619. package/src/lib/formatting.ts +27 -0
  620. package/src/lib/furs-error-utils.ts +29 -0
  621. package/src/lib/locale.ts +4 -0
  622. package/src/lib/payment-display.ts +95 -0
  623. package/src/lib/pt-document-input.ts +67 -0
  624. package/src/lib/schemas/shared.ts +1 -0
  625. package/src/lib/template-variables.tsx +102 -4
  626. package/src/lib/translation.ts +51 -33
  627. package/src/lib/white-label-capabilities.ts +626 -0
  628. package/src/lib/zod-validation-message.ts +291 -0
  629. package/src/providers/entities-provider.tsx +32 -14
  630. package/src/providers/sdk-provider.tsx +112 -12
  631. package/src/providers/space-invoices-provider.tsx +129 -0
  632. package/src/providers/white-label-provider.tsx +96 -4
  633. package/src/providers/wl-subscription-provider.tsx +144 -10
@@ -0,0 +1,38 @@
1
+ /**
2
+ * This file was automatically generated using 'bun generate-schemas'.
3
+ * Do not edit this file manually. To update, run the generator again.
4
+ * @generated
5
+ */
6
+
7
+ import { z } from 'zod';
8
+
9
+ // Schemas for incomingpurchasedocumentpayment endpoints
10
+
11
+ // Schema for create incomingpurchasedocumentpayment operation
12
+ const createIncomingPurchaseDocumentPaymentSchemaDefinition = z.object({
13
+ applied_to_incoming_purchase_document_id: z
14
+ .union([z.string(), z.null()])
15
+ .optional(),
16
+ amount: z.number().gt(0),
17
+ type: z.enum([
18
+ "cash",
19
+ "bank_transfer",
20
+ "card",
21
+ "check",
22
+ "paypal",
23
+ "coupon",
24
+ "other",
25
+ "credit_note",
26
+ "advance",
27
+ ]),
28
+ date: z.string().optional(),
29
+ tag: z.union([z.string(), z.null()]).optional(),
30
+ reference: z.union([z.string(), z.null()]).optional(),
31
+ note: z.union([z.string(), z.null()]).optional(),
32
+ metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
33
+ });
34
+
35
+ // Type for create incomingpurchasedocumentpayment operation
36
+ export type CreateIncomingPurchaseDocumentPaymentSchema = z.infer<typeof createIncomingPurchaseDocumentPaymentSchemaDefinition>;
37
+
38
+ export const createIncomingPurchaseDocumentPaymentSchema = createIncomingPurchaseDocumentPaymentSchemaDefinition;
@@ -5,6 +5,7 @@
5
5
  */
6
6
 
7
7
  export * from './acceptentityinvitation_body';
8
+ export * from './accountwebhook';
8
9
  export * from './addentityuser_body';
9
10
  export * from './advanceinvoice';
10
11
  export * from './authorizeshopify_body';
@@ -19,9 +20,12 @@ export * from './entity';
19
20
  export * from './entityapikey';
20
21
  export * from './entityuserrole';
21
22
  export * from './estimate';
23
+ export * from './exportsloveniavodxml_body';
22
24
  export * from './exportsloveniayearlynormiranireport_body';
23
25
  export * from './finasettings';
24
26
  export * from './furssettings';
27
+ export * from './incomingpurchasedocument';
28
+ export * from './incomingpurchasedocumentpayment';
25
29
  export * from './invoice';
26
30
  export * from './item';
27
31
  export * from './me';
@@ -30,6 +34,7 @@ export * from './orderintegration';
30
34
  export * from './payment';
31
35
  export * from './previewadvanceinvoice_body';
32
36
  export * from './previewestimate_body';
37
+ export * from './ptatcudseries';
33
38
  export * from './recurringinvoice';
34
39
  export * from './registerfinamovablepremise_body';
35
40
  export * from './registerfinarealestatepremise_body';
@@ -44,15 +49,20 @@ export * from './renderinvoicepreview_body';
44
49
  export * from './senddocument_body';
45
50
  export * from './sendemail_body';
46
51
  export * from './sloveniataxprofile';
52
+ export * from './starteslogexport_body';
47
53
  export * from './startpdfexport_body';
48
54
  export * from './stripeappconnect_body';
49
55
  export * from './stripeappcreateinvoice_body';
50
56
  export * from './stripeappupdatesettings_body';
57
+ export * from './supplier';
58
+ export * from './syncshopifyorders_body';
51
59
  export * from './tax';
52
60
  export * from './uploadfile_body';
53
61
  export * from './uploadfurscertificate_body';
54
62
  export * from './userfinasettings';
55
63
  export * from './userfurssettings';
64
+ export * from './userptsettings';
65
+ export * from './voidinvoice_body';
56
66
  export * from './webhook';
57
67
 
58
68
  // Re-export invoice create schema as credit note create schema (same body structure)
@@ -12,6 +12,9 @@ import { z } from 'zod';
12
12
  const createItemSchemaDefinition = z.object({
13
13
  name: z.string().min(1),
14
14
  description: z.union([z.string().max(4000, "Description must not exceed 4000 characters"), z.null()]).optional(),
15
+ classification: z
16
+ .union([z.enum(["product", "service", "advance", null]), z.null()])
17
+ .optional(),
15
18
  price: z.number().optional(),
16
19
  gross_price: z.number().optional(),
17
20
  tax_ids: z.array(z.string().max(36)).optional(),
@@ -35,4 +38,37 @@ const createItemSchemaDefinition = z.object({
35
38
  // Type for create item operation
36
39
  export type CreateItemSchema = z.infer<typeof createItemSchemaDefinition>;
37
40
 
41
+
42
+ // Schema for update item operation
43
+ const updateItemSchemaDefinition = z
44
+ .object({
45
+ name: z.string().min(1),
46
+ description: z.union([z.string().max(4000, "Description must not exceed 4000 characters"), z.null()]),
47
+ classification: z.union([
48
+ z.enum(["product", "service", "advance", null]),
49
+ z.null(),
50
+ ]),
51
+ price: z.number(),
52
+ gross_price: z.number(),
53
+ tax_ids: z.array(z.string().max(36)),
54
+ metadata: z.union([z.record(z.string(), z.any()), z.null()]),
55
+ taxes: z.union([
56
+ z.array(
57
+ z
58
+ .object({
59
+ rate: z.number().gte(0).lte(100),
60
+ classification: z.string().max(50),
61
+ })
62
+ .partial()
63
+ .passthrough()
64
+ ),
65
+ z.null(),
66
+ ]),
67
+ })
68
+ .partial();
69
+
70
+ // Type for update item operation
71
+ export type UpdateItemSchema = z.infer<typeof updateItemSchemaDefinition>;
72
+
38
73
  export const createItemSchema = createItemSchemaDefinition;
74
+ export const updateItemSchema = updateItemSchemaDefinition;
@@ -12,25 +12,29 @@ import { z } from 'zod';
12
12
  const patchMeSchemaDefinition = z
13
13
  .object({
14
14
  name: z.union([z.string(), z.null()]),
15
- locale: z.enum([
16
- "en",
17
- "de",
18
- "sl",
19
- "it",
20
- "fr",
21
- "es",
22
- "pt",
23
- "nl",
24
- "pl",
25
- "hr",
26
- "sv",
27
- "fi",
28
- "et",
29
- "bg",
30
- "cs",
31
- "sk",
32
- "nb",
33
- "is",
15
+ locale: z.union([
16
+ z.enum([
17
+ "en",
18
+ "de",
19
+ "sl",
20
+ "it",
21
+ "fr",
22
+ "es",
23
+ "pt",
24
+ "nl",
25
+ "pl",
26
+ "hr",
27
+ "sv",
28
+ "fi",
29
+ "et",
30
+ "bg",
31
+ "cs",
32
+ "sk",
33
+ "nb",
34
+ "is",
35
+ null,
36
+ ]),
37
+ z.null(),
34
38
  ]),
35
39
  })
36
40
  .partial();
@@ -53,10 +53,12 @@ const OrderItem = z
53
53
  total: z.number(),
54
54
  total_with_tax: z.number(),
55
55
  tax_rate: z.number().optional(),
56
+ taxes: z.array(z.object({ rate: z.number() }).passthrough()).optional(),
56
57
  sku: z.string().optional(),
57
58
  source_id: z.string().optional(),
58
59
  discount: z.number().optional(),
59
60
  unit: z.string().optional(),
61
+ kind: z.enum(["line_item", "shipping"]).optional(),
60
62
  })
61
63
  .passthrough();
62
64
 
@@ -16,6 +16,10 @@ const createOrderIntegrationSchemaDefinition = z.object({
16
16
  .optional()
17
17
  .default("manual"),
18
18
  auto_process: z.boolean().optional(),
19
+ auto_reissue_on_update: z.boolean().optional(),
20
+ locale: z.union([z.string(), z.null()]).optional(),
21
+ business_premise_id: z.union([z.string(), z.null()]).optional(),
22
+ electronic_device_id: z.union([z.string(), z.null()]).optional(),
19
23
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
20
24
  });
21
25
 
@@ -28,6 +32,10 @@ const updateOrderIntegrationSchemaDefinition = z
28
32
  .object({
29
33
  name: z.string().min(1),
30
34
  auto_process: z.boolean(),
35
+ auto_reissue_on_update: z.boolean(),
36
+ locale: z.union([z.string(), z.null()]),
37
+ business_premise_id: z.string().max(36),
38
+ electronic_device_id: z.string().max(36),
31
39
  metadata: z.union([z.record(z.string(), z.any()), z.null()]),
32
40
  is_active: z.boolean(),
33
41
  auto_process_on: z.enum(["created", "paid", "fulfilled"]),
@@ -37,10 +45,6 @@ const updateOrderIntegrationSchemaDefinition = z
37
45
  issue_invoice_for_bank: z.boolean(),
38
46
  issue_invoice_on_complete: z.boolean(),
39
47
  auto_process_delay_seconds: z.number().int().gte(0),
40
- auto_reissue_on_update: z.boolean(),
41
- locale: z.string().max(10),
42
- business_premise_id: z.string().max(36),
43
- electronic_device_id: z.string().max(36),
44
48
  })
45
49
  .partial();
46
50
 
@@ -13,6 +13,10 @@ const createPaymentSchemaDefinition = z.object({
13
13
  invoice_id: z.union([z.string(), z.null()]).optional(),
14
14
  credit_note_id: z.union([z.string(), z.null()]).optional(),
15
15
  advance_invoice_id: z.union([z.string(), z.null()]).optional(),
16
+ incoming_purchase_document_id: z.union([z.string(), z.null()]).optional(),
17
+ applied_to_incoming_purchase_document_id: z
18
+ .union([z.string(), z.null()])
19
+ .optional(),
16
20
  amount: z.number().gt(0),
17
21
  type: z.enum([
18
22
  "cash",
@@ -30,6 +34,7 @@ const createPaymentSchemaDefinition = z.object({
30
34
  reference: z.union([z.string(), z.null()]).optional(),
31
35
  note: z.union([z.string(), z.null()]).optional(),
32
36
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
37
+ document_id: z.union([z.string(), z.null()]).optional(),
33
38
  });
34
39
 
35
40
  // Type for create payment operation
@@ -0,0 +1,30 @@
1
+ /**
2
+ * This file was automatically generated using 'bun generate-schemas'.
3
+ * Do not edit this file manually. To update, run the generator again.
4
+ * @generated
5
+ */
6
+
7
+ import { z } from 'zod';
8
+
9
+ // Schemas for ptatcudseries endpoints
10
+
11
+ // Schema for create ptatcudseries operation
12
+ const createPtAtcudSeriesSchemaDefinition = z.object({
13
+ document_type: z.enum([
14
+ "invoice",
15
+ "advance_invoice",
16
+ "credit_note",
17
+ "estimate",
18
+ ]),
19
+ series_code: z.string().min(1).max(35),
20
+ validation_code: z.string().min(1).max(32),
21
+ first_number: z.string().min(1).max(100).optional(),
22
+ start_date: z.string(),
23
+ is_manual: z.boolean().optional(),
24
+ initial_sequence: z.number().int().gte(1).optional(),
25
+ });
26
+
27
+ // Type for create ptatcudseries operation
28
+ export type CreatePtAtcudSeriesSchema = z.infer<typeof createPtAtcudSeriesSchemaDefinition>;
29
+
30
+ export const createPtAtcudSeriesSchema = createPtAtcudSeriesSchemaDefinition;
@@ -23,6 +23,7 @@ const DocumentEntity = z
23
23
  tax_number: z.union([z.string(), z.null()]),
24
24
  tax_number_2: z.union([z.string(), z.null()]),
25
25
  company_number: z.union([z.string(), z.null()]),
26
+ phone: z.union([z.string(), z.null()]),
26
27
  peppol_id: z.union([z.string(), z.null()]),
27
28
  is_end_consumer: z.union([z.boolean(), z.null()]),
28
29
  bank_account: z.union([
@@ -60,6 +61,26 @@ const CreateDocumentCustomer = DocumentEntity.and(
60
61
  );
61
62
 
62
63
 
64
+ // Dependency schema for renderadvanceinvoicepreview_body
65
+ const PtDocumentInput = z.union([
66
+ z
67
+ .object({
68
+ series_id: z.union([z.string(), z.null()]),
69
+ manual: z.union([z.boolean(), z.null()]),
70
+ manual_sequential_number: z.union([z.number(), z.null()]),
71
+ manual_series_code: z.union([z.string(), z.null()]),
72
+ operator_first_name: z.union([z.string(), z.null()]),
73
+ operator_last_name: z.union([z.string(), z.null()]),
74
+ operator_tax_number: z.union([z.string(), z.null()]),
75
+ account_first_name: z.union([z.string(), z.null()]),
76
+ account_last_name: z.union([z.string(), z.null()]),
77
+ account_tax_number: z.union([z.string(), z.null()]),
78
+ })
79
+ .partial(),
80
+ z.null(),
81
+ ]);
82
+
83
+
63
84
  // Dependency schema for renderadvanceinvoicepreview_body
64
85
  const CreateFinaInvoiceData = z.union([
65
86
  z
@@ -78,6 +99,7 @@ const CreateFinaInvoiceData = z.union([
78
99
  "crypto",
79
100
  "coupon",
80
101
  "other",
102
+ null,
81
103
  ]),
82
104
  z.null(),
83
105
  ]),
@@ -105,6 +127,7 @@ const PartialAdvanceInvoicePreview = z.object({
105
127
  currency_code: z.string().max(3).optional(),
106
128
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
107
129
  reference: z.union([z.string(), z.null()]).optional(),
130
+ pt: PtDocumentInput.optional(),
108
131
  date_due: z.union([z.string(), z.null()]).optional(),
109
132
  date_service: z.union([z.string(), z.null()]).optional(),
110
133
  date_service_to: z.union([z.string(), z.null()]).optional(),
@@ -139,8 +162,9 @@ const PartialAdvanceInvoicePreview = z.object({
139
162
  .passthrough()
140
163
  )
141
164
  .min(1),
165
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
142
166
  fina: CreateFinaInvoiceData.optional(),
143
- expected_total_with_tax: z.number().gt(0).optional(),
167
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
144
168
  });
145
169
 
146
170
 
@@ -152,6 +176,8 @@ const DocumentItemTax = z
152
176
  classification: z.union([z.string(), z.null()]),
153
177
  reverse_charge: z.union([z.boolean(), z.null()]),
154
178
  amount: z.union([z.number(), z.null()]),
179
+ pt_exemption_code: z.union([z.string(), z.null()]),
180
+ pt_exemption_reason: z.union([z.string(), z.null()]),
155
181
  })
156
182
  .partial();
157
183
 
@@ -166,9 +192,13 @@ const LineDiscount = z.object({
166
192
  // Dependency schema for renderadvanceinvoicepreview_body
167
193
  const CreateDocumentItem = z
168
194
  .object({
169
- type: z.union([z.literal("separator"), z.null()]),
195
+ type: z.union([z.enum(["separator", null]), z.null()]),
170
196
  name: z.union([z.string(), z.null()]),
171
197
  description: z.union([z.string(), z.null()]),
198
+ classification: z.union([
199
+ z.enum(["product", "service", "advance", null]),
200
+ z.null(),
201
+ ]),
172
202
  price: z.union([z.number(), z.null()]),
173
203
  gross_price: z.union([z.number(), z.null()]),
174
204
  quantity: z.union([z.number(), z.null()]),
@@ -199,12 +229,14 @@ const CompleteAdvanceInvoicePreview = z.object({
199
229
  currency_code: z.string().max(3).optional(),
200
230
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
201
231
  reference: z.union([z.string(), z.null()]).optional(),
232
+ pt: PtDocumentInput.optional(),
202
233
  date_due: z.union([z.string(), z.null()]).optional(),
203
234
  date_service: z.union([z.string(), z.null()]).optional(),
204
235
  date_service_to: z.union([z.string(), z.null()]).optional(),
205
236
  items: z.array(CreateDocumentItem).min(1),
237
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
206
238
  fina: CreateFinaInvoiceData.optional(),
207
- expected_total_with_tax: z.number().gt(0).optional(),
239
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
208
240
  });
209
241
 
210
242
 
@@ -23,6 +23,7 @@ const DocumentEntity = z
23
23
  tax_number: z.union([z.string(), z.null()]),
24
24
  tax_number_2: z.union([z.string(), z.null()]),
25
25
  company_number: z.union([z.string(), z.null()]),
26
+ phone: z.union([z.string(), z.null()]),
26
27
  peppol_id: z.union([z.string(), z.null()]),
27
28
  is_end_consumer: z.union([z.boolean(), z.null()]),
28
29
  bank_account: z.union([
@@ -60,6 +61,26 @@ const CreateDocumentCustomer = DocumentEntity.and(
60
61
  );
61
62
 
62
63
 
64
+ // Dependency schema for rendercreditnotepreview_body
65
+ const PtDocumentInput = z.union([
66
+ z
67
+ .object({
68
+ series_id: z.union([z.string(), z.null()]),
69
+ manual: z.union([z.boolean(), z.null()]),
70
+ manual_sequential_number: z.union([z.number(), z.null()]),
71
+ manual_series_code: z.union([z.string(), z.null()]),
72
+ operator_first_name: z.union([z.string(), z.null()]),
73
+ operator_last_name: z.union([z.string(), z.null()]),
74
+ operator_tax_number: z.union([z.string(), z.null()]),
75
+ account_first_name: z.union([z.string(), z.null()]),
76
+ account_last_name: z.union([z.string(), z.null()]),
77
+ account_tax_number: z.union([z.string(), z.null()]),
78
+ })
79
+ .partial(),
80
+ z.null(),
81
+ ]);
82
+
83
+
63
84
  // Dependency schema for rendercreditnotepreview_body
64
85
  const CreateFinaInvoiceData = z.union([
65
86
  z
@@ -78,6 +99,7 @@ const CreateFinaInvoiceData = z.union([
78
99
  "crypto",
79
100
  "coupon",
80
101
  "other",
102
+ null,
81
103
  ]),
82
104
  z.null(),
83
105
  ]),
@@ -106,6 +128,7 @@ const PartialCreditNotePreview = z.object({
106
128
  currency_code: z.string().max(3).optional(),
107
129
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
108
130
  reference: z.union([z.string(), z.null()]).optional(),
131
+ pt: PtDocumentInput.optional(),
109
132
  date_service: z.union([z.string(), z.null()]).optional(),
110
133
  date_service_to: z.union([z.string(), z.null()]).optional(),
111
134
  date_due: z.union([z.string(), z.null()]).optional(),
@@ -140,8 +163,9 @@ const PartialCreditNotePreview = z.object({
140
163
  .passthrough()
141
164
  )
142
165
  .min(1),
166
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
143
167
  fina: CreateFinaInvoiceData.optional(),
144
- expected_total_with_tax: z.number().gt(0).optional(),
168
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
145
169
  });
146
170
 
147
171
 
@@ -153,6 +177,8 @@ const DocumentItemTax = z
153
177
  classification: z.union([z.string(), z.null()]),
154
178
  reverse_charge: z.union([z.boolean(), z.null()]),
155
179
  amount: z.union([z.number(), z.null()]),
180
+ pt_exemption_code: z.union([z.string(), z.null()]),
181
+ pt_exemption_reason: z.union([z.string(), z.null()]),
156
182
  })
157
183
  .partial();
158
184
 
@@ -167,9 +193,13 @@ const LineDiscount = z.object({
167
193
  // Dependency schema for rendercreditnotepreview_body
168
194
  const CreateDocumentItem = z
169
195
  .object({
170
- type: z.union([z.literal("separator"), z.null()]),
196
+ type: z.union([z.enum(["separator", null]), z.null()]),
171
197
  name: z.union([z.string(), z.null()]),
172
198
  description: z.union([z.string(), z.null()]),
199
+ classification: z.union([
200
+ z.enum(["product", "service", "advance", null]),
201
+ z.null(),
202
+ ]),
173
203
  price: z.union([z.number(), z.null()]),
174
204
  gross_price: z.union([z.number(), z.null()]),
175
205
  quantity: z.union([z.number(), z.null()]),
@@ -201,12 +231,14 @@ const CompleteCreditNotePreview = z.object({
201
231
  currency_code: z.string().max(3).optional(),
202
232
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
203
233
  reference: z.union([z.string(), z.null()]).optional(),
234
+ pt: PtDocumentInput.optional(),
204
235
  date_service: z.union([z.string(), z.null()]).optional(),
205
236
  date_service_to: z.union([z.string(), z.null()]).optional(),
206
237
  date_due: z.union([z.string(), z.null()]).optional(),
207
238
  items: z.array(CreateDocumentItem).min(1),
239
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
208
240
  fina: CreateFinaInvoiceData.optional(),
209
- expected_total_with_tax: z.number().gt(0).optional(),
241
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
210
242
  });
211
243
 
212
244
 
@@ -23,6 +23,7 @@ const DocumentEntity = z
23
23
  tax_number: z.union([z.string(), z.null()]),
24
24
  tax_number_2: z.union([z.string(), z.null()]),
25
25
  company_number: z.union([z.string(), z.null()]),
26
+ phone: z.union([z.string(), z.null()]),
26
27
  peppol_id: z.union([z.string(), z.null()]),
27
28
  is_end_consumer: z.union([z.boolean(), z.null()]),
28
29
  bank_account: z.union([
@@ -113,8 +114,8 @@ const PartialDeliveryNotePreview = z.object({
113
114
  .passthrough()
114
115
  )
115
116
  .min(1),
116
- linked_documents: z.array(z.string().min(1)).optional(),
117
- expected_total_with_tax: z.number().gt(0).optional(),
117
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
118
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
118
119
  });
119
120
 
120
121
 
@@ -126,6 +127,8 @@ const DocumentItemTax = z
126
127
  classification: z.union([z.string(), z.null()]),
127
128
  reverse_charge: z.union([z.boolean(), z.null()]),
128
129
  amount: z.union([z.number(), z.null()]),
130
+ pt_exemption_code: z.union([z.string(), z.null()]),
131
+ pt_exemption_reason: z.union([z.string(), z.null()]),
129
132
  })
130
133
  .partial();
131
134
 
@@ -140,9 +143,13 @@ const LineDiscount = z.object({
140
143
  // Dependency schema for renderdeliverynotepreview_body
141
144
  const CreateDocumentItem = z
142
145
  .object({
143
- type: z.union([z.literal("separator"), z.null()]),
146
+ type: z.union([z.enum(["separator", null]), z.null()]),
144
147
  name: z.union([z.string(), z.null()]),
145
148
  description: z.union([z.string(), z.null()]),
149
+ classification: z.union([
150
+ z.enum(["product", "service", "advance", null]),
151
+ z.null(),
152
+ ]),
146
153
  price: z.union([z.number(), z.null()]),
147
154
  gross_price: z.union([z.number(), z.null()]),
148
155
  quantity: z.union([z.number(), z.null()]),
@@ -179,8 +186,8 @@ const CompleteDeliveryNotePreview = z.object({
179
186
  date_service: z.union([z.string(), z.null()]).optional(),
180
187
  date_service_to: z.union([z.string(), z.null()]).optional(),
181
188
  items: z.array(CreateDocumentItem).min(1),
182
- linked_documents: z.array(z.string().min(1)).optional(),
183
- expected_total_with_tax: z.number().gt(0).optional(),
189
+ linked_documents: z.union([z.array(z.string().min(1)), z.null()]).optional(),
190
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
184
191
  });
185
192
 
186
193
 
@@ -23,6 +23,7 @@ const DocumentEntity = z
23
23
  tax_number: z.union([z.string(), z.null()]),
24
24
  tax_number_2: z.union([z.string(), z.null()]),
25
25
  company_number: z.union([z.string(), z.null()]),
26
+ phone: z.union([z.string(), z.null()]),
26
27
  peppol_id: z.union([z.string(), z.null()]),
27
28
  is_end_consumer: z.union([z.boolean(), z.null()]),
28
29
  bank_account: z.union([
@@ -60,6 +61,26 @@ const CreateDocumentCustomer = DocumentEntity.and(
60
61
  );
61
62
 
62
63
 
64
+ // Dependency schema for renderestimatepreview_body
65
+ const PtDocumentInput = z.union([
66
+ z
67
+ .object({
68
+ series_id: z.union([z.string(), z.null()]),
69
+ manual: z.union([z.boolean(), z.null()]),
70
+ manual_sequential_number: z.union([z.number(), z.null()]),
71
+ manual_series_code: z.union([z.string(), z.null()]),
72
+ operator_first_name: z.union([z.string(), z.null()]),
73
+ operator_last_name: z.union([z.string(), z.null()]),
74
+ operator_tax_number: z.union([z.string(), z.null()]),
75
+ account_first_name: z.union([z.string(), z.null()]),
76
+ account_last_name: z.union([z.string(), z.null()]),
77
+ account_tax_number: z.union([z.string(), z.null()]),
78
+ })
79
+ .partial(),
80
+ z.null(),
81
+ ]);
82
+
83
+
63
84
  // Dependency schema for renderestimatepreview_body
64
85
  const PartialEstimatePreview = z.object({
65
86
  is_draft: z.boolean().optional(),
@@ -78,8 +99,11 @@ const PartialEstimatePreview = z.object({
78
99
  currency_code: z.string().max(3).optional(),
79
100
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
80
101
  reference: z.union([z.string(), z.null()]).optional(),
102
+ pt: PtDocumentInput.optional(),
81
103
  date_valid_till: z.union([z.string(), z.null()]).optional(),
82
- title_type: z.union([z.enum(["estimate", "quote"]), z.null()]).optional(),
104
+ title_type: z
105
+ .union([z.enum(["estimate", "quote", null]), z.null()])
106
+ .optional(),
83
107
  date_due: z.union([z.string(), z.null()]).optional(),
84
108
  date_service: z.union([z.string(), z.null()]).optional(),
85
109
  date_service_to: z.union([z.string(), z.null()]).optional(),
@@ -114,7 +138,7 @@ const PartialEstimatePreview = z.object({
114
138
  .passthrough()
115
139
  )
116
140
  .min(1),
117
- expected_total_with_tax: z.number().gt(0).optional(),
141
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
118
142
  });
119
143
 
120
144
 
@@ -126,6 +150,8 @@ const DocumentItemTax = z
126
150
  classification: z.union([z.string(), z.null()]),
127
151
  reverse_charge: z.union([z.boolean(), z.null()]),
128
152
  amount: z.union([z.number(), z.null()]),
153
+ pt_exemption_code: z.union([z.string(), z.null()]),
154
+ pt_exemption_reason: z.union([z.string(), z.null()]),
129
155
  })
130
156
  .partial();
131
157
 
@@ -140,9 +166,13 @@ const LineDiscount = z.object({
140
166
  // Dependency schema for renderestimatepreview_body
141
167
  const CreateDocumentItem = z
142
168
  .object({
143
- type: z.union([z.literal("separator"), z.null()]),
169
+ type: z.union([z.enum(["separator", null]), z.null()]),
144
170
  name: z.union([z.string(), z.null()]),
145
171
  description: z.union([z.string(), z.null()]),
172
+ classification: z.union([
173
+ z.enum(["product", "service", "advance", null]),
174
+ z.null(),
175
+ ]),
146
176
  price: z.union([z.number(), z.null()]),
147
177
  gross_price: z.union([z.number(), z.null()]),
148
178
  quantity: z.union([z.number(), z.null()]),
@@ -174,13 +204,16 @@ const CompleteEstimatePreview = z.object({
174
204
  currency_code: z.string().max(3).optional(),
175
205
  metadata: z.union([z.record(z.string(), z.any()), z.null()]).optional(),
176
206
  reference: z.union([z.string(), z.null()]).optional(),
207
+ pt: PtDocumentInput.optional(),
177
208
  date_valid_till: z.union([z.string(), z.null()]).optional(),
178
- title_type: z.union([z.enum(["estimate", "quote"]), z.null()]).optional(),
209
+ title_type: z
210
+ .union([z.enum(["estimate", "quote", null]), z.null()])
211
+ .optional(),
179
212
  date_due: z.union([z.string(), z.null()]).optional(),
180
213
  date_service: z.union([z.string(), z.null()]).optional(),
181
214
  date_service_to: z.union([z.string(), z.null()]).optional(),
182
215
  items: z.array(CreateDocumentItem).min(1),
183
- expected_total_with_tax: z.number().gt(0).optional(),
216
+ expected_total_with_tax: z.union([z.number(), z.null()]).optional(),
184
217
  });
185
218
 
186
219