@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,566 @@
|
|
|
1
|
+
export declare namespace Payment {
|
|
2
|
+
interface UploadRequest {
|
|
3
|
+
account_id: string;
|
|
4
|
+
evidence: {
|
|
5
|
+
content_category: string;
|
|
6
|
+
content_type: string;
|
|
7
|
+
content: string;
|
|
8
|
+
file_name: string;
|
|
9
|
+
}[];
|
|
10
|
+
}
|
|
11
|
+
interface Amount {
|
|
12
|
+
currency: string;
|
|
13
|
+
value: number;
|
|
14
|
+
}
|
|
15
|
+
interface Checkout {
|
|
16
|
+
session: string;
|
|
17
|
+
sdk_action_required: boolean;
|
|
18
|
+
}
|
|
19
|
+
interface PaymentMethod {
|
|
20
|
+
vaulted_token: string;
|
|
21
|
+
type: string;
|
|
22
|
+
vault_on_success: boolean;
|
|
23
|
+
token: string;
|
|
24
|
+
}
|
|
25
|
+
interface BrowserInfo {
|
|
26
|
+
user_agent: string;
|
|
27
|
+
accept_header: string;
|
|
28
|
+
color_depth: string;
|
|
29
|
+
screen_height: string;
|
|
30
|
+
screen_width: string;
|
|
31
|
+
javascript_enabled: string;
|
|
32
|
+
language: string;
|
|
33
|
+
}
|
|
34
|
+
interface Document {
|
|
35
|
+
document_type: string;
|
|
36
|
+
document_number: string;
|
|
37
|
+
}
|
|
38
|
+
interface Phone {
|
|
39
|
+
number: string;
|
|
40
|
+
country_code: string;
|
|
41
|
+
}
|
|
42
|
+
interface Address {
|
|
43
|
+
address_line_1: string;
|
|
44
|
+
address_line_2: string;
|
|
45
|
+
country: string;
|
|
46
|
+
state: string;
|
|
47
|
+
city: string;
|
|
48
|
+
zip_code: string;
|
|
49
|
+
}
|
|
50
|
+
interface CustomerPayer {
|
|
51
|
+
code: string;
|
|
52
|
+
merchant_customer_id: string;
|
|
53
|
+
first_name: string;
|
|
54
|
+
last_name: string;
|
|
55
|
+
gender: string;
|
|
56
|
+
date_of_birth: string;
|
|
57
|
+
email: string;
|
|
58
|
+
nationality: string;
|
|
59
|
+
ip_address: string;
|
|
60
|
+
device_fingerprint: string;
|
|
61
|
+
browser_info: BrowserInfo;
|
|
62
|
+
document: Document;
|
|
63
|
+
phone: Phone;
|
|
64
|
+
billing_address: Address;
|
|
65
|
+
shipping_address: Address;
|
|
66
|
+
}
|
|
67
|
+
interface Item {
|
|
68
|
+
id: string;
|
|
69
|
+
name: string;
|
|
70
|
+
quantity: number;
|
|
71
|
+
unit_amount: number;
|
|
72
|
+
category: string;
|
|
73
|
+
brand: string;
|
|
74
|
+
sku_code: string;
|
|
75
|
+
manufacture_part_number: string;
|
|
76
|
+
}
|
|
77
|
+
interface Order {
|
|
78
|
+
fee_amount: number;
|
|
79
|
+
shipping_amount: number;
|
|
80
|
+
items: Item[];
|
|
81
|
+
}
|
|
82
|
+
interface Payment {
|
|
83
|
+
code: string;
|
|
84
|
+
account_id: string;
|
|
85
|
+
description: string;
|
|
86
|
+
country: string;
|
|
87
|
+
status: string;
|
|
88
|
+
merchant_order_id: string;
|
|
89
|
+
created_at: string;
|
|
90
|
+
updated_at: string;
|
|
91
|
+
amount: Amount;
|
|
92
|
+
checkout: Checkout;
|
|
93
|
+
payment_method: PaymentMethod;
|
|
94
|
+
customer_payer: CustomerPayer;
|
|
95
|
+
order: Order;
|
|
96
|
+
test_credential: boolean;
|
|
97
|
+
}
|
|
98
|
+
interface PaymentV2 {
|
|
99
|
+
organization_code: string;
|
|
100
|
+
account_code: string;
|
|
101
|
+
id: string;
|
|
102
|
+
code: string;
|
|
103
|
+
order_id: string;
|
|
104
|
+
status: string;
|
|
105
|
+
sub_status: string;
|
|
106
|
+
amount_value: number;
|
|
107
|
+
currency_code: string;
|
|
108
|
+
created_at: string;
|
|
109
|
+
updated_at: string;
|
|
110
|
+
captured: number;
|
|
111
|
+
refunded: number;
|
|
112
|
+
country: string;
|
|
113
|
+
customer_code: string;
|
|
114
|
+
description: string;
|
|
115
|
+
subscription_id: string;
|
|
116
|
+
transaction_payment: [];
|
|
117
|
+
customer_payer: CustomerPayerV2[];
|
|
118
|
+
card_transaction: CardTransaction[];
|
|
119
|
+
trace_id: string;
|
|
120
|
+
subscription_code: string;
|
|
121
|
+
merchant_reference: string;
|
|
122
|
+
test_credential: boolean;
|
|
123
|
+
}
|
|
124
|
+
interface TransactionPayment {
|
|
125
|
+
code: string;
|
|
126
|
+
provider_id: string;
|
|
127
|
+
payment_method_type: string;
|
|
128
|
+
parent_payment_method_type?: string;
|
|
129
|
+
}
|
|
130
|
+
interface CustomerPayerV2 {
|
|
131
|
+
customer_payer_id: number;
|
|
132
|
+
payment_id: number;
|
|
133
|
+
document_number?: string;
|
|
134
|
+
email?: string;
|
|
135
|
+
customer_code: string;
|
|
136
|
+
}
|
|
137
|
+
interface CardTransaction {
|
|
138
|
+
card_transaction_id: number;
|
|
139
|
+
transaction_id: number;
|
|
140
|
+
three_ds_electronic_commerce_indicator?: string;
|
|
141
|
+
three_ds_transaction_id?: string;
|
|
142
|
+
}
|
|
143
|
+
interface PaymentItem extends Pick<Payment, 'code' | 'description' | 'country' | 'status' | 'amount' | 'created_at' | 'updated_at' | 'test_credential'> {
|
|
144
|
+
idempotency_key: string;
|
|
145
|
+
organization_code: string;
|
|
146
|
+
order_id: string;
|
|
147
|
+
}
|
|
148
|
+
interface Sort {
|
|
149
|
+
empty: boolean;
|
|
150
|
+
unsorted: boolean;
|
|
151
|
+
sorted: boolean;
|
|
152
|
+
}
|
|
153
|
+
interface Pageable {
|
|
154
|
+
sort: Sort;
|
|
155
|
+
offset: number;
|
|
156
|
+
page_number: number;
|
|
157
|
+
page_size: number;
|
|
158
|
+
paged: boolean;
|
|
159
|
+
unpaged: boolean;
|
|
160
|
+
}
|
|
161
|
+
interface PaymentList {
|
|
162
|
+
content: PaymentItem[];
|
|
163
|
+
pageable: Pageable;
|
|
164
|
+
last: boolean;
|
|
165
|
+
total_pages: number;
|
|
166
|
+
total_elements: number;
|
|
167
|
+
first: boolean;
|
|
168
|
+
size: number;
|
|
169
|
+
number: number;
|
|
170
|
+
sort: Sort;
|
|
171
|
+
number_of_elements: number;
|
|
172
|
+
empty: boolean;
|
|
173
|
+
}
|
|
174
|
+
interface Transaction {
|
|
175
|
+
code: string;
|
|
176
|
+
type: string;
|
|
177
|
+
status: string;
|
|
178
|
+
category: string;
|
|
179
|
+
amount: number;
|
|
180
|
+
provider_id: string;
|
|
181
|
+
created_at: string;
|
|
182
|
+
updated_at: string;
|
|
183
|
+
}
|
|
184
|
+
interface TransactionTable extends Pick<Transaction, 'created_at' | 'amount' | 'status' | 'category' | 'provider_id' | 'type'> {
|
|
185
|
+
id: number;
|
|
186
|
+
payment_id: number;
|
|
187
|
+
payment_method_type: string;
|
|
188
|
+
country: string;
|
|
189
|
+
order_id: number;
|
|
190
|
+
currency_code: string;
|
|
191
|
+
account_code: string;
|
|
192
|
+
merchant_reference: string;
|
|
193
|
+
provider_transaction_id: number;
|
|
194
|
+
}
|
|
195
|
+
interface Provider {
|
|
196
|
+
id: string;
|
|
197
|
+
transaction_id: string;
|
|
198
|
+
status: string;
|
|
199
|
+
response_code: string;
|
|
200
|
+
bank_transfer: any;
|
|
201
|
+
bnpl: any;
|
|
202
|
+
card: any;
|
|
203
|
+
wallet: any;
|
|
204
|
+
}
|
|
205
|
+
interface ProviderData {
|
|
206
|
+
id?: string;
|
|
207
|
+
transaction_id?: string;
|
|
208
|
+
account_id?: string;
|
|
209
|
+
status?: string;
|
|
210
|
+
sub_status?: string;
|
|
211
|
+
status_detail?: string;
|
|
212
|
+
response_message?: string;
|
|
213
|
+
raw_response?: string;
|
|
214
|
+
raw_notification?: string;
|
|
215
|
+
action_data?: string;
|
|
216
|
+
third_party_transaction_id?: string;
|
|
217
|
+
provider_response_message?: string;
|
|
218
|
+
iso8583_response_code?: string;
|
|
219
|
+
iso8583_response_message?: string;
|
|
220
|
+
}
|
|
221
|
+
interface FraudScreening {
|
|
222
|
+
id?: string;
|
|
223
|
+
fraud_screening_id?: number;
|
|
224
|
+
code?: string;
|
|
225
|
+
created_at?: string;
|
|
226
|
+
payment_method_payer_index?: string;
|
|
227
|
+
provider_id?: string;
|
|
228
|
+
provider_raw_response?: string;
|
|
229
|
+
provider_score?: string;
|
|
230
|
+
provider_status_detail?: string;
|
|
231
|
+
provider_status?: string;
|
|
232
|
+
response_code?: string;
|
|
233
|
+
response_message?: string;
|
|
234
|
+
status?: string;
|
|
235
|
+
type?: string;
|
|
236
|
+
updated_at?: string;
|
|
237
|
+
}
|
|
238
|
+
interface TransactionDetails {
|
|
239
|
+
id?: string;
|
|
240
|
+
type?: string;
|
|
241
|
+
transaction_data_type?: string;
|
|
242
|
+
status?: string;
|
|
243
|
+
category?: string;
|
|
244
|
+
amount?: {
|
|
245
|
+
currency?: string;
|
|
246
|
+
value: number;
|
|
247
|
+
} | string;
|
|
248
|
+
payment_method?: PaymentMethod;
|
|
249
|
+
response_code?: string;
|
|
250
|
+
response_message?: string;
|
|
251
|
+
reason?: string;
|
|
252
|
+
description?: string;
|
|
253
|
+
merchant_advice_code?: string;
|
|
254
|
+
merchant_reference?: string;
|
|
255
|
+
provider_data?: ProviderData;
|
|
256
|
+
created_at?: string;
|
|
257
|
+
updated_at?: string;
|
|
258
|
+
code?: string;
|
|
259
|
+
customer_payment_method_code?: string;
|
|
260
|
+
one_time_token?: string;
|
|
261
|
+
parent_id?: string;
|
|
262
|
+
payment_id?: number;
|
|
263
|
+
require_action_type?: string;
|
|
264
|
+
vault_on_success?: string;
|
|
265
|
+
parent_provider?: string;
|
|
266
|
+
account_integration_code?: string;
|
|
267
|
+
technical_reverse_provider_transaction_id?: string;
|
|
268
|
+
technical_reverse_transaction_type?: string;
|
|
269
|
+
technical_reverse_status?: string;
|
|
270
|
+
fraud_screening?: FraudScreening;
|
|
271
|
+
stand_alone?: string;
|
|
272
|
+
purpose?: string;
|
|
273
|
+
}
|
|
274
|
+
interface PaymentTransactionDetail {
|
|
275
|
+
id?: number;
|
|
276
|
+
code?: string;
|
|
277
|
+
parent_id?: string;
|
|
278
|
+
payment_method_type?: string;
|
|
279
|
+
payment_id?: number;
|
|
280
|
+
category?: string;
|
|
281
|
+
status?: string;
|
|
282
|
+
customer_payment_method_code?: string;
|
|
283
|
+
amount?: number;
|
|
284
|
+
provider_id?: string;
|
|
285
|
+
created_at?: string;
|
|
286
|
+
updated_at?: string;
|
|
287
|
+
response_code?: string;
|
|
288
|
+
one_time_token?: string;
|
|
289
|
+
type?: string;
|
|
290
|
+
response_message?: string;
|
|
291
|
+
provider_raw_response?: string;
|
|
292
|
+
provider_transaction_id?: string;
|
|
293
|
+
provider_status?: string;
|
|
294
|
+
provider_status_detail?: string;
|
|
295
|
+
merchant_advice_code?: string;
|
|
296
|
+
merchant_reference?: string;
|
|
297
|
+
reason?: string;
|
|
298
|
+
description?: string;
|
|
299
|
+
vault_on_success?: boolean;
|
|
300
|
+
require_action_type?: string;
|
|
301
|
+
parent_provider?: string;
|
|
302
|
+
provider_raw_notification?: string;
|
|
303
|
+
account_integration_code?: string;
|
|
304
|
+
provider_action_data?: string;
|
|
305
|
+
technical_reverse_provider_transaction_id?: string;
|
|
306
|
+
technical_reverse_transaction_type?: string;
|
|
307
|
+
technical_reverse_status?: string;
|
|
308
|
+
provider_response_message?: string;
|
|
309
|
+
trace_id?: string;
|
|
310
|
+
checkout_url?: string;
|
|
311
|
+
payment?: PaymentTransactionDetail[];
|
|
312
|
+
bank_transfer?: string[];
|
|
313
|
+
bnpl?: string[];
|
|
314
|
+
card?: Card[];
|
|
315
|
+
card_transaction?: Card[];
|
|
316
|
+
payment_link?: string[];
|
|
317
|
+
ticket?: string[];
|
|
318
|
+
wallet?: string[];
|
|
319
|
+
customer_payer?: CustomerPayerTransactionDetail[];
|
|
320
|
+
error?: boolean;
|
|
321
|
+
provider_account_id?: string;
|
|
322
|
+
parent_payment_method_type?: string;
|
|
323
|
+
provider_third_party_account_id?: string;
|
|
324
|
+
provider_response_code?: string;
|
|
325
|
+
}
|
|
326
|
+
interface PaymentTransactionDetail {
|
|
327
|
+
id?: number;
|
|
328
|
+
code?: string;
|
|
329
|
+
account_code?: string;
|
|
330
|
+
currency_code?: string;
|
|
331
|
+
organization_code?: string;
|
|
332
|
+
}
|
|
333
|
+
interface Card {
|
|
334
|
+
id?: number;
|
|
335
|
+
type?: string;
|
|
336
|
+
brand?: string;
|
|
337
|
+
verify?: string;
|
|
338
|
+
capture?: boolean;
|
|
339
|
+
card_iin?: string;
|
|
340
|
+
card_lfd?: string;
|
|
341
|
+
category?: string;
|
|
342
|
+
created_at?: string;
|
|
343
|
+
updated_at?: string;
|
|
344
|
+
issuer_code?: string;
|
|
345
|
+
issuer_name?: string;
|
|
346
|
+
country_code?: string;
|
|
347
|
+
country_name?: string;
|
|
348
|
+
installments?: number;
|
|
349
|
+
three_ds_code?: string;
|
|
350
|
+
three_ds_ds_id?: string;
|
|
351
|
+
three_ds_token?: string;
|
|
352
|
+
transaction_id?: number;
|
|
353
|
+
sequence_number?: string;
|
|
354
|
+
soft_descriptor?: string;
|
|
355
|
+
three_ds_acs_id?: string;
|
|
356
|
+
card_holder_name?: string;
|
|
357
|
+
installment_info?: string;
|
|
358
|
+
three_ds_version?: string;
|
|
359
|
+
installments_type?: string;
|
|
360
|
+
three_ds_setup_id?: string;
|
|
361
|
+
authorization_code?: string;
|
|
362
|
+
card_number_length?: number;
|
|
363
|
+
installments_amount?: string;
|
|
364
|
+
internal_card_token?: string;
|
|
365
|
+
three_ds_cryptogram?: string;
|
|
366
|
+
card_expiration_year?: number;
|
|
367
|
+
three_ds_collect_url?: string;
|
|
368
|
+
three_ds_solution_id?: string;
|
|
369
|
+
card_expiration_month?: number;
|
|
370
|
+
three_ds_developer_id?: string;
|
|
371
|
+
three_ds_pares_status?: string;
|
|
372
|
+
three_ds_has_challenge?: string;
|
|
373
|
+
provider_transaction_id?: string;
|
|
374
|
+
three_ds_transaction_id?: string;
|
|
375
|
+
card_security_code_length?: number;
|
|
376
|
+
first_installment_deferral?: string;
|
|
377
|
+
retrieval_reference_number?: string;
|
|
378
|
+
third_party_transaction_id?: string;
|
|
379
|
+
three_ds_setup_reference_id?: string;
|
|
380
|
+
internal_security_code_token?: string;
|
|
381
|
+
fingerprint_code?: string;
|
|
382
|
+
three_ds_electronic_commerce_indicator?: string;
|
|
383
|
+
network_token_response_code?: string;
|
|
384
|
+
network_token_response_message?: string;
|
|
385
|
+
network_token_lfd?: string;
|
|
386
|
+
network_token_iin?: string;
|
|
387
|
+
network_token_expiration_month?: number;
|
|
388
|
+
network_token_expiration_year?: number;
|
|
389
|
+
network_token_par?: string;
|
|
390
|
+
network_token_status?: string;
|
|
391
|
+
}
|
|
392
|
+
interface CustomerPayerTransactionDetail {
|
|
393
|
+
id?: number;
|
|
394
|
+
email?: string;
|
|
395
|
+
gender?: string;
|
|
396
|
+
last_name?: string;
|
|
397
|
+
created_at?: string;
|
|
398
|
+
first_name?: string;
|
|
399
|
+
ip_address?: string;
|
|
400
|
+
payment_id?: number;
|
|
401
|
+
updated_at?: string;
|
|
402
|
+
nationality?: string;
|
|
403
|
+
phone_number?: string;
|
|
404
|
+
customer_code?: string;
|
|
405
|
+
date_of_birth?: string;
|
|
406
|
+
document_type?: string;
|
|
407
|
+
document_number?: string;
|
|
408
|
+
device_fingerprint?: string;
|
|
409
|
+
phone_country_code?: string;
|
|
410
|
+
browser_info_language?: string;
|
|
411
|
+
third_party_session_id?: string;
|
|
412
|
+
browser_info_user_agent?: string;
|
|
413
|
+
browser_info_color_depth?: string;
|
|
414
|
+
browser_info_java_enabled?: string;
|
|
415
|
+
browser_info_screen_width?: string;
|
|
416
|
+
browser_info_accept_header?: string;
|
|
417
|
+
browser_info_screen_height?: string;
|
|
418
|
+
browser_info_accept_browser?: string;
|
|
419
|
+
browser_info_accept_content?: string;
|
|
420
|
+
browser_info_javascript_enabled?: string;
|
|
421
|
+
organization_customer_external_id?: string;
|
|
422
|
+
browser_info_browser_time_difference?: string;
|
|
423
|
+
}
|
|
424
|
+
interface TransactionDetailsResult {
|
|
425
|
+
content: TransactionDetails[];
|
|
426
|
+
}
|
|
427
|
+
interface Params {
|
|
428
|
+
start_date: string;
|
|
429
|
+
end_date: string;
|
|
430
|
+
page: string;
|
|
431
|
+
size: string;
|
|
432
|
+
organization: string;
|
|
433
|
+
}
|
|
434
|
+
interface PaymentMethodsAndProviders {
|
|
435
|
+
acquirers?: string[];
|
|
436
|
+
payment_methods: Array<PaymentMethodStyled>;
|
|
437
|
+
providers: Array<ProviderStyled>;
|
|
438
|
+
currency_codes: string[];
|
|
439
|
+
payment_statuses: string[];
|
|
440
|
+
card_brand: string[];
|
|
441
|
+
connection_name: string[];
|
|
442
|
+
}
|
|
443
|
+
interface PaymentMethodsAndProvidersActive {
|
|
444
|
+
payment_methods: Array<string>;
|
|
445
|
+
providers: Array<string>;
|
|
446
|
+
}
|
|
447
|
+
interface PaymentStatusAndSubStatus {
|
|
448
|
+
status: string;
|
|
449
|
+
sub_status: string;
|
|
450
|
+
}
|
|
451
|
+
interface PaymentAndTransactionStatuses {
|
|
452
|
+
payment_status: Array<string>;
|
|
453
|
+
payment_sub_status: Array<string>;
|
|
454
|
+
transaction_status: Array<string>;
|
|
455
|
+
payment_status_and_sub_status: Array<PaymentStatusAndSubStatus>;
|
|
456
|
+
}
|
|
457
|
+
interface CardBrand {
|
|
458
|
+
icon: string;
|
|
459
|
+
id: string;
|
|
460
|
+
name: string;
|
|
461
|
+
}
|
|
462
|
+
interface Filters {
|
|
463
|
+
organization_code: string;
|
|
464
|
+
statuses: string[];
|
|
465
|
+
sub_statuses: string[];
|
|
466
|
+
providers: string[];
|
|
467
|
+
routes: string[];
|
|
468
|
+
payment_methods: string[];
|
|
469
|
+
parent_payment_method_type: string[];
|
|
470
|
+
country_codes: string[];
|
|
471
|
+
currency_codes: string[];
|
|
472
|
+
connection_name: string[];
|
|
473
|
+
card_brand: string[];
|
|
474
|
+
transaction_statuses: string[];
|
|
475
|
+
decline_reason: string[];
|
|
476
|
+
installments: string[];
|
|
477
|
+
provider_response_code: string[];
|
|
478
|
+
provider_iso8583_response_code: string[];
|
|
479
|
+
fst_response_code: string[];
|
|
480
|
+
fst_provider_score: string[];
|
|
481
|
+
}
|
|
482
|
+
interface TransactionHistoryByPayment {
|
|
483
|
+
payment_method_type: string;
|
|
484
|
+
amount_value: number;
|
|
485
|
+
provider_id: string;
|
|
486
|
+
created_at: string;
|
|
487
|
+
status_history: string;
|
|
488
|
+
currency_code: string;
|
|
489
|
+
country: string;
|
|
490
|
+
transaction_type: string;
|
|
491
|
+
description?: string;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
export interface PaymentMethodStyled {
|
|
495
|
+
description: string;
|
|
496
|
+
hint: string;
|
|
497
|
+
icon: string;
|
|
498
|
+
id: string;
|
|
499
|
+
name: string;
|
|
500
|
+
params_allowed: string[];
|
|
501
|
+
short_name: string;
|
|
502
|
+
}
|
|
503
|
+
export interface ProviderStyled {
|
|
504
|
+
category: string;
|
|
505
|
+
credentials_config_type: string;
|
|
506
|
+
description: string;
|
|
507
|
+
icon: string;
|
|
508
|
+
id: string;
|
|
509
|
+
name: string;
|
|
510
|
+
website: string;
|
|
511
|
+
active: boolean;
|
|
512
|
+
created_at: string;
|
|
513
|
+
updated_at: string;
|
|
514
|
+
}
|
|
515
|
+
export interface TransactionHistory {
|
|
516
|
+
id: number;
|
|
517
|
+
payment_method_type: string;
|
|
518
|
+
payment_id: number;
|
|
519
|
+
category: string;
|
|
520
|
+
amount: number;
|
|
521
|
+
provider_id: string;
|
|
522
|
+
created_at: string;
|
|
523
|
+
status: string;
|
|
524
|
+
}
|
|
525
|
+
export interface RefundPdfResponse {
|
|
526
|
+
pre_signed_url?: string;
|
|
527
|
+
s3_url?: string;
|
|
528
|
+
transactionCode?: string;
|
|
529
|
+
}
|
|
530
|
+
export declare namespace SendPaymentNotification {
|
|
531
|
+
enum NotificationStatus {
|
|
532
|
+
SETTLED = "SETTLED",
|
|
533
|
+
NOT_SETTLED = "NOT_SETTLED"
|
|
534
|
+
}
|
|
535
|
+
enum NotificationReason {
|
|
536
|
+
REFUNDED = "REFUNDED",
|
|
537
|
+
RESOLVED = "RESOLVED",
|
|
538
|
+
CANCELLED = "CANCELLED",
|
|
539
|
+
SERVICE_SUSPENDED = "SERVICE_SUSPENDED",
|
|
540
|
+
ORDER_STOPPED = "ORDER_STOPPED",
|
|
541
|
+
DISMISS = "DISMISS"
|
|
542
|
+
}
|
|
543
|
+
interface Params {
|
|
544
|
+
paymentCode: string;
|
|
545
|
+
transactionCode: string;
|
|
546
|
+
}
|
|
547
|
+
interface Body {
|
|
548
|
+
status: NotificationStatus;
|
|
549
|
+
reason: NotificationReason;
|
|
550
|
+
description: string;
|
|
551
|
+
merchant_reference: string;
|
|
552
|
+
}
|
|
553
|
+
interface Options {
|
|
554
|
+
enabled: boolean;
|
|
555
|
+
onSuccess: () => void;
|
|
556
|
+
onError: () => void;
|
|
557
|
+
}
|
|
558
|
+
interface Response {
|
|
559
|
+
response_code: string;
|
|
560
|
+
response_message: string;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
export declare enum PaymentFiltersSection {
|
|
564
|
+
PAYMENTS = "payments",
|
|
565
|
+
INSIGHTS = "insights"
|
|
566
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './payment-links';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare namespace PaymentLinks {
|
|
2
|
+
interface DataCountries {
|
|
3
|
+
country_code: string;
|
|
4
|
+
country_name: string;
|
|
5
|
+
prefix_phone?: {
|
|
6
|
+
prefix: string;
|
|
7
|
+
regex: string;
|
|
8
|
+
};
|
|
9
|
+
icon?: string;
|
|
10
|
+
icon_url?: string;
|
|
11
|
+
}
|
|
12
|
+
interface GetCountriesConfig {
|
|
13
|
+
countries: DataCountries[];
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './payouts';
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
export declare namespace Payouts {
|
|
2
|
+
interface Filters {
|
|
3
|
+
organization_code: string;
|
|
4
|
+
account_codes: string[];
|
|
5
|
+
statuses: string[];
|
|
6
|
+
sub_statuses: string[];
|
|
7
|
+
currency_codes: string[];
|
|
8
|
+
providers: string[];
|
|
9
|
+
withdrawal_method_types: string[];
|
|
10
|
+
country_codes: string[];
|
|
11
|
+
purposes: string[];
|
|
12
|
+
}
|
|
13
|
+
interface List {
|
|
14
|
+
content: ItemList[];
|
|
15
|
+
number: number;
|
|
16
|
+
size: number;
|
|
17
|
+
total_elements: number;
|
|
18
|
+
total_pages: number;
|
|
19
|
+
last_page: boolean;
|
|
20
|
+
}
|
|
21
|
+
interface ItemList {
|
|
22
|
+
payout_code: string;
|
|
23
|
+
transaction_code: string;
|
|
24
|
+
merchant_reference: string;
|
|
25
|
+
status: string;
|
|
26
|
+
sub_status: string;
|
|
27
|
+
amount: number;
|
|
28
|
+
currency_code: string;
|
|
29
|
+
provider_id: string;
|
|
30
|
+
withdrawal_method_type: string;
|
|
31
|
+
created_at: string;
|
|
32
|
+
updated_at: string;
|
|
33
|
+
country: string;
|
|
34
|
+
account_code: string;
|
|
35
|
+
organization_code: string;
|
|
36
|
+
beneficiary_email: string;
|
|
37
|
+
}
|
|
38
|
+
interface Details {
|
|
39
|
+
code: string;
|
|
40
|
+
status: string;
|
|
41
|
+
sub_status: string;
|
|
42
|
+
merchant_reference: string;
|
|
43
|
+
purpose: string;
|
|
44
|
+
account_code: string;
|
|
45
|
+
organization_code: string;
|
|
46
|
+
country: string;
|
|
47
|
+
description: string;
|
|
48
|
+
amount: {
|
|
49
|
+
currency: string;
|
|
50
|
+
value: number;
|
|
51
|
+
};
|
|
52
|
+
beneficiary: Beneficiary;
|
|
53
|
+
metadata: {
|
|
54
|
+
key: string;
|
|
55
|
+
value: string;
|
|
56
|
+
}[];
|
|
57
|
+
created_at: string;
|
|
58
|
+
updated_at: string;
|
|
59
|
+
withdrawal_method: WithdrawlMethod;
|
|
60
|
+
}
|
|
61
|
+
interface Beneficiary {
|
|
62
|
+
merchant_beneficiary_id: string;
|
|
63
|
+
national_entity: string;
|
|
64
|
+
first_name: string;
|
|
65
|
+
last_name: string;
|
|
66
|
+
legal_name: string;
|
|
67
|
+
email: string;
|
|
68
|
+
date_of_birth: string;
|
|
69
|
+
country: string;
|
|
70
|
+
document: Document;
|
|
71
|
+
phone: {
|
|
72
|
+
country_code: string;
|
|
73
|
+
number: string;
|
|
74
|
+
};
|
|
75
|
+
address: {
|
|
76
|
+
address_line_1: string;
|
|
77
|
+
address_line_2: string;
|
|
78
|
+
city: string;
|
|
79
|
+
country: string;
|
|
80
|
+
state: string;
|
|
81
|
+
zip_code: string;
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
interface WithdrawlMethod {
|
|
85
|
+
type: string;
|
|
86
|
+
provider_id: string;
|
|
87
|
+
detail: {
|
|
88
|
+
bank_transfer?: string;
|
|
89
|
+
wallet: {
|
|
90
|
+
code?: string;
|
|
91
|
+
email: string;
|
|
92
|
+
country: string;
|
|
93
|
+
document: Document;
|
|
94
|
+
phone: {
|
|
95
|
+
country_code: string;
|
|
96
|
+
number: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
interface Document {
|
|
102
|
+
document_number: string;
|
|
103
|
+
document_type: string;
|
|
104
|
+
}
|
|
105
|
+
}
|