@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 @@
|
|
|
1
|
+
export * from './country';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export declare namespace CustomizedApiKeys {
|
|
2
|
+
interface ICustomizedApiKeys {
|
|
3
|
+
name: string;
|
|
4
|
+
code: string;
|
|
5
|
+
credential: string;
|
|
6
|
+
user_code: string;
|
|
7
|
+
details: {
|
|
8
|
+
accounts: [
|
|
9
|
+
{
|
|
10
|
+
name: string;
|
|
11
|
+
code_live: string;
|
|
12
|
+
code_testing: string;
|
|
13
|
+
}
|
|
14
|
+
];
|
|
15
|
+
assigned_users: [
|
|
16
|
+
{
|
|
17
|
+
code: string;
|
|
18
|
+
name: string;
|
|
19
|
+
}
|
|
20
|
+
];
|
|
21
|
+
};
|
|
22
|
+
apply_to_all_accounts: false;
|
|
23
|
+
created_at: string;
|
|
24
|
+
last_used: null;
|
|
25
|
+
}
|
|
26
|
+
interface ICustomizedApiKeysProducts {
|
|
27
|
+
key: string;
|
|
28
|
+
description: string;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './customized-api-keys';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export interface ConversionRateParams {
|
|
2
|
+
start_date: string;
|
|
3
|
+
end_date: string;
|
|
4
|
+
periodicity: string;
|
|
5
|
+
provider_id: string;
|
|
6
|
+
payment_method_type: string;
|
|
7
|
+
currency_code: string;
|
|
8
|
+
timezone: string;
|
|
9
|
+
source: string;
|
|
10
|
+
new_version: boolean;
|
|
11
|
+
payment_statuses: string;
|
|
12
|
+
card_brand: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ConversionRateBody {
|
|
15
|
+
account_codes: string[];
|
|
16
|
+
connection_name: string[];
|
|
17
|
+
}
|
|
18
|
+
export interface ConversionRatePeriodicityRecord {
|
|
19
|
+
[key: string]: number;
|
|
20
|
+
}
|
|
21
|
+
export interface ConversionRateOverview {
|
|
22
|
+
total: {
|
|
23
|
+
total_conversion_rate: number;
|
|
24
|
+
insight_payment_total_conversion_rate_periodicity: ConversionRatePeriodicityRecord;
|
|
25
|
+
};
|
|
26
|
+
cards: {
|
|
27
|
+
cards_approvals_rate: number;
|
|
28
|
+
insight_payment_total_conversion_rate_periodicity_for_card: ConversionRatePeriodicityRecord;
|
|
29
|
+
};
|
|
30
|
+
apms: {
|
|
31
|
+
apms_conversion_rate: number;
|
|
32
|
+
insight_payment_total_conversion_rate_periodicity_for_apm: ConversionRatePeriodicityRecord;
|
|
33
|
+
};
|
|
34
|
+
cards_without_insufficient_funds: {
|
|
35
|
+
without_insufficient_funds_conversion_rate: number;
|
|
36
|
+
insight_conversion_rate_without_insufficient_funds: ConversionRatePeriodicityRecord;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
export interface ConversionRateOverviewFraud3ds {
|
|
40
|
+
fraud: {
|
|
41
|
+
conversion_rate_fraud_transactions: number;
|
|
42
|
+
conversion_fraud_transactions_periodicity: ConversionRatePeriodicityRecord | null;
|
|
43
|
+
};
|
|
44
|
+
'3ds': {
|
|
45
|
+
conversion_rate_card_transactions3ds: number;
|
|
46
|
+
conversion_rate_card_transactions3ds_periodicity: ConversionRatePeriodicityRecord;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export declare namespace DataReport {
|
|
2
|
+
export enum InsightsVolumeMetricsV2Path {
|
|
3
|
+
REFUNDS_AND_CHARGEBACKS = "refunds-and-chargebacks",
|
|
4
|
+
APPROVED_PAYMENTS = "approved-payments",
|
|
5
|
+
PAYMENT_METHODS = "payment-methods",
|
|
6
|
+
PROVIDERS = "providers",
|
|
7
|
+
COUNTRIES = "countries",
|
|
8
|
+
UNIQUE_CUSTOMER_PAYMENTS = "unique-customer-payments",
|
|
9
|
+
TOTAL_PAYMENTS = "total-payments"
|
|
10
|
+
}
|
|
11
|
+
export interface SmartRouting {
|
|
12
|
+
version: string;
|
|
13
|
+
code_integration: string;
|
|
14
|
+
Conditions: {
|
|
15
|
+
minutes: number;
|
|
16
|
+
approvalRate: {
|
|
17
|
+
SUCCEEDED: number;
|
|
18
|
+
REJECTED: number;
|
|
19
|
+
ERROR: number;
|
|
20
|
+
};
|
|
21
|
+
cost: number;
|
|
22
|
+
}[];
|
|
23
|
+
}
|
|
24
|
+
export enum OverviewMetricType {
|
|
25
|
+
GENERAL = "volume-and-total-payments",
|
|
26
|
+
LATENCY = "provider-latency",
|
|
27
|
+
STATUS = "status",
|
|
28
|
+
SUBSCRIPTIONS = "subscriptions"
|
|
29
|
+
}
|
|
30
|
+
interface MetadataField {
|
|
31
|
+
field: string;
|
|
32
|
+
formatType: 'TEXT' | 'NUMBER';
|
|
33
|
+
type: string;
|
|
34
|
+
values: string | string[];
|
|
35
|
+
}
|
|
36
|
+
interface MetadataFieldFilter {
|
|
37
|
+
key: string;
|
|
38
|
+
conditional: string;
|
|
39
|
+
values: string | string[];
|
|
40
|
+
}
|
|
41
|
+
export interface InsightMetricParams {
|
|
42
|
+
[a: string]: string | boolean | number | string[] | MetadataField[] | undefined;
|
|
43
|
+
account_code?: string;
|
|
44
|
+
connection_name?: string;
|
|
45
|
+
metadata?: MetadataField[];
|
|
46
|
+
}
|
|
47
|
+
export interface InsightMetricBody {
|
|
48
|
+
account_codes?: string[];
|
|
49
|
+
account_code?: string[];
|
|
50
|
+
connection_name?: string[];
|
|
51
|
+
metadata_filters?: MetadataFieldFilter[];
|
|
52
|
+
metadata?: MetadataField[];
|
|
53
|
+
}
|
|
54
|
+
export interface InsightExportParams {
|
|
55
|
+
type?: string;
|
|
56
|
+
code?: string;
|
|
57
|
+
}
|
|
58
|
+
export interface InsightsHomeMetrics {
|
|
59
|
+
account_codes?: string[];
|
|
60
|
+
organization_code?: string;
|
|
61
|
+
currency_code?: string;
|
|
62
|
+
timezone?: string;
|
|
63
|
+
isLiveMode?: boolean;
|
|
64
|
+
}
|
|
65
|
+
export {};
|
|
66
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
export interface InsightsFraudParams {
|
|
2
|
+
start_date: string;
|
|
3
|
+
end_date: string;
|
|
4
|
+
periodicity: string;
|
|
5
|
+
provider_id: string;
|
|
6
|
+
payment_method_type: string;
|
|
7
|
+
currency_code: string;
|
|
8
|
+
timezone: string;
|
|
9
|
+
source: string;
|
|
10
|
+
new_version: boolean;
|
|
11
|
+
payment_statuses: string;
|
|
12
|
+
card_brand: string;
|
|
13
|
+
}
|
|
14
|
+
export interface InsightsFraudBody {
|
|
15
|
+
account_codes: string[];
|
|
16
|
+
connection_name: string[];
|
|
17
|
+
}
|
|
18
|
+
export interface PeriodicityRecord {
|
|
19
|
+
[key: string]: number;
|
|
20
|
+
}
|
|
21
|
+
export interface TotalTimeline {
|
|
22
|
+
total: number;
|
|
23
|
+
timeline: PeriodicityRecord;
|
|
24
|
+
}
|
|
25
|
+
interface BaseTotalsItem {
|
|
26
|
+
total_rate: number;
|
|
27
|
+
total_amount: number;
|
|
28
|
+
total_count_tx: number;
|
|
29
|
+
}
|
|
30
|
+
interface BaseTimelineItem {
|
|
31
|
+
periodicity: string;
|
|
32
|
+
rate: number;
|
|
33
|
+
}
|
|
34
|
+
interface BaseTransactionTimelineItem {
|
|
35
|
+
periodicity: string;
|
|
36
|
+
count_tx: number;
|
|
37
|
+
conversion_rate: number;
|
|
38
|
+
amount: number;
|
|
39
|
+
}
|
|
40
|
+
export interface FraudScreeningVolume {
|
|
41
|
+
total_conversion_rate: number;
|
|
42
|
+
insight_fraud_total_conversion_rate_periodicity: PeriodicityRecord;
|
|
43
|
+
}
|
|
44
|
+
export interface FraudScreeningCount {
|
|
45
|
+
total_count_tx: number;
|
|
46
|
+
insight_fraud_count_tx_periodicity: PeriodicityRecord;
|
|
47
|
+
}
|
|
48
|
+
export interface InsightsFraudScreeningResumeResponse {
|
|
49
|
+
total_volume: FraudScreeningVolume;
|
|
50
|
+
succeeded_volume: FraudScreeningVolume;
|
|
51
|
+
not_succeeded_volume: FraudScreeningVolume;
|
|
52
|
+
total_count_tx: FraudScreeningCount;
|
|
53
|
+
succeeded_count_tx: FraudScreeningCount;
|
|
54
|
+
not_succeeded_count_tx: FraudScreeningCount;
|
|
55
|
+
}
|
|
56
|
+
export interface InsightsFraudConversionRateResponse {
|
|
57
|
+
total_conversion_rate: number;
|
|
58
|
+
insight_fraud_total_conversion_rate_and_evolution: PeriodicityRecord;
|
|
59
|
+
}
|
|
60
|
+
export interface Fraud3dsVolume {
|
|
61
|
+
total_conversion_rate: number;
|
|
62
|
+
insight_three_ds_total_conversion_rate_periodicity: PeriodicityRecord;
|
|
63
|
+
}
|
|
64
|
+
export interface Fraud3dsCount {
|
|
65
|
+
total_count_tx: number;
|
|
66
|
+
insight_three_ds_count_tx_periodicity: PeriodicityRecord;
|
|
67
|
+
}
|
|
68
|
+
export interface Insights3dsResumeResponse {
|
|
69
|
+
total_volume: Fraud3dsVolume;
|
|
70
|
+
succeeded_volume: Fraud3dsVolume;
|
|
71
|
+
not_succeeded_volume: Fraud3dsVolume;
|
|
72
|
+
total_count_tx: Fraud3dsCount;
|
|
73
|
+
succeeded_count_tx: Fraud3dsCount;
|
|
74
|
+
not_succeeded_count_tx: Fraud3dsCount;
|
|
75
|
+
}
|
|
76
|
+
export interface Insights3dsConversionRate {
|
|
77
|
+
total_conversion_rate: number;
|
|
78
|
+
insight_fraud_total_conversion_rate_and_evolution: PeriodicityRecord;
|
|
79
|
+
}
|
|
80
|
+
export interface Insights3dsDeclineReasons {
|
|
81
|
+
totals: (BaseTotalsItem & {
|
|
82
|
+
decline_reason: string;
|
|
83
|
+
})[];
|
|
84
|
+
timeline: (BaseTimelineItem & {
|
|
85
|
+
decline_reason: string;
|
|
86
|
+
})[];
|
|
87
|
+
}
|
|
88
|
+
export interface Insights3dsFrictionlessVsChallenge {
|
|
89
|
+
frictionless: {
|
|
90
|
+
total_count_tx: number;
|
|
91
|
+
total_conversion_rate: number;
|
|
92
|
+
total_amount: number;
|
|
93
|
+
timeline: BaseTransactionTimelineItem[];
|
|
94
|
+
};
|
|
95
|
+
challenge: {
|
|
96
|
+
total_count_tx: number;
|
|
97
|
+
total_conversion_rate: number;
|
|
98
|
+
total_amount: number;
|
|
99
|
+
timeline: BaseTransactionTimelineItem[];
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
export interface ChargebacksVolume {
|
|
103
|
+
total_conversion_rate: number;
|
|
104
|
+
insight_chargebacks_total_conversion_rate_periodicity: PeriodicityRecord;
|
|
105
|
+
}
|
|
106
|
+
export interface ChargebacksCount {
|
|
107
|
+
total_count_tx: number;
|
|
108
|
+
insight_chargebacks_count_tx_periodicity: PeriodicityRecord;
|
|
109
|
+
}
|
|
110
|
+
export interface InsightsChargebacksResumeResponse {
|
|
111
|
+
total_volume: ChargebacksVolume;
|
|
112
|
+
succeeded_volume: ChargebacksVolume;
|
|
113
|
+
not_succeeded_volume: ChargebacksVolume;
|
|
114
|
+
total_count_tx: ChargebacksCount;
|
|
115
|
+
succeeded_count_tx: ChargebacksCount;
|
|
116
|
+
not_succeeded_count_tx: ChargebacksCount;
|
|
117
|
+
}
|
|
118
|
+
export interface InsightsChargebacksTotalRateAndEvolution {
|
|
119
|
+
total_chargeback_rate: number;
|
|
120
|
+
chargeback_rate_periodicity: PeriodicityRecord;
|
|
121
|
+
}
|
|
122
|
+
export interface InsightsChargebacksWinRate {
|
|
123
|
+
total_win_rate: number;
|
|
124
|
+
insight_cbk_win_rates: PeriodicityRecord;
|
|
125
|
+
}
|
|
126
|
+
export interface InsightsChargebacksDisputed {
|
|
127
|
+
total_disputed: number;
|
|
128
|
+
insight_cbk_disputed: PeriodicityRecord;
|
|
129
|
+
}
|
|
130
|
+
export interface InsightsChargebacksStatusDistribution {
|
|
131
|
+
totals: (BaseTotalsItem & {
|
|
132
|
+
status: string;
|
|
133
|
+
})[];
|
|
134
|
+
timeline: (BaseTimelineItem & {
|
|
135
|
+
status: string;
|
|
136
|
+
})[];
|
|
137
|
+
}
|
|
138
|
+
export interface InsightsChargebacksByProviderAndCardBrand {
|
|
139
|
+
totals: (BaseTotalsItem & {
|
|
140
|
+
provider_and_brand: string;
|
|
141
|
+
})[];
|
|
142
|
+
timeline: (BaseTimelineItem & {
|
|
143
|
+
provider_and_brand: string;
|
|
144
|
+
})[];
|
|
145
|
+
}
|
|
146
|
+
export interface InsightsChargebacksByReason {
|
|
147
|
+
totals: (BaseTotalsItem & {
|
|
148
|
+
reason: string;
|
|
149
|
+
})[];
|
|
150
|
+
timeline: (BaseTimelineItem & {
|
|
151
|
+
reason: string;
|
|
152
|
+
})[];
|
|
153
|
+
}
|
|
154
|
+
export interface InsightsChargebacksByCardBrand {
|
|
155
|
+
insight_card_conversion_by_brand_distribution: {
|
|
156
|
+
periodicity: string;
|
|
157
|
+
card_brand: string;
|
|
158
|
+
total_payments: number;
|
|
159
|
+
total_amount: number;
|
|
160
|
+
total_amount_chargeback: number;
|
|
161
|
+
total_payments_succeeded: number;
|
|
162
|
+
total_chargeback: number;
|
|
163
|
+
chargeback_rate: number;
|
|
164
|
+
}[];
|
|
165
|
+
}
|
|
166
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Organization } from '../organization';
|
|
2
|
+
export declare namespace Developer {
|
|
3
|
+
interface DeveloperCredentials extends Organization.Credentials {
|
|
4
|
+
'x-account-code': string;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
export interface IKeyRoll {
|
|
8
|
+
payload: {
|
|
9
|
+
expiration_in: string;
|
|
10
|
+
};
|
|
11
|
+
code: string;
|
|
12
|
+
password: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './developer';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare namespace FeatureFlags {
|
|
2
|
+
interface Request {
|
|
3
|
+
account_code: string;
|
|
4
|
+
organization_code: string;
|
|
5
|
+
name: string;
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
}
|
|
8
|
+
interface RequestAll {
|
|
9
|
+
account_code: string;
|
|
10
|
+
organization_code: string;
|
|
11
|
+
email: string;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export declare namespace FraudScreening {
|
|
2
|
+
interface BlackList {
|
|
3
|
+
account_code: string;
|
|
4
|
+
organization_code: string;
|
|
5
|
+
code: string;
|
|
6
|
+
name: string;
|
|
7
|
+
type: string;
|
|
8
|
+
created_at: string;
|
|
9
|
+
updated_at: string;
|
|
10
|
+
deleted_at: string;
|
|
11
|
+
elements_amount: number;
|
|
12
|
+
elements: elementBlacklist[];
|
|
13
|
+
}
|
|
14
|
+
interface BlocklistData {
|
|
15
|
+
total_pages: number;
|
|
16
|
+
total_records: number;
|
|
17
|
+
blacklists: BlackList[];
|
|
18
|
+
}
|
|
19
|
+
interface Allowlist {
|
|
20
|
+
account_code: string;
|
|
21
|
+
organization_code: string;
|
|
22
|
+
code: string;
|
|
23
|
+
name: string;
|
|
24
|
+
type: string;
|
|
25
|
+
created_at: string;
|
|
26
|
+
updated_at: string;
|
|
27
|
+
deleted_at: string;
|
|
28
|
+
allowed_payments?: number;
|
|
29
|
+
status?: string | boolean;
|
|
30
|
+
elements_amount: number;
|
|
31
|
+
elements: elementBlacklist[];
|
|
32
|
+
}
|
|
33
|
+
interface elementBlacklist {
|
|
34
|
+
element: string;
|
|
35
|
+
}
|
|
36
|
+
interface BlackListPayload {
|
|
37
|
+
type?: string;
|
|
38
|
+
name?: string;
|
|
39
|
+
page?: number;
|
|
40
|
+
code?: string;
|
|
41
|
+
size?: number | string;
|
|
42
|
+
account_codes?: string[];
|
|
43
|
+
account?: string;
|
|
44
|
+
active?: boolean | string;
|
|
45
|
+
}
|
|
46
|
+
interface PostBlockList {
|
|
47
|
+
account_codes: string[];
|
|
48
|
+
name: string;
|
|
49
|
+
page?: number;
|
|
50
|
+
size?: number;
|
|
51
|
+
}
|
|
52
|
+
interface ListItem {
|
|
53
|
+
first_value: string;
|
|
54
|
+
second_value: string;
|
|
55
|
+
}
|
|
56
|
+
interface BlackListItemsPayload {
|
|
57
|
+
blacklist_code: string;
|
|
58
|
+
expiration_days: number;
|
|
59
|
+
items: string[] | ListItem[];
|
|
60
|
+
}
|
|
61
|
+
interface EditBlackListPayload {
|
|
62
|
+
blacklist_code?: string;
|
|
63
|
+
code?: string;
|
|
64
|
+
name?: string;
|
|
65
|
+
status?: string;
|
|
66
|
+
}
|
|
67
|
+
interface DeleteBlackList {
|
|
68
|
+
account_code: string;
|
|
69
|
+
black_list_code: string;
|
|
70
|
+
item?: string;
|
|
71
|
+
}
|
|
72
|
+
interface DeleteBlockListItem {
|
|
73
|
+
account_code: string;
|
|
74
|
+
blocklist_code: string;
|
|
75
|
+
blocklist_item_id: string;
|
|
76
|
+
}
|
|
77
|
+
interface DeleteAllowListItem {
|
|
78
|
+
account_code: string;
|
|
79
|
+
allowlist_code: string;
|
|
80
|
+
allowlist_item_id: string;
|
|
81
|
+
}
|
|
82
|
+
interface ValidateBlockListItems {
|
|
83
|
+
account_code: string;
|
|
84
|
+
blocklist_code: string;
|
|
85
|
+
file_items_values?: string;
|
|
86
|
+
items_values?: string[];
|
|
87
|
+
}
|
|
88
|
+
interface ValidateAllowListItems {
|
|
89
|
+
account_code: string;
|
|
90
|
+
allowlist_code: string;
|
|
91
|
+
file_items_values?: string;
|
|
92
|
+
items_values?: string[];
|
|
93
|
+
}
|
|
94
|
+
interface BlockListSummary {
|
|
95
|
+
id: number;
|
|
96
|
+
account_code: string;
|
|
97
|
+
organization_code: string;
|
|
98
|
+
code: string;
|
|
99
|
+
name: string;
|
|
100
|
+
type: string;
|
|
101
|
+
created_at: string;
|
|
102
|
+
updated_at: string;
|
|
103
|
+
deleted_at: string | null;
|
|
104
|
+
elements_amount: number;
|
|
105
|
+
unique_elements_amount: number;
|
|
106
|
+
active: boolean;
|
|
107
|
+
blocked_payments: number;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './fraud-screening';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from './accounts';
|
|
2
|
+
export * from './chartgpt';
|
|
3
|
+
export * from './payment';
|
|
4
|
+
export * from './operation-transaction';
|
|
5
|
+
export * from './organization';
|
|
6
|
+
export * from './developer';
|
|
7
|
+
export * from './connection';
|
|
8
|
+
export * from './webhook';
|
|
9
|
+
export * from './user';
|
|
10
|
+
export * from './country';
|
|
11
|
+
export * from './cms';
|
|
12
|
+
export * from './checkout';
|
|
13
|
+
export * from './reports';
|
|
14
|
+
export * from './notifications';
|
|
15
|
+
export * from './smart-routing';
|
|
16
|
+
export * from './routing-monitors';
|
|
17
|
+
export * from './team';
|
|
18
|
+
export * from './data-report';
|
|
19
|
+
export * from './batch-refunds';
|
|
20
|
+
export * from './reconciliation';
|
|
21
|
+
export * from './fraud-screening';
|
|
22
|
+
export * from './organization-settings';
|
|
23
|
+
export * from './velocity-rules';
|
|
24
|
+
export * from './payouts';
|
|
25
|
+
export * from './audit';
|
|
26
|
+
export * from './payment-links';
|
|
27
|
+
export * from './saml-config';
|
|
28
|
+
export * from './s3-client';
|
|
29
|
+
export * from './mfa';
|
|
30
|
+
export * from './translation';
|
|
31
|
+
export * from './ai';
|
|
32
|
+
export * from './smart-recovery';
|
|
33
|
+
export * from './template-reporting';
|
|
34
|
+
export * from './organization-config';
|
|
35
|
+
export * from './onboarding';
|
|
36
|
+
export * from './recipients';
|
|
37
|
+
export * from './installments';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './installments';
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
export declare namespace Installments {
|
|
2
|
+
interface GetInstallmentsPlansParams {
|
|
3
|
+
account_id?: string | string[];
|
|
4
|
+
country_code?: string | string[];
|
|
5
|
+
brand?: string | string[];
|
|
6
|
+
name?: string;
|
|
7
|
+
merchant_reference?: string;
|
|
8
|
+
issuer?: string | string[];
|
|
9
|
+
bin?: string | string[];
|
|
10
|
+
start_date?: string;
|
|
11
|
+
end_date?: string;
|
|
12
|
+
page?: number;
|
|
13
|
+
size?: number;
|
|
14
|
+
}
|
|
15
|
+
interface FinancialCost {
|
|
16
|
+
type: 'CFT' | 'TEA' | string;
|
|
17
|
+
rate: number;
|
|
18
|
+
}
|
|
19
|
+
interface InstallmentAmount {
|
|
20
|
+
currency: string;
|
|
21
|
+
value: string;
|
|
22
|
+
total_value: string;
|
|
23
|
+
}
|
|
24
|
+
interface InstallmentPlanItem {
|
|
25
|
+
id?: string;
|
|
26
|
+
installment: number;
|
|
27
|
+
rate: number | null;
|
|
28
|
+
provider_id?: string;
|
|
29
|
+
amount?: InstallmentAmount;
|
|
30
|
+
type?: string;
|
|
31
|
+
financial_costs?: FinancialCost[];
|
|
32
|
+
}
|
|
33
|
+
interface PlanAmount {
|
|
34
|
+
currency: string;
|
|
35
|
+
min_value: string;
|
|
36
|
+
max_value: string;
|
|
37
|
+
}
|
|
38
|
+
interface Availability {
|
|
39
|
+
start_at?: string;
|
|
40
|
+
finish_at?: string;
|
|
41
|
+
}
|
|
42
|
+
interface InstallmentsPlan {
|
|
43
|
+
id?: string;
|
|
44
|
+
code: string;
|
|
45
|
+
name: string;
|
|
46
|
+
account_id: string[];
|
|
47
|
+
merchant_reference?: string;
|
|
48
|
+
installments_plan: InstallmentPlanItem[];
|
|
49
|
+
country_code: string;
|
|
50
|
+
amount: PlanAmount;
|
|
51
|
+
availability?: Availability;
|
|
52
|
+
types_list?: string[] | null;
|
|
53
|
+
created_at?: string;
|
|
54
|
+
updated_at?: string;
|
|
55
|
+
}
|
|
56
|
+
type GetInstallmentsPlansResponse = InstallmentsPlan[];
|
|
57
|
+
interface CreateInstallmentsPlanRequest {
|
|
58
|
+
name: string;
|
|
59
|
+
merchant_reference?: string;
|
|
60
|
+
country_code: string;
|
|
61
|
+
amount?: PlanAmount;
|
|
62
|
+
installments_plan?: InstallmentPlanItem[];
|
|
63
|
+
availability?: Availability;
|
|
64
|
+
}
|
|
65
|
+
interface CreateInstallmentsPlanResponse extends InstallmentsPlan {
|
|
66
|
+
}
|
|
67
|
+
interface UpdateInstallmentsPlanRequest {
|
|
68
|
+
name?: string;
|
|
69
|
+
merchant_reference?: string;
|
|
70
|
+
amount?: PlanAmount;
|
|
71
|
+
installments_plan?: InstallmentPlanItem[];
|
|
72
|
+
availability?: Availability;
|
|
73
|
+
}
|
|
74
|
+
interface UpdateInstallmentsPlanResponse extends InstallmentsPlan {
|
|
75
|
+
}
|
|
76
|
+
interface DeleteInstallmentsPlanResponse {
|
|
77
|
+
deleted?: boolean;
|
|
78
|
+
message?: string;
|
|
79
|
+
}
|
|
80
|
+
interface SearchInstallmentsPlansRequest {
|
|
81
|
+
account_ids?: string[];
|
|
82
|
+
country_code?: string[];
|
|
83
|
+
brand?: string[];
|
|
84
|
+
name?: string;
|
|
85
|
+
merchant_reference?: string;
|
|
86
|
+
issuer?: string;
|
|
87
|
+
bin?: string;
|
|
88
|
+
start_date?: string;
|
|
89
|
+
end_date?: string;
|
|
90
|
+
page?: number;
|
|
91
|
+
size?: number;
|
|
92
|
+
}
|
|
93
|
+
interface SearchInstallmentsPlansResponse {
|
|
94
|
+
data: InstallmentsPlan[];
|
|
95
|
+
total: number;
|
|
96
|
+
page: number;
|
|
97
|
+
size: number;
|
|
98
|
+
}
|
|
99
|
+
interface BulkCreateInstallmentsPlansRequest {
|
|
100
|
+
account_ids: string[];
|
|
101
|
+
name: string;
|
|
102
|
+
source?: string;
|
|
103
|
+
merchant_reference?: string;
|
|
104
|
+
country_code: string;
|
|
105
|
+
amount?: PlanAmount;
|
|
106
|
+
installments_plan?: InstallmentPlanItem[];
|
|
107
|
+
availability?: Availability;
|
|
108
|
+
}
|
|
109
|
+
interface BulkCreateInstallmentsPlansResponse {
|
|
110
|
+
created: InstallmentsPlan[];
|
|
111
|
+
errors?: string[];
|
|
112
|
+
}
|
|
113
|
+
interface BulkDeleteInstallmentsPlansRequest {
|
|
114
|
+
codes: string[];
|
|
115
|
+
}
|
|
116
|
+
interface BulkDeleteError {
|
|
117
|
+
code: string;
|
|
118
|
+
error_code: string;
|
|
119
|
+
message?: string;
|
|
120
|
+
}
|
|
121
|
+
interface BulkDeleteInstallmentsPlansResponse {
|
|
122
|
+
deleted: string[];
|
|
123
|
+
errors?: BulkDeleteError[];
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './mfa';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './notifications';
|