@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
|
@@ -7,9 +7,12 @@ export declare namespace PaypointClient {
|
|
|
7
7
|
interface RequestOptions extends BaseRequestOptions {
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* The Paypoint service manages merchant processing entities and their associated payment pages and configurations. It provides detailed paypoint information including business details, processing credentials, bank account configurations, and parent organization relationships. The service handles payment page creation and management with extensive customization options for form fields, styling, payment methods, and user experience flows. It supports multiple payment pages per paypoint, logo management, settings configuration for invoicing and custom fields, and paypoint migration between organizations. The service maintains comprehensive status tracking and summary statistics for each paypoint's transaction activity.
|
|
12
|
+
*/
|
|
10
13
|
export declare class PaypointClient {
|
|
11
14
|
protected readonly _options: NormalizedClientOptionsWithAuth<PaypointClient.Options>;
|
|
12
|
-
constructor(options
|
|
15
|
+
constructor(options: PaypointClient.Options);
|
|
13
16
|
/**
|
|
14
17
|
* Gets the basic details for a paypoint.
|
|
15
18
|
*
|
|
@@ -43,10 +46,10 @@ export declare class PaypointClient {
|
|
|
43
46
|
getBasicEntryById(IdPaypoint: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.GetBasicEntryByIdResponse>;
|
|
44
47
|
private __getBasicEntryById;
|
|
45
48
|
/**
|
|
46
|
-
*
|
|
49
|
+
* Updates a paypoint logo.
|
|
47
50
|
*
|
|
48
51
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
49
|
-
* @param {Payabli.
|
|
52
|
+
* @param {Payabli.FileContent} request
|
|
50
53
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
51
54
|
*
|
|
52
55
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -55,15 +58,14 @@ export declare class PaypointClient {
|
|
|
55
58
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
56
59
|
*
|
|
57
60
|
* @example
|
|
58
|
-
* await client.paypoint.
|
|
61
|
+
* await client.paypoint.saveLogo("8cfec329267", {})
|
|
59
62
|
*/
|
|
60
|
-
|
|
61
|
-
private
|
|
63
|
+
saveLogo(entry: string, request: Payabli.FileContent, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponse00Responsedatanonobject>;
|
|
64
|
+
private __saveLogo;
|
|
62
65
|
/**
|
|
63
|
-
*
|
|
66
|
+
* Migrates a paypoint to a new parent organization.
|
|
64
67
|
*
|
|
65
|
-
* @param {
|
|
66
|
-
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
68
|
+
* @param {Payabli.PaypointMoveRequest} request
|
|
67
69
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
68
70
|
*
|
|
69
71
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -72,15 +74,24 @@ export declare class PaypointClient {
|
|
|
72
74
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
73
75
|
*
|
|
74
76
|
* @example
|
|
75
|
-
* await client.paypoint.
|
|
77
|
+
* await client.paypoint.migrate({
|
|
78
|
+
* entryPoint: "8cfec329267",
|
|
79
|
+
* newParentOrganizationId: 123,
|
|
80
|
+
* notificationRequest: {
|
|
81
|
+
* notificationUrl: "https://webhook-test.yoursie.com",
|
|
82
|
+
* webHeaderParameters: [{
|
|
83
|
+
* key: "testheader",
|
|
84
|
+
* value: "1234567890"
|
|
85
|
+
* }]
|
|
86
|
+
* }
|
|
87
|
+
* })
|
|
76
88
|
*/
|
|
77
|
-
|
|
78
|
-
private
|
|
89
|
+
migrate(request: Payabli.PaypointMoveRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.MigratePaypointResponse>;
|
|
90
|
+
private __migrate;
|
|
79
91
|
/**
|
|
80
|
-
*
|
|
92
|
+
* Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
|
|
81
93
|
*
|
|
82
94
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
83
|
-
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
84
95
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
85
96
|
*
|
|
86
97
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -89,15 +100,15 @@ export declare class PaypointClient {
|
|
|
89
100
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
90
101
|
*
|
|
91
102
|
* @example
|
|
92
|
-
* await client.paypoint.
|
|
103
|
+
* await client.paypoint.settingsPage("8cfec329267")
|
|
93
104
|
*/
|
|
94
|
-
|
|
95
|
-
private
|
|
105
|
+
settingsPage(entry: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.SettingsQueryRecord>;
|
|
106
|
+
private __settingsPage;
|
|
96
107
|
/**
|
|
97
|
-
*
|
|
108
|
+
* Gets the details for a single paypoint.
|
|
98
109
|
*
|
|
99
110
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
100
|
-
* @param {Payabli.
|
|
111
|
+
* @param {Payabli.GetEntryConfigRequest} request
|
|
101
112
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
102
113
|
*
|
|
103
114
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -106,14 +117,15 @@ export declare class PaypointClient {
|
|
|
106
117
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
107
118
|
*
|
|
108
119
|
* @example
|
|
109
|
-
* await client.paypoint.
|
|
120
|
+
* await client.paypoint.getEntryConfig("8cfec329267")
|
|
110
121
|
*/
|
|
111
|
-
|
|
112
|
-
private
|
|
122
|
+
getEntryConfig(entry: string, request?: Payabli.GetEntryConfigRequest, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.GetEntryConfigResponse>;
|
|
123
|
+
private __getEntryConfig;
|
|
113
124
|
/**
|
|
114
|
-
*
|
|
125
|
+
* Gets the details for a single payment page for a paypoint.
|
|
115
126
|
*
|
|
116
127
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
128
|
+
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
117
129
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
118
130
|
*
|
|
119
131
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -122,29 +134,25 @@ export declare class PaypointClient {
|
|
|
122
134
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
123
135
|
*
|
|
124
136
|
* @example
|
|
125
|
-
* await client.paypoint.
|
|
137
|
+
* await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
|
|
126
138
|
*/
|
|
127
|
-
|
|
128
|
-
private
|
|
139
|
+
getPage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliPages>;
|
|
140
|
+
private __getPage;
|
|
129
141
|
/**
|
|
130
|
-
*
|
|
142
|
+
* Deletes a payment page in a paypoint.
|
|
131
143
|
*
|
|
132
|
-
* @param {
|
|
144
|
+
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
145
|
+
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
133
146
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
134
147
|
*
|
|
148
|
+
* @throws {@link Payabli.BadRequestError}
|
|
149
|
+
* @throws {@link Payabli.UnauthorizedError}
|
|
150
|
+
* @throws {@link Payabli.InternalServerError}
|
|
151
|
+
* @throws {@link Payabli.ServiceUnavailableError}
|
|
152
|
+
*
|
|
135
153
|
* @example
|
|
136
|
-
* await client.paypoint.
|
|
137
|
-
* entryPoint: "473abc123def",
|
|
138
|
-
* newParentOrganizationId: 123,
|
|
139
|
-
* notificationRequest: {
|
|
140
|
-
* notificationUrl: "https://webhook-test.yoursie.com",
|
|
141
|
-
* webHeaderParameters: [{
|
|
142
|
-
* key: "testheader",
|
|
143
|
-
* value: "1234567890"
|
|
144
|
-
* }]
|
|
145
|
-
* }
|
|
146
|
-
* })
|
|
154
|
+
* await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
|
|
147
155
|
*/
|
|
148
|
-
|
|
149
|
-
private
|
|
156
|
+
removePage(entry: string, subdomain: string, requestOptions?: PaypointClient.RequestOptions): core.HttpResponsePromise<Payabli.PayabliApiResponseGeneric2Part>;
|
|
157
|
+
private __removePage;
|
|
150
158
|
}
|
|
@@ -51,8 +51,11 @@ const environments = __importStar(require("../../../../environments.js"));
|
|
|
51
51
|
const handleNonStatusCodeError_js_1 = require("../../../../errors/handleNonStatusCodeError.js");
|
|
52
52
|
const errors = __importStar(require("../../../../errors/index.js"));
|
|
53
53
|
const Payabli = __importStar(require("../../../index.js"));
|
|
54
|
+
/**
|
|
55
|
+
* The Paypoint service manages merchant processing entities and their associated payment pages and configurations. It provides detailed paypoint information including business details, processing credentials, bank account configurations, and parent organization relationships. The service handles payment page creation and management with extensive customization options for form fields, styling, payment methods, and user experience flows. It supports multiple payment pages per paypoint, logo management, settings configuration for invoicing and custom fields, and paypoint migration between organizations. The service maintains comprehensive status tracking and summary statistics for each paypoint's transaction activity.
|
|
56
|
+
*/
|
|
54
57
|
class PaypointClient {
|
|
55
|
-
constructor(options
|
|
58
|
+
constructor(options) {
|
|
56
59
|
this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
|
|
57
60
|
}
|
|
58
61
|
/**
|
|
@@ -81,7 +84,7 @@ class PaypointClient {
|
|
|
81
84
|
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/basic/${core.url.encodePathParam(entry)}`),
|
|
82
85
|
method: "GET",
|
|
83
86
|
headers: _headers,
|
|
84
|
-
|
|
87
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
85
88
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
86
89
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
87
90
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -138,7 +141,7 @@ class PaypointClient {
|
|
|
138
141
|
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/basicById/${core.url.encodePathParam(IdPaypoint)}`),
|
|
139
142
|
method: "GET",
|
|
140
143
|
headers: _headers,
|
|
141
|
-
|
|
144
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
142
145
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
143
146
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
144
147
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -170,10 +173,10 @@ class PaypointClient {
|
|
|
170
173
|
});
|
|
171
174
|
}
|
|
172
175
|
/**
|
|
173
|
-
*
|
|
176
|
+
* Updates a paypoint logo.
|
|
174
177
|
*
|
|
175
178
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
176
|
-
* @param {Payabli.
|
|
179
|
+
* @param {Payabli.FileContent} request
|
|
177
180
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
178
181
|
*
|
|
179
182
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -182,25 +185,24 @@ class PaypointClient {
|
|
|
182
185
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
183
186
|
*
|
|
184
187
|
* @example
|
|
185
|
-
* await client.paypoint.
|
|
188
|
+
* await client.paypoint.saveLogo("8cfec329267", {})
|
|
186
189
|
*/
|
|
187
|
-
|
|
188
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
190
|
+
saveLogo(entry, request, requestOptions) {
|
|
191
|
+
return core.HttpResponsePromise.fromPromise(this.__saveLogo(entry, request, requestOptions));
|
|
189
192
|
}
|
|
190
|
-
|
|
191
|
-
return __awaiter(this,
|
|
193
|
+
__saveLogo(entry, request, requestOptions) {
|
|
194
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
192
195
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
193
|
-
const { entrypages } = request;
|
|
194
|
-
const _queryParams = {
|
|
195
|
-
entrypages,
|
|
196
|
-
};
|
|
197
196
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
198
197
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
199
198
|
const _response = yield core.fetcher({
|
|
200
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}`),
|
|
201
|
-
method: "
|
|
199
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/logo/${core.url.encodePathParam(entry)}`),
|
|
200
|
+
method: "PUT",
|
|
202
201
|
headers: _headers,
|
|
203
|
-
|
|
202
|
+
contentType: "application/json",
|
|
203
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
204
|
+
requestType: "json",
|
|
205
|
+
body: request,
|
|
204
206
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
205
207
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
206
208
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -208,7 +210,10 @@ class PaypointClient {
|
|
|
208
210
|
logging: this._options.logging,
|
|
209
211
|
});
|
|
210
212
|
if (_response.ok) {
|
|
211
|
-
return {
|
|
213
|
+
return {
|
|
214
|
+
data: _response.body,
|
|
215
|
+
rawResponse: _response.rawResponse,
|
|
216
|
+
};
|
|
212
217
|
}
|
|
213
218
|
if (_response.error.reason === "status-code") {
|
|
214
219
|
switch (_response.error.statusCode) {
|
|
@@ -228,14 +233,13 @@ class PaypointClient {
|
|
|
228
233
|
});
|
|
229
234
|
}
|
|
230
235
|
}
|
|
231
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "
|
|
236
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "PUT", "/Paypoint/logo/{entry}");
|
|
232
237
|
});
|
|
233
238
|
}
|
|
234
239
|
/**
|
|
235
|
-
*
|
|
240
|
+
* Migrates a paypoint to a new parent organization.
|
|
236
241
|
*
|
|
237
|
-
* @param {
|
|
238
|
-
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
242
|
+
* @param {Payabli.PaypointMoveRequest} request
|
|
239
243
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
240
244
|
*
|
|
241
245
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -244,21 +248,34 @@ class PaypointClient {
|
|
|
244
248
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
245
249
|
*
|
|
246
250
|
* @example
|
|
247
|
-
* await client.paypoint.
|
|
251
|
+
* await client.paypoint.migrate({
|
|
252
|
+
* entryPoint: "8cfec329267",
|
|
253
|
+
* newParentOrganizationId: 123,
|
|
254
|
+
* notificationRequest: {
|
|
255
|
+
* notificationUrl: "https://webhook-test.yoursie.com",
|
|
256
|
+
* webHeaderParameters: [{
|
|
257
|
+
* key: "testheader",
|
|
258
|
+
* value: "1234567890"
|
|
259
|
+
* }]
|
|
260
|
+
* }
|
|
261
|
+
* })
|
|
248
262
|
*/
|
|
249
|
-
|
|
250
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
263
|
+
migrate(request, requestOptions) {
|
|
264
|
+
return core.HttpResponsePromise.fromPromise(this.__migrate(request, requestOptions));
|
|
251
265
|
}
|
|
252
|
-
|
|
266
|
+
__migrate(request, requestOptions) {
|
|
253
267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
254
268
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
255
269
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
256
270
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
257
271
|
const _response = yield core.fetcher({
|
|
258
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox,
|
|
259
|
-
method: "
|
|
272
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, "Paypoint/migrate"),
|
|
273
|
+
method: "POST",
|
|
260
274
|
headers: _headers,
|
|
261
|
-
|
|
275
|
+
contentType: "application/json",
|
|
276
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
277
|
+
requestType: "json",
|
|
278
|
+
body: request,
|
|
262
279
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
263
280
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
264
281
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -286,14 +303,13 @@ class PaypointClient {
|
|
|
286
303
|
});
|
|
287
304
|
}
|
|
288
305
|
}
|
|
289
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "
|
|
306
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "POST", "/Paypoint/migrate");
|
|
290
307
|
});
|
|
291
308
|
}
|
|
292
309
|
/**
|
|
293
|
-
*
|
|
310
|
+
* Retrieves a paypoint's basic settings like custom fields, identifiers, and invoicing settings.
|
|
294
311
|
*
|
|
295
312
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
296
|
-
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in`https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
297
313
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
298
314
|
*
|
|
299
315
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -302,21 +318,21 @@ class PaypointClient {
|
|
|
302
318
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
303
319
|
*
|
|
304
320
|
* @example
|
|
305
|
-
* await client.paypoint.
|
|
321
|
+
* await client.paypoint.settingsPage("8cfec329267")
|
|
306
322
|
*/
|
|
307
|
-
|
|
308
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
323
|
+
settingsPage(entry, requestOptions) {
|
|
324
|
+
return core.HttpResponsePromise.fromPromise(this.__settingsPage(entry, requestOptions));
|
|
309
325
|
}
|
|
310
|
-
|
|
326
|
+
__settingsPage(entry, requestOptions) {
|
|
311
327
|
return __awaiter(this, void 0, void 0, function* () {
|
|
312
328
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
313
329
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
314
330
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
315
331
|
const _response = yield core.fetcher({
|
|
316
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}
|
|
317
|
-
method: "
|
|
332
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/settings/${core.url.encodePathParam(entry)}`),
|
|
333
|
+
method: "GET",
|
|
318
334
|
headers: _headers,
|
|
319
|
-
|
|
335
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
320
336
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
321
337
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
322
338
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -324,10 +340,7 @@ class PaypointClient {
|
|
|
324
340
|
logging: this._options.logging,
|
|
325
341
|
});
|
|
326
342
|
if (_response.ok) {
|
|
327
|
-
return {
|
|
328
|
-
data: _response.body,
|
|
329
|
-
rawResponse: _response.rawResponse,
|
|
330
|
-
};
|
|
343
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
331
344
|
}
|
|
332
345
|
if (_response.error.reason === "status-code") {
|
|
333
346
|
switch (_response.error.statusCode) {
|
|
@@ -347,14 +360,14 @@ class PaypointClient {
|
|
|
347
360
|
});
|
|
348
361
|
}
|
|
349
362
|
}
|
|
350
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "
|
|
363
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/settings/{entry}");
|
|
351
364
|
});
|
|
352
365
|
}
|
|
353
366
|
/**
|
|
354
|
-
*
|
|
367
|
+
* Gets the details for a single paypoint.
|
|
355
368
|
*
|
|
356
369
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
357
|
-
* @param {Payabli.
|
|
370
|
+
* @param {Payabli.GetEntryConfigRequest} request
|
|
358
371
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
359
372
|
*
|
|
360
373
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -363,24 +376,29 @@ class PaypointClient {
|
|
|
363
376
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
364
377
|
*
|
|
365
378
|
* @example
|
|
366
|
-
* await client.paypoint.
|
|
379
|
+
* await client.paypoint.getEntryConfig("8cfec329267")
|
|
367
380
|
*/
|
|
368
|
-
|
|
369
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
381
|
+
getEntryConfig(entry, request = {}, requestOptions) {
|
|
382
|
+
return core.HttpResponsePromise.fromPromise(this.__getEntryConfig(entry, request, requestOptions));
|
|
370
383
|
}
|
|
371
|
-
|
|
372
|
-
return __awaiter(this,
|
|
384
|
+
__getEntryConfig(entry_1) {
|
|
385
|
+
return __awaiter(this, arguments, void 0, function* (entry, request = {}, requestOptions) {
|
|
373
386
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
387
|
+
const { entrypages } = request;
|
|
388
|
+
const _queryParams = {
|
|
389
|
+
entrypages,
|
|
390
|
+
};
|
|
374
391
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
375
392
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
376
393
|
const _response = yield core.fetcher({
|
|
377
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint
|
|
378
|
-
method: "
|
|
394
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}`),
|
|
395
|
+
method: "GET",
|
|
379
396
|
headers: _headers,
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
397
|
+
queryString: core.url
|
|
398
|
+
.queryBuilder()
|
|
399
|
+
.addMany(_queryParams)
|
|
400
|
+
.mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
|
|
401
|
+
.build(),
|
|
384
402
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
385
403
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
386
404
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -388,10 +406,7 @@ class PaypointClient {
|
|
|
388
406
|
logging: this._options.logging,
|
|
389
407
|
});
|
|
390
408
|
if (_response.ok) {
|
|
391
|
-
return {
|
|
392
|
-
data: _response.body,
|
|
393
|
-
rawResponse: _response.rawResponse,
|
|
394
|
-
};
|
|
409
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
395
410
|
}
|
|
396
411
|
if (_response.error.reason === "status-code") {
|
|
397
412
|
switch (_response.error.statusCode) {
|
|
@@ -411,13 +426,14 @@ class PaypointClient {
|
|
|
411
426
|
});
|
|
412
427
|
}
|
|
413
428
|
}
|
|
414
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "
|
|
429
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}");
|
|
415
430
|
});
|
|
416
431
|
}
|
|
417
432
|
/**
|
|
418
|
-
*
|
|
433
|
+
* Gets the details for a single payment page for a paypoint.
|
|
419
434
|
*
|
|
420
435
|
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
436
|
+
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
421
437
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
422
438
|
*
|
|
423
439
|
* @throws {@link Payabli.BadRequestError}
|
|
@@ -426,21 +442,21 @@ class PaypointClient {
|
|
|
426
442
|
* @throws {@link Payabli.ServiceUnavailableError}
|
|
427
443
|
*
|
|
428
444
|
* @example
|
|
429
|
-
* await client.paypoint.
|
|
445
|
+
* await client.paypoint.getPage("8cfec329267", "pay-your-fees-1")
|
|
430
446
|
*/
|
|
431
|
-
|
|
432
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
447
|
+
getPage(entry, subdomain, requestOptions) {
|
|
448
|
+
return core.HttpResponsePromise.fromPromise(this.__getPage(entry, subdomain, requestOptions));
|
|
433
449
|
}
|
|
434
|
-
|
|
450
|
+
__getPage(entry, subdomain, requestOptions) {
|
|
435
451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
436
452
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
437
453
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
438
454
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
439
455
|
const _response = yield core.fetcher({
|
|
440
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint
|
|
456
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
|
|
441
457
|
method: "GET",
|
|
442
458
|
headers: _headers,
|
|
443
|
-
|
|
459
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
444
460
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
445
461
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
446
462
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -468,44 +484,37 @@ class PaypointClient {
|
|
|
468
484
|
});
|
|
469
485
|
}
|
|
470
486
|
}
|
|
471
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/
|
|
487
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/Paypoint/{entry}/{subdomain}");
|
|
472
488
|
});
|
|
473
489
|
}
|
|
474
490
|
/**
|
|
475
|
-
*
|
|
491
|
+
* Deletes a payment page in a paypoint.
|
|
476
492
|
*
|
|
477
|
-
* @param {
|
|
493
|
+
* @param {string} entry - The paypoint's entrypoint identifier. [Learn more](/developers/api-reference/api-overview#entrypoint-vs-entry)
|
|
494
|
+
* @param {string} subdomain - Payment page identifier. The subdomain value is the last portion of the payment page URL. For example, in `https://paypages-sandbox.payabli.com/513823dc10/pay-your-fees-1`, the subdomain is `pay-your-fees-1`.
|
|
478
495
|
* @param {PaypointClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
479
496
|
*
|
|
497
|
+
* @throws {@link Payabli.BadRequestError}
|
|
498
|
+
* @throws {@link Payabli.UnauthorizedError}
|
|
499
|
+
* @throws {@link Payabli.InternalServerError}
|
|
500
|
+
* @throws {@link Payabli.ServiceUnavailableError}
|
|
501
|
+
*
|
|
480
502
|
* @example
|
|
481
|
-
* await client.paypoint.
|
|
482
|
-
* entryPoint: "473abc123def",
|
|
483
|
-
* newParentOrganizationId: 123,
|
|
484
|
-
* notificationRequest: {
|
|
485
|
-
* notificationUrl: "https://webhook-test.yoursie.com",
|
|
486
|
-
* webHeaderParameters: [{
|
|
487
|
-
* key: "testheader",
|
|
488
|
-
* value: "1234567890"
|
|
489
|
-
* }]
|
|
490
|
-
* }
|
|
491
|
-
* })
|
|
503
|
+
* await client.paypoint.removePage("8cfec329267", "pay-your-fees-1")
|
|
492
504
|
*/
|
|
493
|
-
|
|
494
|
-
return core.HttpResponsePromise.fromPromise(this.
|
|
505
|
+
removePage(entry, subdomain, requestOptions) {
|
|
506
|
+
return core.HttpResponsePromise.fromPromise(this.__removePage(entry, subdomain, requestOptions));
|
|
495
507
|
}
|
|
496
|
-
|
|
508
|
+
__removePage(entry, subdomain, requestOptions) {
|
|
497
509
|
return __awaiter(this, void 0, void 0, function* () {
|
|
498
510
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
499
511
|
const _authRequest = yield this._options.authProvider.getAuthRequest();
|
|
500
512
|
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
|
|
501
513
|
const _response = yield core.fetcher({
|
|
502
|
-
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox,
|
|
503
|
-
method: "
|
|
514
|
+
url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.PayabliEnvironment.Sandbox, `Paypoint/${core.url.encodePathParam(entry)}/${core.url.encodePathParam(subdomain)}`),
|
|
515
|
+
method: "DELETE",
|
|
504
516
|
headers: _headers,
|
|
505
|
-
|
|
506
|
-
queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
|
|
507
|
-
requestType: "json",
|
|
508
|
-
body: request,
|
|
517
|
+
queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
|
|
509
518
|
timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
|
|
510
519
|
maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
|
|
511
520
|
abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
|
|
@@ -513,16 +522,30 @@ class PaypointClient {
|
|
|
513
522
|
logging: this._options.logging,
|
|
514
523
|
});
|
|
515
524
|
if (_response.ok) {
|
|
516
|
-
return {
|
|
525
|
+
return {
|
|
526
|
+
data: _response.body,
|
|
527
|
+
rawResponse: _response.rawResponse,
|
|
528
|
+
};
|
|
517
529
|
}
|
|
518
530
|
if (_response.error.reason === "status-code") {
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
531
|
+
switch (_response.error.statusCode) {
|
|
532
|
+
case 400:
|
|
533
|
+
throw new Payabli.BadRequestError(_response.error.body, _response.rawResponse);
|
|
534
|
+
case 401:
|
|
535
|
+
throw new Payabli.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
536
|
+
case 500:
|
|
537
|
+
throw new Payabli.InternalServerError(_response.error.body, _response.rawResponse);
|
|
538
|
+
case 503:
|
|
539
|
+
throw new Payabli.ServiceUnavailableError(_response.error.body, _response.rawResponse);
|
|
540
|
+
default:
|
|
541
|
+
throw new errors.PayabliError({
|
|
542
|
+
statusCode: _response.error.statusCode,
|
|
543
|
+
body: _response.error.body,
|
|
544
|
+
rawResponse: _response.rawResponse,
|
|
545
|
+
});
|
|
546
|
+
}
|
|
524
547
|
}
|
|
525
|
-
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "
|
|
548
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "DELETE", "/Paypoint/{entry}/{subdomain}");
|
|
526
549
|
});
|
|
527
550
|
}
|
|
528
551
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type * as Payabli from "../../../../index.js";
|
|
2
|
+
/**
|
|
3
|
+
* @example
|
|
4
|
+
* {
|
|
5
|
+
* entryPoint: "8cfec329267",
|
|
6
|
+
* newParentOrganizationId: 123,
|
|
7
|
+
* notificationRequest: {
|
|
8
|
+
* notificationUrl: "https://webhook-test.yoursie.com",
|
|
9
|
+
* webHeaderParameters: [{
|
|
10
|
+
* key: "testheader",
|
|
11
|
+
* value: "1234567890"
|
|
12
|
+
* }]
|
|
13
|
+
* }
|
|
14
|
+
* }
|
|
15
|
+
*/
|
|
16
|
+
export interface PaypointMoveRequest {
|
|
17
|
+
entryPoint: Payabli.Entrypointfield;
|
|
18
|
+
/** The ID for the paypoint's new parent organization. */
|
|
19
|
+
newParentOrganizationId: number;
|
|
20
|
+
/** Optional notification request object for a webhook */
|
|
21
|
+
notificationRequest?: Payabli.NotificationRequest;
|
|
22
|
+
}
|