@moovio/sdk 0.21.14 → 0.21.16

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 (335) hide show
  1. package/README.md +96 -47
  2. package/bin/mcp-server.js +2433 -819
  3. package/bin/mcp-server.js.map +63 -22
  4. package/examples/package-lock.json +1 -1
  5. package/funcs/invoicesCreateInvoice.d.ts +18 -0
  6. package/funcs/invoicesCreateInvoice.d.ts.map +1 -0
  7. package/funcs/invoicesCreateInvoice.js +139 -0
  8. package/funcs/invoicesCreateInvoice.js.map +1 -0
  9. package/funcs/invoicesGetInvoice.d.ts +17 -0
  10. package/funcs/invoicesGetInvoice.d.ts.map +1 -0
  11. package/funcs/invoicesGetInvoice.js +129 -0
  12. package/funcs/invoicesGetInvoice.js.map +1 -0
  13. package/funcs/invoicesListInvoices.d.ts +18 -0
  14. package/funcs/invoicesListInvoices.d.ts.map +1 -0
  15. package/funcs/invoicesListInvoices.js +135 -0
  16. package/funcs/invoicesListInvoices.js.map +1 -0
  17. package/funcs/invoicesMarkPaidInvoice.d.ts +19 -0
  18. package/funcs/invoicesMarkPaidInvoice.d.ts.map +1 -0
  19. package/funcs/invoicesMarkPaidInvoice.js +144 -0
  20. package/funcs/invoicesMarkPaidInvoice.js.map +1 -0
  21. package/funcs/invoicesUpdateInvoice.d.ts +18 -0
  22. package/funcs/invoicesUpdateInvoice.d.ts.map +1 -0
  23. package/funcs/invoicesUpdateInvoice.js +143 -0
  24. package/funcs/invoicesUpdateInvoice.js.map +1 -0
  25. package/jsr.json +1 -1
  26. package/lib/config.d.ts +3 -3
  27. package/lib/config.js +3 -3
  28. package/mcp-server/mcp-server.js +1 -1
  29. package/mcp-server/server.d.ts.map +1 -1
  30. package/mcp-server/server.js +11 -1
  31. package/mcp-server/server.js.map +1 -1
  32. package/mcp-server/tools/invoicesCreateInvoice.d.ts +8 -0
  33. package/mcp-server/tools/invoicesCreateInvoice.d.ts.map +1 -0
  34. package/mcp-server/tools/invoicesCreateInvoice.js +65 -0
  35. package/mcp-server/tools/invoicesCreateInvoice.js.map +1 -0
  36. package/mcp-server/tools/invoicesGetInvoice.d.ts +8 -0
  37. package/mcp-server/tools/invoicesGetInvoice.d.ts.map +1 -0
  38. package/mcp-server/tools/invoicesGetInvoice.js +65 -0
  39. package/mcp-server/tools/invoicesGetInvoice.js.map +1 -0
  40. package/mcp-server/tools/invoicesListInvoices.d.ts +8 -0
  41. package/mcp-server/tools/invoicesListInvoices.d.ts.map +1 -0
  42. package/mcp-server/tools/invoicesListInvoices.js +65 -0
  43. package/mcp-server/tools/invoicesListInvoices.js.map +1 -0
  44. package/mcp-server/tools/invoicesMarkPaidInvoice.d.ts +8 -0
  45. package/mcp-server/tools/invoicesMarkPaidInvoice.d.ts.map +1 -0
  46. package/mcp-server/tools/invoicesMarkPaidInvoice.js +66 -0
  47. package/mcp-server/tools/invoicesMarkPaidInvoice.js.map +1 -0
  48. package/mcp-server/tools/invoicesUpdateInvoice.d.ts +8 -0
  49. package/mcp-server/tools/invoicesUpdateInvoice.d.ts.map +1 -0
  50. package/mcp-server/tools/invoicesUpdateInvoice.js +65 -0
  51. package/mcp-server/tools/invoicesUpdateInvoice.js.map +1 -0
  52. package/models/components/amountdecimalupdate.d.ts +29 -0
  53. package/models/components/amountdecimalupdate.d.ts.map +1 -0
  54. package/models/components/{paymentlinklineitemsupdate.js → amountdecimalupdate.js} +14 -13
  55. package/models/components/amountdecimalupdate.js.map +1 -0
  56. package/models/components/createinvoice.d.ts +32 -0
  57. package/models/components/createinvoice.d.ts.map +1 -0
  58. package/models/components/createinvoice.js +72 -0
  59. package/models/components/createinvoice.js.map +1 -0
  60. package/models/components/createpaymentlink.d.ts +3 -3
  61. package/models/components/createpaymentlink.d.ts.map +1 -1
  62. package/models/components/createpaymentlink.js +3 -3
  63. package/models/components/createpaymentlink.js.map +1 -1
  64. package/models/components/createpaymentlinklineitem.d.ts +50 -0
  65. package/models/components/createpaymentlinklineitem.d.ts.map +1 -0
  66. package/models/components/createpaymentlinklineitem.js +70 -0
  67. package/models/components/createpaymentlinklineitem.js.map +1 -0
  68. package/models/components/createpaymentlinklineitemoption.d.ts +44 -0
  69. package/models/components/createpaymentlinklineitemoption.d.ts.map +1 -0
  70. package/models/components/createpaymentlinklineitemoption.js +67 -0
  71. package/models/components/createpaymentlinklineitemoption.js.map +1 -0
  72. package/models/components/createpaymentlinklineitemoptionvalidationerror.d.ts +24 -0
  73. package/models/components/createpaymentlinklineitemoptionvalidationerror.d.ts.map +1 -0
  74. package/models/components/createpaymentlinklineitemoptionvalidationerror.js +65 -0
  75. package/models/components/createpaymentlinklineitemoptionvalidationerror.js.map +1 -0
  76. package/models/components/createpaymentlinklineitems.d.ts +27 -0
  77. package/models/components/createpaymentlinklineitems.d.ts.map +1 -0
  78. package/models/components/{paymentlinklineitemsvalidationerror.js → createpaymentlinklineitems.js} +13 -13
  79. package/models/components/createpaymentlinklineitems.js.map +1 -0
  80. package/models/components/createpaymentlinklineitemsupdate.d.ts +27 -0
  81. package/models/components/createpaymentlinklineitemsupdate.d.ts.map +1 -0
  82. package/models/components/createpaymentlinklineitemsupdate.js +59 -0
  83. package/models/components/createpaymentlinklineitemsupdate.js.map +1 -0
  84. package/models/components/createpaymentlinklineitemsvalidationerror.d.ts +22 -0
  85. package/models/components/createpaymentlinklineitemsvalidationerror.d.ts.map +1 -0
  86. package/models/components/createpaymentlinklineitemsvalidationerror.js +61 -0
  87. package/models/components/createpaymentlinklineitemsvalidationerror.js.map +1 -0
  88. package/models/components/createpaymentlinklineitemvalidationerror.d.ts +31 -0
  89. package/models/components/createpaymentlinklineitemvalidationerror.d.ts.map +1 -0
  90. package/models/components/createpaymentlinklineitemvalidationerror.js +68 -0
  91. package/models/components/createpaymentlinklineitemvalidationerror.js.map +1 -0
  92. package/models/components/index.d.ts +26 -4
  93. package/models/components/index.d.ts.map +1 -1
  94. package/models/components/index.js +26 -4
  95. package/models/components/index.js.map +1 -1
  96. package/models/components/invoice.d.ts +81 -0
  97. package/models/components/invoice.d.ts.map +1 -0
  98. package/models/components/invoice.js +107 -0
  99. package/models/components/invoice.js.map +1 -0
  100. package/models/components/invoiceexternalpayment.d.ts +35 -0
  101. package/models/components/invoiceexternalpayment.d.ts.map +1 -0
  102. package/models/components/invoiceexternalpayment.js +75 -0
  103. package/models/components/invoiceexternalpayment.js.map +1 -0
  104. package/models/components/invoicelineitem.d.ts +45 -0
  105. package/models/components/invoicelineitem.d.ts.map +1 -0
  106. package/models/components/invoicelineitem.js +68 -0
  107. package/models/components/invoicelineitem.js.map +1 -0
  108. package/models/components/invoicelineitemoption.d.ts +39 -0
  109. package/models/components/invoicelineitemoption.d.ts.map +1 -0
  110. package/models/components/invoicelineitemoption.js +65 -0
  111. package/models/components/invoicelineitemoption.js.map +1 -0
  112. package/models/components/invoicelineitemoptionvalidationerror.d.ts +24 -0
  113. package/models/components/invoicelineitemoptionvalidationerror.d.ts.map +1 -0
  114. package/models/components/{paymentlinklineitemoptionvalidationerror.js → invoicelineitemoptionvalidationerror.js} +10 -10
  115. package/models/components/invoicelineitemoptionvalidationerror.js.map +1 -0
  116. package/models/components/invoicelineitems.d.ts +24 -0
  117. package/models/components/invoicelineitems.d.ts.map +1 -0
  118. package/models/components/invoicelineitems.js +59 -0
  119. package/models/components/invoicelineitems.js.map +1 -0
  120. package/models/components/invoicelineitemsupdate.d.ts +24 -0
  121. package/models/components/invoicelineitemsupdate.d.ts.map +1 -0
  122. package/models/components/invoicelineitemsupdate.js +59 -0
  123. package/models/components/invoicelineitemsupdate.js.map +1 -0
  124. package/models/components/invoicelineitemsvalidationerror.d.ts +22 -0
  125. package/models/components/invoicelineitemsvalidationerror.d.ts.map +1 -0
  126. package/models/components/invoicelineitemsvalidationerror.js +59 -0
  127. package/models/components/invoicelineitemsvalidationerror.js.map +1 -0
  128. package/models/components/invoicelineitemvalidationerror.d.ts +31 -0
  129. package/models/components/invoicelineitemvalidationerror.d.ts.map +1 -0
  130. package/models/components/{paymentlinklineitemvalidationerror.js → invoicelineitemvalidationerror.js} +13 -13
  131. package/models/components/invoicelineitemvalidationerror.js.map +1 -0
  132. package/models/components/invoicepayment.d.ts +23 -0
  133. package/models/components/invoicepayment.d.ts.map +1 -0
  134. package/models/components/invoicepayment.js +70 -0
  135. package/models/components/invoicepayment.js.map +1 -0
  136. package/models/components/invoicestatus.d.ts +16 -0
  137. package/models/components/invoicestatus.d.ts.map +1 -0
  138. package/models/components/invoicestatus.js +53 -0
  139. package/models/components/invoicestatus.js.map +1 -0
  140. package/models/components/invoicetransferpayment.d.ts +28 -0
  141. package/models/components/invoicetransferpayment.d.ts.map +1 -0
  142. package/models/components/invoicetransferpayment.js +68 -0
  143. package/models/components/invoicetransferpayment.js.map +1 -0
  144. package/models/components/markinvoicepaid.d.ts +21 -0
  145. package/models/components/markinvoicepaid.d.ts.map +1 -0
  146. package/models/components/markinvoicepaid.js +63 -0
  147. package/models/components/markinvoicepaid.js.map +1 -0
  148. package/models/components/paymentlinklineitem.d.ts +6 -0
  149. package/models/components/paymentlinklineitem.d.ts.map +1 -1
  150. package/models/components/paymentlinklineitem.js +3 -0
  151. package/models/components/paymentlinklineitem.js.map +1 -1
  152. package/models/components/paymentlinklineitemimagemetadata.d.ts +35 -0
  153. package/models/components/paymentlinklineitemimagemetadata.d.ts.map +1 -0
  154. package/models/components/paymentlinklineitemimagemetadata.js +64 -0
  155. package/models/components/paymentlinklineitemimagemetadata.js.map +1 -0
  156. package/models/components/paymentlinklineitemoption.d.ts +6 -0
  157. package/models/components/paymentlinklineitemoption.d.ts.map +1 -1
  158. package/models/components/paymentlinklineitemoption.js +3 -0
  159. package/models/components/paymentlinklineitemoption.js.map +1 -1
  160. package/models/components/updateinvoice.d.ts +36 -0
  161. package/models/components/updateinvoice.d.ts.map +1 -0
  162. package/models/components/updateinvoice.js +71 -0
  163. package/models/components/updateinvoice.js.map +1 -0
  164. package/models/components/updatepaymentlink.d.ts +3 -3
  165. package/models/components/updatepaymentlink.d.ts.map +1 -1
  166. package/models/components/updatepaymentlink.js +3 -3
  167. package/models/components/updatepaymentlink.js.map +1 -1
  168. package/models/components/webhookdata.d.ts +4 -2
  169. package/models/components/webhookdata.d.ts.map +1 -1
  170. package/models/components/webhookdata.js +6 -0
  171. package/models/components/webhookdata.js.map +1 -1
  172. package/models/components/webhookdatainvoicecreated.d.ts +19 -0
  173. package/models/components/webhookdatainvoicecreated.d.ts.map +1 -0
  174. package/models/components/webhookdatainvoicecreated.js +60 -0
  175. package/models/components/webhookdatainvoicecreated.js.map +1 -0
  176. package/models/components/webhookdatainvoiceupdated.d.ts +22 -0
  177. package/models/components/webhookdatainvoiceupdated.d.ts.map +1 -0
  178. package/models/components/webhookdatainvoiceupdated.js +63 -0
  179. package/models/components/webhookdatainvoiceupdated.js.map +1 -0
  180. package/models/components/webhookeventtype.d.ts +2 -0
  181. package/models/components/webhookeventtype.d.ts.map +1 -1
  182. package/models/components/webhookeventtype.js +2 -0
  183. package/models/components/webhookeventtype.js.map +1 -1
  184. package/models/errors/createinvoiceerror.d.ts +40 -0
  185. package/models/errors/createinvoiceerror.d.ts.map +1 -0
  186. package/models/errors/createinvoiceerror.js +100 -0
  187. package/models/errors/createinvoiceerror.js.map +1 -0
  188. package/models/errors/createpaymentlinkerror.d.ts +3 -3
  189. package/models/errors/createpaymentlinkerror.d.ts.map +1 -1
  190. package/models/errors/createpaymentlinkerror.js +3 -3
  191. package/models/errors/createpaymentlinkerror.js.map +1 -1
  192. package/models/errors/index.d.ts +4 -0
  193. package/models/errors/index.d.ts.map +1 -1
  194. package/models/errors/index.js +4 -0
  195. package/models/errors/index.js.map +1 -1
  196. package/models/errors/listinvoicesvalidationerror.d.ts +33 -0
  197. package/models/errors/listinvoicesvalidationerror.d.ts.map +1 -0
  198. package/models/errors/listinvoicesvalidationerror.js +88 -0
  199. package/models/errors/listinvoicesvalidationerror.js.map +1 -0
  200. package/models/errors/markinvoicepaiderror.d.ts +30 -0
  201. package/models/errors/markinvoicepaiderror.d.ts.map +1 -0
  202. package/models/errors/markinvoicepaiderror.js +83 -0
  203. package/models/errors/markinvoicepaiderror.js.map +1 -0
  204. package/models/errors/updateinvoiceerror.d.ts +40 -0
  205. package/models/errors/updateinvoiceerror.d.ts.map +1 -0
  206. package/models/errors/updateinvoiceerror.js +99 -0
  207. package/models/errors/updateinvoiceerror.js.map +1 -0
  208. package/models/errors/updatepaymentlinkerror.d.ts +3 -3
  209. package/models/errors/updatepaymentlinkerror.d.ts.map +1 -1
  210. package/models/errors/updatepaymentlinkerror.js +3 -3
  211. package/models/errors/updatepaymentlinkerror.js.map +1 -1
  212. package/models/operations/createinvoice.d.ts +66 -0
  213. package/models/operations/createinvoice.d.ts.map +1 -0
  214. package/models/operations/createinvoice.js +122 -0
  215. package/models/operations/createinvoice.js.map +1 -0
  216. package/models/operations/getinvoice.d.ts +66 -0
  217. package/models/operations/getinvoice.d.ts.map +1 -0
  218. package/models/operations/getinvoice.js +114 -0
  219. package/models/operations/getinvoice.js.map +1 -0
  220. package/models/operations/index.d.ts +5 -0
  221. package/models/operations/index.d.ts.map +1 -1
  222. package/models/operations/index.js +5 -0
  223. package/models/operations/index.js.map +1 -1
  224. package/models/operations/listinvoices.d.ts +72 -0
  225. package/models/operations/listinvoices.d.ts.map +1 -0
  226. package/models/operations/listinvoices.js +120 -0
  227. package/models/operations/listinvoices.js.map +1 -0
  228. package/models/operations/markpaidinvoice.d.ts +68 -0
  229. package/models/operations/markpaidinvoice.d.ts.map +1 -0
  230. package/models/operations/markpaidinvoice.js +124 -0
  231. package/models/operations/markpaidinvoice.js.map +1 -0
  232. package/models/operations/updateinvoice.d.ts +68 -0
  233. package/models/operations/updateinvoice.d.ts.map +1 -0
  234. package/models/operations/updateinvoice.js +124 -0
  235. package/models/operations/updateinvoice.js.map +1 -0
  236. package/package.json +1 -1
  237. package/sdk/invoices.d.ts +41 -0
  238. package/sdk/invoices.d.ts.map +1 -0
  239. package/sdk/invoices.js +63 -0
  240. package/sdk/invoices.js.map +1 -0
  241. package/sdk/sdk.d.ts +3 -0
  242. package/sdk/sdk.d.ts.map +1 -1
  243. package/sdk/sdk.js +4 -0
  244. package/sdk/sdk.js.map +1 -1
  245. package/src/funcs/invoicesCreateInvoice.ts +201 -0
  246. package/src/funcs/invoicesGetInvoice.ts +185 -0
  247. package/src/funcs/invoicesListInvoices.ts +194 -0
  248. package/src/funcs/invoicesMarkPaidInvoice.ts +208 -0
  249. package/src/funcs/invoicesUpdateInvoice.ts +207 -0
  250. package/src/lib/config.ts +3 -3
  251. package/src/mcp-server/mcp-server.ts +1 -1
  252. package/src/mcp-server/server.ts +11 -1
  253. package/src/mcp-server/tools/invoicesCreateInvoice.ts +38 -0
  254. package/src/mcp-server/tools/invoicesGetInvoice.ts +38 -0
  255. package/src/mcp-server/tools/invoicesListInvoices.ts +38 -0
  256. package/src/mcp-server/tools/invoicesMarkPaidInvoice.ts +39 -0
  257. package/src/mcp-server/tools/invoicesUpdateInvoice.ts +38 -0
  258. package/src/models/components/amountdecimalupdate.ts +65 -0
  259. package/src/models/components/createinvoice.ts +84 -0
  260. package/src/models/components/createpaymentlink.ts +10 -10
  261. package/src/models/components/createpaymentlinklineitem.ts +104 -0
  262. package/src/models/components/createpaymentlinklineitemoption.ts +93 -0
  263. package/src/models/components/createpaymentlinklineitemoptionvalidationerror.ts +80 -0
  264. package/src/models/components/createpaymentlinklineitems.ts +66 -0
  265. package/src/models/components/createpaymentlinklineitemsupdate.ts +68 -0
  266. package/src/models/components/createpaymentlinklineitemsvalidationerror.ts +71 -0
  267. package/src/models/components/createpaymentlinklineitemvalidationerror.ts +96 -0
  268. package/src/models/components/index.ts +26 -4
  269. package/src/models/components/invoice.ts +178 -0
  270. package/src/models/components/invoiceexternalpayment.ts +91 -0
  271. package/src/models/components/invoicelineitem.ts +95 -0
  272. package/src/models/components/invoicelineitemoption.ts +84 -0
  273. package/src/models/components/{paymentlinklineitemoptionvalidationerror.ts → invoicelineitemoptionvalidationerror.ts} +15 -21
  274. package/src/models/components/invoicelineitems.ts +63 -0
  275. package/src/models/components/invoicelineitemsupdate.ts +63 -0
  276. package/src/models/components/invoicelineitemsvalidationerror.ts +59 -0
  277. package/src/models/components/invoicelineitemvalidationerror.ts +85 -0
  278. package/src/models/components/invoicepayment.ts +77 -0
  279. package/src/models/components/invoicestatus.ts +25 -0
  280. package/src/models/components/invoicetransferpayment.ts +68 -0
  281. package/src/models/components/markinvoicepaid.ts +58 -0
  282. package/src/models/components/paymentlinklineitem.ts +13 -0
  283. package/src/models/components/paymentlinklineitemimagemetadata.ts +77 -0
  284. package/src/models/components/paymentlinklineitemoption.ts +13 -0
  285. package/src/models/components/updateinvoice.ts +94 -0
  286. package/src/models/components/updatepaymentlink.ts +10 -10
  287. package/src/models/components/webhookdata.ts +20 -0
  288. package/src/models/components/webhookdatainvoicecreated.ts +55 -0
  289. package/src/models/components/webhookdatainvoiceupdated.ts +64 -0
  290. package/src/models/components/webhookeventtype.ts +2 -0
  291. package/src/models/errors/createinvoiceerror.ts +102 -0
  292. package/src/models/errors/createpaymentlinkerror.ts +6 -6
  293. package/src/models/errors/index.ts +4 -0
  294. package/src/models/errors/listinvoicesvalidationerror.ts +86 -0
  295. package/src/models/errors/markinvoicepaiderror.ts +78 -0
  296. package/src/models/errors/updateinvoiceerror.ts +100 -0
  297. package/src/models/errors/updatepaymentlinkerror.ts +6 -6
  298. package/src/models/operations/createinvoice.ts +187 -0
  299. package/src/models/operations/getinvoice.ts +179 -0
  300. package/src/models/operations/index.ts +5 -0
  301. package/src/models/operations/listinvoices.ts +191 -0
  302. package/src/models/operations/markpaidinvoice.ts +191 -0
  303. package/src/models/operations/updateinvoice.ts +191 -0
  304. package/src/sdk/invoices.ts +100 -0
  305. package/src/sdk/sdk.ts +6 -0
  306. package/src/types/enums.ts +1 -21
  307. package/src/types/index.ts +2 -1
  308. package/src/types/unrecognized.ts +27 -0
  309. package/types/enums.d.ts +1 -8
  310. package/types/enums.d.ts.map +1 -1
  311. package/types/enums.js +3 -21
  312. package/types/enums.js.map +1 -1
  313. package/types/index.d.ts +2 -1
  314. package/types/index.d.ts.map +1 -1
  315. package/types/index.js +15 -0
  316. package/types/index.js.map +1 -1
  317. package/types/unrecognized.d.ts +10 -0
  318. package/types/unrecognized.d.ts.map +1 -0
  319. package/types/unrecognized.js +26 -0
  320. package/types/unrecognized.js.map +1 -0
  321. package/models/components/paymentlinklineitemoptionvalidationerror.d.ts +0 -24
  322. package/models/components/paymentlinklineitemoptionvalidationerror.d.ts.map +0 -1
  323. package/models/components/paymentlinklineitemoptionvalidationerror.js.map +0 -1
  324. package/models/components/paymentlinklineitemsupdate.d.ts +0 -27
  325. package/models/components/paymentlinklineitemsupdate.d.ts.map +0 -1
  326. package/models/components/paymentlinklineitemsupdate.js.map +0 -1
  327. package/models/components/paymentlinklineitemsvalidationerror.d.ts +0 -22
  328. package/models/components/paymentlinklineitemsvalidationerror.d.ts.map +0 -1
  329. package/models/components/paymentlinklineitemsvalidationerror.js.map +0 -1
  330. package/models/components/paymentlinklineitemvalidationerror.d.ts +0 -31
  331. package/models/components/paymentlinklineitemvalidationerror.d.ts.map +0 -1
  332. package/models/components/paymentlinklineitemvalidationerror.js.map +0 -1
  333. package/src/models/components/paymentlinklineitemsupdate.ts +0 -66
  334. package/src/models/components/paymentlinklineitemsvalidationerror.ts +0 -62
  335. package/src/models/components/paymentlinklineitemvalidationerror.ts +0 -88
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.InvoiceExternalPayment$outboundSchema = exports.InvoiceExternalPayment$inboundSchema = exports.InvoiceExternalPaymentPaymentType$outboundSchema = exports.InvoiceExternalPaymentPaymentType$inboundSchema = exports.InvoiceExternalPaymentPaymentType = void 0;
40
+ exports.invoiceExternalPaymentToJSON = invoiceExternalPaymentToJSON;
41
+ exports.invoiceExternalPaymentFromJSON = invoiceExternalPaymentFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const amountdecimal_js_1 = require("./amountdecimal.js");
45
+ exports.InvoiceExternalPaymentPaymentType = {
46
+ External: "external",
47
+ };
48
+ /** @internal */
49
+ exports.InvoiceExternalPaymentPaymentType$inboundSchema = z.nativeEnum(exports.InvoiceExternalPaymentPaymentType);
50
+ /** @internal */
51
+ exports.InvoiceExternalPaymentPaymentType$outboundSchema = exports.InvoiceExternalPaymentPaymentType$inboundSchema;
52
+ /** @internal */
53
+ exports.InvoiceExternalPayment$inboundSchema = z.object({
54
+ paymentType: exports.InvoiceExternalPaymentPaymentType$inboundSchema,
55
+ description: z.string(),
56
+ foreignID: z.string().optional(),
57
+ paymentDate: z.string().datetime({ offset: true }).transform(v => new Date(v))
58
+ .optional(),
59
+ amount: amountdecimal_js_1.AmountDecimal$inboundSchema,
60
+ });
61
+ /** @internal */
62
+ exports.InvoiceExternalPayment$outboundSchema = z.object({
63
+ paymentType: exports.InvoiceExternalPaymentPaymentType$outboundSchema,
64
+ description: z.string(),
65
+ foreignID: z.string().optional(),
66
+ paymentDate: z.date().transform(v => v.toISOString()).optional(),
67
+ amount: amountdecimal_js_1.AmountDecimal$outboundSchema,
68
+ });
69
+ function invoiceExternalPaymentToJSON(invoiceExternalPayment) {
70
+ return JSON.stringify(exports.InvoiceExternalPayment$outboundSchema.parse(invoiceExternalPayment));
71
+ }
72
+ function invoiceExternalPaymentFromJSON(jsonString) {
73
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceExternalPayment$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceExternalPayment' from JSON`);
74
+ }
75
+ //# sourceMappingURL=invoiceexternalpayment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoiceexternalpayment.js","sourceRoot":"","sources":["../../src/models/components/invoiceexternalpayment.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyEH,oEAMC;AACD,wEAQC;AAtFD,0CAA4B;AAC5B,qDAAiD;AAIjD,yDAK4B;AAEf,QAAA,iCAAiC,GAAG;IAC/C,QAAQ,EAAE,UAAU;CACZ,CAAC;AAaX,gBAAgB;AACH,QAAA,+CAA+C,GAExD,CAAC,CAAC,UAAU,CAAC,yCAAiC,CAAC,CAAC;AACpD,gBAAgB;AACH,QAAA,gDAAgD,GAEzD,uDAA+C,CAAC;AAEpD,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,uDAA+C;IAC5D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;SAC3E,QAAQ,EAAE;IACb,MAAM,EAAE,8CAA2B;CACpC,CAAC,CAAC;AAUH,gBAAgB;AACH,QAAA,qCAAqC,GAI9C,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,wDAAgD;IAC7D,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,QAAQ,EAAE;IAChE,MAAM,EAAE,+CAA4B;CACrC,CAAC,CAAC;AAEH,SAAgB,4BAA4B,CAC1C,sBAA8C;IAE9C,OAAO,IAAI,CAAC,SAAS,CACnB,6CAAqC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CACpE,CAAC;AACJ,CAAC;AACD,SAAgB,8BAA8B,CAC5C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4CAAoC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAChE,oDAAoD,CACrD,CAAC;AACJ,CAAC"}
@@ -0,0 +1,45 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js";
5
+ import { InvoiceLineItemOption, InvoiceLineItemOption$Outbound } from "./invoicelineitemoption.js";
6
+ /**
7
+ * Represents a single item in an invoice, including optional modifiers and quantity.
8
+ */
9
+ export type InvoiceLineItem = {
10
+ /**
11
+ * The name of the item.
12
+ */
13
+ name: string;
14
+ /**
15
+ * The base price of the item before applying option modifiers.
16
+ */
17
+ basePrice: AmountDecimal;
18
+ /**
19
+ * The quantity of this item.
20
+ */
21
+ quantity: number;
22
+ /**
23
+ * Optional list of modifiers applied to this item (e.g., toppings, upgrades, customizations).
24
+ */
25
+ options?: Array<InvoiceLineItemOption> | undefined;
26
+ /**
27
+ * Optional unique identifier associating the line item with a product.
28
+ */
29
+ productID?: string | undefined;
30
+ };
31
+ /** @internal */
32
+ export declare const InvoiceLineItem$inboundSchema: z.ZodType<InvoiceLineItem, z.ZodTypeDef, unknown>;
33
+ /** @internal */
34
+ export type InvoiceLineItem$Outbound = {
35
+ name: string;
36
+ basePrice: AmountDecimal$Outbound;
37
+ quantity: number;
38
+ options?: Array<InvoiceLineItemOption$Outbound> | undefined;
39
+ productID?: string | undefined;
40
+ };
41
+ /** @internal */
42
+ export declare const InvoiceLineItem$outboundSchema: z.ZodType<InvoiceLineItem$Outbound, z.ZodTypeDef, InvoiceLineItem>;
43
+ export declare function invoiceLineItemToJSON(invoiceLineItem: InvoiceLineItem): string;
44
+ export declare function invoiceLineItemFromJSON(jsonString: string): SafeParseResult<InvoiceLineItem, SDKValidationError>;
45
+ //# sourceMappingURL=invoicelineitem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitem.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitem.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,aAAa,EAEb,sBAAsB,EAEvB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,qBAAqB,EAErB,8BAA8B,EAE/B,MAAM,4BAA4B,CAAC;AAEpC;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,aAAa,CAAC;IACzB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,qBAAqB,CAAC,GAAG,SAAS,CAAC;IACnD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CACnD,eAAe,EACf,CAAC,CAAC,UAAU,EACZ,OAAO,CAOP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,sBAAsB,CAAC;IAClC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,KAAK,CAAC,8BAA8B,CAAC,GAAG,SAAS,CAAC;IAC5D,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CACpD,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,eAAe,CAOf,CAAC;AAEH,wBAAgB,qBAAqB,CACnC,eAAe,EAAE,eAAe,GAC/B,MAAM,CAER;AACD,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,eAAe,EAAE,kBAAkB,CAAC,CAMtD"}
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.InvoiceLineItem$outboundSchema = exports.InvoiceLineItem$inboundSchema = void 0;
40
+ exports.invoiceLineItemToJSON = invoiceLineItemToJSON;
41
+ exports.invoiceLineItemFromJSON = invoiceLineItemFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const amountdecimal_js_1 = require("./amountdecimal.js");
45
+ const invoicelineitemoption_js_1 = require("./invoicelineitemoption.js");
46
+ /** @internal */
47
+ exports.InvoiceLineItem$inboundSchema = z.object({
48
+ name: z.string(),
49
+ basePrice: amountdecimal_js_1.AmountDecimal$inboundSchema,
50
+ quantity: z.number().int(),
51
+ options: z.array(invoicelineitemoption_js_1.InvoiceLineItemOption$inboundSchema).optional(),
52
+ productID: z.string().optional(),
53
+ });
54
+ /** @internal */
55
+ exports.InvoiceLineItem$outboundSchema = z.object({
56
+ name: z.string(),
57
+ basePrice: amountdecimal_js_1.AmountDecimal$outboundSchema,
58
+ quantity: z.number().int(),
59
+ options: z.array(invoicelineitemoption_js_1.InvoiceLineItemOption$outboundSchema).optional(),
60
+ productID: z.string().optional(),
61
+ });
62
+ function invoiceLineItemToJSON(invoiceLineItem) {
63
+ return JSON.stringify(exports.InvoiceLineItem$outboundSchema.parse(invoiceLineItem));
64
+ }
65
+ function invoiceLineItemFromJSON(jsonString) {
66
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceLineItem$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceLineItem' from JSON`);
67
+ }
68
+ //# sourceMappingURL=invoicelineitem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitem.js","sourceRoot":"","sources":["../../src/models/components/invoicelineitem.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+EH,sDAIC;AACD,0DAQC;AA1FD,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAK4B;AAC5B,yEAKoC;AA4BpC,gBAAgB;AACH,QAAA,6BAA6B,GAItC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,SAAS,EAAE,8CAA2B;IACtC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,8DAAmC,CAAC,CAAC,QAAQ,EAAE;IAChE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAUH,gBAAgB;AACH,QAAA,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,SAAS,EAAE,+CAA4B;IACvC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,+DAAoC,CAAC,CAAC,QAAQ,EAAE;IACjE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH,SAAgB,qBAAqB,CACnC,eAAgC;IAEhC,OAAO,IAAI,CAAC,SAAS,CAAC,sCAA8B,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC;AAC/E,CAAC;AACD,SAAgB,uBAAuB,CACrC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,qCAA6B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACzD,6CAA6C,CAC9C,CAAC;AACJ,CAAC"}
@@ -0,0 +1,39 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js";
5
+ /**
6
+ * Represents a modifier or option applied to a line item.
7
+ */
8
+ export type InvoiceLineItemOption = {
9
+ /**
10
+ * The name of the option or modifier.
11
+ */
12
+ name: string;
13
+ /**
14
+ * The quantity of this option.
15
+ */
16
+ quantity: number;
17
+ /**
18
+ * Optional price modification applied by this option. Can be positive, negative, or zero.
19
+ */
20
+ priceModifier?: AmountDecimal | undefined;
21
+ /**
22
+ * Optional group identifier to categorize related options (e.g., 'toppings').
23
+ */
24
+ group?: string | undefined;
25
+ };
26
+ /** @internal */
27
+ export declare const InvoiceLineItemOption$inboundSchema: z.ZodType<InvoiceLineItemOption, z.ZodTypeDef, unknown>;
28
+ /** @internal */
29
+ export type InvoiceLineItemOption$Outbound = {
30
+ name: string;
31
+ quantity: number;
32
+ priceModifier?: AmountDecimal$Outbound | undefined;
33
+ group?: string | undefined;
34
+ };
35
+ /** @internal */
36
+ export declare const InvoiceLineItemOption$outboundSchema: z.ZodType<InvoiceLineItemOption$Outbound, z.ZodTypeDef, InvoiceLineItemOption>;
37
+ export declare function invoiceLineItemOptionToJSON(invoiceLineItemOption: InvoiceLineItemOption): string;
38
+ export declare function invoiceLineItemOptionFromJSON(jsonString: string): SafeParseResult<InvoiceLineItemOption, SDKValidationError>;
39
+ //# sourceMappingURL=invoicelineitemoption.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemoption.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitemoption.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,aAAa,EAEb,sBAAsB,EAEvB,MAAM,oBAAoB,CAAC;AAE5B;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,8BAA8B,GAAG;IAC3C,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,sBAAsB,GAAG,SAAS,CAAC;IACnD,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,OAAO,CAC1D,8BAA8B,EAC9B,CAAC,CAAC,UAAU,EACZ,qBAAqB,CAMrB,CAAC;AAEH,wBAAgB,2BAA2B,CACzC,qBAAqB,EAAE,qBAAqB,GAC3C,MAAM,CAIR;AACD,wBAAgB,6BAA6B,CAC3C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,qBAAqB,EAAE,kBAAkB,CAAC,CAM5D"}
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.InvoiceLineItemOption$outboundSchema = exports.InvoiceLineItemOption$inboundSchema = void 0;
40
+ exports.invoiceLineItemOptionToJSON = invoiceLineItemOptionToJSON;
41
+ exports.invoiceLineItemOptionFromJSON = invoiceLineItemOptionFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const amountdecimal_js_1 = require("./amountdecimal.js");
45
+ /** @internal */
46
+ exports.InvoiceLineItemOption$inboundSchema = z.object({
47
+ name: z.string(),
48
+ quantity: z.number().int(),
49
+ priceModifier: amountdecimal_js_1.AmountDecimal$inboundSchema.optional(),
50
+ group: z.string().optional(),
51
+ });
52
+ /** @internal */
53
+ exports.InvoiceLineItemOption$outboundSchema = z.object({
54
+ name: z.string(),
55
+ quantity: z.number().int(),
56
+ priceModifier: amountdecimal_js_1.AmountDecimal$outboundSchema.optional(),
57
+ group: z.string().optional(),
58
+ });
59
+ function invoiceLineItemOptionToJSON(invoiceLineItemOption) {
60
+ return JSON.stringify(exports.InvoiceLineItemOption$outboundSchema.parse(invoiceLineItemOption));
61
+ }
62
+ function invoiceLineItemOptionFromJSON(jsonString) {
63
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceLineItemOption$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceLineItemOption' from JSON`);
64
+ }
65
+ //# sourceMappingURL=invoicelineitemoption.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemoption.js","sourceRoot":"","sources":["../../src/models/components/invoicelineitemoption.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkEH,kEAMC;AACD,sEAQC;AA/ED,0CAA4B;AAC5B,qDAAiD;AAGjD,yDAK4B;AAwB5B,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,aAAa,EAAE,8CAA2B,CAAC,QAAQ,EAAE;IACrD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,aAAa,EAAE,+CAA4B,CAAC,QAAQ,EAAE;IACtD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAEH,SAAgB,2BAA2B,CACzC,qBAA4C;IAE5C,OAAO,IAAI,CAAC,SAAS,CACnB,4CAAoC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAClE,CAAC;AACJ,CAAC;AACD,SAAgB,6BAA6B,CAC3C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,2CAAmC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC/D,mDAAmD,CACpD,CAAC;AACJ,CAAC"}
@@ -0,0 +1,24 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { AmountDecimalValidationError, AmountDecimalValidationError$Outbound } from "./amountdecimalvalidationerror.js";
5
+ export type InvoiceLineItemOptionValidationError = {
6
+ name?: string | undefined;
7
+ group?: string | undefined;
8
+ priceModifier?: AmountDecimalValidationError | undefined;
9
+ quantity?: string | undefined;
10
+ };
11
+ /** @internal */
12
+ export declare const InvoiceLineItemOptionValidationError$inboundSchema: z.ZodType<InvoiceLineItemOptionValidationError, z.ZodTypeDef, unknown>;
13
+ /** @internal */
14
+ export type InvoiceLineItemOptionValidationError$Outbound = {
15
+ name?: string | undefined;
16
+ group?: string | undefined;
17
+ priceModifier?: AmountDecimalValidationError$Outbound | undefined;
18
+ quantity?: string | undefined;
19
+ };
20
+ /** @internal */
21
+ export declare const InvoiceLineItemOptionValidationError$outboundSchema: z.ZodType<InvoiceLineItemOptionValidationError$Outbound, z.ZodTypeDef, InvoiceLineItemOptionValidationError>;
22
+ export declare function invoiceLineItemOptionValidationErrorToJSON(invoiceLineItemOptionValidationError: InvoiceLineItemOptionValidationError): string;
23
+ export declare function invoiceLineItemOptionValidationErrorFromJSON(jsonString: string): SafeParseResult<InvoiceLineItemOptionValidationError, SDKValidationError>;
24
+ //# sourceMappingURL=invoicelineitemoptionvalidationerror.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemoptionvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitemoptionvalidationerror.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,4BAA4B,EAE5B,qCAAqC,EAEtC,MAAM,mCAAmC,CAAC;AAE3C,MAAM,MAAM,oCAAoC,GAAG;IACjD,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,aAAa,CAAC,EAAE,4BAA4B,GAAG,SAAS,CAAC;IACzD,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kDAAkD,EAAE,CAAC,CAAC,OAAO,CACxE,oCAAoC,EACpC,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,6CAA6C,GAAG;IAC1D,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,aAAa,CAAC,EAAE,qCAAqC,GAAG,SAAS,CAAC;IAClE,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mDAAmD,EAAE,CAAC,CAAC,OAAO,CACzE,6CAA6C,EAC7C,CAAC,CAAC,UAAU,EACZ,oCAAoC,CAMpC,CAAC;AAEH,wBAAgB,0CAA0C,CACxD,oCAAoC,EAAE,oCAAoC,GACzE,MAAM,CAMR;AACD,wBAAgB,4CAA4C,CAC1D,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,oCAAoC,EAAE,kBAAkB,CAAC,CAO3E"}
@@ -36,30 +36,30 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.PaymentLinkLineItemOptionValidationError$outboundSchema = exports.PaymentLinkLineItemOptionValidationError$inboundSchema = void 0;
40
- exports.paymentLinkLineItemOptionValidationErrorToJSON = paymentLinkLineItemOptionValidationErrorToJSON;
41
- exports.paymentLinkLineItemOptionValidationErrorFromJSON = paymentLinkLineItemOptionValidationErrorFromJSON;
39
+ exports.InvoiceLineItemOptionValidationError$outboundSchema = exports.InvoiceLineItemOptionValidationError$inboundSchema = void 0;
40
+ exports.invoiceLineItemOptionValidationErrorToJSON = invoiceLineItemOptionValidationErrorToJSON;
41
+ exports.invoiceLineItemOptionValidationErrorFromJSON = invoiceLineItemOptionValidationErrorFromJSON;
42
42
  const z = __importStar(require("zod/v3"));
43
43
  const schemas_js_1 = require("../../lib/schemas.js");
44
44
  const amountdecimalvalidationerror_js_1 = require("./amountdecimalvalidationerror.js");
45
45
  /** @internal */
46
- exports.PaymentLinkLineItemOptionValidationError$inboundSchema = z.object({
46
+ exports.InvoiceLineItemOptionValidationError$inboundSchema = z.object({
47
47
  name: z.string().optional(),
48
48
  group: z.string().optional(),
49
49
  priceModifier: amountdecimalvalidationerror_js_1.AmountDecimalValidationError$inboundSchema.optional(),
50
50
  quantity: z.string().optional(),
51
51
  });
52
52
  /** @internal */
53
- exports.PaymentLinkLineItemOptionValidationError$outboundSchema = z.object({
53
+ exports.InvoiceLineItemOptionValidationError$outboundSchema = z.object({
54
54
  name: z.string().optional(),
55
55
  group: z.string().optional(),
56
56
  priceModifier: amountdecimalvalidationerror_js_1.AmountDecimalValidationError$outboundSchema.optional(),
57
57
  quantity: z.string().optional(),
58
58
  });
59
- function paymentLinkLineItemOptionValidationErrorToJSON(paymentLinkLineItemOptionValidationError) {
60
- return JSON.stringify(exports.PaymentLinkLineItemOptionValidationError$outboundSchema.parse(paymentLinkLineItemOptionValidationError));
59
+ function invoiceLineItemOptionValidationErrorToJSON(invoiceLineItemOptionValidationError) {
60
+ return JSON.stringify(exports.InvoiceLineItemOptionValidationError$outboundSchema.parse(invoiceLineItemOptionValidationError));
61
61
  }
62
- function paymentLinkLineItemOptionValidationErrorFromJSON(jsonString) {
63
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.PaymentLinkLineItemOptionValidationError$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PaymentLinkLineItemOptionValidationError' from JSON`);
62
+ function invoiceLineItemOptionValidationErrorFromJSON(jsonString) {
63
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceLineItemOptionValidationError$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceLineItemOptionValidationError' from JSON`);
64
64
  }
65
- //# sourceMappingURL=paymentlinklineitemoptionvalidationerror.js.map
65
+ //# sourceMappingURL=invoicelineitemoptionvalidationerror.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemoptionvalidationerror.js","sourceRoot":"","sources":["../../src/models/components/invoicelineitemoptionvalidationerror.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmDH,gGAQC;AACD,oGASC;AAnED,0CAA4B;AAC5B,qDAAiD;AAGjD,uFAK2C;AAS3C,gBAAgB;AACH,QAAA,kDAAkD,GAI3D,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,aAAa,EAAE,4EAA0C,CAAC,QAAQ,EAAE;IACpE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,mDAAmD,GAI5D,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,aAAa,EAAE,6EAA2C,CAAC,QAAQ,EAAE;IACrE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAEH,SAAgB,0CAA0C,CACxD,oCAA0E;IAE1E,OAAO,IAAI,CAAC,SAAS,CACnB,2DAAmD,CAAC,KAAK,CACvD,oCAAoC,CACrC,CACF,CAAC;AACJ,CAAC;AACD,SAAgB,4CAA4C,CAC1D,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,0DAAkD,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACzE,kEAAkE,CACnE,CAAC;AACJ,CAAC"}
@@ -0,0 +1,24 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { InvoiceLineItem, InvoiceLineItem$Outbound } from "./invoicelineitem.js";
5
+ /**
6
+ * A collection of line items for an invoice.
7
+ */
8
+ export type InvoiceLineItems = {
9
+ /**
10
+ * The list of line items.
11
+ */
12
+ items: Array<InvoiceLineItem>;
13
+ };
14
+ /** @internal */
15
+ export declare const InvoiceLineItems$inboundSchema: z.ZodType<InvoiceLineItems, z.ZodTypeDef, unknown>;
16
+ /** @internal */
17
+ export type InvoiceLineItems$Outbound = {
18
+ items: Array<InvoiceLineItem$Outbound>;
19
+ };
20
+ /** @internal */
21
+ export declare const InvoiceLineItems$outboundSchema: z.ZodType<InvoiceLineItems$Outbound, z.ZodTypeDef, InvoiceLineItems>;
22
+ export declare function invoiceLineItemsToJSON(invoiceLineItems: InvoiceLineItems): string;
23
+ export declare function invoiceLineItemsFromJSON(jsonString: string): SafeParseResult<InvoiceLineItems, SDKValidationError>;
24
+ //# sourceMappingURL=invoicelineitems.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitems.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitems.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,eAAe,EAEf,wBAAwB,EAEzB,MAAM,sBAAsB,CAAC;AAE9B;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;CAC/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CACpD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,yBAAyB,GAAG;IACtC,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,CAAC;CACxC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CACrD,yBAAyB,EACzB,CAAC,CAAC,UAAU,EACZ,gBAAgB,CAGhB,CAAC;AAEH,wBAAgB,sBAAsB,CACpC,gBAAgB,EAAE,gBAAgB,GACjC,MAAM,CAIR;AACD,wBAAgB,wBAAwB,CACtC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,gBAAgB,EAAE,kBAAkB,CAAC,CAMvD"}
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.InvoiceLineItems$outboundSchema = exports.InvoiceLineItems$inboundSchema = void 0;
40
+ exports.invoiceLineItemsToJSON = invoiceLineItemsToJSON;
41
+ exports.invoiceLineItemsFromJSON = invoiceLineItemsFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const invoicelineitem_js_1 = require("./invoicelineitem.js");
45
+ /** @internal */
46
+ exports.InvoiceLineItems$inboundSchema = z.object({
47
+ items: z.array(invoicelineitem_js_1.InvoiceLineItem$inboundSchema),
48
+ });
49
+ /** @internal */
50
+ exports.InvoiceLineItems$outboundSchema = z.object({
51
+ items: z.array(invoicelineitem_js_1.InvoiceLineItem$outboundSchema),
52
+ });
53
+ function invoiceLineItemsToJSON(invoiceLineItems) {
54
+ return JSON.stringify(exports.InvoiceLineItems$outboundSchema.parse(invoiceLineItems));
55
+ }
56
+ function invoiceLineItemsFromJSON(jsonString) {
57
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceLineItems$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceLineItems' from JSON`);
58
+ }
59
+ //# sourceMappingURL=invoicelineitems.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitems.js","sourceRoot":"","sources":["../../src/models/components/invoicelineitems.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CH,wDAMC;AACD,4DAQC;AA1DD,0CAA4B;AAC5B,qDAAiD;AAGjD,6DAK8B;AAY9B,gBAAgB;AACH,QAAA,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,kDAA6B,CAAC;CAC9C,CAAC,CAAC;AAMH,gBAAgB;AACH,QAAA,+BAA+B,GAIxC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,mDAA8B,CAAC;CAC/C,CAAC,CAAC;AAEH,SAAgB,sBAAsB,CACpC,gBAAkC;IAElC,OAAO,IAAI,CAAC,SAAS,CACnB,uCAA+B,CAAC,KAAK,CAAC,gBAAgB,CAAC,CACxD,CAAC;AACJ,CAAC;AACD,SAAgB,wBAAwB,CACtC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,sCAA8B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC1D,8CAA8C,CAC/C,CAAC;AACJ,CAAC"}
@@ -0,0 +1,24 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { InvoiceLineItem, InvoiceLineItem$Outbound } from "./invoicelineitem.js";
5
+ /**
6
+ * A collection of line items for an invoice.
7
+ */
8
+ export type InvoiceLineItemsUpdate = {
9
+ /**
10
+ * The list of line items.
11
+ */
12
+ items?: Array<InvoiceLineItem> | undefined;
13
+ };
14
+ /** @internal */
15
+ export declare const InvoiceLineItemsUpdate$inboundSchema: z.ZodType<InvoiceLineItemsUpdate, z.ZodTypeDef, unknown>;
16
+ /** @internal */
17
+ export type InvoiceLineItemsUpdate$Outbound = {
18
+ items?: Array<InvoiceLineItem$Outbound> | undefined;
19
+ };
20
+ /** @internal */
21
+ export declare const InvoiceLineItemsUpdate$outboundSchema: z.ZodType<InvoiceLineItemsUpdate$Outbound, z.ZodTypeDef, InvoiceLineItemsUpdate>;
22
+ export declare function invoiceLineItemsUpdateToJSON(invoiceLineItemsUpdate: InvoiceLineItemsUpdate): string;
23
+ export declare function invoiceLineItemsUpdateFromJSON(jsonString: string): SafeParseResult<InvoiceLineItemsUpdate, SDKValidationError>;
24
+ //# sourceMappingURL=invoicelineitemsupdate.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemsupdate.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitemsupdate.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,eAAe,EAEf,wBAAwB,EAEzB,MAAM,sBAAsB,CAAC;AAE9B;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACnC;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC;CAC5C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,OAAO,CAC1D,sBAAsB,EACtB,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,+BAA+B,GAAG;IAC5C,KAAK,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,SAAS,CAAC;CACrD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAC3D,+BAA+B,EAC/B,CAAC,CAAC,UAAU,EACZ,sBAAsB,CAGtB,CAAC;AAEH,wBAAgB,4BAA4B,CAC1C,sBAAsB,EAAE,sBAAsB,GAC7C,MAAM,CAIR;AACD,wBAAgB,8BAA8B,CAC5C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,sBAAsB,EAAE,kBAAkB,CAAC,CAM7D"}
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.InvoiceLineItemsUpdate$outboundSchema = exports.InvoiceLineItemsUpdate$inboundSchema = void 0;
40
+ exports.invoiceLineItemsUpdateToJSON = invoiceLineItemsUpdateToJSON;
41
+ exports.invoiceLineItemsUpdateFromJSON = invoiceLineItemsUpdateFromJSON;
42
+ const z = __importStar(require("zod/v3"));
43
+ const schemas_js_1 = require("../../lib/schemas.js");
44
+ const invoicelineitem_js_1 = require("./invoicelineitem.js");
45
+ /** @internal */
46
+ exports.InvoiceLineItemsUpdate$inboundSchema = z.object({
47
+ items: z.array(invoicelineitem_js_1.InvoiceLineItem$inboundSchema).optional(),
48
+ });
49
+ /** @internal */
50
+ exports.InvoiceLineItemsUpdate$outboundSchema = z.object({
51
+ items: z.array(invoicelineitem_js_1.InvoiceLineItem$outboundSchema).optional(),
52
+ });
53
+ function invoiceLineItemsUpdateToJSON(invoiceLineItemsUpdate) {
54
+ return JSON.stringify(exports.InvoiceLineItemsUpdate$outboundSchema.parse(invoiceLineItemsUpdate));
55
+ }
56
+ function invoiceLineItemsUpdateFromJSON(jsonString) {
57
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.InvoiceLineItemsUpdate$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvoiceLineItemsUpdate' from JSON`);
58
+ }
59
+ //# sourceMappingURL=invoicelineitemsupdate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemsupdate.js","sourceRoot":"","sources":["../../src/models/components/invoicelineitemsupdate.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CH,oEAMC;AACD,wEAQC;AA1DD,0CAA4B;AAC5B,qDAAiD;AAGjD,6DAK8B;AAY9B,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,kDAA6B,CAAC,CAAC,QAAQ,EAAE;CACzD,CAAC,CAAC;AAMH,gBAAgB;AACH,QAAA,qCAAqC,GAI9C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,mDAA8B,CAAC,CAAC,QAAQ,EAAE;CAC1D,CAAC,CAAC;AAEH,SAAgB,4BAA4B,CAC1C,sBAA8C;IAE9C,OAAO,IAAI,CAAC,SAAS,CACnB,6CAAqC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CACpE,CAAC;AACJ,CAAC;AACD,SAAgB,8BAA8B,CAC5C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4CAAoC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAChE,oDAAoD,CACrD,CAAC;AACJ,CAAC"}
@@ -0,0 +1,22 @@
1
+ import * as z from "zod/v3";
2
+ import { Result as SafeParseResult } from "../../types/fp.js";
3
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
+ import { InvoiceLineItemValidationError, InvoiceLineItemValidationError$Outbound } from "./invoicelineitemvalidationerror.js";
5
+ export type InvoiceLineItemsValidationError = {
6
+ items?: {
7
+ [k: string]: InvoiceLineItemValidationError;
8
+ } | undefined;
9
+ };
10
+ /** @internal */
11
+ export declare const InvoiceLineItemsValidationError$inboundSchema: z.ZodType<InvoiceLineItemsValidationError, z.ZodTypeDef, unknown>;
12
+ /** @internal */
13
+ export type InvoiceLineItemsValidationError$Outbound = {
14
+ items?: {
15
+ [k: string]: InvoiceLineItemValidationError$Outbound;
16
+ } | undefined;
17
+ };
18
+ /** @internal */
19
+ export declare const InvoiceLineItemsValidationError$outboundSchema: z.ZodType<InvoiceLineItemsValidationError$Outbound, z.ZodTypeDef, InvoiceLineItemsValidationError>;
20
+ export declare function invoiceLineItemsValidationErrorToJSON(invoiceLineItemsValidationError: InvoiceLineItemsValidationError): string;
21
+ export declare function invoiceLineItemsValidationErrorFromJSON(jsonString: string): SafeParseResult<InvoiceLineItemsValidationError, SDKValidationError>;
22
+ //# sourceMappingURL=invoicelineitemsvalidationerror.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invoicelineitemsvalidationerror.d.ts","sourceRoot":"","sources":["../../src/models/components/invoicelineitemsvalidationerror.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,8BAA8B,EAE9B,uCAAuC,EAExC,MAAM,qCAAqC,CAAC;AAE7C,MAAM,MAAM,+BAA+B,GAAG;IAC5C,KAAK,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,8BAA8B,CAAA;KAAE,GAAG,SAAS,CAAC;CACrE,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6CAA6C,EAAE,CAAC,CAAC,OAAO,CACnE,+BAA+B,EAC/B,CAAC,CAAC,UAAU,EACZ,OAAO,CAGP,CAAC;AACH,gBAAgB;AAChB,MAAM,MAAM,wCAAwC,GAAG;IACrD,KAAK,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,uCAAuC,CAAA;KAAE,GAAG,SAAS,CAAC;CAC9E,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8CAA8C,EAAE,CAAC,CAAC,OAAO,CACpE,wCAAwC,EACxC,CAAC,CAAC,UAAU,EACZ,+BAA+B,CAG/B,CAAC;AAEH,wBAAgB,qCAAqC,CACnD,+BAA+B,EAAE,+BAA+B,GAC/D,MAAM,CAMR;AACD,wBAAgB,uCAAuC,CACrD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,+BAA+B,EAAE,kBAAkB,CAAC,CAMtE"}