@payabli/sdk-node 0.0.146 → 1.0.1

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 (2687) hide show
  1. package/README.md +23 -17
  2. package/dist/cjs/BaseClient.d.ts +3 -0
  3. package/dist/cjs/BaseClient.js +17 -2
  4. package/dist/cjs/Client.d.ts +43 -43
  5. package/dist/cjs/Client.js +57 -57
  6. package/dist/cjs/api/errors/ForbiddenError.d.ts +1 -1
  7. package/dist/cjs/api/errors/PaymentRequiredError.d.ts +6 -0
  8. package/dist/cjs/api/errors/PaymentRequiredError.js +54 -0
  9. package/dist/cjs/api/errors/ServiceUnavailableError.d.ts +1 -1
  10. package/dist/cjs/api/errors/UnauthorizedError.d.ts +2 -1
  11. package/dist/cjs/api/errors/index.d.ts +1 -1
  12. package/dist/cjs/api/errors/index.js +1 -1
  13. package/dist/cjs/api/resources/bill/client/Client.d.ts +103 -123
  14. package/dist/cjs/api/resources/bill/client/Client.js +223 -208
  15. package/dist/cjs/api/resources/bill/client/requests/AddBillRequest.d.ts +88 -36
  16. package/dist/cjs/api/resources/bill/client/requests/DeleteAttachedFromBillRequest.d.ts +1 -1
  17. package/dist/cjs/api/resources/bill/client/requests/ListBillsOrgRequest.d.ts +2 -1
  18. package/dist/cjs/api/resources/bill/client/requests/ListBillsRequest.d.ts +2 -1
  19. package/dist/cjs/api/resources/bill/client/requests/SendToApprovalBillRequest.d.ts +2 -1
  20. package/dist/cjs/api/resources/bill/index.d.ts +0 -1
  21. package/dist/cjs/api/resources/bill/index.js +0 -1
  22. package/dist/cjs/api/resources/boarding/client/Client.d.ts +30 -27
  23. package/dist/cjs/api/resources/boarding/client/Client.js +101 -86
  24. package/dist/cjs/api/resources/boarding/client/requests/CreateApplicationFromPaypointRequest.d.ts +22 -0
  25. package/dist/cjs/api/resources/boarding/client/requests/ListApplicationsRequest.d.ts +2 -1
  26. package/dist/cjs/api/resources/boarding/client/requests/ListBoardingLinksRequest.d.ts +1 -1
  27. package/dist/cjs/api/resources/boarding/client/requests/RequestAppByAuth.d.ts +1 -1
  28. package/dist/cjs/api/resources/boarding/client/requests/index.d.ts +1 -0
  29. package/dist/cjs/api/resources/boarding/index.d.ts +0 -1
  30. package/dist/cjs/api/resources/boarding/index.js +0 -1
  31. package/dist/cjs/api/resources/chargeBacks/client/Client.d.ts +5 -2
  32. package/dist/cjs/api/resources/chargeBacks/client/Client.js +8 -6
  33. package/dist/cjs/api/resources/chargeBacks/client/requests/ResponseChargeBack.d.ts +1 -0
  34. package/dist/cjs/api/resources/chargeBacks/index.d.ts +0 -1
  35. package/dist/cjs/api/resources/chargeBacks/index.js +0 -1
  36. package/dist/cjs/api/resources/checkCapture/client/Client.d.ts +5 -2
  37. package/dist/cjs/api/resources/checkCapture/client/Client.js +6 -3
  38. package/dist/cjs/api/resources/checkCapture/client/requests/CheckCaptureRequestBody.d.ts +1 -1
  39. package/dist/cjs/api/resources/checkCapture/index.d.ts +0 -1
  40. package/dist/cjs/api/resources/checkCapture/index.js +0 -1
  41. package/dist/cjs/api/resources/cloud/client/Client.d.ts +22 -19
  42. package/dist/cjs/api/resources/cloud/client/Client.js +47 -40
  43. package/dist/cjs/api/resources/cloud/client/requests/DeviceEntry.d.ts +1 -0
  44. package/dist/cjs/api/resources/cloud/index.d.ts +0 -1
  45. package/dist/cjs/api/resources/cloud/index.js +0 -1
  46. package/dist/cjs/api/resources/customer/client/Client.d.ts +43 -42
  47. package/dist/cjs/api/resources/customer/client/Client.js +87 -71
  48. package/dist/cjs/api/resources/customer/client/requests/AddCustomerRequest.d.ts +53 -14
  49. package/dist/cjs/api/resources/export/client/Client.d.ts +124 -5
  50. package/dist/cjs/api/resources/export/client/Client.js +269 -34
  51. package/dist/cjs/api/resources/export/client/requests/ExportApplicationsRequest.d.ts +1 -1
  52. package/dist/cjs/api/resources/export/client/requests/ExportBatchDetailsOrgRequest.d.ts +1 -1
  53. package/dist/cjs/api/resources/export/client/requests/ExportBatchDetailsRequest.d.ts +1 -1
  54. package/dist/cjs/api/resources/export/client/requests/ExportBatchesOrgRequest.d.ts +1 -1
  55. package/dist/cjs/api/resources/export/client/requests/ExportBatchesOutOrgRequest.d.ts +1 -1
  56. package/dist/cjs/api/resources/export/client/requests/ExportBatchesOutRequest.d.ts +1 -1
  57. package/dist/cjs/api/resources/export/client/requests/ExportBatchesRequest.d.ts +1 -1
  58. package/dist/cjs/api/resources/export/client/requests/ExportBillsOrgRequest.d.ts +1 -1
  59. package/dist/cjs/api/resources/export/client/requests/ExportBillsRequest.d.ts +1 -1
  60. package/dist/cjs/api/resources/export/client/requests/ExportChargebacksOrgRequest.d.ts +1 -1
  61. package/dist/cjs/api/resources/export/client/requests/ExportChargebacksRequest.d.ts +1 -1
  62. package/dist/cjs/api/resources/export/client/requests/ExportCustomersOrgRequest.d.ts +1 -1
  63. package/dist/cjs/api/resources/export/client/requests/ExportCustomersRequest.d.ts +1 -1
  64. package/dist/cjs/api/resources/export/client/requests/ExportInvoicesOrgRequest.d.ts +1 -1
  65. package/dist/cjs/api/resources/export/client/requests/ExportInvoicesRequest.d.ts +1 -1
  66. package/dist/cjs/api/resources/export/client/requests/ExportOrganizationsRequest.d.ts +1 -1
  67. package/dist/cjs/api/resources/export/client/requests/ExportPayoutOrgRequest.d.ts +1 -1
  68. package/dist/cjs/api/resources/export/client/requests/ExportPayoutRequest.d.ts +1 -1
  69. package/dist/cjs/api/resources/export/client/requests/ExportPaypointsRequest.d.ts +1 -1
  70. package/dist/cjs/api/resources/export/client/requests/ExportSettlementsOrgRequest.d.ts +1 -1
  71. package/dist/cjs/api/resources/export/client/requests/ExportSettlementsRequest.d.ts +1 -1
  72. package/dist/cjs/api/resources/export/client/requests/ExportSubscriptionsOrgRequest.d.ts +1 -1
  73. package/dist/cjs/api/resources/export/client/requests/ExportSubscriptionsRequest.d.ts +1 -1
  74. package/dist/cjs/api/resources/export/client/requests/ExportTransactionsOrgRequest.d.ts +1 -1
  75. package/dist/cjs/api/resources/export/client/requests/ExportTransactionsRequest.d.ts +1 -1
  76. package/dist/cjs/api/resources/export/client/requests/ExportTransferDetailsRequest.d.ts +1 -1
  77. package/dist/cjs/api/resources/export/client/requests/ExportTransfersRequest.d.ts +1 -1
  78. package/dist/cjs/api/resources/export/client/requests/ExportVendorsOrgRequest.d.ts +1 -1
  79. package/dist/cjs/api/resources/export/client/requests/ExportVendorsRequest.d.ts +1 -1
  80. package/dist/cjs/api/resources/export/index.d.ts +0 -1
  81. package/dist/cjs/api/resources/export/index.js +0 -1
  82. package/dist/cjs/api/resources/ghostCard/client/Client.d.ts +6 -6
  83. package/dist/cjs/api/resources/ghostCard/client/Client.js +8 -8
  84. package/dist/cjs/api/resources/ghostCard/client/requests/CreateGhostCardRequestBody.d.ts +1 -1
  85. package/dist/cjs/api/resources/ghostCard/index.d.ts +0 -1
  86. package/dist/cjs/api/resources/ghostCard/index.js +0 -1
  87. package/dist/cjs/api/resources/hostedPaymentPages/client/Client.d.ts +4 -6
  88. package/dist/cjs/api/resources/hostedPaymentPages/client/Client.js +19 -10
  89. package/dist/cjs/api/resources/hostedPaymentPages/client/requests/NewPageRequest.d.ts +22 -3
  90. package/dist/cjs/api/resources/import/client/Client.d.ts +9 -1
  91. package/dist/cjs/api/resources/import/client/Client.js +32 -9
  92. package/dist/cjs/api/resources/index.d.ts +1 -32
  93. package/dist/cjs/api/resources/index.js +2 -33
  94. package/dist/cjs/api/resources/invoice/client/Client.d.ts +72 -90
  95. package/dist/cjs/api/resources/invoice/client/Client.js +146 -129
  96. package/dist/cjs/api/resources/invoice/client/requests/AddInvoiceRequest.d.ts +36 -30
  97. package/dist/cjs/api/resources/invoice/client/requests/EditInvoiceRequest.d.ts +16 -13
  98. package/dist/cjs/api/resources/invoice/client/requests/ListInvoicesOrgRequest.d.ts +2 -1
  99. package/dist/cjs/api/resources/invoice/client/requests/ListInvoicesRequest.d.ts +2 -1
  100. package/dist/cjs/api/resources/invoice/index.d.ts +0 -1
  101. package/dist/cjs/api/resources/invoice/index.js +0 -1
  102. package/dist/cjs/api/resources/lineItem/client/Client.d.ts +41 -35
  103. package/dist/cjs/api/resources/lineItem/client/Client.js +107 -75
  104. package/dist/cjs/api/resources/lineItem/client/requests/AddItemRequest.d.ts +21 -11
  105. package/dist/cjs/api/resources/lineItem/client/requests/ListLineItemsRequest.d.ts +1 -1
  106. package/dist/cjs/api/resources/lineItem/index.d.ts +0 -1
  107. package/dist/cjs/api/resources/lineItem/index.js +0 -1
  108. package/dist/cjs/api/resources/management/client/Client.d.ts +5 -2
  109. package/dist/cjs/api/resources/management/client/Client.js +6 -3
  110. package/dist/cjs/api/resources/management/index.d.ts +0 -1
  111. package/dist/cjs/api/resources/management/index.js +0 -1
  112. package/dist/cjs/api/resources/moneyIn/client/Client.d.ts +251 -276
  113. package/dist/cjs/api/resources/moneyIn/client/Client.js +316 -317
  114. package/dist/cjs/api/resources/moneyIn/client/requests/RequestCredit.d.ts +7 -20
  115. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPayment.d.ts +146 -142
  116. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentAuthorize.d.ts +35 -20
  117. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentAuthorizeV2.d.ts +35 -20
  118. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentV2.d.ts +80 -70
  119. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentValidate.d.ts +3 -22
  120. package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentValidate.js +0 -12
  121. package/dist/cjs/api/resources/moneyIn/client/requests/RequestRefund.d.ts +1 -0
  122. package/dist/cjs/api/resources/moneyIn/client/requests/index.d.ts +1 -1
  123. package/dist/cjs/api/resources/moneyIn/client/requests/index.js +0 -3
  124. package/dist/cjs/api/resources/moneyIn/index.d.ts +0 -2
  125. package/dist/cjs/api/resources/moneyIn/index.js +0 -2
  126. package/dist/cjs/api/resources/moneyOut/client/Client.d.ts +127 -140
  127. package/dist/cjs/api/resources/moneyOut/client/Client.js +160 -154
  128. package/dist/cjs/api/resources/moneyOut/client/requests/CaptureAllOutRequest.d.ts +1 -1
  129. package/dist/cjs/api/resources/moneyOut/client/requests/CaptureOutRequest.d.ts +1 -0
  130. package/dist/cjs/api/resources/moneyOut/client/requests/ReissueOutRequest.d.ts +13 -18
  131. package/dist/cjs/api/resources/moneyOut/client/requests/RequestOutAuthorize.d.ts +161 -0
  132. package/dist/cjs/api/resources/moneyOut/client/requests/index.d.ts +1 -1
  133. package/dist/cjs/api/resources/notification/client/Client.d.ts +23 -20
  134. package/dist/cjs/api/resources/notification/client/Client.js +50 -47
  135. package/dist/cjs/api/resources/notification/index.d.ts +0 -1
  136. package/dist/cjs/api/resources/notification/index.js +0 -1
  137. package/dist/cjs/api/resources/notificationlogs/client/Client.d.ts +9 -8
  138. package/dist/cjs/api/resources/notificationlogs/client/Client.js +33 -17
  139. package/dist/cjs/api/resources/notificationlogs/client/requests/SearchNotificationLogsRequest.d.ts +18 -8
  140. package/dist/cjs/api/resources/notificationlogs/index.d.ts +0 -1
  141. package/dist/cjs/api/resources/notificationlogs/index.js +0 -1
  142. package/dist/cjs/api/resources/ocr/client/Client.d.ts +3 -3
  143. package/dist/cjs/api/resources/ocr/client/Client.js +7 -7
  144. package/dist/cjs/api/resources/ocr/index.d.ts +0 -1
  145. package/dist/cjs/api/resources/ocr/index.js +0 -1
  146. package/dist/cjs/api/resources/organization/client/Client.d.ts +26 -18
  147. package/dist/cjs/api/resources/organization/client/Client.js +71 -52
  148. package/dist/cjs/api/resources/organization/client/requests/AddOrganizationRequest.d.ts +1 -0
  149. package/dist/cjs/api/resources/organization/index.d.ts +0 -1
  150. package/dist/cjs/api/resources/organization/index.js +0 -1
  151. package/dist/cjs/api/resources/paymentLink/client/Client.d.ts +280 -287
  152. package/dist/cjs/api/resources/paymentLink/client/Client.js +329 -305
  153. package/dist/cjs/api/resources/paymentLink/client/requests/PatchOutPaymentLinkRequest.d.ts +52 -0
  154. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataBill.d.ts +135 -119
  155. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.ts +119 -99
  156. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataOut.d.ts +79 -61
  157. package/dist/cjs/api/resources/paymentLink/client/requests/index.d.ts +1 -0
  158. package/dist/cjs/api/resources/paymentLink/index.d.ts +0 -1
  159. package/dist/cjs/api/resources/paymentLink/index.js +0 -1
  160. package/dist/cjs/api/resources/paymentMethodDomain/client/Client.d.ts +32 -29
  161. package/dist/cjs/api/resources/paymentMethodDomain/client/Client.js +74 -67
  162. package/dist/cjs/api/resources/paymentMethodDomain/client/requests/AddPaymentMethodDomainRequest.d.ts +2 -16
  163. package/dist/cjs/api/resources/paymentMethodDomain/client/requests/UpdatePaymentMethodDomainRequest.d.ts +2 -10
  164. package/dist/cjs/api/resources/paymentMethodDomain/index.d.ts +0 -1
  165. package/dist/cjs/api/resources/paymentMethodDomain/index.js +0 -1
  166. package/dist/cjs/api/resources/payoutSubscription/client/Client.d.ts +51 -55
  167. package/dist/cjs/api/resources/payoutSubscription/client/Client.js +69 -62
  168. package/dist/cjs/api/resources/payoutSubscription/client/requests/RequestPayoutSchedule.d.ts +63 -52
  169. package/dist/cjs/api/resources/payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.d.ts +33 -0
  170. package/dist/cjs/api/resources/payoutSubscription/client/requests/index.d.ts +1 -0
  171. package/dist/cjs/api/resources/payoutSubscription/index.d.ts +0 -1
  172. package/dist/cjs/api/resources/payoutSubscription/index.js +0 -1
  173. package/dist/cjs/api/resources/paypoint/client/Client.d.ts +49 -41
  174. package/dist/cjs/api/resources/paypoint/client/Client.js +122 -99
  175. package/dist/cjs/api/resources/paypoint/client/requests/PaypointMoveRequest.d.ts +22 -0
  176. package/dist/cjs/api/resources/paypoint/client/requests/index.d.ts +1 -0
  177. package/dist/cjs/api/resources/paypoint/index.d.ts +0 -1
  178. package/dist/cjs/api/resources/paypoint/index.js +0 -1
  179. package/dist/cjs/api/resources/query/client/Client.d.ts +45 -43
  180. package/dist/cjs/api/resources/query/client/Client.js +268 -93
  181. package/dist/cjs/api/resources/query/client/requests/ListBatchDetailsOrgRequest.d.ts +2 -1
  182. package/dist/cjs/api/resources/query/client/requests/ListBatchDetailsRequest.d.ts +2 -1
  183. package/dist/cjs/api/resources/query/client/requests/ListBatchesOrgRequest.d.ts +2 -1
  184. package/dist/cjs/api/resources/query/client/requests/ListBatchesOutOrgRequest.d.ts +2 -1
  185. package/dist/cjs/api/resources/query/client/requests/ListBatchesOutRequest.d.ts +2 -1
  186. package/dist/cjs/api/resources/query/client/requests/ListBatchesRequest.d.ts +2 -1
  187. package/dist/cjs/api/resources/query/client/requests/ListChargebacksOrgRequest.d.ts +2 -1
  188. package/dist/cjs/api/resources/query/client/requests/ListChargebacksRequest.d.ts +2 -1
  189. package/dist/cjs/api/resources/query/client/requests/ListCustomersOrgRequest.d.ts +2 -1
  190. package/dist/cjs/api/resources/query/client/requests/ListCustomersRequest.d.ts +2 -1
  191. package/dist/cjs/api/resources/query/client/requests/ListDevicesOrgRequest.d.ts +2 -1
  192. package/dist/cjs/api/resources/query/client/requests/ListDevicesRequest.d.ts +2 -1
  193. package/dist/cjs/api/resources/query/client/requests/ListNotificationReportsOrgRequest.d.ts +1 -1
  194. package/dist/cjs/api/resources/query/client/requests/ListNotificationReportsRequest.d.ts +1 -1
  195. package/dist/cjs/api/resources/query/client/requests/ListNotificationsOrgRequest.d.ts +1 -1
  196. package/dist/cjs/api/resources/query/client/requests/ListNotificationsRequest.d.ts +1 -1
  197. package/dist/cjs/api/resources/query/client/requests/ListOrganizationsRequest.d.ts +2 -1
  198. package/dist/cjs/api/resources/query/client/requests/ListPayoutOrgRequest.d.ts +2 -1
  199. package/dist/cjs/api/resources/query/client/requests/ListPayoutRequest.d.ts +2 -1
  200. package/dist/cjs/api/resources/query/client/requests/ListPayoutSubscriptionsOrgRequest.d.ts +2 -1
  201. package/dist/cjs/api/resources/query/client/requests/ListPayoutSubscriptionsRequest.d.ts +2 -1
  202. package/dist/cjs/api/resources/query/client/requests/ListPaypointsRequest.d.ts +2 -1
  203. package/dist/cjs/api/resources/query/client/requests/ListSettlementsOrgRequest.d.ts +2 -1
  204. package/dist/cjs/api/resources/query/client/requests/ListSettlementsRequest.d.ts +2 -1
  205. package/dist/cjs/api/resources/query/client/requests/ListSubscriptionsOrgRequest.d.ts +3 -1
  206. package/dist/cjs/api/resources/query/client/requests/ListSubscriptionsRequest.d.ts +3 -1
  207. package/dist/cjs/api/resources/query/client/requests/ListTransactionsOrgRequest.d.ts +2 -1
  208. package/dist/cjs/api/resources/query/client/requests/ListTransactionsRequest.d.ts +2 -1
  209. package/dist/cjs/api/resources/query/client/requests/ListTransferDetailsOutRequest.d.ts +1 -1
  210. package/dist/cjs/api/resources/query/client/requests/ListTransfersOutOrgRequest.d.ts +1 -1
  211. package/dist/cjs/api/resources/query/client/requests/ListTransfersOutPaypointRequest.d.ts +1 -1
  212. package/dist/cjs/api/resources/query/client/requests/ListTransfersPaypointRequest.d.ts +3 -1
  213. package/dist/cjs/api/resources/query/client/requests/ListTransfersRequest.d.ts +2 -1
  214. package/dist/cjs/api/resources/query/client/requests/ListTransfersRequestOrg.d.ts +2 -3
  215. package/dist/cjs/api/resources/query/client/requests/ListUsersOrgRequest.d.ts +1 -1
  216. package/dist/cjs/api/resources/query/client/requests/ListUsersPaypointRequest.d.ts +1 -1
  217. package/dist/cjs/api/resources/query/client/requests/ListVcardsOrgRequest.d.ts +2 -1
  218. package/dist/cjs/api/resources/query/client/requests/ListVcardsRequest.d.ts +2 -1
  219. package/dist/cjs/api/resources/query/client/requests/ListVcardsTransactionsOrgRequest.d.ts +1 -1
  220. package/dist/cjs/api/resources/query/client/requests/ListVcardsTransactionsRequest.d.ts +1 -1
  221. package/dist/cjs/api/resources/query/client/requests/ListVendorsOrgRequest.d.ts +2 -1
  222. package/dist/cjs/api/resources/query/client/requests/ListVendorsRequest.d.ts +2 -1
  223. package/dist/cjs/api/resources/statistic/client/Client.d.ts +14 -7
  224. package/dist/cjs/api/resources/statistic/client/Client.js +50 -16
  225. package/dist/cjs/api/resources/statistic/client/requests/BasicStatsRequest.d.ts +3 -3
  226. package/dist/cjs/api/resources/statistic/client/requests/CustomerBasicStatsRequest.d.ts +1 -1
  227. package/dist/cjs/api/resources/statistic/client/requests/SubStatsRequest.d.ts +1 -1
  228. package/dist/cjs/api/resources/statistic/client/requests/VendorBasicStatsRequest.d.ts +1 -1
  229. package/dist/cjs/api/resources/statistic/index.d.ts +0 -1
  230. package/dist/cjs/api/resources/statistic/index.js +0 -1
  231. package/dist/cjs/api/resources/subscription/client/Client.d.ts +119 -97
  232. package/dist/cjs/api/resources/subscription/client/Client.js +177 -140
  233. package/dist/cjs/api/resources/subscription/client/requests/RequestSchedule.d.ts +105 -69
  234. package/dist/cjs/api/resources/subscription/client/requests/RequestUpdateSchedule.d.ts +3 -3
  235. package/dist/cjs/api/resources/subscription/index.d.ts +0 -1
  236. package/dist/cjs/api/resources/subscription/index.js +0 -1
  237. package/dist/cjs/api/resources/templates/client/Client.d.ts +13 -5
  238. package/dist/cjs/api/resources/templates/client/Client.js +37 -14
  239. package/dist/cjs/api/resources/templates/client/requests/ListTemplatesRequest.d.ts +1 -1
  240. package/dist/cjs/api/resources/tokenStorage/client/Client.d.ts +117 -136
  241. package/dist/cjs/api/resources/tokenStorage/client/Client.js +187 -183
  242. package/dist/cjs/api/resources/tokenStorage/client/requests/AddMethodRequest.d.ts +79 -69
  243. package/dist/cjs/api/resources/tokenStorage/client/requests/UpdateMethodRequest.d.ts +56 -46
  244. package/dist/cjs/api/resources/tokenStorage/index.d.ts +0 -1
  245. package/dist/cjs/api/resources/tokenStorage/index.js +0 -1
  246. package/dist/cjs/api/resources/user/client/Client.d.ts +68 -65
  247. package/dist/cjs/api/resources/user/client/Client.js +165 -158
  248. package/dist/cjs/api/resources/user/client/requests/GetUserRequest.d.ts +1 -1
  249. package/dist/cjs/api/resources/user/index.d.ts +0 -1
  250. package/dist/cjs/api/resources/user/index.js +0 -1
  251. package/dist/cjs/api/resources/vendor/client/Client.d.ts +21 -18
  252. package/dist/cjs/api/resources/vendor/client/Client.js +53 -50
  253. package/dist/cjs/api/resources/vendor/client/index.d.ts +1 -1
  254. package/dist/cjs/api/resources/vendor/client/index.js +15 -0
  255. package/dist/cjs/api/resources/vendor/client/requests/VendorEnrichRequest.d.ts +47 -0
  256. package/dist/cjs/api/resources/vendor/client/requests/index.d.ts +1 -0
  257. package/dist/cjs/api/resources/vendor/client/requests/index.js +2 -0
  258. package/dist/cjs/api/resources/vendor/index.d.ts +0 -1
  259. package/dist/cjs/api/resources/vendor/index.js +0 -1
  260. package/dist/cjs/api/resources/wallet/client/Client.d.ts +11 -3
  261. package/dist/cjs/api/resources/wallet/client/Client.js +31 -12
  262. package/dist/cjs/api/resources/wallet/client/requests/ConfigureOrganizationRequestApplePay.d.ts +1 -1
  263. package/dist/cjs/api/resources/wallet/client/requests/ConfigureOrganizationRequestGooglePay.d.ts +1 -1
  264. package/dist/cjs/api/types/AbsorbDifference.d.ts +2 -1
  265. package/dist/cjs/api/types/AchHolder.d.ts +2 -1
  266. package/dist/cjs/api/types/AchSecCode.d.ts +26 -6
  267. package/dist/cjs/api/types/AchService.d.ts +4 -1
  268. package/dist/cjs/api/types/AchSetup.d.ts +18 -3
  269. package/dist/cjs/api/types/AchValidation.d.ts +2 -1
  270. package/dist/cjs/api/types/AddApplicationRequest.d.ts +14 -0
  271. package/dist/cjs/api/types/AddDeviceResponse.d.ts +9 -0
  272. package/dist/cjs/api/types/AddMethodResponse.d.ts +4 -0
  273. package/dist/cjs/api/types/AddMethodResponseResponseData.d.ts +14 -0
  274. package/dist/cjs/api/types/AddNotificationRequest.d.ts +8 -0
  275. package/dist/cjs/api/types/AddOrganizationResponse.d.ts +7 -0
  276. package/dist/cjs/api/types/AddPaymentMethodDomainRequestApplePay.d.ts +7 -0
  277. package/dist/cjs/api/types/AddPaymentMethodDomainRequestGooglePay.d.ts +7 -0
  278. package/dist/cjs/api/types/AddPayoutSubscriptionResponse.d.ts +12 -0
  279. package/dist/cjs/api/types/AddResponseResponse.d.ts +8 -0
  280. package/dist/cjs/api/types/AddSubscriptionResponse.d.ts +11 -0
  281. package/dist/cjs/api/types/AddUserResponse.d.ts +7 -0
  282. package/dist/cjs/api/types/AdditionalData.d.ts +5 -1
  283. package/dist/cjs/api/types/AdditionalDataMap.d.ts +2 -1
  284. package/dist/cjs/api/types/AdditionalDataString.d.ts +2 -1
  285. package/dist/cjs/api/types/AllowOverride.d.ts +2 -1
  286. package/dist/cjs/api/types/ApplePayData.d.ts +5 -2
  287. package/dist/cjs/api/types/ApplePayMetadata.d.ts +19 -6
  288. package/dist/cjs/api/types/ApplePayPaypointRegistrationData.d.ts +1 -1
  289. package/dist/cjs/api/types/AppleWalletData.d.ts +1 -1
  290. package/dist/cjs/api/types/ApplicationDataManaged.d.ts +2 -14
  291. package/dist/cjs/api/types/ApplicationDataManagedContactsItem.d.ts +2 -0
  292. package/dist/cjs/api/types/ApplicationDataManagedOwnershipItem.d.ts +2 -0
  293. package/dist/cjs/api/types/ApplicationDataOdp.d.ts +2 -14
  294. package/dist/cjs/api/types/ApplicationDataOdpContactsItem.d.ts +2 -0
  295. package/dist/cjs/api/types/ApplicationDataOdpOwnershipItem.d.ts +2 -0
  296. package/dist/cjs/api/types/ApplicationDataPayIn.d.ts +3 -26
  297. package/dist/cjs/api/types/ApplicationDataPayInContactsItem.d.ts +2 -0
  298. package/dist/cjs/api/types/ApplicationDataPayInOwnershipItem.d.ts +2 -0
  299. package/dist/cjs/api/types/ApplicationDataPayInServices.d.ts +6 -0
  300. package/dist/cjs/api/types/ApplicationDataPayInServicesAch.d.ts +2 -0
  301. package/dist/cjs/api/types/ApplicationDataPayInServicesCard.d.ts +2 -0
  302. package/dist/cjs/api/types/ApplicationDetailsRecord.d.ts +1 -19
  303. package/dist/cjs/api/types/ApplicationDetailsRecordMessagesItem.d.ts +14 -0
  304. package/dist/cjs/api/types/Attachments.d.ts +2 -1
  305. package/dist/cjs/api/types/AttestationDate.d.ts +2 -1
  306. package/dist/cjs/api/types/AuthCapturePayoutResponse.d.ts +9 -0
  307. package/dist/cjs/api/types/AuthCapturePayoutResponseData.d.ts +11 -0
  308. package/dist/cjs/api/types/AuthResetUserResponse.d.ts +5 -0
  309. package/dist/cjs/api/types/AuthResponse.d.ts +10 -0
  310. package/dist/cjs/api/types/AuthResponseResponseData.d.ts +11 -0
  311. package/dist/cjs/api/types/AuthorizePaymentMethod.d.ts +27 -0
  312. package/dist/cjs/api/types/AutoCapture.d.ts +10 -3
  313. package/dist/cjs/api/types/Avgmonthly.d.ts +2 -1
  314. package/dist/cjs/api/types/AvsResponse.d.ts +2 -1
  315. package/dist/cjs/api/types/AvsResponseText.d.ts +2 -1
  316. package/dist/cjs/api/types/Baddress2.d.ts +2 -1
  317. package/dist/cjs/api/types/Bank.d.ts +2 -0
  318. package/dist/cjs/api/types/BankAccountFunction.d.ts +11 -8
  319. package/dist/cjs/api/types/BankAccountVerificationDetailsResponse.d.ts +31 -0
  320. package/dist/cjs/api/types/BatchDetailResponseRecord.d.ts +58 -0
  321. package/dist/cjs/api/types/BatchDetailResponseSummary.d.ts +13 -0
  322. package/dist/cjs/api/types/BatchNumber.d.ts +8 -3
  323. package/dist/cjs/api/types/BatchSummary.d.ts +0 -10
  324. package/dist/cjs/api/types/Bcity.d.ts +1 -1
  325. package/dist/cjs/api/types/Bcountry.d.ts +3 -1
  326. package/dist/cjs/api/types/BillApprovals.d.ts +1 -1
  327. package/dist/cjs/api/types/BillData.d.ts +1 -74
  328. package/dist/cjs/api/types/BillData.js +0 -74
  329. package/dist/cjs/api/types/BillDataPaymentTerms.d.ts +29 -0
  330. package/dist/cjs/api/types/BillDataPaymentTerms.js +32 -0
  331. package/dist/cjs/api/types/BillDetailResponse.d.ts +0 -2
  332. package/dist/cjs/api/types/BillId.d.ts +2 -1
  333. package/dist/cjs/api/types/BillItem.d.ts +11 -4
  334. package/dist/cjs/api/types/BillOutData.d.ts +71 -0
  335. package/dist/cjs/api/types/BillOutDataScheduledOptions.d.ts +7 -0
  336. package/dist/cjs/api/types/BillQueryRecord2.d.ts +1 -1
  337. package/dist/cjs/api/types/BillQueryResponse.d.ts +0 -122
  338. package/dist/cjs/api/types/BillResponse.d.ts +16 -0
  339. package/dist/cjs/api/types/BillResponseData.d.ts +58 -0
  340. package/dist/cjs/api/types/BillingDataResponse.d.ts +0 -19
  341. package/dist/cjs/api/types/BillingStateNullable.d.ts +1 -1
  342. package/dist/cjs/api/types/Billstatus.d.ts +1 -2
  343. package/dist/cjs/api/types/BinData.d.ts +0 -30
  344. package/dist/cjs/api/types/Binperson.d.ts +2 -1
  345. package/dist/cjs/api/types/Binphone.d.ts +2 -1
  346. package/dist/cjs/api/types/Binweb.d.ts +2 -1
  347. package/dist/cjs/api/types/BoardingAverageBillSize.d.ts +3 -1
  348. package/dist/cjs/api/types/BoardingAvgMonthlyBill.d.ts +4 -1
  349. package/dist/cjs/api/types/BoardingLinkApiResponse.d.ts +0 -3
  350. package/dist/cjs/api/types/BoardingLinkId.d.ts +4 -1
  351. package/dist/cjs/api/types/BoardingStatus.d.ts +3 -1
  352. package/dist/cjs/api/types/Busstartdate.d.ts +2 -3
  353. package/dist/cjs/api/types/ButtonElement.d.ts +2 -10
  354. package/dist/cjs/api/types/ButtonElement.js +0 -10
  355. package/dist/cjs/api/types/ButtonElementSize.d.ts +7 -0
  356. package/dist/cjs/api/types/ButtonElementSize.js +10 -0
  357. package/dist/cjs/api/types/CaptureAllOutResponse.d.ts +9 -0
  358. package/dist/cjs/api/types/CaptureAllOutResponseResponseDataItem.d.ts +13 -0
  359. package/dist/cjs/api/types/CaptureRequest.d.ts +4 -0
  360. package/dist/cjs/api/types/CaptureResponse.d.ts +12 -0
  361. package/dist/cjs/api/types/CaptureResponseData.d.ts +14 -0
  362. package/dist/cjs/api/types/CardService.d.ts +1 -1
  363. package/dist/cjs/api/types/Cardcvv.d.ts +3 -1
  364. package/dist/cjs/api/types/Cardnumber.d.ts +2 -1
  365. package/dist/cjs/api/types/Cardzip.d.ts +2 -1
  366. package/dist/cjs/api/types/Cascade.d.ts +2 -1
  367. package/dist/cjs/api/types/Cash.d.ts +8 -1
  368. package/dist/cjs/api/types/Cash.js +8 -0
  369. package/dist/cjs/api/types/Category.d.ts +8 -6
  370. package/dist/cjs/api/types/ChangePswUserResponse.d.ts +5 -0
  371. package/dist/cjs/api/types/ChargeBackResponse.d.ts +15 -0
  372. package/dist/cjs/api/types/ChargebackId.d.ts +1 -1
  373. package/dist/cjs/api/types/ChargebackQueryRecords.d.ts +66 -0
  374. package/dist/cjs/api/types/Check.d.ts +8 -1
  375. package/dist/cjs/api/types/Check.js +8 -0
  376. package/dist/cjs/api/types/CheckCaptureResponse.d.ts +58 -0
  377. package/dist/cjs/api/types/ConfigureApplePaypointApiResponse.d.ts +1 -1
  378. package/dist/cjs/api/types/ConfigureGooglePaypointApiResponse.d.ts +1 -1
  379. package/dist/cjs/api/types/ContactsResponse.d.ts +0 -9
  380. package/dist/cjs/api/types/CountryNullable.d.ts +2 -1
  381. package/dist/cjs/api/types/CreateApplicationFromPaypointResponse.d.ts +12 -0
  382. package/dist/cjs/api/types/CreateApplicationFromPaypointResponseData.d.ts +6 -0
  383. package/dist/cjs/api/types/CreateGhostCardResponse.d.ts +9 -0
  384. package/dist/cjs/api/types/CreateGhostCardResponseData.d.ts +7 -0
  385. package/dist/cjs/api/types/CustomerNumberNullable.d.ts +2 -1
  386. package/dist/cjs/api/types/CustomerQueryRecords.d.ts +2 -206
  387. package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsent.d.ts +7 -0
  388. package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsentECommunication.d.ts +8 -0
  389. package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsentSms.d.ts +8 -0
  390. package/dist/cjs/api/types/CustomerStatus.d.ts +2 -2
  391. package/dist/cjs/api/types/Customeridtrans.d.ts +3 -1
  392. package/dist/cjs/api/types/CvvResponse.d.ts +2 -1
  393. package/dist/cjs/api/types/CvvResponseText.d.ts +2 -1
  394. package/dist/cjs/api/types/Dbaname.d.ts +2 -1
  395. package/dist/cjs/api/types/DeleteItemResponse.d.ts +5 -0
  396. package/dist/cjs/api/types/DeleteOrganizationResponse.d.ts +7 -0
  397. package/dist/cjs/api/types/DeletePaymentMethodDomainResponse.d.ts +8 -0
  398. package/dist/cjs/api/types/DeletePayoutSubscriptionResponse.d.ts +14 -0
  399. package/dist/cjs/api/types/DeleteUserResponse.d.ts +4 -0
  400. package/dist/cjs/api/types/Descriptor.d.ts +3 -1
  401. package/dist/cjs/api/types/DocumentSection.d.ts +1 -16
  402. package/dist/cjs/api/types/DocumentSectionTermsAndConditions.d.ts +5 -0
  403. package/dist/cjs/api/types/DocumentSectionTermsAndConditionsTcLinksItem.d.ts +4 -0
  404. package/dist/cjs/api/types/DomainName.d.ts +2 -1
  405. package/dist/cjs/api/types/EditBillResponse.d.ts +16 -0
  406. package/dist/cjs/api/types/EditMfaUserResponse.d.ts +5 -0
  407. package/dist/cjs/api/types/EditOrganizationResponse.d.ts +9 -0
  408. package/dist/cjs/api/types/Ein.d.ts +1 -1
  409. package/dist/cjs/api/types/EntityType.d.ts +4 -3
  410. package/dist/cjs/api/types/Entry.d.ts +2 -1
  411. package/dist/cjs/api/types/EntrypageId.d.ts +2 -1
  412. package/dist/cjs/api/types/ExpectedProcessingDateTime.d.ts +1 -1
  413. package/dist/cjs/api/types/ExportFormat.d.ts +6 -3
  414. package/dist/cjs/api/types/ExportFormat.js +6 -3
  415. package/dist/cjs/api/types/ExternalPaypointId.d.ts +1 -1
  416. package/dist/cjs/api/types/ExternalProcessorInformation.d.ts +1 -1
  417. package/dist/cjs/api/types/FileContent.d.ts +7 -18
  418. package/dist/cjs/api/types/FileContent.js +0 -15
  419. package/dist/cjs/api/types/FileContentFtype.d.ts +12 -0
  420. package/dist/cjs/api/types/FileContentFtype.js +15 -0
  421. package/dist/cjs/api/types/FileContentImageOnly.d.ts +10 -0
  422. package/dist/cjs/api/types/Finishtype.d.ts +2 -2
  423. package/dist/cjs/api/types/ForceCustomerCreation.d.ts +3 -1
  424. package/dist/cjs/api/types/Frequency.d.ts +4 -1
  425. package/dist/cjs/api/types/Frequency.js +4 -1
  426. package/dist/cjs/api/types/Frequencynotification.d.ts +1 -16
  427. package/dist/cjs/api/types/Frequencynotification.js +1 -16
  428. package/dist/cjs/api/types/Gatewayfield.d.ts +1 -1
  429. package/dist/cjs/api/types/GeneralEvents.d.ts +1 -1
  430. package/dist/cjs/api/types/GetBasicEntryByIdResponse.d.ts +8 -0
  431. package/dist/cjs/api/types/GetBasicEntryResponse.d.ts +8 -0
  432. package/dist/cjs/api/types/GetBillResponse.d.ts +12 -0
  433. package/dist/cjs/api/types/GetEntryConfigResponse.d.ts +8 -0
  434. package/dist/cjs/api/types/GetInvoiceRecord.d.ts +54 -0
  435. package/dist/cjs/api/types/GetMethodResponse.d.ts +6 -0
  436. package/dist/cjs/api/types/GetMethodResponseResponseData.d.ts +32 -0
  437. package/dist/cjs/api/types/GetMethodResponseResponseDataCustomersItem.d.ts +41 -0
  438. package/dist/cjs/api/types/GetMethodResponseResponseDataVendorsItem.d.ts +93 -0
  439. package/dist/cjs/api/types/GetPaidResponseData.d.ts +16 -0
  440. package/dist/cjs/api/types/GetPayLinkFromIdResponse.d.ts +4 -0
  441. package/dist/cjs/api/types/GetPayLinkFromIdResponseResponseData.d.ts +2 -0
  442. package/dist/cjs/api/types/GetPayoutSubscriptionResponse.d.ts +10 -0
  443. package/dist/cjs/api/types/GooglePayData.d.ts +5 -2
  444. package/dist/cjs/api/types/GooglePayMetadata.d.ts +10 -3
  445. package/dist/cjs/api/types/GooglePayPaypointRegistrationData.d.ts +1 -1
  446. package/dist/cjs/api/types/GreaterValueAllowed.d.ts +2 -1
  447. package/dist/cjs/api/types/HasVcardTransactions.d.ts +3 -0
  448. package/dist/cjs/api/types/Highticketamt.d.ts +1 -1
  449. package/dist/cjs/api/types/Holdername.d.ts +1 -1
  450. package/dist/cjs/api/types/IdempotencyKey.d.ts +5 -1
  451. package/dist/cjs/api/types/Identifierfields.d.ts +1 -1
  452. package/dist/cjs/api/types/Idpaypoint.d.ts +1 -1
  453. package/dist/cjs/api/types/Initiator.d.ts +1 -7
  454. package/dist/cjs/api/types/InternalReferenceId.d.ts +1 -1
  455. package/dist/cjs/api/types/InvoiceAmount.d.ts +1 -1
  456. package/dist/cjs/api/types/InvoiceDataRequest.d.ts +9 -0
  457. package/dist/cjs/api/types/InvoiceNumber.d.ts +1 -1
  458. package/dist/cjs/api/types/InvoiceNumberResponse.d.ts +10 -0
  459. package/dist/cjs/api/types/InvoiceResponseWithoutData.d.ts +13 -0
  460. package/dist/cjs/api/types/InvoiceType.d.ts +2 -1
  461. package/dist/cjs/api/types/Invoicestatus.d.ts +1 -9
  462. package/dist/cjs/api/types/IpAddress.d.ts +1 -1
  463. package/dist/cjs/api/types/IsSameDayAch.d.ts +1 -2
  464. package/dist/cjs/api/types/IsSuccess.d.ts +2 -1
  465. package/dist/cjs/api/types/JobStatus.d.ts +7 -7
  466. package/dist/cjs/api/types/JobStatus.js +7 -0
  467. package/dist/cjs/api/types/Language.d.ts +1 -3
  468. package/dist/cjs/api/types/LineItem.d.ts +1 -1
  469. package/dist/cjs/api/types/LineItemQueryRecord.d.ts +1 -1
  470. package/dist/cjs/api/types/LinkData.d.ts +13 -12
  471. package/dist/cjs/api/types/ListOrganizationsResponse.d.ts +5 -0
  472. package/dist/cjs/api/types/ListPaymentMethodDomainsResponse.d.ts +5 -0
  473. package/dist/cjs/api/types/LogoutUserResponse.d.ts +5 -0
  474. package/dist/cjs/api/types/Maskedaccount.d.ts +2 -1
  475. package/dist/cjs/api/types/MaxTicket.d.ts +2 -1
  476. package/dist/cjs/api/types/Mcc.d.ts +3 -1
  477. package/dist/cjs/api/types/MethodElement.d.ts +1 -88
  478. package/dist/cjs/api/types/MethodElement.js +0 -74
  479. package/dist/cjs/api/types/MethodElementOut.d.ts +21 -0
  480. package/dist/cjs/api/types/MethodElementSettings.d.ts +7 -0
  481. package/dist/cjs/api/types/MethodElementSettingsApplePay.d.ts +9 -0
  482. package/dist/cjs/api/types/MethodElementSettingsApplePayButtonStyle.d.ts +11 -0
  483. package/dist/cjs/api/types/MethodElementSettingsApplePayButtonStyle.js +14 -0
  484. package/dist/cjs/api/types/MethodElementSettingsApplePayButtonType.d.ts +21 -0
  485. package/dist/cjs/api/types/MethodElementSettingsApplePayButtonType.js +24 -0
  486. package/dist/cjs/api/types/MethodElementSettingsApplePayLanguage.d.ts +47 -0
  487. package/dist/cjs/api/types/MethodElementSettingsApplePayLanguage.js +50 -0
  488. package/dist/cjs/api/types/MethodQueryRecords.d.ts +27 -11
  489. package/dist/cjs/api/types/MethodReferenceId.d.ts +3 -1
  490. package/dist/cjs/api/types/MfaValidationCode.d.ts +2 -1
  491. package/dist/cjs/api/types/MigratePaypointResponse.d.ts +6 -0
  492. package/dist/cjs/api/types/MinTicket.d.ts +2 -1
  493. package/dist/cjs/api/types/ModifyApprovalBillResponse.d.ts +11 -0
  494. package/dist/cjs/api/types/NetAmountstring.d.ts +1 -1
  495. package/dist/cjs/api/types/NotificationContent.d.ts +3 -105
  496. package/dist/cjs/api/types/NotificationContent.js +0 -101
  497. package/dist/cjs/api/types/NotificationContentEventType.d.ts +83 -0
  498. package/dist/cjs/api/types/NotificationContentEventType.js +86 -0
  499. package/dist/cjs/api/types/NotificationContentFileFormat.d.ts +10 -0
  500. package/dist/cjs/api/types/NotificationContentFileFormat.js +13 -0
  501. package/dist/cjs/api/types/NotificationContentReportName.d.ts +12 -0
  502. package/dist/cjs/api/types/NotificationContentReportName.js +15 -0
  503. package/dist/cjs/api/types/NotificationId.d.ts +2 -1
  504. package/dist/cjs/api/types/NotificationLogDetail.d.ts +6 -0
  505. package/dist/cjs/api/types/NotificationReportRequest.d.ts +4 -57
  506. package/dist/cjs/api/types/NotificationReportRequest.js +0 -35
  507. package/dist/cjs/api/types/NotificationReportRequestContent.d.ts +23 -0
  508. package/dist/cjs/api/types/NotificationReportRequestContent.js +11 -0
  509. package/dist/cjs/api/types/NotificationReportRequestContentFileFormat.d.ts +7 -0
  510. package/dist/cjs/api/types/NotificationReportRequestContentFileFormat.js +10 -0
  511. package/dist/cjs/api/types/NotificationReportRequestContentReportName.d.ts +8 -0
  512. package/dist/cjs/api/types/NotificationReportRequestContentReportName.js +11 -0
  513. package/dist/cjs/api/types/NotificationReportRequestFrequency.d.ts +11 -0
  514. package/dist/cjs/api/types/NotificationReportRequestFrequency.js +14 -0
  515. package/dist/cjs/api/types/NotificationReportRequestMethod.d.ts +13 -0
  516. package/dist/cjs/api/types/NotificationReportRequestMethod.js +16 -0
  517. package/dist/cjs/api/types/NotificationRequest.d.ts +7 -0
  518. package/dist/cjs/api/types/NotificationStandardRequest.d.ts +5 -162
  519. package/dist/cjs/api/types/NotificationStandardRequest.js +0 -146
  520. package/dist/cjs/api/types/NotificationStandardRequestContent.d.ts +11 -0
  521. package/dist/cjs/api/types/NotificationStandardRequestContentEventType.d.ts +131 -0
  522. package/dist/cjs/api/types/NotificationStandardRequestContentEventType.js +134 -0
  523. package/dist/cjs/api/types/NotificationStandardRequestFrequency.d.ts +5 -0
  524. package/dist/cjs/api/types/NotificationStandardRequestFrequency.js +8 -0
  525. package/dist/cjs/api/types/NotificationStandardRequestMethod.d.ts +15 -0
  526. package/dist/cjs/api/types/NotificationStandardRequestMethod.js +18 -0
  527. package/dist/cjs/api/types/OcrResponseData.d.ts +4 -0
  528. package/dist/cjs/api/types/OcrResultData.d.ts +20 -0
  529. package/dist/cjs/api/types/OcrVendor.d.ts +34 -0
  530. package/dist/cjs/api/types/OdpSetup.d.ts +2 -9
  531. package/dist/cjs/api/types/OdpSetup.js +0 -9
  532. package/dist/cjs/api/types/OdpSetupProcessingRegion.d.ts +6 -0
  533. package/dist/cjs/api/types/OdpSetupProcessingRegion.js +9 -0
  534. package/dist/cjs/api/types/OnCreate.d.ts +5 -1
  535. package/dist/cjs/api/types/OptinStatus.d.ts +4 -7
  536. package/dist/cjs/api/types/OrgData.d.ts +0 -2
  537. package/dist/cjs/api/types/OrganizationQueryRecord.d.ts +1 -16
  538. package/dist/cjs/api/types/OrganizationQueryRecordServicesItem.d.ts +10 -0
  539. package/dist/cjs/api/types/Orgentryname.d.ts +2 -1
  540. package/dist/cjs/api/types/Orgidstring.d.ts +3 -1
  541. package/dist/cjs/api/types/OwnerEntityId.d.ts +3 -1
  542. package/dist/cjs/api/types/OwnerEntityType.d.ts +4 -3
  543. package/dist/cjs/api/types/Ownerid.d.ts +4 -2
  544. package/dist/cjs/api/types/Ownertype.d.ts +2 -2
  545. package/dist/cjs/api/types/PayMethodAch.d.ts +20 -0
  546. package/dist/cjs/api/types/PayMethodAch.js +10 -0
  547. package/dist/cjs/api/types/PayMethodCloud.d.ts +8 -1
  548. package/dist/cjs/api/types/PayMethodCloud.js +8 -0
  549. package/dist/cjs/api/types/PayMethodCredit.d.ts +8 -1
  550. package/dist/cjs/api/types/PayMethodCredit.js +8 -0
  551. package/dist/cjs/api/types/PayMethodStoredMethod.d.ts +2 -10
  552. package/dist/cjs/api/types/PayMethodStoredMethod.js +0 -9
  553. package/dist/cjs/api/types/PayMethodStoredMethodMethod.d.ts +11 -0
  554. package/dist/cjs/api/types/PayMethodStoredMethodMethod.js +14 -0
  555. package/dist/cjs/api/types/PayabliApiResponse0.d.ts +1 -13
  556. package/dist/cjs/api/types/PayabliApiResponse0000.d.ts +1 -13
  557. package/dist/cjs/api/types/PayabliApiResponse0ResponseData.d.ts +11 -0
  558. package/dist/cjs/api/types/PayabliApiResponse6.d.ts +1 -1
  559. package/dist/cjs/api/types/PayabliApiResponseGeneric2Part.d.ts +4 -0
  560. package/dist/cjs/api/types/PayabliApiResponseGetPaid.d.ts +10 -0
  561. package/dist/cjs/api/types/PayabliApiResponseImport.d.ts +1 -14
  562. package/dist/cjs/api/types/PayabliApiResponseImportResponseData.d.ts +11 -0
  563. package/dist/cjs/api/types/PayabliApiResponseNotifications.d.ts +1 -9
  564. package/dist/cjs/api/types/PayabliApiResponseNotificationsResponseData.d.ts +5 -0
  565. package/dist/cjs/api/types/PayabliApiResponseOcr.d.ts +8 -0
  566. package/dist/cjs/api/types/PayabliApiResponsePaymentLinks.d.ts +7 -0
  567. package/dist/cjs/api/types/PayabliApiResponsePaymethodDelete.d.ts +1 -9
  568. package/dist/cjs/api/types/PayabliApiResponsePaymethodDeleteResponseData.d.ts +7 -0
  569. package/dist/cjs/api/types/PayabliCredentialsPascal.d.ts +1 -1
  570. package/dist/cjs/api/types/PayabliErrorBody.d.ts +28 -0
  571. package/dist/cjs/api/types/PayabliPages.d.ts +6 -6
  572. package/dist/cjs/api/types/PaymentIdString.d.ts +2 -1
  573. package/dist/cjs/api/types/PaymentMethod.d.ts +1 -10
  574. package/dist/cjs/api/types/PaymentPageRequestBodyOut.d.ts +26 -0
  575. package/dist/cjs/api/types/PayorId.d.ts +2 -1
  576. package/dist/cjs/api/types/PayoutAverageMonthlyVolume.d.ts +4 -1
  577. package/dist/cjs/api/types/PayoutAverageTicketLimit.d.ts +3 -1
  578. package/dist/cjs/api/types/PayoutCreditLimit.d.ts +3 -1
  579. package/dist/cjs/api/types/PayoutHighTicketAmount.d.ts +3 -1
  580. package/dist/cjs/api/types/PayoutScheduleDetail.d.ts +9 -0
  581. package/dist/cjs/api/types/PayoutSubscriptionQueryRecord.d.ts +57 -0
  582. package/dist/cjs/api/types/PayoutSubscriptionQueryRecordPascal.d.ts +57 -0
  583. package/dist/cjs/api/types/PaypointData.d.ts +21 -21
  584. package/dist/cjs/api/types/Paypointstatus.d.ts +2 -3
  585. package/dist/cjs/api/types/PciAttestation.d.ts +2 -1
  586. package/dist/cjs/api/types/PendingFeeAmount.d.ts +9 -3
  587. package/dist/cjs/api/types/PolicyId.d.ts +3 -1
  588. package/dist/cjs/api/types/PushPayLinkRequest.d.ts +2 -10
  589. package/dist/cjs/api/types/PushPayLinkRequestEmail.d.ts +10 -0
  590. package/dist/cjs/api/types/PushPayLinkRequestSms.d.ts +1 -0
  591. package/dist/cjs/api/types/QueryBatchesDetailResponse.d.ts +8 -0
  592. package/dist/cjs/api/types/QueryBatchesOutResponse.d.ts +1 -59
  593. package/dist/cjs/api/types/QueryBatchesOutResponseRecordsItem.d.ts +54 -0
  594. package/dist/cjs/api/types/QueryBatchesResponse.d.ts +8 -0
  595. package/dist/cjs/api/types/QueryBatchesResponseRecordsItem.d.ts +52 -0
  596. package/dist/cjs/api/types/QueryBoardingLinksResponse.d.ts +1 -22
  597. package/dist/cjs/api/types/QueryBoardingLinksResponseRecordsItem.d.ts +14 -0
  598. package/dist/cjs/api/types/QueryChargebacksResponse.d.ts +1 -62
  599. package/dist/cjs/api/types/QueryChargebacksResponseRecordsItem.d.ts +57 -0
  600. package/dist/cjs/api/types/QueryDeviceResponse.d.ts +8 -0
  601. package/dist/cjs/api/types/QueryEntrypointResponse.d.ts +1 -64
  602. package/dist/cjs/api/types/QueryEntrypointResponseRecordsItem.d.ts +59 -0
  603. package/dist/cjs/api/types/QueryInvoiceResponse.d.ts +5 -0
  604. package/dist/cjs/api/types/QueryInvoiceResponseRecordsItem.d.ts +72 -0
  605. package/dist/cjs/api/types/QueryPayoutSubscriptionResponse.d.ts +8 -0
  606. package/dist/cjs/api/types/QueryPayoutTransaction.d.ts +2 -182
  607. package/dist/cjs/api/types/QueryPayoutTransactionRecordsItem.d.ts +58 -0
  608. package/dist/cjs/api/types/QueryPayoutTransactionRecordsItemPaymentData.d.ts +23 -0
  609. package/dist/cjs/api/types/QueryPayoutTransactionSummary.d.ts +25 -0
  610. package/dist/cjs/api/types/QueryResponseData.d.ts +0 -34
  611. package/dist/cjs/api/types/QueryResponseItems.d.ts +1 -16
  612. package/dist/cjs/api/types/QueryResponseItemsRecordsItem.d.ts +11 -0
  613. package/dist/cjs/api/types/QueryResponseNotificationReports.d.ts +1 -15
  614. package/dist/cjs/api/types/QueryResponseNotificationReportsRecordsItem.d.ts +10 -0
  615. package/dist/cjs/api/types/QueryResponseNotifications.d.ts +1 -25
  616. package/dist/cjs/api/types/QueryResponseNotificationsRecordsItem.d.ts +20 -0
  617. package/dist/cjs/api/types/QueryResponseSettlements.d.ts +2 -220
  618. package/dist/cjs/api/types/QueryResponseSettlementsRecordsItem.d.ts +57 -0
  619. package/dist/cjs/api/types/QueryResponseSettlementsSummary.d.ts +22 -0
  620. package/dist/cjs/api/types/QueryResponseTransactions.d.ts +0 -74
  621. package/dist/cjs/api/types/QueryTransactionEvents.d.ts +2 -7
  622. package/dist/cjs/api/types/QueryTransactionEventsEventData.d.ts +5 -0
  623. package/dist/cjs/api/types/QueryTransferDetailResponse.d.ts +7 -0
  624. package/dist/cjs/api/types/QueryTransferSummary.d.ts +48 -0
  625. package/dist/cjs/api/types/ReceiptResponse.d.ts +9 -0
  626. package/dist/cjs/api/types/RecipientEmailNotification.d.ts +4 -1
  627. package/dist/cjs/api/types/RefundResponse.d.ts +7 -0
  628. package/dist/cjs/api/types/RefundWithInstructionsResponse.d.ts +7 -0
  629. package/dist/cjs/api/types/ReissuePaymentMethod.d.ts +20 -0
  630. package/dist/cjs/api/types/ReissuePayoutResponse.d.ts +7 -0
  631. package/dist/cjs/api/types/ReissuePayoutResponseData.d.ts +8 -0
  632. package/dist/cjs/api/types/RemitEmail.d.ts +2 -1
  633. package/dist/cjs/api/types/Remitaddress1.d.ts +2 -1
  634. package/dist/cjs/api/types/Remitaddress2.d.ts +2 -1
  635. package/dist/cjs/api/types/Remitcity.d.ts +2 -1
  636. package/dist/cjs/api/types/Remitcountry.d.ts +2 -1
  637. package/dist/cjs/api/types/Remitstate.d.ts +3 -1
  638. package/dist/cjs/api/types/Remitzip.d.ts +3 -1
  639. package/dist/cjs/api/types/RemoveDeviceResponse.d.ts +9 -0
  640. package/dist/cjs/api/types/RemoveSubscriptionResponse.d.ts +14 -0
  641. package/dist/cjs/api/types/RepCode.d.ts +2 -1
  642. package/dist/cjs/api/types/RepName.d.ts +2 -1
  643. package/dist/cjs/api/types/RepOffice.d.ts +3 -1
  644. package/dist/cjs/api/types/ReplyToEmail.d.ts +3 -1
  645. package/dist/cjs/api/types/RequestCreditPaymentMethod.d.ts +21 -0
  646. package/dist/cjs/api/types/RequestCreditPaymentMethod.js +11 -0
  647. package/dist/cjs/api/types/RequestOutAuthorizeInvoiceData.d.ts +18 -0
  648. package/dist/cjs/api/types/RequestOutAuthorizePaymentDetails.d.ts +15 -0
  649. package/dist/cjs/api/types/RequestOutAuthorizeVendorBillingData.d.ts +11 -0
  650. package/dist/cjs/api/types/RequestOutAuthorizeVendorData.d.ts +38 -0
  651. package/dist/cjs/api/types/RequestPaymentValidatePaymentMethod.d.ts +11 -0
  652. package/dist/cjs/api/types/RequestPaymentValidatePaymentMethodMethod.d.ts +6 -0
  653. package/dist/cjs/api/types/RequestPaymentValidatePaymentMethodMethod.js +9 -0
  654. package/dist/cjs/api/types/RequestSchedulePaymentMethod.d.ts +5 -0
  655. package/dist/cjs/api/types/RequestSchedulePaymentMethodInitiator.d.ts +10 -0
  656. package/dist/cjs/api/types/RequestTokenStorage.d.ts +19 -0
  657. package/dist/cjs/api/types/RequestTokenStoragePaymentMethod.d.ts +5 -0
  658. package/dist/cjs/api/types/ResponseDataRefunds.d.ts +16 -0
  659. package/dist/cjs/api/types/Responsecode.d.ts +2 -1
  660. package/dist/cjs/api/types/ResultCode.d.ts +3 -3
  661. package/dist/cjs/api/types/ResultCodeText.d.ts +3 -1
  662. package/dist/cjs/api/types/ResultCodev2.d.ts +3 -1
  663. package/dist/cjs/api/types/Resulttext.d.ts +3 -1
  664. package/dist/cjs/api/types/Resumable.d.ts +3 -1
  665. package/dist/cjs/api/types/RetrievalId.d.ts +1 -1
  666. package/dist/cjs/api/types/ReverseResponse.d.ts +9 -0
  667. package/dist/cjs/api/types/RiskAction.d.ts +1 -1
  668. package/dist/cjs/api/types/RiskActionCode.d.ts +1 -1
  669. package/dist/cjs/api/types/RiskFlagged.d.ts +1 -1
  670. package/dist/cjs/api/types/RiskFlaggedOn.d.ts +1 -1
  671. package/dist/cjs/api/types/RiskReason.d.ts +1 -1
  672. package/dist/cjs/api/types/RiskStatus.d.ts +1 -1
  673. package/dist/cjs/api/types/SaveIfSuccess.d.ts +3 -1
  674. package/dist/cjs/api/types/ScheduleDetail.d.ts +15 -3
  675. package/dist/cjs/api/types/SendInvoiceResponse.d.ts +5 -0
  676. package/dist/cjs/api/types/Sequence.d.ts +11 -4
  677. package/dist/cjs/api/types/SetApprovedBillResponse.d.ts +11 -0
  678. package/dist/cjs/api/types/SettlementStatus.d.ts +3 -1
  679. package/dist/cjs/api/types/SettlementStatusPayout.d.ts +3 -1
  680. package/dist/cjs/api/types/Shippingzip.d.ts +3 -1
  681. package/dist/cjs/api/types/SignDate.d.ts +1 -1
  682. package/dist/cjs/api/types/SignerAcceptance.d.ts +2 -1
  683. package/dist/cjs/api/types/SignerAddress1.d.ts +2 -1
  684. package/dist/cjs/api/types/SignerCountry.d.ts +2 -1
  685. package/dist/cjs/api/types/SignerData.d.ts +0 -24
  686. package/dist/cjs/api/types/SignerZip.d.ts +1 -1
  687. package/dist/cjs/api/types/Signeraddress.d.ts +2 -1
  688. package/dist/cjs/api/types/SplitCount.d.ts +2 -1
  689. package/dist/cjs/api/types/StatBasicExtendedQueryRecord.d.ts +76 -0
  690. package/dist/cjs/api/types/Statusnotification.d.ts +3 -2
  691. package/dist/cjs/api/types/StoredMethodUsageType.d.ts +13 -5
  692. package/dist/cjs/api/types/Storedmethodid.d.ts +3 -1
  693. package/dist/cjs/api/types/Subdomain.d.ts +2 -1
  694. package/dist/cjs/api/types/SubscriptionQueryRecords.d.ts +2 -1
  695. package/dist/cjs/api/types/SubscriptionType.d.ts +11 -0
  696. package/dist/cjs/api/types/SubscriptionType.js +14 -0
  697. package/dist/cjs/api/types/Target.d.ts +6 -3
  698. package/dist/cjs/api/types/Taxfillname.d.ts +2 -1
  699. package/dist/cjs/api/types/Terms.d.ts +68 -46
  700. package/dist/cjs/api/types/Terms.js +70 -0
  701. package/dist/cjs/api/types/Ticketamt.d.ts +3 -1
  702. package/dist/cjs/api/types/TokenizeAch.d.ts +13 -0
  703. package/dist/cjs/api/types/TokenizeCard.d.ts +10 -0
  704. package/dist/cjs/api/types/TransRequestBody.d.ts +19 -0
  705. package/dist/cjs/api/types/TransStatus.d.ts +3 -1
  706. package/dist/cjs/api/types/TransactionDetailCustomer.d.ts +28 -0
  707. package/dist/cjs/api/types/TransactionDetailInvoiceData.d.ts +38 -0
  708. package/dist/cjs/api/types/TransactionDetailPaymentData.d.ts +19 -0
  709. package/dist/cjs/api/types/TransactionDetailPaymentDetails.d.ts +22 -0
  710. package/dist/cjs/api/types/TransactionDetailRecord.d.ts +58 -0
  711. package/dist/cjs/api/types/TransactionDetailResponseData.d.ts +24 -0
  712. package/dist/cjs/api/types/Transfer.d.ts +0 -45
  713. package/dist/cjs/api/types/TransferDetailRecord.d.ts +114 -0
  714. package/dist/cjs/api/types/TransferOutDetailBill.d.ts +36 -0
  715. package/dist/cjs/api/types/TransferOutDetailBill.js +3 -0
  716. package/dist/cjs/api/types/TransferOutDetailBillAttachment.js +3 -0
  717. package/dist/cjs/api/types/TransferOutDetailCheckData.js +3 -0
  718. package/dist/cjs/api/types/TransferOutDetailEvent.js +3 -0
  719. package/dist/cjs/api/types/TransferOutDetailPaymentData.js +3 -0
  720. package/dist/cjs/api/types/TransferOutDetailQueryResponse.d.ts +10 -0
  721. package/dist/cjs/api/types/TransferOutDetailQueryResponse.js +3 -0
  722. package/dist/cjs/api/types/TransferOutDetailRecord.d.ts +132 -0
  723. package/dist/cjs/api/types/TransferOutDetailRecord.js +3 -0
  724. package/dist/cjs/api/types/TransferOutDetailVendor.d.ts +96 -0
  725. package/dist/cjs/api/types/TransferOutDetailVendor.js +3 -0
  726. package/dist/cjs/api/types/TransferOutDetailVendorBillingData.js +3 -0
  727. package/dist/cjs/api/types/TransferOutEventData.js +3 -0
  728. package/dist/cjs/api/types/TransferOutMessage.d.ts +22 -0
  729. package/dist/cjs/api/types/TransferOutMessage.js +3 -0
  730. package/dist/cjs/api/types/TransferOutMessageProperties.js +3 -0
  731. package/dist/cjs/api/types/TransferOutQueryResponse.d.ts +10 -0
  732. package/dist/cjs/api/types/TransferOutQueryResponse.js +3 -0
  733. package/dist/cjs/api/types/TransferOutRecord.d.ts +74 -0
  734. package/dist/cjs/api/types/TransferOutRecord.js +3 -0
  735. package/dist/cjs/api/types/TransferOutSummary.js +3 -0
  736. package/dist/cjs/api/types/TransferQueryResponse.d.ts +0 -52
  737. package/dist/cjs/api/types/TransferSummary.d.ts +0 -8
  738. package/dist/cjs/api/types/TypeResult.js +3 -0
  739. package/dist/cjs/api/types/UnderWritingMethod.d.ts +8 -3
  740. package/dist/cjs/api/types/UnderWritingMethod.js +8 -3
  741. package/dist/cjs/api/types/UpdateNotificationRequest.d.ts +2 -0
  742. package/dist/cjs/api/types/UpdateNotificationRequest.js +3 -0
  743. package/dist/cjs/api/types/UpdatePaymentMethodDomainRequestWallet.d.ts +4 -0
  744. package/dist/cjs/api/types/UpdatePaymentMethodDomainRequestWallet.js +3 -0
  745. package/dist/cjs/api/types/UpdatePayoutSubscriptionResponse.d.ts +15 -0
  746. package/dist/cjs/api/types/UpdatePayoutSubscriptionResponse.js +3 -0
  747. package/dist/cjs/api/types/UpdateSubscriptionResponse.d.ts +15 -0
  748. package/dist/cjs/api/types/UpdateSubscriptionResponse.js +3 -0
  749. package/dist/cjs/api/types/UsrStatus.d.ts +5 -4
  750. package/dist/cjs/api/types/V2BadRequestError.d.ts +22 -0
  751. package/dist/cjs/api/types/V2BadRequestError.js +3 -0
  752. package/dist/cjs/api/types/V2BadRequestErrorDetail.js +3 -0
  753. package/dist/cjs/api/types/V2DeclinedTransactionResponseWrapper.d.ts +13 -0
  754. package/dist/cjs/api/types/V2DeclinedTransactionResponseWrapper.js +3 -0
  755. package/dist/cjs/api/types/V2InternalServerError.d.ts +13 -0
  756. package/dist/cjs/api/types/V2InternalServerError.js +3 -0
  757. package/dist/cjs/api/types/V2ResponseAction.js +3 -0
  758. package/dist/cjs/api/types/V2ResponseCode.js +3 -0
  759. package/dist/cjs/api/types/V2ResponseExplanation.js +3 -0
  760. package/dist/cjs/api/types/V2ResponseReason.js +3 -0
  761. package/dist/cjs/api/types/V2TransactionDetailResponseData.d.ts +25 -0
  762. package/dist/cjs/api/types/V2TransactionDetailResponseData.js +3 -0
  763. package/dist/cjs/api/types/V2TransactionDetails.d.ts +70 -0
  764. package/dist/cjs/api/types/V2TransactionDetails.js +3 -0
  765. package/dist/cjs/api/types/V2TransactionResponseWrapper.d.ts +13 -0
  766. package/dist/cjs/api/types/V2TransactionResponseWrapper.js +3 -0
  767. package/dist/cjs/api/types/VCardCardType.d.ts +3 -2
  768. package/dist/cjs/api/types/VCardGetResponse.d.ts +56 -0
  769. package/dist/cjs/api/types/VCardGetResponse.js +3 -0
  770. package/dist/cjs/api/types/VCardGetResponseAssociatedVendor.d.ts +85 -0
  771. package/dist/cjs/api/types/VCardGetResponseAssociatedVendor.js +3 -0
  772. package/dist/cjs/api/types/VCardGetResponseAssociatedVendorBillingData.d.ts +33 -0
  773. package/dist/cjs/api/types/VCardGetResponseAssociatedVendorBillingData.js +3 -0
  774. package/dist/cjs/api/types/VCardGetResponseAssociatedVendorSummary.d.ts +37 -0
  775. package/dist/cjs/api/types/VCardGetResponseAssociatedVendorSummary.js +3 -0
  776. package/dist/cjs/api/types/VCardGetResponseContact.d.ts +13 -0
  777. package/dist/cjs/api/types/VCardGetResponseContact.js +3 -0
  778. package/dist/cjs/api/types/VCardRecord.d.ts +0 -42
  779. package/dist/cjs/api/types/VCardTransactionQueryResponse.d.ts +8 -0
  780. package/dist/cjs/api/types/VCardTransactionQueryResponse.js +3 -0
  781. package/dist/cjs/api/types/VCardTransactionRecord.d.ts +55 -0
  782. package/dist/cjs/api/types/VCardTransactionRecord.js +3 -0
  783. package/dist/cjs/api/types/ValidateResponse.d.ts +9 -0
  784. package/dist/cjs/api/types/ValidateResponse.js +3 -0
  785. package/dist/cjs/api/types/ValidateResponseData.d.ts +14 -0
  786. package/dist/cjs/api/types/ValidateResponseData.js +3 -0
  787. package/dist/cjs/api/types/VendorCheckNumber.d.ts +5 -1
  788. package/dist/cjs/api/types/VendorData.d.ts +0 -1
  789. package/dist/cjs/api/types/VendorDataRequest.js +3 -0
  790. package/dist/cjs/api/types/VendorDataResponse.d.ts +1 -99
  791. package/dist/cjs/api/types/VendorDataResponse.js +0 -11
  792. package/dist/cjs/api/types/VendorDataResponsePaymentMethod.d.ts +8 -0
  793. package/dist/cjs/api/types/VendorDataResponsePaymentMethod.js +11 -0
  794. package/dist/cjs/api/types/VendorEin.d.ts +2 -1
  795. package/dist/cjs/api/types/VendorEnrichResponse.d.ts +12 -0
  796. package/dist/cjs/api/types/VendorEnrichResponse.js +3 -0
  797. package/dist/cjs/api/types/VendorEnrichResponseData.d.ts +16 -0
  798. package/dist/cjs/api/types/VendorEnrichResponseData.js +3 -0
  799. package/dist/cjs/api/types/VendorEnrichmentData.d.ts +10 -0
  800. package/dist/cjs/api/types/VendorEnrichmentData.js +3 -0
  801. package/dist/cjs/api/types/VendorEnrichmentInvoiceScan.js +3 -0
  802. package/dist/cjs/api/types/VendorEnrichmentWebSearch.js +3 -0
  803. package/dist/cjs/api/types/VendorName1.d.ts +1 -1
  804. package/dist/cjs/api/types/VendorName2.d.ts +2 -1
  805. package/dist/cjs/api/types/VendorNumber.d.ts +2 -1
  806. package/dist/cjs/api/types/VendorPaymentMethodString.d.ts +5 -4
  807. package/dist/cjs/api/types/VendorPhone.d.ts +2 -1
  808. package/dist/cjs/api/types/VendorQueryRecord.d.ts +0 -89
  809. package/dist/cjs/api/types/VendorResponseStoredMethod.d.ts +3 -0
  810. package/dist/cjs/api/types/VendorSummary.d.ts +0 -21
  811. package/dist/cjs/api/types/Vendorstatus.d.ts +4 -7
  812. package/dist/cjs/api/types/VerifyAccountDetailsResponse.d.ts +9 -0
  813. package/dist/cjs/api/types/VerifyAccountDetailsResponse.js +3 -0
  814. package/dist/cjs/api/types/VoidResponse.d.ts +12 -0
  815. package/dist/cjs/api/types/VoidResponse.js +3 -0
  816. package/dist/cjs/api/types/VoidResponseData.d.ts +14 -0
  817. package/dist/cjs/api/types/VoidResponseData.js +3 -0
  818. package/dist/cjs/api/types/WalletCascade.d.ts +2 -1
  819. package/dist/cjs/api/types/WebHeaderParameter.js +3 -0
  820. package/dist/cjs/api/types/Website.d.ts +3 -1
  821. package/dist/cjs/api/types/Whencharged.d.ts +1 -1
  822. package/dist/cjs/api/types/Whencharged.js +1 -1
  823. package/dist/cjs/api/types/Whenprovided.d.ts +0 -1
  824. package/dist/cjs/api/types/Whenprovided.js +0 -1
  825. package/dist/cjs/api/types/index.d.ts +270 -10
  826. package/dist/cjs/api/types/index.js +270 -10
  827. package/dist/cjs/auth/HeaderAuthProvider.d.ts +2 -2
  828. package/dist/cjs/auth/HeaderAuthProvider.js +1 -1
  829. package/dist/cjs/core/auth/AuthProvider.d.ts +1 -0
  830. package/dist/cjs/core/auth/AuthProvider.js +7 -0
  831. package/dist/cjs/core/auth/index.d.ts +1 -1
  832. package/dist/cjs/core/auth/index.js +3 -1
  833. package/dist/cjs/core/fetcher/Fetcher.d.ts +6 -0
  834. package/dist/cjs/core/fetcher/Fetcher.js +9 -8
  835. package/dist/cjs/core/fetcher/requestWithRetries.js +4 -1
  836. package/dist/cjs/core/url/QueryStringBuilder.d.ts +47 -0
  837. package/dist/cjs/core/url/QueryStringBuilder.js +83 -0
  838. package/dist/cjs/core/url/index.d.ts +1 -0
  839. package/dist/cjs/core/url/index.js +3 -1
  840. package/dist/cjs/core/url/qs.d.ts +2 -1
  841. package/dist/cjs/core/url/qs.js +24 -12
  842. package/dist/cjs/version.d.ts +1 -1
  843. package/dist/cjs/version.js +1 -1
  844. package/dist/esm/BaseClient.d.mts +3 -0
  845. package/dist/esm/BaseClient.mjs +17 -2
  846. package/dist/esm/Client.d.mts +43 -43
  847. package/dist/esm/Client.mjs +57 -57
  848. package/dist/esm/api/errors/ForbiddenError.d.mts +1 -1
  849. package/dist/esm/api/errors/PaymentRequiredError.d.mts +6 -0
  850. package/dist/esm/api/errors/PaymentRequiredError.mjs +17 -0
  851. package/dist/esm/api/errors/ServiceUnavailableError.d.mts +1 -1
  852. package/dist/esm/api/errors/UnauthorizedError.d.mts +2 -1
  853. package/dist/esm/api/errors/index.d.mts +1 -1
  854. package/dist/esm/api/errors/index.mjs +1 -1
  855. package/dist/esm/api/resources/bill/client/Client.d.mts +103 -123
  856. package/dist/esm/api/resources/bill/client/Client.mjs +223 -208
  857. package/dist/esm/api/resources/bill/client/requests/AddBillRequest.d.mts +88 -36
  858. package/dist/esm/api/resources/bill/client/requests/DeleteAttachedFromBillRequest.d.mts +1 -1
  859. package/dist/esm/api/resources/bill/client/requests/ListBillsOrgRequest.d.mts +2 -1
  860. package/dist/esm/api/resources/bill/client/requests/ListBillsRequest.d.mts +2 -1
  861. package/dist/esm/api/resources/bill/client/requests/SendToApprovalBillRequest.d.mts +2 -1
  862. package/dist/esm/api/resources/bill/index.d.mts +0 -1
  863. package/dist/esm/api/resources/bill/index.mjs +0 -1
  864. package/dist/esm/api/resources/boarding/client/Client.d.mts +30 -27
  865. package/dist/esm/api/resources/boarding/client/Client.mjs +101 -86
  866. package/dist/esm/api/resources/boarding/client/requests/CreateApplicationFromPaypointRequest.d.mts +22 -0
  867. package/dist/esm/api/resources/boarding/client/requests/ListApplicationsRequest.d.mts +2 -1
  868. package/dist/esm/api/resources/boarding/client/requests/ListBoardingLinksRequest.d.mts +1 -1
  869. package/dist/esm/api/resources/boarding/client/requests/RequestAppByAuth.d.mts +1 -1
  870. package/dist/esm/api/resources/boarding/client/requests/index.d.mts +1 -0
  871. package/dist/esm/api/resources/boarding/index.d.mts +0 -1
  872. package/dist/esm/api/resources/boarding/index.mjs +0 -1
  873. package/dist/esm/api/resources/chargeBacks/client/Client.d.mts +5 -2
  874. package/dist/esm/api/resources/chargeBacks/client/Client.mjs +8 -6
  875. package/dist/esm/api/resources/chargeBacks/client/requests/ResponseChargeBack.d.mts +1 -0
  876. package/dist/esm/api/resources/chargeBacks/index.d.mts +0 -1
  877. package/dist/esm/api/resources/chargeBacks/index.mjs +0 -1
  878. package/dist/esm/api/resources/checkCapture/client/Client.d.mts +5 -2
  879. package/dist/esm/api/resources/checkCapture/client/Client.mjs +6 -3
  880. package/dist/esm/api/resources/checkCapture/client/requests/CheckCaptureRequestBody.d.mts +1 -1
  881. package/dist/esm/api/resources/checkCapture/index.d.mts +0 -1
  882. package/dist/esm/api/resources/checkCapture/index.mjs +0 -1
  883. package/dist/esm/api/resources/cloud/client/Client.d.mts +22 -19
  884. package/dist/esm/api/resources/cloud/client/Client.mjs +47 -40
  885. package/dist/esm/api/resources/cloud/client/requests/DeviceEntry.d.mts +1 -0
  886. package/dist/esm/api/resources/cloud/index.d.mts +0 -1
  887. package/dist/esm/api/resources/cloud/index.mjs +0 -1
  888. package/dist/esm/api/resources/customer/client/Client.d.mts +43 -42
  889. package/dist/esm/api/resources/customer/client/Client.mjs +87 -71
  890. package/dist/esm/api/resources/customer/client/requests/AddCustomerRequest.d.mts +53 -14
  891. package/dist/esm/api/resources/export/client/Client.d.mts +124 -5
  892. package/dist/esm/api/resources/export/client/Client.mjs +269 -34
  893. package/dist/esm/api/resources/export/client/requests/ExportApplicationsRequest.d.mts +1 -1
  894. package/dist/esm/api/resources/export/client/requests/ExportBatchDetailsOrgRequest.d.mts +1 -1
  895. package/dist/esm/api/resources/export/client/requests/ExportBatchDetailsRequest.d.mts +1 -1
  896. package/dist/esm/api/resources/export/client/requests/ExportBatchesOrgRequest.d.mts +1 -1
  897. package/dist/esm/api/resources/export/client/requests/ExportBatchesOutOrgRequest.d.mts +1 -1
  898. package/dist/esm/api/resources/export/client/requests/ExportBatchesOutRequest.d.mts +1 -1
  899. package/dist/esm/api/resources/export/client/requests/ExportBatchesRequest.d.mts +1 -1
  900. package/dist/esm/api/resources/export/client/requests/ExportBillsOrgRequest.d.mts +1 -1
  901. package/dist/esm/api/resources/export/client/requests/ExportBillsRequest.d.mts +1 -1
  902. package/dist/esm/api/resources/export/client/requests/ExportChargebacksOrgRequest.d.mts +1 -1
  903. package/dist/esm/api/resources/export/client/requests/ExportChargebacksRequest.d.mts +1 -1
  904. package/dist/esm/api/resources/export/client/requests/ExportCustomersOrgRequest.d.mts +1 -1
  905. package/dist/esm/api/resources/export/client/requests/ExportCustomersRequest.d.mts +1 -1
  906. package/dist/esm/api/resources/export/client/requests/ExportInvoicesOrgRequest.d.mts +1 -1
  907. package/dist/esm/api/resources/export/client/requests/ExportInvoicesRequest.d.mts +1 -1
  908. package/dist/esm/api/resources/export/client/requests/ExportOrganizationsRequest.d.mts +1 -1
  909. package/dist/esm/api/resources/export/client/requests/ExportPayoutOrgRequest.d.mts +1 -1
  910. package/dist/esm/api/resources/export/client/requests/ExportPayoutRequest.d.mts +1 -1
  911. package/dist/esm/api/resources/export/client/requests/ExportPaypointsRequest.d.mts +1 -1
  912. package/dist/esm/api/resources/export/client/requests/ExportSettlementsOrgRequest.d.mts +1 -1
  913. package/dist/esm/api/resources/export/client/requests/ExportSettlementsRequest.d.mts +1 -1
  914. package/dist/esm/api/resources/export/client/requests/ExportSubscriptionsOrgRequest.d.mts +1 -1
  915. package/dist/esm/api/resources/export/client/requests/ExportSubscriptionsRequest.d.mts +1 -1
  916. package/dist/esm/api/resources/export/client/requests/ExportTransactionsOrgRequest.d.mts +1 -1
  917. package/dist/esm/api/resources/export/client/requests/ExportTransactionsRequest.d.mts +1 -1
  918. package/dist/esm/api/resources/export/client/requests/ExportTransferDetailsRequest.d.mts +1 -1
  919. package/dist/esm/api/resources/export/client/requests/ExportTransfersRequest.d.mts +1 -1
  920. package/dist/esm/api/resources/export/client/requests/ExportVendorsOrgRequest.d.mts +1 -1
  921. package/dist/esm/api/resources/export/client/requests/ExportVendorsRequest.d.mts +1 -1
  922. package/dist/esm/api/resources/export/index.d.mts +0 -1
  923. package/dist/esm/api/resources/export/index.mjs +0 -1
  924. package/dist/esm/api/resources/ghostCard/client/Client.d.mts +6 -6
  925. package/dist/esm/api/resources/ghostCard/client/Client.mjs +8 -8
  926. package/dist/esm/api/resources/ghostCard/client/requests/CreateGhostCardRequestBody.d.mts +1 -1
  927. package/dist/esm/api/resources/ghostCard/index.d.mts +0 -1
  928. package/dist/esm/api/resources/ghostCard/index.mjs +0 -1
  929. package/dist/esm/api/resources/hostedPaymentPages/client/Client.d.mts +4 -6
  930. package/dist/esm/api/resources/hostedPaymentPages/client/Client.mjs +19 -10
  931. package/dist/esm/api/resources/hostedPaymentPages/client/requests/NewPageRequest.d.mts +22 -3
  932. package/dist/esm/api/resources/import/client/Client.d.mts +9 -1
  933. package/dist/esm/api/resources/import/client/Client.mjs +32 -9
  934. package/dist/esm/api/resources/index.d.mts +1 -32
  935. package/dist/esm/api/resources/index.mjs +1 -32
  936. package/dist/esm/api/resources/invoice/client/Client.d.mts +72 -90
  937. package/dist/esm/api/resources/invoice/client/Client.mjs +146 -129
  938. package/dist/esm/api/resources/invoice/client/requests/AddInvoiceRequest.d.mts +36 -30
  939. package/dist/esm/api/resources/invoice/client/requests/EditInvoiceRequest.d.mts +16 -13
  940. package/dist/esm/api/resources/invoice/client/requests/ListInvoicesOrgRequest.d.mts +2 -1
  941. package/dist/esm/api/resources/invoice/client/requests/ListInvoicesRequest.d.mts +2 -1
  942. package/dist/esm/api/resources/invoice/index.d.mts +0 -1
  943. package/dist/esm/api/resources/invoice/index.mjs +0 -1
  944. package/dist/esm/api/resources/lineItem/client/Client.d.mts +41 -35
  945. package/dist/esm/api/resources/lineItem/client/Client.mjs +107 -75
  946. package/dist/esm/api/resources/lineItem/client/requests/AddItemRequest.d.mts +21 -11
  947. package/dist/esm/api/resources/lineItem/client/requests/ListLineItemsRequest.d.mts +1 -1
  948. package/dist/esm/api/resources/lineItem/index.d.mts +0 -1
  949. package/dist/esm/api/resources/lineItem/index.mjs +0 -1
  950. package/dist/esm/api/resources/management/client/Client.d.mts +5 -2
  951. package/dist/esm/api/resources/management/client/Client.mjs +6 -3
  952. package/dist/esm/api/resources/management/index.d.mts +0 -1
  953. package/dist/esm/api/resources/management/index.mjs +0 -1
  954. package/dist/esm/api/resources/moneyIn/client/Client.d.mts +251 -276
  955. package/dist/esm/api/resources/moneyIn/client/Client.mjs +316 -317
  956. package/dist/esm/api/resources/moneyIn/client/requests/RequestCredit.d.mts +7 -20
  957. package/dist/esm/api/resources/moneyIn/client/requests/RequestPayment.d.mts +146 -142
  958. package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentAuthorize.d.mts +35 -20
  959. package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentAuthorizeV2.d.mts +35 -20
  960. package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentV2.d.mts +80 -70
  961. package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentValidate.d.mts +3 -22
  962. package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentValidate.mjs +1 -11
  963. package/dist/esm/api/resources/moneyIn/client/requests/RequestRefund.d.mts +1 -0
  964. package/dist/esm/api/resources/moneyIn/client/requests/index.d.mts +1 -1
  965. package/dist/esm/api/resources/moneyIn/client/requests/index.mjs +1 -1
  966. package/dist/esm/api/resources/moneyIn/index.d.mts +0 -2
  967. package/dist/esm/api/resources/moneyIn/index.mjs +0 -2
  968. package/dist/esm/api/resources/moneyOut/client/Client.d.mts +127 -140
  969. package/dist/esm/api/resources/moneyOut/client/Client.mjs +160 -154
  970. package/dist/esm/api/resources/moneyOut/client/requests/CaptureAllOutRequest.d.mts +1 -1
  971. package/dist/esm/api/resources/moneyOut/client/requests/CaptureOutRequest.d.mts +1 -0
  972. package/dist/esm/api/resources/moneyOut/client/requests/ReissueOutRequest.d.mts +13 -18
  973. package/dist/esm/api/resources/moneyOut/client/requests/RequestOutAuthorize.d.mts +161 -0
  974. package/dist/esm/api/resources/moneyOut/client/requests/index.d.mts +1 -1
  975. package/dist/esm/api/resources/notification/client/Client.d.mts +23 -20
  976. package/dist/esm/api/resources/notification/client/Client.mjs +50 -47
  977. package/dist/esm/api/resources/notification/index.d.mts +0 -1
  978. package/dist/esm/api/resources/notification/index.mjs +0 -1
  979. package/dist/esm/api/resources/notificationlogs/client/Client.d.mts +9 -8
  980. package/dist/esm/api/resources/notificationlogs/client/Client.mjs +33 -17
  981. package/dist/esm/api/resources/notificationlogs/client/requests/SearchNotificationLogsRequest.d.mts +18 -8
  982. package/dist/esm/api/resources/notificationlogs/index.d.mts +0 -1
  983. package/dist/esm/api/resources/notificationlogs/index.mjs +0 -1
  984. package/dist/esm/api/resources/ocr/client/Client.d.mts +3 -3
  985. package/dist/esm/api/resources/ocr/client/Client.mjs +7 -7
  986. package/dist/esm/api/resources/ocr/index.d.mts +0 -1
  987. package/dist/esm/api/resources/ocr/index.mjs +0 -1
  988. package/dist/esm/api/resources/organization/client/Client.d.mts +26 -18
  989. package/dist/esm/api/resources/organization/client/Client.mjs +71 -52
  990. package/dist/esm/api/resources/organization/client/requests/AddOrganizationRequest.d.mts +1 -0
  991. package/dist/esm/api/resources/organization/index.d.mts +0 -1
  992. package/dist/esm/api/resources/organization/index.mjs +0 -1
  993. package/dist/esm/api/resources/paymentLink/client/Client.d.mts +280 -287
  994. package/dist/esm/api/resources/paymentLink/client/Client.mjs +329 -305
  995. package/dist/esm/api/resources/paymentLink/client/requests/PatchOutPaymentLinkRequest.d.mts +52 -0
  996. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataBill.d.mts +135 -119
  997. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.mts +119 -99
  998. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataOut.d.mts +79 -61
  999. package/dist/esm/api/resources/paymentLink/client/requests/index.d.mts +1 -0
  1000. package/dist/esm/api/resources/paymentLink/index.d.mts +0 -1
  1001. package/dist/esm/api/resources/paymentLink/index.mjs +0 -1
  1002. package/dist/esm/api/resources/paymentMethodDomain/client/Client.d.mts +32 -29
  1003. package/dist/esm/api/resources/paymentMethodDomain/client/Client.mjs +74 -67
  1004. package/dist/esm/api/resources/paymentMethodDomain/client/requests/AddPaymentMethodDomainRequest.d.mts +2 -16
  1005. package/dist/esm/api/resources/paymentMethodDomain/client/requests/UpdatePaymentMethodDomainRequest.d.mts +2 -10
  1006. package/dist/esm/api/resources/paymentMethodDomain/index.d.mts +0 -1
  1007. package/dist/esm/api/resources/paymentMethodDomain/index.mjs +0 -1
  1008. package/dist/esm/api/resources/payoutSubscription/client/Client.d.mts +51 -55
  1009. package/dist/esm/api/resources/payoutSubscription/client/Client.mjs +69 -62
  1010. package/dist/esm/api/resources/payoutSubscription/client/requests/RequestPayoutSchedule.d.mts +63 -52
  1011. package/dist/esm/api/resources/payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.d.mts +33 -0
  1012. package/dist/esm/api/resources/payoutSubscription/client/requests/index.d.mts +1 -0
  1013. package/dist/esm/api/resources/payoutSubscription/index.d.mts +0 -1
  1014. package/dist/esm/api/resources/payoutSubscription/index.mjs +0 -1
  1015. package/dist/esm/api/resources/paypoint/client/Client.d.mts +49 -41
  1016. package/dist/esm/api/resources/paypoint/client/Client.mjs +122 -99
  1017. package/dist/esm/api/resources/paypoint/client/requests/PaypointMoveRequest.d.mts +22 -0
  1018. package/dist/esm/api/resources/paypoint/client/requests/index.d.mts +1 -0
  1019. package/dist/esm/api/resources/paypoint/index.d.mts +0 -1
  1020. package/dist/esm/api/resources/paypoint/index.mjs +0 -1
  1021. package/dist/esm/api/resources/query/client/Client.d.mts +45 -43
  1022. package/dist/esm/api/resources/query/client/Client.mjs +268 -93
  1023. package/dist/esm/api/resources/query/client/requests/ListBatchDetailsOrgRequest.d.mts +2 -1
  1024. package/dist/esm/api/resources/query/client/requests/ListBatchDetailsRequest.d.mts +2 -1
  1025. package/dist/esm/api/resources/query/client/requests/ListBatchesOrgRequest.d.mts +2 -1
  1026. package/dist/esm/api/resources/query/client/requests/ListBatchesOutOrgRequest.d.mts +2 -1
  1027. package/dist/esm/api/resources/query/client/requests/ListBatchesOutRequest.d.mts +2 -1
  1028. package/dist/esm/api/resources/query/client/requests/ListBatchesRequest.d.mts +2 -1
  1029. package/dist/esm/api/resources/query/client/requests/ListChargebacksOrgRequest.d.mts +2 -1
  1030. package/dist/esm/api/resources/query/client/requests/ListChargebacksRequest.d.mts +2 -1
  1031. package/dist/esm/api/resources/query/client/requests/ListCustomersOrgRequest.d.mts +2 -1
  1032. package/dist/esm/api/resources/query/client/requests/ListCustomersRequest.d.mts +2 -1
  1033. package/dist/esm/api/resources/query/client/requests/ListDevicesOrgRequest.d.mts +2 -1
  1034. package/dist/esm/api/resources/query/client/requests/ListDevicesRequest.d.mts +2 -1
  1035. package/dist/esm/api/resources/query/client/requests/ListNotificationReportsOrgRequest.d.mts +1 -1
  1036. package/dist/esm/api/resources/query/client/requests/ListNotificationReportsRequest.d.mts +1 -1
  1037. package/dist/esm/api/resources/query/client/requests/ListNotificationsOrgRequest.d.mts +1 -1
  1038. package/dist/esm/api/resources/query/client/requests/ListNotificationsRequest.d.mts +1 -1
  1039. package/dist/esm/api/resources/query/client/requests/ListOrganizationsRequest.d.mts +2 -1
  1040. package/dist/esm/api/resources/query/client/requests/ListPayoutOrgRequest.d.mts +2 -1
  1041. package/dist/esm/api/resources/query/client/requests/ListPayoutRequest.d.mts +2 -1
  1042. package/dist/esm/api/resources/query/client/requests/ListPayoutSubscriptionsOrgRequest.d.mts +2 -1
  1043. package/dist/esm/api/resources/query/client/requests/ListPayoutSubscriptionsRequest.d.mts +2 -1
  1044. package/dist/esm/api/resources/query/client/requests/ListPaypointsRequest.d.mts +2 -1
  1045. package/dist/esm/api/resources/query/client/requests/ListSettlementsOrgRequest.d.mts +2 -1
  1046. package/dist/esm/api/resources/query/client/requests/ListSettlementsRequest.d.mts +2 -1
  1047. package/dist/esm/api/resources/query/client/requests/ListSubscriptionsOrgRequest.d.mts +3 -1
  1048. package/dist/esm/api/resources/query/client/requests/ListSubscriptionsRequest.d.mts +3 -1
  1049. package/dist/esm/api/resources/query/client/requests/ListTransactionsOrgRequest.d.mts +2 -1
  1050. package/dist/esm/api/resources/query/client/requests/ListTransactionsRequest.d.mts +2 -1
  1051. package/dist/esm/api/resources/query/client/requests/ListTransferDetailsOutRequest.d.mts +1 -1
  1052. package/dist/esm/api/resources/query/client/requests/ListTransfersOutOrgRequest.d.mts +1 -1
  1053. package/dist/esm/api/resources/query/client/requests/ListTransfersOutPaypointRequest.d.mts +1 -1
  1054. package/dist/esm/api/resources/query/client/requests/ListTransfersPaypointRequest.d.mts +3 -1
  1055. package/dist/esm/api/resources/query/client/requests/ListTransfersRequest.d.mts +2 -1
  1056. package/dist/esm/api/resources/query/client/requests/ListTransfersRequestOrg.d.mts +2 -3
  1057. package/dist/esm/api/resources/query/client/requests/ListUsersOrgRequest.d.mts +1 -1
  1058. package/dist/esm/api/resources/query/client/requests/ListUsersPaypointRequest.d.mts +1 -1
  1059. package/dist/esm/api/resources/query/client/requests/ListVcardsOrgRequest.d.mts +2 -1
  1060. package/dist/esm/api/resources/query/client/requests/ListVcardsRequest.d.mts +2 -1
  1061. package/dist/esm/api/resources/query/client/requests/ListVcardsTransactionsOrgRequest.d.mts +1 -1
  1062. package/dist/esm/api/resources/query/client/requests/ListVcardsTransactionsRequest.d.mts +1 -1
  1063. package/dist/esm/api/resources/query/client/requests/ListVendorsOrgRequest.d.mts +2 -1
  1064. package/dist/esm/api/resources/query/client/requests/ListVendorsRequest.d.mts +2 -1
  1065. package/dist/esm/api/resources/statistic/client/Client.d.mts +14 -7
  1066. package/dist/esm/api/resources/statistic/client/Client.mjs +50 -16
  1067. package/dist/esm/api/resources/statistic/client/requests/BasicStatsRequest.d.mts +3 -3
  1068. package/dist/esm/api/resources/statistic/client/requests/CustomerBasicStatsRequest.d.mts +1 -1
  1069. package/dist/esm/api/resources/statistic/client/requests/SubStatsRequest.d.mts +1 -1
  1070. package/dist/esm/api/resources/statistic/client/requests/VendorBasicStatsRequest.d.mts +1 -1
  1071. package/dist/esm/api/resources/statistic/index.d.mts +0 -1
  1072. package/dist/esm/api/resources/statistic/index.mjs +0 -1
  1073. package/dist/esm/api/resources/subscription/client/Client.d.mts +119 -97
  1074. package/dist/esm/api/resources/subscription/client/Client.mjs +177 -140
  1075. package/dist/esm/api/resources/subscription/client/requests/RequestSchedule.d.mts +105 -69
  1076. package/dist/esm/api/resources/subscription/client/requests/RequestUpdateSchedule.d.mts +3 -3
  1077. package/dist/esm/api/resources/subscription/index.d.mts +0 -1
  1078. package/dist/esm/api/resources/subscription/index.mjs +0 -1
  1079. package/dist/esm/api/resources/templates/client/Client.d.mts +13 -5
  1080. package/dist/esm/api/resources/templates/client/Client.mjs +37 -14
  1081. package/dist/esm/api/resources/templates/client/requests/ListTemplatesRequest.d.mts +1 -1
  1082. package/dist/esm/api/resources/tokenStorage/client/Client.d.mts +117 -136
  1083. package/dist/esm/api/resources/tokenStorage/client/Client.mjs +187 -183
  1084. package/dist/esm/api/resources/tokenStorage/client/requests/AddMethodRequest.d.mts +79 -69
  1085. package/dist/esm/api/resources/tokenStorage/client/requests/UpdateMethodRequest.d.mts +56 -46
  1086. package/dist/esm/api/resources/tokenStorage/index.d.mts +0 -1
  1087. package/dist/esm/api/resources/tokenStorage/index.mjs +0 -1
  1088. package/dist/esm/api/resources/user/client/Client.d.mts +68 -65
  1089. package/dist/esm/api/resources/user/client/Client.mjs +165 -158
  1090. package/dist/esm/api/resources/user/client/requests/GetUserRequest.d.mts +1 -1
  1091. package/dist/esm/api/resources/user/index.d.mts +0 -1
  1092. package/dist/esm/api/resources/user/index.mjs +0 -1
  1093. package/dist/esm/api/resources/vendor/client/Client.d.mts +21 -18
  1094. package/dist/esm/api/resources/vendor/client/Client.mjs +53 -50
  1095. package/dist/esm/api/resources/vendor/client/index.d.mts +1 -1
  1096. package/dist/esm/api/resources/vendor/client/index.mjs +1 -1
  1097. package/dist/esm/api/resources/vendor/client/requests/VendorEnrichRequest.d.mts +47 -0
  1098. package/dist/esm/api/resources/vendor/client/requests/index.d.mts +1 -0
  1099. package/dist/esm/api/resources/vendor/client/requests/index.mjs +1 -0
  1100. package/dist/esm/api/resources/vendor/index.d.mts +0 -1
  1101. package/dist/esm/api/resources/vendor/index.mjs +0 -1
  1102. package/dist/esm/api/resources/wallet/client/Client.d.mts +11 -3
  1103. package/dist/esm/api/resources/wallet/client/Client.mjs +31 -12
  1104. package/dist/esm/api/resources/wallet/client/requests/ConfigureOrganizationRequestApplePay.d.mts +1 -1
  1105. package/dist/esm/api/resources/wallet/client/requests/ConfigureOrganizationRequestGooglePay.d.mts +1 -1
  1106. package/dist/esm/api/types/AbsorbDifference.d.mts +2 -1
  1107. package/dist/esm/api/types/AchHolder.d.mts +2 -1
  1108. package/dist/esm/api/types/AchSecCode.d.mts +26 -6
  1109. package/dist/esm/api/types/AchService.d.mts +4 -1
  1110. package/dist/esm/api/types/AchSetup.d.mts +18 -3
  1111. package/dist/esm/api/types/AchValidation.d.mts +2 -1
  1112. package/dist/esm/api/types/AddApplicationRequest.d.mts +14 -0
  1113. package/dist/esm/api/types/AddDeviceResponse.d.mts +9 -0
  1114. package/dist/esm/api/types/AddMethodResponse.d.mts +4 -0
  1115. package/dist/esm/api/types/AddMethodResponseResponseData.d.mts +14 -0
  1116. package/dist/esm/api/types/AddNotificationRequest.d.mts +8 -0
  1117. package/dist/esm/api/types/AddOrganizationResponse.d.mts +7 -0
  1118. package/dist/esm/api/types/AddPaymentMethodDomainRequestApplePay.d.mts +7 -0
  1119. package/dist/esm/api/types/AddPaymentMethodDomainRequestGooglePay.d.mts +7 -0
  1120. package/dist/esm/api/types/AddPayoutSubscriptionResponse.d.mts +12 -0
  1121. package/dist/esm/api/types/AddResponseResponse.d.mts +8 -0
  1122. package/dist/esm/api/types/AddSubscriptionResponse.d.mts +11 -0
  1123. package/dist/esm/api/types/AddUserResponse.d.mts +7 -0
  1124. package/dist/esm/api/types/AdditionalData.d.mts +5 -1
  1125. package/dist/esm/api/types/AdditionalDataMap.d.mts +2 -1
  1126. package/dist/esm/api/types/AdditionalDataString.d.mts +2 -1
  1127. package/dist/esm/api/types/AllowOverride.d.mts +2 -1
  1128. package/dist/esm/api/types/ApplePayData.d.mts +5 -2
  1129. package/dist/esm/api/types/ApplePayMetadata.d.mts +19 -6
  1130. package/dist/esm/api/types/ApplePayPaypointRegistrationData.d.mts +1 -1
  1131. package/dist/esm/api/types/AppleWalletData.d.mts +1 -1
  1132. package/dist/esm/api/types/ApplicationDataManaged.d.mts +2 -14
  1133. package/dist/esm/api/types/ApplicationDataManagedContactsItem.d.mts +2 -0
  1134. package/dist/esm/api/types/ApplicationDataManagedOwnershipItem.d.mts +2 -0
  1135. package/dist/esm/api/types/ApplicationDataOdp.d.mts +2 -14
  1136. package/dist/esm/api/types/ApplicationDataOdpContactsItem.d.mts +2 -0
  1137. package/dist/esm/api/types/ApplicationDataOdpOwnershipItem.d.mts +2 -0
  1138. package/dist/esm/api/types/ApplicationDataPayIn.d.mts +3 -26
  1139. package/dist/esm/api/types/ApplicationDataPayInContactsItem.d.mts +2 -0
  1140. package/dist/esm/api/types/ApplicationDataPayInOwnershipItem.d.mts +2 -0
  1141. package/dist/esm/api/types/ApplicationDataPayInServices.d.mts +6 -0
  1142. package/dist/esm/api/types/ApplicationDataPayInServicesAch.d.mts +2 -0
  1143. package/dist/esm/api/types/ApplicationDataPayInServicesCard.d.mts +2 -0
  1144. package/dist/esm/api/types/ApplicationDetailsRecord.d.mts +1 -19
  1145. package/dist/esm/api/types/ApplicationDetailsRecordMessagesItem.d.mts +14 -0
  1146. package/dist/esm/api/types/Attachments.d.mts +2 -1
  1147. package/dist/esm/api/types/AttestationDate.d.mts +2 -1
  1148. package/dist/esm/api/types/AuthCapturePayoutResponse.d.mts +9 -0
  1149. package/dist/esm/api/types/AuthCapturePayoutResponseData.d.mts +11 -0
  1150. package/dist/esm/api/types/AuthResetUserResponse.d.mts +5 -0
  1151. package/dist/esm/api/types/AuthResponse.d.mts +10 -0
  1152. package/dist/esm/api/types/AuthResponseResponseData.d.mts +11 -0
  1153. package/dist/esm/api/types/AuthorizePaymentMethod.d.mts +27 -0
  1154. package/dist/esm/api/types/AutoCapture.d.mts +10 -3
  1155. package/dist/esm/api/types/Avgmonthly.d.mts +2 -1
  1156. package/dist/esm/api/types/AvsResponse.d.mts +2 -1
  1157. package/dist/esm/api/types/AvsResponseText.d.mts +2 -1
  1158. package/dist/esm/api/types/Baddress2.d.mts +2 -1
  1159. package/dist/esm/api/types/Bank.d.mts +2 -0
  1160. package/dist/esm/api/types/BankAccountFunction.d.mts +11 -8
  1161. package/dist/esm/api/types/BankAccountVerificationDetailsResponse.d.mts +31 -0
  1162. package/dist/esm/api/types/BatchDetailResponseRecord.d.mts +58 -0
  1163. package/dist/esm/api/types/BatchDetailResponseSummary.d.mts +13 -0
  1164. package/dist/esm/api/types/BatchNumber.d.mts +8 -3
  1165. package/dist/esm/api/types/BatchSummary.d.mts +0 -10
  1166. package/dist/esm/api/types/Bcity.d.mts +1 -1
  1167. package/dist/esm/api/types/Bcountry.d.mts +3 -1
  1168. package/dist/esm/api/types/BillApprovals.d.mts +1 -1
  1169. package/dist/esm/api/types/BillData.d.mts +1 -74
  1170. package/dist/esm/api/types/BillData.mjs +1 -73
  1171. package/dist/esm/api/types/BillDataPaymentTerms.d.mts +29 -0
  1172. package/dist/esm/api/types/BillDataPaymentTerms.mjs +29 -0
  1173. package/dist/esm/api/types/BillDetailResponse.d.mts +0 -2
  1174. package/dist/esm/api/types/BillId.d.mts +2 -1
  1175. package/dist/esm/api/types/BillItem.d.mts +11 -4
  1176. package/dist/esm/api/types/BillOutData.d.mts +71 -0
  1177. package/dist/esm/api/types/BillOutDataScheduledOptions.d.mts +7 -0
  1178. package/dist/esm/api/types/BillQueryRecord2.d.mts +1 -1
  1179. package/dist/esm/api/types/BillQueryResponse.d.mts +0 -122
  1180. package/dist/esm/api/types/BillResponse.d.mts +16 -0
  1181. package/dist/esm/api/types/BillResponseData.d.mts +58 -0
  1182. package/dist/esm/api/types/BillingDataResponse.d.mts +0 -19
  1183. package/dist/esm/api/types/BillingStateNullable.d.mts +1 -1
  1184. package/dist/esm/api/types/Billstatus.d.mts +1 -2
  1185. package/dist/esm/api/types/BinData.d.mts +0 -30
  1186. package/dist/esm/api/types/Binperson.d.mts +2 -1
  1187. package/dist/esm/api/types/Binphone.d.mts +2 -1
  1188. package/dist/esm/api/types/Binweb.d.mts +2 -1
  1189. package/dist/esm/api/types/BoardingAverageBillSize.d.mts +3 -1
  1190. package/dist/esm/api/types/BoardingAvgMonthlyBill.d.mts +4 -1
  1191. package/dist/esm/api/types/BoardingLinkApiResponse.d.mts +0 -3
  1192. package/dist/esm/api/types/BoardingLinkId.d.mts +4 -1
  1193. package/dist/esm/api/types/BoardingStatus.d.mts +3 -1
  1194. package/dist/esm/api/types/Busstartdate.d.mts +2 -3
  1195. package/dist/esm/api/types/ButtonElement.d.mts +2 -10
  1196. package/dist/esm/api/types/ButtonElement.mjs +1 -9
  1197. package/dist/esm/api/types/ButtonElementSize.d.mts +7 -0
  1198. package/dist/esm/api/types/ButtonElementSize.mjs +7 -0
  1199. package/dist/esm/api/types/CaptureAllOutResponse.d.mts +9 -0
  1200. package/dist/esm/api/types/CaptureAllOutResponseResponseDataItem.d.mts +13 -0
  1201. package/dist/esm/api/types/CaptureRequest.d.mts +4 -0
  1202. package/dist/esm/api/types/CaptureResponse.d.mts +12 -0
  1203. package/dist/esm/api/types/CaptureResponseData.d.mts +14 -0
  1204. package/dist/esm/api/types/CardService.d.mts +1 -1
  1205. package/dist/esm/api/types/Cardcvv.d.mts +3 -1
  1206. package/dist/esm/api/types/Cardnumber.d.mts +2 -1
  1207. package/dist/esm/api/types/Cardzip.d.mts +2 -1
  1208. package/dist/esm/api/types/Cascade.d.mts +2 -1
  1209. package/dist/esm/api/types/Cash.d.mts +8 -1
  1210. package/dist/esm/api/types/Cash.mjs +7 -1
  1211. package/dist/esm/api/types/Category.d.mts +8 -6
  1212. package/dist/esm/api/types/ChangePswUserResponse.d.mts +5 -0
  1213. package/dist/esm/api/types/ChargeBackResponse.d.mts +15 -0
  1214. package/dist/esm/api/types/ChargebackId.d.mts +1 -1
  1215. package/dist/esm/api/types/ChargebackQueryRecords.d.mts +66 -0
  1216. package/dist/esm/api/types/Check.d.mts +8 -1
  1217. package/dist/esm/api/types/Check.mjs +7 -1
  1218. package/dist/esm/api/types/CheckCaptureResponse.d.mts +58 -0
  1219. package/dist/esm/api/types/ConfigureApplePaypointApiResponse.d.mts +1 -1
  1220. package/dist/esm/api/types/ConfigureGooglePaypointApiResponse.d.mts +1 -1
  1221. package/dist/esm/api/types/ContactsResponse.d.mts +0 -9
  1222. package/dist/esm/api/types/CountryNullable.d.mts +2 -1
  1223. package/dist/esm/api/types/CreateApplicationFromPaypointResponse.d.mts +12 -0
  1224. package/dist/esm/api/types/CreateApplicationFromPaypointResponseData.d.mts +6 -0
  1225. package/dist/esm/api/types/CreateGhostCardResponse.d.mts +9 -0
  1226. package/dist/esm/api/types/CreateGhostCardResponseData.d.mts +7 -0
  1227. package/dist/esm/api/types/CustomerNumberNullable.d.mts +2 -1
  1228. package/dist/esm/api/types/CustomerQueryRecords.d.mts +2 -206
  1229. package/dist/esm/api/types/CustomerQueryRecordsCustomerConsent.d.mts +7 -0
  1230. package/dist/esm/api/types/CustomerQueryRecordsCustomerConsentECommunication.d.mts +8 -0
  1231. package/dist/esm/api/types/CustomerQueryRecordsCustomerConsentSms.d.mts +8 -0
  1232. package/dist/esm/api/types/CustomerStatus.d.mts +2 -2
  1233. package/dist/esm/api/types/Customeridtrans.d.mts +3 -1
  1234. package/dist/esm/api/types/CvvResponse.d.mts +2 -1
  1235. package/dist/esm/api/types/CvvResponseText.d.mts +2 -1
  1236. package/dist/esm/api/types/Dbaname.d.mts +2 -1
  1237. package/dist/esm/api/types/DeleteItemResponse.d.mts +5 -0
  1238. package/dist/esm/api/types/DeleteOrganizationResponse.d.mts +7 -0
  1239. package/dist/esm/api/types/DeletePaymentMethodDomainResponse.d.mts +8 -0
  1240. package/dist/esm/api/types/DeletePayoutSubscriptionResponse.d.mts +14 -0
  1241. package/dist/esm/api/types/DeleteUserResponse.d.mts +4 -0
  1242. package/dist/esm/api/types/Descriptor.d.mts +3 -1
  1243. package/dist/esm/api/types/DocumentSection.d.mts +1 -16
  1244. package/dist/esm/api/types/DocumentSectionTermsAndConditions.d.mts +5 -0
  1245. package/dist/esm/api/types/DocumentSectionTermsAndConditionsTcLinksItem.d.mts +4 -0
  1246. package/dist/esm/api/types/DomainName.d.mts +2 -1
  1247. package/dist/esm/api/types/EditBillResponse.d.mts +16 -0
  1248. package/dist/esm/api/types/EditMfaUserResponse.d.mts +5 -0
  1249. package/dist/esm/api/types/EditOrganizationResponse.d.mts +9 -0
  1250. package/dist/esm/api/types/Ein.d.mts +1 -1
  1251. package/dist/esm/api/types/EntityType.d.mts +4 -3
  1252. package/dist/esm/api/types/Entry.d.mts +2 -1
  1253. package/dist/esm/api/types/EntrypageId.d.mts +2 -1
  1254. package/dist/esm/api/types/ExpectedProcessingDateTime.d.mts +1 -1
  1255. package/dist/esm/api/types/ExportFormat.d.mts +6 -3
  1256. package/dist/esm/api/types/ExportFormat.mjs +6 -3
  1257. package/dist/esm/api/types/ExternalPaypointId.d.mts +1 -1
  1258. package/dist/esm/api/types/ExternalProcessorInformation.d.mts +1 -1
  1259. package/dist/esm/api/types/FileContent.d.mts +7 -18
  1260. package/dist/esm/api/types/FileContent.mjs +1 -14
  1261. package/dist/esm/api/types/FileContentFtype.d.mts +12 -0
  1262. package/dist/esm/api/types/FileContentFtype.mjs +12 -0
  1263. package/dist/esm/api/types/FileContentImageOnly.d.mts +10 -0
  1264. package/dist/esm/api/types/Finishtype.d.mts +2 -2
  1265. package/dist/esm/api/types/ForceCustomerCreation.d.mts +3 -1
  1266. package/dist/esm/api/types/Frequency.d.mts +4 -1
  1267. package/dist/esm/api/types/Frequency.mjs +4 -1
  1268. package/dist/esm/api/types/Frequencynotification.d.mts +1 -16
  1269. package/dist/esm/api/types/Frequencynotification.mjs +1 -16
  1270. package/dist/esm/api/types/Gatewayfield.d.mts +1 -1
  1271. package/dist/esm/api/types/GeneralEvents.d.mts +1 -1
  1272. package/dist/esm/api/types/GetBasicEntryByIdResponse.d.mts +8 -0
  1273. package/dist/esm/api/types/GetBasicEntryResponse.d.mts +8 -0
  1274. package/dist/esm/api/types/GetBillResponse.d.mts +12 -0
  1275. package/dist/esm/api/types/GetEntryConfigResponse.d.mts +8 -0
  1276. package/dist/esm/api/types/GetInvoiceRecord.d.mts +54 -0
  1277. package/dist/esm/api/types/GetMethodResponse.d.mts +6 -0
  1278. package/dist/esm/api/types/GetMethodResponseResponseData.d.mts +32 -0
  1279. package/dist/esm/api/types/GetMethodResponseResponseDataCustomersItem.d.mts +41 -0
  1280. package/dist/esm/api/types/GetMethodResponseResponseDataVendorsItem.d.mts +93 -0
  1281. package/dist/esm/api/types/GetPaidResponseData.d.mts +16 -0
  1282. package/dist/esm/api/types/GetPayLinkFromIdResponse.d.mts +4 -0
  1283. package/dist/esm/api/types/GetPayLinkFromIdResponseResponseData.d.mts +2 -0
  1284. package/dist/esm/api/types/GetPayoutSubscriptionResponse.d.mts +10 -0
  1285. package/dist/esm/api/types/GooglePayData.d.mts +5 -2
  1286. package/dist/esm/api/types/GooglePayMetadata.d.mts +10 -3
  1287. package/dist/esm/api/types/GooglePayPaypointRegistrationData.d.mts +1 -1
  1288. package/dist/esm/api/types/GreaterValueAllowed.d.mts +2 -1
  1289. package/dist/esm/api/types/HasVcardTransactions.d.mts +3 -0
  1290. package/dist/esm/api/types/Highticketamt.d.mts +1 -1
  1291. package/dist/esm/api/types/Holdername.d.mts +1 -1
  1292. package/dist/esm/api/types/IdempotencyKey.d.mts +5 -1
  1293. package/dist/esm/api/types/Identifierfields.d.mts +1 -1
  1294. package/dist/esm/api/types/Idpaypoint.d.mts +1 -1
  1295. package/dist/esm/api/types/Initiator.d.mts +1 -7
  1296. package/dist/esm/api/types/InternalReferenceId.d.mts +1 -1
  1297. package/dist/esm/api/types/InvoiceAmount.d.mts +1 -1
  1298. package/dist/esm/api/types/InvoiceDataRequest.d.mts +9 -0
  1299. package/dist/esm/api/types/InvoiceNumber.d.mts +1 -1
  1300. package/dist/esm/api/types/InvoiceNumberResponse.d.mts +10 -0
  1301. package/dist/esm/api/types/InvoiceResponseWithoutData.d.mts +13 -0
  1302. package/dist/esm/api/types/InvoiceType.d.mts +2 -1
  1303. package/dist/esm/api/types/Invoicestatus.d.mts +1 -9
  1304. package/dist/esm/api/types/IpAddress.d.mts +1 -1
  1305. package/dist/esm/api/types/IsSameDayAch.d.mts +1 -2
  1306. package/dist/esm/api/types/IsSuccess.d.mts +2 -1
  1307. package/dist/esm/api/types/JobStatus.d.mts +7 -7
  1308. package/dist/esm/api/types/JobStatus.mjs +6 -1
  1309. package/dist/esm/api/types/Language.d.mts +1 -3
  1310. package/dist/esm/api/types/LineItem.d.mts +1 -1
  1311. package/dist/esm/api/types/LineItemQueryRecord.d.mts +1 -1
  1312. package/dist/esm/api/types/LinkData.d.mts +13 -12
  1313. package/dist/esm/api/types/ListOrganizationsResponse.d.mts +5 -0
  1314. package/dist/esm/api/types/ListPaymentMethodDomainsResponse.d.mts +5 -0
  1315. package/dist/esm/api/types/LogoutUserResponse.d.mts +5 -0
  1316. package/dist/esm/api/types/Maskedaccount.d.mts +2 -1
  1317. package/dist/esm/api/types/MaxTicket.d.mts +2 -1
  1318. package/dist/esm/api/types/Mcc.d.mts +3 -1
  1319. package/dist/esm/api/types/MethodElement.d.mts +1 -88
  1320. package/dist/esm/api/types/MethodElement.mjs +1 -73
  1321. package/dist/esm/api/types/MethodElementOut.d.mts +21 -0
  1322. package/dist/esm/api/types/MethodElementSettings.d.mts +7 -0
  1323. package/dist/esm/api/types/MethodElementSettingsApplePay.d.mts +9 -0
  1324. package/dist/esm/api/types/MethodElementSettingsApplePayButtonStyle.d.mts +11 -0
  1325. package/dist/esm/api/types/MethodElementSettingsApplePayButtonStyle.mjs +11 -0
  1326. package/dist/esm/api/types/MethodElementSettingsApplePayButtonType.d.mts +21 -0
  1327. package/dist/esm/api/types/MethodElementSettingsApplePayButtonType.mjs +21 -0
  1328. package/dist/esm/api/types/MethodElementSettingsApplePayLanguage.d.mts +47 -0
  1329. package/dist/esm/api/types/MethodElementSettingsApplePayLanguage.mjs +47 -0
  1330. package/dist/esm/api/types/MethodQueryRecords.d.mts +27 -11
  1331. package/dist/esm/api/types/MethodReferenceId.d.mts +3 -1
  1332. package/dist/esm/api/types/MfaValidationCode.d.mts +2 -1
  1333. package/dist/esm/api/types/MigratePaypointResponse.d.mts +6 -0
  1334. package/dist/esm/api/types/MinTicket.d.mts +2 -1
  1335. package/dist/esm/api/types/ModifyApprovalBillResponse.d.mts +11 -0
  1336. package/dist/esm/api/types/NetAmountstring.d.mts +1 -1
  1337. package/dist/esm/api/types/NotificationContent.d.mts +3 -105
  1338. package/dist/esm/api/types/NotificationContent.mjs +1 -100
  1339. package/dist/esm/api/types/NotificationContentEventType.d.mts +83 -0
  1340. package/dist/esm/api/types/NotificationContentEventType.mjs +83 -0
  1341. package/dist/esm/api/types/NotificationContentFileFormat.d.mts +10 -0
  1342. package/dist/esm/api/types/NotificationContentFileFormat.mjs +10 -0
  1343. package/dist/esm/api/types/NotificationContentReportName.d.mts +12 -0
  1344. package/dist/esm/api/types/NotificationContentReportName.mjs +12 -0
  1345. package/dist/esm/api/types/NotificationId.d.mts +2 -1
  1346. package/dist/esm/api/types/NotificationLogDetail.d.mts +6 -0
  1347. package/dist/esm/api/types/NotificationReportRequest.d.mts +4 -57
  1348. package/dist/esm/api/types/NotificationReportRequest.mjs +1 -34
  1349. package/dist/esm/api/types/NotificationReportRequestContent.d.mts +23 -0
  1350. package/dist/esm/api/types/NotificationReportRequestContent.mjs +8 -0
  1351. package/dist/esm/api/types/NotificationReportRequestContentFileFormat.d.mts +7 -0
  1352. package/dist/esm/api/types/NotificationReportRequestContentFileFormat.mjs +7 -0
  1353. package/dist/esm/api/types/NotificationReportRequestContentReportName.d.mts +8 -0
  1354. package/dist/esm/api/types/NotificationReportRequestContentReportName.mjs +8 -0
  1355. package/dist/esm/api/types/NotificationReportRequestFrequency.d.mts +11 -0
  1356. package/dist/esm/api/types/NotificationReportRequestFrequency.mjs +11 -0
  1357. package/dist/esm/api/types/NotificationReportRequestMethod.d.mts +13 -0
  1358. package/dist/esm/api/types/NotificationReportRequestMethod.mjs +13 -0
  1359. package/dist/esm/api/types/NotificationRequest.d.mts +7 -0
  1360. package/dist/esm/api/types/NotificationStandardRequest.d.mts +5 -162
  1361. package/dist/esm/api/types/NotificationStandardRequest.mjs +1 -145
  1362. package/dist/esm/api/types/NotificationStandardRequestContent.d.mts +11 -0
  1363. package/dist/esm/api/types/NotificationStandardRequestContentEventType.d.mts +131 -0
  1364. package/dist/esm/api/types/NotificationStandardRequestContentEventType.mjs +131 -0
  1365. package/dist/esm/api/types/NotificationStandardRequestFrequency.d.mts +5 -0
  1366. package/dist/esm/api/types/NotificationStandardRequestFrequency.mjs +5 -0
  1367. package/dist/esm/api/types/NotificationStandardRequestMethod.d.mts +15 -0
  1368. package/dist/esm/api/types/NotificationStandardRequestMethod.mjs +15 -0
  1369. package/dist/esm/api/types/OcrResponseData.d.mts +4 -0
  1370. package/dist/esm/api/types/OcrResultData.d.mts +20 -0
  1371. package/dist/esm/api/types/OcrVendor.d.mts +34 -0
  1372. package/dist/esm/api/types/OdpSetup.d.mts +2 -9
  1373. package/dist/esm/api/types/OdpSetup.mjs +1 -8
  1374. package/dist/esm/api/types/OdpSetupProcessingRegion.d.mts +6 -0
  1375. package/dist/esm/api/types/OdpSetupProcessingRegion.mjs +6 -0
  1376. package/dist/esm/api/types/OnCreate.d.mts +5 -1
  1377. package/dist/esm/api/types/OptinStatus.d.mts +4 -7
  1378. package/dist/esm/api/types/OrgData.d.mts +0 -2
  1379. package/dist/esm/api/types/OrganizationQueryRecord.d.mts +1 -16
  1380. package/dist/esm/api/types/OrganizationQueryRecordServicesItem.d.mts +10 -0
  1381. package/dist/esm/api/types/Orgentryname.d.mts +2 -1
  1382. package/dist/esm/api/types/Orgidstring.d.mts +3 -1
  1383. package/dist/esm/api/types/OwnerEntityId.d.mts +3 -1
  1384. package/dist/esm/api/types/OwnerEntityType.d.mts +4 -3
  1385. package/dist/esm/api/types/Ownerid.d.mts +4 -2
  1386. package/dist/esm/api/types/Ownertype.d.mts +2 -2
  1387. package/dist/esm/api/types/PayMethodAch.d.mts +20 -0
  1388. package/dist/esm/api/types/PayMethodAch.mjs +7 -0
  1389. package/dist/esm/api/types/PayMethodCloud.d.mts +8 -1
  1390. package/dist/esm/api/types/PayMethodCloud.mjs +7 -1
  1391. package/dist/esm/api/types/PayMethodCredit.d.mts +8 -1
  1392. package/dist/esm/api/types/PayMethodCredit.mjs +7 -1
  1393. package/dist/esm/api/types/PayMethodStoredMethod.d.mts +2 -10
  1394. package/dist/esm/api/types/PayMethodStoredMethod.mjs +1 -8
  1395. package/dist/esm/api/types/PayMethodStoredMethodMethod.d.mts +11 -0
  1396. package/dist/esm/api/types/PayMethodStoredMethodMethod.mjs +11 -0
  1397. package/dist/esm/api/types/PayabliApiResponse0.d.mts +1 -13
  1398. package/dist/esm/api/types/PayabliApiResponse0000.d.mts +1 -13
  1399. package/dist/esm/api/types/PayabliApiResponse0ResponseData.d.mts +11 -0
  1400. package/dist/esm/api/types/PayabliApiResponse6.d.mts +1 -1
  1401. package/dist/esm/api/types/PayabliApiResponseGeneric2Part.d.mts +4 -0
  1402. package/dist/esm/api/types/PayabliApiResponseGetPaid.d.mts +10 -0
  1403. package/dist/esm/api/types/PayabliApiResponseImport.d.mts +1 -14
  1404. package/dist/esm/api/types/PayabliApiResponseImportResponseData.d.mts +11 -0
  1405. package/dist/esm/api/types/PayabliApiResponseNotifications.d.mts +1 -9
  1406. package/dist/esm/api/types/PayabliApiResponseNotificationsResponseData.d.mts +5 -0
  1407. package/dist/esm/api/types/PayabliApiResponseOcr.d.mts +8 -0
  1408. package/dist/esm/api/types/PayabliApiResponsePaymentLinks.d.mts +7 -0
  1409. package/dist/esm/api/types/PayabliApiResponsePaymethodDelete.d.mts +1 -9
  1410. package/dist/esm/api/types/PayabliApiResponsePaymethodDeleteResponseData.d.mts +7 -0
  1411. package/dist/esm/api/types/PayabliCredentialsPascal.d.mts +1 -1
  1412. package/dist/esm/api/types/PayabliErrorBody.d.mts +28 -0
  1413. package/dist/esm/api/types/PayabliPages.d.mts +6 -6
  1414. package/dist/esm/api/types/PaymentIdString.d.mts +2 -1
  1415. package/dist/esm/api/types/PaymentMethod.d.mts +1 -10
  1416. package/dist/esm/api/types/PaymentPageRequestBodyOut.d.mts +26 -0
  1417. package/dist/esm/api/types/PayorId.d.mts +2 -1
  1418. package/dist/esm/api/types/PayoutAverageMonthlyVolume.d.mts +4 -1
  1419. package/dist/esm/api/types/PayoutAverageTicketLimit.d.mts +3 -1
  1420. package/dist/esm/api/types/PayoutCreditLimit.d.mts +3 -1
  1421. package/dist/esm/api/types/PayoutHighTicketAmount.d.mts +3 -1
  1422. package/dist/esm/api/types/PayoutScheduleDetail.d.mts +9 -0
  1423. package/dist/esm/api/types/PayoutSubscriptionQueryRecord.d.mts +57 -0
  1424. package/dist/esm/api/types/PayoutSubscriptionQueryRecordPascal.d.mts +57 -0
  1425. package/dist/esm/api/types/PaypointData.d.mts +21 -21
  1426. package/dist/esm/api/types/Paypointstatus.d.mts +2 -3
  1427. package/dist/esm/api/types/PciAttestation.d.mts +2 -1
  1428. package/dist/esm/api/types/PendingFeeAmount.d.mts +9 -3
  1429. package/dist/esm/api/types/PolicyId.d.mts +3 -1
  1430. package/dist/esm/api/types/PushPayLinkRequest.d.mts +2 -10
  1431. package/dist/esm/api/types/PushPayLinkRequestEmail.d.mts +10 -0
  1432. package/dist/esm/api/types/PushPayLinkRequestSms.d.mts +1 -0
  1433. package/dist/esm/api/types/QueryBatchesDetailResponse.d.mts +8 -0
  1434. package/dist/esm/api/types/QueryBatchesOutResponse.d.mts +1 -59
  1435. package/dist/esm/api/types/QueryBatchesOutResponseRecordsItem.d.mts +54 -0
  1436. package/dist/esm/api/types/QueryBatchesResponse.d.mts +8 -0
  1437. package/dist/esm/api/types/QueryBatchesResponseRecordsItem.d.mts +52 -0
  1438. package/dist/esm/api/types/QueryBoardingLinksResponse.d.mts +1 -22
  1439. package/dist/esm/api/types/QueryBoardingLinksResponseRecordsItem.d.mts +14 -0
  1440. package/dist/esm/api/types/QueryChargebacksResponse.d.mts +1 -62
  1441. package/dist/esm/api/types/QueryChargebacksResponseRecordsItem.d.mts +57 -0
  1442. package/dist/esm/api/types/QueryDeviceResponse.d.mts +8 -0
  1443. package/dist/esm/api/types/QueryEntrypointResponse.d.mts +1 -64
  1444. package/dist/esm/api/types/QueryEntrypointResponseRecordsItem.d.mts +59 -0
  1445. package/dist/esm/api/types/QueryInvoiceResponse.d.mts +5 -0
  1446. package/dist/esm/api/types/QueryInvoiceResponseRecordsItem.d.mts +72 -0
  1447. package/dist/esm/api/types/QueryPayoutSubscriptionResponse.d.mts +8 -0
  1448. package/dist/esm/api/types/QueryPayoutTransaction.d.mts +2 -182
  1449. package/dist/esm/api/types/QueryPayoutTransactionRecordsItem.d.mts +58 -0
  1450. package/dist/esm/api/types/QueryPayoutTransactionRecordsItemPaymentData.d.mts +23 -0
  1451. package/dist/esm/api/types/QueryPayoutTransactionSummary.d.mts +25 -0
  1452. package/dist/esm/api/types/QueryResponseData.d.mts +0 -34
  1453. package/dist/esm/api/types/QueryResponseItems.d.mts +1 -16
  1454. package/dist/esm/api/types/QueryResponseItemsRecordsItem.d.mts +11 -0
  1455. package/dist/esm/api/types/QueryResponseNotificationReports.d.mts +1 -15
  1456. package/dist/esm/api/types/QueryResponseNotificationReportsRecordsItem.d.mts +10 -0
  1457. package/dist/esm/api/types/QueryResponseNotifications.d.mts +1 -25
  1458. package/dist/esm/api/types/QueryResponseNotificationsRecordsItem.d.mts +20 -0
  1459. package/dist/esm/api/types/QueryResponseSettlements.d.mts +2 -220
  1460. package/dist/esm/api/types/QueryResponseSettlementsRecordsItem.d.mts +57 -0
  1461. package/dist/esm/api/types/QueryResponseSettlementsSummary.d.mts +22 -0
  1462. package/dist/esm/api/types/QueryResponseTransactions.d.mts +0 -74
  1463. package/dist/esm/api/types/QueryTransactionEvents.d.mts +2 -7
  1464. package/dist/esm/api/types/QueryTransactionEventsEventData.d.mts +5 -0
  1465. package/dist/esm/api/types/QueryTransferDetailResponse.d.mts +7 -0
  1466. package/dist/esm/api/types/QueryTransferSummary.d.mts +48 -0
  1467. package/dist/esm/api/types/ReceiptResponse.d.mts +9 -0
  1468. package/dist/esm/api/types/RecipientEmailNotification.d.mts +4 -1
  1469. package/dist/esm/api/types/RefundResponse.d.mts +7 -0
  1470. package/dist/esm/api/types/RefundWithInstructionsResponse.d.mts +7 -0
  1471. package/dist/esm/api/types/ReissuePaymentMethod.d.mts +20 -0
  1472. package/dist/esm/api/types/ReissuePayoutResponse.d.mts +7 -0
  1473. package/dist/esm/api/types/ReissuePayoutResponseData.d.mts +8 -0
  1474. package/dist/esm/api/types/RemitEmail.d.mts +2 -1
  1475. package/dist/esm/api/types/Remitaddress1.d.mts +2 -1
  1476. package/dist/esm/api/types/Remitaddress2.d.mts +2 -1
  1477. package/dist/esm/api/types/Remitcity.d.mts +2 -1
  1478. package/dist/esm/api/types/Remitcountry.d.mts +2 -1
  1479. package/dist/esm/api/types/Remitstate.d.mts +3 -1
  1480. package/dist/esm/api/types/Remitzip.d.mts +3 -1
  1481. package/dist/esm/api/types/RemoveDeviceResponse.d.mts +9 -0
  1482. package/dist/esm/api/types/RemoveSubscriptionResponse.d.mts +14 -0
  1483. package/dist/esm/api/types/RepCode.d.mts +2 -1
  1484. package/dist/esm/api/types/RepName.d.mts +2 -1
  1485. package/dist/esm/api/types/RepOffice.d.mts +3 -1
  1486. package/dist/esm/api/types/ReplyToEmail.d.mts +3 -1
  1487. package/dist/esm/api/types/RequestCreditPaymentMethod.d.mts +21 -0
  1488. package/dist/esm/api/types/RequestCreditPaymentMethod.mjs +8 -0
  1489. package/dist/esm/api/types/RequestOutAuthorizeInvoiceData.d.mts +18 -0
  1490. package/dist/esm/api/types/RequestOutAuthorizePaymentDetails.d.mts +15 -0
  1491. package/dist/esm/api/types/RequestOutAuthorizeVendorBillingData.d.mts +11 -0
  1492. package/dist/esm/api/types/RequestOutAuthorizeVendorData.d.mts +38 -0
  1493. package/dist/esm/api/types/RequestPaymentValidatePaymentMethod.d.mts +11 -0
  1494. package/dist/esm/api/types/RequestPaymentValidatePaymentMethodMethod.d.mts +6 -0
  1495. package/dist/esm/api/types/RequestPaymentValidatePaymentMethodMethod.mjs +6 -0
  1496. package/dist/esm/api/types/RequestSchedulePaymentMethod.d.mts +5 -0
  1497. package/dist/esm/api/types/RequestSchedulePaymentMethodInitiator.d.mts +10 -0
  1498. package/dist/esm/api/types/RequestTokenStorage.d.mts +19 -0
  1499. package/dist/esm/api/types/RequestTokenStoragePaymentMethod.d.mts +5 -0
  1500. package/dist/esm/api/types/ResponseDataRefunds.d.mts +16 -0
  1501. package/dist/esm/api/types/Responsecode.d.mts +2 -1
  1502. package/dist/esm/api/types/ResultCode.d.mts +3 -3
  1503. package/dist/esm/api/types/ResultCodeText.d.mts +3 -1
  1504. package/dist/esm/api/types/ResultCodev2.d.mts +3 -1
  1505. package/dist/esm/api/types/Resulttext.d.mts +3 -1
  1506. package/dist/esm/api/types/Resumable.d.mts +3 -1
  1507. package/dist/esm/api/types/RetrievalId.d.mts +1 -1
  1508. package/dist/esm/api/types/ReverseResponse.d.mts +9 -0
  1509. package/dist/esm/api/types/RiskAction.d.mts +1 -1
  1510. package/dist/esm/api/types/RiskActionCode.d.mts +1 -1
  1511. package/dist/esm/api/types/RiskFlagged.d.mts +1 -1
  1512. package/dist/esm/api/types/RiskFlaggedOn.d.mts +1 -1
  1513. package/dist/esm/api/types/RiskReason.d.mts +1 -1
  1514. package/dist/esm/api/types/RiskStatus.d.mts +1 -1
  1515. package/dist/esm/api/types/SaveIfSuccess.d.mts +3 -1
  1516. package/dist/esm/api/types/ScheduleDetail.d.mts +15 -3
  1517. package/dist/esm/api/types/SendInvoiceResponse.d.mts +5 -0
  1518. package/dist/esm/api/types/Sequence.d.mts +11 -4
  1519. package/dist/esm/api/types/SetApprovedBillResponse.d.mts +11 -0
  1520. package/dist/esm/api/types/SettlementStatus.d.mts +3 -1
  1521. package/dist/esm/api/types/SettlementStatusPayout.d.mts +3 -1
  1522. package/dist/esm/api/types/Shippingzip.d.mts +3 -1
  1523. package/dist/esm/api/types/SignDate.d.mts +1 -1
  1524. package/dist/esm/api/types/SignerAcceptance.d.mts +2 -1
  1525. package/dist/esm/api/types/SignerAddress1.d.mts +2 -1
  1526. package/dist/esm/api/types/SignerCountry.d.mts +2 -1
  1527. package/dist/esm/api/types/SignerData.d.mts +0 -24
  1528. package/dist/esm/api/types/SignerZip.d.mts +1 -1
  1529. package/dist/esm/api/types/Signeraddress.d.mts +2 -1
  1530. package/dist/esm/api/types/SplitCount.d.mts +2 -1
  1531. package/dist/esm/api/types/StatBasicExtendedQueryRecord.d.mts +76 -0
  1532. package/dist/esm/api/types/Statusnotification.d.mts +3 -2
  1533. package/dist/esm/api/types/StoredMethodUsageType.d.mts +13 -5
  1534. package/dist/esm/api/types/Storedmethodid.d.mts +3 -1
  1535. package/dist/esm/api/types/Subdomain.d.mts +2 -1
  1536. package/dist/esm/api/types/SubscriptionQueryRecords.d.mts +2 -1
  1537. package/dist/esm/api/types/SubscriptionType.d.mts +11 -0
  1538. package/dist/esm/api/types/SubscriptionType.mjs +11 -0
  1539. package/dist/esm/api/types/Target.d.mts +6 -3
  1540. package/dist/esm/api/types/Taxfillname.d.mts +2 -1
  1541. package/dist/esm/api/types/Terms.d.mts +68 -46
  1542. package/dist/esm/api/types/Terms.mjs +69 -1
  1543. package/dist/esm/api/types/Ticketamt.d.mts +3 -1
  1544. package/dist/esm/api/types/TokenizeAch.d.mts +13 -0
  1545. package/dist/esm/api/types/TokenizeCard.d.mts +10 -0
  1546. package/dist/esm/api/types/TransRequestBody.d.mts +19 -0
  1547. package/dist/esm/api/types/TransStatus.d.mts +3 -1
  1548. package/dist/esm/api/types/TransactionDetailCustomer.d.mts +28 -0
  1549. package/dist/esm/api/types/TransactionDetailInvoiceData.d.mts +38 -0
  1550. package/dist/esm/api/types/TransactionDetailPaymentData.d.mts +19 -0
  1551. package/dist/esm/api/types/TransactionDetailPaymentDetails.d.mts +22 -0
  1552. package/dist/esm/api/types/TransactionDetailRecord.d.mts +58 -0
  1553. package/dist/esm/api/types/TransactionDetailResponseData.d.mts +24 -0
  1554. package/dist/esm/api/types/Transfer.d.mts +0 -45
  1555. package/dist/esm/api/types/TransferDetailRecord.d.mts +114 -0
  1556. package/dist/esm/api/types/TransferOutDetailBill.d.mts +36 -0
  1557. package/dist/esm/api/types/TransferOutDetailBill.mjs +2 -0
  1558. package/dist/esm/api/types/TransferOutDetailBillAttachment.mjs +2 -0
  1559. package/dist/esm/api/types/TransferOutDetailCheckData.mjs +2 -0
  1560. package/dist/esm/api/types/TransferOutDetailEvent.mjs +2 -0
  1561. package/dist/esm/api/types/TransferOutDetailPaymentData.mjs +2 -0
  1562. package/dist/esm/api/types/TransferOutDetailQueryResponse.d.mts +10 -0
  1563. package/dist/esm/api/types/TransferOutDetailQueryResponse.mjs +2 -0
  1564. package/dist/esm/api/types/TransferOutDetailRecord.d.mts +132 -0
  1565. package/dist/esm/api/types/TransferOutDetailRecord.mjs +2 -0
  1566. package/dist/esm/api/types/TransferOutDetailVendor.d.mts +96 -0
  1567. package/dist/esm/api/types/TransferOutDetailVendor.mjs +2 -0
  1568. package/dist/esm/api/types/TransferOutDetailVendorBillingData.mjs +2 -0
  1569. package/dist/esm/api/types/TransferOutEventData.mjs +2 -0
  1570. package/dist/esm/api/types/TransferOutMessage.d.mts +22 -0
  1571. package/dist/esm/api/types/TransferOutMessage.mjs +2 -0
  1572. package/dist/esm/api/types/TransferOutMessageProperties.mjs +2 -0
  1573. package/dist/esm/api/types/TransferOutQueryResponse.d.mts +10 -0
  1574. package/dist/esm/api/types/TransferOutQueryResponse.mjs +2 -0
  1575. package/dist/esm/api/types/TransferOutRecord.d.mts +74 -0
  1576. package/dist/esm/api/types/TransferOutRecord.mjs +2 -0
  1577. package/dist/esm/api/types/TransferOutSummary.mjs +2 -0
  1578. package/dist/esm/api/types/TransferQueryResponse.d.mts +0 -52
  1579. package/dist/esm/api/types/TransferSummary.d.mts +0 -8
  1580. package/dist/esm/api/types/TypeResult.mjs +2 -0
  1581. package/dist/esm/api/types/UnderWritingMethod.d.mts +8 -3
  1582. package/dist/esm/api/types/UnderWritingMethod.mjs +8 -3
  1583. package/dist/esm/api/types/UpdateNotificationRequest.d.mts +2 -0
  1584. package/dist/esm/api/types/UpdateNotificationRequest.mjs +2 -0
  1585. package/dist/esm/api/types/UpdatePaymentMethodDomainRequestWallet.d.mts +4 -0
  1586. package/dist/esm/api/types/UpdatePaymentMethodDomainRequestWallet.mjs +2 -0
  1587. package/dist/esm/api/types/UpdatePayoutSubscriptionResponse.d.mts +15 -0
  1588. package/dist/esm/api/types/UpdatePayoutSubscriptionResponse.mjs +2 -0
  1589. package/dist/esm/api/types/UpdateSubscriptionResponse.d.mts +15 -0
  1590. package/dist/esm/api/types/UpdateSubscriptionResponse.mjs +2 -0
  1591. package/dist/esm/api/types/UsrStatus.d.mts +5 -4
  1592. package/dist/esm/api/types/V2BadRequestError.d.mts +22 -0
  1593. package/dist/esm/api/types/V2BadRequestError.mjs +2 -0
  1594. package/dist/esm/api/types/V2BadRequestErrorDetail.mjs +2 -0
  1595. package/dist/esm/api/types/V2DeclinedTransactionResponseWrapper.d.mts +13 -0
  1596. package/dist/esm/api/types/V2DeclinedTransactionResponseWrapper.mjs +2 -0
  1597. package/dist/esm/api/types/V2InternalServerError.d.mts +13 -0
  1598. package/dist/esm/api/types/V2InternalServerError.mjs +2 -0
  1599. package/dist/esm/api/types/V2ResponseAction.mjs +2 -0
  1600. package/dist/esm/api/types/V2ResponseCode.mjs +2 -0
  1601. package/dist/esm/api/types/V2ResponseExplanation.mjs +2 -0
  1602. package/dist/esm/api/types/V2ResponseReason.mjs +2 -0
  1603. package/dist/esm/api/types/V2TransactionDetailResponseData.d.mts +25 -0
  1604. package/dist/esm/api/types/V2TransactionDetailResponseData.mjs +2 -0
  1605. package/dist/esm/api/types/V2TransactionDetails.d.mts +70 -0
  1606. package/dist/esm/api/types/V2TransactionDetails.mjs +2 -0
  1607. package/dist/esm/api/types/V2TransactionResponseWrapper.d.mts +13 -0
  1608. package/dist/esm/api/types/V2TransactionResponseWrapper.mjs +2 -0
  1609. package/dist/esm/api/types/VCardCardType.d.mts +3 -2
  1610. package/dist/esm/api/types/VCardGetResponse.d.mts +56 -0
  1611. package/dist/esm/api/types/VCardGetResponse.mjs +2 -0
  1612. package/dist/esm/api/types/VCardGetResponseAssociatedVendor.d.mts +85 -0
  1613. package/dist/esm/api/types/VCardGetResponseAssociatedVendor.mjs +2 -0
  1614. package/dist/esm/api/types/VCardGetResponseAssociatedVendorBillingData.d.mts +33 -0
  1615. package/dist/esm/api/types/VCardGetResponseAssociatedVendorBillingData.mjs +2 -0
  1616. package/dist/esm/api/types/VCardGetResponseAssociatedVendorSummary.d.mts +37 -0
  1617. package/dist/esm/api/types/VCardGetResponseAssociatedVendorSummary.mjs +2 -0
  1618. package/dist/esm/api/types/VCardGetResponseContact.d.mts +13 -0
  1619. package/dist/esm/api/types/VCardGetResponseContact.mjs +2 -0
  1620. package/dist/esm/api/types/VCardRecord.d.mts +0 -42
  1621. package/dist/esm/api/types/VCardTransactionQueryResponse.d.mts +8 -0
  1622. package/dist/esm/api/types/VCardTransactionQueryResponse.mjs +2 -0
  1623. package/dist/esm/api/types/VCardTransactionRecord.d.mts +55 -0
  1624. package/dist/esm/api/types/VCardTransactionRecord.mjs +2 -0
  1625. package/dist/esm/api/types/ValidateResponse.d.mts +9 -0
  1626. package/dist/esm/api/types/ValidateResponse.mjs +2 -0
  1627. package/dist/esm/api/types/ValidateResponseData.d.mts +14 -0
  1628. package/dist/esm/api/types/ValidateResponseData.mjs +2 -0
  1629. package/dist/esm/api/types/VendorCheckNumber.d.mts +5 -1
  1630. package/dist/esm/api/types/VendorData.d.mts +0 -1
  1631. package/dist/esm/api/types/VendorDataRequest.mjs +2 -0
  1632. package/dist/esm/api/types/VendorDataResponse.d.mts +1 -99
  1633. package/dist/esm/api/types/VendorDataResponse.mjs +1 -10
  1634. package/dist/esm/api/types/VendorDataResponsePaymentMethod.d.mts +8 -0
  1635. package/dist/esm/api/types/VendorDataResponsePaymentMethod.mjs +8 -0
  1636. package/dist/esm/api/types/VendorEin.d.mts +2 -1
  1637. package/dist/esm/api/types/VendorEnrichResponse.d.mts +12 -0
  1638. package/dist/esm/api/types/VendorEnrichResponse.mjs +2 -0
  1639. package/dist/esm/api/types/VendorEnrichResponseData.d.mts +16 -0
  1640. package/dist/esm/api/types/VendorEnrichResponseData.mjs +2 -0
  1641. package/dist/esm/api/types/VendorEnrichmentData.d.mts +10 -0
  1642. package/dist/esm/api/types/VendorEnrichmentData.mjs +2 -0
  1643. package/dist/esm/api/types/VendorEnrichmentInvoiceScan.mjs +2 -0
  1644. package/dist/esm/api/types/VendorEnrichmentWebSearch.mjs +2 -0
  1645. package/dist/esm/api/types/VendorName1.d.mts +1 -1
  1646. package/dist/esm/api/types/VendorName2.d.mts +2 -1
  1647. package/dist/esm/api/types/VendorNumber.d.mts +2 -1
  1648. package/dist/esm/api/types/VendorPaymentMethodString.d.mts +5 -4
  1649. package/dist/esm/api/types/VendorPhone.d.mts +2 -1
  1650. package/dist/esm/api/types/VendorQueryRecord.d.mts +0 -89
  1651. package/dist/esm/api/types/VendorResponseStoredMethod.d.mts +3 -0
  1652. package/dist/esm/api/types/VendorSummary.d.mts +0 -21
  1653. package/dist/esm/api/types/Vendorstatus.d.mts +4 -7
  1654. package/dist/esm/api/types/VerifyAccountDetailsResponse.d.mts +9 -0
  1655. package/dist/esm/api/types/VerifyAccountDetailsResponse.mjs +2 -0
  1656. package/dist/esm/api/types/VoidResponse.d.mts +12 -0
  1657. package/dist/esm/api/types/VoidResponse.mjs +2 -0
  1658. package/dist/esm/api/types/VoidResponseData.d.mts +14 -0
  1659. package/dist/esm/api/types/VoidResponseData.mjs +2 -0
  1660. package/dist/esm/api/types/WalletCascade.d.mts +2 -1
  1661. package/dist/esm/api/types/WebHeaderParameter.mjs +2 -0
  1662. package/dist/esm/api/types/Website.d.mts +3 -1
  1663. package/dist/esm/api/types/Whencharged.d.mts +1 -1
  1664. package/dist/esm/api/types/Whencharged.mjs +1 -1
  1665. package/dist/esm/api/types/Whenprovided.d.mts +0 -1
  1666. package/dist/esm/api/types/Whenprovided.mjs +0 -1
  1667. package/dist/esm/api/types/index.d.mts +270 -10
  1668. package/dist/esm/api/types/index.mjs +270 -10
  1669. package/dist/esm/auth/HeaderAuthProvider.d.mts +2 -2
  1670. package/dist/esm/auth/HeaderAuthProvider.mjs +1 -1
  1671. package/dist/esm/core/auth/AuthProvider.d.mts +1 -0
  1672. package/dist/esm/core/auth/AuthProvider.mjs +6 -1
  1673. package/dist/esm/core/auth/index.d.mts +1 -1
  1674. package/dist/esm/core/auth/index.mjs +1 -0
  1675. package/dist/esm/core/fetcher/Fetcher.d.mts +6 -0
  1676. package/dist/esm/core/fetcher/Fetcher.mjs +9 -8
  1677. package/dist/esm/core/fetcher/requestWithRetries.mjs +4 -1
  1678. package/dist/esm/core/url/QueryStringBuilder.d.mts +47 -0
  1679. package/dist/esm/core/url/QueryStringBuilder.mjs +80 -0
  1680. package/dist/esm/core/url/index.d.mts +1 -0
  1681. package/dist/esm/core/url/index.mjs +1 -0
  1682. package/dist/esm/core/url/qs.d.mts +2 -1
  1683. package/dist/esm/core/url/qs.mjs +24 -12
  1684. package/dist/esm/version.d.mts +1 -1
  1685. package/dist/esm/version.mjs +1 -1
  1686. package/package.json +166 -166
  1687. package/reference.md +3855 -3814
  1688. package/dist/cjs/api/errors/ConflictError.d.ts +0 -6
  1689. package/dist/cjs/api/errors/ConflictError.js +0 -54
  1690. package/dist/cjs/api/resources/bill/types/BillOutData.d.ts +0 -40
  1691. package/dist/cjs/api/resources/bill/types/BillOutDataScheduledOptions.d.ts +0 -4
  1692. package/dist/cjs/api/resources/bill/types/BillResponse.d.ts +0 -10
  1693. package/dist/cjs/api/resources/bill/types/BillResponseData.d.ts +0 -58
  1694. package/dist/cjs/api/resources/bill/types/EditBillResponse.d.ts +0 -10
  1695. package/dist/cjs/api/resources/bill/types/GetBillResponse.d.ts +0 -12
  1696. package/dist/cjs/api/resources/bill/types/ModifyApprovalBillResponse.d.ts +0 -5
  1697. package/dist/cjs/api/resources/bill/types/SetApprovedBillResponse.d.ts +0 -5
  1698. package/dist/cjs/api/resources/bill/types/index.d.ts +0 -8
  1699. package/dist/cjs/api/resources/bill/types/index.js +0 -24
  1700. package/dist/cjs/api/resources/boarding/types/AddApplicationRequest.d.ts +0 -14
  1701. package/dist/cjs/api/resources/boarding/types/CreateApplicationFromPaypointRequest.d.ts +0 -15
  1702. package/dist/cjs/api/resources/boarding/types/CreateApplicationFromPaypointResponse.d.ts +0 -20
  1703. package/dist/cjs/api/resources/boarding/types/index.d.ts +0 -3
  1704. package/dist/cjs/api/resources/boarding/types/index.js +0 -19
  1705. package/dist/cjs/api/resources/chargeBacks/types/AddResponseResponse.d.ts +0 -5
  1706. package/dist/cjs/api/resources/chargeBacks/types/ChargeBackResponse.d.ts +0 -15
  1707. package/dist/cjs/api/resources/chargeBacks/types/ChargebackQueryRecords.d.ts +0 -66
  1708. package/dist/cjs/api/resources/chargeBacks/types/index.d.ts +0 -4
  1709. package/dist/cjs/api/resources/chargeBacks/types/index.js +0 -20
  1710. package/dist/cjs/api/resources/checkCapture/types/CheckCaptureRequest.d.ts +0 -13
  1711. package/dist/cjs/api/resources/checkCapture/types/CheckCaptureResponse.d.ts +0 -58
  1712. package/dist/cjs/api/resources/checkCapture/types/index.d.ts +0 -2
  1713. package/dist/cjs/api/resources/checkCapture/types/index.js +0 -18
  1714. package/dist/cjs/api/resources/cloud/types/AddDeviceResponse.d.ts +0 -9
  1715. package/dist/cjs/api/resources/cloud/types/RemoveDeviceResponse.d.ts +0 -9
  1716. package/dist/cjs/api/resources/cloud/types/index.d.ts +0 -2
  1717. package/dist/cjs/api/resources/cloud/types/index.js +0 -18
  1718. package/dist/cjs/api/resources/export/types/index.d.ts +0 -1
  1719. package/dist/cjs/api/resources/export/types/index.js +0 -17
  1720. package/dist/cjs/api/resources/ghostCard/types/CreateGhostCardResponse.d.ts +0 -17
  1721. package/dist/cjs/api/resources/ghostCard/types/index.d.ts +0 -2
  1722. package/dist/cjs/api/resources/ghostCard/types/index.js +0 -18
  1723. package/dist/cjs/api/resources/invoice/types/GetInvoiceRecord.d.ts +0 -54
  1724. package/dist/cjs/api/resources/invoice/types/InvoiceDataRequest.d.ts +0 -9
  1725. package/dist/cjs/api/resources/invoice/types/InvoiceNumberResponse.d.ts +0 -10
  1726. package/dist/cjs/api/resources/invoice/types/InvoiceResponseWithoutData.d.ts +0 -13
  1727. package/dist/cjs/api/resources/invoice/types/QueryInvoiceResponse.d.ts +0 -81
  1728. package/dist/cjs/api/resources/invoice/types/SendInvoiceResponse.d.ts +0 -5
  1729. package/dist/cjs/api/resources/invoice/types/index.d.ts +0 -8
  1730. package/dist/cjs/api/resources/invoice/types/index.js +0 -24
  1731. package/dist/cjs/api/resources/lineItem/types/DeleteItemResponse.d.ts +0 -5
  1732. package/dist/cjs/api/resources/lineItem/types/index.d.ts +0 -1
  1733. package/dist/cjs/api/resources/lineItem/types/index.js +0 -17
  1734. package/dist/cjs/api/resources/management/types/BankAccountVerificationDetailsResponse.d.ts +0 -31
  1735. package/dist/cjs/api/resources/management/types/VerifyAccountDetailsResponse.d.ts +0 -9
  1736. package/dist/cjs/api/resources/management/types/index.d.ts +0 -2
  1737. package/dist/cjs/api/resources/management/types/index.js +0 -18
  1738. package/dist/cjs/api/resources/moneyIn/errors/CaptureError.d.ts +0 -6
  1739. package/dist/cjs/api/resources/moneyIn/errors/CaptureError.js +0 -54
  1740. package/dist/cjs/api/resources/moneyIn/errors/InvalidTransStatusError.d.ts +0 -6
  1741. package/dist/cjs/api/resources/moneyIn/errors/InvalidTransStatusError.js +0 -54
  1742. package/dist/cjs/api/resources/moneyIn/errors/index.d.ts +0 -2
  1743. package/dist/cjs/api/resources/moneyIn/errors/index.js +0 -18
  1744. package/dist/cjs/api/resources/moneyIn/types/AuthResponse.d.ts +0 -10
  1745. package/dist/cjs/api/resources/moneyIn/types/AuthResponseResponseData.d.ts +0 -11
  1746. package/dist/cjs/api/resources/moneyIn/types/CaptureRequest.d.ts +0 -4
  1747. package/dist/cjs/api/resources/moneyIn/types/CaptureResponse.d.ts +0 -31
  1748. package/dist/cjs/api/resources/moneyIn/types/CaptureResponseData.d.ts +0 -14
  1749. package/dist/cjs/api/resources/moneyIn/types/GetPaidResponseData.d.ts +0 -16
  1750. package/dist/cjs/api/resources/moneyIn/types/InvalidTransStatusErrorType.d.ts +0 -4
  1751. package/dist/cjs/api/resources/moneyIn/types/PayabliApiResponseGetPaid.d.ts +0 -10
  1752. package/dist/cjs/api/resources/moneyIn/types/ReceiptResponse.d.ts +0 -9
  1753. package/dist/cjs/api/resources/moneyIn/types/RefundResponse.d.ts +0 -7
  1754. package/dist/cjs/api/resources/moneyIn/types/RefundWithInstructionsResponse.d.ts +0 -7
  1755. package/dist/cjs/api/resources/moneyIn/types/ResponseDataRefunds.d.ts +0 -16
  1756. package/dist/cjs/api/resources/moneyIn/types/ReverseResponse.d.ts +0 -9
  1757. package/dist/cjs/api/resources/moneyIn/types/TransRequestBody.d.ts +0 -84
  1758. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailCustomer.d.ts +0 -28
  1759. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailInvoiceData.d.ts +0 -38
  1760. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailPaymentData.d.ts +0 -19
  1761. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailPaymentDetails.d.ts +0 -22
  1762. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailRecord.d.ts +0 -58
  1763. package/dist/cjs/api/resources/moneyIn/types/TransactionDetailResponseData.d.ts +0 -24
  1764. package/dist/cjs/api/resources/moneyIn/types/ValidateResponse.d.ts +0 -9
  1765. package/dist/cjs/api/resources/moneyIn/types/ValidateResponseData.d.ts +0 -14
  1766. package/dist/cjs/api/resources/moneyIn/types/VoidResponse.d.ts +0 -12
  1767. package/dist/cjs/api/resources/moneyIn/types/VoidResponseData.d.ts +0 -14
  1768. package/dist/cjs/api/resources/moneyIn/types/index.d.ts +0 -27
  1769. package/dist/cjs/api/resources/moneyIn/types/index.js +0 -43
  1770. package/dist/cjs/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.ts +0 -156
  1771. package/dist/cjs/api/resources/moneyOutTypes/exports.d.ts +0 -1
  1772. package/dist/cjs/api/resources/moneyOutTypes/exports.js +0 -18
  1773. package/dist/cjs/api/resources/moneyOutTypes/index.d.ts +0 -1
  1774. package/dist/cjs/api/resources/moneyOutTypes/index.js +0 -17
  1775. package/dist/cjs/api/resources/moneyOutTypes/types/AuthCapturePayoutResponse.d.ts +0 -60
  1776. package/dist/cjs/api/resources/moneyOutTypes/types/AuthorizePaymentMethod.d.ts +0 -27
  1777. package/dist/cjs/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.ts +0 -103
  1778. package/dist/cjs/api/resources/moneyOutTypes/types/CaptureAllOutResponse.d.ts +0 -26
  1779. package/dist/cjs/api/resources/moneyOutTypes/types/MethodElementOut.d.ts +0 -21
  1780. package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePaymentMethod.d.ts +0 -20
  1781. package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePayoutBody.d.ts +0 -7
  1782. package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePayoutResponse.d.ts +0 -30
  1783. package/dist/cjs/api/resources/moneyOutTypes/types/VCardGetResponse.d.ts +0 -230
  1784. package/dist/cjs/api/resources/moneyOutTypes/types/index.d.ts +0 -14
  1785. package/dist/cjs/api/resources/moneyOutTypes/types/index.js +0 -30
  1786. package/dist/cjs/api/resources/notification/types/AddNotificationRequest.d.ts +0 -8
  1787. package/dist/cjs/api/resources/notification/types/UpdateNotificationRequest.d.ts +0 -2
  1788. package/dist/cjs/api/resources/notification/types/index.d.ts +0 -2
  1789. package/dist/cjs/api/resources/notification/types/index.js +0 -18
  1790. package/dist/cjs/api/resources/notificationlogs/types/NotificationLogDetail.d.ts +0 -6
  1791. package/dist/cjs/api/resources/notificationlogs/types/NotificationLogSearchRequest.d.ts +0 -14
  1792. package/dist/cjs/api/resources/notificationlogs/types/index.d.ts +0 -6
  1793. package/dist/cjs/api/resources/notificationlogs/types/index.js +0 -22
  1794. package/dist/cjs/api/resources/ocr/types/FileContentImageOnly.d.ts +0 -23
  1795. package/dist/cjs/api/resources/ocr/types/FileContentImageOnly.js +0 -18
  1796. package/dist/cjs/api/resources/ocr/types/OcrResponseData.d.ts +0 -4
  1797. package/dist/cjs/api/resources/ocr/types/OcrResultData.d.ts +0 -20
  1798. package/dist/cjs/api/resources/ocr/types/OcrVendor.d.ts +0 -34
  1799. package/dist/cjs/api/resources/ocr/types/PayabliApiResponseOcr.d.ts +0 -8
  1800. package/dist/cjs/api/resources/ocr/types/index.d.ts +0 -11
  1801. package/dist/cjs/api/resources/ocr/types/index.js +0 -27
  1802. package/dist/cjs/api/resources/organization/types/AddOrganizationResponse.d.ts +0 -7
  1803. package/dist/cjs/api/resources/organization/types/DeleteOrganizationResponse.d.ts +0 -7
  1804. package/dist/cjs/api/resources/organization/types/EditOrganizationResponse.d.ts +0 -9
  1805. package/dist/cjs/api/resources/organization/types/index.d.ts +0 -3
  1806. package/dist/cjs/api/resources/organization/types/index.js +0 -19
  1807. package/dist/cjs/api/resources/paymentLink/types/GetPayLinkFromIdResponse.d.ts +0 -8
  1808. package/dist/cjs/api/resources/paymentLink/types/PatchOutPaymentLinkRequest.d.ts +0 -12
  1809. package/dist/cjs/api/resources/paymentLink/types/PayabliApiResponsePaymentLinks.d.ts +0 -7
  1810. package/dist/cjs/api/resources/paymentLink/types/PaymentPageRequestBody.d.ts +0 -135
  1811. package/dist/cjs/api/resources/paymentLink/types/PaymentPageRequestBodyOut.d.ts +0 -88
  1812. package/dist/cjs/api/resources/paymentLink/types/index.d.ts +0 -5
  1813. package/dist/cjs/api/resources/paymentLink/types/index.js +0 -21
  1814. package/dist/cjs/api/resources/paymentMethodDomain/types/DeletePaymentMethodDomainResponse.d.ts +0 -8
  1815. package/dist/cjs/api/resources/paymentMethodDomain/types/ListPaymentMethodDomainsResponse.d.ts +0 -5
  1816. package/dist/cjs/api/resources/paymentMethodDomain/types/index.d.ts +0 -2
  1817. package/dist/cjs/api/resources/paymentMethodDomain/types/index.js +0 -18
  1818. package/dist/cjs/api/resources/payoutSubscription/types/AddPayoutSubscriptionResponse.d.ts +0 -20
  1819. package/dist/cjs/api/resources/payoutSubscription/types/DeletePayoutSubscriptionResponse.d.ts +0 -14
  1820. package/dist/cjs/api/resources/payoutSubscription/types/GetPayoutSubscriptionResponse.d.ts +0 -158
  1821. package/dist/cjs/api/resources/payoutSubscription/types/PayoutScheduleDetail.d.ts +0 -9
  1822. package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.d.ts +0 -202
  1823. package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.d.ts +0 -202
  1824. package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionRequestBody.d.ts +0 -69
  1825. package/dist/cjs/api/resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.d.ts +0 -162
  1826. package/dist/cjs/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.d.ts +0 -9
  1827. package/dist/cjs/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.d.ts +0 -15
  1828. package/dist/cjs/api/resources/payoutSubscription/types/index.d.ts +0 -12
  1829. package/dist/cjs/api/resources/payoutSubscription/types/index.js +0 -28
  1830. package/dist/cjs/api/resources/paypoint/types/GetBasicEntryByIdResponse.d.ts +0 -8
  1831. package/dist/cjs/api/resources/paypoint/types/GetBasicEntryResponse.d.ts +0 -8
  1832. package/dist/cjs/api/resources/paypoint/types/GetEntryConfigResponse.d.ts +0 -8
  1833. package/dist/cjs/api/resources/paypoint/types/MigratePaypointResponse.d.ts +0 -6
  1834. package/dist/cjs/api/resources/paypoint/types/NotificationRequest.d.ts +0 -7
  1835. package/dist/cjs/api/resources/paypoint/types/PaypointMoveRequest.d.ts +0 -8
  1836. package/dist/cjs/api/resources/paypoint/types/index.d.ts +0 -7
  1837. package/dist/cjs/api/resources/paypoint/types/index.js +0 -23
  1838. package/dist/cjs/api/resources/queryTypes/exports.d.ts +0 -1
  1839. package/dist/cjs/api/resources/queryTypes/exports.js +0 -18
  1840. package/dist/cjs/api/resources/queryTypes/index.d.ts +0 -1
  1841. package/dist/cjs/api/resources/queryTypes/index.js +0 -17
  1842. package/dist/cjs/api/resources/queryTypes/types/ListOrganizationsResponse.d.ts +0 -5
  1843. package/dist/cjs/api/resources/queryTypes/types/QueryBatchesDetailResponse.d.ts +0 -240
  1844. package/dist/cjs/api/resources/queryTypes/types/QueryBatchesResponse.d.ts +0 -197
  1845. package/dist/cjs/api/resources/queryTypes/types/QueryDeviceResponse.d.ts +0 -45
  1846. package/dist/cjs/api/resources/queryTypes/types/QueryTransferDetailResponse.d.ts +0 -125
  1847. package/dist/cjs/api/resources/queryTypes/types/QueryTransferResponse.d.ts +0 -7
  1848. package/dist/cjs/api/resources/queryTypes/types/QueryTransferSummary.d.ts +0 -48
  1849. package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailBill.d.ts +0 -36
  1850. package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailQueryResponse.d.ts +0 -10
  1851. package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailRecord.d.ts +0 -132
  1852. package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailVendor.d.ts +0 -96
  1853. package/dist/cjs/api/resources/queryTypes/types/TransferOutMessage.d.ts +0 -22
  1854. package/dist/cjs/api/resources/queryTypes/types/TransferOutQueryResponse.d.ts +0 -10
  1855. package/dist/cjs/api/resources/queryTypes/types/TransferOutRecord.d.ts +0 -74
  1856. package/dist/cjs/api/resources/queryTypes/types/VCardTransactionQueryResponse.d.ts +0 -49
  1857. package/dist/cjs/api/resources/queryTypes/types/VCardTransactionRecord.d.ts +0 -86
  1858. package/dist/cjs/api/resources/queryTypes/types/index.d.ts +0 -28
  1859. package/dist/cjs/api/resources/queryTypes/types/index.js +0 -44
  1860. package/dist/cjs/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.ts +0 -76
  1861. package/dist/cjs/api/resources/statistic/types/index.d.ts +0 -4
  1862. package/dist/cjs/api/resources/statistic/types/index.js +0 -20
  1863. package/dist/cjs/api/resources/subscription/types/AddSubscriptionResponse.d.ts +0 -19
  1864. package/dist/cjs/api/resources/subscription/types/RemoveSubscriptionResponse.d.ts +0 -14
  1865. package/dist/cjs/api/resources/subscription/types/SubscriptionRequestBody.d.ts +0 -39
  1866. package/dist/cjs/api/resources/subscription/types/UpdateSubscriptionResponse.d.ts +0 -15
  1867. package/dist/cjs/api/resources/subscription/types/index.d.ts +0 -5
  1868. package/dist/cjs/api/resources/subscription/types/index.js +0 -21
  1869. package/dist/cjs/api/resources/tokenStorage/types/AddMethodResponse.d.ts +0 -19
  1870. package/dist/cjs/api/resources/tokenStorage/types/GetMethodResponse.d.ts +0 -179
  1871. package/dist/cjs/api/resources/tokenStorage/types/RequestTokenStorage.d.ts +0 -19
  1872. package/dist/cjs/api/resources/tokenStorage/types/RequestTokenStoragePaymentMethod.d.ts +0 -14
  1873. package/dist/cjs/api/resources/tokenStorage/types/TokenizeAch.d.ts +0 -13
  1874. package/dist/cjs/api/resources/tokenStorage/types/TokenizeCard.d.ts +0 -10
  1875. package/dist/cjs/api/resources/tokenStorage/types/index.d.ts +0 -10
  1876. package/dist/cjs/api/resources/tokenStorage/types/index.js +0 -26
  1877. package/dist/cjs/api/resources/user/types/AddUserResponse.d.ts +0 -7
  1878. package/dist/cjs/api/resources/user/types/AuthResetUserResponse.d.ts +0 -5
  1879. package/dist/cjs/api/resources/user/types/ChangePswUserResponse.d.ts +0 -5
  1880. package/dist/cjs/api/resources/user/types/DeleteUserResponse.d.ts +0 -4
  1881. package/dist/cjs/api/resources/user/types/EditMfaUserResponse.d.ts +0 -5
  1882. package/dist/cjs/api/resources/user/types/LogoutUserResponse.d.ts +0 -5
  1883. package/dist/cjs/api/resources/user/types/index.d.ts +0 -6
  1884. package/dist/cjs/api/resources/user/types/index.js +0 -22
  1885. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.d.ts +0 -6
  1886. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.js +0 -54
  1887. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.d.ts +0 -6
  1888. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.js +0 -54
  1889. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.d.ts +0 -6
  1890. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.js +0 -54
  1891. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.d.ts +0 -6
  1892. package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.js +0 -54
  1893. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.d.ts +0 -6
  1894. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.js +0 -54
  1895. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.d.ts +0 -6
  1896. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.js +0 -54
  1897. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.d.ts +0 -6
  1898. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.js +0 -54
  1899. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.d.ts +0 -6
  1900. package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.js +0 -54
  1901. package/dist/cjs/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.d.ts +0 -6
  1902. package/dist/cjs/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.js +0 -54
  1903. package/dist/cjs/api/resources/v2MoneyInTypes/errors/index.d.ts +0 -9
  1904. package/dist/cjs/api/resources/v2MoneyInTypes/errors/index.js +0 -25
  1905. package/dist/cjs/api/resources/v2MoneyInTypes/exports.d.ts +0 -1
  1906. package/dist/cjs/api/resources/v2MoneyInTypes/exports.js +0 -18
  1907. package/dist/cjs/api/resources/v2MoneyInTypes/index.d.ts +0 -2
  1908. package/dist/cjs/api/resources/v2MoneyInTypes/index.js +0 -18
  1909. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2BadRequestError.d.ts +0 -22
  1910. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.d.ts +0 -761
  1911. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2InternalServerError.d.ts +0 -21
  1912. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.d.ts +0 -65
  1913. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionDetails.d.ts +0 -1003
  1914. package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.d.ts +0 -13
  1915. package/dist/cjs/api/resources/v2MoneyInTypes/types/index.d.ts +0 -11
  1916. package/dist/cjs/api/resources/v2MoneyInTypes/types/index.js +0 -27
  1917. package/dist/cjs/api/resources/vendor/types/VendorEnrichRequest.d.ts +0 -20
  1918. package/dist/cjs/api/resources/vendor/types/VendorEnrichResponse.d.ts +0 -12
  1919. package/dist/cjs/api/resources/vendor/types/VendorEnrichResponseData.d.ts +0 -16
  1920. package/dist/cjs/api/resources/vendor/types/VendorEnrichmentData.d.ts +0 -10
  1921. package/dist/cjs/api/resources/vendor/types/index.d.ts +0 -6
  1922. package/dist/cjs/api/resources/vendor/types/index.js +0 -22
  1923. package/dist/cjs/api/types/AchPaymentMethod.d.ts +0 -9
  1924. package/dist/cjs/api/types/DeviceId.d.ts +0 -5
  1925. package/dist/cjs/api/types/PayabliApiResponseError400.d.ts +0 -23
  1926. package/dist/cjs/api/types/PayabliApiResponsePaylinks.d.ts +0 -9
  1927. package/dist/cjs/api/types/PaymentTransStatusDescription.d.ts +0 -4
  1928. package/dist/cjs/api/types/Paymentid.d.ts +0 -4
  1929. package/dist/cjs/api/types/QueryResponse.d.ts +0 -7
  1930. package/dist/cjs/api/types/TemplateContent.d.ts +0 -10
  1931. package/dist/cjs/api/types/TemplateData.d.ts +0 -14
  1932. package/dist/cjs/api/types/UnderwritingData.d.ts +0 -8
  1933. package/dist/esm/api/errors/ConflictError.d.mts +0 -6
  1934. package/dist/esm/api/errors/ConflictError.mjs +0 -17
  1935. package/dist/esm/api/resources/bill/types/BillOutData.d.mts +0 -40
  1936. package/dist/esm/api/resources/bill/types/BillOutDataScheduledOptions.d.mts +0 -4
  1937. package/dist/esm/api/resources/bill/types/BillResponse.d.mts +0 -10
  1938. package/dist/esm/api/resources/bill/types/BillResponseData.d.mts +0 -58
  1939. package/dist/esm/api/resources/bill/types/EditBillResponse.d.mts +0 -10
  1940. package/dist/esm/api/resources/bill/types/GetBillResponse.d.mts +0 -12
  1941. package/dist/esm/api/resources/bill/types/ModifyApprovalBillResponse.d.mts +0 -5
  1942. package/dist/esm/api/resources/bill/types/SetApprovedBillResponse.d.mts +0 -5
  1943. package/dist/esm/api/resources/bill/types/index.d.mts +0 -8
  1944. package/dist/esm/api/resources/bill/types/index.mjs +0 -8
  1945. package/dist/esm/api/resources/boarding/types/AddApplicationRequest.d.mts +0 -14
  1946. package/dist/esm/api/resources/boarding/types/CreateApplicationFromPaypointRequest.d.mts +0 -15
  1947. package/dist/esm/api/resources/boarding/types/CreateApplicationFromPaypointResponse.d.mts +0 -20
  1948. package/dist/esm/api/resources/boarding/types/index.d.mts +0 -3
  1949. package/dist/esm/api/resources/boarding/types/index.mjs +0 -3
  1950. package/dist/esm/api/resources/chargeBacks/types/AddResponseResponse.d.mts +0 -5
  1951. package/dist/esm/api/resources/chargeBacks/types/ChargeBackResponse.d.mts +0 -15
  1952. package/dist/esm/api/resources/chargeBacks/types/ChargebackQueryRecords.d.mts +0 -66
  1953. package/dist/esm/api/resources/chargeBacks/types/index.d.mts +0 -4
  1954. package/dist/esm/api/resources/chargeBacks/types/index.mjs +0 -4
  1955. package/dist/esm/api/resources/checkCapture/types/CheckCaptureRequest.d.mts +0 -13
  1956. package/dist/esm/api/resources/checkCapture/types/CheckCaptureResponse.d.mts +0 -58
  1957. package/dist/esm/api/resources/checkCapture/types/index.d.mts +0 -2
  1958. package/dist/esm/api/resources/checkCapture/types/index.mjs +0 -2
  1959. package/dist/esm/api/resources/cloud/types/AddDeviceResponse.d.mts +0 -9
  1960. package/dist/esm/api/resources/cloud/types/RemoveDeviceResponse.d.mts +0 -9
  1961. package/dist/esm/api/resources/cloud/types/index.d.mts +0 -2
  1962. package/dist/esm/api/resources/cloud/types/index.mjs +0 -2
  1963. package/dist/esm/api/resources/export/types/index.d.mts +0 -1
  1964. package/dist/esm/api/resources/export/types/index.mjs +0 -1
  1965. package/dist/esm/api/resources/ghostCard/types/CreateGhostCardResponse.d.mts +0 -17
  1966. package/dist/esm/api/resources/ghostCard/types/index.d.mts +0 -2
  1967. package/dist/esm/api/resources/ghostCard/types/index.mjs +0 -2
  1968. package/dist/esm/api/resources/invoice/types/GetInvoiceRecord.d.mts +0 -54
  1969. package/dist/esm/api/resources/invoice/types/InvoiceDataRequest.d.mts +0 -9
  1970. package/dist/esm/api/resources/invoice/types/InvoiceNumberResponse.d.mts +0 -10
  1971. package/dist/esm/api/resources/invoice/types/InvoiceResponseWithoutData.d.mts +0 -13
  1972. package/dist/esm/api/resources/invoice/types/QueryInvoiceResponse.d.mts +0 -81
  1973. package/dist/esm/api/resources/invoice/types/SendInvoiceResponse.d.mts +0 -5
  1974. package/dist/esm/api/resources/invoice/types/index.d.mts +0 -8
  1975. package/dist/esm/api/resources/invoice/types/index.mjs +0 -8
  1976. package/dist/esm/api/resources/lineItem/types/DeleteItemResponse.d.mts +0 -5
  1977. package/dist/esm/api/resources/lineItem/types/index.d.mts +0 -1
  1978. package/dist/esm/api/resources/lineItem/types/index.mjs +0 -1
  1979. package/dist/esm/api/resources/management/types/BankAccountVerificationDetailsResponse.d.mts +0 -31
  1980. package/dist/esm/api/resources/management/types/VerifyAccountDetailsResponse.d.mts +0 -9
  1981. package/dist/esm/api/resources/management/types/index.d.mts +0 -2
  1982. package/dist/esm/api/resources/management/types/index.mjs +0 -2
  1983. package/dist/esm/api/resources/moneyIn/errors/CaptureError.d.mts +0 -6
  1984. package/dist/esm/api/resources/moneyIn/errors/CaptureError.mjs +0 -17
  1985. package/dist/esm/api/resources/moneyIn/errors/InvalidTransStatusError.d.mts +0 -6
  1986. package/dist/esm/api/resources/moneyIn/errors/InvalidTransStatusError.mjs +0 -17
  1987. package/dist/esm/api/resources/moneyIn/errors/index.d.mts +0 -2
  1988. package/dist/esm/api/resources/moneyIn/errors/index.mjs +0 -2
  1989. package/dist/esm/api/resources/moneyIn/types/AuthResponse.d.mts +0 -10
  1990. package/dist/esm/api/resources/moneyIn/types/AuthResponseResponseData.d.mts +0 -11
  1991. package/dist/esm/api/resources/moneyIn/types/CaptureRequest.d.mts +0 -4
  1992. package/dist/esm/api/resources/moneyIn/types/CaptureResponse.d.mts +0 -31
  1993. package/dist/esm/api/resources/moneyIn/types/CaptureResponseData.d.mts +0 -14
  1994. package/dist/esm/api/resources/moneyIn/types/GetPaidResponseData.d.mts +0 -16
  1995. package/dist/esm/api/resources/moneyIn/types/InvalidTransStatusErrorType.d.mts +0 -4
  1996. package/dist/esm/api/resources/moneyIn/types/PayabliApiResponseGetPaid.d.mts +0 -10
  1997. package/dist/esm/api/resources/moneyIn/types/ReceiptResponse.d.mts +0 -9
  1998. package/dist/esm/api/resources/moneyIn/types/RefundResponse.d.mts +0 -7
  1999. package/dist/esm/api/resources/moneyIn/types/RefundWithInstructionsResponse.d.mts +0 -7
  2000. package/dist/esm/api/resources/moneyIn/types/ResponseDataRefunds.d.mts +0 -16
  2001. package/dist/esm/api/resources/moneyIn/types/ReverseResponse.d.mts +0 -9
  2002. package/dist/esm/api/resources/moneyIn/types/TransRequestBody.d.mts +0 -84
  2003. package/dist/esm/api/resources/moneyIn/types/TransactionDetailCustomer.d.mts +0 -28
  2004. package/dist/esm/api/resources/moneyIn/types/TransactionDetailInvoiceData.d.mts +0 -38
  2005. package/dist/esm/api/resources/moneyIn/types/TransactionDetailPaymentData.d.mts +0 -19
  2006. package/dist/esm/api/resources/moneyIn/types/TransactionDetailPaymentDetails.d.mts +0 -22
  2007. package/dist/esm/api/resources/moneyIn/types/TransactionDetailRecord.d.mts +0 -58
  2008. package/dist/esm/api/resources/moneyIn/types/TransactionDetailResponseData.d.mts +0 -24
  2009. package/dist/esm/api/resources/moneyIn/types/ValidateResponse.d.mts +0 -9
  2010. package/dist/esm/api/resources/moneyIn/types/ValidateResponseData.d.mts +0 -14
  2011. package/dist/esm/api/resources/moneyIn/types/VoidResponse.d.mts +0 -12
  2012. package/dist/esm/api/resources/moneyIn/types/VoidResponseData.d.mts +0 -14
  2013. package/dist/esm/api/resources/moneyIn/types/index.d.mts +0 -27
  2014. package/dist/esm/api/resources/moneyIn/types/index.mjs +0 -27
  2015. package/dist/esm/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.mts +0 -156
  2016. package/dist/esm/api/resources/moneyOutTypes/exports.d.mts +0 -1
  2017. package/dist/esm/api/resources/moneyOutTypes/exports.mjs +0 -2
  2018. package/dist/esm/api/resources/moneyOutTypes/index.d.mts +0 -1
  2019. package/dist/esm/api/resources/moneyOutTypes/index.mjs +0 -1
  2020. package/dist/esm/api/resources/moneyOutTypes/types/AuthCapturePayoutResponse.d.mts +0 -60
  2021. package/dist/esm/api/resources/moneyOutTypes/types/AuthorizePaymentMethod.d.mts +0 -27
  2022. package/dist/esm/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.mts +0 -103
  2023. package/dist/esm/api/resources/moneyOutTypes/types/CaptureAllOutResponse.d.mts +0 -26
  2024. package/dist/esm/api/resources/moneyOutTypes/types/MethodElementOut.d.mts +0 -21
  2025. package/dist/esm/api/resources/moneyOutTypes/types/ReissuePaymentMethod.d.mts +0 -20
  2026. package/dist/esm/api/resources/moneyOutTypes/types/ReissuePayoutBody.d.mts +0 -7
  2027. package/dist/esm/api/resources/moneyOutTypes/types/ReissuePayoutResponse.d.mts +0 -30
  2028. package/dist/esm/api/resources/moneyOutTypes/types/VCardGetResponse.d.mts +0 -230
  2029. package/dist/esm/api/resources/moneyOutTypes/types/index.d.mts +0 -14
  2030. package/dist/esm/api/resources/moneyOutTypes/types/index.mjs +0 -14
  2031. package/dist/esm/api/resources/notification/types/AddNotificationRequest.d.mts +0 -8
  2032. package/dist/esm/api/resources/notification/types/UpdateNotificationRequest.d.mts +0 -2
  2033. package/dist/esm/api/resources/notification/types/index.d.mts +0 -2
  2034. package/dist/esm/api/resources/notification/types/index.mjs +0 -2
  2035. package/dist/esm/api/resources/notificationlogs/types/NotificationLogDetail.d.mts +0 -6
  2036. package/dist/esm/api/resources/notificationlogs/types/NotificationLogSearchRequest.d.mts +0 -14
  2037. package/dist/esm/api/resources/notificationlogs/types/index.d.mts +0 -6
  2038. package/dist/esm/api/resources/notificationlogs/types/index.mjs +0 -6
  2039. package/dist/esm/api/resources/ocr/types/FileContentImageOnly.d.mts +0 -23
  2040. package/dist/esm/api/resources/ocr/types/FileContentImageOnly.mjs +0 -15
  2041. package/dist/esm/api/resources/ocr/types/OcrResponseData.d.mts +0 -4
  2042. package/dist/esm/api/resources/ocr/types/OcrResultData.d.mts +0 -20
  2043. package/dist/esm/api/resources/ocr/types/OcrVendor.d.mts +0 -34
  2044. package/dist/esm/api/resources/ocr/types/PayabliApiResponseOcr.d.mts +0 -8
  2045. package/dist/esm/api/resources/ocr/types/index.d.mts +0 -11
  2046. package/dist/esm/api/resources/ocr/types/index.mjs +0 -11
  2047. package/dist/esm/api/resources/organization/types/AddOrganizationResponse.d.mts +0 -7
  2048. package/dist/esm/api/resources/organization/types/DeleteOrganizationResponse.d.mts +0 -7
  2049. package/dist/esm/api/resources/organization/types/EditOrganizationResponse.d.mts +0 -9
  2050. package/dist/esm/api/resources/organization/types/index.d.mts +0 -3
  2051. package/dist/esm/api/resources/organization/types/index.mjs +0 -3
  2052. package/dist/esm/api/resources/paymentLink/types/GetPayLinkFromIdResponse.d.mts +0 -8
  2053. package/dist/esm/api/resources/paymentLink/types/PatchOutPaymentLinkRequest.d.mts +0 -12
  2054. package/dist/esm/api/resources/paymentLink/types/PayabliApiResponsePaymentLinks.d.mts +0 -7
  2055. package/dist/esm/api/resources/paymentLink/types/PaymentPageRequestBody.d.mts +0 -135
  2056. package/dist/esm/api/resources/paymentLink/types/PaymentPageRequestBodyOut.d.mts +0 -88
  2057. package/dist/esm/api/resources/paymentLink/types/index.d.mts +0 -5
  2058. package/dist/esm/api/resources/paymentLink/types/index.mjs +0 -5
  2059. package/dist/esm/api/resources/paymentMethodDomain/types/DeletePaymentMethodDomainResponse.d.mts +0 -8
  2060. package/dist/esm/api/resources/paymentMethodDomain/types/ListPaymentMethodDomainsResponse.d.mts +0 -5
  2061. package/dist/esm/api/resources/paymentMethodDomain/types/index.d.mts +0 -2
  2062. package/dist/esm/api/resources/paymentMethodDomain/types/index.mjs +0 -2
  2063. package/dist/esm/api/resources/payoutSubscription/types/AddPayoutSubscriptionResponse.d.mts +0 -20
  2064. package/dist/esm/api/resources/payoutSubscription/types/DeletePayoutSubscriptionResponse.d.mts +0 -14
  2065. package/dist/esm/api/resources/payoutSubscription/types/GetPayoutSubscriptionResponse.d.mts +0 -158
  2066. package/dist/esm/api/resources/payoutSubscription/types/PayoutScheduleDetail.d.mts +0 -9
  2067. package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.d.mts +0 -202
  2068. package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.d.mts +0 -202
  2069. package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionRequestBody.d.mts +0 -69
  2070. package/dist/esm/api/resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.d.mts +0 -162
  2071. package/dist/esm/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.d.mts +0 -9
  2072. package/dist/esm/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.d.mts +0 -15
  2073. package/dist/esm/api/resources/payoutSubscription/types/index.d.mts +0 -12
  2074. package/dist/esm/api/resources/payoutSubscription/types/index.mjs +0 -12
  2075. package/dist/esm/api/resources/paypoint/types/GetBasicEntryByIdResponse.d.mts +0 -8
  2076. package/dist/esm/api/resources/paypoint/types/GetBasicEntryResponse.d.mts +0 -8
  2077. package/dist/esm/api/resources/paypoint/types/GetEntryConfigResponse.d.mts +0 -8
  2078. package/dist/esm/api/resources/paypoint/types/MigratePaypointResponse.d.mts +0 -6
  2079. package/dist/esm/api/resources/paypoint/types/NotificationRequest.d.mts +0 -7
  2080. package/dist/esm/api/resources/paypoint/types/PaypointMoveRequest.d.mts +0 -8
  2081. package/dist/esm/api/resources/paypoint/types/index.d.mts +0 -7
  2082. package/dist/esm/api/resources/paypoint/types/index.mjs +0 -7
  2083. package/dist/esm/api/resources/queryTypes/exports.d.mts +0 -1
  2084. package/dist/esm/api/resources/queryTypes/exports.mjs +0 -2
  2085. package/dist/esm/api/resources/queryTypes/index.d.mts +0 -1
  2086. package/dist/esm/api/resources/queryTypes/index.mjs +0 -1
  2087. package/dist/esm/api/resources/queryTypes/types/ListOrganizationsResponse.d.mts +0 -5
  2088. package/dist/esm/api/resources/queryTypes/types/QueryBatchesDetailResponse.d.mts +0 -240
  2089. package/dist/esm/api/resources/queryTypes/types/QueryBatchesResponse.d.mts +0 -197
  2090. package/dist/esm/api/resources/queryTypes/types/QueryDeviceResponse.d.mts +0 -45
  2091. package/dist/esm/api/resources/queryTypes/types/QueryTransferDetailResponse.d.mts +0 -125
  2092. package/dist/esm/api/resources/queryTypes/types/QueryTransferResponse.d.mts +0 -7
  2093. package/dist/esm/api/resources/queryTypes/types/QueryTransferSummary.d.mts +0 -48
  2094. package/dist/esm/api/resources/queryTypes/types/TransferOutDetailBill.d.mts +0 -36
  2095. package/dist/esm/api/resources/queryTypes/types/TransferOutDetailQueryResponse.d.mts +0 -10
  2096. package/dist/esm/api/resources/queryTypes/types/TransferOutDetailRecord.d.mts +0 -132
  2097. package/dist/esm/api/resources/queryTypes/types/TransferOutDetailVendor.d.mts +0 -96
  2098. package/dist/esm/api/resources/queryTypes/types/TransferOutMessage.d.mts +0 -22
  2099. package/dist/esm/api/resources/queryTypes/types/TransferOutQueryResponse.d.mts +0 -10
  2100. package/dist/esm/api/resources/queryTypes/types/TransferOutRecord.d.mts +0 -74
  2101. package/dist/esm/api/resources/queryTypes/types/VCardTransactionQueryResponse.d.mts +0 -49
  2102. package/dist/esm/api/resources/queryTypes/types/VCardTransactionRecord.d.mts +0 -86
  2103. package/dist/esm/api/resources/queryTypes/types/index.d.mts +0 -28
  2104. package/dist/esm/api/resources/queryTypes/types/index.mjs +0 -28
  2105. package/dist/esm/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.mts +0 -76
  2106. package/dist/esm/api/resources/statistic/types/index.d.mts +0 -4
  2107. package/dist/esm/api/resources/statistic/types/index.mjs +0 -4
  2108. package/dist/esm/api/resources/subscription/types/AddSubscriptionResponse.d.mts +0 -19
  2109. package/dist/esm/api/resources/subscription/types/RemoveSubscriptionResponse.d.mts +0 -14
  2110. package/dist/esm/api/resources/subscription/types/SubscriptionRequestBody.d.mts +0 -39
  2111. package/dist/esm/api/resources/subscription/types/UpdateSubscriptionResponse.d.mts +0 -15
  2112. package/dist/esm/api/resources/subscription/types/index.d.mts +0 -5
  2113. package/dist/esm/api/resources/subscription/types/index.mjs +0 -5
  2114. package/dist/esm/api/resources/tokenStorage/types/AddMethodResponse.d.mts +0 -19
  2115. package/dist/esm/api/resources/tokenStorage/types/GetMethodResponse.d.mts +0 -179
  2116. package/dist/esm/api/resources/tokenStorage/types/RequestTokenStorage.d.mts +0 -19
  2117. package/dist/esm/api/resources/tokenStorage/types/RequestTokenStoragePaymentMethod.d.mts +0 -14
  2118. package/dist/esm/api/resources/tokenStorage/types/TokenizeAch.d.mts +0 -13
  2119. package/dist/esm/api/resources/tokenStorage/types/TokenizeCard.d.mts +0 -10
  2120. package/dist/esm/api/resources/tokenStorage/types/index.d.mts +0 -10
  2121. package/dist/esm/api/resources/tokenStorage/types/index.mjs +0 -10
  2122. package/dist/esm/api/resources/user/types/AddUserResponse.d.mts +0 -7
  2123. package/dist/esm/api/resources/user/types/AuthResetUserResponse.d.mts +0 -5
  2124. package/dist/esm/api/resources/user/types/ChangePswUserResponse.d.mts +0 -5
  2125. package/dist/esm/api/resources/user/types/DeleteUserResponse.d.mts +0 -4
  2126. package/dist/esm/api/resources/user/types/EditMfaUserResponse.d.mts +0 -5
  2127. package/dist/esm/api/resources/user/types/LogoutUserResponse.d.mts +0 -5
  2128. package/dist/esm/api/resources/user/types/index.d.mts +0 -6
  2129. package/dist/esm/api/resources/user/types/index.mjs +0 -6
  2130. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.d.mts +0 -6
  2131. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.mjs +0 -17
  2132. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.d.mts +0 -6
  2133. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.mjs +0 -17
  2134. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.d.mts +0 -6
  2135. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.mjs +0 -17
  2136. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.d.mts +0 -6
  2137. package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.mjs +0 -17
  2138. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.d.mts +0 -6
  2139. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.mjs +0 -17
  2140. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.d.mts +0 -6
  2141. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.mjs +0 -17
  2142. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.d.mts +0 -6
  2143. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.mjs +0 -17
  2144. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.d.mts +0 -6
  2145. package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.mjs +0 -17
  2146. package/dist/esm/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.d.mts +0 -6
  2147. package/dist/esm/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.mjs +0 -17
  2148. package/dist/esm/api/resources/v2MoneyInTypes/errors/index.d.mts +0 -9
  2149. package/dist/esm/api/resources/v2MoneyInTypes/errors/index.mjs +0 -9
  2150. package/dist/esm/api/resources/v2MoneyInTypes/exports.d.mts +0 -1
  2151. package/dist/esm/api/resources/v2MoneyInTypes/exports.mjs +0 -2
  2152. package/dist/esm/api/resources/v2MoneyInTypes/index.d.mts +0 -2
  2153. package/dist/esm/api/resources/v2MoneyInTypes/index.mjs +0 -2
  2154. package/dist/esm/api/resources/v2MoneyInTypes/types/V2BadRequestError.d.mts +0 -22
  2155. package/dist/esm/api/resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.d.mts +0 -761
  2156. package/dist/esm/api/resources/v2MoneyInTypes/types/V2InternalServerError.d.mts +0 -21
  2157. package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.d.mts +0 -65
  2158. package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionDetails.d.mts +0 -1003
  2159. package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.d.mts +0 -13
  2160. package/dist/esm/api/resources/v2MoneyInTypes/types/index.d.mts +0 -11
  2161. package/dist/esm/api/resources/v2MoneyInTypes/types/index.mjs +0 -11
  2162. package/dist/esm/api/resources/vendor/types/VendorEnrichRequest.d.mts +0 -20
  2163. package/dist/esm/api/resources/vendor/types/VendorEnrichResponse.d.mts +0 -12
  2164. package/dist/esm/api/resources/vendor/types/VendorEnrichResponseData.d.mts +0 -16
  2165. package/dist/esm/api/resources/vendor/types/VendorEnrichmentData.d.mts +0 -10
  2166. package/dist/esm/api/resources/vendor/types/index.d.mts +0 -6
  2167. package/dist/esm/api/resources/vendor/types/index.mjs +0 -6
  2168. package/dist/esm/api/types/AchPaymentMethod.d.mts +0 -9
  2169. package/dist/esm/api/types/DeviceId.d.mts +0 -5
  2170. package/dist/esm/api/types/PayabliApiResponseError400.d.mts +0 -23
  2171. package/dist/esm/api/types/PayabliApiResponsePaylinks.d.mts +0 -9
  2172. package/dist/esm/api/types/PaymentTransStatusDescription.d.mts +0 -4
  2173. package/dist/esm/api/types/Paymentid.d.mts +0 -4
  2174. package/dist/esm/api/types/QueryResponse.d.mts +0 -7
  2175. package/dist/esm/api/types/TemplateContent.d.mts +0 -10
  2176. package/dist/esm/api/types/TemplateData.d.mts +0 -14
  2177. package/dist/esm/api/types/UnderwritingData.d.mts +0 -8
  2178. /package/dist/cjs/api/resources/boarding/{types → client/requests}/CreateApplicationFromPaypointRequest.js +0 -0
  2179. /package/dist/cjs/api/resources/{bill/types/BillOutData.js → moneyOut/client/requests/RequestOutAuthorize.js} +0 -0
  2180. /package/dist/cjs/api/resources/paymentLink/{types → client/requests}/PatchOutPaymentLinkRequest.js +0 -0
  2181. /package/dist/cjs/api/resources/{bill/types/BillOutDataScheduledOptions.js → payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.js} +0 -0
  2182. /package/dist/cjs/api/resources/{bill/types/BillResponse.js → paypoint/client/requests/PaypointMoveRequest.js} +0 -0
  2183. /package/dist/cjs/api/resources/{bill/types/BillResponseData.js → vendor/client/requests/VendorEnrichRequest.js} +0 -0
  2184. /package/dist/cjs/api/{resources/boarding/types → types}/AddApplicationRequest.js +0 -0
  2185. /package/dist/cjs/api/{resources/cloud/types → types}/AddDeviceResponse.js +0 -0
  2186. /package/dist/cjs/api/{resources/bill/types/EditBillResponse.js → types/AddMethodResponse.js} +0 -0
  2187. /package/dist/cjs/api/{resources/bill/types/GetBillResponse.js → types/AddMethodResponseResponseData.js} +0 -0
  2188. /package/dist/cjs/api/{resources/notification/types → types}/AddNotificationRequest.js +0 -0
  2189. /package/dist/cjs/api/{resources/organization/types → types}/AddOrganizationResponse.js +0 -0
  2190. /package/dist/cjs/api/{resources/bill/types/ModifyApprovalBillResponse.js → types/AddPaymentMethodDomainRequestApplePay.js} +0 -0
  2191. /package/dist/cjs/api/{resources/bill/types/SetApprovedBillResponse.js → types/AddPaymentMethodDomainRequestGooglePay.js} +0 -0
  2192. /package/dist/cjs/api/{resources/payoutSubscription/types → types}/AddPayoutSubscriptionResponse.js +0 -0
  2193. /package/dist/cjs/api/{resources/chargeBacks/types → types}/AddResponseResponse.js +0 -0
  2194. /package/dist/cjs/api/{resources/boarding/types/CreateApplicationFromPaypointResponse.js → types/AddSubscriptionResponse.js} +0 -0
  2195. /package/dist/cjs/api/{resources/chargeBacks/types/ChargeBackResponse.js → types/AddUserResponse.js} +0 -0
  2196. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.d.ts +0 -0
  2197. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.js +0 -0
  2198. /package/dist/cjs/api/{resources/chargeBacks/types/ChargebackMessage.js → types/ApplicationDataManagedContactsItem.js} +0 -0
  2199. /package/dist/cjs/api/{resources/chargeBacks/types/ChargebackQueryRecords.js → types/ApplicationDataManagedOwnershipItem.js} +0 -0
  2200. /package/dist/cjs/api/{resources/checkCapture/types/CheckCaptureRequest.js → types/ApplicationDataOdpContactsItem.js} +0 -0
  2201. /package/dist/cjs/api/{resources/checkCapture/types/CheckCaptureResponse.js → types/ApplicationDataOdpOwnershipItem.js} +0 -0
  2202. /package/dist/cjs/api/{resources/cloud/types/RemoveDeviceResponse.js → types/ApplicationDataPayInContactsItem.js} +0 -0
  2203. /package/dist/cjs/api/{resources/ghostCard/types/CreateGhostCardResponse.js → types/ApplicationDataPayInOwnershipItem.js} +0 -0
  2204. /package/dist/cjs/api/{resources/invoice/types/GetInvoiceRecord.js → types/ApplicationDataPayInServices.js} +0 -0
  2205. /package/dist/cjs/api/{resources/invoice/types/InvoiceDataRequest.js → types/ApplicationDataPayInServicesAch.js} +0 -0
  2206. /package/dist/cjs/api/{resources/invoice/types/InvoiceId.js → types/ApplicationDataPayInServicesCard.js} +0 -0
  2207. /package/dist/cjs/api/{resources/invoice/types/InvoiceNumberResponse.js → types/ApplicationDetailsRecordMessagesItem.js} +0 -0
  2208. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AuthCapturePayoutResponse.js +0 -0
  2209. /package/dist/cjs/api/{resources/invoice/types/InvoicePaidAmount.js → types/AuthCapturePayoutResponseData.js} +0 -0
  2210. /package/dist/cjs/api/{resources/invoice/types/InvoiceResponseWithoutData.js → types/AuthResetUserResponse.js} +0 -0
  2211. /package/dist/cjs/api/{resources/moneyIn/types → types}/AuthResponse.js +0 -0
  2212. /package/dist/cjs/api/{resources/moneyIn/types → types}/AuthResponseResponseData.js +0 -0
  2213. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AuthorizePaymentMethod.js +0 -0
  2214. /package/dist/cjs/api/{resources/management/types → types}/BankAccountVerificationDetailsResponse.js +0 -0
  2215. /package/dist/cjs/api/{resources/invoice/types/QueryInvoiceResponse.js → types/BatchDetailResponseRecord.js} +0 -0
  2216. /package/dist/cjs/api/{resources/invoice/types/SendInvoiceResponse.js → types/BatchDetailResponseSummary.js} +0 -0
  2217. /package/dist/cjs/api/{resources/lineItem/types/DeleteItemResponse.js → types/BillOutData.js} +0 -0
  2218. /package/dist/cjs/api/{resources/management/types/VerifyAccountDetailsResponse.js → types/BillOutDataScheduledOptions.js} +0 -0
  2219. /package/dist/cjs/api/{resources/moneyIn/types/CapturePaymentDetails.js → types/BillResponse.js} +0 -0
  2220. /package/dist/cjs/api/{resources/moneyIn/types/CaptureRequest.js → types/BillResponseData.js} +0 -0
  2221. /package/dist/cjs/api/{resources/notificationlogs/types → types}/BulkRetryRequest.d.ts +0 -0
  2222. /package/dist/cjs/api/{resources/notificationlogs/types → types}/BulkRetryRequest.js +0 -0
  2223. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/CaptureAllOutResponse.js +0 -0
  2224. /package/dist/cjs/api/{resources/moneyIn/types/CaptureResponse.js → types/CaptureAllOutResponseResponseDataItem.js} +0 -0
  2225. /package/dist/cjs/api/{resources/moneyIn/types → types}/CapturePaymentDetails.d.ts +0 -0
  2226. /package/dist/cjs/api/{resources/moneyIn/types/CaptureResponseData.js → types/CapturePaymentDetails.js} +0 -0
  2227. /package/dist/cjs/api/{resources/moneyIn/types/GetPaidResponseData.js → types/CaptureRequest.js} +0 -0
  2228. /package/dist/cjs/api/{resources/moneyIn/types/InvalidTransStatusErrorType.js → types/CaptureResponse.js} +0 -0
  2229. /package/dist/cjs/api/{resources/moneyIn/types/PayabliApiResponseGetPaid.js → types/CaptureResponseData.js} +0 -0
  2230. /package/dist/cjs/api/{resources/ghostCard/types → types}/CardStatus.d.ts +0 -0
  2231. /package/dist/cjs/api/{resources/ghostCard/types → types}/CardStatus.js +0 -0
  2232. /package/dist/cjs/api/{resources/moneyIn/types/ReceiptResponse.js → types/ChangePswUserResponse.js} +0 -0
  2233. /package/dist/cjs/api/{resources/moneyIn/types/RefundResponse.js → types/ChargeBackResponse.js} +0 -0
  2234. /package/dist/cjs/api/{resources/chargeBacks/types → types}/ChargebackMessage.d.ts +0 -0
  2235. /package/dist/cjs/api/{resources/moneyIn/types/RefundWithInstructionsResponse.js → types/ChargebackMessage.js} +0 -0
  2236. /package/dist/cjs/api/{resources/moneyIn/types/ResponseDataRefunds.js → types/ChargebackQueryRecords.js} +0 -0
  2237. /package/dist/cjs/api/{resources/moneyIn/types/ReverseResponse.js → types/CheckCaptureResponse.js} +0 -0
  2238. /package/dist/cjs/api/{resources/tokenStorage/types → types}/ConvertToken.d.ts +0 -0
  2239. /package/dist/cjs/api/{resources/moneyIn/types/TransRequestBody.js → types/ConvertToken.js} +0 -0
  2240. /package/dist/cjs/api/{resources/tokenStorage/types → types}/CreateAnonymous.d.ts +0 -0
  2241. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailCustomer.js → types/CreateAnonymous.js} +0 -0
  2242. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailEvent.js → types/CreateApplicationFromPaypointResponse.js} +0 -0
  2243. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailInvoiceData.js → types/CreateApplicationFromPaypointResponseData.js} +0 -0
  2244. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailPaymentData.js → types/CreateGhostCardResponse.js} +0 -0
  2245. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailPaymentDetails.js → types/CreateGhostCardResponseData.js} +0 -0
  2246. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailRecord.js → types/CustomerQueryRecordsCustomerConsent.js} +0 -0
  2247. /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailResponseData.js → types/CustomerQueryRecordsCustomerConsentECommunication.js} +0 -0
  2248. /package/dist/cjs/api/{resources/moneyIn/types/ValidateResponse.js → types/CustomerQueryRecordsCustomerConsentSms.js} +0 -0
  2249. /package/dist/cjs/api/{resources/moneyIn/types/ValidateResponseData.js → types/DeleteItemResponse.js} +0 -0
  2250. /package/dist/cjs/api/{resources/organization/types → types}/DeleteOrganizationResponse.js +0 -0
  2251. /package/dist/cjs/api/{resources/paymentMethodDomain/types → types}/DeletePaymentMethodDomainResponse.js +0 -0
  2252. /package/dist/cjs/api/{resources/payoutSubscription/types → types}/DeletePayoutSubscriptionResponse.js +0 -0
  2253. /package/dist/cjs/api/{resources/moneyIn/types/VoidResponse.js → types/DeleteUserResponse.js} +0 -0
  2254. /package/dist/cjs/api/{resources/queryTypes/types → types}/DeviceQueryRecord.d.ts +0 -0
  2255. /package/dist/cjs/api/{resources/queryTypes/types → types}/DeviceQueryRecord.js +0 -0
  2256. /package/dist/cjs/api/{resources/moneyIn/types/VoidResponseData.js → types/DocumentSectionTermsAndConditions.js} +0 -0
  2257. /package/dist/cjs/api/{resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.js → types/DocumentSectionTermsAndConditionsTcLinksItem.js} +0 -0
  2258. /package/dist/cjs/api/{resources/moneyOutTypes/types/AuthorizePayoutBody.js → types/EditBillResponse.js} +0 -0
  2259. /package/dist/cjs/api/{resources/user/types → types}/EditMfaUserResponse.js +0 -0
  2260. /package/dist/cjs/api/{resources/organization/types → types}/EditOrganizationResponse.js +0 -0
  2261. /package/dist/cjs/api/{resources/export/types → types}/ExportFormat1.d.ts +0 -0
  2262. /package/dist/cjs/api/{resources/export/types → types}/ExportFormat1.js +0 -0
  2263. /package/dist/cjs/api/{resources/moneyOutTypes/types/LotNumber.js → types/FileContentImageOnly.js} +0 -0
  2264. /package/dist/cjs/api/{resources/paypoint/types → types}/GetBasicEntryByIdResponse.js +0 -0
  2265. /package/dist/cjs/api/{resources/paypoint/types → types}/GetBasicEntryResponse.js +0 -0
  2266. /package/dist/cjs/api/{resources/moneyOutTypes/types/MethodElementOut.js → types/GetBillResponse.js} +0 -0
  2267. /package/dist/cjs/api/{resources/paypoint/types → types}/GetEntryConfigResponse.js +0 -0
  2268. /package/dist/cjs/api/{resources/moneyOutTypes/types/MethodsListOut.js → types/GetInvoiceRecord.js} +0 -0
  2269. /package/dist/cjs/api/{resources/tokenStorage/types → types}/GetMethodResponse.js +0 -0
  2270. /package/dist/cjs/api/{resources/moneyOutTypes/types/OperationResult.js → types/GetMethodResponseResponseData.js} +0 -0
  2271. /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePaymentMethod.js → types/GetMethodResponseResponseDataCustomersItem.js} +0 -0
  2272. /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePayoutBody.js → types/GetMethodResponseResponseDataVendorsItem.js} +0 -0
  2273. /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePayoutResponse.js → types/GetPaidResponseData.js} +0 -0
  2274. /package/dist/cjs/api/{resources/paymentLink/types → types}/GetPayLinkFromIdResponse.js +0 -0
  2275. /package/dist/cjs/api/{resources/moneyOutTypes/types/VCardGetResponse.js → types/GetPayLinkFromIdResponseResponseData.js} +0 -0
  2276. /package/dist/cjs/api/{resources/payoutSubscription/types → types}/GetPayoutSubscriptionResponse.js +0 -0
  2277. /package/dist/cjs/api/{resources/notification/types/UpdateNotificationRequest.js → types/InvoiceDataRequest.js} +0 -0
  2278. /package/dist/cjs/api/{resources/invoice/types → types}/InvoiceId.d.ts +0 -0
  2279. /package/dist/cjs/api/{resources/notificationlogs/types/KeyValueArray.js → types/InvoiceId.js} +0 -0
  2280. /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLog.js → types/InvoiceNumberResponse.js} +0 -0
  2281. /package/dist/cjs/api/{resources/invoice/types → types}/InvoicePaidAmount.d.ts +0 -0
  2282. /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLogDetail.js → types/InvoicePaidAmount.js} +0 -0
  2283. /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLogSearchRequest.js → types/InvoiceResponseWithoutData.js} +0 -0
  2284. /package/dist/cjs/api/{resources/notificationlogs/types → types}/KeyValueArray.d.ts +0 -0
  2285. /package/dist/cjs/api/{resources/notificationlogs/types/StringStringKeyValuePair.js → types/KeyValueArray.js} +0 -0
  2286. /package/dist/cjs/api/{resources/queryTypes/types → types}/LimitRecord.d.ts +0 -0
  2287. /package/dist/cjs/api/{resources/queryTypes/types → types}/LimitRecord.js +0 -0
  2288. /package/dist/cjs/api/{resources/queryTypes/types → types}/ListOrganizationsResponse.js +0 -0
  2289. /package/dist/cjs/api/{resources/paymentMethodDomain/types → types}/ListPaymentMethodDomainsResponse.js +0 -0
  2290. /package/dist/cjs/api/{resources/user/types → types}/LogoutUserResponse.js +0 -0
  2291. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/LotNumber.d.ts +0 -0
  2292. /package/dist/cjs/api/{resources/ocr/types/OcrAttachment.js → types/LotNumber.js} +0 -0
  2293. /package/dist/cjs/api/{resources/ocr/types/OcrBillItem.js → types/MethodElementOut.js} +0 -0
  2294. /package/dist/cjs/api/{resources/ocr/types/OcrBillItemAdditionalData.js → types/MethodElementSettings.js} +0 -0
  2295. /package/dist/cjs/api/{resources/ocr/types/OcrResponseData.js → types/MethodElementSettingsApplePay.js} +0 -0
  2296. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/MethodsListOut.d.ts +0 -0
  2297. /package/dist/cjs/api/{resources/ocr/types/OcrResultData.js → types/MethodsListOut.js} +0 -0
  2298. /package/dist/cjs/api/{resources/paypoint/types → types}/MigratePaypointResponse.js +0 -0
  2299. /package/dist/cjs/api/{resources/ocr/types/OcrVendor.js → types/ModifyApprovalBillResponse.js} +0 -0
  2300. /package/dist/cjs/api/{resources/notificationlogs/types → types}/NotificationLog.d.ts +0 -0
  2301. /package/dist/cjs/api/{resources/ocr/types/OcrVendorAdditionalData.js → types/NotificationLog.js} +0 -0
  2302. /package/dist/cjs/api/{resources/ocr/types/OcrVendorBillingData.js → types/NotificationLogDetail.js} +0 -0
  2303. /package/dist/cjs/api/{resources/paypoint/types → types}/NotificationRequest.js +0 -0
  2304. /package/dist/cjs/api/{resources/ocr/types/PayabliApiResponseOcr.js → types/NotificationStandardRequestContent.js} +0 -0
  2305. /package/dist/cjs/api/{resources/ocr/types → types}/OcrAttachment.d.ts +0 -0
  2306. /package/dist/cjs/api/{resources/ocr/types/TypeResult.js → types/OcrAttachment.js} +0 -0
  2307. /package/dist/cjs/api/{resources/ocr/types → types}/OcrBillItem.d.ts +0 -0
  2308. /package/dist/cjs/api/{resources/paymentLink/types/PayabliApiResponsePaymentLinks.js → types/OcrBillItem.js} +0 -0
  2309. /package/dist/cjs/api/{resources/ocr/types → types}/OcrBillItemAdditionalData.d.ts +0 -0
  2310. /package/dist/cjs/api/{resources/paymentLink/types/PaymentPageRequestBody.js → types/OcrBillItemAdditionalData.js} +0 -0
  2311. /package/dist/cjs/api/{resources/paymentLink/types/PaymentPageRequestBodyOut.js → types/OcrResponseData.js} +0 -0
  2312. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutPaymentDetail.js → types/OcrResultData.js} +0 -0
  2313. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutScheduleDetail.js → types/OcrVendor.js} +0 -0
  2314. /package/dist/cjs/api/{resources/ocr/types → types}/OcrVendorAdditionalData.d.ts +0 -0
  2315. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSetPause.js → types/OcrVendorAdditionalData.js} +0 -0
  2316. /package/dist/cjs/api/{resources/ocr/types → types}/OcrVendorBillingData.d.ts +0 -0
  2317. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.js → types/OcrVendorBillingData.js} +0 -0
  2318. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/OperationResult.d.ts +0 -0
  2319. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.js → types/OperationResult.js} +0 -0
  2320. /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionRequestBody.js → types/OrganizationQueryRecordServicesItem.js} +0 -0
  2321. /package/dist/cjs/api/{resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.js → types/PayabliApiResponse0ResponseData.js} +0 -0
  2322. /package/dist/cjs/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.js → types/PayabliApiResponseGetPaid.js} +0 -0
  2323. /package/dist/cjs/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.js → types/PayabliApiResponseImportResponseData.js} +0 -0
  2324. /package/dist/cjs/api/{resources/paypoint/types/PaypointMoveRequest.js → types/PayabliApiResponseNotificationsResponseData.js} +0 -0
  2325. /package/dist/cjs/api/{resources/paypoint/types/WebHeaderParameter.js → types/PayabliApiResponseOcr.js} +0 -0
  2326. /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesDetailResponse.js → types/PayabliApiResponsePaymentLinks.js} +0 -0
  2327. /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesResponse.js → types/PayabliApiResponsePaymethodDeleteResponseData.js} +0 -0
  2328. /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesTransfer.js → types/PayabliErrorBody.js} +0 -0
  2329. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.d.ts +0 -0
  2330. /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.js +0 -0
  2331. /package/dist/cjs/api/{resources/queryTypes/types/QueryDeviceResponse.js → types/PaymentPageRequestBodyOut.js} +0 -0
  2332. /package/dist/cjs/api/{resources/payoutSubscription/types → types}/PayoutPaymentDetail.d.ts +0 -0
  2333. /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferDetailResponse.js → types/PayoutPaymentDetail.js} +0 -0
  2334. /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferResponse.js → types/PayoutScheduleDetail.js} +0 -0
  2335. /package/dist/cjs/api/{resources/payoutSubscription/types → types}/PayoutSetPause.d.ts +0 -0
  2336. /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferSummary.js → types/PayoutSetPause.js} +0 -0
  2337. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutBankAccount.js → types/PayoutSubscriptionQueryRecord.js} +0 -0
  2338. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailBill.js → types/PayoutSubscriptionQueryRecordPascal.js} +0 -0
  2339. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailBillAttachment.js → types/PushPayLinkRequestEmail.js} +0 -0
  2340. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailCheckData.js → types/PushPayLinkRequestSms.js} +0 -0
  2341. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailEvent.js → types/QueryBatchesDetailResponse.js} +0 -0
  2342. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailPaymentData.js → types/QueryBatchesOutResponseRecordsItem.js} +0 -0
  2343. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailQueryResponse.js → types/QueryBatchesResponse.js} +0 -0
  2344. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailRecord.js → types/QueryBatchesResponseRecordsItem.js} +0 -0
  2345. /package/dist/cjs/api/{resources/queryTypes/types → types}/QueryBatchesTransfer.d.ts +0 -0
  2346. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailVendor.js → types/QueryBatchesTransfer.js} +0 -0
  2347. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailVendorBillingData.js → types/QueryBoardingLinksResponseRecordsItem.js} +0 -0
  2348. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutEventData.js → types/QueryChargebacksResponseRecordsItem.js} +0 -0
  2349. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutMessage.js → types/QueryDeviceResponse.js} +0 -0
  2350. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutMessageProperties.js → types/QueryEntrypointResponseRecordsItem.js} +0 -0
  2351. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutQueryResponse.js → types/QueryInvoiceResponse.js} +0 -0
  2352. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutRecord.js → types/QueryInvoiceResponseRecordsItem.js} +0 -0
  2353. /package/dist/cjs/api/{resources/queryTypes/types/TransferOutSummary.js → types/QueryPayoutSubscriptionResponse.js} +0 -0
  2354. /package/dist/cjs/api/{resources/queryTypes/types/VCardTransactionQueryResponse.js → types/QueryPayoutTransactionRecordsItem.js} +0 -0
  2355. /package/dist/cjs/api/{resources/queryTypes/types/VCardTransactionRecord.js → types/QueryPayoutTransactionRecordsItemPaymentData.js} +0 -0
  2356. /package/dist/cjs/api/{resources/statistic/types/StatBasicExtendedQueryRecord.js → types/QueryPayoutTransactionSummary.js} +0 -0
  2357. /package/dist/cjs/api/{resources/statistic/types/StatBasicQueryRecord.js → types/QueryResponseItemsRecordsItem.js} +0 -0
  2358. /package/dist/cjs/api/{resources/statistic/types/StatisticsVendorQueryRecord.js → types/QueryResponseNotificationReportsRecordsItem.js} +0 -0
  2359. /package/dist/cjs/api/{resources/statistic/types/SubscriptionStatsQueryRecord.js → types/QueryResponseNotificationsRecordsItem.js} +0 -0
  2360. /package/dist/cjs/api/{resources/subscription/types/AddSubscriptionResponse.js → types/QueryResponseSettlementsRecordsItem.js} +0 -0
  2361. /package/dist/cjs/api/{resources/subscription/types/RemoveSubscriptionResponse.js → types/QueryResponseSettlementsSummary.js} +0 -0
  2362. /package/dist/cjs/api/{resources/subscription/types/SetPause.js → types/QueryTransactionEventsEventData.js} +0 -0
  2363. /package/dist/cjs/api/{resources/subscription/types/SubscriptionRequestBody.js → types/QueryTransferDetailResponse.js} +0 -0
  2364. /package/dist/cjs/api/{resources/subscription/types/UpdateSubscriptionResponse.js → types/QueryTransferSummary.js} +0 -0
  2365. /package/dist/cjs/api/{resources/tokenStorage/types/AddMethodResponse.js → types/ReceiptResponse.js} +0 -0
  2366. /package/dist/cjs/api/{resources/tokenStorage/types/ConvertToken.js → types/RefundResponse.js} +0 -0
  2367. /package/dist/cjs/api/{resources/tokenStorage/types/CreateAnonymous.js → types/RefundWithInstructionsResponse.js} +0 -0
  2368. /package/dist/cjs/api/{resources/tokenStorage/types/RequestTokenStorage.js → types/ReissuePaymentMethod.js} +0 -0
  2369. /package/dist/cjs/api/{resources/tokenStorage/types/RequestTokenStoragePaymentMethod.js → types/ReissuePayoutResponse.js} +0 -0
  2370. /package/dist/cjs/api/{resources/tokenStorage/types/Temporary.js → types/ReissuePayoutResponseData.js} +0 -0
  2371. /package/dist/cjs/api/{resources/tokenStorage/types/TokenizeAch.js → types/RemoveDeviceResponse.js} +0 -0
  2372. /package/dist/cjs/api/{resources/tokenStorage/types/TokenizeCard.js → types/RemoveSubscriptionResponse.js} +0 -0
  2373. /package/dist/cjs/api/{resources/tokenStorage/types/VendorDataRequest.js → types/RequestOutAuthorizeInvoiceData.js} +0 -0
  2374. /package/dist/cjs/api/{resources/user/types/AddUserResponse.js → types/RequestOutAuthorizePaymentDetails.js} +0 -0
  2375. /package/dist/cjs/api/{resources/user/types/AuthResetUserResponse.js → types/RequestOutAuthorizeVendorBillingData.js} +0 -0
  2376. /package/dist/cjs/api/{resources/user/types/ChangePswUserResponse.js → types/RequestOutAuthorizeVendorData.js} +0 -0
  2377. /package/dist/cjs/api/{resources/user/types/DeleteUserResponse.js → types/RequestPaymentValidatePaymentMethod.js} +0 -0
  2378. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2BadRequestError.js → types/RequestSchedulePaymentMethod.js} +0 -0
  2379. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2BadRequestErrorDetail.js → types/RequestSchedulePaymentMethodInitiator.js} +0 -0
  2380. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.js → types/RequestTokenStorage.js} +0 -0
  2381. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2InternalServerError.js → types/RequestTokenStoragePaymentMethod.js} +0 -0
  2382. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseAction.js → types/ResponseDataRefunds.js} +0 -0
  2383. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseCode.js → types/ReverseResponse.js} +0 -0
  2384. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseExplanation.js → types/SendInvoiceResponse.js} +0 -0
  2385. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseReason.js → types/SetApprovedBillResponse.js} +0 -0
  2386. /package/dist/cjs/api/{resources/subscription/types → types}/SetPause.d.ts +0 -0
  2387. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.js → types/SetPause.js} +0 -0
  2388. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionDetails.js → types/StatBasicExtendedQueryRecord.js} +0 -0
  2389. /package/dist/cjs/api/{resources/statistic/types → types}/StatBasicQueryRecord.d.ts +0 -0
  2390. /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.js → types/StatBasicQueryRecord.js} +0 -0
  2391. /package/dist/cjs/api/{resources/statistic/types → types}/StatisticsVendorQueryRecord.d.ts +0 -0
  2392. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichRequest.js → types/StatisticsVendorQueryRecord.js} +0 -0
  2393. /package/dist/cjs/api/{resources/notificationlogs/types → types}/StringStringKeyValuePair.d.ts +0 -0
  2394. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichResponse.js → types/StringStringKeyValuePair.js} +0 -0
  2395. /package/dist/cjs/api/{resources/statistic/types → types}/SubscriptionStatsQueryRecord.d.ts +0 -0
  2396. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichResponseData.js → types/SubscriptionStatsQueryRecord.js} +0 -0
  2397. /package/dist/cjs/api/{resources/tokenStorage/types → types}/Temporary.d.ts +0 -0
  2398. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentData.js → types/Temporary.js} +0 -0
  2399. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentInvoiceScan.js → types/TokenizeAch.js} +0 -0
  2400. /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentWebSearch.js → types/TokenizeCard.js} +0 -0
  2401. /package/dist/cjs/api/types/{AchPaymentMethod.js → TransRequestBody.js} +0 -0
  2402. /package/dist/cjs/api/types/{DeviceId.js → TransactionDetailCustomer.js} +0 -0
  2403. /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailEvent.d.ts +0 -0
  2404. /package/dist/cjs/api/types/{PayabliApiResponseError400.js → TransactionDetailEvent.js} +0 -0
  2405. /package/dist/cjs/api/types/{PayabliApiResponsePaylinks.js → TransactionDetailInvoiceData.js} +0 -0
  2406. /package/dist/cjs/api/types/{PaymentTransStatusDescription.js → TransactionDetailPaymentData.js} +0 -0
  2407. /package/dist/cjs/api/types/{Paymentid.js → TransactionDetailPaymentDetails.js} +0 -0
  2408. /package/dist/cjs/api/types/{QueryResponse.js → TransactionDetailRecord.js} +0 -0
  2409. /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.d.ts +0 -0
  2410. /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.js +0 -0
  2411. /package/dist/cjs/api/types/{TemplateContent.js → TransactionDetailResponseData.js} +0 -0
  2412. /package/dist/cjs/api/types/{TemplateData.js → TransferDetailRecord.js} +0 -0
  2413. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutBankAccount.d.ts +0 -0
  2414. /package/dist/cjs/api/types/{UnderwritingData.js → TransferOutBankAccount.js} +0 -0
  2415. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailBillAttachment.d.ts +0 -0
  2416. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailCheckData.d.ts +0 -0
  2417. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailEvent.d.ts +0 -0
  2418. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailPaymentData.d.ts +0 -0
  2419. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailVendorBillingData.d.ts +0 -0
  2420. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutEventData.d.ts +0 -0
  2421. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutMessageProperties.d.ts +0 -0
  2422. /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutSummary.d.ts +0 -0
  2423. /package/dist/cjs/api/{resources/ocr/types → types}/TypeResult.d.ts +0 -0
  2424. /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2BadRequestErrorDetail.d.ts +0 -0
  2425. /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseAction.d.ts +0 -0
  2426. /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseCode.d.ts +0 -0
  2427. /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseExplanation.d.ts +0 -0
  2428. /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseReason.d.ts +0 -0
  2429. /package/dist/cjs/api/{resources/tokenStorage/types → types}/VendorDataRequest.d.ts +0 -0
  2430. /package/dist/cjs/api/{resources/vendor/types → types}/VendorEnrichmentInvoiceScan.d.ts +0 -0
  2431. /package/dist/cjs/api/{resources/vendor/types → types}/VendorEnrichmentWebSearch.d.ts +0 -0
  2432. /package/dist/cjs/api/{resources/paypoint/types → types}/WebHeaderParameter.d.ts +0 -0
  2433. /package/dist/esm/api/resources/boarding/{types → client/requests}/CreateApplicationFromPaypointRequest.mjs +0 -0
  2434. /package/dist/esm/api/resources/{bill/types/BillOutData.mjs → moneyOut/client/requests/RequestOutAuthorize.mjs} +0 -0
  2435. /package/dist/esm/api/resources/paymentLink/{types → client/requests}/PatchOutPaymentLinkRequest.mjs +0 -0
  2436. /package/dist/esm/api/resources/{bill/types/BillOutDataScheduledOptions.mjs → payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.mjs} +0 -0
  2437. /package/dist/esm/api/resources/{bill/types/BillResponse.mjs → paypoint/client/requests/PaypointMoveRequest.mjs} +0 -0
  2438. /package/dist/esm/api/resources/{bill/types/BillResponseData.mjs → vendor/client/requests/VendorEnrichRequest.mjs} +0 -0
  2439. /package/dist/esm/api/{resources/boarding/types → types}/AddApplicationRequest.mjs +0 -0
  2440. /package/dist/esm/api/{resources/cloud/types → types}/AddDeviceResponse.mjs +0 -0
  2441. /package/dist/esm/api/{resources/bill/types/EditBillResponse.mjs → types/AddMethodResponse.mjs} +0 -0
  2442. /package/dist/esm/api/{resources/bill/types/GetBillResponse.mjs → types/AddMethodResponseResponseData.mjs} +0 -0
  2443. /package/dist/esm/api/{resources/notification/types → types}/AddNotificationRequest.mjs +0 -0
  2444. /package/dist/esm/api/{resources/organization/types → types}/AddOrganizationResponse.mjs +0 -0
  2445. /package/dist/esm/api/{resources/bill/types/ModifyApprovalBillResponse.mjs → types/AddPaymentMethodDomainRequestApplePay.mjs} +0 -0
  2446. /package/dist/esm/api/{resources/bill/types/SetApprovedBillResponse.mjs → types/AddPaymentMethodDomainRequestGooglePay.mjs} +0 -0
  2447. /package/dist/esm/api/{resources/payoutSubscription/types → types}/AddPayoutSubscriptionResponse.mjs +0 -0
  2448. /package/dist/esm/api/{resources/chargeBacks/types → types}/AddResponseResponse.mjs +0 -0
  2449. /package/dist/esm/api/{resources/boarding/types/CreateApplicationFromPaypointResponse.mjs → types/AddSubscriptionResponse.mjs} +0 -0
  2450. /package/dist/esm/api/{resources/chargeBacks/types/ChargeBackResponse.mjs → types/AddUserResponse.mjs} +0 -0
  2451. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.d.mts +0 -0
  2452. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.mjs +0 -0
  2453. /package/dist/esm/api/{resources/chargeBacks/types/ChargebackMessage.mjs → types/ApplicationDataManagedContactsItem.mjs} +0 -0
  2454. /package/dist/esm/api/{resources/chargeBacks/types/ChargebackQueryRecords.mjs → types/ApplicationDataManagedOwnershipItem.mjs} +0 -0
  2455. /package/dist/esm/api/{resources/checkCapture/types/CheckCaptureRequest.mjs → types/ApplicationDataOdpContactsItem.mjs} +0 -0
  2456. /package/dist/esm/api/{resources/checkCapture/types/CheckCaptureResponse.mjs → types/ApplicationDataOdpOwnershipItem.mjs} +0 -0
  2457. /package/dist/esm/api/{resources/cloud/types/RemoveDeviceResponse.mjs → types/ApplicationDataPayInContactsItem.mjs} +0 -0
  2458. /package/dist/esm/api/{resources/ghostCard/types/CreateGhostCardResponse.mjs → types/ApplicationDataPayInOwnershipItem.mjs} +0 -0
  2459. /package/dist/esm/api/{resources/invoice/types/GetInvoiceRecord.mjs → types/ApplicationDataPayInServices.mjs} +0 -0
  2460. /package/dist/esm/api/{resources/invoice/types/InvoiceDataRequest.mjs → types/ApplicationDataPayInServicesAch.mjs} +0 -0
  2461. /package/dist/esm/api/{resources/invoice/types/InvoiceId.mjs → types/ApplicationDataPayInServicesCard.mjs} +0 -0
  2462. /package/dist/esm/api/{resources/invoice/types/InvoiceNumberResponse.mjs → types/ApplicationDetailsRecordMessagesItem.mjs} +0 -0
  2463. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AuthCapturePayoutResponse.mjs +0 -0
  2464. /package/dist/esm/api/{resources/invoice/types/InvoicePaidAmount.mjs → types/AuthCapturePayoutResponseData.mjs} +0 -0
  2465. /package/dist/esm/api/{resources/invoice/types/InvoiceResponseWithoutData.mjs → types/AuthResetUserResponse.mjs} +0 -0
  2466. /package/dist/esm/api/{resources/moneyIn/types → types}/AuthResponse.mjs +0 -0
  2467. /package/dist/esm/api/{resources/moneyIn/types → types}/AuthResponseResponseData.mjs +0 -0
  2468. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AuthorizePaymentMethod.mjs +0 -0
  2469. /package/dist/esm/api/{resources/management/types → types}/BankAccountVerificationDetailsResponse.mjs +0 -0
  2470. /package/dist/esm/api/{resources/invoice/types/QueryInvoiceResponse.mjs → types/BatchDetailResponseRecord.mjs} +0 -0
  2471. /package/dist/esm/api/{resources/invoice/types/SendInvoiceResponse.mjs → types/BatchDetailResponseSummary.mjs} +0 -0
  2472. /package/dist/esm/api/{resources/lineItem/types/DeleteItemResponse.mjs → types/BillOutData.mjs} +0 -0
  2473. /package/dist/esm/api/{resources/management/types/VerifyAccountDetailsResponse.mjs → types/BillOutDataScheduledOptions.mjs} +0 -0
  2474. /package/dist/esm/api/{resources/moneyIn/types/CapturePaymentDetails.mjs → types/BillResponse.mjs} +0 -0
  2475. /package/dist/esm/api/{resources/moneyIn/types/CaptureRequest.mjs → types/BillResponseData.mjs} +0 -0
  2476. /package/dist/esm/api/{resources/notificationlogs/types → types}/BulkRetryRequest.d.mts +0 -0
  2477. /package/dist/esm/api/{resources/notificationlogs/types → types}/BulkRetryRequest.mjs +0 -0
  2478. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/CaptureAllOutResponse.mjs +0 -0
  2479. /package/dist/esm/api/{resources/moneyIn/types/CaptureResponse.mjs → types/CaptureAllOutResponseResponseDataItem.mjs} +0 -0
  2480. /package/dist/esm/api/{resources/moneyIn/types → types}/CapturePaymentDetails.d.mts +0 -0
  2481. /package/dist/esm/api/{resources/moneyIn/types/CaptureResponseData.mjs → types/CapturePaymentDetails.mjs} +0 -0
  2482. /package/dist/esm/api/{resources/moneyIn/types/GetPaidResponseData.mjs → types/CaptureRequest.mjs} +0 -0
  2483. /package/dist/esm/api/{resources/moneyIn/types/InvalidTransStatusErrorType.mjs → types/CaptureResponse.mjs} +0 -0
  2484. /package/dist/esm/api/{resources/moneyIn/types/PayabliApiResponseGetPaid.mjs → types/CaptureResponseData.mjs} +0 -0
  2485. /package/dist/esm/api/{resources/ghostCard/types → types}/CardStatus.d.mts +0 -0
  2486. /package/dist/esm/api/{resources/ghostCard/types → types}/CardStatus.mjs +0 -0
  2487. /package/dist/esm/api/{resources/moneyIn/types/ReceiptResponse.mjs → types/ChangePswUserResponse.mjs} +0 -0
  2488. /package/dist/esm/api/{resources/moneyIn/types/RefundResponse.mjs → types/ChargeBackResponse.mjs} +0 -0
  2489. /package/dist/esm/api/{resources/chargeBacks/types → types}/ChargebackMessage.d.mts +0 -0
  2490. /package/dist/esm/api/{resources/moneyIn/types/RefundWithInstructionsResponse.mjs → types/ChargebackMessage.mjs} +0 -0
  2491. /package/dist/esm/api/{resources/moneyIn/types/ResponseDataRefunds.mjs → types/ChargebackQueryRecords.mjs} +0 -0
  2492. /package/dist/esm/api/{resources/moneyIn/types/ReverseResponse.mjs → types/CheckCaptureResponse.mjs} +0 -0
  2493. /package/dist/esm/api/{resources/tokenStorage/types → types}/ConvertToken.d.mts +0 -0
  2494. /package/dist/esm/api/{resources/moneyIn/types/TransRequestBody.mjs → types/ConvertToken.mjs} +0 -0
  2495. /package/dist/esm/api/{resources/tokenStorage/types → types}/CreateAnonymous.d.mts +0 -0
  2496. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailCustomer.mjs → types/CreateAnonymous.mjs} +0 -0
  2497. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailEvent.mjs → types/CreateApplicationFromPaypointResponse.mjs} +0 -0
  2498. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailInvoiceData.mjs → types/CreateApplicationFromPaypointResponseData.mjs} +0 -0
  2499. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailPaymentData.mjs → types/CreateGhostCardResponse.mjs} +0 -0
  2500. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailPaymentDetails.mjs → types/CreateGhostCardResponseData.mjs} +0 -0
  2501. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailRecord.mjs → types/CustomerQueryRecordsCustomerConsent.mjs} +0 -0
  2502. /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailResponseData.mjs → types/CustomerQueryRecordsCustomerConsentECommunication.mjs} +0 -0
  2503. /package/dist/esm/api/{resources/moneyIn/types/ValidateResponse.mjs → types/CustomerQueryRecordsCustomerConsentSms.mjs} +0 -0
  2504. /package/dist/esm/api/{resources/moneyIn/types/ValidateResponseData.mjs → types/DeleteItemResponse.mjs} +0 -0
  2505. /package/dist/esm/api/{resources/organization/types → types}/DeleteOrganizationResponse.mjs +0 -0
  2506. /package/dist/esm/api/{resources/paymentMethodDomain/types → types}/DeletePaymentMethodDomainResponse.mjs +0 -0
  2507. /package/dist/esm/api/{resources/payoutSubscription/types → types}/DeletePayoutSubscriptionResponse.mjs +0 -0
  2508. /package/dist/esm/api/{resources/moneyIn/types/VoidResponse.mjs → types/DeleteUserResponse.mjs} +0 -0
  2509. /package/dist/esm/api/{resources/queryTypes/types → types}/DeviceQueryRecord.d.mts +0 -0
  2510. /package/dist/esm/api/{resources/queryTypes/types → types}/DeviceQueryRecord.mjs +0 -0
  2511. /package/dist/esm/api/{resources/moneyIn/types/VoidResponseData.mjs → types/DocumentSectionTermsAndConditions.mjs} +0 -0
  2512. /package/dist/esm/api/{resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.mjs → types/DocumentSectionTermsAndConditionsTcLinksItem.mjs} +0 -0
  2513. /package/dist/esm/api/{resources/moneyOutTypes/types/AuthorizePayoutBody.mjs → types/EditBillResponse.mjs} +0 -0
  2514. /package/dist/esm/api/{resources/user/types → types}/EditMfaUserResponse.mjs +0 -0
  2515. /package/dist/esm/api/{resources/organization/types → types}/EditOrganizationResponse.mjs +0 -0
  2516. /package/dist/esm/api/{resources/export/types → types}/ExportFormat1.d.mts +0 -0
  2517. /package/dist/esm/api/{resources/export/types → types}/ExportFormat1.mjs +0 -0
  2518. /package/dist/esm/api/{resources/moneyOutTypes/types/LotNumber.mjs → types/FileContentImageOnly.mjs} +0 -0
  2519. /package/dist/esm/api/{resources/paypoint/types → types}/GetBasicEntryByIdResponse.mjs +0 -0
  2520. /package/dist/esm/api/{resources/paypoint/types → types}/GetBasicEntryResponse.mjs +0 -0
  2521. /package/dist/esm/api/{resources/moneyOutTypes/types/MethodElementOut.mjs → types/GetBillResponse.mjs} +0 -0
  2522. /package/dist/esm/api/{resources/paypoint/types → types}/GetEntryConfigResponse.mjs +0 -0
  2523. /package/dist/esm/api/{resources/moneyOutTypes/types/MethodsListOut.mjs → types/GetInvoiceRecord.mjs} +0 -0
  2524. /package/dist/esm/api/{resources/tokenStorage/types → types}/GetMethodResponse.mjs +0 -0
  2525. /package/dist/esm/api/{resources/moneyOutTypes/types/OperationResult.mjs → types/GetMethodResponseResponseData.mjs} +0 -0
  2526. /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePaymentMethod.mjs → types/GetMethodResponseResponseDataCustomersItem.mjs} +0 -0
  2527. /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePayoutBody.mjs → types/GetMethodResponseResponseDataVendorsItem.mjs} +0 -0
  2528. /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePayoutResponse.mjs → types/GetPaidResponseData.mjs} +0 -0
  2529. /package/dist/esm/api/{resources/paymentLink/types → types}/GetPayLinkFromIdResponse.mjs +0 -0
  2530. /package/dist/esm/api/{resources/moneyOutTypes/types/VCardGetResponse.mjs → types/GetPayLinkFromIdResponseResponseData.mjs} +0 -0
  2531. /package/dist/esm/api/{resources/payoutSubscription/types → types}/GetPayoutSubscriptionResponse.mjs +0 -0
  2532. /package/dist/esm/api/{resources/notification/types/UpdateNotificationRequest.mjs → types/InvoiceDataRequest.mjs} +0 -0
  2533. /package/dist/esm/api/{resources/invoice/types → types}/InvoiceId.d.mts +0 -0
  2534. /package/dist/esm/api/{resources/notificationlogs/types/KeyValueArray.mjs → types/InvoiceId.mjs} +0 -0
  2535. /package/dist/esm/api/{resources/notificationlogs/types/NotificationLog.mjs → types/InvoiceNumberResponse.mjs} +0 -0
  2536. /package/dist/esm/api/{resources/invoice/types → types}/InvoicePaidAmount.d.mts +0 -0
  2537. /package/dist/esm/api/{resources/notificationlogs/types/NotificationLogDetail.mjs → types/InvoicePaidAmount.mjs} +0 -0
  2538. /package/dist/esm/api/{resources/notificationlogs/types/NotificationLogSearchRequest.mjs → types/InvoiceResponseWithoutData.mjs} +0 -0
  2539. /package/dist/esm/api/{resources/notificationlogs/types → types}/KeyValueArray.d.mts +0 -0
  2540. /package/dist/esm/api/{resources/notificationlogs/types/StringStringKeyValuePair.mjs → types/KeyValueArray.mjs} +0 -0
  2541. /package/dist/esm/api/{resources/queryTypes/types → types}/LimitRecord.d.mts +0 -0
  2542. /package/dist/esm/api/{resources/queryTypes/types → types}/LimitRecord.mjs +0 -0
  2543. /package/dist/esm/api/{resources/queryTypes/types → types}/ListOrganizationsResponse.mjs +0 -0
  2544. /package/dist/esm/api/{resources/paymentMethodDomain/types → types}/ListPaymentMethodDomainsResponse.mjs +0 -0
  2545. /package/dist/esm/api/{resources/user/types → types}/LogoutUserResponse.mjs +0 -0
  2546. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/LotNumber.d.mts +0 -0
  2547. /package/dist/esm/api/{resources/ocr/types/OcrAttachment.mjs → types/LotNumber.mjs} +0 -0
  2548. /package/dist/esm/api/{resources/ocr/types/OcrBillItem.mjs → types/MethodElementOut.mjs} +0 -0
  2549. /package/dist/esm/api/{resources/ocr/types/OcrBillItemAdditionalData.mjs → types/MethodElementSettings.mjs} +0 -0
  2550. /package/dist/esm/api/{resources/ocr/types/OcrResponseData.mjs → types/MethodElementSettingsApplePay.mjs} +0 -0
  2551. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/MethodsListOut.d.mts +0 -0
  2552. /package/dist/esm/api/{resources/ocr/types/OcrResultData.mjs → types/MethodsListOut.mjs} +0 -0
  2553. /package/dist/esm/api/{resources/paypoint/types → types}/MigratePaypointResponse.mjs +0 -0
  2554. /package/dist/esm/api/{resources/ocr/types/OcrVendor.mjs → types/ModifyApprovalBillResponse.mjs} +0 -0
  2555. /package/dist/esm/api/{resources/notificationlogs/types → types}/NotificationLog.d.mts +0 -0
  2556. /package/dist/esm/api/{resources/ocr/types/OcrVendorAdditionalData.mjs → types/NotificationLog.mjs} +0 -0
  2557. /package/dist/esm/api/{resources/ocr/types/OcrVendorBillingData.mjs → types/NotificationLogDetail.mjs} +0 -0
  2558. /package/dist/esm/api/{resources/paypoint/types → types}/NotificationRequest.mjs +0 -0
  2559. /package/dist/esm/api/{resources/ocr/types/PayabliApiResponseOcr.mjs → types/NotificationStandardRequestContent.mjs} +0 -0
  2560. /package/dist/esm/api/{resources/ocr/types → types}/OcrAttachment.d.mts +0 -0
  2561. /package/dist/esm/api/{resources/ocr/types/TypeResult.mjs → types/OcrAttachment.mjs} +0 -0
  2562. /package/dist/esm/api/{resources/ocr/types → types}/OcrBillItem.d.mts +0 -0
  2563. /package/dist/esm/api/{resources/paymentLink/types/PayabliApiResponsePaymentLinks.mjs → types/OcrBillItem.mjs} +0 -0
  2564. /package/dist/esm/api/{resources/ocr/types → types}/OcrBillItemAdditionalData.d.mts +0 -0
  2565. /package/dist/esm/api/{resources/paymentLink/types/PaymentPageRequestBody.mjs → types/OcrBillItemAdditionalData.mjs} +0 -0
  2566. /package/dist/esm/api/{resources/paymentLink/types/PaymentPageRequestBodyOut.mjs → types/OcrResponseData.mjs} +0 -0
  2567. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutPaymentDetail.mjs → types/OcrResultData.mjs} +0 -0
  2568. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutScheduleDetail.mjs → types/OcrVendor.mjs} +0 -0
  2569. /package/dist/esm/api/{resources/ocr/types → types}/OcrVendorAdditionalData.d.mts +0 -0
  2570. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSetPause.mjs → types/OcrVendorAdditionalData.mjs} +0 -0
  2571. /package/dist/esm/api/{resources/ocr/types → types}/OcrVendorBillingData.d.mts +0 -0
  2572. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.mjs → types/OcrVendorBillingData.mjs} +0 -0
  2573. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/OperationResult.d.mts +0 -0
  2574. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.mjs → types/OperationResult.mjs} +0 -0
  2575. /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionRequestBody.mjs → types/OrganizationQueryRecordServicesItem.mjs} +0 -0
  2576. /package/dist/esm/api/{resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.mjs → types/PayabliApiResponse0ResponseData.mjs} +0 -0
  2577. /package/dist/esm/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.mjs → types/PayabliApiResponseGetPaid.mjs} +0 -0
  2578. /package/dist/esm/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.mjs → types/PayabliApiResponseImportResponseData.mjs} +0 -0
  2579. /package/dist/esm/api/{resources/paypoint/types/PaypointMoveRequest.mjs → types/PayabliApiResponseNotificationsResponseData.mjs} +0 -0
  2580. /package/dist/esm/api/{resources/paypoint/types/WebHeaderParameter.mjs → types/PayabliApiResponseOcr.mjs} +0 -0
  2581. /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesDetailResponse.mjs → types/PayabliApiResponsePaymentLinks.mjs} +0 -0
  2582. /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesResponse.mjs → types/PayabliApiResponsePaymethodDeleteResponseData.mjs} +0 -0
  2583. /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesTransfer.mjs → types/PayabliErrorBody.mjs} +0 -0
  2584. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.d.mts +0 -0
  2585. /package/dist/esm/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.mjs +0 -0
  2586. /package/dist/esm/api/{resources/queryTypes/types/QueryDeviceResponse.mjs → types/PaymentPageRequestBodyOut.mjs} +0 -0
  2587. /package/dist/esm/api/{resources/payoutSubscription/types → types}/PayoutPaymentDetail.d.mts +0 -0
  2588. /package/dist/esm/api/{resources/queryTypes/types/QueryTransferDetailResponse.mjs → types/PayoutPaymentDetail.mjs} +0 -0
  2589. /package/dist/esm/api/{resources/queryTypes/types/QueryTransferResponse.mjs → types/PayoutScheduleDetail.mjs} +0 -0
  2590. /package/dist/esm/api/{resources/payoutSubscription/types → types}/PayoutSetPause.d.mts +0 -0
  2591. /package/dist/esm/api/{resources/queryTypes/types/QueryTransferSummary.mjs → types/PayoutSetPause.mjs} +0 -0
  2592. /package/dist/esm/api/{resources/queryTypes/types/TransferOutBankAccount.mjs → types/PayoutSubscriptionQueryRecord.mjs} +0 -0
  2593. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailBill.mjs → types/PayoutSubscriptionQueryRecordPascal.mjs} +0 -0
  2594. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailBillAttachment.mjs → types/PushPayLinkRequestEmail.mjs} +0 -0
  2595. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailCheckData.mjs → types/PushPayLinkRequestSms.mjs} +0 -0
  2596. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailEvent.mjs → types/QueryBatchesDetailResponse.mjs} +0 -0
  2597. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailPaymentData.mjs → types/QueryBatchesOutResponseRecordsItem.mjs} +0 -0
  2598. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailQueryResponse.mjs → types/QueryBatchesResponse.mjs} +0 -0
  2599. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailRecord.mjs → types/QueryBatchesResponseRecordsItem.mjs} +0 -0
  2600. /package/dist/esm/api/{resources/queryTypes/types → types}/QueryBatchesTransfer.d.mts +0 -0
  2601. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailVendor.mjs → types/QueryBatchesTransfer.mjs} +0 -0
  2602. /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailVendorBillingData.mjs → types/QueryBoardingLinksResponseRecordsItem.mjs} +0 -0
  2603. /package/dist/esm/api/{resources/queryTypes/types/TransferOutEventData.mjs → types/QueryChargebacksResponseRecordsItem.mjs} +0 -0
  2604. /package/dist/esm/api/{resources/queryTypes/types/TransferOutMessage.mjs → types/QueryDeviceResponse.mjs} +0 -0
  2605. /package/dist/esm/api/{resources/queryTypes/types/TransferOutMessageProperties.mjs → types/QueryEntrypointResponseRecordsItem.mjs} +0 -0
  2606. /package/dist/esm/api/{resources/queryTypes/types/TransferOutQueryResponse.mjs → types/QueryInvoiceResponse.mjs} +0 -0
  2607. /package/dist/esm/api/{resources/queryTypes/types/TransferOutRecord.mjs → types/QueryInvoiceResponseRecordsItem.mjs} +0 -0
  2608. /package/dist/esm/api/{resources/queryTypes/types/TransferOutSummary.mjs → types/QueryPayoutSubscriptionResponse.mjs} +0 -0
  2609. /package/dist/esm/api/{resources/queryTypes/types/VCardTransactionQueryResponse.mjs → types/QueryPayoutTransactionRecordsItem.mjs} +0 -0
  2610. /package/dist/esm/api/{resources/queryTypes/types/VCardTransactionRecord.mjs → types/QueryPayoutTransactionRecordsItemPaymentData.mjs} +0 -0
  2611. /package/dist/esm/api/{resources/statistic/types/StatBasicExtendedQueryRecord.mjs → types/QueryPayoutTransactionSummary.mjs} +0 -0
  2612. /package/dist/esm/api/{resources/statistic/types/StatBasicQueryRecord.mjs → types/QueryResponseItemsRecordsItem.mjs} +0 -0
  2613. /package/dist/esm/api/{resources/statistic/types/StatisticsVendorQueryRecord.mjs → types/QueryResponseNotificationReportsRecordsItem.mjs} +0 -0
  2614. /package/dist/esm/api/{resources/statistic/types/SubscriptionStatsQueryRecord.mjs → types/QueryResponseNotificationsRecordsItem.mjs} +0 -0
  2615. /package/dist/esm/api/{resources/subscription/types/AddSubscriptionResponse.mjs → types/QueryResponseSettlementsRecordsItem.mjs} +0 -0
  2616. /package/dist/esm/api/{resources/subscription/types/RemoveSubscriptionResponse.mjs → types/QueryResponseSettlementsSummary.mjs} +0 -0
  2617. /package/dist/esm/api/{resources/subscription/types/SetPause.mjs → types/QueryTransactionEventsEventData.mjs} +0 -0
  2618. /package/dist/esm/api/{resources/subscription/types/SubscriptionRequestBody.mjs → types/QueryTransferDetailResponse.mjs} +0 -0
  2619. /package/dist/esm/api/{resources/subscription/types/UpdateSubscriptionResponse.mjs → types/QueryTransferSummary.mjs} +0 -0
  2620. /package/dist/esm/api/{resources/tokenStorage/types/AddMethodResponse.mjs → types/ReceiptResponse.mjs} +0 -0
  2621. /package/dist/esm/api/{resources/tokenStorage/types/ConvertToken.mjs → types/RefundResponse.mjs} +0 -0
  2622. /package/dist/esm/api/{resources/tokenStorage/types/CreateAnonymous.mjs → types/RefundWithInstructionsResponse.mjs} +0 -0
  2623. /package/dist/esm/api/{resources/tokenStorage/types/RequestTokenStorage.mjs → types/ReissuePaymentMethod.mjs} +0 -0
  2624. /package/dist/esm/api/{resources/tokenStorage/types/RequestTokenStoragePaymentMethod.mjs → types/ReissuePayoutResponse.mjs} +0 -0
  2625. /package/dist/esm/api/{resources/tokenStorage/types/Temporary.mjs → types/ReissuePayoutResponseData.mjs} +0 -0
  2626. /package/dist/esm/api/{resources/tokenStorage/types/TokenizeAch.mjs → types/RemoveDeviceResponse.mjs} +0 -0
  2627. /package/dist/esm/api/{resources/tokenStorage/types/TokenizeCard.mjs → types/RemoveSubscriptionResponse.mjs} +0 -0
  2628. /package/dist/esm/api/{resources/tokenStorage/types/VendorDataRequest.mjs → types/RequestOutAuthorizeInvoiceData.mjs} +0 -0
  2629. /package/dist/esm/api/{resources/user/types/AddUserResponse.mjs → types/RequestOutAuthorizePaymentDetails.mjs} +0 -0
  2630. /package/dist/esm/api/{resources/user/types/AuthResetUserResponse.mjs → types/RequestOutAuthorizeVendorBillingData.mjs} +0 -0
  2631. /package/dist/esm/api/{resources/user/types/ChangePswUserResponse.mjs → types/RequestOutAuthorizeVendorData.mjs} +0 -0
  2632. /package/dist/esm/api/{resources/user/types/DeleteUserResponse.mjs → types/RequestPaymentValidatePaymentMethod.mjs} +0 -0
  2633. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2BadRequestError.mjs → types/RequestSchedulePaymentMethod.mjs} +0 -0
  2634. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2BadRequestErrorDetail.mjs → types/RequestSchedulePaymentMethodInitiator.mjs} +0 -0
  2635. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.mjs → types/RequestTokenStorage.mjs} +0 -0
  2636. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2InternalServerError.mjs → types/RequestTokenStoragePaymentMethod.mjs} +0 -0
  2637. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseAction.mjs → types/ResponseDataRefunds.mjs} +0 -0
  2638. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseCode.mjs → types/ReverseResponse.mjs} +0 -0
  2639. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseExplanation.mjs → types/SendInvoiceResponse.mjs} +0 -0
  2640. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseReason.mjs → types/SetApprovedBillResponse.mjs} +0 -0
  2641. /package/dist/esm/api/{resources/subscription/types → types}/SetPause.d.mts +0 -0
  2642. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.mjs → types/SetPause.mjs} +0 -0
  2643. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionDetails.mjs → types/StatBasicExtendedQueryRecord.mjs} +0 -0
  2644. /package/dist/esm/api/{resources/statistic/types → types}/StatBasicQueryRecord.d.mts +0 -0
  2645. /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.mjs → types/StatBasicQueryRecord.mjs} +0 -0
  2646. /package/dist/esm/api/{resources/statistic/types → types}/StatisticsVendorQueryRecord.d.mts +0 -0
  2647. /package/dist/esm/api/{resources/vendor/types/VendorEnrichRequest.mjs → types/StatisticsVendorQueryRecord.mjs} +0 -0
  2648. /package/dist/esm/api/{resources/notificationlogs/types → types}/StringStringKeyValuePair.d.mts +0 -0
  2649. /package/dist/esm/api/{resources/vendor/types/VendorEnrichResponse.mjs → types/StringStringKeyValuePair.mjs} +0 -0
  2650. /package/dist/esm/api/{resources/statistic/types → types}/SubscriptionStatsQueryRecord.d.mts +0 -0
  2651. /package/dist/esm/api/{resources/vendor/types/VendorEnrichResponseData.mjs → types/SubscriptionStatsQueryRecord.mjs} +0 -0
  2652. /package/dist/esm/api/{resources/tokenStorage/types → types}/Temporary.d.mts +0 -0
  2653. /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentData.mjs → types/Temporary.mjs} +0 -0
  2654. /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentInvoiceScan.mjs → types/TokenizeAch.mjs} +0 -0
  2655. /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentWebSearch.mjs → types/TokenizeCard.mjs} +0 -0
  2656. /package/dist/esm/api/types/{AchPaymentMethod.mjs → TransRequestBody.mjs} +0 -0
  2657. /package/dist/esm/api/types/{DeviceId.mjs → TransactionDetailCustomer.mjs} +0 -0
  2658. /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailEvent.d.mts +0 -0
  2659. /package/dist/esm/api/types/{PayabliApiResponseError400.mjs → TransactionDetailEvent.mjs} +0 -0
  2660. /package/dist/esm/api/types/{PayabliApiResponsePaylinks.mjs → TransactionDetailInvoiceData.mjs} +0 -0
  2661. /package/dist/esm/api/types/{PaymentTransStatusDescription.mjs → TransactionDetailPaymentData.mjs} +0 -0
  2662. /package/dist/esm/api/types/{Paymentid.mjs → TransactionDetailPaymentDetails.mjs} +0 -0
  2663. /package/dist/esm/api/types/{QueryResponse.mjs → TransactionDetailRecord.mjs} +0 -0
  2664. /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.d.mts +0 -0
  2665. /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.mjs +0 -0
  2666. /package/dist/esm/api/types/{TemplateContent.mjs → TransactionDetailResponseData.mjs} +0 -0
  2667. /package/dist/esm/api/types/{TemplateData.mjs → TransferDetailRecord.mjs} +0 -0
  2668. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutBankAccount.d.mts +0 -0
  2669. /package/dist/esm/api/types/{UnderwritingData.mjs → TransferOutBankAccount.mjs} +0 -0
  2670. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailBillAttachment.d.mts +0 -0
  2671. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailCheckData.d.mts +0 -0
  2672. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailEvent.d.mts +0 -0
  2673. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailPaymentData.d.mts +0 -0
  2674. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailVendorBillingData.d.mts +0 -0
  2675. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutEventData.d.mts +0 -0
  2676. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutMessageProperties.d.mts +0 -0
  2677. /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutSummary.d.mts +0 -0
  2678. /package/dist/esm/api/{resources/ocr/types → types}/TypeResult.d.mts +0 -0
  2679. /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2BadRequestErrorDetail.d.mts +0 -0
  2680. /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseAction.d.mts +0 -0
  2681. /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseCode.d.mts +0 -0
  2682. /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseExplanation.d.mts +0 -0
  2683. /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseReason.d.mts +0 -0
  2684. /package/dist/esm/api/{resources/tokenStorage/types → types}/VendorDataRequest.d.mts +0 -0
  2685. /package/dist/esm/api/{resources/vendor/types → types}/VendorEnrichmentInvoiceScan.d.mts +0 -0
  2686. /package/dist/esm/api/{resources/vendor/types → types}/VendorEnrichmentWebSearch.d.mts +0 -0
  2687. /package/dist/esm/api/{resources/paypoint/types → types}/WebHeaderParameter.d.mts +0 -0
@@ -7,9 +7,12 @@ export declare namespace PaypointClient {
7
7
  interface RequestOptions extends BaseRequestOptions {
8
8
  }
9
9
  }
10
+ /**
11
+ * The Paypoint service manages merchant processing entities and their associated payment pages and configurations. It provides detailed paypoint information including business details, processing credentials, bank account configurations, and parent organization relationships. The service handles payment page creation and management with extensive customization options for form fields, styling, payment methods, and user experience flows. It supports multiple payment pages per paypoint, logo management, settings configuration for invoicing and custom fields, and paypoint migration between organizations. The service maintains comprehensive status tracking and summary statistics for each paypoint's transaction activity.
12
+ */
10
13
  export declare class PaypointClient {
11
14
  protected readonly _options: NormalizedClientOptionsWithAuth<PaypointClient.Options>;
12
- constructor(options?: PaypointClient.Options);
15
+ constructor(options: PaypointClient.Options);
13
16
  /**
14
17
  * Gets the basic details for a paypoint.
15
18
  *
@@ -43,10 +46,10 @@ export declare class PaypointClient {
43
46
  getBasicEntryById(IdPaypoint: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.GetBasicEntryByIdResponse>;
44
47
  private __getBasicEntryById;
45
48
  /**
46
- * Gets the details for a single paypoint.
49
+ * Updates a paypoint logo.
47
50
  *
48
51
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
49
- * @param {Payabli.GetEntryConfigRequest} request
52
+ * @param {Payabli.FileContent} request
50
53
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
51
54
  *
52
55
  * @throws {@link Payabli.BadRequestError}
@@ -55,15 +58,14 @@ export declare class PaypointClient {
55
58
  * @throws {@link Payabli.ServiceUnavailableError}
56
59
  *
57
60
  * @example
58
- * await client.paypoint.getEntryConfig("8cfec329267")
61
+ * await client.paypoint.saveLogo("8cfec329267", {})
59
62
  */
60
- getEntryConfig(entry: string, request?: Payabli.GetEntryConfigRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.GetEntryConfigResponse>;
61
- private __getEntryConfig;
63
+ saveLogo(entry: string, request: Payabli.FileContent, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponse00Responsedatanonobject>;
64
+ private __saveLogo;
62
65
  /**
63
- * Gets the details for single payment page for a paypoint.
66
+ * Migrates a paypoint to a new parent organization.
64
67
  *
65
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
66
- * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
68
+ * @param {Payabli.PaypointMoveRequest} request
67
69
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
68
70
  *
69
71
  * @throws {@link Payabli.BadRequestError}
@@ -72,15 +74,24 @@ export declare class PaypointClient {
72
74
  * @throws {@link Payabli.ServiceUnavailableError}
73
75
  *
74
76
  * @example
75
- * await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
77
+ * await client.paypoint.migrate({
78
+ * entryPoint: "8cfec329267",
79
+ * newParentOrganizationId: 123,
80
+ * notificationRequest: {
81
+ * notificationUrl: "https://webhook-test.yoursie.com",
82
+ * webHeaderParameters: [{
83
+ * key: "testheader",
84
+ * value: "1234567890"
85
+ * }]
86
+ * }
87
+ * })
76
88
  */
77
- getPage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliPages>;
78
- private __getPage;
89
+ migrate(request: Payabli.PaypointMoveRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.MigratePaypointResponse>;
90
+ private __migrate;
79
91
  /**
80
- * Deletes a payment page in a paypoint.
92
+ * Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
81
93
  *
82
94
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
83
- * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
84
95
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
85
96
  *
86
97
  * @throws {@link Payabli.BadRequestError}
@@ -89,15 +100,15 @@ export declare class PaypointClient {
89
100
  * @throws {@link Payabli.ServiceUnavailableError}
90
101
  *
91
102
  * @example
92
- * await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
103
+ * await client.paypoint.settingsPage("8cfec329267")
93
104
  */
94
- removePage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponseGeneric2Part>;
95
- private __removePage;
105
+ settingsPage(entry: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.SettingsQueryRecord>;
106
+ private __settingsPage;
96
107
  /**
97
- * Updates a paypoint logo.
108
+ * Gets the details for a single paypoint.
98
109
  *
99
110
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
100
- * @param {Payabli.FileContent} request
111
+ * @param {Payabli.GetEntryConfigRequest} request
101
112
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
102
113
  *
103
114
  * @throws {@link Payabli.BadRequestError}
@@ -106,14 +117,15 @@ export declare class PaypointClient {
106
117
  * @throws {@link Payabli.ServiceUnavailableError}
107
118
  *
108
119
  * @example
109
- * await client.paypoint.saveLogo("8cfec329267", {})
120
+ * await client.paypoint.getEntryConfig("8cfec329267")
110
121
  */
111
- saveLogo(entry: string, request: Payabli.FileContent, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponse00Responsedatanonobject>;
112
- private __saveLogo;
122
+ getEntryConfig(entry: string, request?: Payabli.GetEntryConfigRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.GetEntryConfigResponse>;
123
+ private __getEntryConfig;
113
124
  /**
114
- * Retrieves an paypoint's basic settings like custom fields, identifiers, and invoicing settings.
125
+ * Gets the details for a single payment page for a paypoint.
115
126
  *
116
127
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
128
+ * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
117
129
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
118
130
  *
119
131
  * @throws {@link Payabli.BadRequestError}
@@ -122,29 +134,25 @@ export declare class PaypointClient {
122
134
  * @throws {@link Payabli.ServiceUnavailableError}
123
135
  *
124
136
  * @example
125
- * await client.paypoint.settingsPage("8cfec329267")
137
+ * await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
126
138
  */
127
- settingsPage(entry: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.SettingsQueryRecord>;
128
- private __settingsPage;
139
+ getPage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliPages>;
140
+ private __getPage;
129
141
  /**
130
- * Migrates a paypoint to a new parent organization.
142
+ * Deletes a payment page in a paypoint.
131
143
  *
132
- * @param {Payabli.PaypointMoveRequest} request
144
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
145
+ * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
133
146
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
134
147
  *
148
+ * @throws {@link Payabli.BadRequestError}
149
+ * @throws {@link Payabli.UnauthorizedError}
150
+ * @throws {@link Payabli.InternalServerError}
151
+ * @throws {@link Payabli.ServiceUnavailableError}
152
+ *
135
153
  * @example
136
- * await client.paypoint.migrate({
137
- * entryPoint: "473abc123def",
138
- * newParentOrganizationId: 123,
139
- * notificationRequest: {
140
- * notificationUrl: "https://webhook-test.yoursie.com",
141
- * webHeaderParameters: [{
142
- * key: "testheader",
143
- * value: "1234567890"
144
- * }]
145
- * }
146
- * })
154
+ * await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
147
155
  */
148
- migrate(request: Payabli.PaypointMoveRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.MigratePaypointResponse>;
149
- private __migrate;
156
+ removePage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponseGeneric2Part>;
157
+ private __removePage;
150
158
  }
@@ -51,8 +51,11 @@ const environments = __importStar(require("../../../../environments.js"));
51
51
  const handleNonStatusCodeError_js_1 = require("../../../../errors/handleNonStatusCodeError.js");
52
52
  const errors = __importStar(require("../../../../errors/index.js"));
53
53
  const Payabli = __importStar(require("../../../index.js"));
54
+ /**
55
+ * The Paypoint service manages merchant processing entities and their associated payment pages and configurations. It provides detailed paypoint information including business details, processing credentials, bank account configurations, and parent organization relationships. The service handles payment page creation and management with extensive customization options for form fields, styling, payment methods, and user experience flows. It supports multiple payment pages per paypoint, logo management, settings configuration for invoicing and custom fields, and paypoint migration between organizations. The service maintains comprehensive status tracking and summary statistics for each paypoint's transaction activity.
56
+ */
54
57
  class PaypointClient {
55
- constructor(options = {}) {
58
+ constructor(options) {
56
59
  this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
57
60
  }
58
61
  /**
@@ -81,7 +84,7 @@ class PaypointClient {
81
84
  url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/basic/${core.url.encodePathParam(entry)}`),
82
85
  method: "GET",
83
86
  headers: _headers,
84
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
87
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
85
88
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
86
89
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
87
90
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -138,7 +141,7 @@ class PaypointClient {
138
141
  url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/basicById/${core.url.encodePathParam(IdPaypoint)}`),
139
142
  method: "GET",
140
143
  headers: _headers,
141
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
144
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
142
145
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
143
146
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
144
147
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -170,10 +173,10 @@ class PaypointClient {
170
173
  });
171
174
  }
172
175
  /**
173
- * Gets the details for a single paypoint.
176
+ * Updates a paypoint logo.
174
177
  *
175
178
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
176
- * @param {Payabli.GetEntryConfigRequest} request
179
+ * @param {Payabli.FileContent} request
177
180
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
178
181
  *
179
182
  * @throws {@link Payabli.BadRequestError}
@@ -182,25 +185,24 @@ class PaypointClient {
182
185
  * @throws {@link Payabli.ServiceUnavailableError}
183
186
  *
184
187
  * @example
185
- * await client.paypoint.getEntryConfig("8cfec329267")
188
+ * await client.paypoint.saveLogo("8cfec329267", {})
186
189
  */
187
- getEntryConfig(entry, request = {}, requestOptions) {
188
- return core.HttpResponsePromise.fromPromise(this.__getEntryConfig(entry, request, requestOptions));
190
+ saveLogo(entry, request, requestOptions) {
191
+ return core.HttpResponsePromise.fromPromise(this.__saveLogo(entry, request, requestOptions));
189
192
  }
190
- __getEntryConfig(entry_1) {
191
- return __awaiter(this, arguments, void 0, function* (entry, request = {}, requestOptions) {
193
+ __saveLogo(entry, request, requestOptions) {
194
+ return __awaiter(this, void 0, void 0, function* () {
192
195
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
193
- const { entrypages } = request;
194
- const _queryParams = {
195
- entrypages,
196
- };
197
196
  const _authRequest = yield this._options.authProvider.getAuthRequest();
198
197
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
199
198
  const _response = yield core.fetcher({
200
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}`),
201
- method: "GET",
199
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/logo/${core.url.encodePathParam(entry)}`),
200
+ method: "PUT",
202
201
  headers: _headers,
203
- queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
202
+ contentType: "application/json",
203
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
204
+ requestType: "json",
205
+ body: request,
204
206
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
205
207
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
206
208
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -208,7 +210,10 @@ class PaypointClient {
208
210
  logging: this._options.logging,
209
211
  });
210
212
  if (_response.ok) {
211
- return { data: _response.body, rawResponse: _response.rawResponse };
213
+ return {
214
+ data: _response.body,
215
+ rawResponse: _response.rawResponse,
216
+ };
212
217
  }
213
218
  if (_response.error.reason === "status-code") {
214
219
  switch (_response.error.statusCode) {
@@ -228,14 +233,13 @@ class PaypointClient {
228
233
  });
229
234
  }
230
235
  }
231
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}");
236
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "PUT", "/Paypoint/logo/{entry}");
232
237
  });
233
238
  }
234
239
  /**
235
- * Gets the details for single payment page for a paypoint.
240
+ * Migrates a paypoint to a new parent organization.
236
241
  *
237
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
238
- * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
242
+ * @param {Payabli.PaypointMoveRequest} request
239
243
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
240
244
  *
241
245
  * @throws {@link Payabli.BadRequestError}
@@ -244,21 +248,34 @@ class PaypointClient {
244
248
  * @throws {@link Payabli.ServiceUnavailableError}
245
249
  *
246
250
  * @example
247
- * await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
251
+ * await client.paypoint.migrate({
252
+ * entryPoint: "8cfec329267",
253
+ * newParentOrganizationId: 123,
254
+ * notificationRequest: {
255
+ * notificationUrl: "https://webhook-test.yoursie.com",
256
+ * webHeaderParameters: [{
257
+ * key: "testheader",
258
+ * value: "1234567890"
259
+ * }]
260
+ * }
261
+ * })
248
262
  */
249
- getPage(entry, subdomain, requestOptions) {
250
- return core.HttpResponsePromise.fromPromise(this.__getPage(entry, subdomain, requestOptions));
263
+ migrate(request, requestOptions) {
264
+ return core.HttpResponsePromise.fromPromise(this.__migrate(request, requestOptions));
251
265
  }
252
- __getPage(entry, subdomain, requestOptions) {
266
+ __migrate(request, requestOptions) {
253
267
  return __awaiter(this, void 0, void 0, function* () {
254
268
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
255
269
  const _authRequest = yield this._options.authProvider.getAuthRequest();
256
270
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
257
271
  const _response = yield core.fetcher({
258
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
259
- method: "GET",
272
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, "Paypoint/migrate"),
273
+ method: "POST",
260
274
  headers: _headers,
261
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
275
+ contentType: "application/json",
276
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
277
+ requestType: "json",
278
+ body: request,
262
279
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
263
280
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
264
281
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -286,14 +303,13 @@ class PaypointClient {
286
303
  });
287
304
  }
288
305
  }
289
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}/{subdomain}");
306
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "POST", "/Paypoint/migrate");
290
307
  });
291
308
  }
292
309
  /**
293
- * Deletes a payment page in a paypoint.
310
+ * Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
294
311
  *
295
312
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
296
- * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
297
313
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
298
314
  *
299
315
  * @throws {@link Payabli.BadRequestError}
@@ -302,21 +318,21 @@ class PaypointClient {
302
318
  * @throws {@link Payabli.ServiceUnavailableError}
303
319
  *
304
320
  * @example
305
- * await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
321
+ * await client.paypoint.settingsPage("8cfec329267")
306
322
  */
307
- removePage(entry, subdomain, requestOptions) {
308
- return core.HttpResponsePromise.fromPromise(this.__removePage(entry, subdomain, requestOptions));
323
+ settingsPage(entry, requestOptions) {
324
+ return core.HttpResponsePromise.fromPromise(this.__settingsPage(entry, requestOptions));
309
325
  }
310
- __removePage(entry, subdomain, requestOptions) {
326
+ __settingsPage(entry, requestOptions) {
311
327
  return __awaiter(this, void 0, void 0, function* () {
312
328
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
313
329
  const _authRequest = yield this._options.authProvider.getAuthRequest();
314
330
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
315
331
  const _response = yield core.fetcher({
316
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
317
- method: "DELETE",
332
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/settings/${core.url.encodePathParam(entry)}`),
333
+ method: "GET",
318
334
  headers: _headers,
319
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
335
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
320
336
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
321
337
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
322
338
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -324,10 +340,7 @@ class PaypointClient {
324
340
  logging: this._options.logging,
325
341
  });
326
342
  if (_response.ok) {
327
- return {
328
- data: _response.body,
329
- rawResponse: _response.rawResponse,
330
- };
343
+ return { data: _response.body, rawResponse: _response.rawResponse };
331
344
  }
332
345
  if (_response.error.reason === "status-code") {
333
346
  switch (_response.error.statusCode) {
@@ -347,14 +360,14 @@ class PaypointClient {
347
360
  });
348
361
  }
349
362
  }
350
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "DELETE", "/Paypoint/{entry}/{subdomain}");
363
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/settings/{entry}");
351
364
  });
352
365
  }
353
366
  /**
354
- * Updates a paypoint logo.
367
+ * Gets the details for a single paypoint.
355
368
  *
356
369
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
357
- * @param {Payabli.FileContent} request
370
+ * @param {Payabli.GetEntryConfigRequest} request
358
371
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
359
372
  *
360
373
  * @throws {@link Payabli.BadRequestError}
@@ -363,24 +376,29 @@ class PaypointClient {
363
376
  * @throws {@link Payabli.ServiceUnavailableError}
364
377
  *
365
378
  * @example
366
- * await client.paypoint.saveLogo("8cfec329267", {})
379
+ * await client.paypoint.getEntryConfig("8cfec329267")
367
380
  */
368
- saveLogo(entry, request, requestOptions) {
369
- return core.HttpResponsePromise.fromPromise(this.__saveLogo(entry, request, requestOptions));
381
+ getEntryConfig(entry, request = {}, requestOptions) {
382
+ return core.HttpResponsePromise.fromPromise(this.__getEntryConfig(entry, request, requestOptions));
370
383
  }
371
- __saveLogo(entry, request, requestOptions) {
372
- return __awaiter(this, void 0, void 0, function* () {
384
+ __getEntryConfig(entry_1) {
385
+ return __awaiter(this, arguments, void 0, function* (entry, request = {}, requestOptions) {
373
386
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
387
+ const { entrypages } = request;
388
+ const _queryParams = {
389
+ entrypages,
390
+ };
374
391
  const _authRequest = yield this._options.authProvider.getAuthRequest();
375
392
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
376
393
  const _response = yield core.fetcher({
377
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/logo/${core.url.encodePathParam(entry)}`),
378
- method: "PUT",
394
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}`),
395
+ method: "GET",
379
396
  headers: _headers,
380
- contentType: "application/json",
381
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
382
- requestType: "json",
383
- body: request,
397
+ queryString: core.url
398
+ .queryBuilder()
399
+ .addMany(_queryParams)
400
+ .mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
401
+ .build(),
384
402
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
385
403
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
386
404
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -388,10 +406,7 @@ class PaypointClient {
388
406
  logging: this._options.logging,
389
407
  });
390
408
  if (_response.ok) {
391
- return {
392
- data: _response.body,
393
- rawResponse: _response.rawResponse,
394
- };
409
+ return { data: _response.body, rawResponse: _response.rawResponse };
395
410
  }
396
411
  if (_response.error.reason === "status-code") {
397
412
  switch (_response.error.statusCode) {
@@ -411,13 +426,14 @@ class PaypointClient {
411
426
  });
412
427
  }
413
428
  }
414
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "PUT", "/Paypoint/logo/{entry}");
429
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}");
415
430
  });
416
431
  }
417
432
  /**
418
- * Retrieves an paypoint's basic settings like custom fields, identifiers, and invoicing settings.
433
+ * Gets the details for a single payment page for a paypoint.
419
434
  *
420
435
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
436
+ * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
421
437
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
422
438
  *
423
439
  * @throws {@link Payabli.BadRequestError}
@@ -426,21 +442,21 @@ class PaypointClient {
426
442
  * @throws {@link Payabli.ServiceUnavailableError}
427
443
  *
428
444
  * @example
429
- * await client.paypoint.settingsPage("8cfec329267")
445
+ * await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
430
446
  */
431
- settingsPage(entry, requestOptions) {
432
- return core.HttpResponsePromise.fromPromise(this.__settingsPage(entry, requestOptions));
447
+ getPage(entry, subdomain, requestOptions) {
448
+ return core.HttpResponsePromise.fromPromise(this.__getPage(entry, subdomain, requestOptions));
433
449
  }
434
- __settingsPage(entry, requestOptions) {
450
+ __getPage(entry, subdomain, requestOptions) {
435
451
  return __awaiter(this, void 0, void 0, function* () {
436
452
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
437
453
  const _authRequest = yield this._options.authProvider.getAuthRequest();
438
454
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
439
455
  const _response = yield core.fetcher({
440
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/settings/${core.url.encodePathParam(entry)}`),
456
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
441
457
  method: "GET",
442
458
  headers: _headers,
443
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
459
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
444
460
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
445
461
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
446
462
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -468,44 +484,37 @@ class PaypointClient {
468
484
  });
469
485
  }
470
486
  }
471
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/settings/{entry}");
487
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}/{subdomain}");
472
488
  });
473
489
  }
474
490
  /**
475
- * Migrates a paypoint to a new parent organization.
491
+ * Deletes a payment page in a paypoint.
476
492
  *
477
- * @param {Payabli.PaypointMoveRequest} request
493
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
494
+ * @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
478
495
  * @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
479
496
  *
497
+ * @throws {@link Payabli.BadRequestError}
498
+ * @throws {@link Payabli.UnauthorizedError}
499
+ * @throws {@link Payabli.InternalServerError}
500
+ * @throws {@link Payabli.ServiceUnavailableError}
501
+ *
480
502
  * @example
481
- * await client.paypoint.migrate({
482
- * entryPoint: "473abc123def",
483
- * newParentOrganizationId: 123,
484
- * notificationRequest: {
485
- * notificationUrl: "https://webhook-test.yoursie.com",
486
- * webHeaderParameters: [{
487
- * key: "testheader",
488
- * value: "1234567890"
489
- * }]
490
- * }
491
- * })
503
+ * await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
492
504
  */
493
- migrate(request, requestOptions) {
494
- return core.HttpResponsePromise.fromPromise(this.__migrate(request, requestOptions));
505
+ removePage(entry, subdomain, requestOptions) {
506
+ return core.HttpResponsePromise.fromPromise(this.__removePage(entry, subdomain, requestOptions));
495
507
  }
496
- __migrate(request, requestOptions) {
508
+ __removePage(entry, subdomain, requestOptions) {
497
509
  return __awaiter(this, void 0, void 0, function* () {
498
510
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
499
511
  const _authRequest = yield this._options.authProvider.getAuthRequest();
500
512
  const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
501
513
  const _response = yield core.fetcher({
502
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, "Paypoint/migrate"),
503
- method: "POST",
514
+ url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
515
+ method: "DELETE",
504
516
  headers: _headers,
505
- contentType: "application/json",
506
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
507
- requestType: "json",
508
- body: request,
517
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
509
518
  timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
510
519
  maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
511
520
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -513,16 +522,30 @@ class PaypointClient {
513
522
  logging: this._options.logging,
514
523
  });
515
524
  if (_response.ok) {
516
- return { data: _response.body, rawResponse: _response.rawResponse };
525
+ return {
526
+ data: _response.body,
527
+ rawResponse: _response.rawResponse,
528
+ };
517
529
  }
518
530
  if (_response.error.reason === "status-code") {
519
- throw new errors.PayabliError({
520
- statusCode: _response.error.statusCode,
521
- body: _response.error.body,
522
- rawResponse: _response.rawResponse,
523
- });
531
+ switch (_response.error.statusCode) {
532
+ case 400:
533
+ throw new Payabli.BadRequestError(_response.error.body, _response.rawResponse);
534
+ case 401:
535
+ throw new Payabli.UnauthorizedError(_response.error.body, _response.rawResponse);
536
+ case 500:
537
+ throw new Payabli.InternalServerError(_response.error.body, _response.rawResponse);
538
+ case 503:
539
+ throw new Payabli.ServiceUnavailableError(_response.error.body, _response.rawResponse);
540
+ default:
541
+ throw new errors.PayabliError({
542
+ statusCode: _response.error.statusCode,
543
+ body: _response.error.body,
544
+ rawResponse: _response.rawResponse,
545
+ });
546
+ }
524
547
  }
525
- return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "POST", "/Paypoint/migrate");
548
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "DELETE", "/Paypoint/{entry}/{subdomain}");
526
549
  });
527
550
  }
528
551
  }
@@ -0,0 +1,22 @@
1
+ import type * as Payabli from "../../../../index.js";
2
+ /**
3
+ * @example
4
+ * {
5
+ * entryPoint: "8cfec329267",
6
+ * newParentOrganizationId: 123,
7
+ * notificationRequest: {
8
+ * notificationUrl: "https://webhook-test.yoursie.com",
9
+ * webHeaderParameters: [{
10
+ * key: "testheader",
11
+ * value: "1234567890"
12
+ * }]
13
+ * }
14
+ * }
15
+ */
16
+ export interface PaypointMoveRequest {
17
+ entryPoint: Payabli.Entrypointfield;
18
+ /** The ID for the paypoint's new parent organization. */
19
+ newParentOrganizationId: number;
20
+ /** Optional notification request object for a webhook */
21
+ notificationRequest?: Payabli.NotificationRequest;
22
+ }
@@ -1 +1,2 @@
1
1
  export type { GetEntryConfigRequest } from "./GetEntryConfigRequest.js";
2
+ export type { PaypointMoveRequest } from "./PaypointMoveRequest.js";
@@ -1,2 +1 @@
1
1
  export * from "./client/index.js";
2
- export * from "./types/index.js";