@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
|
@@ -1,775 +0,0 @@
|
|
|
1
|
-
export declare const recipientListMock: {
|
|
2
|
-
data: ({
|
|
3
|
-
account_id: string;
|
|
4
|
-
country: string;
|
|
5
|
-
created_at: string;
|
|
6
|
-
updated_at: string;
|
|
7
|
-
id: string;
|
|
8
|
-
merchant_recipient_id: string;
|
|
9
|
-
national_entity: string;
|
|
10
|
-
entity_type: string;
|
|
11
|
-
first_name: string;
|
|
12
|
-
last_name: string;
|
|
13
|
-
legal_name: null;
|
|
14
|
-
email: string;
|
|
15
|
-
date_of_birth: string;
|
|
16
|
-
website: null;
|
|
17
|
-
industry: null;
|
|
18
|
-
merchant_category_code: null;
|
|
19
|
-
document: {
|
|
20
|
-
number: string;
|
|
21
|
-
type: string;
|
|
22
|
-
};
|
|
23
|
-
phone: {
|
|
24
|
-
country_code: string;
|
|
25
|
-
number: string;
|
|
26
|
-
};
|
|
27
|
-
address: {
|
|
28
|
-
address_line_1: string;
|
|
29
|
-
address_line_2: string;
|
|
30
|
-
city: string;
|
|
31
|
-
state: string;
|
|
32
|
-
zip_code: string;
|
|
33
|
-
country: string;
|
|
34
|
-
};
|
|
35
|
-
} | {
|
|
36
|
-
account_id: string;
|
|
37
|
-
country: string;
|
|
38
|
-
created_at: string;
|
|
39
|
-
updated_at: string;
|
|
40
|
-
id: string;
|
|
41
|
-
merchant_recipient_id: string;
|
|
42
|
-
national_entity: string;
|
|
43
|
-
entity_type: string;
|
|
44
|
-
first_name: null;
|
|
45
|
-
last_name: null;
|
|
46
|
-
legal_name: string;
|
|
47
|
-
email: string;
|
|
48
|
-
date_of_birth: null;
|
|
49
|
-
website: string;
|
|
50
|
-
industry: string;
|
|
51
|
-
merchant_category_code: string;
|
|
52
|
-
document: {
|
|
53
|
-
number: string;
|
|
54
|
-
type: string;
|
|
55
|
-
};
|
|
56
|
-
phone: {
|
|
57
|
-
country_code: string;
|
|
58
|
-
number: string;
|
|
59
|
-
};
|
|
60
|
-
address: {
|
|
61
|
-
address_line_1: string;
|
|
62
|
-
address_line_2: string;
|
|
63
|
-
city: string;
|
|
64
|
-
state: string;
|
|
65
|
-
zip_code: string;
|
|
66
|
-
country: string;
|
|
67
|
-
};
|
|
68
|
-
} | {
|
|
69
|
-
account_id: string;
|
|
70
|
-
country: string;
|
|
71
|
-
created_at: string;
|
|
72
|
-
updated_at: string;
|
|
73
|
-
id: string;
|
|
74
|
-
merchant_recipient_id: string;
|
|
75
|
-
national_entity: string;
|
|
76
|
-
entity_type: string;
|
|
77
|
-
first_name: string;
|
|
78
|
-
last_name: string;
|
|
79
|
-
legal_name: null;
|
|
80
|
-
email: string;
|
|
81
|
-
date_of_birth: string;
|
|
82
|
-
website: null;
|
|
83
|
-
industry: null;
|
|
84
|
-
merchant_category_code: null;
|
|
85
|
-
document: {
|
|
86
|
-
number: string;
|
|
87
|
-
type: string;
|
|
88
|
-
};
|
|
89
|
-
phone: {
|
|
90
|
-
country_code: string;
|
|
91
|
-
number: string;
|
|
92
|
-
};
|
|
93
|
-
address: {
|
|
94
|
-
address_line_1: string;
|
|
95
|
-
address_line_2: null;
|
|
96
|
-
city: string;
|
|
97
|
-
state: string;
|
|
98
|
-
zip_code: string;
|
|
99
|
-
country: string;
|
|
100
|
-
};
|
|
101
|
-
} | {
|
|
102
|
-
account_id: string;
|
|
103
|
-
country: string;
|
|
104
|
-
created_at: string;
|
|
105
|
-
updated_at: string;
|
|
106
|
-
id: string;
|
|
107
|
-
merchant_recipient_id: null;
|
|
108
|
-
national_entity: string;
|
|
109
|
-
entity_type: string;
|
|
110
|
-
first_name: null;
|
|
111
|
-
last_name: null;
|
|
112
|
-
legal_name: string;
|
|
113
|
-
email: string;
|
|
114
|
-
date_of_birth: null;
|
|
115
|
-
website: string;
|
|
116
|
-
industry: string;
|
|
117
|
-
merchant_category_code: string;
|
|
118
|
-
document: {
|
|
119
|
-
number: string;
|
|
120
|
-
type: string;
|
|
121
|
-
};
|
|
122
|
-
phone: {
|
|
123
|
-
country_code: string;
|
|
124
|
-
number: string;
|
|
125
|
-
};
|
|
126
|
-
address: {
|
|
127
|
-
address_line_1: string;
|
|
128
|
-
address_line_2: string;
|
|
129
|
-
city: string;
|
|
130
|
-
state: string;
|
|
131
|
-
zip_code: string;
|
|
132
|
-
country: string;
|
|
133
|
-
};
|
|
134
|
-
})[];
|
|
135
|
-
pagination: {
|
|
136
|
-
page: number;
|
|
137
|
-
page_size: number;
|
|
138
|
-
total_items: number;
|
|
139
|
-
total_pages: number;
|
|
140
|
-
has_next: boolean;
|
|
141
|
-
has_previous: boolean;
|
|
142
|
-
};
|
|
143
|
-
};
|
|
144
|
-
export declare const recipientDetailMock: {
|
|
145
|
-
id: string;
|
|
146
|
-
merchant_recipient_id: string;
|
|
147
|
-
national_entity: string;
|
|
148
|
-
entity_type: string;
|
|
149
|
-
first_name: string;
|
|
150
|
-
last_name: string;
|
|
151
|
-
legal_name: null;
|
|
152
|
-
email: string;
|
|
153
|
-
account_id: string;
|
|
154
|
-
country: string;
|
|
155
|
-
created_at: string;
|
|
156
|
-
updated_at: string;
|
|
157
|
-
document: {
|
|
158
|
-
number: string;
|
|
159
|
-
type: string;
|
|
160
|
-
};
|
|
161
|
-
phone: {
|
|
162
|
-
country_code: string;
|
|
163
|
-
number: string;
|
|
164
|
-
};
|
|
165
|
-
address: {
|
|
166
|
-
address_line_1: string;
|
|
167
|
-
address_line_2: string;
|
|
168
|
-
city: string;
|
|
169
|
-
state: string;
|
|
170
|
-
zip_code: string;
|
|
171
|
-
country: string;
|
|
172
|
-
};
|
|
173
|
-
withdrawal_method: {
|
|
174
|
-
bank: {
|
|
175
|
-
code: string;
|
|
176
|
-
branch: string;
|
|
177
|
-
branch_digit: string;
|
|
178
|
-
account: string;
|
|
179
|
-
account_digit: string;
|
|
180
|
-
account_type: string;
|
|
181
|
-
routing: string;
|
|
182
|
-
country: string;
|
|
183
|
-
currency: string;
|
|
184
|
-
payout_schedule: null;
|
|
185
|
-
};
|
|
186
|
-
};
|
|
187
|
-
documentation: never[];
|
|
188
|
-
onboardings: {
|
|
189
|
-
id: string;
|
|
190
|
-
provider_id: string;
|
|
191
|
-
provider: {
|
|
192
|
-
name: string;
|
|
193
|
-
icon: string;
|
|
194
|
-
};
|
|
195
|
-
status: string;
|
|
196
|
-
response_message: null;
|
|
197
|
-
created_at: string;
|
|
198
|
-
updated_at: string;
|
|
199
|
-
}[];
|
|
200
|
-
};
|
|
201
|
-
export declare const recipientDetailCompanyMock: {
|
|
202
|
-
id: string;
|
|
203
|
-
merchant_recipient_id: string;
|
|
204
|
-
national_entity: string;
|
|
205
|
-
entity_type: string;
|
|
206
|
-
first_name: null;
|
|
207
|
-
last_name: null;
|
|
208
|
-
legal_name: string;
|
|
209
|
-
email: string;
|
|
210
|
-
account_id: string;
|
|
211
|
-
country: string;
|
|
212
|
-
created_at: string;
|
|
213
|
-
updated_at: string;
|
|
214
|
-
document: {
|
|
215
|
-
number: string;
|
|
216
|
-
type: string;
|
|
217
|
-
};
|
|
218
|
-
phone: {
|
|
219
|
-
country_code: string;
|
|
220
|
-
number: string;
|
|
221
|
-
};
|
|
222
|
-
address: {
|
|
223
|
-
address_line_1: string;
|
|
224
|
-
address_line_2: string;
|
|
225
|
-
city: string;
|
|
226
|
-
state: string;
|
|
227
|
-
zip_code: string;
|
|
228
|
-
country: string;
|
|
229
|
-
};
|
|
230
|
-
withdrawal_method: {
|
|
231
|
-
bank: {
|
|
232
|
-
code: string;
|
|
233
|
-
branch: string;
|
|
234
|
-
branch_digit: string;
|
|
235
|
-
account: string;
|
|
236
|
-
account_digit: string;
|
|
237
|
-
account_type: string;
|
|
238
|
-
routing: string;
|
|
239
|
-
country: string;
|
|
240
|
-
currency: string;
|
|
241
|
-
payout_schedule: null;
|
|
242
|
-
};
|
|
243
|
-
};
|
|
244
|
-
documentation: never[];
|
|
245
|
-
onboardings: {
|
|
246
|
-
id: string;
|
|
247
|
-
provider_id: string;
|
|
248
|
-
provider: {
|
|
249
|
-
name: string;
|
|
250
|
-
icon: string;
|
|
251
|
-
};
|
|
252
|
-
status: string;
|
|
253
|
-
response_message: string;
|
|
254
|
-
created_at: string;
|
|
255
|
-
updated_at: string;
|
|
256
|
-
}[];
|
|
257
|
-
};
|
|
258
|
-
export declare const recipientDetailNoOnboardingMock: {
|
|
259
|
-
id: string;
|
|
260
|
-
merchant_recipient_id: string;
|
|
261
|
-
national_entity: string;
|
|
262
|
-
entity_type: string;
|
|
263
|
-
first_name: string;
|
|
264
|
-
last_name: string;
|
|
265
|
-
legal_name: null;
|
|
266
|
-
email: string;
|
|
267
|
-
account_id: string;
|
|
268
|
-
country: string;
|
|
269
|
-
created_at: string;
|
|
270
|
-
updated_at: string;
|
|
271
|
-
document: {
|
|
272
|
-
number: string;
|
|
273
|
-
type: string;
|
|
274
|
-
};
|
|
275
|
-
phone: {
|
|
276
|
-
country_code: string;
|
|
277
|
-
number: string;
|
|
278
|
-
};
|
|
279
|
-
address: {
|
|
280
|
-
address_line_1: string;
|
|
281
|
-
address_line_2: null;
|
|
282
|
-
city: string;
|
|
283
|
-
state: string;
|
|
284
|
-
zip_code: string;
|
|
285
|
-
country: string;
|
|
286
|
-
};
|
|
287
|
-
withdrawal_method: null;
|
|
288
|
-
documentation: never[];
|
|
289
|
-
onboardings: never[];
|
|
290
|
-
};
|
|
291
|
-
export declare const onboardingDetailMock: {
|
|
292
|
-
id: string;
|
|
293
|
-
type: string;
|
|
294
|
-
workflow: string;
|
|
295
|
-
description: string;
|
|
296
|
-
status: string;
|
|
297
|
-
response_message: null;
|
|
298
|
-
callback_url: string;
|
|
299
|
-
provider: {
|
|
300
|
-
id: string;
|
|
301
|
-
connection_id: string;
|
|
302
|
-
redirect_url: null;
|
|
303
|
-
recipient_id: string;
|
|
304
|
-
recipient_additional_id: null;
|
|
305
|
-
onboarding_url: null;
|
|
306
|
-
legal_entity: null;
|
|
307
|
-
balance_account_id: string;
|
|
308
|
-
recipient_type: null;
|
|
309
|
-
raw_notification: null;
|
|
310
|
-
raw_response: null;
|
|
311
|
-
response_code: string;
|
|
312
|
-
response_message: string;
|
|
313
|
-
};
|
|
314
|
-
documentation: never[];
|
|
315
|
-
legal_representatives: never[];
|
|
316
|
-
withdrawal_methods: {
|
|
317
|
-
bank: {
|
|
318
|
-
code: string;
|
|
319
|
-
branch: string;
|
|
320
|
-
branch_digit: string;
|
|
321
|
-
account: string;
|
|
322
|
-
account_digit: string;
|
|
323
|
-
account_type: string;
|
|
324
|
-
routing: string;
|
|
325
|
-
country: string;
|
|
326
|
-
currency: string;
|
|
327
|
-
};
|
|
328
|
-
};
|
|
329
|
-
requirements: never[];
|
|
330
|
-
capabilities: {
|
|
331
|
-
payouts: {
|
|
332
|
-
status: string;
|
|
333
|
-
requirements: never[];
|
|
334
|
-
};
|
|
335
|
-
send_transfers: {
|
|
336
|
-
status: string;
|
|
337
|
-
requirements: never[];
|
|
338
|
-
};
|
|
339
|
-
receive_transfers: {
|
|
340
|
-
status: string;
|
|
341
|
-
requirements: never[];
|
|
342
|
-
};
|
|
343
|
-
payments: {
|
|
344
|
-
status: string;
|
|
345
|
-
requirements: never[];
|
|
346
|
-
};
|
|
347
|
-
};
|
|
348
|
-
terms_of_service: {
|
|
349
|
-
acceptance: boolean;
|
|
350
|
-
date: string;
|
|
351
|
-
ip: string;
|
|
352
|
-
};
|
|
353
|
-
metadata: never[];
|
|
354
|
-
created_at: string;
|
|
355
|
-
updated_at: string;
|
|
356
|
-
expires_at: null;
|
|
357
|
-
};
|
|
358
|
-
export declare const onboardingDetailPendingMock: {
|
|
359
|
-
id: string;
|
|
360
|
-
type: string;
|
|
361
|
-
workflow: string;
|
|
362
|
-
description: string;
|
|
363
|
-
status: string;
|
|
364
|
-
response_message: null;
|
|
365
|
-
callback_url: null;
|
|
366
|
-
provider: {
|
|
367
|
-
id: string;
|
|
368
|
-
connection_id: string;
|
|
369
|
-
redirect_url: null;
|
|
370
|
-
recipient_id: null;
|
|
371
|
-
recipient_additional_id: null;
|
|
372
|
-
onboarding_url: null;
|
|
373
|
-
legal_entity: null;
|
|
374
|
-
balance_account_id: null;
|
|
375
|
-
recipient_type: null;
|
|
376
|
-
raw_notification: null;
|
|
377
|
-
raw_response: null;
|
|
378
|
-
response_code: null;
|
|
379
|
-
response_message: null;
|
|
380
|
-
};
|
|
381
|
-
documentation: never[];
|
|
382
|
-
legal_representatives: never[];
|
|
383
|
-
withdrawal_methods: null;
|
|
384
|
-
requirements: never[];
|
|
385
|
-
capabilities: null;
|
|
386
|
-
terms_of_service: null;
|
|
387
|
-
metadata: never[];
|
|
388
|
-
created_at: string;
|
|
389
|
-
updated_at: string;
|
|
390
|
-
expires_at: null;
|
|
391
|
-
};
|
|
392
|
-
export declare const onboardingTimelineMock: ({
|
|
393
|
-
timestamp: string;
|
|
394
|
-
event_type: string;
|
|
395
|
-
status: string;
|
|
396
|
-
event_data: {
|
|
397
|
-
provider_id: string;
|
|
398
|
-
provider_status: null;
|
|
399
|
-
provider_response_code: null;
|
|
400
|
-
provider_response_message: null;
|
|
401
|
-
provider_recipient_id: null;
|
|
402
|
-
provider_redirect_url: null;
|
|
403
|
-
requirements: never[];
|
|
404
|
-
capabilities: null;
|
|
405
|
-
change_type: null;
|
|
406
|
-
};
|
|
407
|
-
} | {
|
|
408
|
-
timestamp: string;
|
|
409
|
-
event_type: string;
|
|
410
|
-
status: string;
|
|
411
|
-
event_data: {
|
|
412
|
-
provider_id: string;
|
|
413
|
-
provider_status: string;
|
|
414
|
-
provider_response_code: string;
|
|
415
|
-
provider_response_message: string;
|
|
416
|
-
provider_recipient_id: string;
|
|
417
|
-
provider_redirect_url: null;
|
|
418
|
-
requirements: never[];
|
|
419
|
-
capabilities: null;
|
|
420
|
-
change_type: null;
|
|
421
|
-
};
|
|
422
|
-
} | {
|
|
423
|
-
timestamp: string;
|
|
424
|
-
event_type: string;
|
|
425
|
-
status: string;
|
|
426
|
-
event_data: {
|
|
427
|
-
provider_id: string;
|
|
428
|
-
provider_status: string;
|
|
429
|
-
provider_response_code: string;
|
|
430
|
-
provider_response_message: string;
|
|
431
|
-
provider_recipient_id: string;
|
|
432
|
-
provider_redirect_url: null;
|
|
433
|
-
requirements: never[];
|
|
434
|
-
capabilities: {
|
|
435
|
-
payouts: {
|
|
436
|
-
status: string;
|
|
437
|
-
requirements: never[];
|
|
438
|
-
};
|
|
439
|
-
send_transfers: {
|
|
440
|
-
status: string;
|
|
441
|
-
requirements: never[];
|
|
442
|
-
};
|
|
443
|
-
receive_transfers: {
|
|
444
|
-
status: string;
|
|
445
|
-
requirements: never[];
|
|
446
|
-
};
|
|
447
|
-
payments: {
|
|
448
|
-
status: string;
|
|
449
|
-
requirements: never[];
|
|
450
|
-
};
|
|
451
|
-
};
|
|
452
|
-
change_type: null;
|
|
453
|
-
};
|
|
454
|
-
})[];
|
|
455
|
-
export declare const createRecipientMock: {
|
|
456
|
-
id: string;
|
|
457
|
-
merchant_recipient_id: null;
|
|
458
|
-
national_entity: string;
|
|
459
|
-
entity_type: string;
|
|
460
|
-
first_name: string;
|
|
461
|
-
last_name: string;
|
|
462
|
-
legal_name: null;
|
|
463
|
-
email: string;
|
|
464
|
-
account_id: string;
|
|
465
|
-
country: string;
|
|
466
|
-
created_at: string;
|
|
467
|
-
updated_at: string;
|
|
468
|
-
document: {
|
|
469
|
-
number: string;
|
|
470
|
-
type: string;
|
|
471
|
-
};
|
|
472
|
-
phone: {
|
|
473
|
-
country_code: string;
|
|
474
|
-
number: string;
|
|
475
|
-
};
|
|
476
|
-
address: null;
|
|
477
|
-
withdrawal_method: null;
|
|
478
|
-
documentation: never[];
|
|
479
|
-
onboardings: never[];
|
|
480
|
-
};
|
|
481
|
-
export declare const updateRecipientMock: {
|
|
482
|
-
updated_at: string;
|
|
483
|
-
id: string;
|
|
484
|
-
merchant_recipient_id: string;
|
|
485
|
-
national_entity: string;
|
|
486
|
-
entity_type: string;
|
|
487
|
-
first_name: string;
|
|
488
|
-
last_name: string;
|
|
489
|
-
legal_name: null;
|
|
490
|
-
email: string;
|
|
491
|
-
account_id: string;
|
|
492
|
-
country: string;
|
|
493
|
-
created_at: string;
|
|
494
|
-
document: {
|
|
495
|
-
number: string;
|
|
496
|
-
type: string;
|
|
497
|
-
};
|
|
498
|
-
phone: {
|
|
499
|
-
country_code: string;
|
|
500
|
-
number: string;
|
|
501
|
-
};
|
|
502
|
-
address: {
|
|
503
|
-
address_line_1: string;
|
|
504
|
-
address_line_2: string;
|
|
505
|
-
city: string;
|
|
506
|
-
state: string;
|
|
507
|
-
zip_code: string;
|
|
508
|
-
country: string;
|
|
509
|
-
};
|
|
510
|
-
withdrawal_method: {
|
|
511
|
-
bank: {
|
|
512
|
-
code: string;
|
|
513
|
-
branch: string;
|
|
514
|
-
branch_digit: string;
|
|
515
|
-
account: string;
|
|
516
|
-
account_digit: string;
|
|
517
|
-
account_type: string;
|
|
518
|
-
routing: string;
|
|
519
|
-
country: string;
|
|
520
|
-
currency: string;
|
|
521
|
-
payout_schedule: null;
|
|
522
|
-
};
|
|
523
|
-
};
|
|
524
|
-
documentation: never[];
|
|
525
|
-
onboardings: {
|
|
526
|
-
id: string;
|
|
527
|
-
provider_id: string;
|
|
528
|
-
provider: {
|
|
529
|
-
name: string;
|
|
530
|
-
icon: string;
|
|
531
|
-
};
|
|
532
|
-
status: string;
|
|
533
|
-
response_message: null;
|
|
534
|
-
created_at: string;
|
|
535
|
-
updated_at: string;
|
|
536
|
-
}[];
|
|
537
|
-
};
|
|
538
|
-
export declare const deleteRecipientMock: {
|
|
539
|
-
message: string;
|
|
540
|
-
};
|
|
541
|
-
export declare const createOnboardingMock: {
|
|
542
|
-
id: string;
|
|
543
|
-
type: string;
|
|
544
|
-
workflow: string;
|
|
545
|
-
description: string;
|
|
546
|
-
status: string;
|
|
547
|
-
response_message: null;
|
|
548
|
-
callback_url: null;
|
|
549
|
-
provider: {
|
|
550
|
-
id: string;
|
|
551
|
-
connection_id: string;
|
|
552
|
-
redirect_url: null;
|
|
553
|
-
recipient_id: null;
|
|
554
|
-
recipient_additional_id: null;
|
|
555
|
-
onboarding_url: null;
|
|
556
|
-
legal_entity: null;
|
|
557
|
-
balance_account_id: null;
|
|
558
|
-
recipient_type: null;
|
|
559
|
-
raw_notification: null;
|
|
560
|
-
raw_response: null;
|
|
561
|
-
response_code: null;
|
|
562
|
-
response_message: null;
|
|
563
|
-
};
|
|
564
|
-
documentation: never[];
|
|
565
|
-
legal_representatives: never[];
|
|
566
|
-
withdrawal_methods: null;
|
|
567
|
-
requirements: never[];
|
|
568
|
-
capabilities: null;
|
|
569
|
-
terms_of_service: null;
|
|
570
|
-
metadata: never[];
|
|
571
|
-
created_at: string;
|
|
572
|
-
updated_at: string;
|
|
573
|
-
expires_at: null;
|
|
574
|
-
};
|
|
575
|
-
export declare const updateOnboardingMock: {
|
|
576
|
-
updated_at: string;
|
|
577
|
-
id: string;
|
|
578
|
-
type: string;
|
|
579
|
-
workflow: string;
|
|
580
|
-
description: string;
|
|
581
|
-
status: string;
|
|
582
|
-
response_message: null;
|
|
583
|
-
callback_url: string;
|
|
584
|
-
provider: {
|
|
585
|
-
id: string;
|
|
586
|
-
connection_id: string;
|
|
587
|
-
redirect_url: null;
|
|
588
|
-
recipient_id: string;
|
|
589
|
-
recipient_additional_id: null;
|
|
590
|
-
onboarding_url: null;
|
|
591
|
-
legal_entity: null;
|
|
592
|
-
balance_account_id: string;
|
|
593
|
-
recipient_type: null;
|
|
594
|
-
raw_notification: null;
|
|
595
|
-
raw_response: null;
|
|
596
|
-
response_code: string;
|
|
597
|
-
response_message: string;
|
|
598
|
-
};
|
|
599
|
-
documentation: never[];
|
|
600
|
-
legal_representatives: never[];
|
|
601
|
-
withdrawal_methods: {
|
|
602
|
-
bank: {
|
|
603
|
-
code: string;
|
|
604
|
-
branch: string;
|
|
605
|
-
branch_digit: string;
|
|
606
|
-
account: string;
|
|
607
|
-
account_digit: string;
|
|
608
|
-
account_type: string;
|
|
609
|
-
routing: string;
|
|
610
|
-
country: string;
|
|
611
|
-
currency: string;
|
|
612
|
-
};
|
|
613
|
-
};
|
|
614
|
-
requirements: never[];
|
|
615
|
-
capabilities: {
|
|
616
|
-
payouts: {
|
|
617
|
-
status: string;
|
|
618
|
-
requirements: never[];
|
|
619
|
-
};
|
|
620
|
-
send_transfers: {
|
|
621
|
-
status: string;
|
|
622
|
-
requirements: never[];
|
|
623
|
-
};
|
|
624
|
-
receive_transfers: {
|
|
625
|
-
status: string;
|
|
626
|
-
requirements: never[];
|
|
627
|
-
};
|
|
628
|
-
payments: {
|
|
629
|
-
status: string;
|
|
630
|
-
requirements: never[];
|
|
631
|
-
};
|
|
632
|
-
};
|
|
633
|
-
terms_of_service: {
|
|
634
|
-
acceptance: boolean;
|
|
635
|
-
date: string;
|
|
636
|
-
ip: string;
|
|
637
|
-
};
|
|
638
|
-
metadata: never[];
|
|
639
|
-
created_at: string;
|
|
640
|
-
expires_at: null;
|
|
641
|
-
};
|
|
642
|
-
export declare const blockOnboardingMock: {
|
|
643
|
-
status: string;
|
|
644
|
-
updated_at: string;
|
|
645
|
-
id: string;
|
|
646
|
-
type: string;
|
|
647
|
-
workflow: string;
|
|
648
|
-
description: string;
|
|
649
|
-
response_message: null;
|
|
650
|
-
callback_url: string;
|
|
651
|
-
provider: {
|
|
652
|
-
id: string;
|
|
653
|
-
connection_id: string;
|
|
654
|
-
redirect_url: null;
|
|
655
|
-
recipient_id: string;
|
|
656
|
-
recipient_additional_id: null;
|
|
657
|
-
onboarding_url: null;
|
|
658
|
-
legal_entity: null;
|
|
659
|
-
balance_account_id: string;
|
|
660
|
-
recipient_type: null;
|
|
661
|
-
raw_notification: null;
|
|
662
|
-
raw_response: null;
|
|
663
|
-
response_code: string;
|
|
664
|
-
response_message: string;
|
|
665
|
-
};
|
|
666
|
-
documentation: never[];
|
|
667
|
-
legal_representatives: never[];
|
|
668
|
-
withdrawal_methods: {
|
|
669
|
-
bank: {
|
|
670
|
-
code: string;
|
|
671
|
-
branch: string;
|
|
672
|
-
branch_digit: string;
|
|
673
|
-
account: string;
|
|
674
|
-
account_digit: string;
|
|
675
|
-
account_type: string;
|
|
676
|
-
routing: string;
|
|
677
|
-
country: string;
|
|
678
|
-
currency: string;
|
|
679
|
-
};
|
|
680
|
-
};
|
|
681
|
-
requirements: never[];
|
|
682
|
-
capabilities: {
|
|
683
|
-
payouts: {
|
|
684
|
-
status: string;
|
|
685
|
-
requirements: never[];
|
|
686
|
-
};
|
|
687
|
-
send_transfers: {
|
|
688
|
-
status: string;
|
|
689
|
-
requirements: never[];
|
|
690
|
-
};
|
|
691
|
-
receive_transfers: {
|
|
692
|
-
status: string;
|
|
693
|
-
requirements: never[];
|
|
694
|
-
};
|
|
695
|
-
payments: {
|
|
696
|
-
status: string;
|
|
697
|
-
requirements: never[];
|
|
698
|
-
};
|
|
699
|
-
};
|
|
700
|
-
terms_of_service: {
|
|
701
|
-
acceptance: boolean;
|
|
702
|
-
date: string;
|
|
703
|
-
ip: string;
|
|
704
|
-
};
|
|
705
|
-
metadata: never[];
|
|
706
|
-
created_at: string;
|
|
707
|
-
expires_at: null;
|
|
708
|
-
};
|
|
709
|
-
export declare const unblockOnboardingMock: {
|
|
710
|
-
status: string;
|
|
711
|
-
updated_at: string;
|
|
712
|
-
id: string;
|
|
713
|
-
type: string;
|
|
714
|
-
workflow: string;
|
|
715
|
-
description: string;
|
|
716
|
-
response_message: null;
|
|
717
|
-
callback_url: string;
|
|
718
|
-
provider: {
|
|
719
|
-
id: string;
|
|
720
|
-
connection_id: string;
|
|
721
|
-
redirect_url: null;
|
|
722
|
-
recipient_id: string;
|
|
723
|
-
recipient_additional_id: null;
|
|
724
|
-
onboarding_url: null;
|
|
725
|
-
legal_entity: null;
|
|
726
|
-
balance_account_id: string;
|
|
727
|
-
recipient_type: null;
|
|
728
|
-
raw_notification: null;
|
|
729
|
-
raw_response: null;
|
|
730
|
-
response_code: string;
|
|
731
|
-
response_message: string;
|
|
732
|
-
};
|
|
733
|
-
documentation: never[];
|
|
734
|
-
legal_representatives: never[];
|
|
735
|
-
withdrawal_methods: {
|
|
736
|
-
bank: {
|
|
737
|
-
code: string;
|
|
738
|
-
branch: string;
|
|
739
|
-
branch_digit: string;
|
|
740
|
-
account: string;
|
|
741
|
-
account_digit: string;
|
|
742
|
-
account_type: string;
|
|
743
|
-
routing: string;
|
|
744
|
-
country: string;
|
|
745
|
-
currency: string;
|
|
746
|
-
};
|
|
747
|
-
};
|
|
748
|
-
requirements: never[];
|
|
749
|
-
capabilities: {
|
|
750
|
-
payouts: {
|
|
751
|
-
status: string;
|
|
752
|
-
requirements: never[];
|
|
753
|
-
};
|
|
754
|
-
send_transfers: {
|
|
755
|
-
status: string;
|
|
756
|
-
requirements: never[];
|
|
757
|
-
};
|
|
758
|
-
receive_transfers: {
|
|
759
|
-
status: string;
|
|
760
|
-
requirements: never[];
|
|
761
|
-
};
|
|
762
|
-
payments: {
|
|
763
|
-
status: string;
|
|
764
|
-
requirements: never[];
|
|
765
|
-
};
|
|
766
|
-
};
|
|
767
|
-
terms_of_service: {
|
|
768
|
-
acceptance: boolean;
|
|
769
|
-
date: string;
|
|
770
|
-
ip: string;
|
|
771
|
-
};
|
|
772
|
-
metadata: never[];
|
|
773
|
-
created_at: string;
|
|
774
|
-
expires_at: null;
|
|
775
|
-
};
|