@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.
- package/README.md +23 -17
- package/dist/cjs/BaseClient.d.ts +3 -0
- package/dist/cjs/BaseClient.js +17 -2
- package/dist/cjs/Client.d.ts +43 -43
- package/dist/cjs/Client.js +57 -57
- package/dist/cjs/api/errors/ForbiddenError.d.ts +1 -1
- package/dist/cjs/api/errors/PaymentRequiredError.d.ts +6 -0
- package/dist/cjs/api/errors/PaymentRequiredError.js +54 -0
- package/dist/cjs/api/errors/ServiceUnavailableError.d.ts +1 -1
- package/dist/cjs/api/errors/UnauthorizedError.d.ts +2 -1
- package/dist/cjs/api/errors/index.d.ts +1 -1
- package/dist/cjs/api/errors/index.js +1 -1
- package/dist/cjs/api/resources/bill/client/Client.d.ts +103 -123
- package/dist/cjs/api/resources/bill/client/Client.js +223 -208
- package/dist/cjs/api/resources/bill/client/requests/AddBillRequest.d.ts +88 -36
- package/dist/cjs/api/resources/bill/client/requests/DeleteAttachedFromBillRequest.d.ts +1 -1
- package/dist/cjs/api/resources/bill/client/requests/ListBillsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/bill/client/requests/ListBillsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/bill/client/requests/SendToApprovalBillRequest.d.ts +2 -1
- package/dist/cjs/api/resources/bill/index.d.ts +0 -1
- package/dist/cjs/api/resources/bill/index.js +0 -1
- package/dist/cjs/api/resources/boarding/client/Client.d.ts +30 -27
- package/dist/cjs/api/resources/boarding/client/Client.js +101 -86
- package/dist/cjs/api/resources/boarding/client/requests/CreateApplicationFromPaypointRequest.d.ts +22 -0
- package/dist/cjs/api/resources/boarding/client/requests/ListApplicationsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/boarding/client/requests/ListBoardingLinksRequest.d.ts +1 -1
- package/dist/cjs/api/resources/boarding/client/requests/RequestAppByAuth.d.ts +1 -1
- package/dist/cjs/api/resources/boarding/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/boarding/index.d.ts +0 -1
- package/dist/cjs/api/resources/boarding/index.js +0 -1
- package/dist/cjs/api/resources/chargeBacks/client/Client.d.ts +5 -2
- package/dist/cjs/api/resources/chargeBacks/client/Client.js +8 -6
- package/dist/cjs/api/resources/chargeBacks/client/requests/ResponseChargeBack.d.ts +1 -0
- package/dist/cjs/api/resources/chargeBacks/index.d.ts +0 -1
- package/dist/cjs/api/resources/chargeBacks/index.js +0 -1
- package/dist/cjs/api/resources/checkCapture/client/Client.d.ts +5 -2
- package/dist/cjs/api/resources/checkCapture/client/Client.js +6 -3
- package/dist/cjs/api/resources/checkCapture/client/requests/CheckCaptureRequestBody.d.ts +1 -1
- package/dist/cjs/api/resources/checkCapture/index.d.ts +0 -1
- package/dist/cjs/api/resources/checkCapture/index.js +0 -1
- package/dist/cjs/api/resources/cloud/client/Client.d.ts +22 -19
- package/dist/cjs/api/resources/cloud/client/Client.js +47 -40
- package/dist/cjs/api/resources/cloud/client/requests/DeviceEntry.d.ts +1 -0
- package/dist/cjs/api/resources/cloud/index.d.ts +0 -1
- package/dist/cjs/api/resources/cloud/index.js +0 -1
- package/dist/cjs/api/resources/customer/client/Client.d.ts +43 -42
- package/dist/cjs/api/resources/customer/client/Client.js +87 -71
- package/dist/cjs/api/resources/customer/client/requests/AddCustomerRequest.d.ts +53 -14
- package/dist/cjs/api/resources/export/client/Client.d.ts +124 -5
- package/dist/cjs/api/resources/export/client/Client.js +269 -34
- package/dist/cjs/api/resources/export/client/requests/ExportApplicationsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchDetailsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchDetailsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchesOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchesOutOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchesOutRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBatchesRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBillsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportBillsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportChargebacksOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportChargebacksRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportCustomersOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportCustomersRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportInvoicesOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportInvoicesRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportOrganizationsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportPayoutOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportPayoutRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportPaypointsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportSettlementsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportSettlementsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportSubscriptionsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportSubscriptionsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportTransactionsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportTransactionsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportTransferDetailsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportTransfersRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportVendorsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/client/requests/ExportVendorsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/export/index.d.ts +0 -1
- package/dist/cjs/api/resources/export/index.js +0 -1
- package/dist/cjs/api/resources/ghostCard/client/Client.d.ts +6 -6
- package/dist/cjs/api/resources/ghostCard/client/Client.js +8 -8
- package/dist/cjs/api/resources/ghostCard/client/requests/CreateGhostCardRequestBody.d.ts +1 -1
- package/dist/cjs/api/resources/ghostCard/index.d.ts +0 -1
- package/dist/cjs/api/resources/ghostCard/index.js +0 -1
- package/dist/cjs/api/resources/hostedPaymentPages/client/Client.d.ts +4 -6
- package/dist/cjs/api/resources/hostedPaymentPages/client/Client.js +19 -10
- package/dist/cjs/api/resources/hostedPaymentPages/client/requests/NewPageRequest.d.ts +22 -3
- package/dist/cjs/api/resources/import/client/Client.d.ts +9 -1
- package/dist/cjs/api/resources/import/client/Client.js +32 -9
- package/dist/cjs/api/resources/index.d.ts +1 -32
- package/dist/cjs/api/resources/index.js +2 -33
- package/dist/cjs/api/resources/invoice/client/Client.d.ts +72 -90
- package/dist/cjs/api/resources/invoice/client/Client.js +146 -129
- package/dist/cjs/api/resources/invoice/client/requests/AddInvoiceRequest.d.ts +36 -30
- package/dist/cjs/api/resources/invoice/client/requests/EditInvoiceRequest.d.ts +16 -13
- package/dist/cjs/api/resources/invoice/client/requests/ListInvoicesOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/invoice/client/requests/ListInvoicesRequest.d.ts +2 -1
- package/dist/cjs/api/resources/invoice/index.d.ts +0 -1
- package/dist/cjs/api/resources/invoice/index.js +0 -1
- package/dist/cjs/api/resources/lineItem/client/Client.d.ts +41 -35
- package/dist/cjs/api/resources/lineItem/client/Client.js +107 -75
- package/dist/cjs/api/resources/lineItem/client/requests/AddItemRequest.d.ts +21 -11
- package/dist/cjs/api/resources/lineItem/client/requests/ListLineItemsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/lineItem/index.d.ts +0 -1
- package/dist/cjs/api/resources/lineItem/index.js +0 -1
- package/dist/cjs/api/resources/management/client/Client.d.ts +5 -2
- package/dist/cjs/api/resources/management/client/Client.js +6 -3
- package/dist/cjs/api/resources/management/index.d.ts +0 -1
- package/dist/cjs/api/resources/management/index.js +0 -1
- package/dist/cjs/api/resources/moneyIn/client/Client.d.ts +251 -276
- package/dist/cjs/api/resources/moneyIn/client/Client.js +316 -317
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestCredit.d.ts +7 -20
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPayment.d.ts +146 -142
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentAuthorize.d.ts +35 -20
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentAuthorizeV2.d.ts +35 -20
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentV2.d.ts +80 -70
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentValidate.d.ts +3 -22
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestPaymentValidate.js +0 -12
- package/dist/cjs/api/resources/moneyIn/client/requests/RequestRefund.d.ts +1 -0
- package/dist/cjs/api/resources/moneyIn/client/requests/index.d.ts +1 -1
- package/dist/cjs/api/resources/moneyIn/client/requests/index.js +0 -3
- package/dist/cjs/api/resources/moneyIn/index.d.ts +0 -2
- package/dist/cjs/api/resources/moneyIn/index.js +0 -2
- package/dist/cjs/api/resources/moneyOut/client/Client.d.ts +127 -140
- package/dist/cjs/api/resources/moneyOut/client/Client.js +160 -154
- package/dist/cjs/api/resources/moneyOut/client/requests/CaptureAllOutRequest.d.ts +1 -1
- package/dist/cjs/api/resources/moneyOut/client/requests/CaptureOutRequest.d.ts +1 -0
- package/dist/cjs/api/resources/moneyOut/client/requests/ReissueOutRequest.d.ts +13 -18
- package/dist/cjs/api/resources/moneyOut/client/requests/RequestOutAuthorize.d.ts +161 -0
- package/dist/cjs/api/resources/moneyOut/client/requests/index.d.ts +1 -1
- package/dist/cjs/api/resources/notification/client/Client.d.ts +23 -20
- package/dist/cjs/api/resources/notification/client/Client.js +50 -47
- package/dist/cjs/api/resources/notification/index.d.ts +0 -1
- package/dist/cjs/api/resources/notification/index.js +0 -1
- package/dist/cjs/api/resources/notificationlogs/client/Client.d.ts +9 -8
- package/dist/cjs/api/resources/notificationlogs/client/Client.js +33 -17
- package/dist/cjs/api/resources/notificationlogs/client/requests/SearchNotificationLogsRequest.d.ts +18 -8
- package/dist/cjs/api/resources/notificationlogs/index.d.ts +0 -1
- package/dist/cjs/api/resources/notificationlogs/index.js +0 -1
- package/dist/cjs/api/resources/ocr/client/Client.d.ts +3 -3
- package/dist/cjs/api/resources/ocr/client/Client.js +7 -7
- package/dist/cjs/api/resources/ocr/index.d.ts +0 -1
- package/dist/cjs/api/resources/ocr/index.js +0 -1
- package/dist/cjs/api/resources/organization/client/Client.d.ts +26 -18
- package/dist/cjs/api/resources/organization/client/Client.js +71 -52
- package/dist/cjs/api/resources/organization/client/requests/AddOrganizationRequest.d.ts +1 -0
- package/dist/cjs/api/resources/organization/index.d.ts +0 -1
- package/dist/cjs/api/resources/organization/index.js +0 -1
- package/dist/cjs/api/resources/paymentLink/client/Client.d.ts +280 -287
- package/dist/cjs/api/resources/paymentLink/client/Client.js +329 -305
- package/dist/cjs/api/resources/paymentLink/client/requests/PatchOutPaymentLinkRequest.d.ts +52 -0
- package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataBill.d.ts +135 -119
- package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.ts +119 -99
- package/dist/cjs/api/resources/paymentLink/client/requests/PayLinkDataOut.d.ts +79 -61
- package/dist/cjs/api/resources/paymentLink/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/paymentLink/index.d.ts +0 -1
- package/dist/cjs/api/resources/paymentLink/index.js +0 -1
- package/dist/cjs/api/resources/paymentMethodDomain/client/Client.d.ts +32 -29
- package/dist/cjs/api/resources/paymentMethodDomain/client/Client.js +74 -67
- package/dist/cjs/api/resources/paymentMethodDomain/client/requests/AddPaymentMethodDomainRequest.d.ts +2 -16
- package/dist/cjs/api/resources/paymentMethodDomain/client/requests/UpdatePaymentMethodDomainRequest.d.ts +2 -10
- package/dist/cjs/api/resources/paymentMethodDomain/index.d.ts +0 -1
- package/dist/cjs/api/resources/paymentMethodDomain/index.js +0 -1
- package/dist/cjs/api/resources/payoutSubscription/client/Client.d.ts +51 -55
- package/dist/cjs/api/resources/payoutSubscription/client/Client.js +69 -62
- package/dist/cjs/api/resources/payoutSubscription/client/requests/RequestPayoutSchedule.d.ts +63 -52
- package/dist/cjs/api/resources/payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.d.ts +33 -0
- package/dist/cjs/api/resources/payoutSubscription/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/payoutSubscription/index.d.ts +0 -1
- package/dist/cjs/api/resources/payoutSubscription/index.js +0 -1
- package/dist/cjs/api/resources/paypoint/client/Client.d.ts +49 -41
- package/dist/cjs/api/resources/paypoint/client/Client.js +122 -99
- package/dist/cjs/api/resources/paypoint/client/requests/PaypointMoveRequest.d.ts +22 -0
- package/dist/cjs/api/resources/paypoint/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/paypoint/index.d.ts +0 -1
- package/dist/cjs/api/resources/paypoint/index.js +0 -1
- package/dist/cjs/api/resources/query/client/Client.d.ts +45 -43
- package/dist/cjs/api/resources/query/client/Client.js +268 -93
- package/dist/cjs/api/resources/query/client/requests/ListBatchDetailsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListBatchDetailsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListBatchesOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListBatchesOutOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListBatchesOutRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListBatchesRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListChargebacksOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListChargebacksRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListCustomersOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListCustomersRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListDevicesOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListDevicesRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListNotificationReportsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListNotificationReportsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListNotificationsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListNotificationsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListOrganizationsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListPayoutOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListPayoutRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListPayoutSubscriptionsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListPayoutSubscriptionsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListPaypointsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListSettlementsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListSettlementsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListSubscriptionsOrgRequest.d.ts +3 -1
- package/dist/cjs/api/resources/query/client/requests/ListSubscriptionsRequest.d.ts +3 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransactionsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransactionsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransferDetailsOutRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransfersOutOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransfersOutPaypointRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransfersPaypointRequest.d.ts +3 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransfersRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListTransfersRequestOrg.d.ts +2 -3
- package/dist/cjs/api/resources/query/client/requests/ListUsersOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListUsersPaypointRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListVcardsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListVcardsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListVcardsTransactionsOrgRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListVcardsTransactionsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/query/client/requests/ListVendorsOrgRequest.d.ts +2 -1
- package/dist/cjs/api/resources/query/client/requests/ListVendorsRequest.d.ts +2 -1
- package/dist/cjs/api/resources/statistic/client/Client.d.ts +14 -7
- package/dist/cjs/api/resources/statistic/client/Client.js +50 -16
- package/dist/cjs/api/resources/statistic/client/requests/BasicStatsRequest.d.ts +3 -3
- package/dist/cjs/api/resources/statistic/client/requests/CustomerBasicStatsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/statistic/client/requests/SubStatsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/statistic/client/requests/VendorBasicStatsRequest.d.ts +1 -1
- package/dist/cjs/api/resources/statistic/index.d.ts +0 -1
- package/dist/cjs/api/resources/statistic/index.js +0 -1
- package/dist/cjs/api/resources/subscription/client/Client.d.ts +119 -97
- package/dist/cjs/api/resources/subscription/client/Client.js +177 -140
- package/dist/cjs/api/resources/subscription/client/requests/RequestSchedule.d.ts +105 -69
- package/dist/cjs/api/resources/subscription/client/requests/RequestUpdateSchedule.d.ts +3 -3
- package/dist/cjs/api/resources/subscription/index.d.ts +0 -1
- package/dist/cjs/api/resources/subscription/index.js +0 -1
- package/dist/cjs/api/resources/templates/client/Client.d.ts +13 -5
- package/dist/cjs/api/resources/templates/client/Client.js +37 -14
- package/dist/cjs/api/resources/templates/client/requests/ListTemplatesRequest.d.ts +1 -1
- package/dist/cjs/api/resources/tokenStorage/client/Client.d.ts +117 -136
- package/dist/cjs/api/resources/tokenStorage/client/Client.js +187 -183
- package/dist/cjs/api/resources/tokenStorage/client/requests/AddMethodRequest.d.ts +79 -69
- package/dist/cjs/api/resources/tokenStorage/client/requests/UpdateMethodRequest.d.ts +56 -46
- package/dist/cjs/api/resources/tokenStorage/index.d.ts +0 -1
- package/dist/cjs/api/resources/tokenStorage/index.js +0 -1
- package/dist/cjs/api/resources/user/client/Client.d.ts +68 -65
- package/dist/cjs/api/resources/user/client/Client.js +165 -158
- package/dist/cjs/api/resources/user/client/requests/GetUserRequest.d.ts +1 -1
- package/dist/cjs/api/resources/user/index.d.ts +0 -1
- package/dist/cjs/api/resources/user/index.js +0 -1
- package/dist/cjs/api/resources/vendor/client/Client.d.ts +21 -18
- package/dist/cjs/api/resources/vendor/client/Client.js +53 -50
- package/dist/cjs/api/resources/vendor/client/index.d.ts +1 -1
- package/dist/cjs/api/resources/vendor/client/index.js +15 -0
- package/dist/cjs/api/resources/vendor/client/requests/VendorEnrichRequest.d.ts +47 -0
- package/dist/cjs/api/resources/vendor/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/vendor/client/requests/index.js +2 -0
- package/dist/cjs/api/resources/vendor/index.d.ts +0 -1
- package/dist/cjs/api/resources/vendor/index.js +0 -1
- package/dist/cjs/api/resources/wallet/client/Client.d.ts +11 -3
- package/dist/cjs/api/resources/wallet/client/Client.js +31 -12
- package/dist/cjs/api/resources/wallet/client/requests/ConfigureOrganizationRequestApplePay.d.ts +1 -1
- package/dist/cjs/api/resources/wallet/client/requests/ConfigureOrganizationRequestGooglePay.d.ts +1 -1
- package/dist/cjs/api/types/AbsorbDifference.d.ts +2 -1
- package/dist/cjs/api/types/AchHolder.d.ts +2 -1
- package/dist/cjs/api/types/AchSecCode.d.ts +26 -6
- package/dist/cjs/api/types/AchService.d.ts +4 -1
- package/dist/cjs/api/types/AchSetup.d.ts +18 -3
- package/dist/cjs/api/types/AchValidation.d.ts +2 -1
- package/dist/cjs/api/types/AddApplicationRequest.d.ts +14 -0
- package/dist/cjs/api/types/AddDeviceResponse.d.ts +9 -0
- package/dist/cjs/api/types/AddMethodResponse.d.ts +4 -0
- package/dist/cjs/api/types/AddMethodResponseResponseData.d.ts +14 -0
- package/dist/cjs/api/types/AddNotificationRequest.d.ts +8 -0
- package/dist/cjs/api/types/AddOrganizationResponse.d.ts +7 -0
- package/dist/cjs/api/types/AddPaymentMethodDomainRequestApplePay.d.ts +7 -0
- package/dist/cjs/api/types/AddPaymentMethodDomainRequestGooglePay.d.ts +7 -0
- package/dist/cjs/api/types/AddPayoutSubscriptionResponse.d.ts +12 -0
- package/dist/cjs/api/types/AddResponseResponse.d.ts +8 -0
- package/dist/cjs/api/types/AddSubscriptionResponse.d.ts +11 -0
- package/dist/cjs/api/types/AddUserResponse.d.ts +7 -0
- package/dist/cjs/api/types/AdditionalData.d.ts +5 -1
- package/dist/cjs/api/types/AdditionalDataMap.d.ts +2 -1
- package/dist/cjs/api/types/AdditionalDataString.d.ts +2 -1
- package/dist/cjs/api/types/AllowOverride.d.ts +2 -1
- package/dist/cjs/api/types/ApplePayData.d.ts +5 -2
- package/dist/cjs/api/types/ApplePayMetadata.d.ts +19 -6
- package/dist/cjs/api/types/ApplePayPaypointRegistrationData.d.ts +1 -1
- package/dist/cjs/api/types/AppleWalletData.d.ts +1 -1
- package/dist/cjs/api/types/ApplicationDataManaged.d.ts +2 -14
- package/dist/cjs/api/types/ApplicationDataManagedContactsItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataManagedOwnershipItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataOdp.d.ts +2 -14
- package/dist/cjs/api/types/ApplicationDataOdpContactsItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataOdpOwnershipItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataPayIn.d.ts +3 -26
- package/dist/cjs/api/types/ApplicationDataPayInContactsItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataPayInOwnershipItem.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataPayInServices.d.ts +6 -0
- package/dist/cjs/api/types/ApplicationDataPayInServicesAch.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDataPayInServicesCard.d.ts +2 -0
- package/dist/cjs/api/types/ApplicationDetailsRecord.d.ts +1 -19
- package/dist/cjs/api/types/ApplicationDetailsRecordMessagesItem.d.ts +14 -0
- package/dist/cjs/api/types/Attachments.d.ts +2 -1
- package/dist/cjs/api/types/AttestationDate.d.ts +2 -1
- package/dist/cjs/api/types/AuthCapturePayoutResponse.d.ts +9 -0
- package/dist/cjs/api/types/AuthCapturePayoutResponseData.d.ts +11 -0
- package/dist/cjs/api/types/AuthResetUserResponse.d.ts +5 -0
- package/dist/cjs/api/types/AuthResponse.d.ts +10 -0
- package/dist/cjs/api/types/AuthResponseResponseData.d.ts +11 -0
- package/dist/cjs/api/types/AuthorizePaymentMethod.d.ts +27 -0
- package/dist/cjs/api/types/AutoCapture.d.ts +10 -3
- package/dist/cjs/api/types/Avgmonthly.d.ts +2 -1
- package/dist/cjs/api/types/AvsResponse.d.ts +2 -1
- package/dist/cjs/api/types/AvsResponseText.d.ts +2 -1
- package/dist/cjs/api/types/Baddress2.d.ts +2 -1
- package/dist/cjs/api/types/Bank.d.ts +2 -0
- package/dist/cjs/api/types/BankAccountFunction.d.ts +11 -8
- package/dist/cjs/api/types/BankAccountVerificationDetailsResponse.d.ts +31 -0
- package/dist/cjs/api/types/BatchDetailResponseRecord.d.ts +58 -0
- package/dist/cjs/api/types/BatchDetailResponseSummary.d.ts +13 -0
- package/dist/cjs/api/types/BatchNumber.d.ts +8 -3
- package/dist/cjs/api/types/BatchSummary.d.ts +0 -10
- package/dist/cjs/api/types/Bcity.d.ts +1 -1
- package/dist/cjs/api/types/Bcountry.d.ts +3 -1
- package/dist/cjs/api/types/BillApprovals.d.ts +1 -1
- package/dist/cjs/api/types/BillData.d.ts +1 -74
- package/dist/cjs/api/types/BillData.js +0 -74
- package/dist/cjs/api/types/BillDataPaymentTerms.d.ts +29 -0
- package/dist/cjs/api/types/BillDataPaymentTerms.js +32 -0
- package/dist/cjs/api/types/BillDetailResponse.d.ts +0 -2
- package/dist/cjs/api/types/BillId.d.ts +2 -1
- package/dist/cjs/api/types/BillItem.d.ts +11 -4
- package/dist/cjs/api/types/BillOutData.d.ts +71 -0
- package/dist/cjs/api/types/BillOutDataScheduledOptions.d.ts +7 -0
- package/dist/cjs/api/types/BillQueryRecord2.d.ts +1 -1
- package/dist/cjs/api/types/BillQueryResponse.d.ts +0 -122
- package/dist/cjs/api/types/BillResponse.d.ts +16 -0
- package/dist/cjs/api/types/BillResponseData.d.ts +58 -0
- package/dist/cjs/api/types/BillingDataResponse.d.ts +0 -19
- package/dist/cjs/api/types/BillingStateNullable.d.ts +1 -1
- package/dist/cjs/api/types/Billstatus.d.ts +1 -2
- package/dist/cjs/api/types/BinData.d.ts +0 -30
- package/dist/cjs/api/types/Binperson.d.ts +2 -1
- package/dist/cjs/api/types/Binphone.d.ts +2 -1
- package/dist/cjs/api/types/Binweb.d.ts +2 -1
- package/dist/cjs/api/types/BoardingAverageBillSize.d.ts +3 -1
- package/dist/cjs/api/types/BoardingAvgMonthlyBill.d.ts +4 -1
- package/dist/cjs/api/types/BoardingLinkApiResponse.d.ts +0 -3
- package/dist/cjs/api/types/BoardingLinkId.d.ts +4 -1
- package/dist/cjs/api/types/BoardingStatus.d.ts +3 -1
- package/dist/cjs/api/types/Busstartdate.d.ts +2 -3
- package/dist/cjs/api/types/ButtonElement.d.ts +2 -10
- package/dist/cjs/api/types/ButtonElement.js +0 -10
- package/dist/cjs/api/types/ButtonElementSize.d.ts +7 -0
- package/dist/cjs/api/types/ButtonElementSize.js +10 -0
- package/dist/cjs/api/types/CaptureAllOutResponse.d.ts +9 -0
- package/dist/cjs/api/types/CaptureAllOutResponseResponseDataItem.d.ts +13 -0
- package/dist/cjs/api/types/CaptureRequest.d.ts +4 -0
- package/dist/cjs/api/types/CaptureResponse.d.ts +12 -0
- package/dist/cjs/api/types/CaptureResponseData.d.ts +14 -0
- package/dist/cjs/api/types/CardService.d.ts +1 -1
- package/dist/cjs/api/types/Cardcvv.d.ts +3 -1
- package/dist/cjs/api/types/Cardnumber.d.ts +2 -1
- package/dist/cjs/api/types/Cardzip.d.ts +2 -1
- package/dist/cjs/api/types/Cascade.d.ts +2 -1
- package/dist/cjs/api/types/Cash.d.ts +8 -1
- package/dist/cjs/api/types/Cash.js +8 -0
- package/dist/cjs/api/types/Category.d.ts +8 -6
- package/dist/cjs/api/types/ChangePswUserResponse.d.ts +5 -0
- package/dist/cjs/api/types/ChargeBackResponse.d.ts +15 -0
- package/dist/cjs/api/types/ChargebackId.d.ts +1 -1
- package/dist/cjs/api/types/ChargebackQueryRecords.d.ts +66 -0
- package/dist/cjs/api/types/Check.d.ts +8 -1
- package/dist/cjs/api/types/Check.js +8 -0
- package/dist/cjs/api/types/CheckCaptureResponse.d.ts +58 -0
- package/dist/cjs/api/types/ConfigureApplePaypointApiResponse.d.ts +1 -1
- package/dist/cjs/api/types/ConfigureGooglePaypointApiResponse.d.ts +1 -1
- package/dist/cjs/api/types/ContactsResponse.d.ts +0 -9
- package/dist/cjs/api/types/CountryNullable.d.ts +2 -1
- package/dist/cjs/api/types/CreateApplicationFromPaypointResponse.d.ts +12 -0
- package/dist/cjs/api/types/CreateApplicationFromPaypointResponseData.d.ts +6 -0
- package/dist/cjs/api/types/CreateGhostCardResponse.d.ts +9 -0
- package/dist/cjs/api/types/CreateGhostCardResponseData.d.ts +7 -0
- package/dist/cjs/api/types/CustomerNumberNullable.d.ts +2 -1
- package/dist/cjs/api/types/CustomerQueryRecords.d.ts +2 -206
- package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsent.d.ts +7 -0
- package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsentECommunication.d.ts +8 -0
- package/dist/cjs/api/types/CustomerQueryRecordsCustomerConsentSms.d.ts +8 -0
- package/dist/cjs/api/types/CustomerStatus.d.ts +2 -2
- package/dist/cjs/api/types/Customeridtrans.d.ts +3 -1
- package/dist/cjs/api/types/CvvResponse.d.ts +2 -1
- package/dist/cjs/api/types/CvvResponseText.d.ts +2 -1
- package/dist/cjs/api/types/Dbaname.d.ts +2 -1
- package/dist/cjs/api/types/DeleteItemResponse.d.ts +5 -0
- package/dist/cjs/api/types/DeleteOrganizationResponse.d.ts +7 -0
- package/dist/cjs/api/types/DeletePaymentMethodDomainResponse.d.ts +8 -0
- package/dist/cjs/api/types/DeletePayoutSubscriptionResponse.d.ts +14 -0
- package/dist/cjs/api/types/DeleteUserResponse.d.ts +4 -0
- package/dist/cjs/api/types/Descriptor.d.ts +3 -1
- package/dist/cjs/api/types/DocumentSection.d.ts +1 -16
- package/dist/cjs/api/types/DocumentSectionTermsAndConditions.d.ts +5 -0
- package/dist/cjs/api/types/DocumentSectionTermsAndConditionsTcLinksItem.d.ts +4 -0
- package/dist/cjs/api/types/DomainName.d.ts +2 -1
- package/dist/cjs/api/types/EditBillResponse.d.ts +16 -0
- package/dist/cjs/api/types/EditMfaUserResponse.d.ts +5 -0
- package/dist/cjs/api/types/EditOrganizationResponse.d.ts +9 -0
- package/dist/cjs/api/types/Ein.d.ts +1 -1
- package/dist/cjs/api/types/EntityType.d.ts +4 -3
- package/dist/cjs/api/types/Entry.d.ts +2 -1
- package/dist/cjs/api/types/EntrypageId.d.ts +2 -1
- package/dist/cjs/api/types/ExpectedProcessingDateTime.d.ts +1 -1
- package/dist/cjs/api/types/ExportFormat.d.ts +6 -3
- package/dist/cjs/api/types/ExportFormat.js +6 -3
- package/dist/cjs/api/types/ExternalPaypointId.d.ts +1 -1
- package/dist/cjs/api/types/ExternalProcessorInformation.d.ts +1 -1
- package/dist/cjs/api/types/FileContent.d.ts +7 -18
- package/dist/cjs/api/types/FileContent.js +0 -15
- package/dist/cjs/api/types/FileContentFtype.d.ts +12 -0
- package/dist/cjs/api/types/FileContentFtype.js +15 -0
- package/dist/cjs/api/types/FileContentImageOnly.d.ts +10 -0
- package/dist/cjs/api/types/Finishtype.d.ts +2 -2
- package/dist/cjs/api/types/ForceCustomerCreation.d.ts +3 -1
- package/dist/cjs/api/types/Frequency.d.ts +4 -1
- package/dist/cjs/api/types/Frequency.js +4 -1
- package/dist/cjs/api/types/Frequencynotification.d.ts +1 -16
- package/dist/cjs/api/types/Frequencynotification.js +1 -16
- package/dist/cjs/api/types/Gatewayfield.d.ts +1 -1
- package/dist/cjs/api/types/GeneralEvents.d.ts +1 -1
- package/dist/cjs/api/types/GetBasicEntryByIdResponse.d.ts +8 -0
- package/dist/cjs/api/types/GetBasicEntryResponse.d.ts +8 -0
- package/dist/cjs/api/types/GetBillResponse.d.ts +12 -0
- package/dist/cjs/api/types/GetEntryConfigResponse.d.ts +8 -0
- package/dist/cjs/api/types/GetInvoiceRecord.d.ts +54 -0
- package/dist/cjs/api/types/GetMethodResponse.d.ts +6 -0
- package/dist/cjs/api/types/GetMethodResponseResponseData.d.ts +32 -0
- package/dist/cjs/api/types/GetMethodResponseResponseDataCustomersItem.d.ts +41 -0
- package/dist/cjs/api/types/GetMethodResponseResponseDataVendorsItem.d.ts +93 -0
- package/dist/cjs/api/types/GetPaidResponseData.d.ts +16 -0
- package/dist/cjs/api/types/GetPayLinkFromIdResponse.d.ts +4 -0
- package/dist/cjs/api/types/GetPayLinkFromIdResponseResponseData.d.ts +2 -0
- package/dist/cjs/api/types/GetPayoutSubscriptionResponse.d.ts +10 -0
- package/dist/cjs/api/types/GooglePayData.d.ts +5 -2
- package/dist/cjs/api/types/GooglePayMetadata.d.ts +10 -3
- package/dist/cjs/api/types/GooglePayPaypointRegistrationData.d.ts +1 -1
- package/dist/cjs/api/types/GreaterValueAllowed.d.ts +2 -1
- package/dist/cjs/api/types/HasVcardTransactions.d.ts +3 -0
- package/dist/cjs/api/types/Highticketamt.d.ts +1 -1
- package/dist/cjs/api/types/Holdername.d.ts +1 -1
- package/dist/cjs/api/types/IdempotencyKey.d.ts +5 -1
- package/dist/cjs/api/types/Identifierfields.d.ts +1 -1
- package/dist/cjs/api/types/Idpaypoint.d.ts +1 -1
- package/dist/cjs/api/types/Initiator.d.ts +1 -7
- package/dist/cjs/api/types/InternalReferenceId.d.ts +1 -1
- package/dist/cjs/api/types/InvoiceAmount.d.ts +1 -1
- package/dist/cjs/api/types/InvoiceDataRequest.d.ts +9 -0
- package/dist/cjs/api/types/InvoiceNumber.d.ts +1 -1
- package/dist/cjs/api/types/InvoiceNumberResponse.d.ts +10 -0
- package/dist/cjs/api/types/InvoiceResponseWithoutData.d.ts +13 -0
- package/dist/cjs/api/types/InvoiceType.d.ts +2 -1
- package/dist/cjs/api/types/Invoicestatus.d.ts +1 -9
- package/dist/cjs/api/types/IpAddress.d.ts +1 -1
- package/dist/cjs/api/types/IsSameDayAch.d.ts +1 -2
- package/dist/cjs/api/types/IsSuccess.d.ts +2 -1
- package/dist/cjs/api/types/JobStatus.d.ts +7 -7
- package/dist/cjs/api/types/JobStatus.js +7 -0
- package/dist/cjs/api/types/Language.d.ts +1 -3
- package/dist/cjs/api/types/LineItem.d.ts +1 -1
- package/dist/cjs/api/types/LineItemQueryRecord.d.ts +1 -1
- package/dist/cjs/api/types/LinkData.d.ts +13 -12
- package/dist/cjs/api/types/ListOrganizationsResponse.d.ts +5 -0
- package/dist/cjs/api/types/ListPaymentMethodDomainsResponse.d.ts +5 -0
- package/dist/cjs/api/types/LogoutUserResponse.d.ts +5 -0
- package/dist/cjs/api/types/Maskedaccount.d.ts +2 -1
- package/dist/cjs/api/types/MaxTicket.d.ts +2 -1
- package/dist/cjs/api/types/Mcc.d.ts +3 -1
- package/dist/cjs/api/types/MethodElement.d.ts +1 -88
- package/dist/cjs/api/types/MethodElement.js +0 -74
- package/dist/cjs/api/types/MethodElementOut.d.ts +21 -0
- package/dist/cjs/api/types/MethodElementSettings.d.ts +7 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePay.d.ts +9 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayButtonStyle.d.ts +11 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayButtonStyle.js +14 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayButtonType.d.ts +21 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayButtonType.js +24 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayLanguage.d.ts +47 -0
- package/dist/cjs/api/types/MethodElementSettingsApplePayLanguage.js +50 -0
- package/dist/cjs/api/types/MethodQueryRecords.d.ts +27 -11
- package/dist/cjs/api/types/MethodReferenceId.d.ts +3 -1
- package/dist/cjs/api/types/MfaValidationCode.d.ts +2 -1
- package/dist/cjs/api/types/MigratePaypointResponse.d.ts +6 -0
- package/dist/cjs/api/types/MinTicket.d.ts +2 -1
- package/dist/cjs/api/types/ModifyApprovalBillResponse.d.ts +11 -0
- package/dist/cjs/api/types/NetAmountstring.d.ts +1 -1
- package/dist/cjs/api/types/NotificationContent.d.ts +3 -105
- package/dist/cjs/api/types/NotificationContent.js +0 -101
- package/dist/cjs/api/types/NotificationContentEventType.d.ts +83 -0
- package/dist/cjs/api/types/NotificationContentEventType.js +86 -0
- package/dist/cjs/api/types/NotificationContentFileFormat.d.ts +10 -0
- package/dist/cjs/api/types/NotificationContentFileFormat.js +13 -0
- package/dist/cjs/api/types/NotificationContentReportName.d.ts +12 -0
- package/dist/cjs/api/types/NotificationContentReportName.js +15 -0
- package/dist/cjs/api/types/NotificationId.d.ts +2 -1
- package/dist/cjs/api/types/NotificationLogDetail.d.ts +6 -0
- package/dist/cjs/api/types/NotificationReportRequest.d.ts +4 -57
- package/dist/cjs/api/types/NotificationReportRequest.js +0 -35
- package/dist/cjs/api/types/NotificationReportRequestContent.d.ts +23 -0
- package/dist/cjs/api/types/NotificationReportRequestContent.js +11 -0
- package/dist/cjs/api/types/NotificationReportRequestContentFileFormat.d.ts +7 -0
- package/dist/cjs/api/types/NotificationReportRequestContentFileFormat.js +10 -0
- package/dist/cjs/api/types/NotificationReportRequestContentReportName.d.ts +8 -0
- package/dist/cjs/api/types/NotificationReportRequestContentReportName.js +11 -0
- package/dist/cjs/api/types/NotificationReportRequestFrequency.d.ts +11 -0
- package/dist/cjs/api/types/NotificationReportRequestFrequency.js +14 -0
- package/dist/cjs/api/types/NotificationReportRequestMethod.d.ts +13 -0
- package/dist/cjs/api/types/NotificationReportRequestMethod.js +16 -0
- package/dist/cjs/api/types/NotificationRequest.d.ts +7 -0
- package/dist/cjs/api/types/NotificationStandardRequest.d.ts +5 -162
- package/dist/cjs/api/types/NotificationStandardRequest.js +0 -146
- package/dist/cjs/api/types/NotificationStandardRequestContent.d.ts +11 -0
- package/dist/cjs/api/types/NotificationStandardRequestContentEventType.d.ts +131 -0
- package/dist/cjs/api/types/NotificationStandardRequestContentEventType.js +134 -0
- package/dist/cjs/api/types/NotificationStandardRequestFrequency.d.ts +5 -0
- package/dist/cjs/api/types/NotificationStandardRequestFrequency.js +8 -0
- package/dist/cjs/api/types/NotificationStandardRequestMethod.d.ts +15 -0
- package/dist/cjs/api/types/NotificationStandardRequestMethod.js +18 -0
- package/dist/cjs/api/types/OcrResponseData.d.ts +4 -0
- package/dist/cjs/api/types/OcrResultData.d.ts +20 -0
- package/dist/cjs/api/types/OcrVendor.d.ts +34 -0
- package/dist/cjs/api/types/OdpSetup.d.ts +2 -9
- package/dist/cjs/api/types/OdpSetup.js +0 -9
- package/dist/cjs/api/types/OdpSetupProcessingRegion.d.ts +6 -0
- package/dist/cjs/api/types/OdpSetupProcessingRegion.js +9 -0
- package/dist/cjs/api/types/OnCreate.d.ts +5 -1
- package/dist/cjs/api/types/OptinStatus.d.ts +4 -7
- package/dist/cjs/api/types/OrgData.d.ts +0 -2
- package/dist/cjs/api/types/OrganizationQueryRecord.d.ts +1 -16
- package/dist/cjs/api/types/OrganizationQueryRecordServicesItem.d.ts +10 -0
- package/dist/cjs/api/types/Orgentryname.d.ts +2 -1
- package/dist/cjs/api/types/Orgidstring.d.ts +3 -1
- package/dist/cjs/api/types/OwnerEntityId.d.ts +3 -1
- package/dist/cjs/api/types/OwnerEntityType.d.ts +4 -3
- package/dist/cjs/api/types/Ownerid.d.ts +4 -2
- package/dist/cjs/api/types/Ownertype.d.ts +2 -2
- package/dist/cjs/api/types/PayMethodAch.d.ts +20 -0
- package/dist/cjs/api/types/PayMethodAch.js +10 -0
- package/dist/cjs/api/types/PayMethodCloud.d.ts +8 -1
- package/dist/cjs/api/types/PayMethodCloud.js +8 -0
- package/dist/cjs/api/types/PayMethodCredit.d.ts +8 -1
- package/dist/cjs/api/types/PayMethodCredit.js +8 -0
- package/dist/cjs/api/types/PayMethodStoredMethod.d.ts +2 -10
- package/dist/cjs/api/types/PayMethodStoredMethod.js +0 -9
- package/dist/cjs/api/types/PayMethodStoredMethodMethod.d.ts +11 -0
- package/dist/cjs/api/types/PayMethodStoredMethodMethod.js +14 -0
- package/dist/cjs/api/types/PayabliApiResponse0.d.ts +1 -13
- package/dist/cjs/api/types/PayabliApiResponse0000.d.ts +1 -13
- package/dist/cjs/api/types/PayabliApiResponse0ResponseData.d.ts +11 -0
- package/dist/cjs/api/types/PayabliApiResponse6.d.ts +1 -1
- package/dist/cjs/api/types/PayabliApiResponseGeneric2Part.d.ts +4 -0
- package/dist/cjs/api/types/PayabliApiResponseGetPaid.d.ts +10 -0
- package/dist/cjs/api/types/PayabliApiResponseImport.d.ts +1 -14
- package/dist/cjs/api/types/PayabliApiResponseImportResponseData.d.ts +11 -0
- package/dist/cjs/api/types/PayabliApiResponseNotifications.d.ts +1 -9
- package/dist/cjs/api/types/PayabliApiResponseNotificationsResponseData.d.ts +5 -0
- package/dist/cjs/api/types/PayabliApiResponseOcr.d.ts +8 -0
- package/dist/cjs/api/types/PayabliApiResponsePaymentLinks.d.ts +7 -0
- package/dist/cjs/api/types/PayabliApiResponsePaymethodDelete.d.ts +1 -9
- package/dist/cjs/api/types/PayabliApiResponsePaymethodDeleteResponseData.d.ts +7 -0
- package/dist/cjs/api/types/PayabliCredentialsPascal.d.ts +1 -1
- package/dist/cjs/api/types/PayabliErrorBody.d.ts +28 -0
- package/dist/cjs/api/types/PayabliPages.d.ts +6 -6
- package/dist/cjs/api/types/PaymentIdString.d.ts +2 -1
- package/dist/cjs/api/types/PaymentMethod.d.ts +1 -10
- package/dist/cjs/api/types/PaymentPageRequestBodyOut.d.ts +26 -0
- package/dist/cjs/api/types/PayorId.d.ts +2 -1
- package/dist/cjs/api/types/PayoutAverageMonthlyVolume.d.ts +4 -1
- package/dist/cjs/api/types/PayoutAverageTicketLimit.d.ts +3 -1
- package/dist/cjs/api/types/PayoutCreditLimit.d.ts +3 -1
- package/dist/cjs/api/types/PayoutHighTicketAmount.d.ts +3 -1
- package/dist/cjs/api/types/PayoutScheduleDetail.d.ts +9 -0
- package/dist/cjs/api/types/PayoutSubscriptionQueryRecord.d.ts +57 -0
- package/dist/cjs/api/types/PayoutSubscriptionQueryRecordPascal.d.ts +57 -0
- package/dist/cjs/api/types/PaypointData.d.ts +21 -21
- package/dist/cjs/api/types/Paypointstatus.d.ts +2 -3
- package/dist/cjs/api/types/PciAttestation.d.ts +2 -1
- package/dist/cjs/api/types/PendingFeeAmount.d.ts +9 -3
- package/dist/cjs/api/types/PolicyId.d.ts +3 -1
- package/dist/cjs/api/types/PushPayLinkRequest.d.ts +2 -10
- package/dist/cjs/api/types/PushPayLinkRequestEmail.d.ts +10 -0
- package/dist/cjs/api/types/PushPayLinkRequestSms.d.ts +1 -0
- package/dist/cjs/api/types/QueryBatchesDetailResponse.d.ts +8 -0
- package/dist/cjs/api/types/QueryBatchesOutResponse.d.ts +1 -59
- package/dist/cjs/api/types/QueryBatchesOutResponseRecordsItem.d.ts +54 -0
- package/dist/cjs/api/types/QueryBatchesResponse.d.ts +8 -0
- package/dist/cjs/api/types/QueryBatchesResponseRecordsItem.d.ts +52 -0
- package/dist/cjs/api/types/QueryBoardingLinksResponse.d.ts +1 -22
- package/dist/cjs/api/types/QueryBoardingLinksResponseRecordsItem.d.ts +14 -0
- package/dist/cjs/api/types/QueryChargebacksResponse.d.ts +1 -62
- package/dist/cjs/api/types/QueryChargebacksResponseRecordsItem.d.ts +57 -0
- package/dist/cjs/api/types/QueryDeviceResponse.d.ts +8 -0
- package/dist/cjs/api/types/QueryEntrypointResponse.d.ts +1 -64
- package/dist/cjs/api/types/QueryEntrypointResponseRecordsItem.d.ts +59 -0
- package/dist/cjs/api/types/QueryInvoiceResponse.d.ts +5 -0
- package/dist/cjs/api/types/QueryInvoiceResponseRecordsItem.d.ts +72 -0
- package/dist/cjs/api/types/QueryPayoutSubscriptionResponse.d.ts +8 -0
- package/dist/cjs/api/types/QueryPayoutTransaction.d.ts +2 -182
- package/dist/cjs/api/types/QueryPayoutTransactionRecordsItem.d.ts +58 -0
- package/dist/cjs/api/types/QueryPayoutTransactionRecordsItemPaymentData.d.ts +23 -0
- package/dist/cjs/api/types/QueryPayoutTransactionSummary.d.ts +25 -0
- package/dist/cjs/api/types/QueryResponseData.d.ts +0 -34
- package/dist/cjs/api/types/QueryResponseItems.d.ts +1 -16
- package/dist/cjs/api/types/QueryResponseItemsRecordsItem.d.ts +11 -0
- package/dist/cjs/api/types/QueryResponseNotificationReports.d.ts +1 -15
- package/dist/cjs/api/types/QueryResponseNotificationReportsRecordsItem.d.ts +10 -0
- package/dist/cjs/api/types/QueryResponseNotifications.d.ts +1 -25
- package/dist/cjs/api/types/QueryResponseNotificationsRecordsItem.d.ts +20 -0
- package/dist/cjs/api/types/QueryResponseSettlements.d.ts +2 -220
- package/dist/cjs/api/types/QueryResponseSettlementsRecordsItem.d.ts +57 -0
- package/dist/cjs/api/types/QueryResponseSettlementsSummary.d.ts +22 -0
- package/dist/cjs/api/types/QueryResponseTransactions.d.ts +0 -74
- package/dist/cjs/api/types/QueryTransactionEvents.d.ts +2 -7
- package/dist/cjs/api/types/QueryTransactionEventsEventData.d.ts +5 -0
- package/dist/cjs/api/types/QueryTransferDetailResponse.d.ts +7 -0
- package/dist/cjs/api/types/QueryTransferSummary.d.ts +48 -0
- package/dist/cjs/api/types/ReceiptResponse.d.ts +9 -0
- package/dist/cjs/api/types/RecipientEmailNotification.d.ts +4 -1
- package/dist/cjs/api/types/RefundResponse.d.ts +7 -0
- package/dist/cjs/api/types/RefundWithInstructionsResponse.d.ts +7 -0
- package/dist/cjs/api/types/ReissuePaymentMethod.d.ts +20 -0
- package/dist/cjs/api/types/ReissuePayoutResponse.d.ts +7 -0
- package/dist/cjs/api/types/ReissuePayoutResponseData.d.ts +8 -0
- package/dist/cjs/api/types/RemitEmail.d.ts +2 -1
- package/dist/cjs/api/types/Remitaddress1.d.ts +2 -1
- package/dist/cjs/api/types/Remitaddress2.d.ts +2 -1
- package/dist/cjs/api/types/Remitcity.d.ts +2 -1
- package/dist/cjs/api/types/Remitcountry.d.ts +2 -1
- package/dist/cjs/api/types/Remitstate.d.ts +3 -1
- package/dist/cjs/api/types/Remitzip.d.ts +3 -1
- package/dist/cjs/api/types/RemoveDeviceResponse.d.ts +9 -0
- package/dist/cjs/api/types/RemoveSubscriptionResponse.d.ts +14 -0
- package/dist/cjs/api/types/RepCode.d.ts +2 -1
- package/dist/cjs/api/types/RepName.d.ts +2 -1
- package/dist/cjs/api/types/RepOffice.d.ts +3 -1
- package/dist/cjs/api/types/ReplyToEmail.d.ts +3 -1
- package/dist/cjs/api/types/RequestCreditPaymentMethod.d.ts +21 -0
- package/dist/cjs/api/types/RequestCreditPaymentMethod.js +11 -0
- package/dist/cjs/api/types/RequestOutAuthorizeInvoiceData.d.ts +18 -0
- package/dist/cjs/api/types/RequestOutAuthorizePaymentDetails.d.ts +15 -0
- package/dist/cjs/api/types/RequestOutAuthorizeVendorBillingData.d.ts +11 -0
- package/dist/cjs/api/types/RequestOutAuthorizeVendorData.d.ts +38 -0
- package/dist/cjs/api/types/RequestPaymentValidatePaymentMethod.d.ts +11 -0
- package/dist/cjs/api/types/RequestPaymentValidatePaymentMethodMethod.d.ts +6 -0
- package/dist/cjs/api/types/RequestPaymentValidatePaymentMethodMethod.js +9 -0
- package/dist/cjs/api/types/RequestSchedulePaymentMethod.d.ts +5 -0
- package/dist/cjs/api/types/RequestSchedulePaymentMethodInitiator.d.ts +10 -0
- package/dist/cjs/api/types/RequestTokenStorage.d.ts +19 -0
- package/dist/cjs/api/types/RequestTokenStoragePaymentMethod.d.ts +5 -0
- package/dist/cjs/api/types/ResponseDataRefunds.d.ts +16 -0
- package/dist/cjs/api/types/Responsecode.d.ts +2 -1
- package/dist/cjs/api/types/ResultCode.d.ts +3 -3
- package/dist/cjs/api/types/ResultCodeText.d.ts +3 -1
- package/dist/cjs/api/types/ResultCodev2.d.ts +3 -1
- package/dist/cjs/api/types/Resulttext.d.ts +3 -1
- package/dist/cjs/api/types/Resumable.d.ts +3 -1
- package/dist/cjs/api/types/RetrievalId.d.ts +1 -1
- package/dist/cjs/api/types/ReverseResponse.d.ts +9 -0
- package/dist/cjs/api/types/RiskAction.d.ts +1 -1
- package/dist/cjs/api/types/RiskActionCode.d.ts +1 -1
- package/dist/cjs/api/types/RiskFlagged.d.ts +1 -1
- package/dist/cjs/api/types/RiskFlaggedOn.d.ts +1 -1
- package/dist/cjs/api/types/RiskReason.d.ts +1 -1
- package/dist/cjs/api/types/RiskStatus.d.ts +1 -1
- package/dist/cjs/api/types/SaveIfSuccess.d.ts +3 -1
- package/dist/cjs/api/types/ScheduleDetail.d.ts +15 -3
- package/dist/cjs/api/types/SendInvoiceResponse.d.ts +5 -0
- package/dist/cjs/api/types/Sequence.d.ts +11 -4
- package/dist/cjs/api/types/SetApprovedBillResponse.d.ts +11 -0
- package/dist/cjs/api/types/SettlementStatus.d.ts +3 -1
- package/dist/cjs/api/types/SettlementStatusPayout.d.ts +3 -1
- package/dist/cjs/api/types/Shippingzip.d.ts +3 -1
- package/dist/cjs/api/types/SignDate.d.ts +1 -1
- package/dist/cjs/api/types/SignerAcceptance.d.ts +2 -1
- package/dist/cjs/api/types/SignerAddress1.d.ts +2 -1
- package/dist/cjs/api/types/SignerCountry.d.ts +2 -1
- package/dist/cjs/api/types/SignerData.d.ts +0 -24
- package/dist/cjs/api/types/SignerZip.d.ts +1 -1
- package/dist/cjs/api/types/Signeraddress.d.ts +2 -1
- package/dist/cjs/api/types/SplitCount.d.ts +2 -1
- package/dist/cjs/api/types/StatBasicExtendedQueryRecord.d.ts +76 -0
- package/dist/cjs/api/types/Statusnotification.d.ts +3 -2
- package/dist/cjs/api/types/StoredMethodUsageType.d.ts +13 -5
- package/dist/cjs/api/types/Storedmethodid.d.ts +3 -1
- package/dist/cjs/api/types/Subdomain.d.ts +2 -1
- package/dist/cjs/api/types/SubscriptionQueryRecords.d.ts +2 -1
- package/dist/cjs/api/types/SubscriptionType.d.ts +11 -0
- package/dist/cjs/api/types/SubscriptionType.js +14 -0
- package/dist/cjs/api/types/Target.d.ts +6 -3
- package/dist/cjs/api/types/Taxfillname.d.ts +2 -1
- package/dist/cjs/api/types/Terms.d.ts +68 -46
- package/dist/cjs/api/types/Terms.js +70 -0
- package/dist/cjs/api/types/Ticketamt.d.ts +3 -1
- package/dist/cjs/api/types/TokenizeAch.d.ts +13 -0
- package/dist/cjs/api/types/TokenizeCard.d.ts +10 -0
- package/dist/cjs/api/types/TransRequestBody.d.ts +19 -0
- package/dist/cjs/api/types/TransStatus.d.ts +3 -1
- package/dist/cjs/api/types/TransactionDetailCustomer.d.ts +28 -0
- package/dist/cjs/api/types/TransactionDetailInvoiceData.d.ts +38 -0
- package/dist/cjs/api/types/TransactionDetailPaymentData.d.ts +19 -0
- package/dist/cjs/api/types/TransactionDetailPaymentDetails.d.ts +22 -0
- package/dist/cjs/api/types/TransactionDetailRecord.d.ts +58 -0
- package/dist/cjs/api/types/TransactionDetailResponseData.d.ts +24 -0
- package/dist/cjs/api/types/Transfer.d.ts +0 -45
- package/dist/cjs/api/types/TransferDetailRecord.d.ts +114 -0
- package/dist/cjs/api/types/TransferOutDetailBill.d.ts +36 -0
- package/dist/cjs/api/types/TransferOutDetailBill.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailBillAttachment.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailCheckData.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailEvent.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailPaymentData.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailQueryResponse.d.ts +10 -0
- package/dist/cjs/api/types/TransferOutDetailQueryResponse.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailRecord.d.ts +132 -0
- package/dist/cjs/api/types/TransferOutDetailRecord.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailVendor.d.ts +96 -0
- package/dist/cjs/api/types/TransferOutDetailVendor.js +3 -0
- package/dist/cjs/api/types/TransferOutDetailVendorBillingData.js +3 -0
- package/dist/cjs/api/types/TransferOutEventData.js +3 -0
- package/dist/cjs/api/types/TransferOutMessage.d.ts +22 -0
- package/dist/cjs/api/types/TransferOutMessage.js +3 -0
- package/dist/cjs/api/types/TransferOutMessageProperties.js +3 -0
- package/dist/cjs/api/types/TransferOutQueryResponse.d.ts +10 -0
- package/dist/cjs/api/types/TransferOutQueryResponse.js +3 -0
- package/dist/cjs/api/types/TransferOutRecord.d.ts +74 -0
- package/dist/cjs/api/types/TransferOutRecord.js +3 -0
- package/dist/cjs/api/types/TransferOutSummary.js +3 -0
- package/dist/cjs/api/types/TransferQueryResponse.d.ts +0 -52
- package/dist/cjs/api/types/TransferSummary.d.ts +0 -8
- package/dist/cjs/api/types/TypeResult.js +3 -0
- package/dist/cjs/api/types/UnderWritingMethod.d.ts +8 -3
- package/dist/cjs/api/types/UnderWritingMethod.js +8 -3
- package/dist/cjs/api/types/UpdateNotificationRequest.d.ts +2 -0
- package/dist/cjs/api/types/UpdateNotificationRequest.js +3 -0
- package/dist/cjs/api/types/UpdatePaymentMethodDomainRequestWallet.d.ts +4 -0
- package/dist/cjs/api/types/UpdatePaymentMethodDomainRequestWallet.js +3 -0
- package/dist/cjs/api/types/UpdatePayoutSubscriptionResponse.d.ts +15 -0
- package/dist/cjs/api/types/UpdatePayoutSubscriptionResponse.js +3 -0
- package/dist/cjs/api/types/UpdateSubscriptionResponse.d.ts +15 -0
- package/dist/cjs/api/types/UpdateSubscriptionResponse.js +3 -0
- package/dist/cjs/api/types/UsrStatus.d.ts +5 -4
- package/dist/cjs/api/types/V2BadRequestError.d.ts +22 -0
- package/dist/cjs/api/types/V2BadRequestError.js +3 -0
- package/dist/cjs/api/types/V2BadRequestErrorDetail.js +3 -0
- package/dist/cjs/api/types/V2DeclinedTransactionResponseWrapper.d.ts +13 -0
- package/dist/cjs/api/types/V2DeclinedTransactionResponseWrapper.js +3 -0
- package/dist/cjs/api/types/V2InternalServerError.d.ts +13 -0
- package/dist/cjs/api/types/V2InternalServerError.js +3 -0
- package/dist/cjs/api/types/V2ResponseAction.js +3 -0
- package/dist/cjs/api/types/V2ResponseCode.js +3 -0
- package/dist/cjs/api/types/V2ResponseExplanation.js +3 -0
- package/dist/cjs/api/types/V2ResponseReason.js +3 -0
- package/dist/cjs/api/types/V2TransactionDetailResponseData.d.ts +25 -0
- package/dist/cjs/api/types/V2TransactionDetailResponseData.js +3 -0
- package/dist/cjs/api/types/V2TransactionDetails.d.ts +70 -0
- package/dist/cjs/api/types/V2TransactionDetails.js +3 -0
- package/dist/cjs/api/types/V2TransactionResponseWrapper.d.ts +13 -0
- package/dist/cjs/api/types/V2TransactionResponseWrapper.js +3 -0
- package/dist/cjs/api/types/VCardCardType.d.ts +3 -2
- package/dist/cjs/api/types/VCardGetResponse.d.ts +56 -0
- package/dist/cjs/api/types/VCardGetResponse.js +3 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendor.d.ts +85 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendor.js +3 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendorBillingData.d.ts +33 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendorBillingData.js +3 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendorSummary.d.ts +37 -0
- package/dist/cjs/api/types/VCardGetResponseAssociatedVendorSummary.js +3 -0
- package/dist/cjs/api/types/VCardGetResponseContact.d.ts +13 -0
- package/dist/cjs/api/types/VCardGetResponseContact.js +3 -0
- package/dist/cjs/api/types/VCardRecord.d.ts +0 -42
- package/dist/cjs/api/types/VCardTransactionQueryResponse.d.ts +8 -0
- package/dist/cjs/api/types/VCardTransactionQueryResponse.js +3 -0
- package/dist/cjs/api/types/VCardTransactionRecord.d.ts +55 -0
- package/dist/cjs/api/types/VCardTransactionRecord.js +3 -0
- package/dist/cjs/api/types/ValidateResponse.d.ts +9 -0
- package/dist/cjs/api/types/ValidateResponse.js +3 -0
- package/dist/cjs/api/types/ValidateResponseData.d.ts +14 -0
- package/dist/cjs/api/types/ValidateResponseData.js +3 -0
- package/dist/cjs/api/types/VendorCheckNumber.d.ts +5 -1
- package/dist/cjs/api/types/VendorData.d.ts +0 -1
- package/dist/cjs/api/types/VendorDataRequest.js +3 -0
- package/dist/cjs/api/types/VendorDataResponse.d.ts +1 -99
- package/dist/cjs/api/types/VendorDataResponse.js +0 -11
- package/dist/cjs/api/types/VendorDataResponsePaymentMethod.d.ts +8 -0
- package/dist/cjs/api/types/VendorDataResponsePaymentMethod.js +11 -0
- package/dist/cjs/api/types/VendorEin.d.ts +2 -1
- package/dist/cjs/api/types/VendorEnrichResponse.d.ts +12 -0
- package/dist/cjs/api/types/VendorEnrichResponse.js +3 -0
- package/dist/cjs/api/types/VendorEnrichResponseData.d.ts +16 -0
- package/dist/cjs/api/types/VendorEnrichResponseData.js +3 -0
- package/dist/cjs/api/types/VendorEnrichmentData.d.ts +10 -0
- package/dist/cjs/api/types/VendorEnrichmentData.js +3 -0
- package/dist/cjs/api/types/VendorEnrichmentInvoiceScan.js +3 -0
- package/dist/cjs/api/types/VendorEnrichmentWebSearch.js +3 -0
- package/dist/cjs/api/types/VendorName1.d.ts +1 -1
- package/dist/cjs/api/types/VendorName2.d.ts +2 -1
- package/dist/cjs/api/types/VendorNumber.d.ts +2 -1
- package/dist/cjs/api/types/VendorPaymentMethodString.d.ts +5 -4
- package/dist/cjs/api/types/VendorPhone.d.ts +2 -1
- package/dist/cjs/api/types/VendorQueryRecord.d.ts +0 -89
- package/dist/cjs/api/types/VendorResponseStoredMethod.d.ts +3 -0
- package/dist/cjs/api/types/VendorSummary.d.ts +0 -21
- package/dist/cjs/api/types/Vendorstatus.d.ts +4 -7
- package/dist/cjs/api/types/VerifyAccountDetailsResponse.d.ts +9 -0
- package/dist/cjs/api/types/VerifyAccountDetailsResponse.js +3 -0
- package/dist/cjs/api/types/VoidResponse.d.ts +12 -0
- package/dist/cjs/api/types/VoidResponse.js +3 -0
- package/dist/cjs/api/types/VoidResponseData.d.ts +14 -0
- package/dist/cjs/api/types/VoidResponseData.js +3 -0
- package/dist/cjs/api/types/WalletCascade.d.ts +2 -1
- package/dist/cjs/api/types/WebHeaderParameter.js +3 -0
- package/dist/cjs/api/types/Website.d.ts +3 -1
- package/dist/cjs/api/types/Whencharged.d.ts +1 -1
- package/dist/cjs/api/types/Whencharged.js +1 -1
- package/dist/cjs/api/types/Whenprovided.d.ts +0 -1
- package/dist/cjs/api/types/Whenprovided.js +0 -1
- package/dist/cjs/api/types/index.d.ts +270 -10
- package/dist/cjs/api/types/index.js +270 -10
- package/dist/cjs/auth/HeaderAuthProvider.d.ts +2 -2
- package/dist/cjs/auth/HeaderAuthProvider.js +1 -1
- package/dist/cjs/core/auth/AuthProvider.d.ts +1 -0
- package/dist/cjs/core/auth/AuthProvider.js +7 -0
- package/dist/cjs/core/auth/index.d.ts +1 -1
- package/dist/cjs/core/auth/index.js +3 -1
- package/dist/cjs/core/fetcher/Fetcher.d.ts +6 -0
- package/dist/cjs/core/fetcher/Fetcher.js +9 -8
- package/dist/cjs/core/fetcher/requestWithRetries.js +4 -1
- package/dist/cjs/core/url/QueryStringBuilder.d.ts +47 -0
- package/dist/cjs/core/url/QueryStringBuilder.js +83 -0
- package/dist/cjs/core/url/index.d.ts +1 -0
- package/dist/cjs/core/url/index.js +3 -1
- package/dist/cjs/core/url/qs.d.ts +2 -1
- package/dist/cjs/core/url/qs.js +24 -12
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.d.mts +3 -0
- package/dist/esm/BaseClient.mjs +17 -2
- package/dist/esm/Client.d.mts +43 -43
- package/dist/esm/Client.mjs +57 -57
- package/dist/esm/api/errors/ForbiddenError.d.mts +1 -1
- package/dist/esm/api/errors/PaymentRequiredError.d.mts +6 -0
- package/dist/esm/api/errors/PaymentRequiredError.mjs +17 -0
- package/dist/esm/api/errors/ServiceUnavailableError.d.mts +1 -1
- package/dist/esm/api/errors/UnauthorizedError.d.mts +2 -1
- package/dist/esm/api/errors/index.d.mts +1 -1
- package/dist/esm/api/errors/index.mjs +1 -1
- package/dist/esm/api/resources/bill/client/Client.d.mts +103 -123
- package/dist/esm/api/resources/bill/client/Client.mjs +223 -208
- package/dist/esm/api/resources/bill/client/requests/AddBillRequest.d.mts +88 -36
- package/dist/esm/api/resources/bill/client/requests/DeleteAttachedFromBillRequest.d.mts +1 -1
- package/dist/esm/api/resources/bill/client/requests/ListBillsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/bill/client/requests/ListBillsRequest.d.mts +2 -1
- package/dist/esm/api/resources/bill/client/requests/SendToApprovalBillRequest.d.mts +2 -1
- package/dist/esm/api/resources/bill/index.d.mts +0 -1
- package/dist/esm/api/resources/bill/index.mjs +0 -1
- package/dist/esm/api/resources/boarding/client/Client.d.mts +30 -27
- package/dist/esm/api/resources/boarding/client/Client.mjs +101 -86
- package/dist/esm/api/resources/boarding/client/requests/CreateApplicationFromPaypointRequest.d.mts +22 -0
- package/dist/esm/api/resources/boarding/client/requests/ListApplicationsRequest.d.mts +2 -1
- package/dist/esm/api/resources/boarding/client/requests/ListBoardingLinksRequest.d.mts +1 -1
- package/dist/esm/api/resources/boarding/client/requests/RequestAppByAuth.d.mts +1 -1
- package/dist/esm/api/resources/boarding/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/boarding/index.d.mts +0 -1
- package/dist/esm/api/resources/boarding/index.mjs +0 -1
- package/dist/esm/api/resources/chargeBacks/client/Client.d.mts +5 -2
- package/dist/esm/api/resources/chargeBacks/client/Client.mjs +8 -6
- package/dist/esm/api/resources/chargeBacks/client/requests/ResponseChargeBack.d.mts +1 -0
- package/dist/esm/api/resources/chargeBacks/index.d.mts +0 -1
- package/dist/esm/api/resources/chargeBacks/index.mjs +0 -1
- package/dist/esm/api/resources/checkCapture/client/Client.d.mts +5 -2
- package/dist/esm/api/resources/checkCapture/client/Client.mjs +6 -3
- package/dist/esm/api/resources/checkCapture/client/requests/CheckCaptureRequestBody.d.mts +1 -1
- package/dist/esm/api/resources/checkCapture/index.d.mts +0 -1
- package/dist/esm/api/resources/checkCapture/index.mjs +0 -1
- package/dist/esm/api/resources/cloud/client/Client.d.mts +22 -19
- package/dist/esm/api/resources/cloud/client/Client.mjs +47 -40
- package/dist/esm/api/resources/cloud/client/requests/DeviceEntry.d.mts +1 -0
- package/dist/esm/api/resources/cloud/index.d.mts +0 -1
- package/dist/esm/api/resources/cloud/index.mjs +0 -1
- package/dist/esm/api/resources/customer/client/Client.d.mts +43 -42
- package/dist/esm/api/resources/customer/client/Client.mjs +87 -71
- package/dist/esm/api/resources/customer/client/requests/AddCustomerRequest.d.mts +53 -14
- package/dist/esm/api/resources/export/client/Client.d.mts +124 -5
- package/dist/esm/api/resources/export/client/Client.mjs +269 -34
- package/dist/esm/api/resources/export/client/requests/ExportApplicationsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchDetailsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchDetailsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchesOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchesOutOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchesOutRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBatchesRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBillsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportBillsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportChargebacksOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportChargebacksRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportCustomersOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportCustomersRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportInvoicesOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportInvoicesRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportOrganizationsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportPayoutOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportPayoutRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportPaypointsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportSettlementsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportSettlementsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportSubscriptionsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportSubscriptionsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportTransactionsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportTransactionsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportTransferDetailsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportTransfersRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportVendorsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/client/requests/ExportVendorsRequest.d.mts +1 -1
- package/dist/esm/api/resources/export/index.d.mts +0 -1
- package/dist/esm/api/resources/export/index.mjs +0 -1
- package/dist/esm/api/resources/ghostCard/client/Client.d.mts +6 -6
- package/dist/esm/api/resources/ghostCard/client/Client.mjs +8 -8
- package/dist/esm/api/resources/ghostCard/client/requests/CreateGhostCardRequestBody.d.mts +1 -1
- package/dist/esm/api/resources/ghostCard/index.d.mts +0 -1
- package/dist/esm/api/resources/ghostCard/index.mjs +0 -1
- package/dist/esm/api/resources/hostedPaymentPages/client/Client.d.mts +4 -6
- package/dist/esm/api/resources/hostedPaymentPages/client/Client.mjs +19 -10
- package/dist/esm/api/resources/hostedPaymentPages/client/requests/NewPageRequest.d.mts +22 -3
- package/dist/esm/api/resources/import/client/Client.d.mts +9 -1
- package/dist/esm/api/resources/import/client/Client.mjs +32 -9
- package/dist/esm/api/resources/index.d.mts +1 -32
- package/dist/esm/api/resources/index.mjs +1 -32
- package/dist/esm/api/resources/invoice/client/Client.d.mts +72 -90
- package/dist/esm/api/resources/invoice/client/Client.mjs +146 -129
- package/dist/esm/api/resources/invoice/client/requests/AddInvoiceRequest.d.mts +36 -30
- package/dist/esm/api/resources/invoice/client/requests/EditInvoiceRequest.d.mts +16 -13
- package/dist/esm/api/resources/invoice/client/requests/ListInvoicesOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/invoice/client/requests/ListInvoicesRequest.d.mts +2 -1
- package/dist/esm/api/resources/invoice/index.d.mts +0 -1
- package/dist/esm/api/resources/invoice/index.mjs +0 -1
- package/dist/esm/api/resources/lineItem/client/Client.d.mts +41 -35
- package/dist/esm/api/resources/lineItem/client/Client.mjs +107 -75
- package/dist/esm/api/resources/lineItem/client/requests/AddItemRequest.d.mts +21 -11
- package/dist/esm/api/resources/lineItem/client/requests/ListLineItemsRequest.d.mts +1 -1
- package/dist/esm/api/resources/lineItem/index.d.mts +0 -1
- package/dist/esm/api/resources/lineItem/index.mjs +0 -1
- package/dist/esm/api/resources/management/client/Client.d.mts +5 -2
- package/dist/esm/api/resources/management/client/Client.mjs +6 -3
- package/dist/esm/api/resources/management/index.d.mts +0 -1
- package/dist/esm/api/resources/management/index.mjs +0 -1
- package/dist/esm/api/resources/moneyIn/client/Client.d.mts +251 -276
- package/dist/esm/api/resources/moneyIn/client/Client.mjs +316 -317
- package/dist/esm/api/resources/moneyIn/client/requests/RequestCredit.d.mts +7 -20
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPayment.d.mts +146 -142
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentAuthorize.d.mts +35 -20
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentAuthorizeV2.d.mts +35 -20
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentV2.d.mts +80 -70
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentValidate.d.mts +3 -22
- package/dist/esm/api/resources/moneyIn/client/requests/RequestPaymentValidate.mjs +1 -11
- package/dist/esm/api/resources/moneyIn/client/requests/RequestRefund.d.mts +1 -0
- package/dist/esm/api/resources/moneyIn/client/requests/index.d.mts +1 -1
- package/dist/esm/api/resources/moneyIn/client/requests/index.mjs +1 -1
- package/dist/esm/api/resources/moneyIn/index.d.mts +0 -2
- package/dist/esm/api/resources/moneyIn/index.mjs +0 -2
- package/dist/esm/api/resources/moneyOut/client/Client.d.mts +127 -140
- package/dist/esm/api/resources/moneyOut/client/Client.mjs +160 -154
- package/dist/esm/api/resources/moneyOut/client/requests/CaptureAllOutRequest.d.mts +1 -1
- package/dist/esm/api/resources/moneyOut/client/requests/CaptureOutRequest.d.mts +1 -0
- package/dist/esm/api/resources/moneyOut/client/requests/ReissueOutRequest.d.mts +13 -18
- package/dist/esm/api/resources/moneyOut/client/requests/RequestOutAuthorize.d.mts +161 -0
- package/dist/esm/api/resources/moneyOut/client/requests/index.d.mts +1 -1
- package/dist/esm/api/resources/notification/client/Client.d.mts +23 -20
- package/dist/esm/api/resources/notification/client/Client.mjs +50 -47
- package/dist/esm/api/resources/notification/index.d.mts +0 -1
- package/dist/esm/api/resources/notification/index.mjs +0 -1
- package/dist/esm/api/resources/notificationlogs/client/Client.d.mts +9 -8
- package/dist/esm/api/resources/notificationlogs/client/Client.mjs +33 -17
- package/dist/esm/api/resources/notificationlogs/client/requests/SearchNotificationLogsRequest.d.mts +18 -8
- package/dist/esm/api/resources/notificationlogs/index.d.mts +0 -1
- package/dist/esm/api/resources/notificationlogs/index.mjs +0 -1
- package/dist/esm/api/resources/ocr/client/Client.d.mts +3 -3
- package/dist/esm/api/resources/ocr/client/Client.mjs +7 -7
- package/dist/esm/api/resources/ocr/index.d.mts +0 -1
- package/dist/esm/api/resources/ocr/index.mjs +0 -1
- package/dist/esm/api/resources/organization/client/Client.d.mts +26 -18
- package/dist/esm/api/resources/organization/client/Client.mjs +71 -52
- package/dist/esm/api/resources/organization/client/requests/AddOrganizationRequest.d.mts +1 -0
- package/dist/esm/api/resources/organization/index.d.mts +0 -1
- package/dist/esm/api/resources/organization/index.mjs +0 -1
- package/dist/esm/api/resources/paymentLink/client/Client.d.mts +280 -287
- package/dist/esm/api/resources/paymentLink/client/Client.mjs +329 -305
- package/dist/esm/api/resources/paymentLink/client/requests/PatchOutPaymentLinkRequest.d.mts +52 -0
- package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataBill.d.mts +135 -119
- package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataInvoice.d.mts +119 -99
- package/dist/esm/api/resources/paymentLink/client/requests/PayLinkDataOut.d.mts +79 -61
- package/dist/esm/api/resources/paymentLink/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/paymentLink/index.d.mts +0 -1
- package/dist/esm/api/resources/paymentLink/index.mjs +0 -1
- package/dist/esm/api/resources/paymentMethodDomain/client/Client.d.mts +32 -29
- package/dist/esm/api/resources/paymentMethodDomain/client/Client.mjs +74 -67
- package/dist/esm/api/resources/paymentMethodDomain/client/requests/AddPaymentMethodDomainRequest.d.mts +2 -16
- package/dist/esm/api/resources/paymentMethodDomain/client/requests/UpdatePaymentMethodDomainRequest.d.mts +2 -10
- package/dist/esm/api/resources/paymentMethodDomain/index.d.mts +0 -1
- package/dist/esm/api/resources/paymentMethodDomain/index.mjs +0 -1
- package/dist/esm/api/resources/payoutSubscription/client/Client.d.mts +51 -55
- package/dist/esm/api/resources/payoutSubscription/client/Client.mjs +69 -62
- package/dist/esm/api/resources/payoutSubscription/client/requests/RequestPayoutSchedule.d.mts +63 -52
- package/dist/esm/api/resources/payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.d.mts +33 -0
- package/dist/esm/api/resources/payoutSubscription/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/payoutSubscription/index.d.mts +0 -1
- package/dist/esm/api/resources/payoutSubscription/index.mjs +0 -1
- package/dist/esm/api/resources/paypoint/client/Client.d.mts +49 -41
- package/dist/esm/api/resources/paypoint/client/Client.mjs +122 -99
- package/dist/esm/api/resources/paypoint/client/requests/PaypointMoveRequest.d.mts +22 -0
- package/dist/esm/api/resources/paypoint/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/paypoint/index.d.mts +0 -1
- package/dist/esm/api/resources/paypoint/index.mjs +0 -1
- package/dist/esm/api/resources/query/client/Client.d.mts +45 -43
- package/dist/esm/api/resources/query/client/Client.mjs +268 -93
- package/dist/esm/api/resources/query/client/requests/ListBatchDetailsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListBatchDetailsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListBatchesOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListBatchesOutOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListBatchesOutRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListBatchesRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListChargebacksOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListChargebacksRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListCustomersOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListCustomersRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListDevicesOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListDevicesRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListNotificationReportsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListNotificationReportsRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListNotificationsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListNotificationsRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListOrganizationsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListPayoutOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListPayoutRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListPayoutSubscriptionsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListPayoutSubscriptionsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListPaypointsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListSettlementsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListSettlementsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListSubscriptionsOrgRequest.d.mts +3 -1
- package/dist/esm/api/resources/query/client/requests/ListSubscriptionsRequest.d.mts +3 -1
- package/dist/esm/api/resources/query/client/requests/ListTransactionsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListTransactionsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListTransferDetailsOutRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListTransfersOutOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListTransfersOutPaypointRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListTransfersPaypointRequest.d.mts +3 -1
- package/dist/esm/api/resources/query/client/requests/ListTransfersRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListTransfersRequestOrg.d.mts +2 -3
- package/dist/esm/api/resources/query/client/requests/ListUsersOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListUsersPaypointRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListVcardsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListVcardsRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListVcardsTransactionsOrgRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListVcardsTransactionsRequest.d.mts +1 -1
- package/dist/esm/api/resources/query/client/requests/ListVendorsOrgRequest.d.mts +2 -1
- package/dist/esm/api/resources/query/client/requests/ListVendorsRequest.d.mts +2 -1
- package/dist/esm/api/resources/statistic/client/Client.d.mts +14 -7
- package/dist/esm/api/resources/statistic/client/Client.mjs +50 -16
- package/dist/esm/api/resources/statistic/client/requests/BasicStatsRequest.d.mts +3 -3
- package/dist/esm/api/resources/statistic/client/requests/CustomerBasicStatsRequest.d.mts +1 -1
- package/dist/esm/api/resources/statistic/client/requests/SubStatsRequest.d.mts +1 -1
- package/dist/esm/api/resources/statistic/client/requests/VendorBasicStatsRequest.d.mts +1 -1
- package/dist/esm/api/resources/statistic/index.d.mts +0 -1
- package/dist/esm/api/resources/statistic/index.mjs +0 -1
- package/dist/esm/api/resources/subscription/client/Client.d.mts +119 -97
- package/dist/esm/api/resources/subscription/client/Client.mjs +177 -140
- package/dist/esm/api/resources/subscription/client/requests/RequestSchedule.d.mts +105 -69
- package/dist/esm/api/resources/subscription/client/requests/RequestUpdateSchedule.d.mts +3 -3
- package/dist/esm/api/resources/subscription/index.d.mts +0 -1
- package/dist/esm/api/resources/subscription/index.mjs +0 -1
- package/dist/esm/api/resources/templates/client/Client.d.mts +13 -5
- package/dist/esm/api/resources/templates/client/Client.mjs +37 -14
- package/dist/esm/api/resources/templates/client/requests/ListTemplatesRequest.d.mts +1 -1
- package/dist/esm/api/resources/tokenStorage/client/Client.d.mts +117 -136
- package/dist/esm/api/resources/tokenStorage/client/Client.mjs +187 -183
- package/dist/esm/api/resources/tokenStorage/client/requests/AddMethodRequest.d.mts +79 -69
- package/dist/esm/api/resources/tokenStorage/client/requests/UpdateMethodRequest.d.mts +56 -46
- package/dist/esm/api/resources/tokenStorage/index.d.mts +0 -1
- package/dist/esm/api/resources/tokenStorage/index.mjs +0 -1
- package/dist/esm/api/resources/user/client/Client.d.mts +68 -65
- package/dist/esm/api/resources/user/client/Client.mjs +165 -158
- package/dist/esm/api/resources/user/client/requests/GetUserRequest.d.mts +1 -1
- package/dist/esm/api/resources/user/index.d.mts +0 -1
- package/dist/esm/api/resources/user/index.mjs +0 -1
- package/dist/esm/api/resources/vendor/client/Client.d.mts +21 -18
- package/dist/esm/api/resources/vendor/client/Client.mjs +53 -50
- package/dist/esm/api/resources/vendor/client/index.d.mts +1 -1
- package/dist/esm/api/resources/vendor/client/index.mjs +1 -1
- package/dist/esm/api/resources/vendor/client/requests/VendorEnrichRequest.d.mts +47 -0
- package/dist/esm/api/resources/vendor/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/vendor/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/vendor/index.d.mts +0 -1
- package/dist/esm/api/resources/vendor/index.mjs +0 -1
- package/dist/esm/api/resources/wallet/client/Client.d.mts +11 -3
- package/dist/esm/api/resources/wallet/client/Client.mjs +31 -12
- package/dist/esm/api/resources/wallet/client/requests/ConfigureOrganizationRequestApplePay.d.mts +1 -1
- package/dist/esm/api/resources/wallet/client/requests/ConfigureOrganizationRequestGooglePay.d.mts +1 -1
- package/dist/esm/api/types/AbsorbDifference.d.mts +2 -1
- package/dist/esm/api/types/AchHolder.d.mts +2 -1
- package/dist/esm/api/types/AchSecCode.d.mts +26 -6
- package/dist/esm/api/types/AchService.d.mts +4 -1
- package/dist/esm/api/types/AchSetup.d.mts +18 -3
- package/dist/esm/api/types/AchValidation.d.mts +2 -1
- package/dist/esm/api/types/AddApplicationRequest.d.mts +14 -0
- package/dist/esm/api/types/AddDeviceResponse.d.mts +9 -0
- package/dist/esm/api/types/AddMethodResponse.d.mts +4 -0
- package/dist/esm/api/types/AddMethodResponseResponseData.d.mts +14 -0
- package/dist/esm/api/types/AddNotificationRequest.d.mts +8 -0
- package/dist/esm/api/types/AddOrganizationResponse.d.mts +7 -0
- package/dist/esm/api/types/AddPaymentMethodDomainRequestApplePay.d.mts +7 -0
- package/dist/esm/api/types/AddPaymentMethodDomainRequestGooglePay.d.mts +7 -0
- package/dist/esm/api/types/AddPayoutSubscriptionResponse.d.mts +12 -0
- package/dist/esm/api/types/AddResponseResponse.d.mts +8 -0
- package/dist/esm/api/types/AddSubscriptionResponse.d.mts +11 -0
- package/dist/esm/api/types/AddUserResponse.d.mts +7 -0
- package/dist/esm/api/types/AdditionalData.d.mts +5 -1
- package/dist/esm/api/types/AdditionalDataMap.d.mts +2 -1
- package/dist/esm/api/types/AdditionalDataString.d.mts +2 -1
- package/dist/esm/api/types/AllowOverride.d.mts +2 -1
- package/dist/esm/api/types/ApplePayData.d.mts +5 -2
- package/dist/esm/api/types/ApplePayMetadata.d.mts +19 -6
- package/dist/esm/api/types/ApplePayPaypointRegistrationData.d.mts +1 -1
- package/dist/esm/api/types/AppleWalletData.d.mts +1 -1
- package/dist/esm/api/types/ApplicationDataManaged.d.mts +2 -14
- package/dist/esm/api/types/ApplicationDataManagedContactsItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataManagedOwnershipItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataOdp.d.mts +2 -14
- package/dist/esm/api/types/ApplicationDataOdpContactsItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataOdpOwnershipItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataPayIn.d.mts +3 -26
- package/dist/esm/api/types/ApplicationDataPayInContactsItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataPayInOwnershipItem.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataPayInServices.d.mts +6 -0
- package/dist/esm/api/types/ApplicationDataPayInServicesAch.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDataPayInServicesCard.d.mts +2 -0
- package/dist/esm/api/types/ApplicationDetailsRecord.d.mts +1 -19
- package/dist/esm/api/types/ApplicationDetailsRecordMessagesItem.d.mts +14 -0
- package/dist/esm/api/types/Attachments.d.mts +2 -1
- package/dist/esm/api/types/AttestationDate.d.mts +2 -1
- package/dist/esm/api/types/AuthCapturePayoutResponse.d.mts +9 -0
- package/dist/esm/api/types/AuthCapturePayoutResponseData.d.mts +11 -0
- package/dist/esm/api/types/AuthResetUserResponse.d.mts +5 -0
- package/dist/esm/api/types/AuthResponse.d.mts +10 -0
- package/dist/esm/api/types/AuthResponseResponseData.d.mts +11 -0
- package/dist/esm/api/types/AuthorizePaymentMethod.d.mts +27 -0
- package/dist/esm/api/types/AutoCapture.d.mts +10 -3
- package/dist/esm/api/types/Avgmonthly.d.mts +2 -1
- package/dist/esm/api/types/AvsResponse.d.mts +2 -1
- package/dist/esm/api/types/AvsResponseText.d.mts +2 -1
- package/dist/esm/api/types/Baddress2.d.mts +2 -1
- package/dist/esm/api/types/Bank.d.mts +2 -0
- package/dist/esm/api/types/BankAccountFunction.d.mts +11 -8
- package/dist/esm/api/types/BankAccountVerificationDetailsResponse.d.mts +31 -0
- package/dist/esm/api/types/BatchDetailResponseRecord.d.mts +58 -0
- package/dist/esm/api/types/BatchDetailResponseSummary.d.mts +13 -0
- package/dist/esm/api/types/BatchNumber.d.mts +8 -3
- package/dist/esm/api/types/BatchSummary.d.mts +0 -10
- package/dist/esm/api/types/Bcity.d.mts +1 -1
- package/dist/esm/api/types/Bcountry.d.mts +3 -1
- package/dist/esm/api/types/BillApprovals.d.mts +1 -1
- package/dist/esm/api/types/BillData.d.mts +1 -74
- package/dist/esm/api/types/BillData.mjs +1 -73
- package/dist/esm/api/types/BillDataPaymentTerms.d.mts +29 -0
- package/dist/esm/api/types/BillDataPaymentTerms.mjs +29 -0
- package/dist/esm/api/types/BillDetailResponse.d.mts +0 -2
- package/dist/esm/api/types/BillId.d.mts +2 -1
- package/dist/esm/api/types/BillItem.d.mts +11 -4
- package/dist/esm/api/types/BillOutData.d.mts +71 -0
- package/dist/esm/api/types/BillOutDataScheduledOptions.d.mts +7 -0
- package/dist/esm/api/types/BillQueryRecord2.d.mts +1 -1
- package/dist/esm/api/types/BillQueryResponse.d.mts +0 -122
- package/dist/esm/api/types/BillResponse.d.mts +16 -0
- package/dist/esm/api/types/BillResponseData.d.mts +58 -0
- package/dist/esm/api/types/BillingDataResponse.d.mts +0 -19
- package/dist/esm/api/types/BillingStateNullable.d.mts +1 -1
- package/dist/esm/api/types/Billstatus.d.mts +1 -2
- package/dist/esm/api/types/BinData.d.mts +0 -30
- package/dist/esm/api/types/Binperson.d.mts +2 -1
- package/dist/esm/api/types/Binphone.d.mts +2 -1
- package/dist/esm/api/types/Binweb.d.mts +2 -1
- package/dist/esm/api/types/BoardingAverageBillSize.d.mts +3 -1
- package/dist/esm/api/types/BoardingAvgMonthlyBill.d.mts +4 -1
- package/dist/esm/api/types/BoardingLinkApiResponse.d.mts +0 -3
- package/dist/esm/api/types/BoardingLinkId.d.mts +4 -1
- package/dist/esm/api/types/BoardingStatus.d.mts +3 -1
- package/dist/esm/api/types/Busstartdate.d.mts +2 -3
- package/dist/esm/api/types/ButtonElement.d.mts +2 -10
- package/dist/esm/api/types/ButtonElement.mjs +1 -9
- package/dist/esm/api/types/ButtonElementSize.d.mts +7 -0
- package/dist/esm/api/types/ButtonElementSize.mjs +7 -0
- package/dist/esm/api/types/CaptureAllOutResponse.d.mts +9 -0
- package/dist/esm/api/types/CaptureAllOutResponseResponseDataItem.d.mts +13 -0
- package/dist/esm/api/types/CaptureRequest.d.mts +4 -0
- package/dist/esm/api/types/CaptureResponse.d.mts +12 -0
- package/dist/esm/api/types/CaptureResponseData.d.mts +14 -0
- package/dist/esm/api/types/CardService.d.mts +1 -1
- package/dist/esm/api/types/Cardcvv.d.mts +3 -1
- package/dist/esm/api/types/Cardnumber.d.mts +2 -1
- package/dist/esm/api/types/Cardzip.d.mts +2 -1
- package/dist/esm/api/types/Cascade.d.mts +2 -1
- package/dist/esm/api/types/Cash.d.mts +8 -1
- package/dist/esm/api/types/Cash.mjs +7 -1
- package/dist/esm/api/types/Category.d.mts +8 -6
- package/dist/esm/api/types/ChangePswUserResponse.d.mts +5 -0
- package/dist/esm/api/types/ChargeBackResponse.d.mts +15 -0
- package/dist/esm/api/types/ChargebackId.d.mts +1 -1
- package/dist/esm/api/types/ChargebackQueryRecords.d.mts +66 -0
- package/dist/esm/api/types/Check.d.mts +8 -1
- package/dist/esm/api/types/Check.mjs +7 -1
- package/dist/esm/api/types/CheckCaptureResponse.d.mts +58 -0
- package/dist/esm/api/types/ConfigureApplePaypointApiResponse.d.mts +1 -1
- package/dist/esm/api/types/ConfigureGooglePaypointApiResponse.d.mts +1 -1
- package/dist/esm/api/types/ContactsResponse.d.mts +0 -9
- package/dist/esm/api/types/CountryNullable.d.mts +2 -1
- package/dist/esm/api/types/CreateApplicationFromPaypointResponse.d.mts +12 -0
- package/dist/esm/api/types/CreateApplicationFromPaypointResponseData.d.mts +6 -0
- package/dist/esm/api/types/CreateGhostCardResponse.d.mts +9 -0
- package/dist/esm/api/types/CreateGhostCardResponseData.d.mts +7 -0
- package/dist/esm/api/types/CustomerNumberNullable.d.mts +2 -1
- package/dist/esm/api/types/CustomerQueryRecords.d.mts +2 -206
- package/dist/esm/api/types/CustomerQueryRecordsCustomerConsent.d.mts +7 -0
- package/dist/esm/api/types/CustomerQueryRecordsCustomerConsentECommunication.d.mts +8 -0
- package/dist/esm/api/types/CustomerQueryRecordsCustomerConsentSms.d.mts +8 -0
- package/dist/esm/api/types/CustomerStatus.d.mts +2 -2
- package/dist/esm/api/types/Customeridtrans.d.mts +3 -1
- package/dist/esm/api/types/CvvResponse.d.mts +2 -1
- package/dist/esm/api/types/CvvResponseText.d.mts +2 -1
- package/dist/esm/api/types/Dbaname.d.mts +2 -1
- package/dist/esm/api/types/DeleteItemResponse.d.mts +5 -0
- package/dist/esm/api/types/DeleteOrganizationResponse.d.mts +7 -0
- package/dist/esm/api/types/DeletePaymentMethodDomainResponse.d.mts +8 -0
- package/dist/esm/api/types/DeletePayoutSubscriptionResponse.d.mts +14 -0
- package/dist/esm/api/types/DeleteUserResponse.d.mts +4 -0
- package/dist/esm/api/types/Descriptor.d.mts +3 -1
- package/dist/esm/api/types/DocumentSection.d.mts +1 -16
- package/dist/esm/api/types/DocumentSectionTermsAndConditions.d.mts +5 -0
- package/dist/esm/api/types/DocumentSectionTermsAndConditionsTcLinksItem.d.mts +4 -0
- package/dist/esm/api/types/DomainName.d.mts +2 -1
- package/dist/esm/api/types/EditBillResponse.d.mts +16 -0
- package/dist/esm/api/types/EditMfaUserResponse.d.mts +5 -0
- package/dist/esm/api/types/EditOrganizationResponse.d.mts +9 -0
- package/dist/esm/api/types/Ein.d.mts +1 -1
- package/dist/esm/api/types/EntityType.d.mts +4 -3
- package/dist/esm/api/types/Entry.d.mts +2 -1
- package/dist/esm/api/types/EntrypageId.d.mts +2 -1
- package/dist/esm/api/types/ExpectedProcessingDateTime.d.mts +1 -1
- package/dist/esm/api/types/ExportFormat.d.mts +6 -3
- package/dist/esm/api/types/ExportFormat.mjs +6 -3
- package/dist/esm/api/types/ExternalPaypointId.d.mts +1 -1
- package/dist/esm/api/types/ExternalProcessorInformation.d.mts +1 -1
- package/dist/esm/api/types/FileContent.d.mts +7 -18
- package/dist/esm/api/types/FileContent.mjs +1 -14
- package/dist/esm/api/types/FileContentFtype.d.mts +12 -0
- package/dist/esm/api/types/FileContentFtype.mjs +12 -0
- package/dist/esm/api/types/FileContentImageOnly.d.mts +10 -0
- package/dist/esm/api/types/Finishtype.d.mts +2 -2
- package/dist/esm/api/types/ForceCustomerCreation.d.mts +3 -1
- package/dist/esm/api/types/Frequency.d.mts +4 -1
- package/dist/esm/api/types/Frequency.mjs +4 -1
- package/dist/esm/api/types/Frequencynotification.d.mts +1 -16
- package/dist/esm/api/types/Frequencynotification.mjs +1 -16
- package/dist/esm/api/types/Gatewayfield.d.mts +1 -1
- package/dist/esm/api/types/GeneralEvents.d.mts +1 -1
- package/dist/esm/api/types/GetBasicEntryByIdResponse.d.mts +8 -0
- package/dist/esm/api/types/GetBasicEntryResponse.d.mts +8 -0
- package/dist/esm/api/types/GetBillResponse.d.mts +12 -0
- package/dist/esm/api/types/GetEntryConfigResponse.d.mts +8 -0
- package/dist/esm/api/types/GetInvoiceRecord.d.mts +54 -0
- package/dist/esm/api/types/GetMethodResponse.d.mts +6 -0
- package/dist/esm/api/types/GetMethodResponseResponseData.d.mts +32 -0
- package/dist/esm/api/types/GetMethodResponseResponseDataCustomersItem.d.mts +41 -0
- package/dist/esm/api/types/GetMethodResponseResponseDataVendorsItem.d.mts +93 -0
- package/dist/esm/api/types/GetPaidResponseData.d.mts +16 -0
- package/dist/esm/api/types/GetPayLinkFromIdResponse.d.mts +4 -0
- package/dist/esm/api/types/GetPayLinkFromIdResponseResponseData.d.mts +2 -0
- package/dist/esm/api/types/GetPayoutSubscriptionResponse.d.mts +10 -0
- package/dist/esm/api/types/GooglePayData.d.mts +5 -2
- package/dist/esm/api/types/GooglePayMetadata.d.mts +10 -3
- package/dist/esm/api/types/GooglePayPaypointRegistrationData.d.mts +1 -1
- package/dist/esm/api/types/GreaterValueAllowed.d.mts +2 -1
- package/dist/esm/api/types/HasVcardTransactions.d.mts +3 -0
- package/dist/esm/api/types/Highticketamt.d.mts +1 -1
- package/dist/esm/api/types/Holdername.d.mts +1 -1
- package/dist/esm/api/types/IdempotencyKey.d.mts +5 -1
- package/dist/esm/api/types/Identifierfields.d.mts +1 -1
- package/dist/esm/api/types/Idpaypoint.d.mts +1 -1
- package/dist/esm/api/types/Initiator.d.mts +1 -7
- package/dist/esm/api/types/InternalReferenceId.d.mts +1 -1
- package/dist/esm/api/types/InvoiceAmount.d.mts +1 -1
- package/dist/esm/api/types/InvoiceDataRequest.d.mts +9 -0
- package/dist/esm/api/types/InvoiceNumber.d.mts +1 -1
- package/dist/esm/api/types/InvoiceNumberResponse.d.mts +10 -0
- package/dist/esm/api/types/InvoiceResponseWithoutData.d.mts +13 -0
- package/dist/esm/api/types/InvoiceType.d.mts +2 -1
- package/dist/esm/api/types/Invoicestatus.d.mts +1 -9
- package/dist/esm/api/types/IpAddress.d.mts +1 -1
- package/dist/esm/api/types/IsSameDayAch.d.mts +1 -2
- package/dist/esm/api/types/IsSuccess.d.mts +2 -1
- package/dist/esm/api/types/JobStatus.d.mts +7 -7
- package/dist/esm/api/types/JobStatus.mjs +6 -1
- package/dist/esm/api/types/Language.d.mts +1 -3
- package/dist/esm/api/types/LineItem.d.mts +1 -1
- package/dist/esm/api/types/LineItemQueryRecord.d.mts +1 -1
- package/dist/esm/api/types/LinkData.d.mts +13 -12
- package/dist/esm/api/types/ListOrganizationsResponse.d.mts +5 -0
- package/dist/esm/api/types/ListPaymentMethodDomainsResponse.d.mts +5 -0
- package/dist/esm/api/types/LogoutUserResponse.d.mts +5 -0
- package/dist/esm/api/types/Maskedaccount.d.mts +2 -1
- package/dist/esm/api/types/MaxTicket.d.mts +2 -1
- package/dist/esm/api/types/Mcc.d.mts +3 -1
- package/dist/esm/api/types/MethodElement.d.mts +1 -88
- package/dist/esm/api/types/MethodElement.mjs +1 -73
- package/dist/esm/api/types/MethodElementOut.d.mts +21 -0
- package/dist/esm/api/types/MethodElementSettings.d.mts +7 -0
- package/dist/esm/api/types/MethodElementSettingsApplePay.d.mts +9 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayButtonStyle.d.mts +11 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayButtonStyle.mjs +11 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayButtonType.d.mts +21 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayButtonType.mjs +21 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayLanguage.d.mts +47 -0
- package/dist/esm/api/types/MethodElementSettingsApplePayLanguage.mjs +47 -0
- package/dist/esm/api/types/MethodQueryRecords.d.mts +27 -11
- package/dist/esm/api/types/MethodReferenceId.d.mts +3 -1
- package/dist/esm/api/types/MfaValidationCode.d.mts +2 -1
- package/dist/esm/api/types/MigratePaypointResponse.d.mts +6 -0
- package/dist/esm/api/types/MinTicket.d.mts +2 -1
- package/dist/esm/api/types/ModifyApprovalBillResponse.d.mts +11 -0
- package/dist/esm/api/types/NetAmountstring.d.mts +1 -1
- package/dist/esm/api/types/NotificationContent.d.mts +3 -105
- package/dist/esm/api/types/NotificationContent.mjs +1 -100
- package/dist/esm/api/types/NotificationContentEventType.d.mts +83 -0
- package/dist/esm/api/types/NotificationContentEventType.mjs +83 -0
- package/dist/esm/api/types/NotificationContentFileFormat.d.mts +10 -0
- package/dist/esm/api/types/NotificationContentFileFormat.mjs +10 -0
- package/dist/esm/api/types/NotificationContentReportName.d.mts +12 -0
- package/dist/esm/api/types/NotificationContentReportName.mjs +12 -0
- package/dist/esm/api/types/NotificationId.d.mts +2 -1
- package/dist/esm/api/types/NotificationLogDetail.d.mts +6 -0
- package/dist/esm/api/types/NotificationReportRequest.d.mts +4 -57
- package/dist/esm/api/types/NotificationReportRequest.mjs +1 -34
- package/dist/esm/api/types/NotificationReportRequestContent.d.mts +23 -0
- package/dist/esm/api/types/NotificationReportRequestContent.mjs +8 -0
- package/dist/esm/api/types/NotificationReportRequestContentFileFormat.d.mts +7 -0
- package/dist/esm/api/types/NotificationReportRequestContentFileFormat.mjs +7 -0
- package/dist/esm/api/types/NotificationReportRequestContentReportName.d.mts +8 -0
- package/dist/esm/api/types/NotificationReportRequestContentReportName.mjs +8 -0
- package/dist/esm/api/types/NotificationReportRequestFrequency.d.mts +11 -0
- package/dist/esm/api/types/NotificationReportRequestFrequency.mjs +11 -0
- package/dist/esm/api/types/NotificationReportRequestMethod.d.mts +13 -0
- package/dist/esm/api/types/NotificationReportRequestMethod.mjs +13 -0
- package/dist/esm/api/types/NotificationRequest.d.mts +7 -0
- package/dist/esm/api/types/NotificationStandardRequest.d.mts +5 -162
- package/dist/esm/api/types/NotificationStandardRequest.mjs +1 -145
- package/dist/esm/api/types/NotificationStandardRequestContent.d.mts +11 -0
- package/dist/esm/api/types/NotificationStandardRequestContentEventType.d.mts +131 -0
- package/dist/esm/api/types/NotificationStandardRequestContentEventType.mjs +131 -0
- package/dist/esm/api/types/NotificationStandardRequestFrequency.d.mts +5 -0
- package/dist/esm/api/types/NotificationStandardRequestFrequency.mjs +5 -0
- package/dist/esm/api/types/NotificationStandardRequestMethod.d.mts +15 -0
- package/dist/esm/api/types/NotificationStandardRequestMethod.mjs +15 -0
- package/dist/esm/api/types/OcrResponseData.d.mts +4 -0
- package/dist/esm/api/types/OcrResultData.d.mts +20 -0
- package/dist/esm/api/types/OcrVendor.d.mts +34 -0
- package/dist/esm/api/types/OdpSetup.d.mts +2 -9
- package/dist/esm/api/types/OdpSetup.mjs +1 -8
- package/dist/esm/api/types/OdpSetupProcessingRegion.d.mts +6 -0
- package/dist/esm/api/types/OdpSetupProcessingRegion.mjs +6 -0
- package/dist/esm/api/types/OnCreate.d.mts +5 -1
- package/dist/esm/api/types/OptinStatus.d.mts +4 -7
- package/dist/esm/api/types/OrgData.d.mts +0 -2
- package/dist/esm/api/types/OrganizationQueryRecord.d.mts +1 -16
- package/dist/esm/api/types/OrganizationQueryRecordServicesItem.d.mts +10 -0
- package/dist/esm/api/types/Orgentryname.d.mts +2 -1
- package/dist/esm/api/types/Orgidstring.d.mts +3 -1
- package/dist/esm/api/types/OwnerEntityId.d.mts +3 -1
- package/dist/esm/api/types/OwnerEntityType.d.mts +4 -3
- package/dist/esm/api/types/Ownerid.d.mts +4 -2
- package/dist/esm/api/types/Ownertype.d.mts +2 -2
- package/dist/esm/api/types/PayMethodAch.d.mts +20 -0
- package/dist/esm/api/types/PayMethodAch.mjs +7 -0
- package/dist/esm/api/types/PayMethodCloud.d.mts +8 -1
- package/dist/esm/api/types/PayMethodCloud.mjs +7 -1
- package/dist/esm/api/types/PayMethodCredit.d.mts +8 -1
- package/dist/esm/api/types/PayMethodCredit.mjs +7 -1
- package/dist/esm/api/types/PayMethodStoredMethod.d.mts +2 -10
- package/dist/esm/api/types/PayMethodStoredMethod.mjs +1 -8
- package/dist/esm/api/types/PayMethodStoredMethodMethod.d.mts +11 -0
- package/dist/esm/api/types/PayMethodStoredMethodMethod.mjs +11 -0
- package/dist/esm/api/types/PayabliApiResponse0.d.mts +1 -13
- package/dist/esm/api/types/PayabliApiResponse0000.d.mts +1 -13
- package/dist/esm/api/types/PayabliApiResponse0ResponseData.d.mts +11 -0
- package/dist/esm/api/types/PayabliApiResponse6.d.mts +1 -1
- package/dist/esm/api/types/PayabliApiResponseGeneric2Part.d.mts +4 -0
- package/dist/esm/api/types/PayabliApiResponseGetPaid.d.mts +10 -0
- package/dist/esm/api/types/PayabliApiResponseImport.d.mts +1 -14
- package/dist/esm/api/types/PayabliApiResponseImportResponseData.d.mts +11 -0
- package/dist/esm/api/types/PayabliApiResponseNotifications.d.mts +1 -9
- package/dist/esm/api/types/PayabliApiResponseNotificationsResponseData.d.mts +5 -0
- package/dist/esm/api/types/PayabliApiResponseOcr.d.mts +8 -0
- package/dist/esm/api/types/PayabliApiResponsePaymentLinks.d.mts +7 -0
- package/dist/esm/api/types/PayabliApiResponsePaymethodDelete.d.mts +1 -9
- package/dist/esm/api/types/PayabliApiResponsePaymethodDeleteResponseData.d.mts +7 -0
- package/dist/esm/api/types/PayabliCredentialsPascal.d.mts +1 -1
- package/dist/esm/api/types/PayabliErrorBody.d.mts +28 -0
- package/dist/esm/api/types/PayabliPages.d.mts +6 -6
- package/dist/esm/api/types/PaymentIdString.d.mts +2 -1
- package/dist/esm/api/types/PaymentMethod.d.mts +1 -10
- package/dist/esm/api/types/PaymentPageRequestBodyOut.d.mts +26 -0
- package/dist/esm/api/types/PayorId.d.mts +2 -1
- package/dist/esm/api/types/PayoutAverageMonthlyVolume.d.mts +4 -1
- package/dist/esm/api/types/PayoutAverageTicketLimit.d.mts +3 -1
- package/dist/esm/api/types/PayoutCreditLimit.d.mts +3 -1
- package/dist/esm/api/types/PayoutHighTicketAmount.d.mts +3 -1
- package/dist/esm/api/types/PayoutScheduleDetail.d.mts +9 -0
- package/dist/esm/api/types/PayoutSubscriptionQueryRecord.d.mts +57 -0
- package/dist/esm/api/types/PayoutSubscriptionQueryRecordPascal.d.mts +57 -0
- package/dist/esm/api/types/PaypointData.d.mts +21 -21
- package/dist/esm/api/types/Paypointstatus.d.mts +2 -3
- package/dist/esm/api/types/PciAttestation.d.mts +2 -1
- package/dist/esm/api/types/PendingFeeAmount.d.mts +9 -3
- package/dist/esm/api/types/PolicyId.d.mts +3 -1
- package/dist/esm/api/types/PushPayLinkRequest.d.mts +2 -10
- package/dist/esm/api/types/PushPayLinkRequestEmail.d.mts +10 -0
- package/dist/esm/api/types/PushPayLinkRequestSms.d.mts +1 -0
- package/dist/esm/api/types/QueryBatchesDetailResponse.d.mts +8 -0
- package/dist/esm/api/types/QueryBatchesOutResponse.d.mts +1 -59
- package/dist/esm/api/types/QueryBatchesOutResponseRecordsItem.d.mts +54 -0
- package/dist/esm/api/types/QueryBatchesResponse.d.mts +8 -0
- package/dist/esm/api/types/QueryBatchesResponseRecordsItem.d.mts +52 -0
- package/dist/esm/api/types/QueryBoardingLinksResponse.d.mts +1 -22
- package/dist/esm/api/types/QueryBoardingLinksResponseRecordsItem.d.mts +14 -0
- package/dist/esm/api/types/QueryChargebacksResponse.d.mts +1 -62
- package/dist/esm/api/types/QueryChargebacksResponseRecordsItem.d.mts +57 -0
- package/dist/esm/api/types/QueryDeviceResponse.d.mts +8 -0
- package/dist/esm/api/types/QueryEntrypointResponse.d.mts +1 -64
- package/dist/esm/api/types/QueryEntrypointResponseRecordsItem.d.mts +59 -0
- package/dist/esm/api/types/QueryInvoiceResponse.d.mts +5 -0
- package/dist/esm/api/types/QueryInvoiceResponseRecordsItem.d.mts +72 -0
- package/dist/esm/api/types/QueryPayoutSubscriptionResponse.d.mts +8 -0
- package/dist/esm/api/types/QueryPayoutTransaction.d.mts +2 -182
- package/dist/esm/api/types/QueryPayoutTransactionRecordsItem.d.mts +58 -0
- package/dist/esm/api/types/QueryPayoutTransactionRecordsItemPaymentData.d.mts +23 -0
- package/dist/esm/api/types/QueryPayoutTransactionSummary.d.mts +25 -0
- package/dist/esm/api/types/QueryResponseData.d.mts +0 -34
- package/dist/esm/api/types/QueryResponseItems.d.mts +1 -16
- package/dist/esm/api/types/QueryResponseItemsRecordsItem.d.mts +11 -0
- package/dist/esm/api/types/QueryResponseNotificationReports.d.mts +1 -15
- package/dist/esm/api/types/QueryResponseNotificationReportsRecordsItem.d.mts +10 -0
- package/dist/esm/api/types/QueryResponseNotifications.d.mts +1 -25
- package/dist/esm/api/types/QueryResponseNotificationsRecordsItem.d.mts +20 -0
- package/dist/esm/api/types/QueryResponseSettlements.d.mts +2 -220
- package/dist/esm/api/types/QueryResponseSettlementsRecordsItem.d.mts +57 -0
- package/dist/esm/api/types/QueryResponseSettlementsSummary.d.mts +22 -0
- package/dist/esm/api/types/QueryResponseTransactions.d.mts +0 -74
- package/dist/esm/api/types/QueryTransactionEvents.d.mts +2 -7
- package/dist/esm/api/types/QueryTransactionEventsEventData.d.mts +5 -0
- package/dist/esm/api/types/QueryTransferDetailResponse.d.mts +7 -0
- package/dist/esm/api/types/QueryTransferSummary.d.mts +48 -0
- package/dist/esm/api/types/ReceiptResponse.d.mts +9 -0
- package/dist/esm/api/types/RecipientEmailNotification.d.mts +4 -1
- package/dist/esm/api/types/RefundResponse.d.mts +7 -0
- package/dist/esm/api/types/RefundWithInstructionsResponse.d.mts +7 -0
- package/dist/esm/api/types/ReissuePaymentMethod.d.mts +20 -0
- package/dist/esm/api/types/ReissuePayoutResponse.d.mts +7 -0
- package/dist/esm/api/types/ReissuePayoutResponseData.d.mts +8 -0
- package/dist/esm/api/types/RemitEmail.d.mts +2 -1
- package/dist/esm/api/types/Remitaddress1.d.mts +2 -1
- package/dist/esm/api/types/Remitaddress2.d.mts +2 -1
- package/dist/esm/api/types/Remitcity.d.mts +2 -1
- package/dist/esm/api/types/Remitcountry.d.mts +2 -1
- package/dist/esm/api/types/Remitstate.d.mts +3 -1
- package/dist/esm/api/types/Remitzip.d.mts +3 -1
- package/dist/esm/api/types/RemoveDeviceResponse.d.mts +9 -0
- package/dist/esm/api/types/RemoveSubscriptionResponse.d.mts +14 -0
- package/dist/esm/api/types/RepCode.d.mts +2 -1
- package/dist/esm/api/types/RepName.d.mts +2 -1
- package/dist/esm/api/types/RepOffice.d.mts +3 -1
- package/dist/esm/api/types/ReplyToEmail.d.mts +3 -1
- package/dist/esm/api/types/RequestCreditPaymentMethod.d.mts +21 -0
- package/dist/esm/api/types/RequestCreditPaymentMethod.mjs +8 -0
- package/dist/esm/api/types/RequestOutAuthorizeInvoiceData.d.mts +18 -0
- package/dist/esm/api/types/RequestOutAuthorizePaymentDetails.d.mts +15 -0
- package/dist/esm/api/types/RequestOutAuthorizeVendorBillingData.d.mts +11 -0
- package/dist/esm/api/types/RequestOutAuthorizeVendorData.d.mts +38 -0
- package/dist/esm/api/types/RequestPaymentValidatePaymentMethod.d.mts +11 -0
- package/dist/esm/api/types/RequestPaymentValidatePaymentMethodMethod.d.mts +6 -0
- package/dist/esm/api/types/RequestPaymentValidatePaymentMethodMethod.mjs +6 -0
- package/dist/esm/api/types/RequestSchedulePaymentMethod.d.mts +5 -0
- package/dist/esm/api/types/RequestSchedulePaymentMethodInitiator.d.mts +10 -0
- package/dist/esm/api/types/RequestTokenStorage.d.mts +19 -0
- package/dist/esm/api/types/RequestTokenStoragePaymentMethod.d.mts +5 -0
- package/dist/esm/api/types/ResponseDataRefunds.d.mts +16 -0
- package/dist/esm/api/types/Responsecode.d.mts +2 -1
- package/dist/esm/api/types/ResultCode.d.mts +3 -3
- package/dist/esm/api/types/ResultCodeText.d.mts +3 -1
- package/dist/esm/api/types/ResultCodev2.d.mts +3 -1
- package/dist/esm/api/types/Resulttext.d.mts +3 -1
- package/dist/esm/api/types/Resumable.d.mts +3 -1
- package/dist/esm/api/types/RetrievalId.d.mts +1 -1
- package/dist/esm/api/types/ReverseResponse.d.mts +9 -0
- package/dist/esm/api/types/RiskAction.d.mts +1 -1
- package/dist/esm/api/types/RiskActionCode.d.mts +1 -1
- package/dist/esm/api/types/RiskFlagged.d.mts +1 -1
- package/dist/esm/api/types/RiskFlaggedOn.d.mts +1 -1
- package/dist/esm/api/types/RiskReason.d.mts +1 -1
- package/dist/esm/api/types/RiskStatus.d.mts +1 -1
- package/dist/esm/api/types/SaveIfSuccess.d.mts +3 -1
- package/dist/esm/api/types/ScheduleDetail.d.mts +15 -3
- package/dist/esm/api/types/SendInvoiceResponse.d.mts +5 -0
- package/dist/esm/api/types/Sequence.d.mts +11 -4
- package/dist/esm/api/types/SetApprovedBillResponse.d.mts +11 -0
- package/dist/esm/api/types/SettlementStatus.d.mts +3 -1
- package/dist/esm/api/types/SettlementStatusPayout.d.mts +3 -1
- package/dist/esm/api/types/Shippingzip.d.mts +3 -1
- package/dist/esm/api/types/SignDate.d.mts +1 -1
- package/dist/esm/api/types/SignerAcceptance.d.mts +2 -1
- package/dist/esm/api/types/SignerAddress1.d.mts +2 -1
- package/dist/esm/api/types/SignerCountry.d.mts +2 -1
- package/dist/esm/api/types/SignerData.d.mts +0 -24
- package/dist/esm/api/types/SignerZip.d.mts +1 -1
- package/dist/esm/api/types/Signeraddress.d.mts +2 -1
- package/dist/esm/api/types/SplitCount.d.mts +2 -1
- package/dist/esm/api/types/StatBasicExtendedQueryRecord.d.mts +76 -0
- package/dist/esm/api/types/Statusnotification.d.mts +3 -2
- package/dist/esm/api/types/StoredMethodUsageType.d.mts +13 -5
- package/dist/esm/api/types/Storedmethodid.d.mts +3 -1
- package/dist/esm/api/types/Subdomain.d.mts +2 -1
- package/dist/esm/api/types/SubscriptionQueryRecords.d.mts +2 -1
- package/dist/esm/api/types/SubscriptionType.d.mts +11 -0
- package/dist/esm/api/types/SubscriptionType.mjs +11 -0
- package/dist/esm/api/types/Target.d.mts +6 -3
- package/dist/esm/api/types/Taxfillname.d.mts +2 -1
- package/dist/esm/api/types/Terms.d.mts +68 -46
- package/dist/esm/api/types/Terms.mjs +69 -1
- package/dist/esm/api/types/Ticketamt.d.mts +3 -1
- package/dist/esm/api/types/TokenizeAch.d.mts +13 -0
- package/dist/esm/api/types/TokenizeCard.d.mts +10 -0
- package/dist/esm/api/types/TransRequestBody.d.mts +19 -0
- package/dist/esm/api/types/TransStatus.d.mts +3 -1
- package/dist/esm/api/types/TransactionDetailCustomer.d.mts +28 -0
- package/dist/esm/api/types/TransactionDetailInvoiceData.d.mts +38 -0
- package/dist/esm/api/types/TransactionDetailPaymentData.d.mts +19 -0
- package/dist/esm/api/types/TransactionDetailPaymentDetails.d.mts +22 -0
- package/dist/esm/api/types/TransactionDetailRecord.d.mts +58 -0
- package/dist/esm/api/types/TransactionDetailResponseData.d.mts +24 -0
- package/dist/esm/api/types/Transfer.d.mts +0 -45
- package/dist/esm/api/types/TransferDetailRecord.d.mts +114 -0
- package/dist/esm/api/types/TransferOutDetailBill.d.mts +36 -0
- package/dist/esm/api/types/TransferOutDetailBill.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailBillAttachment.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailCheckData.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailEvent.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailPaymentData.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailQueryResponse.d.mts +10 -0
- package/dist/esm/api/types/TransferOutDetailQueryResponse.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailRecord.d.mts +132 -0
- package/dist/esm/api/types/TransferOutDetailRecord.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailVendor.d.mts +96 -0
- package/dist/esm/api/types/TransferOutDetailVendor.mjs +2 -0
- package/dist/esm/api/types/TransferOutDetailVendorBillingData.mjs +2 -0
- package/dist/esm/api/types/TransferOutEventData.mjs +2 -0
- package/dist/esm/api/types/TransferOutMessage.d.mts +22 -0
- package/dist/esm/api/types/TransferOutMessage.mjs +2 -0
- package/dist/esm/api/types/TransferOutMessageProperties.mjs +2 -0
- package/dist/esm/api/types/TransferOutQueryResponse.d.mts +10 -0
- package/dist/esm/api/types/TransferOutQueryResponse.mjs +2 -0
- package/dist/esm/api/types/TransferOutRecord.d.mts +74 -0
- package/dist/esm/api/types/TransferOutRecord.mjs +2 -0
- package/dist/esm/api/types/TransferOutSummary.mjs +2 -0
- package/dist/esm/api/types/TransferQueryResponse.d.mts +0 -52
- package/dist/esm/api/types/TransferSummary.d.mts +0 -8
- package/dist/esm/api/types/TypeResult.mjs +2 -0
- package/dist/esm/api/types/UnderWritingMethod.d.mts +8 -3
- package/dist/esm/api/types/UnderWritingMethod.mjs +8 -3
- package/dist/esm/api/types/UpdateNotificationRequest.d.mts +2 -0
- package/dist/esm/api/types/UpdateNotificationRequest.mjs +2 -0
- package/dist/esm/api/types/UpdatePaymentMethodDomainRequestWallet.d.mts +4 -0
- package/dist/esm/api/types/UpdatePaymentMethodDomainRequestWallet.mjs +2 -0
- package/dist/esm/api/types/UpdatePayoutSubscriptionResponse.d.mts +15 -0
- package/dist/esm/api/types/UpdatePayoutSubscriptionResponse.mjs +2 -0
- package/dist/esm/api/types/UpdateSubscriptionResponse.d.mts +15 -0
- package/dist/esm/api/types/UpdateSubscriptionResponse.mjs +2 -0
- package/dist/esm/api/types/UsrStatus.d.mts +5 -4
- package/dist/esm/api/types/V2BadRequestError.d.mts +22 -0
- package/dist/esm/api/types/V2BadRequestError.mjs +2 -0
- package/dist/esm/api/types/V2BadRequestErrorDetail.mjs +2 -0
- package/dist/esm/api/types/V2DeclinedTransactionResponseWrapper.d.mts +13 -0
- package/dist/esm/api/types/V2DeclinedTransactionResponseWrapper.mjs +2 -0
- package/dist/esm/api/types/V2InternalServerError.d.mts +13 -0
- package/dist/esm/api/types/V2InternalServerError.mjs +2 -0
- package/dist/esm/api/types/V2ResponseAction.mjs +2 -0
- package/dist/esm/api/types/V2ResponseCode.mjs +2 -0
- package/dist/esm/api/types/V2ResponseExplanation.mjs +2 -0
- package/dist/esm/api/types/V2ResponseReason.mjs +2 -0
- package/dist/esm/api/types/V2TransactionDetailResponseData.d.mts +25 -0
- package/dist/esm/api/types/V2TransactionDetailResponseData.mjs +2 -0
- package/dist/esm/api/types/V2TransactionDetails.d.mts +70 -0
- package/dist/esm/api/types/V2TransactionDetails.mjs +2 -0
- package/dist/esm/api/types/V2TransactionResponseWrapper.d.mts +13 -0
- package/dist/esm/api/types/V2TransactionResponseWrapper.mjs +2 -0
- package/dist/esm/api/types/VCardCardType.d.mts +3 -2
- package/dist/esm/api/types/VCardGetResponse.d.mts +56 -0
- package/dist/esm/api/types/VCardGetResponse.mjs +2 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendor.d.mts +85 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendor.mjs +2 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendorBillingData.d.mts +33 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendorBillingData.mjs +2 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendorSummary.d.mts +37 -0
- package/dist/esm/api/types/VCardGetResponseAssociatedVendorSummary.mjs +2 -0
- package/dist/esm/api/types/VCardGetResponseContact.d.mts +13 -0
- package/dist/esm/api/types/VCardGetResponseContact.mjs +2 -0
- package/dist/esm/api/types/VCardRecord.d.mts +0 -42
- package/dist/esm/api/types/VCardTransactionQueryResponse.d.mts +8 -0
- package/dist/esm/api/types/VCardTransactionQueryResponse.mjs +2 -0
- package/dist/esm/api/types/VCardTransactionRecord.d.mts +55 -0
- package/dist/esm/api/types/VCardTransactionRecord.mjs +2 -0
- package/dist/esm/api/types/ValidateResponse.d.mts +9 -0
- package/dist/esm/api/types/ValidateResponse.mjs +2 -0
- package/dist/esm/api/types/ValidateResponseData.d.mts +14 -0
- package/dist/esm/api/types/ValidateResponseData.mjs +2 -0
- package/dist/esm/api/types/VendorCheckNumber.d.mts +5 -1
- package/dist/esm/api/types/VendorData.d.mts +0 -1
- package/dist/esm/api/types/VendorDataRequest.mjs +2 -0
- package/dist/esm/api/types/VendorDataResponse.d.mts +1 -99
- package/dist/esm/api/types/VendorDataResponse.mjs +1 -10
- package/dist/esm/api/types/VendorDataResponsePaymentMethod.d.mts +8 -0
- package/dist/esm/api/types/VendorDataResponsePaymentMethod.mjs +8 -0
- package/dist/esm/api/types/VendorEin.d.mts +2 -1
- package/dist/esm/api/types/VendorEnrichResponse.d.mts +12 -0
- package/dist/esm/api/types/VendorEnrichResponse.mjs +2 -0
- package/dist/esm/api/types/VendorEnrichResponseData.d.mts +16 -0
- package/dist/esm/api/types/VendorEnrichResponseData.mjs +2 -0
- package/dist/esm/api/types/VendorEnrichmentData.d.mts +10 -0
- package/dist/esm/api/types/VendorEnrichmentData.mjs +2 -0
- package/dist/esm/api/types/VendorEnrichmentInvoiceScan.mjs +2 -0
- package/dist/esm/api/types/VendorEnrichmentWebSearch.mjs +2 -0
- package/dist/esm/api/types/VendorName1.d.mts +1 -1
- package/dist/esm/api/types/VendorName2.d.mts +2 -1
- package/dist/esm/api/types/VendorNumber.d.mts +2 -1
- package/dist/esm/api/types/VendorPaymentMethodString.d.mts +5 -4
- package/dist/esm/api/types/VendorPhone.d.mts +2 -1
- package/dist/esm/api/types/VendorQueryRecord.d.mts +0 -89
- package/dist/esm/api/types/VendorResponseStoredMethod.d.mts +3 -0
- package/dist/esm/api/types/VendorSummary.d.mts +0 -21
- package/dist/esm/api/types/Vendorstatus.d.mts +4 -7
- package/dist/esm/api/types/VerifyAccountDetailsResponse.d.mts +9 -0
- package/dist/esm/api/types/VerifyAccountDetailsResponse.mjs +2 -0
- package/dist/esm/api/types/VoidResponse.d.mts +12 -0
- package/dist/esm/api/types/VoidResponse.mjs +2 -0
- package/dist/esm/api/types/VoidResponseData.d.mts +14 -0
- package/dist/esm/api/types/VoidResponseData.mjs +2 -0
- package/dist/esm/api/types/WalletCascade.d.mts +2 -1
- package/dist/esm/api/types/WebHeaderParameter.mjs +2 -0
- package/dist/esm/api/types/Website.d.mts +3 -1
- package/dist/esm/api/types/Whencharged.d.mts +1 -1
- package/dist/esm/api/types/Whencharged.mjs +1 -1
- package/dist/esm/api/types/Whenprovided.d.mts +0 -1
- package/dist/esm/api/types/Whenprovided.mjs +0 -1
- package/dist/esm/api/types/index.d.mts +270 -10
- package/dist/esm/api/types/index.mjs +270 -10
- package/dist/esm/auth/HeaderAuthProvider.d.mts +2 -2
- package/dist/esm/auth/HeaderAuthProvider.mjs +1 -1
- package/dist/esm/core/auth/AuthProvider.d.mts +1 -0
- package/dist/esm/core/auth/AuthProvider.mjs +6 -1
- package/dist/esm/core/auth/index.d.mts +1 -1
- package/dist/esm/core/auth/index.mjs +1 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +6 -0
- package/dist/esm/core/fetcher/Fetcher.mjs +9 -8
- package/dist/esm/core/fetcher/requestWithRetries.mjs +4 -1
- package/dist/esm/core/url/QueryStringBuilder.d.mts +47 -0
- package/dist/esm/core/url/QueryStringBuilder.mjs +80 -0
- package/dist/esm/core/url/index.d.mts +1 -0
- package/dist/esm/core/url/index.mjs +1 -0
- package/dist/esm/core/url/qs.d.mts +2 -1
- package/dist/esm/core/url/qs.mjs +24 -12
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +166 -166
- package/reference.md +3855 -3814
- package/dist/cjs/api/errors/ConflictError.d.ts +0 -6
- package/dist/cjs/api/errors/ConflictError.js +0 -54
- package/dist/cjs/api/resources/bill/types/BillOutData.d.ts +0 -40
- package/dist/cjs/api/resources/bill/types/BillOutDataScheduledOptions.d.ts +0 -4
- package/dist/cjs/api/resources/bill/types/BillResponse.d.ts +0 -10
- package/dist/cjs/api/resources/bill/types/BillResponseData.d.ts +0 -58
- package/dist/cjs/api/resources/bill/types/EditBillResponse.d.ts +0 -10
- package/dist/cjs/api/resources/bill/types/GetBillResponse.d.ts +0 -12
- package/dist/cjs/api/resources/bill/types/ModifyApprovalBillResponse.d.ts +0 -5
- package/dist/cjs/api/resources/bill/types/SetApprovedBillResponse.d.ts +0 -5
- package/dist/cjs/api/resources/bill/types/index.d.ts +0 -8
- package/dist/cjs/api/resources/bill/types/index.js +0 -24
- package/dist/cjs/api/resources/boarding/types/AddApplicationRequest.d.ts +0 -14
- package/dist/cjs/api/resources/boarding/types/CreateApplicationFromPaypointRequest.d.ts +0 -15
- package/dist/cjs/api/resources/boarding/types/CreateApplicationFromPaypointResponse.d.ts +0 -20
- package/dist/cjs/api/resources/boarding/types/index.d.ts +0 -3
- package/dist/cjs/api/resources/boarding/types/index.js +0 -19
- package/dist/cjs/api/resources/chargeBacks/types/AddResponseResponse.d.ts +0 -5
- package/dist/cjs/api/resources/chargeBacks/types/ChargeBackResponse.d.ts +0 -15
- package/dist/cjs/api/resources/chargeBacks/types/ChargebackQueryRecords.d.ts +0 -66
- package/dist/cjs/api/resources/chargeBacks/types/index.d.ts +0 -4
- package/dist/cjs/api/resources/chargeBacks/types/index.js +0 -20
- package/dist/cjs/api/resources/checkCapture/types/CheckCaptureRequest.d.ts +0 -13
- package/dist/cjs/api/resources/checkCapture/types/CheckCaptureResponse.d.ts +0 -58
- package/dist/cjs/api/resources/checkCapture/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/checkCapture/types/index.js +0 -18
- package/dist/cjs/api/resources/cloud/types/AddDeviceResponse.d.ts +0 -9
- package/dist/cjs/api/resources/cloud/types/RemoveDeviceResponse.d.ts +0 -9
- package/dist/cjs/api/resources/cloud/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/cloud/types/index.js +0 -18
- package/dist/cjs/api/resources/export/types/index.d.ts +0 -1
- package/dist/cjs/api/resources/export/types/index.js +0 -17
- package/dist/cjs/api/resources/ghostCard/types/CreateGhostCardResponse.d.ts +0 -17
- package/dist/cjs/api/resources/ghostCard/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/ghostCard/types/index.js +0 -18
- package/dist/cjs/api/resources/invoice/types/GetInvoiceRecord.d.ts +0 -54
- package/dist/cjs/api/resources/invoice/types/InvoiceDataRequest.d.ts +0 -9
- package/dist/cjs/api/resources/invoice/types/InvoiceNumberResponse.d.ts +0 -10
- package/dist/cjs/api/resources/invoice/types/InvoiceResponseWithoutData.d.ts +0 -13
- package/dist/cjs/api/resources/invoice/types/QueryInvoiceResponse.d.ts +0 -81
- package/dist/cjs/api/resources/invoice/types/SendInvoiceResponse.d.ts +0 -5
- package/dist/cjs/api/resources/invoice/types/index.d.ts +0 -8
- package/dist/cjs/api/resources/invoice/types/index.js +0 -24
- package/dist/cjs/api/resources/lineItem/types/DeleteItemResponse.d.ts +0 -5
- package/dist/cjs/api/resources/lineItem/types/index.d.ts +0 -1
- package/dist/cjs/api/resources/lineItem/types/index.js +0 -17
- package/dist/cjs/api/resources/management/types/BankAccountVerificationDetailsResponse.d.ts +0 -31
- package/dist/cjs/api/resources/management/types/VerifyAccountDetailsResponse.d.ts +0 -9
- package/dist/cjs/api/resources/management/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/management/types/index.js +0 -18
- package/dist/cjs/api/resources/moneyIn/errors/CaptureError.d.ts +0 -6
- package/dist/cjs/api/resources/moneyIn/errors/CaptureError.js +0 -54
- package/dist/cjs/api/resources/moneyIn/errors/InvalidTransStatusError.d.ts +0 -6
- package/dist/cjs/api/resources/moneyIn/errors/InvalidTransStatusError.js +0 -54
- package/dist/cjs/api/resources/moneyIn/errors/index.d.ts +0 -2
- package/dist/cjs/api/resources/moneyIn/errors/index.js +0 -18
- package/dist/cjs/api/resources/moneyIn/types/AuthResponse.d.ts +0 -10
- package/dist/cjs/api/resources/moneyIn/types/AuthResponseResponseData.d.ts +0 -11
- package/dist/cjs/api/resources/moneyIn/types/CaptureRequest.d.ts +0 -4
- package/dist/cjs/api/resources/moneyIn/types/CaptureResponse.d.ts +0 -31
- package/dist/cjs/api/resources/moneyIn/types/CaptureResponseData.d.ts +0 -14
- package/dist/cjs/api/resources/moneyIn/types/GetPaidResponseData.d.ts +0 -16
- package/dist/cjs/api/resources/moneyIn/types/InvalidTransStatusErrorType.d.ts +0 -4
- package/dist/cjs/api/resources/moneyIn/types/PayabliApiResponseGetPaid.d.ts +0 -10
- package/dist/cjs/api/resources/moneyIn/types/ReceiptResponse.d.ts +0 -9
- package/dist/cjs/api/resources/moneyIn/types/RefundResponse.d.ts +0 -7
- package/dist/cjs/api/resources/moneyIn/types/RefundWithInstructionsResponse.d.ts +0 -7
- package/dist/cjs/api/resources/moneyIn/types/ResponseDataRefunds.d.ts +0 -16
- package/dist/cjs/api/resources/moneyIn/types/ReverseResponse.d.ts +0 -9
- package/dist/cjs/api/resources/moneyIn/types/TransRequestBody.d.ts +0 -84
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailCustomer.d.ts +0 -28
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailInvoiceData.d.ts +0 -38
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailPaymentData.d.ts +0 -19
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailPaymentDetails.d.ts +0 -22
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailRecord.d.ts +0 -58
- package/dist/cjs/api/resources/moneyIn/types/TransactionDetailResponseData.d.ts +0 -24
- package/dist/cjs/api/resources/moneyIn/types/ValidateResponse.d.ts +0 -9
- package/dist/cjs/api/resources/moneyIn/types/ValidateResponseData.d.ts +0 -14
- package/dist/cjs/api/resources/moneyIn/types/VoidResponse.d.ts +0 -12
- package/dist/cjs/api/resources/moneyIn/types/VoidResponseData.d.ts +0 -14
- package/dist/cjs/api/resources/moneyIn/types/index.d.ts +0 -27
- package/dist/cjs/api/resources/moneyIn/types/index.js +0 -43
- package/dist/cjs/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.ts +0 -156
- package/dist/cjs/api/resources/moneyOutTypes/exports.d.ts +0 -1
- package/dist/cjs/api/resources/moneyOutTypes/exports.js +0 -18
- package/dist/cjs/api/resources/moneyOutTypes/index.d.ts +0 -1
- package/dist/cjs/api/resources/moneyOutTypes/index.js +0 -17
- package/dist/cjs/api/resources/moneyOutTypes/types/AuthCapturePayoutResponse.d.ts +0 -60
- package/dist/cjs/api/resources/moneyOutTypes/types/AuthorizePaymentMethod.d.ts +0 -27
- package/dist/cjs/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.ts +0 -103
- package/dist/cjs/api/resources/moneyOutTypes/types/CaptureAllOutResponse.d.ts +0 -26
- package/dist/cjs/api/resources/moneyOutTypes/types/MethodElementOut.d.ts +0 -21
- package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePaymentMethod.d.ts +0 -20
- package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePayoutBody.d.ts +0 -7
- package/dist/cjs/api/resources/moneyOutTypes/types/ReissuePayoutResponse.d.ts +0 -30
- package/dist/cjs/api/resources/moneyOutTypes/types/VCardGetResponse.d.ts +0 -230
- package/dist/cjs/api/resources/moneyOutTypes/types/index.d.ts +0 -14
- package/dist/cjs/api/resources/moneyOutTypes/types/index.js +0 -30
- package/dist/cjs/api/resources/notification/types/AddNotificationRequest.d.ts +0 -8
- package/dist/cjs/api/resources/notification/types/UpdateNotificationRequest.d.ts +0 -2
- package/dist/cjs/api/resources/notification/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/notification/types/index.js +0 -18
- package/dist/cjs/api/resources/notificationlogs/types/NotificationLogDetail.d.ts +0 -6
- package/dist/cjs/api/resources/notificationlogs/types/NotificationLogSearchRequest.d.ts +0 -14
- package/dist/cjs/api/resources/notificationlogs/types/index.d.ts +0 -6
- package/dist/cjs/api/resources/notificationlogs/types/index.js +0 -22
- package/dist/cjs/api/resources/ocr/types/FileContentImageOnly.d.ts +0 -23
- package/dist/cjs/api/resources/ocr/types/FileContentImageOnly.js +0 -18
- package/dist/cjs/api/resources/ocr/types/OcrResponseData.d.ts +0 -4
- package/dist/cjs/api/resources/ocr/types/OcrResultData.d.ts +0 -20
- package/dist/cjs/api/resources/ocr/types/OcrVendor.d.ts +0 -34
- package/dist/cjs/api/resources/ocr/types/PayabliApiResponseOcr.d.ts +0 -8
- package/dist/cjs/api/resources/ocr/types/index.d.ts +0 -11
- package/dist/cjs/api/resources/ocr/types/index.js +0 -27
- package/dist/cjs/api/resources/organization/types/AddOrganizationResponse.d.ts +0 -7
- package/dist/cjs/api/resources/organization/types/DeleteOrganizationResponse.d.ts +0 -7
- package/dist/cjs/api/resources/organization/types/EditOrganizationResponse.d.ts +0 -9
- package/dist/cjs/api/resources/organization/types/index.d.ts +0 -3
- package/dist/cjs/api/resources/organization/types/index.js +0 -19
- package/dist/cjs/api/resources/paymentLink/types/GetPayLinkFromIdResponse.d.ts +0 -8
- package/dist/cjs/api/resources/paymentLink/types/PatchOutPaymentLinkRequest.d.ts +0 -12
- package/dist/cjs/api/resources/paymentLink/types/PayabliApiResponsePaymentLinks.d.ts +0 -7
- package/dist/cjs/api/resources/paymentLink/types/PaymentPageRequestBody.d.ts +0 -135
- package/dist/cjs/api/resources/paymentLink/types/PaymentPageRequestBodyOut.d.ts +0 -88
- package/dist/cjs/api/resources/paymentLink/types/index.d.ts +0 -5
- package/dist/cjs/api/resources/paymentLink/types/index.js +0 -21
- package/dist/cjs/api/resources/paymentMethodDomain/types/DeletePaymentMethodDomainResponse.d.ts +0 -8
- package/dist/cjs/api/resources/paymentMethodDomain/types/ListPaymentMethodDomainsResponse.d.ts +0 -5
- package/dist/cjs/api/resources/paymentMethodDomain/types/index.d.ts +0 -2
- package/dist/cjs/api/resources/paymentMethodDomain/types/index.js +0 -18
- package/dist/cjs/api/resources/payoutSubscription/types/AddPayoutSubscriptionResponse.d.ts +0 -20
- package/dist/cjs/api/resources/payoutSubscription/types/DeletePayoutSubscriptionResponse.d.ts +0 -14
- package/dist/cjs/api/resources/payoutSubscription/types/GetPayoutSubscriptionResponse.d.ts +0 -158
- package/dist/cjs/api/resources/payoutSubscription/types/PayoutScheduleDetail.d.ts +0 -9
- package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.d.ts +0 -202
- package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.d.ts +0 -202
- package/dist/cjs/api/resources/payoutSubscription/types/PayoutSubscriptionRequestBody.d.ts +0 -69
- package/dist/cjs/api/resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.d.ts +0 -162
- package/dist/cjs/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.d.ts +0 -9
- package/dist/cjs/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.d.ts +0 -15
- package/dist/cjs/api/resources/payoutSubscription/types/index.d.ts +0 -12
- package/dist/cjs/api/resources/payoutSubscription/types/index.js +0 -28
- package/dist/cjs/api/resources/paypoint/types/GetBasicEntryByIdResponse.d.ts +0 -8
- package/dist/cjs/api/resources/paypoint/types/GetBasicEntryResponse.d.ts +0 -8
- package/dist/cjs/api/resources/paypoint/types/GetEntryConfigResponse.d.ts +0 -8
- package/dist/cjs/api/resources/paypoint/types/MigratePaypointResponse.d.ts +0 -6
- package/dist/cjs/api/resources/paypoint/types/NotificationRequest.d.ts +0 -7
- package/dist/cjs/api/resources/paypoint/types/PaypointMoveRequest.d.ts +0 -8
- package/dist/cjs/api/resources/paypoint/types/index.d.ts +0 -7
- package/dist/cjs/api/resources/paypoint/types/index.js +0 -23
- package/dist/cjs/api/resources/queryTypes/exports.d.ts +0 -1
- package/dist/cjs/api/resources/queryTypes/exports.js +0 -18
- package/dist/cjs/api/resources/queryTypes/index.d.ts +0 -1
- package/dist/cjs/api/resources/queryTypes/index.js +0 -17
- package/dist/cjs/api/resources/queryTypes/types/ListOrganizationsResponse.d.ts +0 -5
- package/dist/cjs/api/resources/queryTypes/types/QueryBatchesDetailResponse.d.ts +0 -240
- package/dist/cjs/api/resources/queryTypes/types/QueryBatchesResponse.d.ts +0 -197
- package/dist/cjs/api/resources/queryTypes/types/QueryDeviceResponse.d.ts +0 -45
- package/dist/cjs/api/resources/queryTypes/types/QueryTransferDetailResponse.d.ts +0 -125
- package/dist/cjs/api/resources/queryTypes/types/QueryTransferResponse.d.ts +0 -7
- package/dist/cjs/api/resources/queryTypes/types/QueryTransferSummary.d.ts +0 -48
- package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailBill.d.ts +0 -36
- package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailQueryResponse.d.ts +0 -10
- package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailRecord.d.ts +0 -132
- package/dist/cjs/api/resources/queryTypes/types/TransferOutDetailVendor.d.ts +0 -96
- package/dist/cjs/api/resources/queryTypes/types/TransferOutMessage.d.ts +0 -22
- package/dist/cjs/api/resources/queryTypes/types/TransferOutQueryResponse.d.ts +0 -10
- package/dist/cjs/api/resources/queryTypes/types/TransferOutRecord.d.ts +0 -74
- package/dist/cjs/api/resources/queryTypes/types/VCardTransactionQueryResponse.d.ts +0 -49
- package/dist/cjs/api/resources/queryTypes/types/VCardTransactionRecord.d.ts +0 -86
- package/dist/cjs/api/resources/queryTypes/types/index.d.ts +0 -28
- package/dist/cjs/api/resources/queryTypes/types/index.js +0 -44
- package/dist/cjs/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.ts +0 -76
- package/dist/cjs/api/resources/statistic/types/index.d.ts +0 -4
- package/dist/cjs/api/resources/statistic/types/index.js +0 -20
- package/dist/cjs/api/resources/subscription/types/AddSubscriptionResponse.d.ts +0 -19
- package/dist/cjs/api/resources/subscription/types/RemoveSubscriptionResponse.d.ts +0 -14
- package/dist/cjs/api/resources/subscription/types/SubscriptionRequestBody.d.ts +0 -39
- package/dist/cjs/api/resources/subscription/types/UpdateSubscriptionResponse.d.ts +0 -15
- package/dist/cjs/api/resources/subscription/types/index.d.ts +0 -5
- package/dist/cjs/api/resources/subscription/types/index.js +0 -21
- package/dist/cjs/api/resources/tokenStorage/types/AddMethodResponse.d.ts +0 -19
- package/dist/cjs/api/resources/tokenStorage/types/GetMethodResponse.d.ts +0 -179
- package/dist/cjs/api/resources/tokenStorage/types/RequestTokenStorage.d.ts +0 -19
- package/dist/cjs/api/resources/tokenStorage/types/RequestTokenStoragePaymentMethod.d.ts +0 -14
- package/dist/cjs/api/resources/tokenStorage/types/TokenizeAch.d.ts +0 -13
- package/dist/cjs/api/resources/tokenStorage/types/TokenizeCard.d.ts +0 -10
- package/dist/cjs/api/resources/tokenStorage/types/index.d.ts +0 -10
- package/dist/cjs/api/resources/tokenStorage/types/index.js +0 -26
- package/dist/cjs/api/resources/user/types/AddUserResponse.d.ts +0 -7
- package/dist/cjs/api/resources/user/types/AuthResetUserResponse.d.ts +0 -5
- package/dist/cjs/api/resources/user/types/ChangePswUserResponse.d.ts +0 -5
- package/dist/cjs/api/resources/user/types/DeleteUserResponse.d.ts +0 -4
- package/dist/cjs/api/resources/user/types/EditMfaUserResponse.d.ts +0 -5
- package/dist/cjs/api/resources/user/types/LogoutUserResponse.d.ts +0 -5
- package/dist/cjs/api/resources/user/types/index.d.ts +0 -6
- package/dist/cjs/api/resources/user/types/index.js +0 -22
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.d.ts +0 -6
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.js +0 -54
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/index.d.ts +0 -9
- package/dist/cjs/api/resources/v2MoneyInTypes/errors/index.js +0 -25
- package/dist/cjs/api/resources/v2MoneyInTypes/exports.d.ts +0 -1
- package/dist/cjs/api/resources/v2MoneyInTypes/exports.js +0 -18
- package/dist/cjs/api/resources/v2MoneyInTypes/index.d.ts +0 -2
- package/dist/cjs/api/resources/v2MoneyInTypes/index.js +0 -18
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2BadRequestError.d.ts +0 -22
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.d.ts +0 -761
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2InternalServerError.d.ts +0 -21
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.d.ts +0 -65
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionDetails.d.ts +0 -1003
- package/dist/cjs/api/resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.d.ts +0 -13
- package/dist/cjs/api/resources/v2MoneyInTypes/types/index.d.ts +0 -11
- package/dist/cjs/api/resources/v2MoneyInTypes/types/index.js +0 -27
- package/dist/cjs/api/resources/vendor/types/VendorEnrichRequest.d.ts +0 -20
- package/dist/cjs/api/resources/vendor/types/VendorEnrichResponse.d.ts +0 -12
- package/dist/cjs/api/resources/vendor/types/VendorEnrichResponseData.d.ts +0 -16
- package/dist/cjs/api/resources/vendor/types/VendorEnrichmentData.d.ts +0 -10
- package/dist/cjs/api/resources/vendor/types/index.d.ts +0 -6
- package/dist/cjs/api/resources/vendor/types/index.js +0 -22
- package/dist/cjs/api/types/AchPaymentMethod.d.ts +0 -9
- package/dist/cjs/api/types/DeviceId.d.ts +0 -5
- package/dist/cjs/api/types/PayabliApiResponseError400.d.ts +0 -23
- package/dist/cjs/api/types/PayabliApiResponsePaylinks.d.ts +0 -9
- package/dist/cjs/api/types/PaymentTransStatusDescription.d.ts +0 -4
- package/dist/cjs/api/types/Paymentid.d.ts +0 -4
- package/dist/cjs/api/types/QueryResponse.d.ts +0 -7
- package/dist/cjs/api/types/TemplateContent.d.ts +0 -10
- package/dist/cjs/api/types/TemplateData.d.ts +0 -14
- package/dist/cjs/api/types/UnderwritingData.d.ts +0 -8
- package/dist/esm/api/errors/ConflictError.d.mts +0 -6
- package/dist/esm/api/errors/ConflictError.mjs +0 -17
- package/dist/esm/api/resources/bill/types/BillOutData.d.mts +0 -40
- package/dist/esm/api/resources/bill/types/BillOutDataScheduledOptions.d.mts +0 -4
- package/dist/esm/api/resources/bill/types/BillResponse.d.mts +0 -10
- package/dist/esm/api/resources/bill/types/BillResponseData.d.mts +0 -58
- package/dist/esm/api/resources/bill/types/EditBillResponse.d.mts +0 -10
- package/dist/esm/api/resources/bill/types/GetBillResponse.d.mts +0 -12
- package/dist/esm/api/resources/bill/types/ModifyApprovalBillResponse.d.mts +0 -5
- package/dist/esm/api/resources/bill/types/SetApprovedBillResponse.d.mts +0 -5
- package/dist/esm/api/resources/bill/types/index.d.mts +0 -8
- package/dist/esm/api/resources/bill/types/index.mjs +0 -8
- package/dist/esm/api/resources/boarding/types/AddApplicationRequest.d.mts +0 -14
- package/dist/esm/api/resources/boarding/types/CreateApplicationFromPaypointRequest.d.mts +0 -15
- package/dist/esm/api/resources/boarding/types/CreateApplicationFromPaypointResponse.d.mts +0 -20
- package/dist/esm/api/resources/boarding/types/index.d.mts +0 -3
- package/dist/esm/api/resources/boarding/types/index.mjs +0 -3
- package/dist/esm/api/resources/chargeBacks/types/AddResponseResponse.d.mts +0 -5
- package/dist/esm/api/resources/chargeBacks/types/ChargeBackResponse.d.mts +0 -15
- package/dist/esm/api/resources/chargeBacks/types/ChargebackQueryRecords.d.mts +0 -66
- package/dist/esm/api/resources/chargeBacks/types/index.d.mts +0 -4
- package/dist/esm/api/resources/chargeBacks/types/index.mjs +0 -4
- package/dist/esm/api/resources/checkCapture/types/CheckCaptureRequest.d.mts +0 -13
- package/dist/esm/api/resources/checkCapture/types/CheckCaptureResponse.d.mts +0 -58
- package/dist/esm/api/resources/checkCapture/types/index.d.mts +0 -2
- package/dist/esm/api/resources/checkCapture/types/index.mjs +0 -2
- package/dist/esm/api/resources/cloud/types/AddDeviceResponse.d.mts +0 -9
- package/dist/esm/api/resources/cloud/types/RemoveDeviceResponse.d.mts +0 -9
- package/dist/esm/api/resources/cloud/types/index.d.mts +0 -2
- package/dist/esm/api/resources/cloud/types/index.mjs +0 -2
- package/dist/esm/api/resources/export/types/index.d.mts +0 -1
- package/dist/esm/api/resources/export/types/index.mjs +0 -1
- package/dist/esm/api/resources/ghostCard/types/CreateGhostCardResponse.d.mts +0 -17
- package/dist/esm/api/resources/ghostCard/types/index.d.mts +0 -2
- package/dist/esm/api/resources/ghostCard/types/index.mjs +0 -2
- package/dist/esm/api/resources/invoice/types/GetInvoiceRecord.d.mts +0 -54
- package/dist/esm/api/resources/invoice/types/InvoiceDataRequest.d.mts +0 -9
- package/dist/esm/api/resources/invoice/types/InvoiceNumberResponse.d.mts +0 -10
- package/dist/esm/api/resources/invoice/types/InvoiceResponseWithoutData.d.mts +0 -13
- package/dist/esm/api/resources/invoice/types/QueryInvoiceResponse.d.mts +0 -81
- package/dist/esm/api/resources/invoice/types/SendInvoiceResponse.d.mts +0 -5
- package/dist/esm/api/resources/invoice/types/index.d.mts +0 -8
- package/dist/esm/api/resources/invoice/types/index.mjs +0 -8
- package/dist/esm/api/resources/lineItem/types/DeleteItemResponse.d.mts +0 -5
- package/dist/esm/api/resources/lineItem/types/index.d.mts +0 -1
- package/dist/esm/api/resources/lineItem/types/index.mjs +0 -1
- package/dist/esm/api/resources/management/types/BankAccountVerificationDetailsResponse.d.mts +0 -31
- package/dist/esm/api/resources/management/types/VerifyAccountDetailsResponse.d.mts +0 -9
- package/dist/esm/api/resources/management/types/index.d.mts +0 -2
- package/dist/esm/api/resources/management/types/index.mjs +0 -2
- package/dist/esm/api/resources/moneyIn/errors/CaptureError.d.mts +0 -6
- package/dist/esm/api/resources/moneyIn/errors/CaptureError.mjs +0 -17
- package/dist/esm/api/resources/moneyIn/errors/InvalidTransStatusError.d.mts +0 -6
- package/dist/esm/api/resources/moneyIn/errors/InvalidTransStatusError.mjs +0 -17
- package/dist/esm/api/resources/moneyIn/errors/index.d.mts +0 -2
- package/dist/esm/api/resources/moneyIn/errors/index.mjs +0 -2
- package/dist/esm/api/resources/moneyIn/types/AuthResponse.d.mts +0 -10
- package/dist/esm/api/resources/moneyIn/types/AuthResponseResponseData.d.mts +0 -11
- package/dist/esm/api/resources/moneyIn/types/CaptureRequest.d.mts +0 -4
- package/dist/esm/api/resources/moneyIn/types/CaptureResponse.d.mts +0 -31
- package/dist/esm/api/resources/moneyIn/types/CaptureResponseData.d.mts +0 -14
- package/dist/esm/api/resources/moneyIn/types/GetPaidResponseData.d.mts +0 -16
- package/dist/esm/api/resources/moneyIn/types/InvalidTransStatusErrorType.d.mts +0 -4
- package/dist/esm/api/resources/moneyIn/types/PayabliApiResponseGetPaid.d.mts +0 -10
- package/dist/esm/api/resources/moneyIn/types/ReceiptResponse.d.mts +0 -9
- package/dist/esm/api/resources/moneyIn/types/RefundResponse.d.mts +0 -7
- package/dist/esm/api/resources/moneyIn/types/RefundWithInstructionsResponse.d.mts +0 -7
- package/dist/esm/api/resources/moneyIn/types/ResponseDataRefunds.d.mts +0 -16
- package/dist/esm/api/resources/moneyIn/types/ReverseResponse.d.mts +0 -9
- package/dist/esm/api/resources/moneyIn/types/TransRequestBody.d.mts +0 -84
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailCustomer.d.mts +0 -28
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailInvoiceData.d.mts +0 -38
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailPaymentData.d.mts +0 -19
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailPaymentDetails.d.mts +0 -22
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailRecord.d.mts +0 -58
- package/dist/esm/api/resources/moneyIn/types/TransactionDetailResponseData.d.mts +0 -24
- package/dist/esm/api/resources/moneyIn/types/ValidateResponse.d.mts +0 -9
- package/dist/esm/api/resources/moneyIn/types/ValidateResponseData.d.mts +0 -14
- package/dist/esm/api/resources/moneyIn/types/VoidResponse.d.mts +0 -12
- package/dist/esm/api/resources/moneyIn/types/VoidResponseData.d.mts +0 -14
- package/dist/esm/api/resources/moneyIn/types/index.d.mts +0 -27
- package/dist/esm/api/resources/moneyIn/types/index.mjs +0 -27
- package/dist/esm/api/resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.d.mts +0 -156
- package/dist/esm/api/resources/moneyOutTypes/exports.d.mts +0 -1
- package/dist/esm/api/resources/moneyOutTypes/exports.mjs +0 -2
- package/dist/esm/api/resources/moneyOutTypes/index.d.mts +0 -1
- package/dist/esm/api/resources/moneyOutTypes/index.mjs +0 -1
- package/dist/esm/api/resources/moneyOutTypes/types/AuthCapturePayoutResponse.d.mts +0 -60
- package/dist/esm/api/resources/moneyOutTypes/types/AuthorizePaymentMethod.d.mts +0 -27
- package/dist/esm/api/resources/moneyOutTypes/types/AuthorizePayoutBody.d.mts +0 -103
- package/dist/esm/api/resources/moneyOutTypes/types/CaptureAllOutResponse.d.mts +0 -26
- package/dist/esm/api/resources/moneyOutTypes/types/MethodElementOut.d.mts +0 -21
- package/dist/esm/api/resources/moneyOutTypes/types/ReissuePaymentMethod.d.mts +0 -20
- package/dist/esm/api/resources/moneyOutTypes/types/ReissuePayoutBody.d.mts +0 -7
- package/dist/esm/api/resources/moneyOutTypes/types/ReissuePayoutResponse.d.mts +0 -30
- package/dist/esm/api/resources/moneyOutTypes/types/VCardGetResponse.d.mts +0 -230
- package/dist/esm/api/resources/moneyOutTypes/types/index.d.mts +0 -14
- package/dist/esm/api/resources/moneyOutTypes/types/index.mjs +0 -14
- package/dist/esm/api/resources/notification/types/AddNotificationRequest.d.mts +0 -8
- package/dist/esm/api/resources/notification/types/UpdateNotificationRequest.d.mts +0 -2
- package/dist/esm/api/resources/notification/types/index.d.mts +0 -2
- package/dist/esm/api/resources/notification/types/index.mjs +0 -2
- package/dist/esm/api/resources/notificationlogs/types/NotificationLogDetail.d.mts +0 -6
- package/dist/esm/api/resources/notificationlogs/types/NotificationLogSearchRequest.d.mts +0 -14
- package/dist/esm/api/resources/notificationlogs/types/index.d.mts +0 -6
- package/dist/esm/api/resources/notificationlogs/types/index.mjs +0 -6
- package/dist/esm/api/resources/ocr/types/FileContentImageOnly.d.mts +0 -23
- package/dist/esm/api/resources/ocr/types/FileContentImageOnly.mjs +0 -15
- package/dist/esm/api/resources/ocr/types/OcrResponseData.d.mts +0 -4
- package/dist/esm/api/resources/ocr/types/OcrResultData.d.mts +0 -20
- package/dist/esm/api/resources/ocr/types/OcrVendor.d.mts +0 -34
- package/dist/esm/api/resources/ocr/types/PayabliApiResponseOcr.d.mts +0 -8
- package/dist/esm/api/resources/ocr/types/index.d.mts +0 -11
- package/dist/esm/api/resources/ocr/types/index.mjs +0 -11
- package/dist/esm/api/resources/organization/types/AddOrganizationResponse.d.mts +0 -7
- package/dist/esm/api/resources/organization/types/DeleteOrganizationResponse.d.mts +0 -7
- package/dist/esm/api/resources/organization/types/EditOrganizationResponse.d.mts +0 -9
- package/dist/esm/api/resources/organization/types/index.d.mts +0 -3
- package/dist/esm/api/resources/organization/types/index.mjs +0 -3
- package/dist/esm/api/resources/paymentLink/types/GetPayLinkFromIdResponse.d.mts +0 -8
- package/dist/esm/api/resources/paymentLink/types/PatchOutPaymentLinkRequest.d.mts +0 -12
- package/dist/esm/api/resources/paymentLink/types/PayabliApiResponsePaymentLinks.d.mts +0 -7
- package/dist/esm/api/resources/paymentLink/types/PaymentPageRequestBody.d.mts +0 -135
- package/dist/esm/api/resources/paymentLink/types/PaymentPageRequestBodyOut.d.mts +0 -88
- package/dist/esm/api/resources/paymentLink/types/index.d.mts +0 -5
- package/dist/esm/api/resources/paymentLink/types/index.mjs +0 -5
- package/dist/esm/api/resources/paymentMethodDomain/types/DeletePaymentMethodDomainResponse.d.mts +0 -8
- package/dist/esm/api/resources/paymentMethodDomain/types/ListPaymentMethodDomainsResponse.d.mts +0 -5
- package/dist/esm/api/resources/paymentMethodDomain/types/index.d.mts +0 -2
- package/dist/esm/api/resources/paymentMethodDomain/types/index.mjs +0 -2
- package/dist/esm/api/resources/payoutSubscription/types/AddPayoutSubscriptionResponse.d.mts +0 -20
- package/dist/esm/api/resources/payoutSubscription/types/DeletePayoutSubscriptionResponse.d.mts +0 -14
- package/dist/esm/api/resources/payoutSubscription/types/GetPayoutSubscriptionResponse.d.mts +0 -158
- package/dist/esm/api/resources/payoutSubscription/types/PayoutScheduleDetail.d.mts +0 -9
- package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.d.mts +0 -202
- package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.d.mts +0 -202
- package/dist/esm/api/resources/payoutSubscription/types/PayoutSubscriptionRequestBody.d.mts +0 -69
- package/dist/esm/api/resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.d.mts +0 -162
- package/dist/esm/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.d.mts +0 -9
- package/dist/esm/api/resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.d.mts +0 -15
- package/dist/esm/api/resources/payoutSubscription/types/index.d.mts +0 -12
- package/dist/esm/api/resources/payoutSubscription/types/index.mjs +0 -12
- package/dist/esm/api/resources/paypoint/types/GetBasicEntryByIdResponse.d.mts +0 -8
- package/dist/esm/api/resources/paypoint/types/GetBasicEntryResponse.d.mts +0 -8
- package/dist/esm/api/resources/paypoint/types/GetEntryConfigResponse.d.mts +0 -8
- package/dist/esm/api/resources/paypoint/types/MigratePaypointResponse.d.mts +0 -6
- package/dist/esm/api/resources/paypoint/types/NotificationRequest.d.mts +0 -7
- package/dist/esm/api/resources/paypoint/types/PaypointMoveRequest.d.mts +0 -8
- package/dist/esm/api/resources/paypoint/types/index.d.mts +0 -7
- package/dist/esm/api/resources/paypoint/types/index.mjs +0 -7
- package/dist/esm/api/resources/queryTypes/exports.d.mts +0 -1
- package/dist/esm/api/resources/queryTypes/exports.mjs +0 -2
- package/dist/esm/api/resources/queryTypes/index.d.mts +0 -1
- package/dist/esm/api/resources/queryTypes/index.mjs +0 -1
- package/dist/esm/api/resources/queryTypes/types/ListOrganizationsResponse.d.mts +0 -5
- package/dist/esm/api/resources/queryTypes/types/QueryBatchesDetailResponse.d.mts +0 -240
- package/dist/esm/api/resources/queryTypes/types/QueryBatchesResponse.d.mts +0 -197
- package/dist/esm/api/resources/queryTypes/types/QueryDeviceResponse.d.mts +0 -45
- package/dist/esm/api/resources/queryTypes/types/QueryTransferDetailResponse.d.mts +0 -125
- package/dist/esm/api/resources/queryTypes/types/QueryTransferResponse.d.mts +0 -7
- package/dist/esm/api/resources/queryTypes/types/QueryTransferSummary.d.mts +0 -48
- package/dist/esm/api/resources/queryTypes/types/TransferOutDetailBill.d.mts +0 -36
- package/dist/esm/api/resources/queryTypes/types/TransferOutDetailQueryResponse.d.mts +0 -10
- package/dist/esm/api/resources/queryTypes/types/TransferOutDetailRecord.d.mts +0 -132
- package/dist/esm/api/resources/queryTypes/types/TransferOutDetailVendor.d.mts +0 -96
- package/dist/esm/api/resources/queryTypes/types/TransferOutMessage.d.mts +0 -22
- package/dist/esm/api/resources/queryTypes/types/TransferOutQueryResponse.d.mts +0 -10
- package/dist/esm/api/resources/queryTypes/types/TransferOutRecord.d.mts +0 -74
- package/dist/esm/api/resources/queryTypes/types/VCardTransactionQueryResponse.d.mts +0 -49
- package/dist/esm/api/resources/queryTypes/types/VCardTransactionRecord.d.mts +0 -86
- package/dist/esm/api/resources/queryTypes/types/index.d.mts +0 -28
- package/dist/esm/api/resources/queryTypes/types/index.mjs +0 -28
- package/dist/esm/api/resources/statistic/types/StatBasicExtendedQueryRecord.d.mts +0 -76
- package/dist/esm/api/resources/statistic/types/index.d.mts +0 -4
- package/dist/esm/api/resources/statistic/types/index.mjs +0 -4
- package/dist/esm/api/resources/subscription/types/AddSubscriptionResponse.d.mts +0 -19
- package/dist/esm/api/resources/subscription/types/RemoveSubscriptionResponse.d.mts +0 -14
- package/dist/esm/api/resources/subscription/types/SubscriptionRequestBody.d.mts +0 -39
- package/dist/esm/api/resources/subscription/types/UpdateSubscriptionResponse.d.mts +0 -15
- package/dist/esm/api/resources/subscription/types/index.d.mts +0 -5
- package/dist/esm/api/resources/subscription/types/index.mjs +0 -5
- package/dist/esm/api/resources/tokenStorage/types/AddMethodResponse.d.mts +0 -19
- package/dist/esm/api/resources/tokenStorage/types/GetMethodResponse.d.mts +0 -179
- package/dist/esm/api/resources/tokenStorage/types/RequestTokenStorage.d.mts +0 -19
- package/dist/esm/api/resources/tokenStorage/types/RequestTokenStoragePaymentMethod.d.mts +0 -14
- package/dist/esm/api/resources/tokenStorage/types/TokenizeAch.d.mts +0 -13
- package/dist/esm/api/resources/tokenStorage/types/TokenizeCard.d.mts +0 -10
- package/dist/esm/api/resources/tokenStorage/types/index.d.mts +0 -10
- package/dist/esm/api/resources/tokenStorage/types/index.mjs +0 -10
- package/dist/esm/api/resources/user/types/AddUserResponse.d.mts +0 -7
- package/dist/esm/api/resources/user/types/AuthResetUserResponse.d.mts +0 -5
- package/dist/esm/api/resources/user/types/ChangePswUserResponse.d.mts +0 -5
- package/dist/esm/api/resources/user/types/DeleteUserResponse.d.mts +0 -4
- package/dist/esm/api/resources/user/types/EditMfaUserResponse.d.mts +0 -5
- package/dist/esm/api/resources/user/types/LogoutUserResponse.d.mts +0 -5
- package/dist/esm/api/resources/user/types/index.d.mts +0 -6
- package/dist/esm/api/resources/user/types/index.mjs +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestAuthResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestCaptureResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestRefundResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/BadRequestVoidResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedAuthResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedCaptureResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedRefundResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/DeclinedVoidResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.d.mts +0 -6
- package/dist/esm/api/resources/v2MoneyInTypes/errors/InternalServerResponseErrorV2.mjs +0 -17
- package/dist/esm/api/resources/v2MoneyInTypes/errors/index.d.mts +0 -9
- package/dist/esm/api/resources/v2MoneyInTypes/errors/index.mjs +0 -9
- package/dist/esm/api/resources/v2MoneyInTypes/exports.d.mts +0 -1
- package/dist/esm/api/resources/v2MoneyInTypes/exports.mjs +0 -2
- package/dist/esm/api/resources/v2MoneyInTypes/index.d.mts +0 -2
- package/dist/esm/api/resources/v2MoneyInTypes/index.mjs +0 -2
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2BadRequestError.d.mts +0 -22
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.d.mts +0 -761
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2InternalServerError.d.mts +0 -21
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.d.mts +0 -65
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionDetails.d.mts +0 -1003
- package/dist/esm/api/resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.d.mts +0 -13
- package/dist/esm/api/resources/v2MoneyInTypes/types/index.d.mts +0 -11
- package/dist/esm/api/resources/v2MoneyInTypes/types/index.mjs +0 -11
- package/dist/esm/api/resources/vendor/types/VendorEnrichRequest.d.mts +0 -20
- package/dist/esm/api/resources/vendor/types/VendorEnrichResponse.d.mts +0 -12
- package/dist/esm/api/resources/vendor/types/VendorEnrichResponseData.d.mts +0 -16
- package/dist/esm/api/resources/vendor/types/VendorEnrichmentData.d.mts +0 -10
- package/dist/esm/api/resources/vendor/types/index.d.mts +0 -6
- package/dist/esm/api/resources/vendor/types/index.mjs +0 -6
- package/dist/esm/api/types/AchPaymentMethod.d.mts +0 -9
- package/dist/esm/api/types/DeviceId.d.mts +0 -5
- package/dist/esm/api/types/PayabliApiResponseError400.d.mts +0 -23
- package/dist/esm/api/types/PayabliApiResponsePaylinks.d.mts +0 -9
- package/dist/esm/api/types/PaymentTransStatusDescription.d.mts +0 -4
- package/dist/esm/api/types/Paymentid.d.mts +0 -4
- package/dist/esm/api/types/QueryResponse.d.mts +0 -7
- package/dist/esm/api/types/TemplateContent.d.mts +0 -10
- package/dist/esm/api/types/TemplateData.d.mts +0 -14
- package/dist/esm/api/types/UnderwritingData.d.mts +0 -8
- /package/dist/cjs/api/resources/boarding/{types → client/requests}/CreateApplicationFromPaypointRequest.js +0 -0
- /package/dist/cjs/api/resources/{bill/types/BillOutData.js → moneyOut/client/requests/RequestOutAuthorize.js} +0 -0
- /package/dist/cjs/api/resources/paymentLink/{types → client/requests}/PatchOutPaymentLinkRequest.js +0 -0
- /package/dist/cjs/api/resources/{bill/types/BillOutDataScheduledOptions.js → payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.js} +0 -0
- /package/dist/cjs/api/resources/{bill/types/BillResponse.js → paypoint/client/requests/PaypointMoveRequest.js} +0 -0
- /package/dist/cjs/api/resources/{bill/types/BillResponseData.js → vendor/client/requests/VendorEnrichRequest.js} +0 -0
- /package/dist/cjs/api/{resources/boarding/types → types}/AddApplicationRequest.js +0 -0
- /package/dist/cjs/api/{resources/cloud/types → types}/AddDeviceResponse.js +0 -0
- /package/dist/cjs/api/{resources/bill/types/EditBillResponse.js → types/AddMethodResponse.js} +0 -0
- /package/dist/cjs/api/{resources/bill/types/GetBillResponse.js → types/AddMethodResponseResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/notification/types → types}/AddNotificationRequest.js +0 -0
- /package/dist/cjs/api/{resources/organization/types → types}/AddOrganizationResponse.js +0 -0
- /package/dist/cjs/api/{resources/bill/types/ModifyApprovalBillResponse.js → types/AddPaymentMethodDomainRequestApplePay.js} +0 -0
- /package/dist/cjs/api/{resources/bill/types/SetApprovedBillResponse.js → types/AddPaymentMethodDomainRequestGooglePay.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types → types}/AddPayoutSubscriptionResponse.js +0 -0
- /package/dist/cjs/api/{resources/chargeBacks/types → types}/AddResponseResponse.js +0 -0
- /package/dist/cjs/api/{resources/boarding/types/CreateApplicationFromPaypointResponse.js → types/AddSubscriptionResponse.js} +0 -0
- /package/dist/cjs/api/{resources/chargeBacks/types/ChargeBackResponse.js → types/AddUserResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.js +0 -0
- /package/dist/cjs/api/{resources/chargeBacks/types/ChargebackMessage.js → types/ApplicationDataManagedContactsItem.js} +0 -0
- /package/dist/cjs/api/{resources/chargeBacks/types/ChargebackQueryRecords.js → types/ApplicationDataManagedOwnershipItem.js} +0 -0
- /package/dist/cjs/api/{resources/checkCapture/types/CheckCaptureRequest.js → types/ApplicationDataOdpContactsItem.js} +0 -0
- /package/dist/cjs/api/{resources/checkCapture/types/CheckCaptureResponse.js → types/ApplicationDataOdpOwnershipItem.js} +0 -0
- /package/dist/cjs/api/{resources/cloud/types/RemoveDeviceResponse.js → types/ApplicationDataPayInContactsItem.js} +0 -0
- /package/dist/cjs/api/{resources/ghostCard/types/CreateGhostCardResponse.js → types/ApplicationDataPayInOwnershipItem.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/GetInvoiceRecord.js → types/ApplicationDataPayInServices.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/InvoiceDataRequest.js → types/ApplicationDataPayInServicesAch.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/InvoiceId.js → types/ApplicationDataPayInServicesCard.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/InvoiceNumberResponse.js → types/ApplicationDetailsRecordMessagesItem.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AuthCapturePayoutResponse.js +0 -0
- /package/dist/cjs/api/{resources/invoice/types/InvoicePaidAmount.js → types/AuthCapturePayoutResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/InvoiceResponseWithoutData.js → types/AuthResetUserResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/AuthResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/AuthResponseResponseData.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/AuthorizePaymentMethod.js +0 -0
- /package/dist/cjs/api/{resources/management/types → types}/BankAccountVerificationDetailsResponse.js +0 -0
- /package/dist/cjs/api/{resources/invoice/types/QueryInvoiceResponse.js → types/BatchDetailResponseRecord.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types/SendInvoiceResponse.js → types/BatchDetailResponseSummary.js} +0 -0
- /package/dist/cjs/api/{resources/lineItem/types/DeleteItemResponse.js → types/BillOutData.js} +0 -0
- /package/dist/cjs/api/{resources/management/types/VerifyAccountDetailsResponse.js → types/BillOutDataScheduledOptions.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/CapturePaymentDetails.js → types/BillResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/CaptureRequest.js → types/BillResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types → types}/BulkRetryRequest.d.ts +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types → types}/BulkRetryRequest.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/CaptureAllOutResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/CaptureResponse.js → types/CaptureAllOutResponseResponseDataItem.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/CapturePaymentDetails.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/CaptureResponseData.js → types/CapturePaymentDetails.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/GetPaidResponseData.js → types/CaptureRequest.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/InvalidTransStatusErrorType.js → types/CaptureResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/PayabliApiResponseGetPaid.js → types/CaptureResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/ghostCard/types → types}/CardStatus.d.ts +0 -0
- /package/dist/cjs/api/{resources/ghostCard/types → types}/CardStatus.js +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/ReceiptResponse.js → types/ChangePswUserResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/RefundResponse.js → types/ChargeBackResponse.js} +0 -0
- /package/dist/cjs/api/{resources/chargeBacks/types → types}/ChargebackMessage.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/RefundWithInstructionsResponse.js → types/ChargebackMessage.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/ResponseDataRefunds.js → types/ChargebackQueryRecords.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/ReverseResponse.js → types/CheckCaptureResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types → types}/ConvertToken.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransRequestBody.js → types/ConvertToken.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types → types}/CreateAnonymous.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailCustomer.js → types/CreateAnonymous.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailEvent.js → types/CreateApplicationFromPaypointResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailInvoiceData.js → types/CreateApplicationFromPaypointResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailPaymentData.js → types/CreateGhostCardResponse.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailPaymentDetails.js → types/CreateGhostCardResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailRecord.js → types/CustomerQueryRecordsCustomerConsent.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/TransactionDetailResponseData.js → types/CustomerQueryRecordsCustomerConsentECommunication.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/ValidateResponse.js → types/CustomerQueryRecordsCustomerConsentSms.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/ValidateResponseData.js → types/DeleteItemResponse.js} +0 -0
- /package/dist/cjs/api/{resources/organization/types → types}/DeleteOrganizationResponse.js +0 -0
- /package/dist/cjs/api/{resources/paymentMethodDomain/types → types}/DeletePaymentMethodDomainResponse.js +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types → types}/DeletePayoutSubscriptionResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/VoidResponse.js → types/DeleteUserResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/DeviceQueryRecord.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/DeviceQueryRecord.js +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types/VoidResponseData.js → types/DocumentSectionTermsAndConditions.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.js → types/DocumentSectionTermsAndConditionsTcLinksItem.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/AuthorizePayoutBody.js → types/EditBillResponse.js} +0 -0
- /package/dist/cjs/api/{resources/user/types → types}/EditMfaUserResponse.js +0 -0
- /package/dist/cjs/api/{resources/organization/types → types}/EditOrganizationResponse.js +0 -0
- /package/dist/cjs/api/{resources/export/types → types}/ExportFormat1.d.ts +0 -0
- /package/dist/cjs/api/{resources/export/types → types}/ExportFormat1.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/LotNumber.js → types/FileContentImageOnly.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/GetBasicEntryByIdResponse.js +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/GetBasicEntryResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/MethodElementOut.js → types/GetBillResponse.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/GetEntryConfigResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/MethodsListOut.js → types/GetInvoiceRecord.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types → types}/GetMethodResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/OperationResult.js → types/GetMethodResponseResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePaymentMethod.js → types/GetMethodResponseResponseDataCustomersItem.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePayoutBody.js → types/GetMethodResponseResponseDataVendorsItem.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/ReissuePayoutResponse.js → types/GetPaidResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/paymentLink/types → types}/GetPayLinkFromIdResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types/VCardGetResponse.js → types/GetPayLinkFromIdResponseResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types → types}/GetPayoutSubscriptionResponse.js +0 -0
- /package/dist/cjs/api/{resources/notification/types/UpdateNotificationRequest.js → types/InvoiceDataRequest.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types → types}/InvoiceId.d.ts +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types/KeyValueArray.js → types/InvoiceId.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLog.js → types/InvoiceNumberResponse.js} +0 -0
- /package/dist/cjs/api/{resources/invoice/types → types}/InvoicePaidAmount.d.ts +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLogDetail.js → types/InvoicePaidAmount.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types/NotificationLogSearchRequest.js → types/InvoiceResponseWithoutData.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types → types}/KeyValueArray.d.ts +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types/StringStringKeyValuePair.js → types/KeyValueArray.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/LimitRecord.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/LimitRecord.js +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/ListOrganizationsResponse.js +0 -0
- /package/dist/cjs/api/{resources/paymentMethodDomain/types → types}/ListPaymentMethodDomainsResponse.js +0 -0
- /package/dist/cjs/api/{resources/user/types → types}/LogoutUserResponse.js +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/LotNumber.d.ts +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrAttachment.js → types/LotNumber.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrBillItem.js → types/MethodElementOut.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrBillItemAdditionalData.js → types/MethodElementSettings.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrResponseData.js → types/MethodElementSettingsApplePay.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/MethodsListOut.d.ts +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrResultData.js → types/MethodsListOut.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/MigratePaypointResponse.js +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrVendor.js → types/ModifyApprovalBillResponse.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types → types}/NotificationLog.d.ts +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrVendorAdditionalData.js → types/NotificationLog.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types/OcrVendorBillingData.js → types/NotificationLogDetail.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/NotificationRequest.js +0 -0
- /package/dist/cjs/api/{resources/ocr/types/PayabliApiResponseOcr.js → types/NotificationStandardRequestContent.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/OcrAttachment.d.ts +0 -0
- /package/dist/cjs/api/{resources/ocr/types/TypeResult.js → types/OcrAttachment.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/OcrBillItem.d.ts +0 -0
- /package/dist/cjs/api/{resources/paymentLink/types/PayabliApiResponsePaymentLinks.js → types/OcrBillItem.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/OcrBillItemAdditionalData.d.ts +0 -0
- /package/dist/cjs/api/{resources/paymentLink/types/PaymentPageRequestBody.js → types/OcrBillItemAdditionalData.js} +0 -0
- /package/dist/cjs/api/{resources/paymentLink/types/PaymentPageRequestBodyOut.js → types/OcrResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutPaymentDetail.js → types/OcrResultData.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutScheduleDetail.js → types/OcrVendor.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/OcrVendorAdditionalData.d.ts +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSetPause.js → types/OcrVendorAdditionalData.js} +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/OcrVendorBillingData.d.ts +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.js → types/OcrVendorBillingData.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/OperationResult.d.ts +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.js → types/OperationResult.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/PayoutSubscriptionRequestBody.js → types/OrganizationQueryRecordServicesItem.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.js → types/PayabliApiResponse0ResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.js → types/PayabliApiResponseGetPaid.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.js → types/PayabliApiResponseImportResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types/PaypointMoveRequest.js → types/PayabliApiResponseNotificationsResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/paypoint/types/WebHeaderParameter.js → types/PayabliApiResponseOcr.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesDetailResponse.js → types/PayabliApiResponsePaymentLinks.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesResponse.js → types/PayabliApiResponsePaymethodDeleteResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryBatchesTransfer.js → types/PayabliErrorBody.js} +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.js +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryDeviceResponse.js → types/PaymentPageRequestBodyOut.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types → types}/PayoutPaymentDetail.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferDetailResponse.js → types/PayoutPaymentDetail.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferResponse.js → types/PayoutScheduleDetail.js} +0 -0
- /package/dist/cjs/api/{resources/payoutSubscription/types → types}/PayoutSetPause.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/QueryTransferSummary.js → types/PayoutSetPause.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutBankAccount.js → types/PayoutSubscriptionQueryRecord.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailBill.js → types/PayoutSubscriptionQueryRecordPascal.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailBillAttachment.js → types/PushPayLinkRequestEmail.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailCheckData.js → types/PushPayLinkRequestSms.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailEvent.js → types/QueryBatchesDetailResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailPaymentData.js → types/QueryBatchesOutResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailQueryResponse.js → types/QueryBatchesResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailRecord.js → types/QueryBatchesResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/QueryBatchesTransfer.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailVendor.js → types/QueryBatchesTransfer.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutDetailVendorBillingData.js → types/QueryBoardingLinksResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutEventData.js → types/QueryChargebacksResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutMessage.js → types/QueryDeviceResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutMessageProperties.js → types/QueryEntrypointResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutQueryResponse.js → types/QueryInvoiceResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutRecord.js → types/QueryInvoiceResponseRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/TransferOutSummary.js → types/QueryPayoutSubscriptionResponse.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/VCardTransactionQueryResponse.js → types/QueryPayoutTransactionRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types/VCardTransactionRecord.js → types/QueryPayoutTransactionRecordsItemPaymentData.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types/StatBasicExtendedQueryRecord.js → types/QueryPayoutTransactionSummary.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types/StatBasicQueryRecord.js → types/QueryResponseItemsRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types/StatisticsVendorQueryRecord.js → types/QueryResponseNotificationReportsRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types/SubscriptionStatsQueryRecord.js → types/QueryResponseNotificationsRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types/AddSubscriptionResponse.js → types/QueryResponseSettlementsRecordsItem.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types/RemoveSubscriptionResponse.js → types/QueryResponseSettlementsSummary.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types/SetPause.js → types/QueryTransactionEventsEventData.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types/SubscriptionRequestBody.js → types/QueryTransferDetailResponse.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types/UpdateSubscriptionResponse.js → types/QueryTransferSummary.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/AddMethodResponse.js → types/ReceiptResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/ConvertToken.js → types/RefundResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/CreateAnonymous.js → types/RefundWithInstructionsResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/RequestTokenStorage.js → types/ReissuePaymentMethod.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/RequestTokenStoragePaymentMethod.js → types/ReissuePayoutResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/Temporary.js → types/ReissuePayoutResponseData.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/TokenizeAch.js → types/RemoveDeviceResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/TokenizeCard.js → types/RemoveSubscriptionResponse.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types/VendorDataRequest.js → types/RequestOutAuthorizeInvoiceData.js} +0 -0
- /package/dist/cjs/api/{resources/user/types/AddUserResponse.js → types/RequestOutAuthorizePaymentDetails.js} +0 -0
- /package/dist/cjs/api/{resources/user/types/AuthResetUserResponse.js → types/RequestOutAuthorizeVendorBillingData.js} +0 -0
- /package/dist/cjs/api/{resources/user/types/ChangePswUserResponse.js → types/RequestOutAuthorizeVendorData.js} +0 -0
- /package/dist/cjs/api/{resources/user/types/DeleteUserResponse.js → types/RequestPaymentValidatePaymentMethod.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2BadRequestError.js → types/RequestSchedulePaymentMethod.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2BadRequestErrorDetail.js → types/RequestSchedulePaymentMethodInitiator.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.js → types/RequestTokenStorage.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2InternalServerError.js → types/RequestTokenStoragePaymentMethod.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseAction.js → types/ResponseDataRefunds.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseCode.js → types/ReverseResponse.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseExplanation.js → types/SendInvoiceResponse.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2ResponseReason.js → types/SetApprovedBillResponse.js} +0 -0
- /package/dist/cjs/api/{resources/subscription/types → types}/SetPause.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.js → types/SetPause.js} +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionDetails.js → types/StatBasicExtendedQueryRecord.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types → types}/StatBasicQueryRecord.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.js → types/StatBasicQueryRecord.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types → types}/StatisticsVendorQueryRecord.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichRequest.js → types/StatisticsVendorQueryRecord.js} +0 -0
- /package/dist/cjs/api/{resources/notificationlogs/types → types}/StringStringKeyValuePair.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichResponse.js → types/StringStringKeyValuePair.js} +0 -0
- /package/dist/cjs/api/{resources/statistic/types → types}/SubscriptionStatsQueryRecord.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichResponseData.js → types/SubscriptionStatsQueryRecord.js} +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types → types}/Temporary.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentData.js → types/Temporary.js} +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentInvoiceScan.js → types/TokenizeAch.js} +0 -0
- /package/dist/cjs/api/{resources/vendor/types/VendorEnrichmentWebSearch.js → types/TokenizeCard.js} +0 -0
- /package/dist/cjs/api/types/{AchPaymentMethod.js → TransRequestBody.js} +0 -0
- /package/dist/cjs/api/types/{DeviceId.js → TransactionDetailCustomer.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailEvent.d.ts +0 -0
- /package/dist/cjs/api/types/{PayabliApiResponseError400.js → TransactionDetailEvent.js} +0 -0
- /package/dist/cjs/api/types/{PayabliApiResponsePaylinks.js → TransactionDetailInvoiceData.js} +0 -0
- /package/dist/cjs/api/types/{PaymentTransStatusDescription.js → TransactionDetailPaymentData.js} +0 -0
- /package/dist/cjs/api/types/{Paymentid.js → TransactionDetailPaymentDetails.js} +0 -0
- /package/dist/cjs/api/types/{QueryResponse.js → TransactionDetailRecord.js} +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.d.ts +0 -0
- /package/dist/cjs/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.js +0 -0
- /package/dist/cjs/api/types/{TemplateContent.js → TransactionDetailResponseData.js} +0 -0
- /package/dist/cjs/api/types/{TemplateData.js → TransferDetailRecord.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutBankAccount.d.ts +0 -0
- /package/dist/cjs/api/types/{UnderwritingData.js → TransferOutBankAccount.js} +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailBillAttachment.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailCheckData.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailEvent.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailPaymentData.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutDetailVendorBillingData.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutEventData.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutMessageProperties.d.ts +0 -0
- /package/dist/cjs/api/{resources/queryTypes/types → types}/TransferOutSummary.d.ts +0 -0
- /package/dist/cjs/api/{resources/ocr/types → types}/TypeResult.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2BadRequestErrorDetail.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseAction.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseCode.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseExplanation.d.ts +0 -0
- /package/dist/cjs/api/{resources/v2MoneyInTypes/types → types}/V2ResponseReason.d.ts +0 -0
- /package/dist/cjs/api/{resources/tokenStorage/types → types}/VendorDataRequest.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types → types}/VendorEnrichmentInvoiceScan.d.ts +0 -0
- /package/dist/cjs/api/{resources/vendor/types → types}/VendorEnrichmentWebSearch.d.ts +0 -0
- /package/dist/cjs/api/{resources/paypoint/types → types}/WebHeaderParameter.d.ts +0 -0
- /package/dist/esm/api/resources/boarding/{types → client/requests}/CreateApplicationFromPaypointRequest.mjs +0 -0
- /package/dist/esm/api/resources/{bill/types/BillOutData.mjs → moneyOut/client/requests/RequestOutAuthorize.mjs} +0 -0
- /package/dist/esm/api/resources/paymentLink/{types → client/requests}/PatchOutPaymentLinkRequest.mjs +0 -0
- /package/dist/esm/api/resources/{bill/types/BillOutDataScheduledOptions.mjs → payoutSubscription/client/requests/UpdatePayoutSubscriptionBody.mjs} +0 -0
- /package/dist/esm/api/resources/{bill/types/BillResponse.mjs → paypoint/client/requests/PaypointMoveRequest.mjs} +0 -0
- /package/dist/esm/api/resources/{bill/types/BillResponseData.mjs → vendor/client/requests/VendorEnrichRequest.mjs} +0 -0
- /package/dist/esm/api/{resources/boarding/types → types}/AddApplicationRequest.mjs +0 -0
- /package/dist/esm/api/{resources/cloud/types → types}/AddDeviceResponse.mjs +0 -0
- /package/dist/esm/api/{resources/bill/types/EditBillResponse.mjs → types/AddMethodResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/bill/types/GetBillResponse.mjs → types/AddMethodResponseResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/notification/types → types}/AddNotificationRequest.mjs +0 -0
- /package/dist/esm/api/{resources/organization/types → types}/AddOrganizationResponse.mjs +0 -0
- /package/dist/esm/api/{resources/bill/types/ModifyApprovalBillResponse.mjs → types/AddPaymentMethodDomainRequestApplePay.mjs} +0 -0
- /package/dist/esm/api/{resources/bill/types/SetApprovedBillResponse.mjs → types/AddPaymentMethodDomainRequestGooglePay.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types → types}/AddPayoutSubscriptionResponse.mjs +0 -0
- /package/dist/esm/api/{resources/chargeBacks/types → types}/AddResponseResponse.mjs +0 -0
- /package/dist/esm/api/{resources/boarding/types/CreateApplicationFromPaypointResponse.mjs → types/AddSubscriptionResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/chargeBacks/types/ChargeBackResponse.mjs → types/AddUserResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AllowedCheckPaymentStatus.mjs +0 -0
- /package/dist/esm/api/{resources/chargeBacks/types/ChargebackMessage.mjs → types/ApplicationDataManagedContactsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/chargeBacks/types/ChargebackQueryRecords.mjs → types/ApplicationDataManagedOwnershipItem.mjs} +0 -0
- /package/dist/esm/api/{resources/checkCapture/types/CheckCaptureRequest.mjs → types/ApplicationDataOdpContactsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/checkCapture/types/CheckCaptureResponse.mjs → types/ApplicationDataOdpOwnershipItem.mjs} +0 -0
- /package/dist/esm/api/{resources/cloud/types/RemoveDeviceResponse.mjs → types/ApplicationDataPayInContactsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/ghostCard/types/CreateGhostCardResponse.mjs → types/ApplicationDataPayInOwnershipItem.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/GetInvoiceRecord.mjs → types/ApplicationDataPayInServices.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/InvoiceDataRequest.mjs → types/ApplicationDataPayInServicesAch.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/InvoiceId.mjs → types/ApplicationDataPayInServicesCard.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/InvoiceNumberResponse.mjs → types/ApplicationDetailsRecordMessagesItem.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AuthCapturePayoutResponse.mjs +0 -0
- /package/dist/esm/api/{resources/invoice/types/InvoicePaidAmount.mjs → types/AuthCapturePayoutResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/InvoiceResponseWithoutData.mjs → types/AuthResetUserResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/AuthResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/AuthResponseResponseData.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/AuthorizePaymentMethod.mjs +0 -0
- /package/dist/esm/api/{resources/management/types → types}/BankAccountVerificationDetailsResponse.mjs +0 -0
- /package/dist/esm/api/{resources/invoice/types/QueryInvoiceResponse.mjs → types/BatchDetailResponseRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types/SendInvoiceResponse.mjs → types/BatchDetailResponseSummary.mjs} +0 -0
- /package/dist/esm/api/{resources/lineItem/types/DeleteItemResponse.mjs → types/BillOutData.mjs} +0 -0
- /package/dist/esm/api/{resources/management/types/VerifyAccountDetailsResponse.mjs → types/BillOutDataScheduledOptions.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/CapturePaymentDetails.mjs → types/BillResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/CaptureRequest.mjs → types/BillResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types → types}/BulkRetryRequest.d.mts +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types → types}/BulkRetryRequest.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/CaptureAllOutResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/CaptureResponse.mjs → types/CaptureAllOutResponseResponseDataItem.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/CapturePaymentDetails.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/CaptureResponseData.mjs → types/CapturePaymentDetails.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/GetPaidResponseData.mjs → types/CaptureRequest.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/InvalidTransStatusErrorType.mjs → types/CaptureResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/PayabliApiResponseGetPaid.mjs → types/CaptureResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/ghostCard/types → types}/CardStatus.d.mts +0 -0
- /package/dist/esm/api/{resources/ghostCard/types → types}/CardStatus.mjs +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/ReceiptResponse.mjs → types/ChangePswUserResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/RefundResponse.mjs → types/ChargeBackResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/chargeBacks/types → types}/ChargebackMessage.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/RefundWithInstructionsResponse.mjs → types/ChargebackMessage.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/ResponseDataRefunds.mjs → types/ChargebackQueryRecords.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/ReverseResponse.mjs → types/CheckCaptureResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types → types}/ConvertToken.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransRequestBody.mjs → types/ConvertToken.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types → types}/CreateAnonymous.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailCustomer.mjs → types/CreateAnonymous.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailEvent.mjs → types/CreateApplicationFromPaypointResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailInvoiceData.mjs → types/CreateApplicationFromPaypointResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailPaymentData.mjs → types/CreateGhostCardResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailPaymentDetails.mjs → types/CreateGhostCardResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailRecord.mjs → types/CustomerQueryRecordsCustomerConsent.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/TransactionDetailResponseData.mjs → types/CustomerQueryRecordsCustomerConsentECommunication.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/ValidateResponse.mjs → types/CustomerQueryRecordsCustomerConsentSms.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/ValidateResponseData.mjs → types/DeleteItemResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/organization/types → types}/DeleteOrganizationResponse.mjs +0 -0
- /package/dist/esm/api/{resources/paymentMethodDomain/types → types}/DeletePaymentMethodDomainResponse.mjs +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types → types}/DeletePayoutSubscriptionResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/VoidResponse.mjs → types/DeleteUserResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/DeviceQueryRecord.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/DeviceQueryRecord.mjs +0 -0
- /package/dist/esm/api/{resources/moneyIn/types/VoidResponseData.mjs → types/DocumentSectionTermsAndConditions.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOut/client/requests/MoneyOutTypesRequestOutAuthorize.mjs → types/DocumentSectionTermsAndConditionsTcLinksItem.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/AuthorizePayoutBody.mjs → types/EditBillResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/user/types → types}/EditMfaUserResponse.mjs +0 -0
- /package/dist/esm/api/{resources/organization/types → types}/EditOrganizationResponse.mjs +0 -0
- /package/dist/esm/api/{resources/export/types → types}/ExportFormat1.d.mts +0 -0
- /package/dist/esm/api/{resources/export/types → types}/ExportFormat1.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/LotNumber.mjs → types/FileContentImageOnly.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/GetBasicEntryByIdResponse.mjs +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/GetBasicEntryResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/MethodElementOut.mjs → types/GetBillResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/GetEntryConfigResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/MethodsListOut.mjs → types/GetInvoiceRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types → types}/GetMethodResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/OperationResult.mjs → types/GetMethodResponseResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePaymentMethod.mjs → types/GetMethodResponseResponseDataCustomersItem.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePayoutBody.mjs → types/GetMethodResponseResponseDataVendorsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/ReissuePayoutResponse.mjs → types/GetPaidResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/paymentLink/types → types}/GetPayLinkFromIdResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types/VCardGetResponse.mjs → types/GetPayLinkFromIdResponseResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types → types}/GetPayoutSubscriptionResponse.mjs +0 -0
- /package/dist/esm/api/{resources/notification/types/UpdateNotificationRequest.mjs → types/InvoiceDataRequest.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types → types}/InvoiceId.d.mts +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types/KeyValueArray.mjs → types/InvoiceId.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types/NotificationLog.mjs → types/InvoiceNumberResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/invoice/types → types}/InvoicePaidAmount.d.mts +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types/NotificationLogDetail.mjs → types/InvoicePaidAmount.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types/NotificationLogSearchRequest.mjs → types/InvoiceResponseWithoutData.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types → types}/KeyValueArray.d.mts +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types/StringStringKeyValuePair.mjs → types/KeyValueArray.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/LimitRecord.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/LimitRecord.mjs +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/ListOrganizationsResponse.mjs +0 -0
- /package/dist/esm/api/{resources/paymentMethodDomain/types → types}/ListPaymentMethodDomainsResponse.mjs +0 -0
- /package/dist/esm/api/{resources/user/types → types}/LogoutUserResponse.mjs +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/LotNumber.d.mts +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrAttachment.mjs → types/LotNumber.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrBillItem.mjs → types/MethodElementOut.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrBillItemAdditionalData.mjs → types/MethodElementSettings.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrResponseData.mjs → types/MethodElementSettingsApplePay.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/MethodsListOut.d.mts +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrResultData.mjs → types/MethodsListOut.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/MigratePaypointResponse.mjs +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrVendor.mjs → types/ModifyApprovalBillResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types → types}/NotificationLog.d.mts +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrVendorAdditionalData.mjs → types/NotificationLog.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types/OcrVendorBillingData.mjs → types/NotificationLogDetail.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/NotificationRequest.mjs +0 -0
- /package/dist/esm/api/{resources/ocr/types/PayabliApiResponseOcr.mjs → types/NotificationStandardRequestContent.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/OcrAttachment.d.mts +0 -0
- /package/dist/esm/api/{resources/ocr/types/TypeResult.mjs → types/OcrAttachment.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/OcrBillItem.d.mts +0 -0
- /package/dist/esm/api/{resources/paymentLink/types/PayabliApiResponsePaymentLinks.mjs → types/OcrBillItem.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/OcrBillItemAdditionalData.d.mts +0 -0
- /package/dist/esm/api/{resources/paymentLink/types/PaymentPageRequestBody.mjs → types/OcrBillItemAdditionalData.mjs} +0 -0
- /package/dist/esm/api/{resources/paymentLink/types/PaymentPageRequestBodyOut.mjs → types/OcrResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutPaymentDetail.mjs → types/OcrResultData.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutScheduleDetail.mjs → types/OcrVendor.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/OcrVendorAdditionalData.d.mts +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSetPause.mjs → types/OcrVendorAdditionalData.mjs} +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/OcrVendorBillingData.d.mts +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecord.mjs → types/OcrVendorBillingData.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/OperationResult.d.mts +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionQueryRecordPascal.mjs → types/OperationResult.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/PayoutSubscriptionRequestBody.mjs → types/OrganizationQueryRecordServicesItem.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/QueryPayoutSubscriptionResponse.mjs → types/PayabliApiResponse0ResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionBody.mjs → types/PayabliApiResponseGetPaid.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types/UpdatePayoutSubscriptionResponse.mjs → types/PayabliApiResponseImportResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types/PaypointMoveRequest.mjs → types/PayabliApiResponseNotificationsResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/paypoint/types/WebHeaderParameter.mjs → types/PayabliApiResponseOcr.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesDetailResponse.mjs → types/PayabliApiResponsePaymentLinks.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesResponse.mjs → types/PayabliApiResponsePaymethodDeleteResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryBatchesTransfer.mjs → types/PayabliErrorBody.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyOutTypes/types → types}/PaymentLinkStatus.mjs +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryDeviceResponse.mjs → types/PaymentPageRequestBodyOut.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types → types}/PayoutPaymentDetail.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryTransferDetailResponse.mjs → types/PayoutPaymentDetail.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryTransferResponse.mjs → types/PayoutScheduleDetail.mjs} +0 -0
- /package/dist/esm/api/{resources/payoutSubscription/types → types}/PayoutSetPause.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/QueryTransferSummary.mjs → types/PayoutSetPause.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutBankAccount.mjs → types/PayoutSubscriptionQueryRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailBill.mjs → types/PayoutSubscriptionQueryRecordPascal.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailBillAttachment.mjs → types/PushPayLinkRequestEmail.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailCheckData.mjs → types/PushPayLinkRequestSms.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailEvent.mjs → types/QueryBatchesDetailResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailPaymentData.mjs → types/QueryBatchesOutResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailQueryResponse.mjs → types/QueryBatchesResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailRecord.mjs → types/QueryBatchesResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/QueryBatchesTransfer.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailVendor.mjs → types/QueryBatchesTransfer.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutDetailVendorBillingData.mjs → types/QueryBoardingLinksResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutEventData.mjs → types/QueryChargebacksResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutMessage.mjs → types/QueryDeviceResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutMessageProperties.mjs → types/QueryEntrypointResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutQueryResponse.mjs → types/QueryInvoiceResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutRecord.mjs → types/QueryInvoiceResponseRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/TransferOutSummary.mjs → types/QueryPayoutSubscriptionResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/VCardTransactionQueryResponse.mjs → types/QueryPayoutTransactionRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types/VCardTransactionRecord.mjs → types/QueryPayoutTransactionRecordsItemPaymentData.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types/StatBasicExtendedQueryRecord.mjs → types/QueryPayoutTransactionSummary.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types/StatBasicQueryRecord.mjs → types/QueryResponseItemsRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types/StatisticsVendorQueryRecord.mjs → types/QueryResponseNotificationReportsRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types/SubscriptionStatsQueryRecord.mjs → types/QueryResponseNotificationsRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types/AddSubscriptionResponse.mjs → types/QueryResponseSettlementsRecordsItem.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types/RemoveSubscriptionResponse.mjs → types/QueryResponseSettlementsSummary.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types/SetPause.mjs → types/QueryTransactionEventsEventData.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types/SubscriptionRequestBody.mjs → types/QueryTransferDetailResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types/UpdateSubscriptionResponse.mjs → types/QueryTransferSummary.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/AddMethodResponse.mjs → types/ReceiptResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/ConvertToken.mjs → types/RefundResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/CreateAnonymous.mjs → types/RefundWithInstructionsResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/RequestTokenStorage.mjs → types/ReissuePaymentMethod.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/RequestTokenStoragePaymentMethod.mjs → types/ReissuePayoutResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/Temporary.mjs → types/ReissuePayoutResponseData.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/TokenizeAch.mjs → types/RemoveDeviceResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/TokenizeCard.mjs → types/RemoveSubscriptionResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types/VendorDataRequest.mjs → types/RequestOutAuthorizeInvoiceData.mjs} +0 -0
- /package/dist/esm/api/{resources/user/types/AddUserResponse.mjs → types/RequestOutAuthorizePaymentDetails.mjs} +0 -0
- /package/dist/esm/api/{resources/user/types/AuthResetUserResponse.mjs → types/RequestOutAuthorizeVendorBillingData.mjs} +0 -0
- /package/dist/esm/api/{resources/user/types/ChangePswUserResponse.mjs → types/RequestOutAuthorizeVendorData.mjs} +0 -0
- /package/dist/esm/api/{resources/user/types/DeleteUserResponse.mjs → types/RequestPaymentValidatePaymentMethod.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2BadRequestError.mjs → types/RequestSchedulePaymentMethod.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2BadRequestErrorDetail.mjs → types/RequestSchedulePaymentMethodInitiator.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2DeclinedTransactionResponseWrapper.mjs → types/RequestTokenStorage.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2InternalServerError.mjs → types/RequestTokenStoragePaymentMethod.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseAction.mjs → types/ResponseDataRefunds.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseCode.mjs → types/ReverseResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseExplanation.mjs → types/SendInvoiceResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2ResponseReason.mjs → types/SetApprovedBillResponse.mjs} +0 -0
- /package/dist/esm/api/{resources/subscription/types → types}/SetPause.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionDetailResponseData.mjs → types/SetPause.mjs} +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionDetails.mjs → types/StatBasicExtendedQueryRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types → types}/StatBasicQueryRecord.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types/V2TransactionResponseWrapper.mjs → types/StatBasicQueryRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types → types}/StatisticsVendorQueryRecord.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichRequest.mjs → types/StatisticsVendorQueryRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/notificationlogs/types → types}/StringStringKeyValuePair.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichResponse.mjs → types/StringStringKeyValuePair.mjs} +0 -0
- /package/dist/esm/api/{resources/statistic/types → types}/SubscriptionStatsQueryRecord.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichResponseData.mjs → types/SubscriptionStatsQueryRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types → types}/Temporary.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentData.mjs → types/Temporary.mjs} +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentInvoiceScan.mjs → types/TokenizeAch.mjs} +0 -0
- /package/dist/esm/api/{resources/vendor/types/VendorEnrichmentWebSearch.mjs → types/TokenizeCard.mjs} +0 -0
- /package/dist/esm/api/types/{AchPaymentMethod.mjs → TransRequestBody.mjs} +0 -0
- /package/dist/esm/api/types/{DeviceId.mjs → TransactionDetailCustomer.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailEvent.d.mts +0 -0
- /package/dist/esm/api/types/{PayabliApiResponseError400.mjs → TransactionDetailEvent.mjs} +0 -0
- /package/dist/esm/api/types/{PayabliApiResponsePaylinks.mjs → TransactionDetailInvoiceData.mjs} +0 -0
- /package/dist/esm/api/types/{PaymentTransStatusDescription.mjs → TransactionDetailPaymentData.mjs} +0 -0
- /package/dist/esm/api/types/{Paymentid.mjs → TransactionDetailPaymentDetails.mjs} +0 -0
- /package/dist/esm/api/types/{QueryResponse.mjs → TransactionDetailRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.d.mts +0 -0
- /package/dist/esm/api/{resources/moneyIn/types → types}/TransactionDetailRecordMethod.mjs +0 -0
- /package/dist/esm/api/types/{TemplateContent.mjs → TransactionDetailResponseData.mjs} +0 -0
- /package/dist/esm/api/types/{TemplateData.mjs → TransferDetailRecord.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutBankAccount.d.mts +0 -0
- /package/dist/esm/api/types/{UnderwritingData.mjs → TransferOutBankAccount.mjs} +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailBillAttachment.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailCheckData.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailEvent.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailPaymentData.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutDetailVendorBillingData.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutEventData.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutMessageProperties.d.mts +0 -0
- /package/dist/esm/api/{resources/queryTypes/types → types}/TransferOutSummary.d.mts +0 -0
- /package/dist/esm/api/{resources/ocr/types → types}/TypeResult.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2BadRequestErrorDetail.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseAction.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseCode.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseExplanation.d.mts +0 -0
- /package/dist/esm/api/{resources/v2MoneyInTypes/types → types}/V2ResponseReason.d.mts +0 -0
- /package/dist/esm/api/{resources/tokenStorage/types → types}/VendorDataRequest.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types → types}/VendorEnrichmentInvoiceScan.d.mts +0 -0
- /package/dist/esm/api/{resources/vendor/types → types}/VendorEnrichmentWebSearch.d.mts +0 -0
- /package/dist/esm/api/{resources/paypoint/types → types}/WebHeaderParameter.d.mts +0 -0
|
@@ -52,13 +52,20 @@ const environments = __importStar(require("../../../../environments.js"));
|
|
|
52
52
|
const handleNonStatusCodeError_js_1 = require("../../../../errors/handleNonStatusCodeError.js");
|
|
53
53
|
const errors = __importStar(require("../../../../errors/index.js"));
|
|
54
54
|
const Payabli = __importStar(require("../../../index.js"));
|
|
55
|
+
/**
|
|
56
|
+
* The Export service provides document and report generation capabilities for various business documents and data sets. It handles invoice PDF generation with customizable templates and branding, check image retrieval for completed payout transactions, and generated report file access for scheduled reports. The service supports multiple export formats and ensures proper document formatting for business use including logos, itemization, and payment details. Exported documents maintain proper audit trails and can be retrieved programmatically for integration with document management systems or accounting software.
|
|
57
|
+
*/
|
|
55
58
|
class ExportClient {
|
|
56
|
-
constructor(options
|
|
59
|
+
constructor(options) {
|
|
57
60
|
this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
|
|
58
61
|
}
|
|
59
62
|
/**
|
|
60
63
|
* @deprecated
|
|
61
64
|
*
|
|
65
|
+
* <Warning>
|
|
66
|
+
* This endpoint is deprecated. To export this data, use [List all apps for org](/developers/api-reference/boarding/get-list-of-applications-for-an-organization) with the `exportFormat` query parameter instead.
|
|
67
|
+
* </Warning>
|
|
68
|
+
*
|
|
62
69
|
* Export a list of boarding applications for an organization. Use filters to limit results.
|
|
63
70
|
*
|
|
64
71
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -97,7 +104,11 @@ class ExportClient {
|
|
|
97
104
|
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, `Export/boarding/${core.url.encodePathParam(format)}/${core.url.encodePathParam(orgId)}`),
|
|
98
105
|
method: "GET",
|
|
99
106
|
headers: _headers,
|
|
100
|
-
|
|
107
|
+
queryString: core.url
|
|
108
|
+
.queryBuilder()
|
|
109
|
+
.addMany(_queryParams)
|
|
110
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
111
|
+
.build(),
|
|
101
112
|
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,
|
|
102
113
|
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,
|
|
103
114
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -131,7 +142,11 @@ class ExportClient {
|
|
|
131
142
|
/**
|
|
132
143
|
* @deprecated
|
|
133
144
|
*
|
|
134
|
-
*
|
|
145
|
+
* <Warning>
|
|
146
|
+
* This endpoint is deprecated. To export this data, use [List batch details](/developers/api-reference/query/get-list-of-batchdetails-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
147
|
+
* </Warning>
|
|
148
|
+
*
|
|
149
|
+
* Export batch details for a paypoint. Use filters to limit results.
|
|
135
150
|
*
|
|
136
151
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
137
152
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
@@ -169,7 +184,11 @@ class ExportClient {
|
|
|
169
184
|
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, `Export/batchDetails/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
170
185
|
method: "GET",
|
|
171
186
|
headers: _headers,
|
|
172
|
-
|
|
187
|
+
queryString: core.url
|
|
188
|
+
.queryBuilder()
|
|
189
|
+
.addMany(_queryParams)
|
|
190
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
191
|
+
.build(),
|
|
173
192
|
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,
|
|
174
193
|
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,
|
|
175
194
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -203,7 +222,11 @@ class ExportClient {
|
|
|
203
222
|
/**
|
|
204
223
|
* @deprecated
|
|
205
224
|
*
|
|
206
|
-
*
|
|
225
|
+
* <Warning>
|
|
226
|
+
* This endpoint is deprecated. To export this data, use [List batch details for org](/developers/api-reference/query/get-list-of-batchdetails-for-an-organization) with the `exportFormat` query parameter instead.
|
|
227
|
+
* </Warning>
|
|
228
|
+
*
|
|
229
|
+
* Export batch details for an organization. Use filters to limit results.
|
|
207
230
|
*
|
|
208
231
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
209
232
|
* @param {number} orgId - The numeric identifier for organization, assigned by Payabli.
|
|
@@ -241,7 +264,11 @@ class ExportClient {
|
|
|
241
264
|
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, `Export/batchDetails/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
242
265
|
method: "GET",
|
|
243
266
|
headers: _headers,
|
|
244
|
-
|
|
267
|
+
queryString: core.url
|
|
268
|
+
.queryBuilder()
|
|
269
|
+
.addMany(_queryParams)
|
|
270
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
271
|
+
.build(),
|
|
245
272
|
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,
|
|
246
273
|
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,
|
|
247
274
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -275,6 +302,10 @@ class ExportClient {
|
|
|
275
302
|
/**
|
|
276
303
|
* @deprecated
|
|
277
304
|
*
|
|
305
|
+
* <Warning>
|
|
306
|
+
* This endpoint is deprecated. To export this data, use [List batches for paypoint](/developers/api-reference/query/get-list-of-batches-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
307
|
+
* </Warning>
|
|
308
|
+
*
|
|
278
309
|
* Export a list of batches for an entrypoint. Use filters to limit results.
|
|
279
310
|
*
|
|
280
311
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -313,7 +344,11 @@ class ExportClient {
|
|
|
313
344
|
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, `Export/batches/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
314
345
|
method: "GET",
|
|
315
346
|
headers: _headers,
|
|
316
|
-
|
|
347
|
+
queryString: core.url
|
|
348
|
+
.queryBuilder()
|
|
349
|
+
.addMany(_queryParams)
|
|
350
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
351
|
+
.build(),
|
|
317
352
|
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,
|
|
318
353
|
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,
|
|
319
354
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -347,6 +382,10 @@ class ExportClient {
|
|
|
347
382
|
/**
|
|
348
383
|
* @deprecated
|
|
349
384
|
*
|
|
385
|
+
* <Warning>
|
|
386
|
+
* This endpoint is deprecated. To export this data, use [List batches for org](/developers/api-reference/query/get-list-of-batches-for-an-organization) with the `exportFormat` query parameter instead.
|
|
387
|
+
* </Warning>
|
|
388
|
+
*
|
|
350
389
|
* Export a list of batches for an organization. Use filters to limit results.
|
|
351
390
|
*
|
|
352
391
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -385,7 +424,11 @@ class ExportClient {
|
|
|
385
424
|
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, `Export/batches/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
386
425
|
method: "GET",
|
|
387
426
|
headers: _headers,
|
|
388
|
-
|
|
427
|
+
queryString: core.url
|
|
428
|
+
.queryBuilder()
|
|
429
|
+
.addMany(_queryParams)
|
|
430
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
431
|
+
.build(),
|
|
389
432
|
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,
|
|
390
433
|
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,
|
|
391
434
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -419,6 +462,10 @@ class ExportClient {
|
|
|
419
462
|
/**
|
|
420
463
|
* @deprecated
|
|
421
464
|
*
|
|
465
|
+
* <Warning>
|
|
466
|
+
* This endpoint is deprecated. To export this data, use [List payout batches for paypoint](/developers/api-reference/query/get-list-of-moneyout-batches-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
467
|
+
* </Warning>
|
|
468
|
+
*
|
|
422
469
|
* Export a list of money out batches for a paypoint. Use filters to limit results.
|
|
423
470
|
*
|
|
424
471
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -457,7 +504,11 @@ class ExportClient {
|
|
|
457
504
|
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, `Export/batchesOut/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
458
505
|
method: "GET",
|
|
459
506
|
headers: _headers,
|
|
460
|
-
|
|
507
|
+
queryString: core.url
|
|
508
|
+
.queryBuilder()
|
|
509
|
+
.addMany(_queryParams)
|
|
510
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
511
|
+
.build(),
|
|
461
512
|
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,
|
|
462
513
|
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,
|
|
463
514
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -491,6 +542,10 @@ class ExportClient {
|
|
|
491
542
|
/**
|
|
492
543
|
* @deprecated
|
|
493
544
|
*
|
|
545
|
+
* <Warning>
|
|
546
|
+
* This endpoint is deprecated. To export this data, use [List payout batches for org](/developers/api-reference/query/get-list-of-moneyout-batches-for-an-org) with the `exportFormat` query parameter instead.
|
|
547
|
+
* </Warning>
|
|
548
|
+
*
|
|
494
549
|
* Export a list of money out batches for an organization. Use filters to limit results.
|
|
495
550
|
*
|
|
496
551
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -529,7 +584,11 @@ class ExportClient {
|
|
|
529
584
|
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, `Export/batchesOut/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
530
585
|
method: "GET",
|
|
531
586
|
headers: _headers,
|
|
532
|
-
|
|
587
|
+
queryString: core.url
|
|
588
|
+
.queryBuilder()
|
|
589
|
+
.addMany(_queryParams)
|
|
590
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
591
|
+
.build(),
|
|
533
592
|
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,
|
|
534
593
|
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,
|
|
535
594
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -563,6 +622,10 @@ class ExportClient {
|
|
|
563
622
|
/**
|
|
564
623
|
* @deprecated
|
|
565
624
|
*
|
|
625
|
+
* <Warning>
|
|
626
|
+
* This endpoint is deprecated. To export this data, use [List bills by paypoint](/developers/api-reference/bill/get-list-of-bills-for-entrypoint) with the `exportFormat` query parameter instead.
|
|
627
|
+
* </Warning>
|
|
628
|
+
*
|
|
566
629
|
* Export a list of bills for an entrypoint. Use filters to limit results.
|
|
567
630
|
*
|
|
568
631
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -601,7 +664,11 @@ class ExportClient {
|
|
|
601
664
|
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, `Export/bills/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
602
665
|
method: "GET",
|
|
603
666
|
headers: _headers,
|
|
604
|
-
|
|
667
|
+
queryString: core.url
|
|
668
|
+
.queryBuilder()
|
|
669
|
+
.addMany(_queryParams)
|
|
670
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
671
|
+
.build(),
|
|
605
672
|
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,
|
|
606
673
|
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,
|
|
607
674
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -635,6 +702,10 @@ class ExportClient {
|
|
|
635
702
|
/**
|
|
636
703
|
* @deprecated
|
|
637
704
|
*
|
|
705
|
+
* <Warning>
|
|
706
|
+
* This endpoint is deprecated. To export this data, use [List bills by organization](/developers/api-reference/bill/get-list-of-bills-for-organization) with the `exportFormat` query parameter instead.
|
|
707
|
+
* </Warning>
|
|
708
|
+
*
|
|
638
709
|
* Export a list of bills for an organization. Use filters to limit results.
|
|
639
710
|
*
|
|
640
711
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -673,7 +744,11 @@ class ExportClient {
|
|
|
673
744
|
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, `Export/bills/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
674
745
|
method: "GET",
|
|
675
746
|
headers: _headers,
|
|
676
|
-
|
|
747
|
+
queryString: core.url
|
|
748
|
+
.queryBuilder()
|
|
749
|
+
.addMany(_queryParams)
|
|
750
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
751
|
+
.build(),
|
|
677
752
|
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,
|
|
678
753
|
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,
|
|
679
754
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -707,6 +782,10 @@ class ExportClient {
|
|
|
707
782
|
/**
|
|
708
783
|
* @deprecated
|
|
709
784
|
*
|
|
785
|
+
* <Warning>
|
|
786
|
+
* This endpoint is deprecated. To export this data, use [List disputes by paypoint](/developers/api-reference/chargebacks/get-list-of-chargebacks-and-returned-transactions-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
787
|
+
* </Warning>
|
|
788
|
+
*
|
|
710
789
|
* Export a list of chargebacks and ACH returns for an entrypoint. Use filters to limit results.
|
|
711
790
|
*
|
|
712
791
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -745,7 +824,11 @@ class ExportClient {
|
|
|
745
824
|
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, `Export/chargebacks/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
746
825
|
method: "GET",
|
|
747
826
|
headers: _headers,
|
|
748
|
-
|
|
827
|
+
queryString: core.url
|
|
828
|
+
.queryBuilder()
|
|
829
|
+
.addMany(_queryParams)
|
|
830
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
831
|
+
.build(),
|
|
749
832
|
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,
|
|
750
833
|
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,
|
|
751
834
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -779,6 +862,10 @@ class ExportClient {
|
|
|
779
862
|
/**
|
|
780
863
|
* @deprecated
|
|
781
864
|
*
|
|
865
|
+
* <Warning>
|
|
866
|
+
* This endpoint is deprecated. To export this data, use [List disputes by organization](/developers/api-reference/chargebacks/get-list-of-chargebacks-and-returned-transactions-for-an-org) with the `exportFormat` query parameter instead.
|
|
867
|
+
* </Warning>
|
|
868
|
+
*
|
|
782
869
|
* Export a list of chargebacks and ACH returns for an organization. Use filters to limit results.
|
|
783
870
|
*
|
|
784
871
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -817,7 +904,11 @@ class ExportClient {
|
|
|
817
904
|
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, `Export/chargebacks/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
818
905
|
method: "GET",
|
|
819
906
|
headers: _headers,
|
|
820
|
-
|
|
907
|
+
queryString: core.url
|
|
908
|
+
.queryBuilder()
|
|
909
|
+
.addMany(_queryParams)
|
|
910
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
911
|
+
.build(),
|
|
821
912
|
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,
|
|
822
913
|
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,
|
|
823
914
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -851,6 +942,10 @@ class ExportClient {
|
|
|
851
942
|
/**
|
|
852
943
|
* @deprecated
|
|
853
944
|
*
|
|
945
|
+
* <Warning>
|
|
946
|
+
* This endpoint is deprecated. To export this data, use [List customers by paypoint](/developers/api-reference/customer/get-list-of-customers-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
947
|
+
* </Warning>
|
|
948
|
+
*
|
|
854
949
|
* Export a list of customers for an entrypoint. Use filters to limit results.
|
|
855
950
|
*
|
|
856
951
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -889,7 +984,11 @@ class ExportClient {
|
|
|
889
984
|
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, `Export/customers/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
890
985
|
method: "GET",
|
|
891
986
|
headers: _headers,
|
|
892
|
-
|
|
987
|
+
queryString: core.url
|
|
988
|
+
.queryBuilder()
|
|
989
|
+
.addMany(_queryParams)
|
|
990
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
991
|
+
.build(),
|
|
893
992
|
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,
|
|
894
993
|
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,
|
|
895
994
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -923,6 +1022,10 @@ class ExportClient {
|
|
|
923
1022
|
/**
|
|
924
1023
|
* @deprecated
|
|
925
1024
|
*
|
|
1025
|
+
* <Warning>
|
|
1026
|
+
* This endpoint is deprecated. To export this data, use [List customers by organization](/developers/api-reference/customer/get-list-of-customers-for-an-organization) with the `exportFormat` query parameter instead.
|
|
1027
|
+
* </Warning>
|
|
1028
|
+
*
|
|
926
1029
|
* Exports a list of customers for an organization. Use filters to limit results.
|
|
927
1030
|
*
|
|
928
1031
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -961,7 +1064,11 @@ class ExportClient {
|
|
|
961
1064
|
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, `Export/customers/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
962
1065
|
method: "GET",
|
|
963
1066
|
headers: _headers,
|
|
964
|
-
|
|
1067
|
+
queryString: core.url
|
|
1068
|
+
.queryBuilder()
|
|
1069
|
+
.addMany(_queryParams)
|
|
1070
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1071
|
+
.build(),
|
|
965
1072
|
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,
|
|
966
1073
|
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,
|
|
967
1074
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -995,6 +1102,10 @@ class ExportClient {
|
|
|
995
1102
|
/**
|
|
996
1103
|
* @deprecated
|
|
997
1104
|
*
|
|
1105
|
+
* <Warning>
|
|
1106
|
+
* This endpoint is deprecated. To export this data, use [List invoices by paypoint](/developers/api-reference/invoice/get-list-of-invoices-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
1107
|
+
* </Warning>
|
|
1108
|
+
*
|
|
998
1109
|
* Export list of invoices for an entrypoint. Use filters to limit results.
|
|
999
1110
|
*
|
|
1000
1111
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1033,7 +1144,11 @@ class ExportClient {
|
|
|
1033
1144
|
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, `Export/invoices/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
1034
1145
|
method: "GET",
|
|
1035
1146
|
headers: _headers,
|
|
1036
|
-
|
|
1147
|
+
queryString: core.url
|
|
1148
|
+
.queryBuilder()
|
|
1149
|
+
.addMany(_queryParams)
|
|
1150
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1151
|
+
.build(),
|
|
1037
1152
|
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,
|
|
1038
1153
|
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,
|
|
1039
1154
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1067,6 +1182,10 @@ class ExportClient {
|
|
|
1067
1182
|
/**
|
|
1068
1183
|
* @deprecated
|
|
1069
1184
|
*
|
|
1185
|
+
* <Warning>
|
|
1186
|
+
* This endpoint is deprecated. To export this data, use [List invoices by organization](/developers/api-reference/invoice/get-list-of-invoices-for-an-organization) with the `exportFormat` query parameter instead.
|
|
1187
|
+
* </Warning>
|
|
1188
|
+
*
|
|
1070
1189
|
* Export a list of invoices for an organization. Use filters to limit results.
|
|
1071
1190
|
*
|
|
1072
1191
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1105,7 +1224,11 @@ class ExportClient {
|
|
|
1105
1224
|
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, `Export/invoices/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1106
1225
|
method: "GET",
|
|
1107
1226
|
headers: _headers,
|
|
1108
|
-
|
|
1227
|
+
queryString: core.url
|
|
1228
|
+
.queryBuilder()
|
|
1229
|
+
.addMany(_queryParams)
|
|
1230
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1231
|
+
.build(),
|
|
1109
1232
|
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,
|
|
1110
1233
|
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,
|
|
1111
1234
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1139,6 +1262,10 @@ class ExportClient {
|
|
|
1139
1262
|
/**
|
|
1140
1263
|
* @deprecated
|
|
1141
1264
|
*
|
|
1265
|
+
* <Warning>
|
|
1266
|
+
* This endpoint is deprecated. To export this data, use [List suborganizations by organization](/developers/api-reference/organization/get-list-of-organizations-for-entrypoint) with the `exportFormat` query parameter instead.
|
|
1267
|
+
* </Warning>
|
|
1268
|
+
*
|
|
1142
1269
|
* Export a list of child organizations (suborganizations) for a parent organization.
|
|
1143
1270
|
*
|
|
1144
1271
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1177,7 +1304,11 @@ class ExportClient {
|
|
|
1177
1304
|
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, `Export/organizations/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1178
1305
|
method: "GET",
|
|
1179
1306
|
headers: _headers,
|
|
1180
|
-
|
|
1307
|
+
queryString: core.url
|
|
1308
|
+
.queryBuilder()
|
|
1309
|
+
.addMany(_queryParams)
|
|
1310
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1311
|
+
.build(),
|
|
1181
1312
|
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,
|
|
1182
1313
|
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,
|
|
1183
1314
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1211,6 +1342,10 @@ class ExportClient {
|
|
|
1211
1342
|
/**
|
|
1212
1343
|
* @deprecated
|
|
1213
1344
|
*
|
|
1345
|
+
* <Warning>
|
|
1346
|
+
* This endpoint is deprecated. To export this data, use [List payouts by paypoint](/developers/api-reference/query/get-list-of-payouts-for-entrypoint) with the `exportFormat` query parameter instead.
|
|
1347
|
+
* </Warning>
|
|
1348
|
+
*
|
|
1214
1349
|
* Export a list of payouts and their statuses for an entrypoint. Use filters to limit results.
|
|
1215
1350
|
*
|
|
1216
1351
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1249,7 +1384,11 @@ class ExportClient {
|
|
|
1249
1384
|
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, `Export/payouts/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
1250
1385
|
method: "GET",
|
|
1251
1386
|
headers: _headers,
|
|
1252
|
-
|
|
1387
|
+
queryString: core.url
|
|
1388
|
+
.queryBuilder()
|
|
1389
|
+
.addMany(_queryParams)
|
|
1390
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1391
|
+
.build(),
|
|
1253
1392
|
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,
|
|
1254
1393
|
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,
|
|
1255
1394
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1283,6 +1422,10 @@ class ExportClient {
|
|
|
1283
1422
|
/**
|
|
1284
1423
|
* @deprecated
|
|
1285
1424
|
*
|
|
1425
|
+
* <Warning>
|
|
1426
|
+
* This endpoint is deprecated. To export this data, use [List payouts by org](/developers/api-reference/query/get-list-of-payouts-for-organization) with the `exportFormat` query parameter instead.
|
|
1427
|
+
* </Warning>
|
|
1428
|
+
*
|
|
1286
1429
|
* Export a list of payouts and their details for an organization. Use filters to limit results.
|
|
1287
1430
|
*
|
|
1288
1431
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1321,7 +1464,11 @@ class ExportClient {
|
|
|
1321
1464
|
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, `Export/payouts/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1322
1465
|
method: "GET",
|
|
1323
1466
|
headers: _headers,
|
|
1324
|
-
|
|
1467
|
+
queryString: core.url
|
|
1468
|
+
.queryBuilder()
|
|
1469
|
+
.addMany(_queryParams)
|
|
1470
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1471
|
+
.build(),
|
|
1325
1472
|
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,
|
|
1326
1473
|
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,
|
|
1327
1474
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1355,6 +1502,10 @@ class ExportClient {
|
|
|
1355
1502
|
/**
|
|
1356
1503
|
* @deprecated
|
|
1357
1504
|
*
|
|
1505
|
+
* <Warning>
|
|
1506
|
+
* This endpoint is deprecated. To export this data, use [List paypoints by organization](/developers/api-reference/paypoint/get-list-of-paypoints-for-an-organization) with the `exportFormat` query parameter instead.
|
|
1507
|
+
* </Warning>
|
|
1508
|
+
*
|
|
1358
1509
|
* Export a list of paypoints in an organization. Use filters to limit results.
|
|
1359
1510
|
*
|
|
1360
1511
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1393,7 +1544,11 @@ class ExportClient {
|
|
|
1393
1544
|
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, `Export/paypoints/${core.url.encodePathParam(format)}/${core.url.encodePathParam(orgId)}`),
|
|
1394
1545
|
method: "GET",
|
|
1395
1546
|
headers: _headers,
|
|
1396
|
-
|
|
1547
|
+
queryString: core.url
|
|
1548
|
+
.queryBuilder()
|
|
1549
|
+
.addMany(_queryParams)
|
|
1550
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1551
|
+
.build(),
|
|
1397
1552
|
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,
|
|
1398
1553
|
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,
|
|
1399
1554
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1427,6 +1582,10 @@ class ExportClient {
|
|
|
1427
1582
|
/**
|
|
1428
1583
|
* @deprecated
|
|
1429
1584
|
*
|
|
1585
|
+
* <Warning>
|
|
1586
|
+
* This endpoint is deprecated. To export this data, use [List settled transactions for paypoint](/developers/api-reference/query/get-list-of-settled-transactions-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
1587
|
+
* </Warning>
|
|
1588
|
+
*
|
|
1430
1589
|
* Export a list of settled transactions for an entrypoint. Use filters to limit results.
|
|
1431
1590
|
*
|
|
1432
1591
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1465,7 +1624,11 @@ class ExportClient {
|
|
|
1465
1624
|
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, `Export/settlements/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
1466
1625
|
method: "GET",
|
|
1467
1626
|
headers: _headers,
|
|
1468
|
-
|
|
1627
|
+
queryString: core.url
|
|
1628
|
+
.queryBuilder()
|
|
1629
|
+
.addMany(_queryParams)
|
|
1630
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1631
|
+
.build(),
|
|
1469
1632
|
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,
|
|
1470
1633
|
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,
|
|
1471
1634
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1499,6 +1662,10 @@ class ExportClient {
|
|
|
1499
1662
|
/**
|
|
1500
1663
|
* @deprecated
|
|
1501
1664
|
*
|
|
1665
|
+
* <Warning>
|
|
1666
|
+
* This endpoint is deprecated. To export this data, use [List settled transactions for org](/developers/api-reference/query/get-list-of-settled-transactions-for-an-org) with the `exportFormat` query parameter instead.
|
|
1667
|
+
* </Warning>
|
|
1668
|
+
*
|
|
1502
1669
|
* Export a list of settled transactions for an organization. Use filters to limit results.
|
|
1503
1670
|
*
|
|
1504
1671
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1537,7 +1704,11 @@ class ExportClient {
|
|
|
1537
1704
|
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, `Export/settlements/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1538
1705
|
method: "GET",
|
|
1539
1706
|
headers: _headers,
|
|
1540
|
-
|
|
1707
|
+
queryString: core.url
|
|
1708
|
+
.queryBuilder()
|
|
1709
|
+
.addMany(_queryParams)
|
|
1710
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1711
|
+
.build(),
|
|
1541
1712
|
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,
|
|
1542
1713
|
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,
|
|
1543
1714
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1571,6 +1742,10 @@ class ExportClient {
|
|
|
1571
1742
|
/**
|
|
1572
1743
|
* @deprecated
|
|
1573
1744
|
*
|
|
1745
|
+
* <Warning>
|
|
1746
|
+
* This endpoint is deprecated. To export this data, use [List subscriptions by paypoint](/developers/api-reference/subscription/get-list-of-subscriptions-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
1747
|
+
* </Warning>
|
|
1748
|
+
*
|
|
1574
1749
|
* Export a list of subscriptions for an entrypoint. Use filters to limit results.
|
|
1575
1750
|
*
|
|
1576
1751
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1609,7 +1784,11 @@ class ExportClient {
|
|
|
1609
1784
|
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, `Export/subscriptions/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
1610
1785
|
method: "GET",
|
|
1611
1786
|
headers: _headers,
|
|
1612
|
-
|
|
1787
|
+
queryString: core.url
|
|
1788
|
+
.queryBuilder()
|
|
1789
|
+
.addMany(_queryParams)
|
|
1790
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1791
|
+
.build(),
|
|
1613
1792
|
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,
|
|
1614
1793
|
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,
|
|
1615
1794
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1643,6 +1822,10 @@ class ExportClient {
|
|
|
1643
1822
|
/**
|
|
1644
1823
|
* @deprecated
|
|
1645
1824
|
*
|
|
1825
|
+
* <Warning>
|
|
1826
|
+
* This endpoint is deprecated. To export this data, use [List subscriptions by organization](/developers/api-reference/subscription/get-list-of-subscriptions-for-an-org) with the `exportFormat` query parameter instead.
|
|
1827
|
+
* </Warning>
|
|
1828
|
+
*
|
|
1646
1829
|
* Export a list of subscriptions for an organization. Use filters to limit results.
|
|
1647
1830
|
*
|
|
1648
1831
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1681,7 +1864,11 @@ class ExportClient {
|
|
|
1681
1864
|
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, `Export/subscriptions/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1682
1865
|
method: "GET",
|
|
1683
1866
|
headers: _headers,
|
|
1684
|
-
|
|
1867
|
+
queryString: core.url
|
|
1868
|
+
.queryBuilder()
|
|
1869
|
+
.addMany(_queryParams)
|
|
1870
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1871
|
+
.build(),
|
|
1685
1872
|
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,
|
|
1686
1873
|
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,
|
|
1687
1874
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1715,7 +1902,11 @@ class ExportClient {
|
|
|
1715
1902
|
/**
|
|
1716
1903
|
* @deprecated
|
|
1717
1904
|
*
|
|
1718
|
-
*
|
|
1905
|
+
* <Warning>
|
|
1906
|
+
* This endpoint is deprecated. To export this data, use [List transactions for paypoint](/developers/api-reference/query/get-list-of-transactions-for-an-entrypoint) with the `exportFormat` query parameter instead.
|
|
1907
|
+
* </Warning>
|
|
1908
|
+
*
|
|
1909
|
+
* Export a list of transactions for an entrypoint 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.
|
|
1719
1910
|
*
|
|
1720
1911
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
1721
1912
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
@@ -1753,7 +1944,11 @@ class ExportClient {
|
|
|
1753
1944
|
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, `Export/transactions/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
1754
1945
|
method: "GET",
|
|
1755
1946
|
headers: _headers,
|
|
1756
|
-
|
|
1947
|
+
queryString: core.url
|
|
1948
|
+
.queryBuilder()
|
|
1949
|
+
.addMany(_queryParams)
|
|
1950
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
1951
|
+
.build(),
|
|
1757
1952
|
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,
|
|
1758
1953
|
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,
|
|
1759
1954
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1787,6 +1982,10 @@ class ExportClient {
|
|
|
1787
1982
|
/**
|
|
1788
1983
|
* @deprecated
|
|
1789
1984
|
*
|
|
1985
|
+
* <Warning>
|
|
1986
|
+
* This endpoint is deprecated. To export this data, use [List transactions for org](/developers/api-reference/query/get-list-of-transactions-for-an-organization) with the `exportFormat` query parameter instead.
|
|
1987
|
+
* </Warning>
|
|
1988
|
+
*
|
|
1790
1989
|
* 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.
|
|
1791
1990
|
*
|
|
1792
1991
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1825,7 +2024,11 @@ class ExportClient {
|
|
|
1825
2024
|
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, `Export/transactions/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
1826
2025
|
method: "GET",
|
|
1827
2026
|
headers: _headers,
|
|
1828
|
-
|
|
2027
|
+
queryString: core.url
|
|
2028
|
+
.queryBuilder()
|
|
2029
|
+
.addMany(_queryParams)
|
|
2030
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
2031
|
+
.build(),
|
|
1829
2032
|
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,
|
|
1830
2033
|
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,
|
|
1831
2034
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1859,6 +2062,10 @@ class ExportClient {
|
|
|
1859
2062
|
/**
|
|
1860
2063
|
* @deprecated
|
|
1861
2064
|
*
|
|
2065
|
+
* <Warning>
|
|
2066
|
+
* This endpoint is deprecated. To export this data, use [Get transfer details](/developers/api-reference/query/get-list-of-transfer-details) with the `exportFormat` query parameter instead.
|
|
2067
|
+
* </Warning>
|
|
2068
|
+
*
|
|
1862
2069
|
* Export a list of transfer details for an entrypoint. Use filters to limit results.
|
|
1863
2070
|
*
|
|
1864
2071
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -1873,7 +2080,7 @@ class ExportClient {
|
|
|
1873
2080
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
1874
2081
|
*
|
|
1875
2082
|
* @example
|
|
1876
|
-
* await client.export.exportTransferDetails("csv", "8cfec329267",
|
|
2083
|
+
* await client.export.exportTransferDetails("csv", "8cfec329267", 4521, {
|
|
1877
2084
|
* columnsExport: "BatchDate:Batch_Date,PaypointName:Legal_name",
|
|
1878
2085
|
* fromRecord: 251,
|
|
1879
2086
|
* limitRecord: 1000,
|
|
@@ -1900,7 +2107,11 @@ class ExportClient {
|
|
|
1900
2107
|
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, `Export/transferDetails/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(transferId)}`),
|
|
1901
2108
|
method: "GET",
|
|
1902
2109
|
headers: _headers,
|
|
1903
|
-
|
|
2110
|
+
queryString: core.url
|
|
2111
|
+
.queryBuilder()
|
|
2112
|
+
.addMany(_queryParams)
|
|
2113
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
2114
|
+
.build(),
|
|
1904
2115
|
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,
|
|
1905
2116
|
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,
|
|
1906
2117
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -1934,6 +2145,10 @@ class ExportClient {
|
|
|
1934
2145
|
/**
|
|
1935
2146
|
* @deprecated
|
|
1936
2147
|
*
|
|
2148
|
+
* <Warning>
|
|
2149
|
+
* This endpoint is deprecated. To export this data, use [List transfers](/developers/api-reference/query/get-list-of-transfers) with the `exportFormat` query parameter instead.
|
|
2150
|
+
* </Warning>
|
|
2151
|
+
*
|
|
1937
2152
|
* Get a list of transfers for an entrypoint. Use filters to limit results.
|
|
1938
2153
|
*
|
|
1939
2154
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
@@ -1973,7 +2188,11 @@ class ExportClient {
|
|
|
1973
2188
|
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, `Export/transfers/${core.url.encodePathParam(entry)}`),
|
|
1974
2189
|
method: "GET",
|
|
1975
2190
|
headers: _headers,
|
|
1976
|
-
|
|
2191
|
+
queryString: core.url
|
|
2192
|
+
.queryBuilder()
|
|
2193
|
+
.addMany(_queryParams)
|
|
2194
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
2195
|
+
.build(),
|
|
1977
2196
|
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,
|
|
1978
2197
|
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,
|
|
1979
2198
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -2007,6 +2226,10 @@ class ExportClient {
|
|
|
2007
2226
|
/**
|
|
2008
2227
|
* @deprecated
|
|
2009
2228
|
*
|
|
2229
|
+
* <Warning>
|
|
2230
|
+
* This endpoint is deprecated. To export this data, use [List vendors by paypoint](/developers/api-reference/vendor/get-list-of-vendors-for-entrypoint) with the `exportFormat` query parameter instead.
|
|
2231
|
+
* </Warning>
|
|
2232
|
+
*
|
|
2010
2233
|
* Export a list of vendors for an entrypoint. Use filters to limit results.
|
|
2011
2234
|
*
|
|
2012
2235
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -2045,7 +2268,11 @@ class ExportClient {
|
|
|
2045
2268
|
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, `Export/vendors/${core.url.encodePathParam(format)}/${core.url.encodePathParam(entry)}`),
|
|
2046
2269
|
method: "GET",
|
|
2047
2270
|
headers: _headers,
|
|
2048
|
-
|
|
2271
|
+
queryString: core.url
|
|
2272
|
+
.queryBuilder()
|
|
2273
|
+
.addMany(_queryParams)
|
|
2274
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
2275
|
+
.build(),
|
|
2049
2276
|
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,
|
|
2050
2277
|
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,
|
|
2051
2278
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -2079,6 +2306,10 @@ class ExportClient {
|
|
|
2079
2306
|
/**
|
|
2080
2307
|
* @deprecated
|
|
2081
2308
|
*
|
|
2309
|
+
* <Warning>
|
|
2310
|
+
* This endpoint is deprecated. To export this data, use [List vendors by organization](/developers/api-reference/vendor/get-list-of-vendors-for-organization) with the `exportFormat` query parameter instead.
|
|
2311
|
+
* </Warning>
|
|
2312
|
+
*
|
|
2082
2313
|
* Export a list of vendors for an organization. Use filters to limit results.
|
|
2083
2314
|
*
|
|
2084
2315
|
* @param {Payabli.ExportFormat1} format - Format for the export, either XLSX or CSV.
|
|
@@ -2112,7 +2343,11 @@ class ExportClient {
|
|
|
2112
2343
|
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, `Export/vendors/${core.url.encodePathParam(format)}/org/${core.url.encodePathParam(orgId)}`),
|
|
2113
2344
|
method: "GET",
|
|
2114
2345
|
headers: _headers,
|
|
2115
|
-
|
|
2346
|
+
queryString: core.url
|
|
2347
|
+
.queryBuilder()
|
|
2348
|
+
.addMany(_queryParams)
|
|
2349
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
2350
|
+
.build(),
|
|
2116
2351
|
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,
|
|
2117
2352
|
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,
|
|
2118
2353
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|