@yuno-payments/dashboard-api-mfe 1.10.6 → 1.10.8
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/__mocks__/@yuno/dashboard-authentication-mfe/index.d.ts +10 -0
- package/build/api/api.d.ts +675 -0
- package/build/api/api.singleton.d.ts +9 -0
- package/build/api/api.types.d.ts +229 -0
- package/build/api/index.d.ts +3 -0
- package/build/api-provider.d.ts +4 -0
- package/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +2 -26
- package/build/cjs/types/api/api.singleton.d.ts +0 -1
- package/build/cjs/types/api/api.types.d.ts +0 -1
- package/build/cjs/types/mutations/index.d.ts +0 -2
- package/build/cjs/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
- package/build/cjs/types/mutations/settings/index.d.ts +0 -1
- package/build/cjs/types/queries/audit/audit.query.d.ts +1 -5
- package/build/cjs/types/queries/audit/index.d.ts +0 -1
- package/build/cjs/types/queries/index.d.ts +0 -1
- package/build/cjs/types/types/audit/audit.d.ts +0 -80
- package/build/cjs/types/types/checkout/styling/styling.d.ts +0 -31
- package/build/cjs/types/types/index.d.ts +0 -1
- package/build/cjs/types/types/organization/organization.d.ts +0 -1
- package/build/cjs/types/types/recipients/index.d.ts +0 -1
- package/build/cjs/types/types/recipients/recipients.d.ts +0 -7
- package/build/cjs/types/types/team/team.d.ts +0 -1
- package/build/cjs/types/types/webhook/webhook.d.ts +0 -2
- package/build/common/config.d.ts +13 -0
- package/build/common/config.test.d.ts +0 -0
- package/build/constants/errors-code.constant.d.ts +5 -0
- package/build/constants/index.d.ts +1 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -26
- package/build/esm/types/api/api.singleton.d.ts +0 -1
- package/build/esm/types/api/api.types.d.ts +0 -1
- package/build/esm/types/mutations/index.d.ts +0 -2
- package/build/esm/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
- package/build/esm/types/mutations/settings/index.d.ts +0 -1
- package/build/esm/types/queries/audit/audit.query.d.ts +1 -5
- package/build/esm/types/queries/audit/index.d.ts +0 -1
- package/build/esm/types/queries/index.d.ts +0 -1
- package/build/esm/types/types/audit/audit.d.ts +0 -80
- package/build/esm/types/types/checkout/styling/styling.d.ts +0 -31
- package/build/esm/types/types/index.d.ts +0 -1
- package/build/esm/types/types/organization/organization.d.ts +0 -1
- package/build/esm/types/types/recipients/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients.d.ts +0 -7
- package/build/esm/types/types/team/team.d.ts +0 -1
- package/build/esm/types/types/webhook/webhook.d.ts +0 -2
- package/build/index.d.ts +4 -378
- package/build/lib/http-client/__tests__/http-client.test.d.ts +1 -0
- package/build/lib/http-client/api.config.d.ts +2 -0
- package/build/lib/http-client/axios.d.ts +19 -0
- package/build/lib/http-client/http-client.d.ts +175 -0
- package/build/lib/http-client/index.d.ts +2 -0
- package/build/msw/browser.d.ts +1 -0
- package/build/msw/handlers/api-logs.d.ts +1 -0
- package/build/msw/handlers/index.d.ts +1 -0
- package/build/msw/handlers/insights.d.ts +1 -0
- package/build/msw/handlers/installments.d.ts +1 -0
- package/build/msw/handlers/organizations.d.ts +1 -0
- package/build/msw/handlers/payments.d.ts +1 -0
- package/build/msw/handlers/reconciliation-insights.d.ts +1 -0
- package/build/msw/handlers/webhooks.d.ts +1 -0
- package/build/msw/index.d.ts +1 -0
- package/build/msw/mocks/api-logs/api-logs-v3.mock.d.ts +2 -0
- package/build/msw/mocks/insights/conversion-rate/overview-fraud-3ds.mock.d.ts +14 -0
- package/build/msw/mocks/insights/conversion-rate/overview.mock.d.ts +34 -0
- package/build/msw/mocks/insights/overview/overview-metrics.mock.d.ts +9 -0
- package/build/msw/mocks/insights/overview/overview.mock.d.ts +139 -0
- package/build/msw/mocks/installments/installments.mock.d.ts +8 -0
- package/build/msw/mocks/payments/payments.mock.d.ts +92 -0
- package/build/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
- package/build/msw/mocks/reconciliation-insights/index.d.ts +22 -0
- package/build/msw/mocks/webhooks/webhook-timeline.mock.d.ts +2 -0
- package/build/mutations/S3Client/S3Client.mutation.d.ts +6 -0
- package/build/mutations/S3Client/index.d.ts +1 -0
- package/build/mutations/accounts/accounts.mutation.d.ts +57 -0
- package/build/mutations/accounts/accounts.mutation.test.d.ts +1 -0
- package/build/mutations/accounts/delete-mutation.d.ts +20 -0
- package/build/mutations/accounts/index.d.ts +2 -0
- package/build/mutations/accounts/types.d.ts +25 -0
- package/build/mutations/ai/ai.mutation.d.ts +28 -0
- package/build/mutations/ai/ai.mutation.test.d.ts +1 -0
- package/build/mutations/ai/index.d.ts +1 -0
- package/build/mutations/audit/audit-api.mutation.d.ts +13 -0
- package/build/mutations/audit/audit-api.mutation.test.d.ts +1 -0
- package/build/mutations/audit/audit.mutation.d.ts +6 -0
- package/build/mutations/audit/index.d.ts +2 -0
- package/build/mutations/audit/settings.mutation.test.d.ts +1 -0
- package/build/mutations/batch-refunds/batch-refunds.mutation.d.ts +32 -0
- package/build/mutations/batch-refunds/batch-refunds.mutation.test.d.ts +1 -0
- package/build/mutations/batch-refunds/index.d.ts +1 -0
- package/build/mutations/chartgpt/chartgpt.mutation.d.ts +70 -0
- package/build/mutations/chartgpt/chartgpt.mutation.test.d.ts +1 -0
- package/build/mutations/chartgpt/index.d.ts +1 -0
- package/build/mutations/checkouts/checkouts.mutation.d.ts +5 -0
- package/build/mutations/checkouts/checkouts.mutation.test.d.ts +1 -0
- package/build/mutations/checkouts/index.d.ts +1 -0
- package/build/mutations/connections/conections.mutation.test.d.ts +1 -0
- package/build/mutations/connections/connections.mutation.d.ts +40 -0
- package/build/mutations/connections/index.d.ts +1 -0
- package/build/mutations/developers/developers.mutation.d.ts +31 -0
- package/build/mutations/developers/developers.mutation.test.d.ts +1 -0
- package/build/mutations/developers/index.d.ts +2 -0
- package/build/mutations/developers/types.d.ts +5 -0
- package/build/mutations/fraud-screening/fraud-screening.mutation.d.ts +52 -0
- package/build/mutations/fraud-screening/index.d.ts +1 -0
- package/build/mutations/index.d.ts +34 -0
- package/build/mutations/insights/index.d.ts +1 -0
- package/build/mutations/insights/insights.mutation.d.ts +2 -0
- package/build/mutations/installments/index.d.ts +1 -0
- package/build/mutations/installments/installments.mutation.d.ts +17 -0
- package/build/mutations/installments/installments.mutation.test.d.ts +1 -0
- package/build/mutations/multi-factor-authentication/index.d.ts +1 -0
- package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.d.ts +12 -0
- package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.test.d.ts +1 -0
- package/build/mutations/notifications/index.d.ts +1 -0
- package/build/mutations/notifications/notifications.mutation.d.ts +6 -0
- package/build/mutations/organization-config/index.d.ts +1 -0
- package/build/mutations/organization-config/organization-config.mutation.d.ts +6 -0
- package/build/mutations/organization-settings/index.d.ts +1 -0
- package/build/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
- package/build/mutations/organizations/index.d.ts +1 -0
- package/build/mutations/organizations/organizations.mutation.d.ts +2 -0
- package/build/mutations/organizations/organizations.mutation.test.d.ts +1 -0
- package/build/mutations/payment-links/index.d.ts +1 -0
- package/build/mutations/payment-links/payment-links.mutation.d.ts +21 -0
- package/build/mutations/payment-links/payment-links.mutation.test.d.ts +1 -0
- package/build/mutations/payments/index.d.ts +1 -0
- package/build/mutations/payments/payments.mutation.d.ts +21 -0
- package/build/mutations/payments/payments.mutation.test.d.ts +1 -0
- package/build/mutations/reconciliations/index.d.ts +2 -0
- package/build/mutations/reconciliations/reconciliations-alerts.mutation.d.ts +5 -0
- package/build/mutations/reconciliations/reconciliations-alerts.mutation.test.d.ts +1 -0
- package/build/mutations/reconciliations/reconciliations.mutation.d.ts +4 -0
- package/build/mutations/reports/index.d.ts +1 -0
- package/build/mutations/reports/reports.mutation.d.ts +10 -0
- package/build/mutations/reports/reports.mutation.test.d.ts +1 -0
- package/build/mutations/routing-monitors/index.d.ts +1 -0
- package/build/mutations/routing-monitors/routing-monitors.mutation.d.ts +4 -0
- package/build/mutations/saml-config/index.d.ts +1 -0
- package/build/mutations/saml-config/saml-config.query.d.ts +4 -0
- package/build/mutations/saml-config/saml-config.query.test.d.ts +1 -0
- package/build/mutations/scheduled-reports/index.d.ts +1 -0
- package/build/mutations/scheduled-reports/scheduled-reports.mutation.d.ts +8 -0
- package/build/mutations/security/index.d.ts +1 -0
- package/build/mutations/security/security.mutation.d.ts +7 -0
- package/build/mutations/security/security.mutation.test.d.ts +1 -0
- package/build/mutations/settings/index.d.ts +1 -0
- package/build/mutations/settings/settings.mutation.d.ts +17 -0
- package/build/mutations/settings/settings.mutation.test.d.ts +1 -0
- package/build/mutations/smart-routing/index.d.ts +1 -0
- package/build/mutations/smart-routing/smart-routing.mutation.d.ts +90 -0
- package/build/mutations/smart-routing/smart-routing.mutation.test.d.ts +1 -0
- package/build/mutations/subscriptions/index.d.ts +1 -0
- package/build/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
- package/build/mutations/subscriptions/subscriptions.mutation.test.d.ts +1 -0
- package/build/mutations/team/index.d.ts +1 -0
- package/build/mutations/team/team.mutaion.test.d.ts +1 -0
- package/build/mutations/team/team.mutation.d.ts +12 -0
- package/build/mutations/template-reporting/index.d.ts +1 -0
- package/build/mutations/template-reporting/template-reporting.mutation.d.ts +29 -0
- package/build/mutations/template-reporting/template-reporting.mutation.test.d.ts +1 -0
- package/build/mutations/users/index.d.ts +1 -0
- package/build/mutations/users/users.mutation.d.ts +17 -0
- package/build/mutations/users/users.mutation.test.d.ts +1 -0
- package/build/mutations/velocity-rules/index.d.ts +1 -0
- package/build/mutations/velocity-rules/velocity-rules.mutation.d.ts +5 -0
- package/build/queries/accounts/accounts.query.d.ts +30 -0
- package/build/queries/accounts/accounts.query.test.d.ts +1 -0
- package/build/queries/accounts/index.d.ts +2 -0
- package/build/queries/accounts/types.d.ts +21 -0
- package/build/queries/api-logs/api-logs-v3.query.d.ts +9 -0
- package/build/queries/api-logs/api-logs-v3.query.test.d.ts +1 -0
- package/build/queries/api-logs/index.d.ts +1 -0
- package/build/queries/audit/audit.query.d.ts +28 -0
- package/build/queries/audit/audit.query.test.d.ts +1 -0
- package/build/queries/audit/index.d.ts +1 -0
- package/build/queries/batch-refunds/batch-refunds.query.d.ts +3 -0
- package/build/queries/batch-refunds/index.d.ts +1 -0
- package/build/queries/chartgpt/chartgpt.query.d.ts +65 -0
- package/build/queries/chartgpt/chartgpt.query.test.d.ts +1 -0
- package/build/queries/chartgpt/index.d.ts +1 -0
- package/build/queries/checkouts/checkouts.query.d.ts +12 -0
- package/build/queries/checkouts/checkouts.query.test.d.ts +1 -0
- package/build/queries/checkouts/index.d.ts +2 -0
- package/build/queries/checkouts/styling/styling.query.d.ts +11 -0
- package/build/queries/checkouts/styling/styling.query.test.d.ts +1 -0
- package/build/queries/cms/cms.query.d.ts +14 -0
- package/build/queries/cms/cms.query.test.d.ts +1 -0
- package/build/queries/cms/index.d.ts +1 -0
- package/build/queries/connections/connections.query.d.ts +3 -0
- package/build/queries/connections/connections.query.test.d.ts +1 -0
- package/build/queries/connections/index.d.ts +1 -0
- package/build/queries/data-report/data-report.query.d.ts +20 -0
- package/build/queries/data-report/data-report.query.test.d.ts +1 -0
- package/build/queries/data-report/fraud/fraud.query.d.ts +17 -0
- package/build/queries/data-report/fraud/fraud.query.test.d.ts +1 -0
- package/build/queries/data-report/index.d.ts +2 -0
- package/build/queries/developers/developers.query.d.ts +16 -0
- package/build/queries/developers/developers.query.test.d.ts +1 -0
- package/build/queries/developers/index.d.ts +1 -0
- package/build/queries/dialogs/dialogs.query.d.ts +2 -0
- package/build/queries/dialogs/dialogs.query.test.d.ts +1 -0
- package/build/queries/dialogs/index.d.ts +1 -0
- package/build/queries/feature-flags/feature-flags.test.d.ts +1 -0
- package/build/queries/feature-flags/index.d.ts +8 -0
- package/build/queries/firebase/firebase.query.d.ts +8 -0
- package/build/queries/firebase/firebase.query.test.d.ts +1 -0
- package/build/queries/firebase/index.d.ts +1 -0
- package/build/queries/fraud-screening/fraud-screening.query.d.ts +11 -0
- package/build/queries/fraud-screening/fraud-screening.query.test.d.ts +1 -0
- package/build/queries/fraud-screening/index.d.ts +1 -0
- package/build/queries/index.d.ts +39 -0
- package/build/queries/installments/index.d.ts +1 -0
- package/build/queries/installments/installments.query.d.ts +4 -0
- package/build/queries/installments/installments.query.test.d.ts +1 -0
- package/build/queries/mfa/index.d.ts +1 -0
- package/build/queries/mfa/organization-settings.query.d.ts +11 -0
- package/build/queries/network-tokens/index.d.ts +1 -0
- package/build/queries/network-tokens/network-tokens.query.d.ts +4 -0
- package/build/queries/notifications/index.d.ts +1 -0
- package/build/queries/notifications/notifications.query.d.ts +12 -0
- package/build/queries/notifications/notifications.query.test.d.ts +1 -0
- package/build/queries/onboarding/index.d.ts +1 -0
- package/build/queries/onboarding/onboarding.query.d.ts +7 -0
- package/build/queries/onboarding/onboarding.query.test.d.ts +1 -0
- package/build/queries/organization-config/index.d.ts +1 -0
- package/build/queries/organization-config/organization-config.query.d.ts +4 -0
- package/build/queries/organizations/index.d.ts +1 -0
- package/build/queries/organizations/organizations.query.d.ts +30 -0
- package/build/queries/organizations/organizations.query.test.d.ts +1 -0
- package/build/queries/payment-links/index.d.ts +1 -0
- package/build/queries/payment-links/payment-links.query.d.ts +7 -0
- package/build/queries/payment-links/payment-links.query.test.d.ts +1 -0
- package/build/queries/payments/index.d.ts +2 -0
- package/build/queries/payments/payments.query.d.ts +36 -0
- package/build/queries/payments/payments.query.test.d.ts +1 -0
- package/build/queries/payments/payouts-timeline.query.test.d.ts +1 -0
- package/build/queries/payments/payouts.query.d.ts +7 -0
- package/build/queries/payments/payouts.query.test.d.ts +1 -0
- package/build/queries/recipients/index.d.ts +1 -0
- package/build/queries/recipients/recipients.query.d.ts +8 -0
- package/build/queries/reconciliations/index.d.ts +7 -0
- package/build/queries/reconciliations/reconciliation-insights.query.d.ts +26 -0
- package/build/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-advancements.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-advancements.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-agenda.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-agenda.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-alerts.query.d.ts +8 -0
- package/build/queries/reconciliations/reconciliations-alerts.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-fees.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-fees.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-sales.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-sales.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations.query.d.ts +11 -0
- package/build/queries/reconciliations/reconciliations.query.test.d.ts +1 -0
- package/build/queries/reports/index.d.ts +1 -0
- package/build/queries/reports/reports.query.d.ts +13 -0
- package/build/queries/reports/reports.query.test.d.ts +1 -0
- package/build/queries/routing-monitors/index.d.ts +1 -0
- package/build/queries/routing-monitors/routing-monitors.query.d.ts +4 -0
- package/build/queries/saml-config/index.d.ts +1 -0
- package/build/queries/saml-config/saml-config.query.d.ts +4 -0
- package/build/queries/saml-config/saml-config.query.test.d.ts +1 -0
- package/build/queries/security/index.d.ts +1 -0
- package/build/queries/security/security.query.d.ts +8 -0
- package/build/queries/security/security.query.test.d.ts +1 -0
- package/build/queries/smart-recovery/index.d.ts +1 -0
- package/build/queries/smart-recovery/smart-recovery-overview.query.d.ts +9 -0
- package/build/queries/smart-recovery/smart-recovery-overview.query.test.d.ts +1 -0
- package/build/queries/smart-routing/index.d.ts +1 -0
- package/build/queries/smart-routing/smart-routing.query.d.ts +28 -0
- package/build/queries/smart-routing/smart-routing.query.test.d.ts +1 -0
- package/build/queries/subscriptions/index.d.ts +1 -0
- package/build/queries/subscriptions/subscriptions.query.d.ts +3 -0
- package/build/queries/subscriptions/subscriptions.query.test.d.ts +1 -0
- package/build/queries/team/index.d.ts +1 -0
- package/build/queries/team/team.query.d.ts +28 -0
- package/build/queries/team/team.query.test.d.ts +1 -0
- package/build/queries/template-reporting/index.d.ts +1 -0
- package/build/queries/template-reporting/template-reporting.query.d.ts +7 -0
- package/build/queries/template-reporting/template-reporting.query.test.d.ts +1 -0
- package/build/queries/translation/index.d.ts +1 -0
- package/build/queries/translation/translation.query.d.ts +5 -0
- package/build/queries/users/index.d.ts +1 -0
- package/build/queries/users/users.query.d.ts +25 -0
- package/build/queries/users/users.query.test.d.ts +1 -0
- package/build/queries/velocity-rules/index.d.ts +1 -0
- package/build/queries/velocity-rules/velocity-rules.query.d.ts +6 -0
- package/build/queries/webhooks/index.d.ts +1 -0
- package/build/queries/webhooks/webhook-timeline.query.d.ts +9 -0
- package/build/queries/webhooks/webhook-timeline.query.test.d.ts +1 -0
- package/build/set-public-path.d.ts +1 -0
- package/build/store/index.d.ts +3 -0
- package/build/types/accounts/accounts.d.ts +11 -0
- package/build/types/accounts/index.d.ts +1 -0
- package/build/types/ai/ai.d.ts +78 -0
- package/build/types/ai/index.d.ts +1 -0
- package/build/types/allowed-list/allowed-list.d.ts +9 -0
- package/build/types/allowed-list/index.d.ts +1 -0
- package/build/types/audit/audit.d.ts +387 -0
- package/build/types/audit/index.d.ts +1 -0
- package/build/types/batch-refunds/batch-refunds.d.ts +38 -0
- package/build/types/batch-refunds/index.d.ts +1 -0
- package/build/types/chartgpt/feedback.types.d.ts +34 -0
- package/build/types/chartgpt/index.d.ts +1 -0
- package/build/types/checkout/checkout.d.ts +289 -0
- package/build/types/checkout/index.d.ts +1 -0
- package/build/types/checkout/styling/styling.d.ts +176 -0
- package/build/types/cms/cms.d.ts +47 -0
- package/build/types/cms/index.d.ts +1 -0
- package/build/types/connection/connection.d.ts +81 -0
- package/build/types/connection/costs.d.ts +26 -0
- package/build/types/connection/index.d.ts +2 -0
- package/build/types/country/country.d.ts +12 -0
- package/build/types/country/index.d.ts +1 -0
- package/build/types/customized-api-keys/customized-api-keys.d.ts +30 -0
- package/build/types/customized-api-keys/index.d.ts +1 -0
- package/build/types/data-report/conversion-rate.types.d.ts +48 -0
- package/build/types/data-report/data-report.d.ts +66 -0
- package/build/types/data-report/fraud.types.d.ts +166 -0
- package/build/types/data-report/index.d.ts +3 -0
- package/build/types/developer/developer.d.ts +13 -0
- package/build/types/developer/index.d.ts +1 -0
- package/build/types/feature-flags/intex.d.ts +13 -0
- package/build/types/fraud-screening/fraud-screening.d.ts +109 -0
- package/build/types/fraud-screening/index.d.ts +1 -0
- package/build/types/index.d.ts +37 -0
- package/build/types/installments/index.d.ts +1 -0
- package/build/types/installments/installments.d.ts +125 -0
- package/build/types/mfa/index.d.ts +1 -0
- package/build/types/mfa/mfa.d.ts +6 -0
- package/build/types/notifications/index.d.ts +1 -0
- package/build/types/notifications/notifications.d.ts +39 -0
- package/build/types/onboarding/index.d.ts +1 -0
- package/build/types/onboarding/onboarding.d.ts +7 -0
- package/build/types/operation-transaction/index.d.ts +1 -0
- package/build/types/operation-transaction/operation-transaction.d.ts +28 -0
- package/build/types/organization/index.d.ts +1 -0
- package/build/types/organization/organization.d.ts +137 -0
- package/build/types/organization-config/index.d.ts +1 -0
- package/build/types/organization-config/organization-config.d.ts +34 -0
- package/build/types/organization-settings/index.d.ts +1 -0
- package/build/types/organization-settings/organization-settings.d.ts +27 -0
- package/build/types/payment/index.d.ts +1 -0
- package/build/types/payment/payment.d.ts +581 -0
- package/build/types/payment-links/index.d.ts +1 -0
- package/build/types/payment-links/payment-links.d.ts +16 -0
- package/build/types/payouts/index.d.ts +1 -0
- package/build/types/payouts/payouts.d.ts +125 -0
- package/build/types/recipients/index.d.ts +2 -0
- package/build/types/recipients/recipients.d.ts +223 -0
- package/build/types/reconciliation/index.d.ts +7 -0
- package/build/types/reconciliation/reconciliation-advancements.d.ts +40 -0
- package/build/types/reconciliation/reconciliation-agenda.d.ts +84 -0
- package/build/types/reconciliation/reconciliation-alerts.d.ts +38 -0
- package/build/types/reconciliation/reconciliation-fees.d.ts +45 -0
- package/build/types/reconciliation/reconciliation-insights.d.ts +188 -0
- package/build/types/reconciliation/reconciliation-sales.d.ts +56 -0
- package/build/types/reconciliation/reconciliation.d.ts +349 -0
- package/build/types/reports/index.d.ts +1 -0
- package/build/types/reports/reports.d.ts +154 -0
- package/build/types/routing-monitors/index.d.ts +1 -0
- package/build/types/routing-monitors/routing-monitors.d.ts +35 -0
- package/build/types/s3-client/index.d.ts +1 -0
- package/build/types/s3-client/s3-client.d.ts +19 -0
- package/build/types/saml-config/index.d.ts +1 -0
- package/build/types/saml-config/saml-config.d.ts +28 -0
- package/build/types/smart-recovery/index.d.ts +1 -0
- package/build/types/smart-recovery/smart-recovery-overview.types.d.ts +94 -0
- package/build/types/smart-routing/index.d.ts +1 -0
- package/build/types/smart-routing/smart-routing.d.ts +362 -0
- package/build/types/subscriptions/index.d.ts +1 -0
- package/build/types/subscriptions/subscriptions.d.ts +68 -0
- package/build/types/team/index.d.ts +1 -0
- package/build/types/team/team.d.ts +122 -0
- package/build/types/template-reporting/common.types.d.ts +65 -0
- package/build/types/template-reporting/index.d.ts +55 -0
- package/build/types/template-reporting/schedule.types.d.ts +72 -0
- package/build/types/template-reporting/template.types.d.ts +98 -0
- package/build/types/translation/index.d.ts +1 -0
- package/build/types/translation/translation.d.ts +8 -0
- package/build/types/user/index.d.ts +1 -0
- package/build/types/user/user.d.ts +208 -0
- package/build/types/velocity-rules/index.d.ts +1 -0
- package/build/types/velocity-rules/velocity-rules.d.ts +15 -0
- package/build/types/webhook/index.d.ts +1 -0
- package/build/types/webhook/webhook.d.ts +73 -0
- package/build/utils/enums.d.ts +162 -0
- package/build/utils/handler-error.d.ts +6 -0
- package/build/utils/index.d.ts +3 -0
- package/build/utils/test-utils.d.ts +4 -0
- package/build/utils/use-account-code.d.ts +1 -0
- package/build/utils/use-account-code.test.d.ts +1 -0
- package/build/utils/use-is-testing.d.ts +3 -0
- package/build/utils/use-is-testing.test.d.ts +1 -0
- package/build/utils/use-localstorage.d.ts +2 -0
- package/build/websockets/index.d.ts +1 -0
- package/build/websockets/use-chart-assistant-socket.d.ts +17 -0
- package/build/websockets/use-chart-assistant-socket.test.d.ts +1 -0
- package/build/yuno-dashboard-api-mfe.d.ts +9 -0
- package/package.json +1 -1
- package/build/cjs/types/mutations/concierge/concierge.mutation.d.ts +0 -8
- package/build/cjs/types/mutations/concierge/index.d.ts +0 -1
- package/build/cjs/types/mutations/settings/use-table-onboarding.d.ts +0 -6
- package/build/cjs/types/queries/audit/audit-v3.query.d.ts +0 -9
- package/build/cjs/types/queries/concierge/concierge.query.d.ts +0 -6
- package/build/cjs/types/queries/concierge/index.d.ts +0 -1
- package/build/cjs/types/types/concierge/concierge-alerts.d.ts +0 -42
- package/build/cjs/types/types/concierge/index.d.ts +0 -1
- package/build/esm/types/msw/handlers/recipients.d.ts +0 -1
- package/build/esm/types/msw/mocks/recipients/recipients.mock.d.ts +0 -775
- package/build/esm/types/mutations/concierge/concierge.mutation.d.ts +0 -8
- package/build/esm/types/mutations/concierge/index.d.ts +0 -1
- package/build/esm/types/mutations/recipients/index.d.ts +0 -1
- package/build/esm/types/mutations/recipients/recipients.mutation.d.ts +0 -11
- package/build/esm/types/mutations/settings/use-table-onboarding.d.ts +0 -6
- package/build/esm/types/queries/audit/audit-v3.query.d.ts +0 -9
- package/build/esm/types/queries/concierge/concierge.query.d.ts +0 -6
- package/build/esm/types/queries/concierge/index.d.ts +0 -1
- package/build/esm/types/types/concierge/concierge-alerts.d.ts +0 -42
- package/build/esm/types/types/concierge/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients-mutations.d.ts +0 -136
- package/build/main.31b800bdfc7bcf66.hot-update.js +0 -23
- package/build/main.31b800bdfc7bcf66.hot-update.js.map +0 -1
- package/build/main.31b800bdfc7bcf66.hot-update.json +0 -1
- package/build/main.31ef41183a0357fd.hot-update.js +0 -23
- package/build/main.31ef41183a0357fd.hot-update.js.map +0 -1
- package/build/main.31ef41183a0357fd.hot-update.json +0 -1
- package/build/main.5231ec959bfdd54a.hot-update.js +0 -823
- package/build/main.5231ec959bfdd54a.hot-update.js.map +0 -1
- package/build/main.5231ec959bfdd54a.hot-update.json +0 -1
- package/build/main.60642e2056d40cbc.hot-update.js +0 -23
- package/build/main.60642e2056d40cbc.hot-update.js.map +0 -1
- package/build/main.60642e2056d40cbc.hot-update.json +0 -1
- package/build/main.7734f96d14c3c07a.hot-update.js +0 -10
- package/build/main.7734f96d14c3c07a.hot-update.js.map +0 -1
- package/build/main.7734f96d14c3c07a.hot-update.json +0 -1
- package/build/main.9a70cae7efc29065.hot-update.js +0 -39
- package/build/main.9a70cae7efc29065.hot-update.js.map +0 -1
- package/build/main.9a70cae7efc29065.hot-update.json +0 -1
- package/build/main.9c87c39ff7873bca.hot-update.js +0 -10
- package/build/main.9c87c39ff7873bca.hot-update.js.map +0 -1
- package/build/main.9c87c39ff7873bca.hot-update.json +0 -1
- package/build/main.a0a0faaf03061b21.hot-update.js +0 -23
- package/build/main.a0a0faaf03061b21.hot-update.js.map +0 -1
- package/build/main.a0a0faaf03061b21.hot-update.json +0 -1
- package/build/main.d62d5a57d5bc6614.hot-update.js +0 -4236
- package/build/main.d62d5a57d5bc6614.hot-update.js.map +0 -1
- package/build/main.d62d5a57d5bc6614.hot-update.json +0 -1
- package/build/main.ecc2159bd4dc7d54.hot-update.js +0 -23
- package/build/main.ecc2159bd4dc7d54.hot-update.js.map +0 -1
- package/build/main.ecc2159bd4dc7d54.hot-update.json +0 -1
- package/build/yuno-dashboard-api-mfe.js +0 -57105
- package/build/yuno-dashboard-api-mfe.js.map +0 -1
- /package/build/{esm/types/set-public-path.d.ts → api/api.test.d.ts} +0 -0
- /package/build/{cjs/types/set-public-path.d.ts → api-provider.test.d.ts} +0 -0
- /package/build/{cjs/types/msw → msw}/handlers/recipients.d.ts +0 -0
- /package/build/{cjs/types/msw → msw}/mocks/recipients/recipients.mock.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/recipients/index.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/recipients/recipients.mutation.d.ts +0 -0
- /package/build/{cjs/types/types → types}/recipients/recipients-mutations.d.ts +0 -0
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { Axios } from './axios';
|
|
2
|
+
import { AxiosRequestConfig, AxiosResponse, AxiosError, CancelTokenSource } from 'axios';
|
|
3
|
+
/**
|
|
4
|
+
* Serializes parameters for URL query string with proper encoding
|
|
5
|
+
* and handling of arrays without duplication
|
|
6
|
+
* @param params - Object with parameters to serialize
|
|
7
|
+
* @returns URL encoded query string
|
|
8
|
+
*/
|
|
9
|
+
export declare const serializeParams: (params: Record<string, any>) => string;
|
|
10
|
+
/**
|
|
11
|
+
* @class Api Class is a fancy es6 wrapper class for axios.
|
|
12
|
+
*
|
|
13
|
+
* @param {import("axios").AxiosRequestConfig} config - axios Request Config.
|
|
14
|
+
* @link [AxiosRequestConfig](https://github.com/axios/axios#request-config)
|
|
15
|
+
*/
|
|
16
|
+
export declare class HttpClient extends Axios {
|
|
17
|
+
private token;
|
|
18
|
+
private cancelToken;
|
|
19
|
+
/**
|
|
20
|
+
* Creates an instance of api.
|
|
21
|
+
* @param {import("axios").AxiosRequestConfig} conf
|
|
22
|
+
*/
|
|
23
|
+
constructor(conf: AxiosRequestConfig);
|
|
24
|
+
/**
|
|
25
|
+
* Gets Token.
|
|
26
|
+
*
|
|
27
|
+
* @returns {string} token.
|
|
28
|
+
* @memberof Api
|
|
29
|
+
*/
|
|
30
|
+
getToken(): string;
|
|
31
|
+
/**
|
|
32
|
+
* Sets Token.
|
|
33
|
+
*
|
|
34
|
+
* @param {string} token - token.
|
|
35
|
+
* @memberof Api
|
|
36
|
+
*/
|
|
37
|
+
setToken(token: string): void;
|
|
38
|
+
/**
|
|
39
|
+
* Get Uri
|
|
40
|
+
*
|
|
41
|
+
* @param {import("axios").AxiosRequestConfig} [config]
|
|
42
|
+
* @returns {string}
|
|
43
|
+
* @memberof Api
|
|
44
|
+
*/
|
|
45
|
+
getUri(config?: AxiosRequestConfig): string;
|
|
46
|
+
getCancelTokenSource(): CancelTokenSource;
|
|
47
|
+
/**
|
|
48
|
+
* Generic request.
|
|
49
|
+
*
|
|
50
|
+
* @access public
|
|
51
|
+
* @template T - `TYPE`: expected object.
|
|
52
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
53
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
54
|
+
* @returns {Promise<R>} - HTTP axios response payload.
|
|
55
|
+
* @memberof Api
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* api.request({
|
|
59
|
+
* method: "GET|POST|DELETE|PUT|PATCH"
|
|
60
|
+
* baseUrl: "http://www.domain.com",
|
|
61
|
+
* url: "/api/v1/users",
|
|
62
|
+
* headers: {
|
|
63
|
+
* "Content-Type": "application/json"
|
|
64
|
+
* }
|
|
65
|
+
* }).then((response: AxiosResponse<User>) => response.data)
|
|
66
|
+
*
|
|
67
|
+
*/
|
|
68
|
+
request<T, R = AxiosResponse<T>>(config: AxiosRequestConfig): Promise<R>;
|
|
69
|
+
/**
|
|
70
|
+
* HTTP GET method, used to fetch data `statusCode`: 200.
|
|
71
|
+
*
|
|
72
|
+
* @access public
|
|
73
|
+
* @template T - `TYPE`: expected object.
|
|
74
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
75
|
+
* @param {string} url - endpoint you want to reach.
|
|
76
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
77
|
+
* @returns {Promise<R>} HTTP `axios` response payload.
|
|
78
|
+
* @memberof Api
|
|
79
|
+
*/
|
|
80
|
+
get<T, R = AxiosResponse<T>>(url: string, config?: AxiosRequestConfig): Promise<R>;
|
|
81
|
+
/**
|
|
82
|
+
* HTTP OPTIONS method.
|
|
83
|
+
*
|
|
84
|
+
* @access public
|
|
85
|
+
* @template T - `TYPE`: expected object.
|
|
86
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
87
|
+
* @param {string} url - endpoint you want to reach.
|
|
88
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
89
|
+
* @returns {Promise<R>} HTTP `axios` response payload.
|
|
90
|
+
* @memberof Api
|
|
91
|
+
*/
|
|
92
|
+
options<T, R = AxiosResponse<T>>(url: string, config?: AxiosRequestConfig): Promise<R>;
|
|
93
|
+
/**
|
|
94
|
+
* HTTP DELETE method, `statusCode`: 204 No Content.
|
|
95
|
+
*
|
|
96
|
+
* @access public
|
|
97
|
+
* @template T - `TYPE`: expected object.
|
|
98
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
99
|
+
* @param {string} url - endpoint you want to reach.
|
|
100
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
101
|
+
* @returns {Promise<R>} - HTTP [axios] response payload.
|
|
102
|
+
* @memberof Api
|
|
103
|
+
*/
|
|
104
|
+
delete<T, R = AxiosResponse<T>>(url: string, config?: AxiosRequestConfig): Promise<R>;
|
|
105
|
+
/**
|
|
106
|
+
* HTTP HEAD method.
|
|
107
|
+
*
|
|
108
|
+
* @access public
|
|
109
|
+
* @template T - `TYPE`: expected object.
|
|
110
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
111
|
+
* @param {string} url - endpoint you want to reach.
|
|
112
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
113
|
+
* @returns {Promise<R>} - HTTP [axios] response payload.
|
|
114
|
+
* @memberof Api
|
|
115
|
+
*/
|
|
116
|
+
head<T, R = AxiosResponse<T>>(url: string, config?: AxiosRequestConfig): Promise<R>;
|
|
117
|
+
/**
|
|
118
|
+
* HTTP POST method `statusCode`: 201 Created.
|
|
119
|
+
*
|
|
120
|
+
* @access public
|
|
121
|
+
* @template T - `TYPE`: expected object.
|
|
122
|
+
* @template B - `BODY`: body request object.
|
|
123
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
124
|
+
* @param {string} url - endpoint you want to reach.
|
|
125
|
+
* @param {B} data - payload to be send as the `request body`,
|
|
126
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
127
|
+
* @returns {Promise<R>} - HTTP [axios] response payload.
|
|
128
|
+
* @memberof Api
|
|
129
|
+
*/
|
|
130
|
+
post<T, B, R = AxiosResponse<T>>(url: string, data?: B, config?: AxiosRequestConfig): Promise<R>;
|
|
131
|
+
/**
|
|
132
|
+
* HTTP PUT method.
|
|
133
|
+
*
|
|
134
|
+
* @access public
|
|
135
|
+
* @template T - `TYPE`: expected object.
|
|
136
|
+
* @template B - `BODY`: body request object.
|
|
137
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
138
|
+
* @param {string} url - endpoint you want to reach.
|
|
139
|
+
* @param {B} data - payload to be send as the `request body`,
|
|
140
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
141
|
+
* @returns {Promise<R>} - HTTP [axios] response payload.
|
|
142
|
+
* @memberof Api
|
|
143
|
+
*/
|
|
144
|
+
put<T, B, R = AxiosResponse<T>>(url: string, data?: B, config?: AxiosRequestConfig): Promise<R>;
|
|
145
|
+
/**
|
|
146
|
+
* HTTP PATCH method.
|
|
147
|
+
*
|
|
148
|
+
* @access public
|
|
149
|
+
* @template T - `TYPE`: expected object.
|
|
150
|
+
* @template B - `BODY`: body request object.
|
|
151
|
+
* @template R - `RESPONSE`: expected object inside a axios response format.
|
|
152
|
+
* @param {string} url - endpoint you want to reach.
|
|
153
|
+
* @param {B} data - payload to be send as the `request body`,
|
|
154
|
+
* @param {import("axios").AxiosRequestConfig} [config] - axios request configuration.
|
|
155
|
+
* @returns {Promise<R>} - HTTP [axios] response payload.
|
|
156
|
+
* @memberof Api
|
|
157
|
+
*/
|
|
158
|
+
patch<T, B, R = AxiosResponse<T>>(url: string, data?: B, config?: AxiosRequestConfig): Promise<R>;
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @template T - type.
|
|
162
|
+
* @param {import("axios").AxiosResponse<T>} response - axios response.
|
|
163
|
+
* @returns {T} - expected object.
|
|
164
|
+
* @memberof Api
|
|
165
|
+
*/
|
|
166
|
+
success<T>(response: AxiosResponse<T>): T;
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
*
|
|
170
|
+
* @template T type.
|
|
171
|
+
* @param {AxiosError<T>} error
|
|
172
|
+
* @memberof Api
|
|
173
|
+
*/
|
|
174
|
+
error<T>(error: AxiosError<T>): void;
|
|
175
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const worker: import("msw/browser").SetupWorker;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const apiLogsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const handlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const insightsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const installmentsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const organizationsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const paymentsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const reconciliationInsightsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const webhooksHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function enableMocking(): Promise<void>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const conversionRateOverviewFraud3dsMock: {
|
|
2
|
+
fraud: {
|
|
3
|
+
conversion_rate_fraud_transactions: number;
|
|
4
|
+
conversion_fraud_transactions_periodicity: null;
|
|
5
|
+
};
|
|
6
|
+
'3ds': {
|
|
7
|
+
conversion_rate_card_transactions3ds: number;
|
|
8
|
+
conversion_rate_card_transactions3ds_periodicity: {
|
|
9
|
+
'2025-05-05': number;
|
|
10
|
+
'2025-05-06': number;
|
|
11
|
+
'2025-05-07': number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const conversionRateOverviewMock: {
|
|
2
|
+
total: {
|
|
3
|
+
total_conversion_rate: number;
|
|
4
|
+
insight_payment_total_conversion_rate_periodicity: {
|
|
5
|
+
'2025-05-05': number;
|
|
6
|
+
'2025-05-06': number;
|
|
7
|
+
'2025-05-07': number;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
cards: {
|
|
11
|
+
cards_approvals_rate: number;
|
|
12
|
+
insight_payment_total_conversion_rate_periodicity_for_card: {
|
|
13
|
+
'2025-05-05': number;
|
|
14
|
+
'2025-05-06': number;
|
|
15
|
+
'2025-05-07': number;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
apms: {
|
|
19
|
+
apms_conversion_rate: number;
|
|
20
|
+
insight_payment_total_conversion_rate_periodicity_for_apm: {
|
|
21
|
+
'2025-05-05': number;
|
|
22
|
+
'2025-05-06': number;
|
|
23
|
+
'2025-05-07': number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
cards_without_insufficient_funds: {
|
|
27
|
+
without_insufficient_funds_conversion_rate: number;
|
|
28
|
+
insight_conversion_rate_without_insufficient_funds: {
|
|
29
|
+
'2025-05-05': number;
|
|
30
|
+
'2025-05-06': number;
|
|
31
|
+
'2025-05-07': number;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare enum OverviewMetricType {
|
|
2
|
+
GENERAL = "volume-and-total-payments",
|
|
3
|
+
LATENCY = "provider-latency",
|
|
4
|
+
STATUS = "status",
|
|
5
|
+
SUBSCRIPTIONS = "subscriptions"
|
|
6
|
+
}
|
|
7
|
+
export declare const oldOverviewMetricsHandler: import("msw/lib/core/handlers/HttpHandler").HttpHandler;
|
|
8
|
+
export declare const newOverviewMetricsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
9
|
+
export declare const overviewMetricsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
export declare const OVERVIEW_MOCK: {
|
|
2
|
+
sales_volume_metric_group: {
|
|
3
|
+
distribution: {
|
|
4
|
+
key: string;
|
|
5
|
+
total: number;
|
|
6
|
+
}[];
|
|
7
|
+
total: number;
|
|
8
|
+
average: number;
|
|
9
|
+
};
|
|
10
|
+
total_payments: {
|
|
11
|
+
distribution: {
|
|
12
|
+
key: string;
|
|
13
|
+
total: number;
|
|
14
|
+
}[];
|
|
15
|
+
total: number;
|
|
16
|
+
average: number;
|
|
17
|
+
};
|
|
18
|
+
average_ticket: {
|
|
19
|
+
distribution: {
|
|
20
|
+
key: string;
|
|
21
|
+
total: number;
|
|
22
|
+
min_ticket: number;
|
|
23
|
+
max_ticket: number;
|
|
24
|
+
}[];
|
|
25
|
+
total: number;
|
|
26
|
+
min_ticket: number;
|
|
27
|
+
max_ticket: number;
|
|
28
|
+
};
|
|
29
|
+
conversion_rate: null;
|
|
30
|
+
total_payments_and_conversion_rate: {
|
|
31
|
+
payments: {
|
|
32
|
+
distribution: {
|
|
33
|
+
key: string;
|
|
34
|
+
total: number;
|
|
35
|
+
}[];
|
|
36
|
+
total: number;
|
|
37
|
+
};
|
|
38
|
+
conversion_rate: {
|
|
39
|
+
distribution: {
|
|
40
|
+
key: string;
|
|
41
|
+
total: number;
|
|
42
|
+
}[];
|
|
43
|
+
total: number;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
quantity_status_distribution: ({
|
|
47
|
+
SUCCEEDED: {
|
|
48
|
+
distribution: {
|
|
49
|
+
key: string;
|
|
50
|
+
total: number;
|
|
51
|
+
}[];
|
|
52
|
+
total: number;
|
|
53
|
+
};
|
|
54
|
+
DECLINED?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
DECLINED: {
|
|
57
|
+
distribution: {
|
|
58
|
+
key: string;
|
|
59
|
+
total: number;
|
|
60
|
+
}[];
|
|
61
|
+
total: number;
|
|
62
|
+
};
|
|
63
|
+
SUCCEEDED?: undefined;
|
|
64
|
+
})[];
|
|
65
|
+
volume_successful_payments: number;
|
|
66
|
+
volume_successful_payments_by_periodicity: {
|
|
67
|
+
key: string;
|
|
68
|
+
total: number;
|
|
69
|
+
}[];
|
|
70
|
+
quantity_successful_payments: number;
|
|
71
|
+
quantity_successful_payments_by_periodicity: {
|
|
72
|
+
key: string;
|
|
73
|
+
total: number;
|
|
74
|
+
}[];
|
|
75
|
+
average_provider_latency: ({
|
|
76
|
+
PAYMENTEZ: {
|
|
77
|
+
distribution: {
|
|
78
|
+
key: string;
|
|
79
|
+
total: number;
|
|
80
|
+
}[];
|
|
81
|
+
total: number;
|
|
82
|
+
};
|
|
83
|
+
NUVEI?: undefined;
|
|
84
|
+
WOMPI?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
NUVEI: {
|
|
87
|
+
distribution: {
|
|
88
|
+
key: string;
|
|
89
|
+
total: number;
|
|
90
|
+
}[];
|
|
91
|
+
total: number;
|
|
92
|
+
};
|
|
93
|
+
PAYMENTEZ?: undefined;
|
|
94
|
+
WOMPI?: undefined;
|
|
95
|
+
} | {
|
|
96
|
+
WOMPI: {
|
|
97
|
+
distribution: {
|
|
98
|
+
key: string;
|
|
99
|
+
total: number;
|
|
100
|
+
}[];
|
|
101
|
+
total: number;
|
|
102
|
+
};
|
|
103
|
+
PAYMENTEZ?: undefined;
|
|
104
|
+
NUVEI?: undefined;
|
|
105
|
+
})[];
|
|
106
|
+
total_subscriptions_and_conversion_rate: {
|
|
107
|
+
subscriptions: {
|
|
108
|
+
distribution: null;
|
|
109
|
+
total: number;
|
|
110
|
+
};
|
|
111
|
+
subscriptions_succeeded: {
|
|
112
|
+
distribution: null;
|
|
113
|
+
total: number;
|
|
114
|
+
};
|
|
115
|
+
conversion_rate: {
|
|
116
|
+
distribution: null;
|
|
117
|
+
total: number;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
total_status_distribution: ({
|
|
121
|
+
SUCCEEDED: {
|
|
122
|
+
distribution: {
|
|
123
|
+
key: string;
|
|
124
|
+
total: number;
|
|
125
|
+
}[];
|
|
126
|
+
total: number;
|
|
127
|
+
};
|
|
128
|
+
DECLINED?: undefined;
|
|
129
|
+
} | {
|
|
130
|
+
DECLINED: {
|
|
131
|
+
distribution: {
|
|
132
|
+
key: string;
|
|
133
|
+
total: number;
|
|
134
|
+
}[];
|
|
135
|
+
total: number;
|
|
136
|
+
};
|
|
137
|
+
SUCCEEDED?: undefined;
|
|
138
|
+
})[];
|
|
139
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Installments } from '../../../types';
|
|
2
|
+
export declare const installmentsPlansMock: Installments.GetInstallmentsPlansResponse;
|
|
3
|
+
export declare const createInstallmentsPlanMock: Installments.CreateInstallmentsPlanResponse;
|
|
4
|
+
export declare const updateInstallmentsPlanMock: Installments.UpdateInstallmentsPlanResponse;
|
|
5
|
+
export declare const deleteInstallmentsPlanMock: Installments.DeleteInstallmentsPlanResponse;
|
|
6
|
+
export declare const searchInstallmentsPlansMock: Installments.SearchInstallmentsPlansResponse;
|
|
7
|
+
export declare const bulkCreateInstallmentsPlansMock: Installments.BulkCreateInstallmentsPlansResponse;
|
|
8
|
+
export declare const bulkDeleteInstallmentsPlansMock: Installments.BulkDeleteInstallmentsPlansResponse;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
export declare const paymentsMock: {
|
|
2
|
+
content: ({
|
|
3
|
+
test_credential: boolean;
|
|
4
|
+
organization_code: string;
|
|
5
|
+
account_code: string;
|
|
6
|
+
id: number;
|
|
7
|
+
code: string;
|
|
8
|
+
order_id: string;
|
|
9
|
+
status: string;
|
|
10
|
+
sub_status: string;
|
|
11
|
+
amount_value: number;
|
|
12
|
+
currency_code: string;
|
|
13
|
+
created_at: string;
|
|
14
|
+
updated_at: string;
|
|
15
|
+
captured: number;
|
|
16
|
+
refunded: number;
|
|
17
|
+
country: string;
|
|
18
|
+
customer_code: string;
|
|
19
|
+
description: string;
|
|
20
|
+
subscription_id: string;
|
|
21
|
+
condition_set_id: number;
|
|
22
|
+
payment_type: string;
|
|
23
|
+
transaction_payment: {
|
|
24
|
+
code: string;
|
|
25
|
+
provider_id: string;
|
|
26
|
+
payment_method_type: string;
|
|
27
|
+
parent_payment_method_type: null;
|
|
28
|
+
}[];
|
|
29
|
+
customer_payer: {
|
|
30
|
+
customer_payer_id: number;
|
|
31
|
+
payment_id: number;
|
|
32
|
+
document_number: string;
|
|
33
|
+
email: string;
|
|
34
|
+
}[];
|
|
35
|
+
card_transaction: {
|
|
36
|
+
card_transaction_id: number;
|
|
37
|
+
transaction_id: number;
|
|
38
|
+
three_ds_electronic_commerce_indicator: null;
|
|
39
|
+
three_ds_transaction_id: null;
|
|
40
|
+
bin: string;
|
|
41
|
+
brand: string;
|
|
42
|
+
installments: number;
|
|
43
|
+
network_token: null;
|
|
44
|
+
}[];
|
|
45
|
+
bnpl_transaction: never[];
|
|
46
|
+
} | {
|
|
47
|
+
organization_code: string;
|
|
48
|
+
account_code: string;
|
|
49
|
+
id: number;
|
|
50
|
+
code: string;
|
|
51
|
+
order_id: string;
|
|
52
|
+
status: string;
|
|
53
|
+
sub_status: string;
|
|
54
|
+
amount_value: number;
|
|
55
|
+
currency_code: string;
|
|
56
|
+
created_at: string;
|
|
57
|
+
updated_at: string;
|
|
58
|
+
captured: number;
|
|
59
|
+
refunded: number;
|
|
60
|
+
country: string;
|
|
61
|
+
customer_code: string;
|
|
62
|
+
description: string;
|
|
63
|
+
subscription_id: string;
|
|
64
|
+
condition_set_id: number;
|
|
65
|
+
payment_type: string;
|
|
66
|
+
transaction_payment: {
|
|
67
|
+
code: string;
|
|
68
|
+
provider_id: string;
|
|
69
|
+
payment_method_type: string;
|
|
70
|
+
parent_payment_method_type: null;
|
|
71
|
+
}[];
|
|
72
|
+
customer_payer: {
|
|
73
|
+
customer_payer_id: number;
|
|
74
|
+
payment_id: number;
|
|
75
|
+
document_number: string;
|
|
76
|
+
email: string;
|
|
77
|
+
}[];
|
|
78
|
+
card_transaction: {
|
|
79
|
+
card_transaction_id: number;
|
|
80
|
+
transaction_id: number;
|
|
81
|
+
three_ds_electronic_commerce_indicator: null;
|
|
82
|
+
three_ds_transaction_id: null;
|
|
83
|
+
bin: string;
|
|
84
|
+
brand: string;
|
|
85
|
+
installments: number;
|
|
86
|
+
network_token: null;
|
|
87
|
+
}[];
|
|
88
|
+
bnpl_transaction: never[];
|
|
89
|
+
test_credential?: undefined;
|
|
90
|
+
})[];
|
|
91
|
+
last_page: boolean;
|
|
92
|
+
};
|