@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,6 @@
|
|
|
1
|
+
export * from './reconciliations.query';
|
|
2
|
+
export * from './reconciliations-alerts.query';
|
|
3
|
+
export * from './reconciliations-agenda.query';
|
|
4
|
+
export * from './reconciliations-sales.query';
|
|
5
|
+
export * from './reconciliations-advancements.query';
|
|
6
|
+
export * from './reconciliations-fees.query';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { Reconciliation } from '../../types';
|
|
3
|
+
import { ReconciliationAdvancements } from '../../types/reconciliation/reconciliation-advancements';
|
|
4
|
+
export type UseGetAllReconciliationsAdvancementsProps = {
|
|
5
|
+
body: ReconciliationAdvancements.FiltersRequestBody;
|
|
6
|
+
params: ReconciliationAdvancements.FiltersRequestParams;
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare function useGetAllReconciliationsAdvancements({ body, params, enabled, }: UseGetAllReconciliationsAdvancementsProps): UseQueryResult<ReconciliationAdvancements.GetAllReconciliationsAdvancementsResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { Reconciliation, ReconciliationAgenda } from '../../types';
|
|
3
|
+
export type ReconAgendaProps<B, P> = {
|
|
4
|
+
body: B;
|
|
5
|
+
params: P;
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
};
|
|
8
|
+
export declare function useGetAllReconciliationsAgenda({ body, params, enabled, }: ReconAgendaProps<ReconciliationAgenda.FiltersRequestBody, ReconciliationAgenda.FiltersRequestParams>): UseQueryResult<ReconciliationAgenda.GetAllReconciliationsAgendaResponse, Reconciliation.Error>;
|
|
9
|
+
export declare function useGetReconciliationAgendaInsightsByKey({ body, params, enabled, }: ReconAgendaProps<ReconciliationAgenda.FiltersRequestBody, ReconciliationAgenda.InsightRequestParams>): UseQueryResult<ReconciliationAgenda.GetReconciliationsAgendaInsightsResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { Reconciliation, ReconciliationAlerts } from '../../types';
|
|
3
|
+
export type UseGetAllReconciliationsAlertsProps = {
|
|
4
|
+
body: ReconciliationAlerts.ReconciliationAlertFiltersBody;
|
|
5
|
+
params: ReconciliationAlerts.ReconciliationAlertFiltersParams;
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
};
|
|
8
|
+
export declare function useGetAllReconciliationsAlerts({ body, params, enabled, }: UseGetAllReconciliationsAlertsProps): UseQueryResult<ReconciliationAlerts.GetAllReconciliationsAlertsResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { Reconciliation } from '../../types';
|
|
3
|
+
import { ReconciliationFees } from '../../types/reconciliation/reconciliation-fees';
|
|
4
|
+
export type UseGetAllReconciliationsFeesProps = {
|
|
5
|
+
body: ReconciliationFees.FiltersRequestBody;
|
|
6
|
+
params: ReconciliationFees.FiltersRequestParams;
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare function useGetAllReconciliationsFees({ body, params, enabled, }: UseGetAllReconciliationsFeesProps): UseQueryResult<ReconciliationFees.GetAllReconciliationsFeesResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { Reconciliation } from '../../types';
|
|
3
|
+
import { ReconciliationSales } from '../../types/reconciliation/reconciliation-sales';
|
|
4
|
+
export type UseGetAllReconciliationsSalesProps = {
|
|
5
|
+
body: ReconciliationSales.FiltersRequestBody;
|
|
6
|
+
params: ReconciliationSales.FiltersRequestParams;
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare function useGetAllReconciliationsSales({ body, params, enabled, }: UseGetAllReconciliationsSalesProps): UseQueryResult<ReconciliationSales.GetAllReconciliationsSalesResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Reconciliation, ReconciliationReportType, TemplateType } from '../../types';
|
|
2
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
import { GetReconciliationMetricParams } from '../../api';
|
|
4
|
+
export declare function useGetReconciliationTransactions(params: Reconciliation.UseGetReconciliationTransactionsParams, enabled: boolean): UseQueryResult<Reconciliation.TransactionList, Reconciliation.Error>;
|
|
5
|
+
export declare function useGetSettlements(params: Reconciliation.SettlementHeaderQuery, enabled: boolean): UseQueryResult<Array<Reconciliation.Settlement>, Reconciliation.Error>;
|
|
6
|
+
export declare function useGetReconciliationMetrics(params: GetReconciliationMetricParams, enabled: boolean): UseQueryResult<Reconciliation.Metrics, unknown>;
|
|
7
|
+
export declare function useGetReconciliationFilters(): UseQueryResult<Reconciliation.Filters>;
|
|
8
|
+
export declare function useGetAllTableColumns(tableType: Reconciliation.TableType): UseQueryResult<Array<Reconciliation.TableColumn>, Reconciliation.Error>;
|
|
9
|
+
export declare function useGetReconciliationActive(): UseQueryResult<Reconciliation.Section, Reconciliation.Error>;
|
|
10
|
+
export declare function useGetReconciliationsReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReconciliationReportType): UseQueryResult<Reconciliation.GetReconciliationsReportColumnsResponse, Reconciliation.Error>;
|
|
11
|
+
export declare function useGetReconciliationsReportTemplates(enabled: boolean): UseQueryResult<Reconciliation.GetReconciliationsReportTemplatesResponse, Reconciliation.Error>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './reports.query';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { RefundPdfResponse, Reports, ReportType, TemplateType, CentralizedColumn } from '../../types';
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
|
+
export declare function useGetReportsList(): UseQueryResult<Array<Reports.IListReportsResponse>, unknown>;
|
|
5
|
+
export declare function useGetReportsListMultiEnv(enabled?: boolean): UseQueryResult<Reports.IRetrieveReportResponse[] | {
|
|
6
|
+
code: string;
|
|
7
|
+
}, unknown>;
|
|
8
|
+
export declare function useGetDownloadReport(reportId: string, enabled: boolean | undefined, onSuccess: any): UseQueryResult<{
|
|
9
|
+
code: string;
|
|
10
|
+
}, unknown>;
|
|
11
|
+
export declare function useGetReportTemplates(enabled: boolean): UseQueryResult<Reports.ITemplate[], unknown>;
|
|
12
|
+
export declare function useGetReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReportType): UseQueryResult<CentralizedColumn[], unknown>;
|
|
13
|
+
export declare function useGetRefundPdf(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './routing-monitors.query';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { RoutingMonitors } from '../../types/routing-monitors';
|
|
3
|
+
export declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
4
|
+
export declare function useGetRoutingMonitorsTemplate(code: string, organizationCode: string): UseQueryResult<RoutingMonitors.Template, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './saml-config.query';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './smart-routing.query';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { SmartRouting } from '../../types';
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
+
export interface ErrorProp {
|
|
6
|
+
name?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const useIsTesting: () => {
|
|
9
|
+
isTesting: boolean;
|
|
10
|
+
};
|
|
11
|
+
export declare function useGetSmartRoutingMethods(accountCode: string): UseQueryResult<SmartRouting.PaymentMethods & ErrorProp, unknown>;
|
|
12
|
+
export declare function useGetSmartRoutingWorkflow(accountCode: string, paymentMethod: string): UseQueryResult<SmartRouting.WorkflowVersions & ErrorProp, unknown>;
|
|
13
|
+
export declare function useGetSmartRoutingConditionTypes(accountCode: string, paymentMethod: string): UseQueryResult<SmartRouting.ConditionTypes & ErrorProp, unknown>;
|
|
14
|
+
export declare function useGetSmartRoutingConditionPaymentMethod(accountCode: string, paymentMethod: string): UseQueryResult<SmartRouting.ConditionPaymentMethod[], unknown & ErrorProp>;
|
|
15
|
+
export declare function useGetSmartRoutingConditionTypesValues(accountCode: string, index: number): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
16
|
+
export declare function useGetSmartRoutingWorkflowVersion({ accountCode, workflowVersionId, }: {
|
|
17
|
+
accountCode: string;
|
|
18
|
+
workflowVersionId: string;
|
|
19
|
+
}): UseQueryResult<SmartRouting.WorkflowVersion & ErrorProp, unknown>;
|
|
20
|
+
export declare function useGetSmartRoutingNextRoute(accountCode: string, stepType: string, status: string): UseQueryResult<string[] & ErrorProp, unknown>;
|
|
21
|
+
export declare function useGetSmartRoutingDeclineGroups(accountCode: string): UseQueryResult<SmartRouting.DeclineGroups & ErrorProp, unknown>;
|
|
22
|
+
export declare function useGetSmartRoutingPaymentRoute(accountCode: string, paymentId: string): UseQueryResult<SmartRouting.PaymentRoutes & ErrorProp, unknown>;
|
|
23
|
+
export declare function useGetSmartRoutingSimulateConditionTypeValues(accountCode: string): UseQueryResult<SmartRouting.AllConditionTypeValues & ErrorProp, unknown>;
|
|
24
|
+
export declare function useGetSmartRoutingSearchConditionValues({ text, conditionType, }: {
|
|
25
|
+
text: string;
|
|
26
|
+
conditionType: string;
|
|
27
|
+
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
28
|
+
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
29
|
+
export declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse, AxiosError<BFFErrorResponse>>;
|
|
30
|
+
export declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './team.query';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Team } from '../../types';
|
|
4
|
+
export declare function useGetTeamsFiltersMembers(): UseQueryResult<Team.TeamList[], unknown>;
|
|
5
|
+
export declare function usePostMembersPaginatedV2({ organizationCode, accountCodes, email, page, pageSize, }: {
|
|
6
|
+
organizationCode: any;
|
|
7
|
+
accountCodes: any;
|
|
8
|
+
email: any;
|
|
9
|
+
page: any;
|
|
10
|
+
pageSize: any;
|
|
11
|
+
}): UseQueryResult<Team.TeamResponse, unknown>;
|
|
12
|
+
export declare function useGetRoles(): UseQueryResult<Team.RolesList[], AxiosError>;
|
|
13
|
+
export declare function useGetRolesPermissions(): UseQueryResult<Team.ListRolesPermissions[], unknown>;
|
|
14
|
+
export declare function useGetPermissionsCatalog(): UseQueryResult<Team.CatalogPermissions[], unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './template-reporting.query';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { TemplateReporting } from '../../types';
|
|
4
|
+
export declare function useGetTemplatesList(params: TemplateReporting.GetTemplatesListParams, enabled: any): UseQueryResult<TemplateReporting.GetTemplatesListResponse, AxiosError>;
|
|
5
|
+
export declare function useGetTemplateById(templateId: number, enabled: any): UseQueryResult<TemplateReporting.ReportTemplate, AxiosError>;
|
|
6
|
+
export declare function useGetSchedulesList(enabled: any): UseQueryResult<TemplateReporting.GetSchedulesListResponse, AxiosError>;
|
|
7
|
+
export declare function useGetScheduleById(scheduleId: number, enabled: any): UseQueryResult<TemplateReporting.ReportSchedule, AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './translation.query';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Translation } from '../../types';
|
|
4
|
+
export declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
5
|
+
export declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './users.query';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Accounts, User, AI, GetUserFullResponse } from '../../types';
|
|
4
|
+
export declare function useGetProfile(): UseQueryResult<User.UserResponsePayload, unknown>;
|
|
5
|
+
export declare function useGetUserFull(): UseQueryResult<GetUserFullResponse, unknown>;
|
|
6
|
+
export declare function useGetPermissions(organizationCode: any, accountCode: any): UseQueryResult<Accounts.PermissionsResponse[], unknown>;
|
|
7
|
+
export declare function useEmailVerification(email: string): UseQueryResult<User.UserResponseEmailVerification | string, unknown>;
|
|
8
|
+
export declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
9
|
+
export declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
10
|
+
export declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
11
|
+
export declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): UseQueryResult<User.UsersToImpersonateResponse, AxiosError>;
|
|
12
|
+
export declare function useCommunications(payload: {
|
|
13
|
+
start_date: string;
|
|
14
|
+
end_date: string;
|
|
15
|
+
account_codes: string[];
|
|
16
|
+
country: string[];
|
|
17
|
+
status: string[];
|
|
18
|
+
focus: string[];
|
|
19
|
+
skip: number;
|
|
20
|
+
limit: number;
|
|
21
|
+
search_value: string;
|
|
22
|
+
channel: string[];
|
|
23
|
+
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
24
|
+
export declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
25
|
+
export declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './velocity-rules.query';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { VelocityRules } from '../../types';
|
|
3
|
+
export declare function usePostVelocityRules(params: {
|
|
4
|
+
[key: string]: string | string[];
|
|
5
|
+
}): UseQueryResult<VelocityRules.VelocityRulesList, unknown>;
|
|
6
|
+
export declare function useGetAllConfigRules(): UseQueryResult<unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './accounts';
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { SmartRouting } from '../smart-routing';
|
|
2
|
+
export declare namespace AI {
|
|
3
|
+
/**
|
|
4
|
+
* @description Payload for AI generation feedback
|
|
5
|
+
* @example
|
|
6
|
+
* {
|
|
7
|
+
* code: '123', // code of the workflow, not the version code
|
|
8
|
+
* generated_json: [{
|
|
9
|
+
* type: 'condition',
|
|
10
|
+
* value: '123'
|
|
11
|
+
* }],
|
|
12
|
+
* status: 'ACCEPTED' | 'REJECTED' | 'FRONT_FAILED'
|
|
13
|
+
*/
|
|
14
|
+
type AIGenerate = {
|
|
15
|
+
code: string;
|
|
16
|
+
generated_json: {
|
|
17
|
+
condition_sets: SmartRouting.ConditionItem[];
|
|
18
|
+
};
|
|
19
|
+
status: AIGenerateStatus;
|
|
20
|
+
};
|
|
21
|
+
enum AIGenerateStatus {
|
|
22
|
+
ACCEPTED = "ACCEPTED",
|
|
23
|
+
REFUSED = "REFUSED",
|
|
24
|
+
FRONT_FAILED = "FRONT_FAILED"
|
|
25
|
+
}
|
|
26
|
+
type CommunicationItem = {
|
|
27
|
+
communication_id: string;
|
|
28
|
+
order_id: string;
|
|
29
|
+
payment_id: string;
|
|
30
|
+
status: string;
|
|
31
|
+
sub_status: string;
|
|
32
|
+
destination_phone: string | null;
|
|
33
|
+
duration: number;
|
|
34
|
+
country: string;
|
|
35
|
+
channel: string;
|
|
36
|
+
messages: number;
|
|
37
|
+
focus: string | null;
|
|
38
|
+
created_at: string;
|
|
39
|
+
};
|
|
40
|
+
type CommunicationsListResponse = {
|
|
41
|
+
total: number;
|
|
42
|
+
skip: number;
|
|
43
|
+
limit: number;
|
|
44
|
+
data: CommunicationItem[];
|
|
45
|
+
};
|
|
46
|
+
type CommunicationsFiltersResponse = {
|
|
47
|
+
countries: string[];
|
|
48
|
+
status: string[];
|
|
49
|
+
focus: string[];
|
|
50
|
+
};
|
|
51
|
+
type TranscriptionMessage = {
|
|
52
|
+
id: string;
|
|
53
|
+
role: string;
|
|
54
|
+
content: string | null;
|
|
55
|
+
created_at: string;
|
|
56
|
+
provider_status: string;
|
|
57
|
+
status: string;
|
|
58
|
+
content_type: string | null;
|
|
59
|
+
media_content_type: string | null;
|
|
60
|
+
media_url: string | null;
|
|
61
|
+
};
|
|
62
|
+
type CommunicationDetailsResponse = {
|
|
63
|
+
communication_id: string;
|
|
64
|
+
order_id: string;
|
|
65
|
+
payment_id: string;
|
|
66
|
+
status: string;
|
|
67
|
+
sub_status?: string;
|
|
68
|
+
destination_phone: string | null;
|
|
69
|
+
duration: number;
|
|
70
|
+
country: string;
|
|
71
|
+
channel: string;
|
|
72
|
+
messages: number;
|
|
73
|
+
focus: string | null;
|
|
74
|
+
created_at: string;
|
|
75
|
+
summary: string;
|
|
76
|
+
transcription: TranscriptionMessage[];
|
|
77
|
+
};
|
|
78
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ai';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './allowed-list';
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
export declare namespace Audit {
|
|
2
|
+
interface AuditEventsParams {
|
|
3
|
+
page: number;
|
|
4
|
+
size: number;
|
|
5
|
+
periodicity?: string;
|
|
6
|
+
account_code?: string[];
|
|
7
|
+
event?: string[];
|
|
8
|
+
source?: string[];
|
|
9
|
+
start_date?: string;
|
|
10
|
+
end_date?: string;
|
|
11
|
+
search?: string[];
|
|
12
|
+
organizationCode?: string;
|
|
13
|
+
time_zone?: string;
|
|
14
|
+
now?: string;
|
|
15
|
+
}
|
|
16
|
+
interface AuditEventData {
|
|
17
|
+
code: string;
|
|
18
|
+
user_code: string;
|
|
19
|
+
event: string;
|
|
20
|
+
source: string;
|
|
21
|
+
ip: string;
|
|
22
|
+
request: any;
|
|
23
|
+
response: any;
|
|
24
|
+
user: {
|
|
25
|
+
code: string;
|
|
26
|
+
email: string;
|
|
27
|
+
first_name: string;
|
|
28
|
+
last_name: string;
|
|
29
|
+
rol_id: string;
|
|
30
|
+
rol_name: string;
|
|
31
|
+
};
|
|
32
|
+
account_name: string;
|
|
33
|
+
account_code: string;
|
|
34
|
+
description: string;
|
|
35
|
+
requested_at: string;
|
|
36
|
+
translations: {
|
|
37
|
+
key: string;
|
|
38
|
+
params?: string[] | null;
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
interface AuditEvents {
|
|
43
|
+
page: number;
|
|
44
|
+
size: number;
|
|
45
|
+
total_rows: number;
|
|
46
|
+
total_pages: number;
|
|
47
|
+
data?: AuditEventData[] | null;
|
|
48
|
+
}
|
|
49
|
+
interface AuditMonitorsParams {
|
|
50
|
+
page: number;
|
|
51
|
+
size: number;
|
|
52
|
+
periodicity: string;
|
|
53
|
+
status?: string[];
|
|
54
|
+
payment_methods?: string[];
|
|
55
|
+
providers?: string[];
|
|
56
|
+
traffic_redistribution?: boolean;
|
|
57
|
+
start_date?: string;
|
|
58
|
+
end_date?: string;
|
|
59
|
+
now: string;
|
|
60
|
+
time_zone: string;
|
|
61
|
+
account_codes?: string[] | null;
|
|
62
|
+
}
|
|
63
|
+
interface AuditMonitorData {
|
|
64
|
+
alert_id: number;
|
|
65
|
+
status: string;
|
|
66
|
+
route_name: string;
|
|
67
|
+
payment_method: string;
|
|
68
|
+
provider_id: string;
|
|
69
|
+
connection_name: string;
|
|
70
|
+
recovered_at?: string | null;
|
|
71
|
+
created_at: string;
|
|
72
|
+
configured_threshold: number;
|
|
73
|
+
configured_timelapse: number;
|
|
74
|
+
route_plan_index: number;
|
|
75
|
+
total_transactions: number;
|
|
76
|
+
redistribution_active: boolean;
|
|
77
|
+
condition_set_name: string;
|
|
78
|
+
condition_set_id: number;
|
|
79
|
+
approval_rate: number;
|
|
80
|
+
account_code: string;
|
|
81
|
+
}
|
|
82
|
+
interface AuditMonitors {
|
|
83
|
+
page: number;
|
|
84
|
+
size: number;
|
|
85
|
+
total_rows: number;
|
|
86
|
+
total_pages: number;
|
|
87
|
+
data?: AuditMonitorData[];
|
|
88
|
+
}
|
|
89
|
+
interface AuditMonitorDetail {
|
|
90
|
+
alert_id: number;
|
|
91
|
+
status: string;
|
|
92
|
+
outage_duration: number;
|
|
93
|
+
created_at: string;
|
|
94
|
+
recovered_at: string;
|
|
95
|
+
approval_rate: number;
|
|
96
|
+
connection_name: string;
|
|
97
|
+
condition_set_id: number;
|
|
98
|
+
condition_set_name: string;
|
|
99
|
+
published_route_name: string;
|
|
100
|
+
route_name: string;
|
|
101
|
+
fallback_provider_id: number;
|
|
102
|
+
configured_threshold: number;
|
|
103
|
+
configured_timelapse: number;
|
|
104
|
+
decline_reasons: DeclineReason[];
|
|
105
|
+
}
|
|
106
|
+
interface DeclineReason {
|
|
107
|
+
type: string;
|
|
108
|
+
percentage: number;
|
|
109
|
+
}
|
|
110
|
+
interface ExportApiLogsRequest {
|
|
111
|
+
report_name: string;
|
|
112
|
+
account_code?: string[];
|
|
113
|
+
start_date: string;
|
|
114
|
+
end_date: string;
|
|
115
|
+
time_zone: string;
|
|
116
|
+
organizationCode?: string;
|
|
117
|
+
status_codes?: string[];
|
|
118
|
+
methods?: string[];
|
|
119
|
+
}
|
|
120
|
+
interface AuditApiJSON {
|
|
121
|
+
[key: string]: string;
|
|
122
|
+
}
|
|
123
|
+
interface AuditApiLogs {
|
|
124
|
+
code: string;
|
|
125
|
+
url: string;
|
|
126
|
+
method: string;
|
|
127
|
+
source: string;
|
|
128
|
+
headers: AuditApiJSON;
|
|
129
|
+
request: AuditApiJSON;
|
|
130
|
+
response: AuditApiJSON;
|
|
131
|
+
account_name: string;
|
|
132
|
+
account_code: string;
|
|
133
|
+
status_code: number;
|
|
134
|
+
trace_id: string;
|
|
135
|
+
created_at: string;
|
|
136
|
+
}
|
|
137
|
+
interface AuditApiLogsResponse {
|
|
138
|
+
data: AuditApiLogs[];
|
|
139
|
+
page: number;
|
|
140
|
+
size: number;
|
|
141
|
+
total_rows: number;
|
|
142
|
+
total_pages: number;
|
|
143
|
+
}
|
|
144
|
+
interface AuditApiLogsParams {
|
|
145
|
+
page: number;
|
|
146
|
+
size: number;
|
|
147
|
+
periodicity?: string;
|
|
148
|
+
account_code?: string[];
|
|
149
|
+
organizationCode?: string;
|
|
150
|
+
status_codes?: string[];
|
|
151
|
+
methods?: string[];
|
|
152
|
+
}
|
|
153
|
+
interface AuditWebhooksParams {
|
|
154
|
+
page: number;
|
|
155
|
+
size: number;
|
|
156
|
+
organizationCode?: string;
|
|
157
|
+
periodicity?: string;
|
|
158
|
+
account_code?: string[];
|
|
159
|
+
status_codes?: string[];
|
|
160
|
+
methods?: string[];
|
|
161
|
+
}
|
|
162
|
+
interface AuditWebhooks {
|
|
163
|
+
id: number;
|
|
164
|
+
organization_code: string;
|
|
165
|
+
account_code: string;
|
|
166
|
+
type: string;
|
|
167
|
+
created_at: string;
|
|
168
|
+
updated_at: string;
|
|
169
|
+
time: number;
|
|
170
|
+
http_method: string;
|
|
171
|
+
url: string;
|
|
172
|
+
request: string;
|
|
173
|
+
response: string;
|
|
174
|
+
response_status: number;
|
|
175
|
+
connect_timeout: number;
|
|
176
|
+
read_timeout: number;
|
|
177
|
+
exception: string;
|
|
178
|
+
headers: string;
|
|
179
|
+
trace_id: string;
|
|
180
|
+
origin_id: string;
|
|
181
|
+
}
|
|
182
|
+
interface AuditWebhooksResponse {
|
|
183
|
+
data: AuditWebhooks[];
|
|
184
|
+
page: number;
|
|
185
|
+
size: number;
|
|
186
|
+
total_rows: number;
|
|
187
|
+
total_pages: number;
|
|
188
|
+
}
|
|
189
|
+
interface AuditWebhooksResendParams {
|
|
190
|
+
codes: string[];
|
|
191
|
+
}
|
|
192
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './audit';
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export declare namespace BatchRefunds {
|
|
2
|
+
interface UploadRequest {
|
|
3
|
+
file_url: string;
|
|
4
|
+
file_format: string;
|
|
5
|
+
file_name: string;
|
|
6
|
+
}
|
|
7
|
+
interface PayloadV2 {
|
|
8
|
+
base64_data: string | ArrayBuffer;
|
|
9
|
+
name_file: string;
|
|
10
|
+
ext_file: string;
|
|
11
|
+
days: number;
|
|
12
|
+
}
|
|
13
|
+
interface ListBatchRefundsResponse {
|
|
14
|
+
name: string;
|
|
15
|
+
items: unknown[];
|
|
16
|
+
is_last_page: boolean;
|
|
17
|
+
}
|
|
18
|
+
interface ListBatchRefunds {
|
|
19
|
+
batch_id: string;
|
|
20
|
+
status: string;
|
|
21
|
+
generated_file_url: string;
|
|
22
|
+
created_at: string;
|
|
23
|
+
file_name: string;
|
|
24
|
+
user_email: string;
|
|
25
|
+
total_records: number;
|
|
26
|
+
valid_records: number;
|
|
27
|
+
invalid_records: number;
|
|
28
|
+
}
|
|
29
|
+
interface BatchRefundByFile {
|
|
30
|
+
file_name: string;
|
|
31
|
+
}
|
|
32
|
+
interface BatchRefundByFileResponse {
|
|
33
|
+
download_file_url: string;
|
|
34
|
+
}
|
|
35
|
+
interface BatchRefundUserFileResponse {
|
|
36
|
+
uploaded_file_url: string;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './batch-refunds';
|