@yuno-payments/dashboard-api-mfe 0.39.6 → 0.40.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/build/cjs/index.js +241 -0
- package/build/cjs/index.js.map +1 -0
- package/build/{types → cjs/types}/__mocks__/@yuno/dashboard-authentication-mfe/index.d.ts +3 -2
- package/build/{types → cjs/types}/api/api.d.ts +4 -1
- package/build/{types → cjs/types}/lib/http-client/http-client.d.ts +7 -0
- package/build/{types → cjs/types}/mutations/chartgpt/chartgpt.mutation.d.ts +4 -0
- package/build/{types → cjs/types}/mutations/connections/connections.mutation.d.ts +5 -0
- package/build/{types → cjs/types}/queries/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/index.d.ts +1 -0
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/{types → cjs/types}/types/audit/audit.d.ts +3 -2
- package/build/{types → cjs/types}/types/connection/connection.d.ts +18 -0
- package/build/{types → cjs/types}/types/organization/organization.d.ts +2 -0
- package/build/{types → cjs/types}/utils/test-utils.d.ts +2 -1
- package/build/esm/index.js +241 -0
- package/build/esm/index.js.map +1 -0
- package/build/esm/types/__mocks__/@yuno/dashboard-authentication-mfe/index.d.ts +11 -0
- package/build/esm/types/api/api.d.ts +540 -0
- package/build/esm/types/api/api.singleton.d.ts +9 -0
- package/build/esm/types/api/api.types.d.ts +199 -0
- package/build/esm/types/api/index.d.ts +3 -0
- package/build/esm/types/api-provider.d.ts +4 -0
- package/build/esm/types/common/config.d.ts +13 -0
- package/build/esm/types/constants/errors-code.constant.d.ts +5 -0
- package/build/esm/types/constants/index.d.ts +1 -0
- package/build/esm/types/lib/http-client/__tests__/http-client.test.d.ts +1 -0
- package/build/esm/types/lib/http-client/api.config.d.ts +2 -0
- package/build/esm/types/lib/http-client/axios.d.ts +19 -0
- package/build/esm/types/lib/http-client/http-client.d.ts +175 -0
- package/build/esm/types/lib/http-client/index.d.ts +2 -0
- package/build/esm/types/msw/browser.d.ts +1 -0
- package/build/esm/types/msw/handlers/index.d.ts +1 -0
- package/build/esm/types/msw/handlers/insights.d.ts +1 -0
- package/build/esm/types/msw/handlers/organizations.d.ts +1 -0
- package/build/esm/types/msw/handlers/payments.d.ts +1 -0
- package/build/esm/types/msw/index.d.ts +1 -0
- package/build/esm/types/msw/mocks/insights/conversion-rate/overview-fraud-3ds.mock.d.ts +14 -0
- package/build/esm/types/msw/mocks/insights/conversion-rate/overview.mock.d.ts +34 -0
- package/build/esm/types/msw/mocks/insights/overview/overview-metrics.mock.d.ts +9 -0
- package/build/esm/types/msw/mocks/insights/overview/overview.mock.d.ts +139 -0
- package/build/esm/types/msw/mocks/payments/payments.mock.d.ts +92 -0
- package/build/esm/types/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
- package/build/esm/types/mutations/S3Client/S3Client.mutation.d.ts +6 -0
- package/build/esm/types/mutations/S3Client/index.d.ts +1 -0
- package/build/esm/types/mutations/accounts/accounts.mutation.d.ts +52 -0
- package/build/esm/types/mutations/accounts/delete-mutation.d.ts +20 -0
- package/build/esm/types/mutations/accounts/index.d.ts +1 -0
- package/build/esm/types/mutations/ai/ai.mutation.d.ts +28 -0
- package/build/esm/types/mutations/ai/ai.mutation.test.d.ts +1 -0
- package/build/esm/types/mutations/ai/index.d.ts +1 -0
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +5 -0
- package/build/esm/types/mutations/audit/audit.mutation.d.ts +6 -0
- package/build/esm/types/mutations/audit/index.d.ts +2 -0
- package/build/esm/types/mutations/batch-refunds/batch-refunds.mutation.d.ts +32 -0
- package/build/esm/types/mutations/batch-refunds/batch-refunds.mutation.test.d.ts +1 -0
- package/build/esm/types/mutations/batch-refunds/index.d.ts +1 -0
- package/build/esm/types/mutations/chartgpt/chartgpt.mutation.d.ts +41 -0
- package/build/esm/types/mutations/chartgpt/index.d.ts +1 -0
- package/build/esm/types/mutations/checkouts/checkouts.mutation.d.ts +11 -0
- package/build/esm/types/mutations/checkouts/index.d.ts +2 -0
- package/build/esm/types/mutations/checkouts/styling/styling.mutation.d.ts +2 -0
- package/build/esm/types/mutations/connections/connections.mutation.d.ts +41 -0
- package/build/esm/types/mutations/connections/index.d.ts +1 -0
- package/build/esm/types/mutations/developers/developers.mutation.d.ts +21 -0
- package/build/esm/types/mutations/developers/index.d.ts +1 -0
- package/build/esm/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +52 -0
- package/build/esm/types/mutations/fraud-screening/index.d.ts +1 -0
- package/build/esm/types/mutations/index.d.ts +30 -0
- package/build/esm/types/mutations/insights/index.d.ts +1 -0
- package/build/esm/types/mutations/insights/insights.mutation.d.ts +2 -0
- package/build/esm/types/mutations/multi-factor-authentication/index.d.ts +1 -0
- package/build/esm/types/mutations/multi-factor-authentication/multi-factor-authentication.mutation.d.ts +12 -0
- package/build/esm/types/mutations/notifications/index.d.ts +1 -0
- package/build/esm/types/mutations/notifications/notifications.mutation.d.ts +6 -0
- package/build/esm/types/mutations/organization-settings/index.d.ts +1 -0
- package/build/esm/types/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
- package/build/esm/types/mutations/organizations/index.d.ts +1 -0
- package/build/esm/types/mutations/organizations/organizations.mutation.d.ts +2 -0
- package/build/esm/types/mutations/payment-links/index.d.ts +1 -0
- package/build/esm/types/mutations/payment-links/payment-links.mutation.d.ts +12 -0
- package/build/esm/types/mutations/payments/index.d.ts +1 -0
- package/build/esm/types/mutations/payments/payments.mutation.d.ts +13 -0
- package/build/esm/types/mutations/reconciliations/index.d.ts +2 -0
- package/build/esm/types/mutations/reconciliations/reconciliations-alerts.mutation.d.ts +5 -0
- package/build/esm/types/mutations/reconciliations/reconciliations.mutation.d.ts +4 -0
- package/build/esm/types/mutations/reports/index.d.ts +1 -0
- package/build/esm/types/mutations/reports/reports.mutation.d.ts +8 -0
- package/build/esm/types/mutations/routing-monitors/index.d.ts +1 -0
- package/build/esm/types/mutations/routing-monitors/routing-monitors.mutation.d.ts +4 -0
- package/build/esm/types/mutations/saml-config/index.d.ts +1 -0
- package/build/esm/types/mutations/saml-config/saml-config.query.d.ts +4 -0
- package/build/esm/types/mutations/scheduled-reports/index.d.ts +1 -0
- package/build/esm/types/mutations/scheduled-reports/scheduled-reports.mutation.d.ts +8 -0
- package/build/esm/types/mutations/security/index.d.ts +1 -0
- package/build/esm/types/mutations/security/security.mutation.d.ts +3 -0
- package/build/esm/types/mutations/settings/index.d.ts +1 -0
- package/build/esm/types/mutations/settings/settings.mutation.d.ts +17 -0
- package/build/esm/types/mutations/smart-routing/index.d.ts +1 -0
- package/build/esm/types/mutations/smart-routing/smart-routing.mutation.d.ts +67 -0
- package/build/esm/types/mutations/team/index.d.ts +1 -0
- package/build/esm/types/mutations/team/team.mutaion.test.d.ts +1 -0
- package/build/esm/types/mutations/team/team.mutation.d.ts +8 -0
- package/build/esm/types/mutations/template-reporting/index.d.ts +1 -0
- package/build/esm/types/mutations/template-reporting/template-reporting.mutation.d.ts +20 -0
- package/build/esm/types/mutations/users/index.d.ts +1 -0
- package/build/esm/types/mutations/users/users.mutation.d.ts +16 -0
- package/build/esm/types/mutations/velocity-rules/index.d.ts +1 -0
- package/build/esm/types/mutations/velocity-rules/velocity-rules.mutation.d.ts +5 -0
- package/build/esm/types/queries/accounts/accounts.query.d.ts +24 -0
- package/build/esm/types/queries/accounts/index.d.ts +1 -0
- package/build/esm/types/queries/audit/audit.query.d.ts +11 -0
- package/build/esm/types/queries/audit/index.d.ts +1 -0
- package/build/esm/types/queries/batch-refunds/batch-refunds.query.d.ts +3 -0
- package/build/esm/types/queries/batch-refunds/index.d.ts +1 -0
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +44 -0
- package/build/esm/types/queries/chartgpt/index.d.ts +1 -0
- package/build/esm/types/queries/checkouts/checkouts.query.d.ts +15 -0
- package/build/esm/types/queries/checkouts/index.d.ts +2 -0
- package/build/esm/types/queries/checkouts/styling/styling.query.d.ts +25 -0
- package/build/esm/types/queries/cms/cms.query.d.ts +14 -0
- package/build/esm/types/queries/cms/index.d.ts +1 -0
- package/build/esm/types/queries/connections/connections.query.d.ts +3 -0
- package/build/esm/types/queries/connections/index.d.ts +1 -0
- package/build/esm/types/queries/data-report/data-report.query.d.ts +17 -0
- package/build/esm/types/queries/data-report/fraud/fraud.query.d.ts +17 -0
- package/build/esm/types/queries/data-report/fraud/fraud.query.test.d.ts +1 -0
- package/build/esm/types/queries/data-report/index.d.ts +2 -0
- package/build/esm/types/queries/developers/developers.query.d.ts +14 -0
- package/build/esm/types/queries/developers/index.d.ts +1 -0
- package/build/esm/types/queries/dialogs/dialogs.query.d.ts +2 -0
- package/build/esm/types/queries/dialogs/index.d.ts +1 -0
- package/build/esm/types/queries/feature-flags/feature-flags.test.d.ts +1 -0
- package/build/esm/types/queries/feature-flags/index.d.ts +8 -0
- package/build/esm/types/queries/firebase/firebase.query.d.ts +10 -0
- package/build/esm/types/queries/firebase/index.d.ts +1 -0
- package/build/esm/types/queries/fraud-screening/fraud-screening.query.d.ts +11 -0
- package/build/esm/types/queries/fraud-screening/index.d.ts +1 -0
- package/build/esm/types/queries/index.d.ts +29 -0
- package/build/esm/types/queries/mfa/index.d.ts +1 -0
- package/build/esm/types/queries/mfa/organization-settings.query.d.ts +11 -0
- package/build/esm/types/queries/network-tokens/index.d.ts +1 -0
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +5 -0
- package/build/esm/types/queries/notifications/index.d.ts +1 -0
- package/build/esm/types/queries/notifications/notifications.query.d.ts +12 -0
- package/build/esm/types/queries/organizations/index.d.ts +1 -0
- package/build/esm/types/queries/organizations/organizations.query.d.ts +28 -0
- package/build/esm/types/queries/payment-links/index.d.ts +1 -0
- package/build/esm/types/queries/payment-links/payment-links.query.d.ts +7 -0
- package/build/esm/types/queries/payments/index.d.ts +2 -0
- package/build/esm/types/queries/payments/payments.query.d.ts +36 -0
- package/build/esm/types/queries/payments/payouts.query.d.ts +6 -0
- package/build/esm/types/queries/reconciliations/index.d.ts +6 -0
- package/build/esm/types/queries/reconciliations/reconciliations-advancements.query.d.ts +9 -0
- package/build/esm/types/queries/reconciliations/reconciliations-agenda.query.d.ts +9 -0
- package/build/esm/types/queries/reconciliations/reconciliations-alerts.query.d.ts +8 -0
- package/build/esm/types/queries/reconciliations/reconciliations-fees.query.d.ts +9 -0
- package/build/esm/types/queries/reconciliations/reconciliations-sales.query.d.ts +9 -0
- package/build/esm/types/queries/reconciliations/reconciliations.query.d.ts +11 -0
- package/build/esm/types/queries/reports/index.d.ts +1 -0
- package/build/esm/types/queries/reports/reports.query.d.ts +13 -0
- package/build/esm/types/queries/routing-monitors/index.d.ts +1 -0
- package/build/esm/types/queries/routing-monitors/routing-monitors.query.d.ts +4 -0
- package/build/esm/types/queries/saml-config/index.d.ts +1 -0
- package/build/esm/types/queries/saml-config/saml-config.query.d.ts +4 -0
- package/build/esm/types/queries/smart-routing/index.d.ts +1 -0
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +30 -0
- package/build/esm/types/queries/team/index.d.ts +1 -0
- package/build/esm/types/queries/team/team.query.d.ts +14 -0
- package/build/esm/types/queries/template-reporting/index.d.ts +1 -0
- package/build/esm/types/queries/template-reporting/template-reporting.query.d.ts +7 -0
- package/build/esm/types/queries/translation/index.d.ts +1 -0
- package/build/esm/types/queries/translation/translation.query.d.ts +5 -0
- package/build/esm/types/queries/users/index.d.ts +1 -0
- package/build/esm/types/queries/users/users.query.d.ts +25 -0
- package/build/esm/types/queries/velocity-rules/index.d.ts +1 -0
- package/build/esm/types/queries/velocity-rules/velocity-rules.query.d.ts +6 -0
- package/build/esm/types/store/index.d.ts +3 -0
- package/build/esm/types/types/accounts/accounts.d.ts +11 -0
- package/build/esm/types/types/accounts/index.d.ts +1 -0
- package/build/esm/types/types/ai/ai.d.ts +78 -0
- package/build/esm/types/types/ai/index.d.ts +1 -0
- package/build/esm/types/types/allowed-list/allowed-list.d.ts +9 -0
- package/build/esm/types/types/allowed-list/index.d.ts +1 -0
- package/build/esm/types/types/audit/audit.d.ts +192 -0
- package/build/esm/types/types/audit/index.d.ts +1 -0
- package/build/esm/types/types/batch-refunds/batch-refunds.d.ts +38 -0
- package/build/esm/types/types/batch-refunds/index.d.ts +1 -0
- package/build/esm/types/types/checkout/checkout.d.ts +207 -0
- package/build/esm/types/types/checkout/index.d.ts +1 -0
- package/build/esm/types/types/checkout/styling/styling.d.ts +215 -0
- package/build/esm/types/types/cms/cms.d.ts +47 -0
- package/build/esm/types/types/cms/index.d.ts +1 -0
- package/build/esm/types/types/connection/connection.d.ts +72 -0
- package/build/esm/types/types/connection/costs.d.ts +26 -0
- package/build/esm/types/types/connection/index.d.ts +2 -0
- package/build/esm/types/types/country/country.d.ts +12 -0
- package/build/esm/types/types/country/index.d.ts +1 -0
- package/build/esm/types/types/customized-api-keys/customized-api-keys.d.ts +30 -0
- package/build/esm/types/types/customized-api-keys/index.d.ts +1 -0
- package/build/esm/types/types/data-report/conversion-rate.types.d.ts +48 -0
- package/build/esm/types/types/data-report/data-report.d.ts +51 -0
- package/build/esm/types/types/data-report/fraud.types.d.ts +165 -0
- package/build/esm/types/types/data-report/index.d.ts +3 -0
- package/build/esm/types/types/developer/developer.d.ts +13 -0
- package/build/esm/types/types/developer/index.d.ts +1 -0
- package/build/esm/types/types/feature-flags/intex.d.ts +13 -0
- package/build/esm/types/types/fraud-screening/fraud-screening.d.ts +109 -0
- package/build/esm/types/types/fraud-screening/index.d.ts +1 -0
- package/build/esm/types/types/index.d.ts +31 -0
- package/build/esm/types/types/mfa/index.d.ts +1 -0
- package/build/esm/types/types/mfa/mfa.d.ts +6 -0
- package/build/esm/types/types/notifications/index.d.ts +1 -0
- package/build/esm/types/types/notifications/notifications.d.ts +39 -0
- package/build/esm/types/types/operation-transaction/index.d.ts +1 -0
- package/build/esm/types/types/operation-transaction/operation-transaction.d.ts +28 -0
- package/build/esm/types/types/organization/index.d.ts +1 -0
- package/build/esm/types/types/organization/organization.d.ts +136 -0
- package/build/esm/types/types/organization-settings/index.d.ts +1 -0
- package/build/esm/types/types/organization-settings/organization-settings.d.ts +27 -0
- package/build/esm/types/types/payment/index.d.ts +1 -0
- package/build/esm/types/types/payment/payment.d.ts +566 -0
- package/build/esm/types/types/payment-links/index.d.ts +1 -0
- package/build/esm/types/types/payment-links/payment-links.d.ts +15 -0
- package/build/esm/types/types/payouts/index.d.ts +1 -0
- package/build/esm/types/types/payouts/payouts.d.ts +105 -0
- package/build/esm/types/types/reconciliation/index.d.ts +6 -0
- package/build/esm/types/types/reconciliation/reconciliation-advancements.d.ts +40 -0
- package/build/esm/types/types/reconciliation/reconciliation-agenda.d.ts +84 -0
- package/build/esm/types/types/reconciliation/reconciliation-alerts.d.ts +38 -0
- package/build/esm/types/types/reconciliation/reconciliation-fees.d.ts +45 -0
- package/build/esm/types/types/reconciliation/reconciliation-sales.d.ts +56 -0
- package/build/esm/types/types/reconciliation/reconciliation.d.ts +345 -0
- package/build/esm/types/types/reports/index.d.ts +1 -0
- package/build/esm/types/types/reports/reports.d.ts +136 -0
- package/build/esm/types/types/routing-monitors/index.d.ts +1 -0
- package/build/esm/types/types/routing-monitors/routing-monitors.d.ts +35 -0
- package/build/esm/types/types/s3-client/index.d.ts +1 -0
- package/build/esm/types/types/s3-client/s3-client.d.ts +19 -0
- package/build/esm/types/types/saml-config/index.d.ts +1 -0
- package/build/esm/types/types/saml-config/saml-config.d.ts +28 -0
- package/build/esm/types/types/smart-routing/index.d.ts +1 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +330 -0
- package/build/esm/types/types/team/index.d.ts +1 -0
- package/build/esm/types/types/team/team.d.ts +75 -0
- package/build/esm/types/types/template-reporting/common.types.d.ts +60 -0
- package/build/esm/types/types/template-reporting/index.d.ts +47 -0
- package/build/esm/types/types/template-reporting/schedule.types.d.ts +58 -0
- package/build/esm/types/types/template-reporting/template.types.d.ts +86 -0
- package/build/esm/types/types/translation/index.d.ts +1 -0
- package/build/esm/types/types/translation/translation.d.ts +8 -0
- package/build/esm/types/types/user/index.d.ts +1 -0
- package/build/esm/types/types/user/user.d.ts +181 -0
- package/build/esm/types/types/velocity-rules/index.d.ts +1 -0
- package/build/esm/types/types/velocity-rules/velocity-rules.d.ts +15 -0
- package/build/esm/types/types/webhook/index.d.ts +1 -0
- package/build/esm/types/types/webhook/webhook.d.ts +63 -0
- package/build/esm/types/utils/enums.d.ts +162 -0
- package/build/esm/types/utils/handler-error.d.ts +6 -0
- package/build/esm/types/utils/test-utils.d.ts +5 -0
- package/build/esm/types/utils/use-localstorage.d.ts +2 -0
- package/build/esm/types/websockets/index.d.ts +1 -0
- package/build/esm/types/websockets/use-chart-assistant-socket.d.ts +17 -0
- package/build/esm/types/websockets/use-chart-assistant-socket.test.d.ts +1 -0
- package/build/esm/types/yuno-dashboard-api-mfe.d.ts +8 -0
- package/build/index.d.ts +38 -3
- package/package.json +30 -32
- package/build/index.js +0 -42
- /package/build/{types → cjs/types}/api/api.singleton.d.ts +0 -0
- /package/build/{types → cjs/types}/api/api.types.d.ts +0 -0
- /package/build/{types → cjs/types}/api/index.d.ts +0 -0
- /package/build/{types → cjs/types}/api-provider.d.ts +0 -0
- /package/build/{types → cjs/types}/common/config.d.ts +0 -0
- /package/build/{types → cjs/types}/constants/errors-code.constant.d.ts +0 -0
- /package/build/{types → cjs/types}/constants/index.d.ts +0 -0
- /package/build/{types → cjs/types}/lib/http-client/__tests__/http-client.test.d.ts +0 -0
- /package/build/{types → cjs/types}/lib/http-client/api.config.d.ts +0 -0
- /package/build/{types → cjs/types}/lib/http-client/axios.d.ts +0 -0
- /package/build/{types → cjs/types}/lib/http-client/index.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/browser.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/handlers/index.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/handlers/insights.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/handlers/organizations.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/handlers/payments.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/index.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/insights/conversion-rate/overview-fraud-3ds.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/insights/conversion-rate/overview.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/insights/overview/overview-metrics.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/insights/overview/overview.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/payments/payments.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/msw/mocks/payments/transaction-details.mock.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/S3Client/S3Client.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/S3Client/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/accounts/accounts.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/accounts/delete-mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/accounts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/ai/ai.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/ai/ai.mutation.test.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/ai/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/audit/audit-api.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/audit/audit.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/audit/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/batch-refunds/batch-refunds.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/batch-refunds/batch-refunds.mutation.test.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/batch-refunds/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/chartgpt/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/checkouts/checkouts.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/checkouts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/checkouts/styling/styling.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/connections/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/developers/developers.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/developers/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/fraud-screening/fraud-screening.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/fraud-screening/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/insights/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/insights/insights.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/multi-factor-authentication/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/multi-factor-authentication/multi-factor-authentication.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/notifications/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/notifications/notifications.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/organization-settings/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/organization-settings/organization-settings.mutations.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/organizations/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/organizations/organizations.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/payment-links/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/payment-links/payment-links.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/payments/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/payments/payments.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/reconciliations/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/reconciliations/reconciliations-alerts.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/reconciliations/reconciliations.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/reports/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/reports/reports.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/routing-monitors/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/routing-monitors/routing-monitors.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/saml-config/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/saml-config/saml-config.query.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/scheduled-reports/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/scheduled-reports/scheduled-reports.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/security/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/security/security.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/settings/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/settings/settings.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/smart-routing/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/smart-routing/smart-routing.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/team/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/team/team.mutaion.test.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/team/team.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/template-reporting/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/template-reporting/template-reporting.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/users/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/users/users.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/velocity-rules/index.d.ts +0 -0
- /package/build/{types → cjs/types}/mutations/velocity-rules/velocity-rules.mutation.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/accounts/accounts.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/accounts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/audit/audit.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/audit/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/batch-refunds/batch-refunds.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/batch-refunds/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/chartgpt/chartgpt.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/chartgpt/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/checkouts/checkouts.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/checkouts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/checkouts/styling/styling.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/cms/cms.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/cms/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/connections/connections.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/connections/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/data-report/data-report.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/data-report/fraud/fraud.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/data-report/fraud/fraud.query.test.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/data-report/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/developers/developers.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/developers/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/dialogs/dialogs.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/dialogs/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/feature-flags/feature-flags.test.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/feature-flags/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/firebase/firebase.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/firebase/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/fraud-screening/fraud-screening.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/fraud-screening/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/mfa/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/mfa/organization-settings.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/notifications/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/notifications/notifications.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/organizations/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/organizations/organizations.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/payment-links/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/payment-links/payment-links.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/payments/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/payments/payments.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/payments/payouts.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations-advancements.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations-agenda.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations-alerts.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations-fees.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations-sales.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reconciliations/reconciliations.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reports/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/reports/reports.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/routing-monitors/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/routing-monitors/routing-monitors.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/saml-config/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/saml-config/saml-config.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/smart-routing/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/smart-routing/smart-routing.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/team/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/team/team.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/template-reporting/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/template-reporting/template-reporting.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/translation/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/translation/translation.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/users/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/users/users.query.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/velocity-rules/index.d.ts +0 -0
- /package/build/{types → cjs/types}/queries/velocity-rules/velocity-rules.query.d.ts +0 -0
- /package/build/{types → cjs/types}/store/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/accounts/accounts.d.ts +0 -0
- /package/build/{types → cjs/types}/types/accounts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/ai/ai.d.ts +0 -0
- /package/build/{types → cjs/types}/types/ai/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/allowed-list/allowed-list.d.ts +0 -0
- /package/build/{types → cjs/types}/types/allowed-list/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/audit/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/batch-refunds/batch-refunds.d.ts +0 -0
- /package/build/{types → cjs/types}/types/batch-refunds/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/checkout/checkout.d.ts +0 -0
- /package/build/{types → cjs/types}/types/checkout/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/checkout/styling/styling.d.ts +0 -0
- /package/build/{types → cjs/types}/types/cms/cms.d.ts +0 -0
- /package/build/{types → cjs/types}/types/cms/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/connection/costs.d.ts +0 -0
- /package/build/{types → cjs/types}/types/connection/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/country/country.d.ts +0 -0
- /package/build/{types → cjs/types}/types/country/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/customized-api-keys/customized-api-keys.d.ts +0 -0
- /package/build/{types → cjs/types}/types/customized-api-keys/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/data-report/conversion-rate.types.d.ts +0 -0
- /package/build/{types → cjs/types}/types/data-report/data-report.d.ts +0 -0
- /package/build/{types → cjs/types}/types/data-report/fraud.types.d.ts +0 -0
- /package/build/{types → cjs/types}/types/data-report/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/developer/developer.d.ts +0 -0
- /package/build/{types → cjs/types}/types/developer/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/feature-flags/intex.d.ts +0 -0
- /package/build/{types → cjs/types}/types/fraud-screening/fraud-screening.d.ts +0 -0
- /package/build/{types → cjs/types}/types/fraud-screening/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/mfa/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/mfa/mfa.d.ts +0 -0
- /package/build/{types → cjs/types}/types/notifications/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/notifications/notifications.d.ts +0 -0
- /package/build/{types → cjs/types}/types/operation-transaction/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/operation-transaction/operation-transaction.d.ts +0 -0
- /package/build/{types → cjs/types}/types/organization/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/organization-settings/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/organization-settings/organization-settings.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payment/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payment/payment.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payment-links/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payment-links/payment-links.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payouts/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/payouts/payouts.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation-advancements.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation-agenda.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation-alerts.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation-fees.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation-sales.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reconciliation/reconciliation.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reports/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/reports/reports.d.ts +0 -0
- /package/build/{types → cjs/types}/types/routing-monitors/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/routing-monitors/routing-monitors.d.ts +0 -0
- /package/build/{types → cjs/types}/types/s3-client/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/s3-client/s3-client.d.ts +0 -0
- /package/build/{types → cjs/types}/types/saml-config/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/saml-config/saml-config.d.ts +0 -0
- /package/build/{types → cjs/types}/types/smart-routing/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/smart-routing/smart-routing.d.ts +0 -0
- /package/build/{types → cjs/types}/types/team/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/team/team.d.ts +0 -0
- /package/build/{types → cjs/types}/types/template-reporting/common.types.d.ts +0 -0
- /package/build/{types → cjs/types}/types/template-reporting/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/template-reporting/schedule.types.d.ts +0 -0
- /package/build/{types → cjs/types}/types/template-reporting/template.types.d.ts +0 -0
- /package/build/{types → cjs/types}/types/translation/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/translation/translation.d.ts +0 -0
- /package/build/{types → cjs/types}/types/user/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/user/user.d.ts +0 -0
- /package/build/{types → cjs/types}/types/velocity-rules/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/velocity-rules/velocity-rules.d.ts +0 -0
- /package/build/{types → cjs/types}/types/webhook/index.d.ts +0 -0
- /package/build/{types → cjs/types}/types/webhook/webhook.d.ts +0 -0
- /package/build/{types → cjs/types}/utils/enums.d.ts +0 -0
- /package/build/{types → cjs/types}/utils/handler-error.d.ts +0 -0
- /package/build/{types → cjs/types}/utils/use-localstorage.d.ts +0 -0
- /package/build/{types → cjs/types}/websockets/index.d.ts +0 -0
- /package/build/{types → cjs/types}/websockets/use-chart-assistant-socket.d.ts +0 -0
- /package/build/{types → cjs/types}/websockets/use-chart-assistant-socket.test.d.ts +0 -0
- /package/build/{types → cjs/types}/yuno-dashboard-api-mfe.d.ts +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare function Auth0Provider({ children }: {
|
|
3
|
+
children: any;
|
|
4
|
+
}): import("react").JSX.Element;
|
|
5
|
+
export declare function useAuth0(): {
|
|
6
|
+
loginWithRedirect(): void;
|
|
7
|
+
getAccessTokenSilently(): Promise<string>;
|
|
8
|
+
};
|
|
9
|
+
export declare function ApiProvider({ children }: {
|
|
10
|
+
children: any;
|
|
11
|
+
}): import("react").JSX.Element;
|
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
|
+
import { HttpClient } from '../lib/http-client';
|
|
3
|
+
import { GetPaymentsParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, ThemeSettings } from './api.types';
|
|
4
|
+
import { Audit, OperationTransaction, Organization, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, Payment, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, Connection, TemplateReporting, GetUserFullResponse } from '../types';
|
|
5
|
+
import { ConversionRateParams, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds } from '../types/data-report/conversion-rate.types';
|
|
6
|
+
import { RoutingMonitors } from '../types/routing-monitors';
|
|
7
|
+
import { ChangePaymentsWebhook } from '../mutations';
|
|
8
|
+
import { S3Client } from '../types/s3-client';
|
|
9
|
+
import { AllowedList } from '../types/allowed-list';
|
|
10
|
+
import { Cost } from '../types/connection/costs';
|
|
11
|
+
import { Styling, StylingSettings, UpdateStylingThemeParams } from '../types/checkout/styling/styling';
|
|
12
|
+
import { FeatureFlags } from '../types/feature-flags/intex';
|
|
13
|
+
import { FeatureFlagsResult, PatchChartGPTPayload } from '../queries';
|
|
14
|
+
interface S3Payload {
|
|
15
|
+
payload: S3Client.PayloadV2;
|
|
16
|
+
handleSetProgress?: (progress: number) => void;
|
|
17
|
+
}
|
|
18
|
+
export declare class Api extends HttpClient {
|
|
19
|
+
constructor(config?: AxiosRequestConfig);
|
|
20
|
+
simulateAxiosError(): Promise<AxiosResponse<any, any, {}>>;
|
|
21
|
+
updateReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
22
|
+
createReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
23
|
+
getReconciliationTransactions<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
24
|
+
getReconciliationSettlements<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
25
|
+
getReconciliationMetrics<T>(params: GetReconciliationMetricParams): Promise<AxiosResponse<T, unknown>>;
|
|
26
|
+
getReconciliationFilters<T>(): Promise<AxiosResponse<T, unknown>>;
|
|
27
|
+
getReconciliationsReportColumns<T>(templateType: TemplateType, reportType: ReconciliationReportType): Promise<AxiosResponse<T, any>>;
|
|
28
|
+
getReconciliationReportTemplates<T>(): Promise<AxiosResponse<T>>;
|
|
29
|
+
getAllTableColumns<T>(tableType: Reconciliation.TableType): Promise<AxiosResponse<T>>;
|
|
30
|
+
getReconciliationActive<T>(): Promise<AxiosResponse<T, unknown>>;
|
|
31
|
+
getReconciliationAlerts<T>(body: ReconciliationAlerts.ReconciliationAlertFiltersBody, params: ReconciliationAlerts.ReconciliationAlertFiltersParams): Promise<AxiosResponse<T>>;
|
|
32
|
+
postReconciliationAlert<T>(payload: ReconciliationAlerts.ReconciliationAlertToSave): Promise<AxiosResponse<T>>;
|
|
33
|
+
updateReconciliationAlert<T>(payload: ReconciliationAlerts.ReconciliationAlertToUpdate): Promise<AxiosResponse<T>>;
|
|
34
|
+
deleteReconciliationAlert<T>(params: ReconciliationAlerts.DeleteReconciliationAlertResponse): Promise<AxiosResponse<T>>;
|
|
35
|
+
getReconciliationAgenda<T>(body: ReconciliationAgenda.FiltersRequestBody, params: ReconciliationAgenda.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
36
|
+
getReconciliationAgendaInsightByKey<T>(body: ReconciliationAgenda.FiltersRequestBody, params: ReconciliationAgenda.InsightRequestParams): Promise<AxiosResponse<T>>;
|
|
37
|
+
getReconciliationSales<T>(body: ReconciliationSales.FiltersRequestBody, params: ReconciliationSales.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
38
|
+
getReconciliationAdvancements<T>(body: ReconciliationAdvancements.FiltersRequestBody, params: ReconciliationAdvancements.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
39
|
+
getReconciliationFees<T>(body: ReconciliationFees.FiltersRequestBody, params: ReconciliationFees.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
40
|
+
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
41
|
+
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
42
|
+
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
43
|
+
postPaymentsEvaluated<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
44
|
+
getPaymentV2<T>(paymentCode: string): Promise<AxiosResponse<T, any>>;
|
|
45
|
+
postTransactions<T>(params: GetTransactionsParams): Promise<AxiosResponse<T, any>>;
|
|
46
|
+
postFraudTransactions<T>(params: GetTransactionsParams): Promise<AxiosResponse<T, any>>;
|
|
47
|
+
getPayoutDetails<T>(params: GetPayoutDetail): Promise<AxiosResponse<T, any>>;
|
|
48
|
+
getPayoutTransactionDetails<T>(params: GetPayoutTransactionDetail): Promise<AxiosResponse<T, any>>;
|
|
49
|
+
getPayoutHistoryDetails<T>(params: GetPayoutDetail, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
50
|
+
getPaymentMethodsByCountry<T>({ provider_id, country }: Organization.PaymentMethods, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
|
|
51
|
+
getOrgByName<T>(name: any): Promise<AxiosResponse<T, any>>;
|
|
52
|
+
createOperationTransaction<T>(payload: OperationTransaction.Request, transactionId: string, paymentId: string, action: OperationTransaction.Actions): Promise<AxiosResponse<T, any>>;
|
|
53
|
+
getPaymentMethodsAndProviders<T>(): Promise<AxiosResponse<T, any>>;
|
|
54
|
+
getTransactionDetailsV2<T>(params: GetTransactionDetailsV2Params): Promise<AxiosResponse<T, any>>;
|
|
55
|
+
getTransactionRawResponse<T>(params: GetTransactionDetailsV2Params): Promise<AxiosResponse<T, any>>;
|
|
56
|
+
uploadChargebacks<T>(payload: Payment.UploadRequest, paymentId: string, transactionId: string, handleSetProgress: (progress: number) => void): Promise<AxiosResponse<T, any>>;
|
|
57
|
+
getPaymentTransactionsDetails<T>({ transaction_code, }: {
|
|
58
|
+
transaction_code: any;
|
|
59
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
60
|
+
getTransactionHistoryByPaymentCode<T>({ payment_code, }: {
|
|
61
|
+
payment_code: any;
|
|
62
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
63
|
+
getDeveloperCredentials<T>(password: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
64
|
+
getDeveloperCredentialsValidatePassword<T>(password: any): Promise<AxiosResponse<T, any>>;
|
|
65
|
+
getAllowedIps<T>(): Promise<AxiosResponse<T, any>>;
|
|
66
|
+
patchAllowedIps<T>(request: AllowedList.Request): Promise<AxiosResponse<T, any>>;
|
|
67
|
+
getOrganization<T>(): Promise<AxiosResponse<T, any>>;
|
|
68
|
+
getAllOrganization<T>(): Promise<AxiosResponse<T, any>>;
|
|
69
|
+
getProviderParams<T>(param: any, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
|
|
70
|
+
getIntegrationByAccountV2<T>({ accountCode, organizationCode, }: {
|
|
71
|
+
accountCode: string;
|
|
72
|
+
organizationCode: string;
|
|
73
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
74
|
+
putCosts<T>(payload: {
|
|
75
|
+
integration_code: string;
|
|
76
|
+
costs: Cost[];
|
|
77
|
+
}): Promise<AxiosResponse<T>>;
|
|
78
|
+
updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
|
|
79
|
+
getIntegrationParams<T>({ accountCode, integration_code, }: {
|
|
80
|
+
accountCode: any;
|
|
81
|
+
integration_code: any;
|
|
82
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
83
|
+
getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T>>;
|
|
84
|
+
getHashPylon<T>(): Promise<AxiosResponse<T>>;
|
|
85
|
+
getConnections<T>(): Promise<AxiosResponse<T, any>>;
|
|
86
|
+
postValidateStatusConnection<T>({ payload, accountCode, }: {
|
|
87
|
+
payload: any;
|
|
88
|
+
accountCode: any;
|
|
89
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
90
|
+
postChangeStatusConnection<T>({ payload, accountCode, }: {
|
|
91
|
+
payload: any;
|
|
92
|
+
accountCode: any;
|
|
93
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
94
|
+
postMultiConnection<T>({ payload }: {
|
|
95
|
+
payload: any;
|
|
96
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
97
|
+
postMultiConnectionValidate<T>(): Promise<AxiosResponse<T, any>>;
|
|
98
|
+
patchConnection<T>({ payload, connectionCode, }: {
|
|
99
|
+
payload: any;
|
|
100
|
+
connectionCode: any;
|
|
101
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
102
|
+
postDefaultRoutes<T>({ payload, }: {
|
|
103
|
+
payload: {
|
|
104
|
+
provider_id: string;
|
|
105
|
+
connections: [integration_code: string, account_code: string];
|
|
106
|
+
};
|
|
107
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
108
|
+
getDialogs<T>(): Promise<AxiosResponse<T, any>>;
|
|
109
|
+
getWebhookParamsV2<T>(): Promise<AxiosResponse<T, Webhook.ParamV2[]>>;
|
|
110
|
+
getWebhooksV3<T>({ accountCode, name, }: {
|
|
111
|
+
accountCode: string;
|
|
112
|
+
name?: string;
|
|
113
|
+
}): Promise<AxiosResponse<Webhook.WebHookV2[]>>;
|
|
114
|
+
getWebhooksV2Detail<T>({ accountCode, }: {
|
|
115
|
+
accountCode: any;
|
|
116
|
+
}): Promise<AxiosResponse<T, Webhook.WebHookV2[]>>;
|
|
117
|
+
postWebhookV2MultiAccount<T>({ payload, }: {
|
|
118
|
+
payload: Webhook.WebHookV2MultiAccount;
|
|
119
|
+
}): Promise<AxiosResponse<T>>;
|
|
120
|
+
deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
121
|
+
updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
|
|
122
|
+
getMenu<T>(): Promise<AxiosResponse<T>>;
|
|
123
|
+
postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
124
|
+
payload: Audit.AuditWebhooksParams;
|
|
125
|
+
}): Promise<AxiosResponse<T>>;
|
|
126
|
+
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
127
|
+
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
128
|
+
postApiLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
129
|
+
payload: Audit.AuditApiLogsParams;
|
|
130
|
+
}): Promise<AxiosResponse<T>>;
|
|
131
|
+
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
132
|
+
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
133
|
+
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
134
|
+
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
135
|
+
useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
136
|
+
useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
|
|
137
|
+
useGetTimeZoneCatalog<T>(): Promise<AxiosResponse<T, any>>;
|
|
138
|
+
useGetAuditLogsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
139
|
+
getDashboardStaticContents<T>(): Promise<AxiosResponse<T, any>>;
|
|
140
|
+
getLocales<T>(): Promise<AxiosResponse<T, any>>;
|
|
141
|
+
getSmartRoutingMethods<T>(accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
142
|
+
putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean): Promise<AxiosResponse<T, any>>;
|
|
143
|
+
getSmartRoutingConditionTypes<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T, any>>;
|
|
144
|
+
getSmartRoutingConditionPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T, any>>;
|
|
145
|
+
getSmartRoutingConditionTypesValues<T>(accountCode: string, index: number): Promise<AxiosResponse<T, any>>;
|
|
146
|
+
getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string): Promise<AxiosResponse<T, SmartRouting.WorkflowVersion>>;
|
|
147
|
+
getSmartRoutingWorkflowVersion<T>(accountCode: string, workflowVersionId: string): Promise<AxiosResponse<T, any>>;
|
|
148
|
+
getSmartRoutingWorkflow<T>(accountCode: string, paymentName: string): Promise<AxiosResponse<T, any>>;
|
|
149
|
+
putSmartRoutingUpdateWorkflow<T>(accountCode: string, data: any): Promise<AxiosResponse<T, any>>;
|
|
150
|
+
putSmartRoutingUpdateWorkflowName<T>(accountCode: string, data: {
|
|
151
|
+
name: string;
|
|
152
|
+
code: string;
|
|
153
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
154
|
+
postSmartRoutingCreateWorkflow<T>(accountCode: string, data: any): Promise<AxiosResponse<T, any>>;
|
|
155
|
+
postSmartRoutingPublishVersion<T>(accountCode: string, versionCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
156
|
+
deleteSmartRoutingVersion<T>(accountCode: string, versionCode: string): Promise<AxiosResponse<T, any>>;
|
|
157
|
+
postSmartRoutingDuplicateVersion<T>(accountCode: string, versionCode: string): Promise<AxiosResponse<T, any>>;
|
|
158
|
+
getSmartRoutingDeclinedGroup<T>(accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
159
|
+
updateSmartRoutingDeclinedGroup<T>(accountCode: string, declineId: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
160
|
+
createSmartRoutingDeclinedGroup<T>(accountCode: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
161
|
+
getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
|
|
162
|
+
updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean): Promise<AxiosResponse<T, any>>;
|
|
163
|
+
getSmartRoutingSimulateConditionTypeValues<T>(accountCode: string): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
164
|
+
simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any): Promise<AxiosResponse<T, any>>;
|
|
165
|
+
getSmartRoutingSearchConditionValues<T>(conditionType: string, text: string): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
166
|
+
getProviderConversionRatesData<T>(): Promise<AxiosResponse<T, SmartRouting.SRConversionRates[]>>;
|
|
167
|
+
updateMonitorRedistribution<T>(organizationCode: string, values: SmartRouting.MonitorRedistribution): Promise<AxiosResponse<T, any>>;
|
|
168
|
+
removeDeclinedGroup<T>(organizationCode: string, declinedGroupCode: number | string): Promise<AxiosResponse<T, any>>;
|
|
169
|
+
multiAccountDeclinedGroupCreate<T>(organizationCode: string, payload: SmartRouting.PayloadDeclinedGroupCreate): Promise<AxiosResponse<T, any>>;
|
|
170
|
+
generateAIWorkflowRoutes<T>(organizationCode: string, payload: SmartRouting.PayloadAIWorkflowCreate): Promise<AxiosResponse<T, any>>;
|
|
171
|
+
postAIGenerationFeedback<T>(payload: AI.AIGenerate): Promise<AxiosResponse<T, any>>;
|
|
172
|
+
getRoutingMonitorsTemplates<T>(organizationCode: any): Promise<AxiosResponse<T, RoutingMonitors.TemplateSelector[]>>;
|
|
173
|
+
getRoutingMonitorsTemplate<T>(code: string, organizationCode: string): Promise<AxiosResponse<T, RoutingMonitors.Template>>;
|
|
174
|
+
createMonitorThreshold<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
|
|
175
|
+
createMonitorTemplate<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
|
|
176
|
+
getSmartRoutingDataReport<T>(params: {
|
|
177
|
+
[key: string]: number;
|
|
178
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
179
|
+
getInsightsMetricsConversionRateV2<T>(params: DataReport.InsightMetricParams, path: string): Promise<AxiosResponse<T, any>>;
|
|
180
|
+
getInsightsMetricsConversionRateViewMore<T>(params: DataReport.InsightMetricParams, type: string): Promise<AxiosResponse<T, any>>;
|
|
181
|
+
getInsightFallbackMetrics<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
182
|
+
getInsightsMetricsVolume<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
183
|
+
getInsightsMetricsVolumeV2<T>(account_codes: string, path: DataReport.InsightsVolumeMetricsV2Path, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
184
|
+
getInsightsFraudScreeningVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
185
|
+
getInsightsFraudScreeningConversionRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
186
|
+
getInsights3dsVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
187
|
+
getInsights3dsConversionRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
188
|
+
getInsights3dsDeclineReasons(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
189
|
+
getInsights3dsFrictionlessVsChallenge(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
190
|
+
getInsightsChargebacksVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
191
|
+
getInsightsChargebacksTotalRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
192
|
+
getInsightsChargebacksWinRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
193
|
+
getInsightsChargebacksDisputed(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
194
|
+
getInsightsChargebacksByProviderAndCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
195
|
+
getInsightsChargebacksReasonsDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
196
|
+
getInsightsChargebacksStatusDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
197
|
+
getInsightsChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
198
|
+
getInsightOverview<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
199
|
+
getInsightOverviewV3<T>(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): Promise<AxiosResponse<T, any>>;
|
|
200
|
+
getInsighstHomeMetrics<T>(params: DataReport.InsightsHomeMetrics): Promise<AxiosResponse<T, any>>;
|
|
201
|
+
getInsightsMetricsTotalPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
202
|
+
getInsightsMetricsCustomerPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
203
|
+
getCheckouts({ accountCode, }: {
|
|
204
|
+
accountCode: any;
|
|
205
|
+
}): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
|
|
206
|
+
/**
|
|
207
|
+
* @deprecated since v0.28.6. Use getStylingSettings instead
|
|
208
|
+
*/
|
|
209
|
+
getCheckoutTemplate<T>({ accountCode }: {
|
|
210
|
+
accountCode: any;
|
|
211
|
+
}): Promise<AxiosResponse<T>>;
|
|
212
|
+
getNameAndIcon({ paymentMethodType, type, }: Checkout.GetNameAndIconArgs): Promise<AxiosResponse<Checkout.GetNameAndIconResponse>>;
|
|
213
|
+
getRequiredFields({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs): Promise<AxiosResponse<Checkout.GetRequiredFieldsResponse>>;
|
|
214
|
+
/**
|
|
215
|
+
* @deprecated since v0.28.6. Use changeStylingSettings instead
|
|
216
|
+
*/
|
|
217
|
+
updateCheckoutTemplate<T>({ accountCode, template, }: {
|
|
218
|
+
accountCode: any;
|
|
219
|
+
template: any;
|
|
220
|
+
}): Promise<AxiosResponse<T>>;
|
|
221
|
+
updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
|
|
222
|
+
getStylingSdkDynamic({ accountCode }: {
|
|
223
|
+
accountCode: any;
|
|
224
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
225
|
+
/**
|
|
226
|
+
* @deprecated since version 0.36.27. use getStylingSettings instead
|
|
227
|
+
*/
|
|
228
|
+
getStylingTheme({ accountCode }: {
|
|
229
|
+
accountCode: string;
|
|
230
|
+
}): Promise<AxiosResponse<Styling.Theme, any, {}>>;
|
|
231
|
+
/**
|
|
232
|
+
* @deprecated since version 0.36.27. use changeStylingSettings instead
|
|
233
|
+
*/
|
|
234
|
+
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any, {}>>;
|
|
235
|
+
/**
|
|
236
|
+
* @deprecated since version 0.36.27. use getStylingSettingsV2 instead
|
|
237
|
+
*/
|
|
238
|
+
getStylingSettings({ accountCode }: {
|
|
239
|
+
accountCode: any;
|
|
240
|
+
}): Promise<AxiosResponse<Styling.Settings, any, {}>>;
|
|
241
|
+
getStylingSettingsV2({ accountCode, environment, }: {
|
|
242
|
+
accountCode: string;
|
|
243
|
+
environment?: string;
|
|
244
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
245
|
+
changeStylingSettings({ accountCode, environment, payload, }: {
|
|
246
|
+
accountCode: string;
|
|
247
|
+
environment?: string;
|
|
248
|
+
payload: StylingSettings.UpdateSettings;
|
|
249
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
|
|
250
|
+
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
251
|
+
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
252
|
+
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
253
|
+
getTotalRowsForExport<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
254
|
+
reportsList<T>(): Promise<AxiosResponse<T>>;
|
|
255
|
+
reportsListMultiEnv<T>(): Promise<AxiosResponse<T>>;
|
|
256
|
+
downloadReports<T>(reportId: any): Promise<AxiosResponse<T>>;
|
|
257
|
+
cancelReport<T>(reportId: any): Promise<AxiosResponse<T>>;
|
|
258
|
+
getReportTemplates<T>(): Promise<AxiosResponse<T>>;
|
|
259
|
+
createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
260
|
+
updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
261
|
+
getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
|
|
262
|
+
getReportTemplatesList<T>(params: TemplateReporting.GetTemplatesListParams): Promise<AxiosResponse<T>>;
|
|
263
|
+
getReportTemplateById<T>(templateId: number): Promise<AxiosResponse<T>>;
|
|
264
|
+
createTemplateReporting<T>(payload: TemplateReporting.CreateTemplateRequest): Promise<AxiosResponse<T>>;
|
|
265
|
+
cloneReportTemplate<T>(templateId: number, payload: TemplateReporting.CloneTemplateRequest): Promise<AxiosResponse<T>>;
|
|
266
|
+
updateTemplateSelection<T>(templateId: number, payload: TemplateReporting.UpdateTemplateSelectionRequest): Promise<AxiosResponse<T>>;
|
|
267
|
+
changeTemplateStatus<T>(templateId: number, payload: TemplateReporting.ChangeTemplateStatusRequest): Promise<AxiosResponse<T>>;
|
|
268
|
+
deleteReportTemplate<T>(templateId: number): Promise<AxiosResponse<T>>;
|
|
269
|
+
getReportSchedulesList<T>(): Promise<AxiosResponse<T>>;
|
|
270
|
+
getReportScheduleById<T>(scheduleId: number): Promise<AxiosResponse<T>>;
|
|
271
|
+
createReportSchedule<T>(payload: TemplateReporting.CreateScheduleRequest): Promise<AxiosResponse<T>>;
|
|
272
|
+
deactivateReportSchedule<T>(scheduleId: number): Promise<AxiosResponse<T>>;
|
|
273
|
+
deleteReportSchedule<T>(scheduleId: number): Promise<AxiosResponse<T>>;
|
|
274
|
+
getRefundPdf<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
275
|
+
getProofOfCancel<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
276
|
+
getProofOfPayment<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
277
|
+
getScheduledReport<T>(reportType: any): Promise<AxiosResponse<T>>;
|
|
278
|
+
postScheduledReport<T>(payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
279
|
+
updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
280
|
+
deleteScheduledReport<T>(reportCode: string): Promise<AxiosResponse<T>>;
|
|
281
|
+
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
282
|
+
getUserFull(): Promise<AxiosResponse<GetUserFullResponse, any>>;
|
|
283
|
+
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
284
|
+
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
285
|
+
getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
286
|
+
getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
|
|
287
|
+
response: Array<{
|
|
288
|
+
name: string;
|
|
289
|
+
code_live: string;
|
|
290
|
+
code_testing: string;
|
|
291
|
+
}>;
|
|
292
|
+
}>>;
|
|
293
|
+
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
294
|
+
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
295
|
+
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
296
|
+
userCode: any;
|
|
297
|
+
organizationCode: any;
|
|
298
|
+
}): Promise<AxiosResponse<T>>;
|
|
299
|
+
getAccounts<T>(organizationCode: any): Promise<AxiosResponse<T, any>>;
|
|
300
|
+
getAccountsV2<T>(): Promise<AxiosResponse<T, any>>;
|
|
301
|
+
getAccountsByUser<T>(userCode: string): Promise<AxiosResponse<T, any>>;
|
|
302
|
+
putAccountsUserMassive<T>(organizationCode: any, userCode: any, payload: any): Promise<AxiosResponse<T, any>>;
|
|
303
|
+
deleteAccountsUserMassive<T, K>(organizationCode: string, userCode: string, payload: any): Promise<AxiosResponse<T, K>>;
|
|
304
|
+
postAccount<T>(name: string, principal: boolean): Promise<AxiosResponse<T>>;
|
|
305
|
+
patchAccountV2<T>({ name, code, principal, }: {
|
|
306
|
+
name: string;
|
|
307
|
+
code: string;
|
|
308
|
+
principal: boolean;
|
|
309
|
+
}): Promise<AxiosResponse<T>>;
|
|
310
|
+
putAccountPrincipal<T>({ account_code }: {
|
|
311
|
+
account_code: any;
|
|
312
|
+
}): Promise<AxiosResponse<T>>;
|
|
313
|
+
getMergedNotifications<T>(): Promise<AxiosResponse<T>>;
|
|
314
|
+
getNotificationsCustomer<T>(customer: any): Promise<AxiosResponse<T>>;
|
|
315
|
+
getValidateOpsgenieKey<T>(key: any): Promise<AxiosResponse<T>>;
|
|
316
|
+
postSlackMessageChannel<T>(payload: {
|
|
317
|
+
channel: string;
|
|
318
|
+
text: string;
|
|
319
|
+
}): Promise<AxiosResponse<T>>;
|
|
320
|
+
pathNotification<T>(payload: PathNotification): Promise<AxiosResponse<T>>;
|
|
321
|
+
getNotificationsNumber<T>(customer: any): Promise<AxiosResponse<T>>;
|
|
322
|
+
teamsFiltersMembers<T>({ organizationCode, }: {
|
|
323
|
+
organizationCode: any;
|
|
324
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
325
|
+
postMembersPaginatedV2<T>({ organizationCode, accountCodes, email, page, pageSize, }: {
|
|
326
|
+
organizationCode: any;
|
|
327
|
+
accountCodes: any;
|
|
328
|
+
email: any;
|
|
329
|
+
page: any;
|
|
330
|
+
pageSize: any;
|
|
331
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
332
|
+
getRoles<T>(): Promise<AxiosResponse<T, any>>;
|
|
333
|
+
setCustodian<T>(): Promise<AxiosResponse<T>>;
|
|
334
|
+
deleteUserTeamV2<T>({ userCode, organizationCode, }: {
|
|
335
|
+
userCode: any;
|
|
336
|
+
organizationCode: any;
|
|
337
|
+
}): Promise<AxiosResponse<T>>;
|
|
338
|
+
createRoles<T>(payload: any, accountCode: any): Promise<AxiosResponse<T>>;
|
|
339
|
+
editRoles<T>({ payload, id }: {
|
|
340
|
+
payload: any;
|
|
341
|
+
id: any;
|
|
342
|
+
}, accountCode: any): Promise<AxiosResponse<T>>;
|
|
343
|
+
deleteRoles<T>(id: any): Promise<AxiosResponse<T>>;
|
|
344
|
+
getRolesPermissions<T>(): Promise<AxiosResponse<T>>;
|
|
345
|
+
getFeatureFlagId<T>({ name, ...rest }: FeatureFlags.Request): Promise<AxiosResponse<T>>;
|
|
346
|
+
getFeatureFlagIdAll({ accountCode, }: {
|
|
347
|
+
accountCode?: string;
|
|
348
|
+
}): Promise<AxiosResponse<FeatureFlagsResult, any>>;
|
|
349
|
+
getPermissionsCatalog<T>(): Promise<AxiosResponse<T>>;
|
|
350
|
+
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
351
|
+
getCardBrands<T>(): Promise<AxiosResponse<T>>;
|
|
352
|
+
getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
|
|
353
|
+
getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
|
|
354
|
+
sendPaymentNotification(params: SendPaymentNotification.Params, body: SendPaymentNotification.Body): Promise<AxiosResponse<SendPaymentNotification.Response>>;
|
|
355
|
+
postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
|
|
356
|
+
getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
|
|
357
|
+
getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
358
|
+
getPaymentLinks<T>(params: any, account: any): Promise<AxiosResponse<T, any>>;
|
|
359
|
+
getPaymentLinksByCode<T>(paymentLinkCode: any): Promise<AxiosResponse<T, any>>;
|
|
360
|
+
postPaymentLinks<T>({ payload, accountCode, }: {
|
|
361
|
+
payload: any;
|
|
362
|
+
accountCode: any;
|
|
363
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
364
|
+
patchPaymentLinks<T>({ payload, accountCode, paymentLinkCode, }: {
|
|
365
|
+
payload: any;
|
|
366
|
+
accountCode: any;
|
|
367
|
+
paymentLinkCode: any;
|
|
368
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
369
|
+
postDeletePaymentLink<T>({ code }: {
|
|
370
|
+
code: any;
|
|
371
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
372
|
+
getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
373
|
+
firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
|
|
374
|
+
postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
|
|
375
|
+
postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
|
|
376
|
+
postUserSettingsPinned<T>(payload: PinnedSections): Promise<AxiosResponse<T>>;
|
|
377
|
+
postUserThemeSettings<T>(payload: ThemeSettings): Promise<AxiosResponse<T>>;
|
|
378
|
+
getMfaTokenValidation<T>(password: string, otp: string): Promise<AxiosResponse<T, any>>;
|
|
379
|
+
getEmailOtp<T>(): Promise<AxiosResponse<T, any>>;
|
|
380
|
+
confirmMfaOtp<T>(payload: MfaUserSubscribe): Promise<AxiosResponse<T>>;
|
|
381
|
+
unrollMfa<T>(password: any): Promise<AxiosResponse<T, any>>;
|
|
382
|
+
sendOTPForMFA(): Promise<AxiosResponse<void>>;
|
|
383
|
+
getConfigAllowlist<T>(accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
384
|
+
getBlackListType<T>(accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
385
|
+
postBlockList<T>(accountCodes: string[], listName: string, page: number, size: number): Promise<AxiosResponse<T, any>>;
|
|
386
|
+
getBlackListSummary<T>(black_list_code: string, account?: string | null): Promise<AxiosResponse<T, any>>;
|
|
387
|
+
getBlacklistDetail<T>(black_list_code: string, offset: number, limit?: number, account?: string | null, search?: string | null): Promise<AxiosResponse<T, any>>;
|
|
388
|
+
getAllowlistDetail<T>(code: string, account?: string | null): Promise<AxiosResponse<T, any>>;
|
|
389
|
+
postAllowlistItems<T>({ payload }: {
|
|
390
|
+
payload: any;
|
|
391
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
392
|
+
postGetAllowlist<T>({ payload }: {
|
|
393
|
+
payload: any;
|
|
394
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
395
|
+
postCreateAllowlistMultiAccount<T>({ payload, }: {
|
|
396
|
+
payload: any;
|
|
397
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
398
|
+
patchChangeStatusAllowlist<T>({ payload, }: {
|
|
399
|
+
payload: any;
|
|
400
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
401
|
+
patchChangeStatusAllowlistItem<T>({ payload, }: {
|
|
402
|
+
payload: any;
|
|
403
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
404
|
+
patchAddAllowlistItems<T>({ payload, }: {
|
|
405
|
+
payload: any;
|
|
406
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
407
|
+
deleteAllowlistItem<T>({ payload }: {
|
|
408
|
+
payload: any;
|
|
409
|
+
}): Promise<AxiosResponse<T>>;
|
|
410
|
+
validateAllowlistItems<T>({ payload, }: {
|
|
411
|
+
payload: any;
|
|
412
|
+
}): Promise<AxiosResponse<T, unknown>>;
|
|
413
|
+
patchAllowlist<T>({ payload }: {
|
|
414
|
+
payload: any;
|
|
415
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
416
|
+
postBlackListMultiAccount<T>({ payload, }: {
|
|
417
|
+
payload: any;
|
|
418
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
419
|
+
putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
420
|
+
changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
421
|
+
changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
422
|
+
postBlackListItems<T>({ payload }: {
|
|
423
|
+
payload: any;
|
|
424
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
425
|
+
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
|
|
426
|
+
blacklist_code: any;
|
|
427
|
+
expiration_days: any;
|
|
428
|
+
file: any;
|
|
429
|
+
handleSetProgress: any;
|
|
430
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
431
|
+
deleteBlackListType<T>({ black_list_code, }: {
|
|
432
|
+
black_list_code: any;
|
|
433
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
434
|
+
deleteBlockListItem<T>({ blocklist_code, blocklist_item_id, account_code, }: {
|
|
435
|
+
blocklist_code: any;
|
|
436
|
+
blocklist_item_id: any;
|
|
437
|
+
account_code: any;
|
|
438
|
+
}): Promise<AxiosResponse<T>>;
|
|
439
|
+
valiateBlockListItems<T>({ payload, }: {
|
|
440
|
+
payload: any;
|
|
441
|
+
}): Promise<AxiosResponse<T, unknown>>;
|
|
442
|
+
getVelocityRules<T>(params: any): Promise<AxiosResponse<T, any>>;
|
|
443
|
+
postChangePaymentsWebhook<T>({ status, paymentCode, }: ChangePaymentsWebhook): Promise<AxiosResponse<T, any>>;
|
|
444
|
+
uploadFileS3ClientBatchRefunds<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
445
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
446
|
+
cancel: () => void;
|
|
447
|
+
};
|
|
448
|
+
uploadFileS3ClientChargeBacks<T>({ payload, handleSetProgress, }: S3Payload): {
|
|
449
|
+
promise: Promise<AxiosResponse<T, any, {}>>;
|
|
450
|
+
cancel: () => void;
|
|
451
|
+
};
|
|
452
|
+
batchRefundByFile<T>({ payload, }: {
|
|
453
|
+
payload: any;
|
|
454
|
+
}): Promise<AxiosResponse<T, AxiosError>>;
|
|
455
|
+
uploadBatchRefundsV2<T>({ payload }: {
|
|
456
|
+
payload: any;
|
|
457
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
458
|
+
getBatchRefunds<T>(limit: any, offset: any): Promise<AxiosResponse<T, any>>;
|
|
459
|
+
getBatchRefundProcessedFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
460
|
+
getBatchRefundUserFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
461
|
+
getMFAConfig<T>({ organizationCode }: {
|
|
462
|
+
organizationCode: any;
|
|
463
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
464
|
+
getMFAExcludedUsers<T>({ organizationCode, }: {
|
|
465
|
+
organizationCode: any;
|
|
466
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
467
|
+
getMFAEnforcementStatus<T>(): Promise<AxiosResponse<T, any>>;
|
|
468
|
+
updateMFAConfig<T>(payload: OrganizationSettings.MfaConfigRequest, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
469
|
+
mfaExcludeUsers<T>(users: OrganizationSettings.MfaUserExcluded[], organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
470
|
+
getAllConfigRules<T>(): Promise<AxiosResponse<T, any>>;
|
|
471
|
+
getConditionalConfigRules<T>(conditional: any): Promise<AxiosResponse<T, any>>;
|
|
472
|
+
getRule<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
473
|
+
postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
474
|
+
postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
475
|
+
postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
476
|
+
patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
|
|
477
|
+
getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
|
|
478
|
+
getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
|
|
479
|
+
postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
480
|
+
pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
|
|
481
|
+
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
482
|
+
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
483
|
+
getCustomizedApiKeysToken<T>(code: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
484
|
+
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
485
|
+
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
486
|
+
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
487
|
+
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
488
|
+
getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
489
|
+
createUserAuth0<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
490
|
+
getSamlConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
491
|
+
createSamlConfig<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
492
|
+
updateSamlConfig<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
493
|
+
deleteSamlConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
494
|
+
postCall<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
495
|
+
getLoginMethods<T>(): Promise<AxiosResponse<T, any>>;
|
|
496
|
+
changeLoginMethods<T>(payload: {
|
|
497
|
+
methodCode: string;
|
|
498
|
+
enabled: boolean;
|
|
499
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
500
|
+
postValidateCredentials<T>({ payload, }: {
|
|
501
|
+
payload: {
|
|
502
|
+
account_code: string;
|
|
503
|
+
provider_id: string;
|
|
504
|
+
provider_type: string;
|
|
505
|
+
integration_code: string;
|
|
506
|
+
};
|
|
507
|
+
}): Promise<AxiosResponse<T>>;
|
|
508
|
+
getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
|
|
509
|
+
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
510
|
+
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
511
|
+
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
512
|
+
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
513
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingData>>;
|
|
514
|
+
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingData, organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingData>>;
|
|
515
|
+
createChartGPTChart<T>(payload: {
|
|
516
|
+
user_prompt: string;
|
|
517
|
+
timezone?: string;
|
|
518
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
519
|
+
deleteChartGPTChart<T>(chart_id: string): Promise<AxiosResponse<T, any>>;
|
|
520
|
+
getChartById<T>(chart_id: string): Promise<AxiosResponse<T, any>>;
|
|
521
|
+
patchChartGPTChart<T>(chart_id: string, payload: PatchChartGPTPayload): Promise<AxiosResponse<T, any>>;
|
|
522
|
+
executeChartGPTChart<T>(chart_id?: string): Promise<AxiosResponse<T, any>>;
|
|
523
|
+
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
524
|
+
getLanguages<T>(): Promise<AxiosResponse<T, any>>;
|
|
525
|
+
getTranslations<T>(lang: string): Promise<AxiosResponse<T, any>>;
|
|
526
|
+
getCommunications<T>(payload: {
|
|
527
|
+
start_date: string;
|
|
528
|
+
end_date: string;
|
|
529
|
+
account_codes: string[];
|
|
530
|
+
country: string[];
|
|
531
|
+
status: string[];
|
|
532
|
+
focus: string[];
|
|
533
|
+
skip: number;
|
|
534
|
+
limit: number;
|
|
535
|
+
search_value: string;
|
|
536
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
537
|
+
getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
538
|
+
getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
539
|
+
}
|
|
540
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
|
2
|
+
import { Api } from './api';
|
|
3
|
+
export declare class ApiSingleton extends Api {
|
|
4
|
+
private static classInstance;
|
|
5
|
+
private constructor();
|
|
6
|
+
static refreshInstance(config?: AxiosRequestConfig): ApiSingleton;
|
|
7
|
+
static getInstance(config?: AxiosRequestConfig): ApiSingleton;
|
|
8
|
+
static setMode(mode: any): Promise<void>;
|
|
9
|
+
}
|