@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,67 @@
|
|
|
1
|
+
import { SmartRouting } from '../../types';
|
|
2
|
+
import { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
|
+
export declare function useCreateWorkflow(accountCode: string, workflow: any, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
5
|
+
export declare function usePublishVersion<T = SmartRouting.WorkflowVersion>({ versionCode, accountCode, organizationCode }: {
|
|
6
|
+
versionCode: any;
|
|
7
|
+
accountCode: any;
|
|
8
|
+
organizationCode: any;
|
|
9
|
+
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
10
|
+
export declare function useSaveVersion({ data, accountCode }: {
|
|
11
|
+
data: any;
|
|
12
|
+
accountCode: any;
|
|
13
|
+
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
14
|
+
export declare function useDeleteVersion({ versionCode, accountCode }: {
|
|
15
|
+
versionCode: any;
|
|
16
|
+
accountCode: any;
|
|
17
|
+
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
18
|
+
export declare function useDuplicateVersion({ versionCode, accountCode }: {
|
|
19
|
+
versionCode: any;
|
|
20
|
+
accountCode: any;
|
|
21
|
+
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
22
|
+
export declare function useToggleMethod({ paymentMethod, active, accountCode }: {
|
|
23
|
+
paymentMethod: any;
|
|
24
|
+
active: any;
|
|
25
|
+
accountCode: any;
|
|
26
|
+
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
27
|
+
export declare function useSmartRoutingUpdateDeclinedGroup({ declinedId, accountCode }: {
|
|
28
|
+
declinedId: string;
|
|
29
|
+
accountCode: string;
|
|
30
|
+
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
31
|
+
export declare function useSmartRoutingCreateDeclinedGroup({ accountCode, options, }: {
|
|
32
|
+
accountCode: any;
|
|
33
|
+
options: any;
|
|
34
|
+
}): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
35
|
+
export declare function useSmartRoutingToggleFavorite({ versionCode, accountCode }: {
|
|
36
|
+
versionCode: string;
|
|
37
|
+
accountCode: string;
|
|
38
|
+
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersions, unknown>;
|
|
39
|
+
export declare function useSmartRoutingEditWorkflowName({ code, name, accountCode, }: {
|
|
40
|
+
code: string;
|
|
41
|
+
name: string;
|
|
42
|
+
accountCode: string;
|
|
43
|
+
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
44
|
+
export declare function useSmartRoutingSimulateTransaction({ accountCode, workflowVersionCode, }: {
|
|
45
|
+
workflowVersionCode: string;
|
|
46
|
+
accountCode: string;
|
|
47
|
+
}, options?: any): UseMutationResult<any, unknown>;
|
|
48
|
+
export declare function useSmartRoutingUpdateMonitorRedistribution(organizationCode: string, options?: any): UseMutationResult<any, unknown>;
|
|
49
|
+
export interface BFFErrorResponse {
|
|
50
|
+
statusCode: number;
|
|
51
|
+
message: string;
|
|
52
|
+
path: string;
|
|
53
|
+
data: {
|
|
54
|
+
code: string;
|
|
55
|
+
message: string;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
export declare function useSmartRoutingRemoveDeclinedGroup(organizationCode: string, options?: Omit<UseMutationOptions<any, AxiosError<BFFErrorResponse>, {
|
|
59
|
+
declinedGroupCode: string | number;
|
|
60
|
+
}, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<any, AxiosError<BFFErrorResponse>, {
|
|
61
|
+
declinedGroupCode: string | number;
|
|
62
|
+
}>;
|
|
63
|
+
interface CreateGroupsProps {
|
|
64
|
+
payload: SmartRouting.PayloadDeclinedGroupCreate;
|
|
65
|
+
}
|
|
66
|
+
export declare function useSmartRoutingMultiAccountDeclinedGroupCreate(organizationCode: string, options?: Omit<UseMutationOptions<any, AxiosError<BFFErrorResponse>, CreateGroupsProps, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<any, AxiosError<BFFErrorResponse>, CreateGroupsProps>;
|
|
67
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './team.mutation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Team } from '../../types';
|
|
2
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
|
+
export declare function useDeleteUserTeamV2(): UseMutationResult<void, unknown>;
|
|
5
|
+
export declare function useSetCustodian(): UseMutationResult<Team.SetRoleResponse, unknown>;
|
|
6
|
+
export declare function useCreateRoles(): UseMutationResult<Team.NewRoleResponse, AxiosError>;
|
|
7
|
+
export declare function useEditRoles(): UseMutationResult<Team.NewRoleResponse, AxiosError>;
|
|
8
|
+
export declare function useDeleteRoles(): UseMutationResult<Team.NewRoleResponse, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './template-reporting.mutation';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { TemplateReporting } from '../../types';
|
|
4
|
+
export declare function useCreateTemplate(): UseMutationResult<TemplateReporting.ReportTemplate, AxiosError, TemplateReporting.CreateTemplateRequest>;
|
|
5
|
+
export declare function useCloneTemplate(): UseMutationResult<TemplateReporting.ReportTemplate, AxiosError, {
|
|
6
|
+
templateId: number;
|
|
7
|
+
payload: TemplateReporting.CloneTemplateRequest;
|
|
8
|
+
}>;
|
|
9
|
+
export declare function useUpdateTemplateSelection(): UseMutationResult<TemplateReporting.ReportTemplate, AxiosError, {
|
|
10
|
+
templateId: number;
|
|
11
|
+
payload: TemplateReporting.UpdateTemplateSelectionRequest;
|
|
12
|
+
}>;
|
|
13
|
+
export declare function useChangeTemplateStatus(): UseMutationResult<TemplateReporting.ReportTemplate, AxiosError, {
|
|
14
|
+
templateId: number;
|
|
15
|
+
payload: TemplateReporting.ChangeTemplateStatusRequest;
|
|
16
|
+
}>;
|
|
17
|
+
export declare function useDeleteTemplate(): UseMutationResult<TemplateReporting.DeleteResponse, AxiosError, number>;
|
|
18
|
+
export declare function useCreateSchedule(): UseMutationResult<TemplateReporting.ReportSchedule, AxiosError, TemplateReporting.CreateScheduleRequest>;
|
|
19
|
+
export declare function useDeactivateSchedule(): UseMutationResult<TemplateReporting.ReportSchedule, AxiosError, number>;
|
|
20
|
+
export declare function useDeleteSchedule(): UseMutationResult<TemplateReporting.DeleteResponse, AxiosError, number>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './users.mutation';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { User } from '../../types';
|
|
2
|
+
import { UserInviteMultiaccountPayload } from '../../api';
|
|
3
|
+
export declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
4
|
+
onSuccessCallback?: () => void;
|
|
5
|
+
}): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<User.UserResponsePayload, any, {}>, unknown, User.UserRequestPayload, User.UserRequestPayload>;
|
|
6
|
+
export declare function useInviteUsersMultiaccountMassive(): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<User.UserResponseInviteUser, any, {}>, unknown, UserInviteMultiaccountPayload, unknown>;
|
|
7
|
+
export declare function useUnInviteUsersV2(): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<User.UserResponsePayload, any, {}>, unknown, {
|
|
8
|
+
userCode: string;
|
|
9
|
+
organizationCode: string;
|
|
10
|
+
}, unknown>;
|
|
11
|
+
export declare function useCreateUserAuth0(): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<User.CreateUserAuth0Response, any, {}>, unknown, User.CreateUserAuth0Request, unknown>;
|
|
12
|
+
export declare function usePostCall(): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<unknown, any, {}>, unknown, void, unknown>;
|
|
13
|
+
export declare function useLoginMethods(): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<unknown, any, {}>, unknown, {
|
|
14
|
+
methodCode: string;
|
|
15
|
+
enabled: boolean;
|
|
16
|
+
}, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './velocity-rules.mutation';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
export declare function useGetConditionalConfigRules(): UseMutationResult<unknown>;
|
|
3
|
+
export declare function useGetRule(): UseMutationResult<unknown>;
|
|
4
|
+
export declare function usePostCreateRuleMultiAccount(): UseMutationResult<unknown>;
|
|
5
|
+
export declare function usePostEditRule(): UseMutationResult<unknown>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AxiosError } from 'axios';
|
|
2
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
import { Organization, Webhook } from '../../types';
|
|
4
|
+
export declare function useGetWebhookParamsV2(): UseQueryResult<Webhook.Param[], unknown>;
|
|
5
|
+
export declare function useGetWebhooksV3({ accountCode, name, }: {
|
|
6
|
+
accountCode: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
}): UseQueryResult<Webhook.WebHookV2[], unknown>;
|
|
9
|
+
export declare function useGetWebhooksV2Detail({ accountCode, enabled, }: {
|
|
10
|
+
accountCode: any;
|
|
11
|
+
enabled: any;
|
|
12
|
+
}): UseQueryResult<Webhook.WebHookV2[], unknown>;
|
|
13
|
+
export declare function useGetAccounts(organizationCode?: string): UseQueryResult<Organization.Account[], unknown>;
|
|
14
|
+
export declare function useGetAccountsV2(organizationCode: string): UseQueryResult<Organization.Account[], unknown>;
|
|
15
|
+
export declare function useGetAccountsByUser(userCode: string): UseQueryResult<{
|
|
16
|
+
accountsV2ByUser: Organization.Account[];
|
|
17
|
+
error?: AxiosError;
|
|
18
|
+
}, unknown>;
|
|
19
|
+
export declare function useGetAccountsForImpersonation(organizationCode?: string, isTesting?: boolean): UseQueryResult<Array<{
|
|
20
|
+
label: string;
|
|
21
|
+
value: string;
|
|
22
|
+
code_live: string;
|
|
23
|
+
code_testing: string;
|
|
24
|
+
}>, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './accounts.query';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import type { Audit } from '../../types';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
+
export declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
6
|
+
export declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
7
|
+
export declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
8
|
+
export declare function usePostWebhookLogs({ params, }: {
|
|
9
|
+
params: Audit.AuditWebhooksParams;
|
|
10
|
+
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
11
|
+
export declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './audit.query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './batch-refunds.query';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
export interface ChartGPTResult {
|
|
3
|
+
key: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ChartGPTExecuteResponse {
|
|
7
|
+
status: string;
|
|
8
|
+
summary: string;
|
|
9
|
+
availableTypes?: string[];
|
|
10
|
+
results: ChartGPTResult[];
|
|
11
|
+
sql_query?: string;
|
|
12
|
+
user_prompt?: string;
|
|
13
|
+
type: 'BOX' | 'BAR' | 'LINE' | 'PIE' | 'MULTIPLE_LINES';
|
|
14
|
+
unit_to_display?: 'currency' | 'percentage' | 'number';
|
|
15
|
+
}
|
|
16
|
+
export interface ChartGPTChart {
|
|
17
|
+
chart_id?: string;
|
|
18
|
+
code?: string;
|
|
19
|
+
sql_query?: string;
|
|
20
|
+
name: string;
|
|
21
|
+
type: string;
|
|
22
|
+
user_prompt: string;
|
|
23
|
+
summary: string;
|
|
24
|
+
status: string;
|
|
25
|
+
unit_to_display?: 'currency' | 'percentage' | 'number';
|
|
26
|
+
}
|
|
27
|
+
export interface ChartGPTChartWithResults extends ChartGPTChart {
|
|
28
|
+
results: ChartGPTResult[];
|
|
29
|
+
}
|
|
30
|
+
export interface PatchChartGPTPayload {
|
|
31
|
+
type: string;
|
|
32
|
+
name: string;
|
|
33
|
+
user_prompt?: string;
|
|
34
|
+
chart_id?: string;
|
|
35
|
+
code?: string;
|
|
36
|
+
}
|
|
37
|
+
export interface PatchAndExecuteChartResult {
|
|
38
|
+
chart: ChartGPTChart;
|
|
39
|
+
execution: ChartGPTExecuteResponse;
|
|
40
|
+
}
|
|
41
|
+
export declare function useChartExecute(chart_id: string): UseQueryResult<ChartGPTExecuteResponse, unknown>;
|
|
42
|
+
export declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
|
|
43
|
+
export declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
|
|
44
|
+
export declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchChartGPTPayload, enabled?: boolean): UseQueryResult<PatchAndExecuteChartResult, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chartgpt.query';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { UseQueryOptions, UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import type { Checkout } from '../../types';
|
|
3
|
+
export declare function useGetCheckouts({ accountCode }: {
|
|
4
|
+
accountCode: any;
|
|
5
|
+
}): UseQueryResult<Checkout.CheckoutList[], unknown>;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated since version 0.28.6. use useGetStylingSettings instead
|
|
8
|
+
*/
|
|
9
|
+
export declare function useGetCheckoutTemplate({ accountCode, }: {
|
|
10
|
+
accountCode: any;
|
|
11
|
+
}): UseQueryResult<Checkout.CheckoutTemplateResponse[], unknown>;
|
|
12
|
+
export declare const getQueryKeyGetNameAndIcon: ({ paymentMethodType, type, }: Checkout.GetNameAndIconArgs) => string[];
|
|
13
|
+
export declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameAndIconArgs, option?: UseQueryOptions<Checkout.GetNameAndIconResponse, unknown, Checkout.GetNameAndIconResponse>) => UseQueryResult<Checkout.GetNameAndIconResponse, unknown>;
|
|
14
|
+
export declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
|
|
15
|
+
export declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { StylingSettings } from '../../../types/checkout/styling/styling';
|
|
2
|
+
export declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
3
|
+
accountCode: string;
|
|
4
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
7
|
+
*/
|
|
8
|
+
export declare function useGetStylingTheme({ accountCode }: {
|
|
9
|
+
accountCode: string;
|
|
10
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Theme, unknown>;
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
13
|
+
*/
|
|
14
|
+
export declare function useGetStylingSettings({ accountCode, }: {
|
|
15
|
+
accountCode: string;
|
|
16
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|
|
17
|
+
export declare function useGetStylingSettingsV2({ accountCode, environment, }: {
|
|
18
|
+
accountCode: string;
|
|
19
|
+
environment?: string;
|
|
20
|
+
}): import("@tanstack/react-query").UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
|
|
21
|
+
export declare function useChangeStylingSettings(): import("@tanstack/react-query").UseMutationResult<StylingSettings.UpdateSettingsResponse, unknown, {
|
|
22
|
+
accountCode: string;
|
|
23
|
+
environment?: string | undefined;
|
|
24
|
+
payload: StylingSettings.UpdateSettings;
|
|
25
|
+
}, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { TimeZoneCatalog } from '../../api';
|
|
3
|
+
import { Cms } from '../../types';
|
|
4
|
+
import { AxiosError } from 'axios';
|
|
5
|
+
export declare function useGetMenu(): UseQueryResult<Cms.Menu, unknown>;
|
|
6
|
+
export declare function useGetPaymentStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
7
|
+
export declare function useGetTransactionStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
8
|
+
export declare function useGetReconciliationTransactionStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
9
|
+
export declare function useGetTimeZoneCatalog(): UseQueryResult<Array<TimeZoneCatalog>, unknown>;
|
|
10
|
+
export declare function useGetAuditLogsFilters(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
11
|
+
export declare function useGetDashboardStaticContents(): UseQueryResult<Array<{
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
}>, unknown>;
|
|
14
|
+
export declare function useGetLocales(): UseQueryResult<Cms.Language[], AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './cms.query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './connections.query';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { DataReport } from '../../types';
|
|
3
|
+
export declare function useGetSmartRoutingDataReport(params: {
|
|
4
|
+
[a: string]: number;
|
|
5
|
+
}): UseQueryResult<any, unknown>;
|
|
6
|
+
export declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
7
|
+
export declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
8
|
+
export declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
9
|
+
export declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
10
|
+
export declare function useInsightsVolumeMetricsV2(account_codes: string, params: DataReport.InsightMetricParams, path: DataReport.InsightsVolumeMetricsV2Path, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
11
|
+
export declare function useInsightsTotalPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
12
|
+
export declare function useInsightsCustomerPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
13
|
+
export declare function useInsightsOverviewMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
14
|
+
export declare function useInsightsOverviewMetricsV3(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): UseQueryResult<any, unknown>;
|
|
15
|
+
export declare function useInsightsHomeMetrics(params: DataReport.InsightsHomeMetrics): UseQueryResult<any, unknown>;
|
|
16
|
+
export declare function useGetInsightsReport(params: DataReport.InsightExportParams): UseQueryResult<any, unknown>;
|
|
17
|
+
export declare function useGetInsightsReportAgain(params: DataReport.InsightExportParams): UseQueryResult<any, unknown>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AxiosResponse } from 'axios';
|
|
2
|
+
import { UseQueryOptions, UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
import { Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse } from '../../../types/data-report';
|
|
4
|
+
export declare function useInsightsFraudScreeningVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsFraudScreeningResumeResponse>>;
|
|
5
|
+
export declare function useInsightsFraudScreeningConversionRate(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsFraudConversionRateResponse>>;
|
|
6
|
+
export declare function useInsights3dsVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsResumeResponse>>;
|
|
7
|
+
export declare function useInsights3dsConversionRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsConversionRate>>;
|
|
8
|
+
export declare function useInsights3dsDeclineReasons(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsDeclineReasons>>;
|
|
9
|
+
export declare function useInsights3dsFrictionlessVsChallenge(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<Insights3dsFrictionlessVsChallenge>>;
|
|
10
|
+
export declare function useInsightsChargebacksVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksResumeResponse>>;
|
|
11
|
+
export declare function useInsightsChargebacksTotalRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksTotalRateAndEvolution>>;
|
|
12
|
+
export declare function useInsightsChargebacksWinRate(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksWinRate>>;
|
|
13
|
+
export declare function useInsightsChargebacksDisputed(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksDisputed>>;
|
|
14
|
+
export declare function useInsightsChargebacksByProviderAndCardBrand(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksByProviderAndCardBrand>>;
|
|
15
|
+
export declare function useInsightsChargebacksReasonsDistribution(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksByReason>>;
|
|
16
|
+
export declare function useInsightsChargebacksStatusDistribution(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksStatusDistribution>>;
|
|
17
|
+
export declare function useInsightsChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams, options?: UseQueryOptions): UseQueryResult<AxiosResponse<InsightsChargebacksByCardBrand>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UseMutationResult, UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import type { Developer, User } from '../../types';
|
|
3
|
+
import { CustomizedApiKeys } from '../../types/customized-api-keys';
|
|
4
|
+
import { AllowedList } from '../../types/allowed-list';
|
|
5
|
+
export declare function useGetCredentials({ password, accountCode, }: {
|
|
6
|
+
password: string;
|
|
7
|
+
accountCode: string;
|
|
8
|
+
}): UseQueryResult<Developer.DeveloperCredentials, unknown>;
|
|
9
|
+
export declare function useGetCustomizedApiKeysMembers(): UseQueryResult<User.ICustomizedApiKeysMembers, unknown>;
|
|
10
|
+
export declare function useGetAllowedIps(): UseQueryResult<AllowedList.Response, unknown>;
|
|
11
|
+
export declare function useGetCustomizedApiKeysAccounts(): UseQueryResult<User.ICustomizedApiKeysAccounts, unknown>;
|
|
12
|
+
export declare function useGetCustomizedApiKeys(accountCodes: string[]): UseQueryResult<CustomizedApiKeys.ICustomizedApiKeys, unknown>;
|
|
13
|
+
export declare function useGetCustomizedApiKeysProducts(): UseQueryResult<CustomizedApiKeys.ICustomizedApiKeysProducts[], unknown>;
|
|
14
|
+
export declare function usePatchAllowedIps(): UseMutationResult<AllowedList.Response, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './developers.query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dialogs.query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { FeatureFlags } from '../../types/feature-flags/intex';
|
|
3
|
+
export interface FeatureFlagsResult {
|
|
4
|
+
[key: string]: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
7
|
+
export declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
8
|
+
export declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FirebaseUserSubscribe } from '../../api';
|
|
2
|
+
export declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
|
|
3
|
+
onSuccessCallback?: (data: any) => void;
|
|
4
|
+
}): import("@tanstack/react-query").UseMutationResult<import("axios").AxiosResponse<{
|
|
5
|
+
code: string;
|
|
6
|
+
}, any, {}>, unknown, {
|
|
7
|
+
payload: FirebaseUserSubscribe;
|
|
8
|
+
}, {
|
|
9
|
+
payload: FirebaseUserSubscribe;
|
|
10
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './firebase.query';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { FraudScreening } from '../../types';
|
|
3
|
+
import { AllowlistMultiAccount, PostBlackList } from '../../mutations';
|
|
4
|
+
import { AxiosError } from 'axios';
|
|
5
|
+
export declare function useGetConfigAllowlist(accountCode: string, enabled: boolean): UseQueryResult<FraudScreening.BlackList[], unknown>;
|
|
6
|
+
export declare function useGetBlackList(accountCode: string): UseQueryResult<FraudScreening.BlackList[], unknown>;
|
|
7
|
+
export declare function usePostBlockList(accountCodes: string[], listName?: string, page?: number, size?: number): UseQueryResult<FraudScreening.BlocklistData, AxiosError>;
|
|
8
|
+
export declare function useGetBlockListSummary(block_list_code: string, account: string, enabled: boolean): UseQueryResult<FraudScreening.BlockListSummary, unknown>;
|
|
9
|
+
export declare function useBlackListDetail(black_list_code: string, offset: number, limit: any, account: string, search: string, enabled: boolean): UseQueryResult<any, unknown>;
|
|
10
|
+
export declare function useAllowListDetail(code: string, account: string, enabled: boolean): UseQueryResult<any, unknown>;
|
|
11
|
+
export declare function usePostAllowlistMultiAccount(payload: PostBlackList): UseQueryResult<AllowlistMultiAccount>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './fraud-screening.query';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export * from './payments';
|
|
2
|
+
export * from './developers';
|
|
3
|
+
export * from './organizations';
|
|
4
|
+
export * from './connections';
|
|
5
|
+
export * from './dialogs';
|
|
6
|
+
export * from './accounts';
|
|
7
|
+
export * from './cms';
|
|
8
|
+
export * from './smart-routing';
|
|
9
|
+
export * from './routing-monitors';
|
|
10
|
+
export * from './checkouts';
|
|
11
|
+
export * from './users';
|
|
12
|
+
export * from './notifications';
|
|
13
|
+
export * from './reports';
|
|
14
|
+
export * from './team';
|
|
15
|
+
export * from './data-report';
|
|
16
|
+
export * from './reconciliations';
|
|
17
|
+
export * from './feature-flags';
|
|
18
|
+
export * from './audit';
|
|
19
|
+
export * from './payment-links';
|
|
20
|
+
export * from './firebase';
|
|
21
|
+
export * from './fraud-screening';
|
|
22
|
+
export * from './batch-refunds';
|
|
23
|
+
export * from './velocity-rules';
|
|
24
|
+
export * from './mfa';
|
|
25
|
+
export * from './saml-config';
|
|
26
|
+
export * from './chartgpt';
|
|
27
|
+
export * from './translation';
|
|
28
|
+
export * from './network-tokens';
|
|
29
|
+
export * from './template-reporting';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './organization-settings.query';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { OrganizationSettings } from '../../types';
|
|
3
|
+
export declare function useGetMFAExcludedUsers({ organizationCode, }: {
|
|
4
|
+
organizationCode: string;
|
|
5
|
+
}, enabled: boolean): UseQueryResult<OrganizationSettings.MfaConfig[], unknown>;
|
|
6
|
+
export declare function useGetMFAConfig({ organizationCode, }: {
|
|
7
|
+
organizationCode: string;
|
|
8
|
+
}, enabled: boolean): UseQueryResult<OrganizationSettings.MfaConfig, unknown>;
|
|
9
|
+
export declare function useGetMFAStatus({ accountCode, }: {
|
|
10
|
+
accountCode: string;
|
|
11
|
+
}, enabled: boolean): UseQueryResult<OrganizationSettings.MfaConfig, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './network-tokens.query';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Connection } from '../../types';
|
|
4
|
+
import { CustomAxiosResponse } from '../../utils/handler-error';
|
|
5
|
+
export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingData, AxiosError<CustomAxiosResponse>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './notifications.query';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UseMutationResult, UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { PathNotification } from '../../api';
|
|
3
|
+
import type { Notifications } from '../../types';
|
|
4
|
+
export declare function useGetNotificationsCustomer(customer: string): UseQueryResult<Notifications.NotificationsBodyResponse, unknown>;
|
|
5
|
+
export declare function useGetValidateOpsgenieKey(key: string): UseQueryResult<{
|
|
6
|
+
name: string;
|
|
7
|
+
} & {
|
|
8
|
+
error?: boolean;
|
|
9
|
+
}, unknown>;
|
|
10
|
+
export declare function useGetMergedNotifications(): UseQueryResult<Notifications.NotificationsResponse, unknown>;
|
|
11
|
+
export declare function useGetNotificationsNumberMutation(): UseMutationResult<any, unknown, string, unknown>;
|
|
12
|
+
export declare function usePathNotifications(): UseMutationResult<Notifications.INotificationsResponse, PathNotification, PathNotification, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './organizations.query';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import type { Organization } from '../../types';
|
|
3
|
+
import { CustomAxiosResponse } from '../../utils/handler-error';
|
|
4
|
+
import { AxiosError } from 'axios';
|
|
5
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
6
|
+
export declare function useGetOrganization(): UseQueryResult<Organization.Organization, CustomAxiosResponse<null>>;
|
|
7
|
+
export declare function useGetAllOrganizations(): UseQueryResult<Organization.Organization[], CustomAxiosResponse<null>>;
|
|
8
|
+
export declare function useGetProviderParams(params: {
|
|
9
|
+
id: string;
|
|
10
|
+
}): UseQueryResult<Organization.ProviderParams, CustomAxiosResponse<null>>;
|
|
11
|
+
export declare function useGetIntegrationParams({ integration_code, enabled, accountCode, }: {
|
|
12
|
+
integration_code: string;
|
|
13
|
+
enabled: boolean;
|
|
14
|
+
accountCode?: string;
|
|
15
|
+
}): UseQueryResult<Organization.IntegrationParams, {
|
|
16
|
+
code: string;
|
|
17
|
+
}>;
|
|
18
|
+
export declare function useGetIntegrationByAccountV2({ accountCode, organizationCode, }: {
|
|
19
|
+
accountCode: string;
|
|
20
|
+
organizationCode: string;
|
|
21
|
+
}): UseQueryResult<Organization.Integration[], CustomAxiosResponse<null>>;
|
|
22
|
+
export declare function useGetConnectionsByPaymentMethod({ accountCode, paymentMethod, }: {
|
|
23
|
+
accountCode: string;
|
|
24
|
+
paymentMethod: string;
|
|
25
|
+
}): UseQueryResult<Organization.Connections[], AxiosError<BFFErrorResponse, any>>;
|
|
26
|
+
export declare function useGetHashPylon(): UseQueryResult<{
|
|
27
|
+
data: string;
|
|
28
|
+
}, CustomAxiosResponse<null>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './payment-links.query';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PaymentLinks } from '../../types';
|
|
2
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
export declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
4
|
+
export declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
5
|
+
export declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
6
|
+
export declare function useGetCountriesConfigPaymentLinkV2(acceptLanguage?: string): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
7
|
+
export declare function useGetTimezonePaymentLink(organizationCode: string): UseQueryResult<any, unknown>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { GetPaymentsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetPaymentsEvaluatedParams, GetPayoutDetail, GetPayoutTransactionDetail } from '../../api';
|
|
3
|
+
import type { Organization, Payment, Payouts, RefundPdfResponse, SendPaymentNotification } from '../../types';
|
|
4
|
+
import { PaymentFiltersSection } from '../../types/payment/payment';
|
|
5
|
+
import { CustomAxiosResponse } from '../../utils/handler-error';
|
|
6
|
+
import { AxiosError } from 'axios';
|
|
7
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
8
|
+
export declare function usePostPaymentsLazy(params: GetPaymentsParams): UseQueryResult<Payment.PaymentList, AxiosError<BFFErrorResponse>>;
|
|
9
|
+
export declare function usePostPaymentsEvaluated(params: GetPaymentsEvaluatedParams): UseQueryResult<Payment.PaymentList, AxiosError<BFFErrorResponse>>;
|
|
10
|
+
export declare function useGetPaymentV2({ paymentCode, enabled, }: {
|
|
11
|
+
paymentCode: string;
|
|
12
|
+
enabled?: boolean;
|
|
13
|
+
}): UseQueryResult<Payment.PaymentV2, AxiosError<BFFErrorResponse>>;
|
|
14
|
+
export declare function useGetTransactionDetailsV2({ payment_code, enabled, }: GetTransactionDetailsV2Params): UseQueryResult<Payment.TransactionDetailsResult, AxiosError<BFFErrorResponse>>;
|
|
15
|
+
export declare function useGetTransactionRawResponse({ transaction_code, enabled, }: GetTransactionDetailsV2Params): UseQueryResult<Payment.TransactionDetailsResult, AxiosError<BFFErrorResponse>>;
|
|
16
|
+
export declare function useGetPaymentsMethodsByCountry(params: Organization.PaymentMethods): UseQueryResult<Organization.PaymentMethods[], CustomAxiosResponse<null>>;
|
|
17
|
+
export declare function useGetPaymentMethodsAndProviders(): UseQueryResult<Payment.PaymentMethodsAndProviders, AxiosError<BFFErrorResponse>>;
|
|
18
|
+
export declare function useGetCardBrands(): UseQueryResult<Payment.CardBrand[], unknown>;
|
|
19
|
+
export declare function useGetPaymentFilters(enabled?: boolean, section?: PaymentFiltersSection): UseQueryResult<Payment.Filters, CustomAxiosResponse>;
|
|
20
|
+
export declare function useGetPaymentMetricsFilters(): UseQueryResult<Payment.PaymentMethodsAndProviders, AxiosError<BFFErrorResponse>>;
|
|
21
|
+
export declare function useGetPaymentTransactionsDetails({ transaction_code, enabled, }: {
|
|
22
|
+
transaction_code: string;
|
|
23
|
+
enabled?: boolean;
|
|
24
|
+
}): UseQueryResult<Payment.PaymentTransactionDetail, AxiosError<BFFErrorResponse>>;
|
|
25
|
+
export declare function useGetTransactionHistoryByPaymentCode({ payment_code, enabled, }: {
|
|
26
|
+
payment_code: string;
|
|
27
|
+
enabled?: boolean;
|
|
28
|
+
}): UseQueryResult<Payment.TransactionHistoryByPayment, AxiosError<BFFErrorResponse>>;
|
|
29
|
+
export declare function usePostTransactions(params: GetTransactionsParams): UseQueryResult<Payment.TransactionDetailsResult, AxiosError<BFFErrorResponse>>;
|
|
30
|
+
export declare function usePostFraudTransactions(params: GetTransactionsParams): UseQueryResult<Payment.TransactionDetailsResult, AxiosError<BFFErrorResponse>>;
|
|
31
|
+
export declare function useGetPayoutDetail(params: GetPayoutDetail): UseQueryResult<Payouts.Details, AxiosError<BFFErrorResponse>>;
|
|
32
|
+
export declare function useGetPayoutTransactionDetail(params: GetPayoutTransactionDetail): UseQueryResult<Payouts.Details, AxiosError<BFFErrorResponse>>;
|
|
33
|
+
export declare function useGetPayoutHistoryDetail(params: GetPayoutDetail): UseQueryResult<Payouts.Details, AxiosError<BFFErrorResponse>>;
|
|
34
|
+
export declare function useGetProofOfCancel(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError<BFFErrorResponse>>;
|
|
35
|
+
export declare function useGetProofOfPayment(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError<BFFErrorResponse>>;
|
|
36
|
+
export declare function useSendPaymentNotification(params: SendPaymentNotification.Params, body: SendPaymentNotification.Body, options: SendPaymentNotification.Options): UseQueryResult<SendPaymentNotification.Response, AxiosError<BFFErrorResponse>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { GetPaymentsParams } from '../../api';
|
|
3
|
+
import { Payouts } from '../../types/payouts';
|
|
4
|
+
import { AxiosError } from 'axios';
|
|
5
|
+
export declare function usePayoutsList(params: GetPaymentsParams | null): UseQueryResult<Payouts.List | AxiosError>;
|
|
6
|
+
export declare function usePayoutsFilters(enabled?: boolean): UseQueryResult<Payouts.Filters>;
|