@payabli/sdk-node 0.0.116 → 0.0.123

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 (271) hide show
  1. package/README.md +31 -2
  2. package/dist/cjs/BaseClient.d.ts +13 -4
  3. package/dist/cjs/BaseClient.js +59 -0
  4. package/dist/cjs/Client.d.ts +88 -88
  5. package/dist/cjs/Client.js +31 -72
  6. package/dist/cjs/api/errors/BadRequestError.js +5 -1
  7. package/dist/cjs/api/errors/ConflictError.js +5 -1
  8. package/dist/cjs/api/errors/ForbiddenError.js +5 -1
  9. package/dist/cjs/api/errors/InternalServerError.js +5 -1
  10. package/dist/cjs/api/errors/ServiceUnavailableError.js +5 -1
  11. package/dist/cjs/api/errors/UnauthorizedError.js +5 -1
  12. package/dist/cjs/api/resources/bill/client/Client.d.ts +34 -35
  13. package/dist/cjs/api/resources/bill/client/Client.js +69 -216
  14. package/dist/cjs/api/resources/boarding/client/Client.d.ts +28 -29
  15. package/dist/cjs/api/resources/boarding/client/Client.js +51 -198
  16. package/dist/cjs/api/resources/chargeBacks/client/Client.d.ts +18 -17
  17. package/dist/cjs/api/resources/chargeBacks/client/Client.js +38 -79
  18. package/dist/cjs/api/resources/checkCapture/client/Client.d.ts +8 -9
  19. package/dist/cjs/api/resources/checkCapture/client/Client.js +11 -28
  20. package/dist/cjs/api/resources/cloud/client/Client.d.ts +18 -19
  21. package/dist/cjs/api/resources/cloud/client/Client.js +33 -89
  22. package/dist/cjs/api/resources/customer/client/Client.d.ts +18 -19
  23. package/dist/cjs/api/resources/customer/client/Client.js +31 -113
  24. package/dist/cjs/api/resources/export/client/Client.d.ts +94 -91
  25. package/dist/cjs/api/resources/export/client/Client.js +205 -582
  26. package/dist/cjs/api/resources/hostedPaymentPages/client/Client.d.ts +12 -13
  27. package/dist/cjs/api/resources/hostedPaymentPages/client/Client.js +19 -62
  28. package/dist/cjs/api/resources/import/client/Client.d.ts +12 -13
  29. package/dist/cjs/api/resources/import/client/Client.js +19 -62
  30. package/dist/cjs/api/resources/invoice/client/Client.d.ts +37 -36
  31. package/dist/cjs/api/resources/invoice/client/Client.js +67 -212
  32. package/dist/cjs/api/resources/invoice/client/requests/AddInvoiceRequest.d.ts +5 -3
  33. package/dist/cjs/api/resources/lineItem/client/Client.d.ts +16 -17
  34. package/dist/cjs/api/resources/lineItem/client/Client.js +27 -96
  35. package/dist/cjs/api/resources/moneyIn/client/Client.d.ts +40 -41
  36. package/dist/cjs/api/resources/moneyIn/client/Client.js +79 -249
  37. package/dist/cjs/api/resources/moneyIn/errors/CaptureError.js +5 -1
  38. package/dist/cjs/api/resources/moneyIn/errors/InvalidTransStatusError.js +5 -1
  39. package/dist/cjs/api/resources/moneyOut/client/Client.d.ts +44 -28
  40. package/dist/cjs/api/resources/moneyOut/client/Client.js +105 -168
  41. package/dist/cjs/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.ts +2 -1
  42. package/dist/cjs/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.ts +3 -1
  43. package/dist/cjs/api/resources/notification/client/Client.d.ts +30 -18
  44. package/dist/cjs/api/resources/notification/client/Client.js +45 -101
  45. package/dist/cjs/api/resources/notificationlogs/client/Client.d.ts +14 -15
  46. package/dist/cjs/api/resources/notificationlogs/client/Client.js +23 -79
  47. package/dist/cjs/api/resources/ocr/client/Client.d.ts +14 -11
  48. package/dist/cjs/api/resources/ocr/client/Client.js +19 -45
  49. package/dist/cjs/api/resources/organization/client/Client.d.ts +20 -21
  50. package/dist/cjs/api/resources/organization/client/Client.js +35 -130
  51. package/dist/cjs/api/resources/paymentLink/client/Client.d.ts +27 -28
  52. package/dist/cjs/api/resources/paymentLink/client/Client.js +46 -167
  53. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataBill.d.ts +1 -1
  54. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.ts +1 -1
  55. package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataOut.d.ts +1 -1
  56. package/dist/cjs/api/resources/paymentLink/types/PaymentPageRequestBody.d.ts +2 -2
  57. package/dist/cjs/api/resources/paymentMethodDomain/client/Client.d.ts +20 -21
  58. package/dist/cjs/api/resources/paymentMethodDomain/client/Client.js +35 -130
  59. package/dist/cjs/api/resources/paypoint/client/Client.d.ts +23 -24
  60. package/dist/cjs/api/resources/paypoint/client/Client.js +44 -152
  61. package/dist/cjs/api/resources/query/client/Client.d.ts +72 -73
  62. package/dist/cjs/api/resources/query/client/Client.js +137 -572
  63. package/dist/cjs/api/resources/query/client/requests/ListPayoutOrgRequest.d.ts +1 -0
  64. package/dist/cjs/api/resources/query/client/requests/ListPayoutRequest.d.ts +1 -0
  65. package/dist/cjs/api/resources/query/client/requests/ListTransactionsRequest.d.ts +1 -0
  66. package/dist/cjs/api/resources/statistic/client/Client.d.ts +51 -52
  67. package/dist/cjs/api/resources/statistic/client/Client.js +80 -133
  68. package/dist/cjs/api/resources/statistic/client/requests/BasicStatsRequest.d.ts +2 -2
  69. package/dist/cjs/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.ts +76 -0
  70. package/dist/cjs/api/resources/statistic/types/StatBasicExtendedQueryRecord.js +3 -0
  71. package/dist/cjs/api/resources/statistic/types/index.d.ts +1 -0
  72. package/dist/cjs/api/resources/statistic/types/index.js +1 -0
  73. package/dist/cjs/api/resources/subscription/client/Client.d.ts +14 -15
  74. package/dist/cjs/api/resources/subscription/client/Client.js +23 -79
  75. package/dist/cjs/api/resources/templates/client/Client.d.ts +16 -17
  76. package/dist/cjs/api/resources/templates/client/Client.js +28 -84
  77. package/dist/cjs/api/resources/tokenStorage/client/Client.d.ts +14 -15
  78. package/dist/cjs/api/resources/tokenStorage/client/Client.js +23 -79
  79. package/dist/cjs/api/resources/tokenStorage/types/GetMethodResponse.d.ts +1 -1
  80. package/dist/cjs/api/resources/user/client/Client.d.ts +55 -34
  81. package/dist/cjs/api/resources/user/client/Client.js +84 -222
  82. package/dist/cjs/api/resources/vendor/client/Client.d.ts +14 -15
  83. package/dist/cjs/api/resources/vendor/client/Client.js +23 -79
  84. package/dist/cjs/api/resources/wallet/client/Client.d.ts +14 -15
  85. package/dist/cjs/api/resources/wallet/client/Client.js +23 -79
  86. package/dist/cjs/api/types/ApplicationDetailsRecord.d.ts +2 -2
  87. package/dist/cjs/api/types/Frequency.d.ts +1 -1
  88. package/dist/cjs/api/types/Frequency.js +1 -1
  89. package/dist/cjs/api/types/FrequencyList.d.ts +1 -1
  90. package/dist/cjs/api/types/NotificationContent.d.ts +1 -0
  91. package/dist/cjs/api/types/NotificationContent.js +1 -0
  92. package/dist/cjs/api/types/NotificationStandardRequest.d.ts +1 -0
  93. package/dist/cjs/api/types/NotificationStandardRequest.js +1 -0
  94. package/dist/cjs/api/types/PayorDataResponse.d.ts +1 -1
  95. package/dist/cjs/api/types/QueryResponseSettlements.d.ts +1 -1
  96. package/dist/cjs/auth/HeaderAuthProvider.d.ts +16 -0
  97. package/dist/cjs/auth/HeaderAuthProvider.js +71 -0
  98. package/dist/cjs/auth/index.d.ts +1 -0
  99. package/dist/cjs/auth/index.js +5 -0
  100. package/dist/cjs/core/auth/AuthProvider.d.ts +7 -0
  101. package/dist/cjs/core/auth/AuthProvider.js +2 -0
  102. package/dist/cjs/core/auth/AuthRequest.d.ts +9 -0
  103. package/dist/cjs/core/auth/AuthRequest.js +2 -0
  104. package/dist/cjs/core/auth/BasicAuth.d.ts +8 -0
  105. package/dist/cjs/core/auth/BasicAuth.js +27 -0
  106. package/dist/cjs/core/auth/BearerToken.d.ts +7 -0
  107. package/dist/cjs/core/auth/BearerToken.js +16 -0
  108. package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
  109. package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
  110. package/dist/cjs/core/auth/index.d.ts +5 -0
  111. package/dist/cjs/core/auth/index.js +9 -0
  112. package/dist/cjs/core/base64.d.ts +2 -0
  113. package/dist/cjs/core/base64.js +26 -0
  114. package/dist/cjs/core/fetcher/BinaryResponse.d.ts +6 -7
  115. package/dist/cjs/core/fetcher/Fetcher.d.ts +5 -1
  116. package/dist/cjs/core/fetcher/Fetcher.js +42 -24
  117. package/dist/cjs/core/fetcher/getResponseBody.js +18 -4
  118. package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -1
  119. package/dist/cjs/core/fetcher/makeRequest.js +0 -2
  120. package/dist/cjs/core/fetcher/requestWithRetries.js +0 -9
  121. package/dist/cjs/core/fetcher/signals.d.ts +1 -7
  122. package/dist/cjs/core/fetcher/signals.js +0 -12
  123. package/dist/cjs/core/index.d.ts +2 -0
  124. package/dist/cjs/core/index.js +2 -0
  125. package/dist/cjs/core/logging/logger.js +1 -1
  126. package/dist/cjs/core/runtime/runtime.js +11 -10
  127. package/dist/cjs/core/url/join.js +0 -1
  128. package/dist/cjs/errors/PayabliError.js +5 -1
  129. package/dist/cjs/errors/PayabliTimeoutError.js +5 -1
  130. package/dist/cjs/errors/handleNonStatusCodeError.d.ts +2 -0
  131. package/dist/cjs/errors/handleNonStatusCodeError.js +65 -0
  132. package/dist/cjs/version.d.ts +1 -1
  133. package/dist/cjs/version.js +1 -1
  134. package/dist/esm/BaseClient.d.mts +13 -4
  135. package/dist/esm/BaseClient.mjs +24 -1
  136. package/dist/esm/Client.d.mts +88 -88
  137. package/dist/esm/Client.mjs +59 -67
  138. package/dist/esm/api/errors/BadRequestError.mjs +5 -1
  139. package/dist/esm/api/errors/ConflictError.mjs +5 -1
  140. package/dist/esm/api/errors/ForbiddenError.mjs +5 -1
  141. package/dist/esm/api/errors/InternalServerError.mjs +5 -1
  142. package/dist/esm/api/errors/ServiceUnavailableError.mjs +5 -1
  143. package/dist/esm/api/errors/UnauthorizedError.mjs +5 -1
  144. package/dist/esm/api/resources/bill/client/Client.d.mts +34 -35
  145. package/dist/esm/api/resources/bill/client/Client.mjs +67 -214
  146. package/dist/esm/api/resources/boarding/client/Client.d.mts +28 -29
  147. package/dist/esm/api/resources/boarding/client/Client.mjs +50 -197
  148. package/dist/esm/api/resources/chargeBacks/client/Client.d.mts +18 -17
  149. package/dist/esm/api/resources/chargeBacks/client/Client.mjs +36 -77
  150. package/dist/esm/api/resources/checkCapture/client/Client.d.mts +8 -9
  151. package/dist/esm/api/resources/checkCapture/client/Client.mjs +10 -27
  152. package/dist/esm/api/resources/cloud/client/Client.d.mts +18 -19
  153. package/dist/esm/api/resources/cloud/client/Client.mjs +31 -87
  154. package/dist/esm/api/resources/customer/client/Client.d.mts +18 -19
  155. package/dist/esm/api/resources/customer/client/Client.mjs +29 -111
  156. package/dist/esm/api/resources/export/client/Client.d.mts +94 -91
  157. package/dist/esm/api/resources/export/client/Client.mjs +204 -581
  158. package/dist/esm/api/resources/hostedPaymentPages/client/Client.d.mts +12 -13
  159. package/dist/esm/api/resources/hostedPaymentPages/client/Client.mjs +17 -60
  160. package/dist/esm/api/resources/import/client/Client.d.mts +12 -13
  161. package/dist/esm/api/resources/import/client/Client.mjs +17 -60
  162. package/dist/esm/api/resources/invoice/client/Client.d.mts +37 -36
  163. package/dist/esm/api/resources/invoice/client/Client.mjs +65 -210
  164. package/dist/esm/api/resources/invoice/client/requests/AddInvoiceRequest.d.mts +5 -3
  165. package/dist/esm/api/resources/lineItem/client/Client.d.mts +16 -17
  166. package/dist/esm/api/resources/lineItem/client/Client.mjs +25 -94
  167. package/dist/esm/api/resources/moneyIn/client/Client.d.mts +40 -41
  168. package/dist/esm/api/resources/moneyIn/client/Client.mjs +77 -247
  169. package/dist/esm/api/resources/moneyIn/errors/CaptureError.mjs +5 -1
  170. package/dist/esm/api/resources/moneyIn/errors/InvalidTransStatusError.mjs +5 -1
  171. package/dist/esm/api/resources/moneyOut/client/Client.d.mts +44 -28
  172. package/dist/esm/api/resources/moneyOut/client/Client.mjs +103 -166
  173. package/dist/esm/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.mts +2 -1
  174. package/dist/esm/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.mts +3 -1
  175. package/dist/esm/api/resources/notification/client/Client.d.mts +30 -18
  176. package/dist/esm/api/resources/notification/client/Client.mjs +44 -100
  177. package/dist/esm/api/resources/notificationlogs/client/Client.d.mts +14 -15
  178. package/dist/esm/api/resources/notificationlogs/client/Client.mjs +22 -78
  179. package/dist/esm/api/resources/ocr/client/Client.d.mts +14 -11
  180. package/dist/esm/api/resources/ocr/client/Client.mjs +18 -44
  181. package/dist/esm/api/resources/organization/client/Client.d.mts +20 -21
  182. package/dist/esm/api/resources/organization/client/Client.mjs +33 -128
  183. package/dist/esm/api/resources/paymentLink/client/Client.d.mts +27 -28
  184. package/dist/esm/api/resources/paymentLink/client/Client.mjs +44 -165
  185. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataBill.d.mts +1 -1
  186. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.mts +1 -1
  187. package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataOut.d.mts +1 -1
  188. package/dist/esm/api/resources/paymentLink/types/PaymentPageRequestBody.d.mts +2 -2
  189. package/dist/esm/api/resources/paymentMethodDomain/client/Client.d.mts +20 -21
  190. package/dist/esm/api/resources/paymentMethodDomain/client/Client.mjs +34 -129
  191. package/dist/esm/api/resources/paypoint/client/Client.d.mts +23 -24
  192. package/dist/esm/api/resources/paypoint/client/Client.mjs +43 -151
  193. package/dist/esm/api/resources/query/client/Client.d.mts +72 -73
  194. package/dist/esm/api/resources/query/client/Client.mjs +136 -571
  195. package/dist/esm/api/resources/query/client/requests/ListPayoutOrgRequest.d.mts +1 -0
  196. package/dist/esm/api/resources/query/client/requests/ListPayoutRequest.d.mts +1 -0
  197. package/dist/esm/api/resources/query/client/requests/ListTransactionsRequest.d.mts +1 -0
  198. package/dist/esm/api/resources/statistic/client/Client.d.mts +51 -52
  199. package/dist/esm/api/resources/statistic/client/Client.mjs +79 -132
  200. package/dist/esm/api/resources/statistic/client/requests/BasicStatsRequest.d.mts +2 -2
  201. package/dist/esm/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.mts +76 -0
  202. package/dist/esm/api/resources/statistic/types/StatBasicExtendedQueryRecord.mjs +2 -0
  203. package/dist/esm/api/resources/statistic/types/index.d.mts +1 -0
  204. package/dist/esm/api/resources/statistic/types/index.mjs +1 -0
  205. package/dist/esm/api/resources/subscription/client/Client.d.mts +14 -15
  206. package/dist/esm/api/resources/subscription/client/Client.mjs +21 -77
  207. package/dist/esm/api/resources/templates/client/Client.d.mts +16 -17
  208. package/dist/esm/api/resources/templates/client/Client.mjs +27 -83
  209. package/dist/esm/api/resources/tokenStorage/client/Client.d.mts +14 -15
  210. package/dist/esm/api/resources/tokenStorage/client/Client.mjs +21 -77
  211. package/dist/esm/api/resources/tokenStorage/types/GetMethodResponse.d.mts +1 -1
  212. package/dist/esm/api/resources/user/client/Client.d.mts +55 -34
  213. package/dist/esm/api/resources/user/client/Client.mjs +83 -221
  214. package/dist/esm/api/resources/vendor/client/Client.d.mts +14 -15
  215. package/dist/esm/api/resources/vendor/client/Client.mjs +22 -78
  216. package/dist/esm/api/resources/wallet/client/Client.d.mts +14 -15
  217. package/dist/esm/api/resources/wallet/client/Client.mjs +22 -78
  218. package/dist/esm/api/types/ApplicationDetailsRecord.d.mts +2 -2
  219. package/dist/esm/api/types/Frequency.d.mts +1 -1
  220. package/dist/esm/api/types/Frequency.mjs +1 -1
  221. package/dist/esm/api/types/FrequencyList.d.mts +1 -1
  222. package/dist/esm/api/types/NotificationContent.d.mts +1 -0
  223. package/dist/esm/api/types/NotificationContent.mjs +1 -0
  224. package/dist/esm/api/types/NotificationStandardRequest.d.mts +1 -0
  225. package/dist/esm/api/types/NotificationStandardRequest.mjs +1 -0
  226. package/dist/esm/api/types/PayorDataResponse.d.mts +1 -1
  227. package/dist/esm/api/types/QueryResponseSettlements.d.mts +1 -1
  228. package/dist/esm/auth/HeaderAuthProvider.d.mts +16 -0
  229. package/dist/esm/auth/HeaderAuthProvider.mjs +34 -0
  230. package/dist/esm/auth/index.d.mts +1 -0
  231. package/dist/esm/auth/index.mjs +1 -0
  232. package/dist/esm/core/auth/AuthProvider.d.mts +7 -0
  233. package/dist/esm/core/auth/AuthProvider.mjs +1 -0
  234. package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
  235. package/dist/esm/core/auth/AuthRequest.mjs +1 -0
  236. package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
  237. package/dist/esm/core/auth/BasicAuth.mjs +24 -0
  238. package/dist/esm/core/auth/BearerToken.d.mts +7 -0
  239. package/dist/esm/core/auth/BearerToken.mjs +13 -0
  240. package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
  241. package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
  242. package/dist/esm/core/auth/index.d.mts +5 -0
  243. package/dist/esm/core/auth/index.mjs +3 -0
  244. package/dist/esm/core/base64.d.mts +2 -0
  245. package/dist/esm/core/base64.mjs +22 -0
  246. package/dist/esm/core/fetcher/BinaryResponse.d.mts +6 -7
  247. package/dist/esm/core/fetcher/Fetcher.d.mts +5 -1
  248. package/dist/esm/core/fetcher/Fetcher.mjs +42 -24
  249. package/dist/esm/core/fetcher/getResponseBody.mjs +18 -4
  250. package/dist/esm/core/fetcher/makeRequest.d.mts +1 -1
  251. package/dist/esm/core/fetcher/makeRequest.mjs +0 -2
  252. package/dist/esm/core/fetcher/requestWithRetries.mjs +0 -9
  253. package/dist/esm/core/fetcher/signals.d.mts +1 -7
  254. package/dist/esm/core/fetcher/signals.mjs +0 -12
  255. package/dist/esm/core/index.d.mts +2 -0
  256. package/dist/esm/core/index.mjs +2 -0
  257. package/dist/esm/core/logging/logger.mjs +1 -1
  258. package/dist/esm/core/runtime/runtime.mjs +11 -10
  259. package/dist/esm/core/url/join.mjs +0 -1
  260. package/dist/esm/errors/PayabliError.mjs +5 -1
  261. package/dist/esm/errors/PayabliTimeoutError.mjs +5 -1
  262. package/dist/esm/errors/handleNonStatusCodeError.d.mts +2 -0
  263. package/dist/esm/errors/handleNonStatusCodeError.mjs +29 -0
  264. package/dist/esm/version.d.mts +1 -1
  265. package/dist/esm/version.mjs +1 -1
  266. package/package.json +5 -2
  267. package/reference.md +768 -478
  268. package/dist/cjs/core/fetcher/ResponseWithBody.d.ts +0 -4
  269. package/dist/cjs/core/fetcher/ResponseWithBody.js +0 -6
  270. package/dist/esm/core/fetcher/ResponseWithBody.d.mts +0 -4
  271. package/dist/esm/core/fetcher/ResponseWithBody.mjs +0 -3
@@ -1,22 +1,22 @@
1
1
  import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.mjs";
2
+ import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.mjs";
2
3
  import * as core from "../../../../core/index.mjs";
3
4
  import * as Payabli from "../../../index.mjs";
4
- export declare namespace Export {
5
- interface Options extends BaseClientOptions {
6
- }
5
+ export declare namespace ExportClient {
6
+ type Options = BaseClientOptions;
7
7
  interface RequestOptions extends BaseRequestOptions {
8
8
  }
9
9
  }
10
- export declare class Export {
11
- protected readonly _options: Export.Options;
12
- constructor(_options?: Export.Options);
10
+ export declare class ExportClient {
11
+ protected readonly _options: NormalizedClientOptionsWithAuth<ExportClient.Options>;
12
+ constructor(options?: ExportClient.Options);
13
13
  /**
14
14
  * Export a list of boarding applications for an organization. Use filters to limit results.
15
15
  *
16
16
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
17
17
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
18
18
  * @param {Payabli.ExportApplicationsRequest} request
19
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
19
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
20
20
  *
21
21
  * @throws {@link Payabli.BadRequestError}
22
22
  * @throws {@link Payabli.UnauthorizedError}
@@ -30,13 +30,15 @@ export declare class Export {
30
30
  * limitRecord: 1000
31
31
  * })
32
32
  */
33
- exportApplications(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportApplicationsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
33
+ exportApplications(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportApplicationsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
34
34
  private __exportApplications;
35
35
  /**
36
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
36
+ * This endpoint is deprecated. Export batch details for a paypoint. Use filters to limit results.
37
+ *
37
38
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
39
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
38
40
  * @param {Payabli.ExportBatchDetailsRequest} request
39
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
41
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
40
42
  *
41
43
  * @throws {@link Payabli.BadRequestError}
42
44
  * @throws {@link Payabli.UnauthorizedError}
@@ -44,19 +46,21 @@ export declare class Export {
44
46
  * @throws {@link Payabli.ServiceUnavailableError}
45
47
  *
46
48
  * @example
47
- * await client.export.exportBatchDetails("8cfec329267", "csv", {
49
+ * await client.export.exportBatchDetails("csv", "8cfec329267", {
48
50
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
49
51
  * fromRecord: 251,
50
52
  * limitRecord: 1000
51
53
  * })
52
54
  */
53
- exportBatchDetails(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportBatchDetailsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
55
+ exportBatchDetails(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportBatchDetailsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
54
56
  private __exportBatchDetails;
55
57
  /**
58
+ * This endpoint is deprecated. Export batch details for an organization. Use filters to limit results.
59
+ *
56
60
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
57
61
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
58
62
  * @param {Payabli.ExportBatchDetailsOrgRequest} request
59
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
63
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
60
64
  *
61
65
  * @throws {@link Payabli.BadRequestError}
62
66
  * @throws {@link Payabli.UnauthorizedError}
@@ -70,15 +74,15 @@ export declare class Export {
70
74
  * limitRecord: 1000
71
75
  * })
72
76
  */
73
- exportBatchDetailsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchDetailsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
77
+ exportBatchDetailsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchDetailsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
74
78
  private __exportBatchDetailsOrg;
75
79
  /**
76
80
  * Export a list of batches for an entrypoint. Use filters to limit results.
77
81
  *
78
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
79
82
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
83
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
80
84
  * @param {Payabli.ExportBatchesRequest} request
81
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
85
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
82
86
  *
83
87
  * @throws {@link Payabli.BadRequestError}
84
88
  * @throws {@link Payabli.UnauthorizedError}
@@ -86,13 +90,13 @@ export declare class Export {
86
90
  * @throws {@link Payabli.ServiceUnavailableError}
87
91
  *
88
92
  * @example
89
- * await client.export.exportBatches("8cfec329267", "csv", {
93
+ * await client.export.exportBatches("csv", "8cfec329267", {
90
94
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
91
95
  * fromRecord: 251,
92
96
  * limitRecord: 1000
93
97
  * })
94
98
  */
95
- exportBatches(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportBatchesRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
99
+ exportBatches(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportBatchesRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
96
100
  private __exportBatches;
97
101
  /**
98
102
  * Export a list of batches for an organization. Use filters to limit results.
@@ -100,7 +104,7 @@ export declare class Export {
100
104
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
101
105
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
102
106
  * @param {Payabli.ExportBatchesOrgRequest} request
103
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
107
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
104
108
  *
105
109
  * @throws {@link Payabli.BadRequestError}
106
110
  * @throws {@link Payabli.UnauthorizedError}
@@ -114,15 +118,15 @@ export declare class Export {
114
118
  * limitRecord: 1000
115
119
  * })
116
120
  */
117
- exportBatchesOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchesOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
121
+ exportBatchesOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchesOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
118
122
  private __exportBatchesOrg;
119
123
  /**
120
124
  * Export a list of money out batches for a paypoint. Use filters to limit results.
121
125
  *
122
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
123
126
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
127
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
124
128
  * @param {Payabli.ExportBatchesOutRequest} request
125
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
129
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
126
130
  *
127
131
  * @throws {@link Payabli.BadRequestError}
128
132
  * @throws {@link Payabli.UnauthorizedError}
@@ -130,13 +134,13 @@ export declare class Export {
130
134
  * @throws {@link Payabli.ServiceUnavailableError}
131
135
  *
132
136
  * @example
133
- * await client.export.exportBatchesOut("8cfec329267", "csv", {
137
+ * await client.export.exportBatchesOut("csv", "8cfec329267", {
134
138
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
135
139
  * fromRecord: 251,
136
140
  * limitRecord: 1000
137
141
  * })
138
142
  */
139
- exportBatchesOut(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportBatchesOutRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
143
+ exportBatchesOut(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportBatchesOutRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
140
144
  private __exportBatchesOut;
141
145
  /**
142
146
  * Export a list of money out batches for an organization. Use filters to limit results.
@@ -144,7 +148,7 @@ export declare class Export {
144
148
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
145
149
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
146
150
  * @param {Payabli.ExportBatchesOutOrgRequest} request
147
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
151
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
148
152
  *
149
153
  * @throws {@link Payabli.BadRequestError}
150
154
  * @throws {@link Payabli.UnauthorizedError}
@@ -158,15 +162,15 @@ export declare class Export {
158
162
  * limitRecord: 1000
159
163
  * })
160
164
  */
161
- exportBatchesOutOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchesOutOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
165
+ exportBatchesOutOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBatchesOutOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
162
166
  private __exportBatchesOutOrg;
163
167
  /**
164
168
  * Export a list of bills for an entrypoint. Use filters to limit results.
165
169
  *
166
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
167
170
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
171
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
168
172
  * @param {Payabli.ExportBillsRequest} request
169
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
173
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
170
174
  *
171
175
  * @throws {@link Payabli.BadRequestError}
172
176
  * @throws {@link Payabli.UnauthorizedError}
@@ -174,13 +178,13 @@ export declare class Export {
174
178
  * @throws {@link Payabli.ServiceUnavailableError}
175
179
  *
176
180
  * @example
177
- * await client.export.exportBills("8cfec329267", "csv", {
181
+ * await client.export.exportBills("csv", "8cfec329267", {
178
182
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
179
183
  * fromRecord: 251,
180
184
  * limitRecord: 1000
181
185
  * })
182
186
  */
183
- exportBills(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportBillsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
187
+ exportBills(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportBillsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
184
188
  private __exportBills;
185
189
  /**
186
190
  * Export a list of bills for an organization. Use filters to limit results.
@@ -188,7 +192,7 @@ export declare class Export {
188
192
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
189
193
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
190
194
  * @param {Payabli.ExportBillsOrgRequest} request
191
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
195
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
192
196
  *
193
197
  * @throws {@link Payabli.BadRequestError}
194
198
  * @throws {@link Payabli.UnauthorizedError}
@@ -202,15 +206,15 @@ export declare class Export {
202
206
  * limitRecord: 1000
203
207
  * })
204
208
  */
205
- exportBillsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBillsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
209
+ exportBillsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportBillsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
206
210
  private __exportBillsOrg;
207
211
  /**
208
212
  * Export a list of chargebacks and ACH returns for an entrypoint. Use filters to limit results.
209
213
  *
210
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
211
214
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
215
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
212
216
  * @param {Payabli.ExportChargebacksRequest} request
213
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
217
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
214
218
  *
215
219
  * @throws {@link Payabli.BadRequestError}
216
220
  * @throws {@link Payabli.UnauthorizedError}
@@ -218,13 +222,13 @@ export declare class Export {
218
222
  * @throws {@link Payabli.ServiceUnavailableError}
219
223
  *
220
224
  * @example
221
- * await client.export.exportChargebacks("8cfec329267", "csv", {
225
+ * await client.export.exportChargebacks("csv", "8cfec329267", {
222
226
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
223
227
  * fromRecord: 251,
224
228
  * limitRecord: 1000
225
229
  * })
226
230
  */
227
- exportChargebacks(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportChargebacksRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
231
+ exportChargebacks(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportChargebacksRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
228
232
  private __exportChargebacks;
229
233
  /**
230
234
  * Export a list of chargebacks and ACH returns for an organization. Use filters to limit results.
@@ -232,7 +236,7 @@ export declare class Export {
232
236
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
233
237
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
234
238
  * @param {Payabli.ExportChargebacksOrgRequest} request
235
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
239
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
236
240
  *
237
241
  * @throws {@link Payabli.BadRequestError}
238
242
  * @throws {@link Payabli.UnauthorizedError}
@@ -246,15 +250,15 @@ export declare class Export {
246
250
  * limitRecord: 1000
247
251
  * })
248
252
  */
249
- exportChargebacksOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportChargebacksOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
253
+ exportChargebacksOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportChargebacksOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
250
254
  private __exportChargebacksOrg;
251
255
  /**
252
256
  * Export a list of customers for an entrypoint. Use filters to limit results.
253
257
  *
254
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
255
258
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
259
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
256
260
  * @param {Payabli.ExportCustomersRequest} request
257
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
261
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
258
262
  *
259
263
  * @throws {@link Payabli.BadRequestError}
260
264
  * @throws {@link Payabli.UnauthorizedError}
@@ -262,13 +266,13 @@ export declare class Export {
262
266
  * @throws {@link Payabli.ServiceUnavailableError}
263
267
  *
264
268
  * @example
265
- * await client.export.exportCustomers("8cfec329267", "csv", {
269
+ * await client.export.exportCustomers("csv", "8cfec329267", {
266
270
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
267
271
  * fromRecord: 251,
268
272
  * limitRecord: 1000
269
273
  * })
270
274
  */
271
- exportCustomers(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportCustomersRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
275
+ exportCustomers(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportCustomersRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
272
276
  private __exportCustomers;
273
277
  /**
274
278
  * Exports a list of customers for an organization. Use filters to limit results.
@@ -276,7 +280,7 @@ export declare class Export {
276
280
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
277
281
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
278
282
  * @param {Payabli.ExportCustomersOrgRequest} request
279
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
283
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
280
284
  *
281
285
  * @throws {@link Payabli.BadRequestError}
282
286
  * @throws {@link Payabli.UnauthorizedError}
@@ -290,15 +294,15 @@ export declare class Export {
290
294
  * limitRecord: 1000
291
295
  * })
292
296
  */
293
- exportCustomersOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportCustomersOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
297
+ exportCustomersOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportCustomersOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
294
298
  private __exportCustomersOrg;
295
299
  /**
296
300
  * Export list of invoices for an entrypoint. Use filters to limit results.
297
301
  *
298
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
299
302
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
303
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
300
304
  * @param {Payabli.ExportInvoicesRequest} request
301
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
305
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
302
306
  *
303
307
  * @throws {@link Payabli.BadRequestError}
304
308
  * @throws {@link Payabli.UnauthorizedError}
@@ -306,13 +310,13 @@ export declare class Export {
306
310
  * @throws {@link Payabli.ServiceUnavailableError}
307
311
  *
308
312
  * @example
309
- * await client.export.exportInvoices("8cfec329267", "csv", {
313
+ * await client.export.exportInvoices("csv", "8cfec329267", {
310
314
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
311
315
  * fromRecord: 251,
312
316
  * limitRecord: 1000
313
317
  * })
314
318
  */
315
- exportInvoices(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportInvoicesRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
319
+ exportInvoices(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportInvoicesRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
316
320
  private __exportInvoices;
317
321
  /**
318
322
  * Export a list of invoices for an organization. Use filters to limit results.
@@ -320,7 +324,7 @@ export declare class Export {
320
324
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
321
325
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
322
326
  * @param {Payabli.ExportInvoicesOrgRequest} request
323
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
327
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
324
328
  *
325
329
  * @throws {@link Payabli.BadRequestError}
326
330
  * @throws {@link Payabli.UnauthorizedError}
@@ -334,7 +338,7 @@ export declare class Export {
334
338
  * limitRecord: 1000
335
339
  * })
336
340
  */
337
- exportInvoicesOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportInvoicesOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
341
+ exportInvoicesOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportInvoicesOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
338
342
  private __exportInvoicesOrg;
339
343
  /**
340
344
  * Export a list of child organizations (suborganizations) for a parent organization.
@@ -342,7 +346,7 @@ export declare class Export {
342
346
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
343
347
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
344
348
  * @param {Payabli.ExportOrganizationsRequest} request
345
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
349
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
346
350
  *
347
351
  * @throws {@link Payabli.BadRequestError}
348
352
  * @throws {@link Payabli.UnauthorizedError}
@@ -356,15 +360,15 @@ export declare class Export {
356
360
  * limitRecord: 1000
357
361
  * })
358
362
  */
359
- exportOrganizations(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportOrganizationsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
363
+ exportOrganizations(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportOrganizationsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
360
364
  private __exportOrganizations;
361
365
  /**
362
366
  * Export a list of payouts and their statuses for an entrypoint. Use filters to limit results.
363
367
  *
364
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
365
368
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
369
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
366
370
  * @param {Payabli.ExportPayoutRequest} request
367
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
371
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
368
372
  *
369
373
  * @throws {@link Payabli.BadRequestError}
370
374
  * @throws {@link Payabli.UnauthorizedError}
@@ -372,13 +376,13 @@ export declare class Export {
372
376
  * @throws {@link Payabli.ServiceUnavailableError}
373
377
  *
374
378
  * @example
375
- * await client.export.exportPayout("8cfec329267", "csv", {
379
+ * await client.export.exportPayout("csv", "8cfec329267", {
376
380
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
377
381
  * fromRecord: 251,
378
382
  * limitRecord: 1000
379
383
  * })
380
384
  */
381
- exportPayout(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportPayoutRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
385
+ exportPayout(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportPayoutRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
382
386
  private __exportPayout;
383
387
  /**
384
388
  * Export a list of payouts and their details for an organization. Use filters to limit results.
@@ -386,7 +390,7 @@ export declare class Export {
386
390
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
387
391
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
388
392
  * @param {Payabli.ExportPayoutOrgRequest} request
389
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
393
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
390
394
  *
391
395
  * @throws {@link Payabli.BadRequestError}
392
396
  * @throws {@link Payabli.UnauthorizedError}
@@ -400,7 +404,7 @@ export declare class Export {
400
404
  * limitRecord: 1000
401
405
  * })
402
406
  */
403
- exportPayoutOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportPayoutOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
407
+ exportPayoutOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportPayoutOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
404
408
  private __exportPayoutOrg;
405
409
  /**
406
410
  * Export a list of paypoints in an organization. Use filters to limit results.
@@ -408,7 +412,7 @@ export declare class Export {
408
412
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
409
413
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
410
414
  * @param {Payabli.ExportPaypointsRequest} request
411
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
415
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
412
416
  *
413
417
  * @throws {@link Payabli.BadRequestError}
414
418
  * @throws {@link Payabli.UnauthorizedError}
@@ -422,15 +426,15 @@ export declare class Export {
422
426
  * limitRecord: 1000
423
427
  * })
424
428
  */
425
- exportPaypoints(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportPaypointsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
429
+ exportPaypoints(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportPaypointsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
426
430
  private __exportPaypoints;
427
431
  /**
428
432
  * Export a list of settled transactions for an entrypoint. Use filters to limit results.
429
433
  *
430
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
431
434
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
435
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
432
436
  * @param {Payabli.ExportSettlementsRequest} request
433
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
437
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
434
438
  *
435
439
  * @throws {@link Payabli.BadRequestError}
436
440
  * @throws {@link Payabli.UnauthorizedError}
@@ -438,13 +442,13 @@ export declare class Export {
438
442
  * @throws {@link Payabli.ServiceUnavailableError}
439
443
  *
440
444
  * @example
441
- * await client.export.exportSettlements("8cfec329267", "csv", {
445
+ * await client.export.exportSettlements("csv", "8cfec329267", {
442
446
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
443
447
  * fromRecord: 251,
444
448
  * limitRecord: 1000
445
449
  * })
446
450
  */
447
- exportSettlements(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportSettlementsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
451
+ exportSettlements(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportSettlementsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
448
452
  private __exportSettlements;
449
453
  /**
450
454
  * Export a list of settled transactions for an organization. Use filters to limit results.
@@ -452,7 +456,7 @@ export declare class Export {
452
456
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
453
457
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
454
458
  * @param {Payabli.ExportSettlementsOrgRequest} request
455
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
459
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
456
460
  *
457
461
  * @throws {@link Payabli.BadRequestError}
458
462
  * @throws {@link Payabli.UnauthorizedError}
@@ -466,15 +470,15 @@ export declare class Export {
466
470
  * limitRecord: 1000
467
471
  * })
468
472
  */
469
- exportSettlementsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportSettlementsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
473
+ exportSettlementsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportSettlementsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
470
474
  private __exportSettlementsOrg;
471
475
  /**
472
476
  * Export a list of subscriptions for an entrypoint. Use filters to limit results.
473
477
  *
474
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
475
478
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
479
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
476
480
  * @param {Payabli.ExportSubscriptionsRequest} request
477
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
481
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
478
482
  *
479
483
  * @throws {@link Payabli.BadRequestError}
480
484
  * @throws {@link Payabli.UnauthorizedError}
@@ -482,13 +486,13 @@ export declare class Export {
482
486
  * @throws {@link Payabli.ServiceUnavailableError}
483
487
  *
484
488
  * @example
485
- * await client.export.exportSubscriptions("8cfec329267", "csv", {
489
+ * await client.export.exportSubscriptions("csv", "8cfec329267", {
486
490
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
487
491
  * fromRecord: 251,
488
492
  * limitRecord: 1000
489
493
  * })
490
494
  */
491
- exportSubscriptions(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportSubscriptionsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
495
+ exportSubscriptions(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportSubscriptionsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
492
496
  private __exportSubscriptions;
493
497
  /**
494
498
  * Export a list of subscriptions for an organization. Use filters to limit results.
@@ -496,7 +500,7 @@ export declare class Export {
496
500
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
497
501
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
498
502
  * @param {Payabli.ExportSubscriptionsOrgRequest} request
499
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
503
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
500
504
  *
501
505
  * @throws {@link Payabli.BadRequestError}
502
506
  * @throws {@link Payabli.UnauthorizedError}
@@ -510,15 +514,15 @@ export declare class Export {
510
514
  * limitRecord: 1000
511
515
  * })
512
516
  */
513
- exportSubscriptionsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportSubscriptionsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
517
+ exportSubscriptionsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportSubscriptionsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
514
518
  private __exportSubscriptionsOrg;
515
519
  /**
516
520
  * Export a list of transactions for an entrypoint in a file in XLXS or CSV format. Use filters to limit results. If you don't specify a date range in the request, the last two months of data are returned.
517
521
  *
518
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
519
522
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
523
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
520
524
  * @param {Payabli.ExportTransactionsRequest} request
521
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
525
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
522
526
  *
523
527
  * @throws {@link Payabli.BadRequestError}
524
528
  * @throws {@link Payabli.UnauthorizedError}
@@ -526,13 +530,13 @@ export declare class Export {
526
530
  * @throws {@link Payabli.ServiceUnavailableError}
527
531
  *
528
532
  * @example
529
- * await client.export.exportTransactions("8cfec329267", "csv", {
533
+ * await client.export.exportTransactions("csv", "8cfec329267", {
530
534
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
531
535
  * fromRecord: 251,
532
536
  * limitRecord: 1000
533
537
  * })
534
538
  */
535
- exportTransactions(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportTransactionsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
539
+ exportTransactions(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportTransactionsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
536
540
  private __exportTransactions;
537
541
  /**
538
542
  * Export a list of transactions for an org in a file in XLSX or CSV format. Use filters to limit results. If you don't specify a date range in the request, the last two months of data are returned.
@@ -540,7 +544,7 @@ export declare class Export {
540
544
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
541
545
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
542
546
  * @param {Payabli.ExportTransactionsOrgRequest} request
543
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
547
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
544
548
  *
545
549
  * @throws {@link Payabli.BadRequestError}
546
550
  * @throws {@link Payabli.UnauthorizedError}
@@ -554,16 +558,16 @@ export declare class Export {
554
558
  * limitRecord: 1000
555
559
  * })
556
560
  */
557
- exportTransactionsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportTransactionsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
561
+ exportTransactionsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportTransactionsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
558
562
  private __exportTransactionsOrg;
559
563
  /**
560
564
  * Export a list of transfer details for an entrypoint. Use filters to limit results.
561
565
  *
562
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
563
566
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
567
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
564
568
  * @param {number} transferId - Transfer identifier.
565
569
  * @param {Payabli.ExportTransferDetailsRequest} request
566
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
570
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
567
571
  *
568
572
  * @throws {@link Payabli.BadRequestError}
569
573
  * @throws {@link Payabli.UnauthorizedError}
@@ -571,21 +575,21 @@ export declare class Export {
571
575
  * @throws {@link Payabli.ServiceUnavailableError}
572
576
  *
573
577
  * @example
574
- * await client.export.exportTransferDetails("8cfec329267", "csv", 1000000, {
578
+ * await client.export.exportTransferDetails("csv", "8cfec329267", 1000000, {
575
579
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
576
580
  * fromRecord: 251,
577
581
  * limitRecord: 1000,
578
582
  * sortBy: "desc(field_name)"
579
583
  * })
580
584
  */
581
- exportTransferDetails(entry: string, format: Payabli.ExportFormat1, transferId: number, request?: Payabli.ExportTransferDetailsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
585
+ exportTransferDetails(format: Payabli.ExportFormat1, entry: string, transferId: number, request?: Payabli.ExportTransferDetailsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
582
586
  private __exportTransferDetails;
583
587
  /**
584
588
  * Get a list of transfers for an entrypoint. Use filters to limit results.
585
589
  *
586
590
  * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
587
591
  * @param {Payabli.ExportTransfersRequest} request
588
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
592
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
589
593
  *
590
594
  * @throws {@link Payabli.BadRequestError}
591
595
  * @throws {@link Payabli.UnauthorizedError}
@@ -600,15 +604,15 @@ export declare class Export {
600
604
  * sortBy: "desc(field_name)"
601
605
  * })
602
606
  */
603
- exportTransfers(entry: string, request?: Payabli.ExportTransfersRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
607
+ exportTransfers(entry: string, request?: Payabli.ExportTransfersRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
604
608
  private __exportTransfers;
605
609
  /**
606
610
  * Export a list of vendors for an entrypoint. Use filters to limit results.
607
611
  *
608
- * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
609
612
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
613
+ * @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/api-reference/api-overview#entrypoint-vs-entry)
610
614
  * @param {Payabli.ExportVendorsRequest} request
611
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
615
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
612
616
  *
613
617
  * @throws {@link Payabli.BadRequestError}
614
618
  * @throws {@link Payabli.UnauthorizedError}
@@ -616,13 +620,13 @@ export declare class Export {
616
620
  * @throws {@link Payabli.ServiceUnavailableError}
617
621
  *
618
622
  * @example
619
- * await client.export.exportVendors("8cfec329267", "csv", {
623
+ * await client.export.exportVendors("csv", "8cfec329267", {
620
624
  * columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
621
625
  * fromRecord: 251,
622
626
  * limitRecord: 1000
623
627
  * })
624
628
  */
625
- exportVendors(entry: string, format: Payabli.ExportFormat1, request?: Payabli.ExportVendorsRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
629
+ exportVendors(format: Payabli.ExportFormat1, entry: string, request?: Payabli.ExportVendorsRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
626
630
  private __exportVendors;
627
631
  /**
628
632
  * Export a list of vendors for an organization. Use filters to limit results.
@@ -630,7 +634,7 @@ export declare class Export {
630
634
  * @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
631
635
  * @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
632
636
  * @param {Payabli.ExportVendorsOrgRequest} request
633
- * @param {Export.RequestOptions} requestOptions - Request-specific configuration.
637
+ * @param {ExportClient.RequestOptions} requestOptions - Request-specific configuration.
634
638
  *
635
639
  * @throws {@link Payabli.BadRequestError}
636
640
  * @throws {@link Payabli.UnauthorizedError}
@@ -644,7 +648,6 @@ export declare class Export {
644
648
  * limitRecord: 1000
645
649
  * })
646
650
  */
647
- exportVendorsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportVendorsOrgRequest, requestOptions?: Export.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
651
+ exportVendorsOrg(format: Payabli.ExportFormat1, orgId: number, request?: Payabli.ExportVendorsOrgRequest, requestOptions?: ExportClient.RequestOptions): core.HttpResponsePromise<Payabli.File_>;
648
652
  private __exportVendorsOrg;
649
- protected _getCustomAuthorizationHeaders(): Promise<Record<string, string | undefined>>;
650
653
  }