@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,125 @@
|
|
|
1
|
+
export declare namespace Payouts {
|
|
2
|
+
interface Filters {
|
|
3
|
+
organization_code: string;
|
|
4
|
+
account_codes: string[];
|
|
5
|
+
statuses: string[];
|
|
6
|
+
sub_statuses: string[];
|
|
7
|
+
currency_codes: string[];
|
|
8
|
+
providers: string[];
|
|
9
|
+
withdrawal_method_types: string[];
|
|
10
|
+
country_codes: string[];
|
|
11
|
+
purposes: string[];
|
|
12
|
+
}
|
|
13
|
+
interface List {
|
|
14
|
+
content: ItemList[];
|
|
15
|
+
number: number;
|
|
16
|
+
size: number;
|
|
17
|
+
total_elements: number;
|
|
18
|
+
total_pages: number;
|
|
19
|
+
last_page: boolean;
|
|
20
|
+
}
|
|
21
|
+
interface ItemList {
|
|
22
|
+
payout_code: string;
|
|
23
|
+
transaction_code: string;
|
|
24
|
+
merchant_reference: string;
|
|
25
|
+
status: string;
|
|
26
|
+
sub_status: string;
|
|
27
|
+
amount: number;
|
|
28
|
+
currency_code: string;
|
|
29
|
+
provider_id: string;
|
|
30
|
+
withdrawal_method_type: string;
|
|
31
|
+
created_at: string;
|
|
32
|
+
updated_at: string;
|
|
33
|
+
country: string;
|
|
34
|
+
account_code: string;
|
|
35
|
+
organization_code: string;
|
|
36
|
+
beneficiary_email: string;
|
|
37
|
+
}
|
|
38
|
+
interface Details {
|
|
39
|
+
code: string;
|
|
40
|
+
status: string;
|
|
41
|
+
sub_status: string;
|
|
42
|
+
merchant_reference: string;
|
|
43
|
+
trace_id?: string;
|
|
44
|
+
purpose: string;
|
|
45
|
+
account_code: string;
|
|
46
|
+
organization_code: string;
|
|
47
|
+
country: string;
|
|
48
|
+
description: string;
|
|
49
|
+
amount: {
|
|
50
|
+
currency: string;
|
|
51
|
+
value: number;
|
|
52
|
+
};
|
|
53
|
+
beneficiary: Beneficiary;
|
|
54
|
+
metadata: {
|
|
55
|
+
key: string;
|
|
56
|
+
value: string;
|
|
57
|
+
}[];
|
|
58
|
+
created_at: string;
|
|
59
|
+
updated_at: string;
|
|
60
|
+
withdrawal_method: WithdrawlMethod;
|
|
61
|
+
}
|
|
62
|
+
interface Beneficiary {
|
|
63
|
+
merchant_beneficiary_id: string;
|
|
64
|
+
national_entity: string;
|
|
65
|
+
first_name: string;
|
|
66
|
+
last_name: string;
|
|
67
|
+
legal_name: string;
|
|
68
|
+
email: string;
|
|
69
|
+
date_of_birth: string;
|
|
70
|
+
country: string;
|
|
71
|
+
document: Document;
|
|
72
|
+
phone: {
|
|
73
|
+
country_code: string;
|
|
74
|
+
number: string;
|
|
75
|
+
};
|
|
76
|
+
address: {
|
|
77
|
+
address_line_1: string;
|
|
78
|
+
address_line_2: string;
|
|
79
|
+
city: string;
|
|
80
|
+
country: string;
|
|
81
|
+
state: string;
|
|
82
|
+
zip_code: string;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
interface WithdrawlMethod {
|
|
86
|
+
type: string;
|
|
87
|
+
provider_id: string;
|
|
88
|
+
detail: {
|
|
89
|
+
bank_transfer?: string;
|
|
90
|
+
wallet: {
|
|
91
|
+
code?: string;
|
|
92
|
+
email: string;
|
|
93
|
+
country: string;
|
|
94
|
+
document: Document;
|
|
95
|
+
phone: {
|
|
96
|
+
country_code: string;
|
|
97
|
+
number: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
interface Document {
|
|
103
|
+
document_number: string;
|
|
104
|
+
document_type: string;
|
|
105
|
+
}
|
|
106
|
+
interface TimelineEvent {
|
|
107
|
+
id: number;
|
|
108
|
+
payout_id?: string;
|
|
109
|
+
transaction_id?: string;
|
|
110
|
+
category?: string;
|
|
111
|
+
code: string;
|
|
112
|
+
description?: string;
|
|
113
|
+
status?: string;
|
|
114
|
+
amount?: number;
|
|
115
|
+
provider_data?: Record<string, unknown>;
|
|
116
|
+
withdrawal_method_type?: string;
|
|
117
|
+
type?: string;
|
|
118
|
+
metadata?: Record<string, unknown>;
|
|
119
|
+
created_at: string;
|
|
120
|
+
updated_at?: string;
|
|
121
|
+
}
|
|
122
|
+
interface Timeline {
|
|
123
|
+
events: TimelineEvent[];
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
export declare namespace Recipients {
|
|
2
|
+
interface Document {
|
|
3
|
+
number: string | null;
|
|
4
|
+
type: string | null;
|
|
5
|
+
}
|
|
6
|
+
interface Phone {
|
|
7
|
+
country_code: string | null;
|
|
8
|
+
number: string | null;
|
|
9
|
+
}
|
|
10
|
+
interface Address {
|
|
11
|
+
address_line_1: string | null;
|
|
12
|
+
address_line_2: string | null;
|
|
13
|
+
country: string | null;
|
|
14
|
+
city: string | null;
|
|
15
|
+
state: string | null;
|
|
16
|
+
zip_code: string | null;
|
|
17
|
+
}
|
|
18
|
+
interface Bank {
|
|
19
|
+
code: string | null;
|
|
20
|
+
branch: string | null;
|
|
21
|
+
branch_digit: string | null;
|
|
22
|
+
account: string | null;
|
|
23
|
+
account_digit: string | null;
|
|
24
|
+
account_type: string | null;
|
|
25
|
+
routing: string | null;
|
|
26
|
+
country: string | null;
|
|
27
|
+
currency: string | null;
|
|
28
|
+
payout_schedule?: string | null;
|
|
29
|
+
}
|
|
30
|
+
interface WithdrawalMethod {
|
|
31
|
+
bank: Bank | null;
|
|
32
|
+
}
|
|
33
|
+
interface Documentation {
|
|
34
|
+
file_name: string;
|
|
35
|
+
content_type: string;
|
|
36
|
+
content_category: string;
|
|
37
|
+
content: string | null;
|
|
38
|
+
}
|
|
39
|
+
interface OnboardingSummary {
|
|
40
|
+
id: string;
|
|
41
|
+
provider_id: string;
|
|
42
|
+
status: string;
|
|
43
|
+
created_at: string;
|
|
44
|
+
}
|
|
45
|
+
interface RecipientListItem {
|
|
46
|
+
id: string;
|
|
47
|
+
merchant_recipient_id: string | null;
|
|
48
|
+
national_entity: string;
|
|
49
|
+
entity_type: string | null;
|
|
50
|
+
country: string;
|
|
51
|
+
first_name: string | null;
|
|
52
|
+
last_name: string | null;
|
|
53
|
+
legal_name: string | null;
|
|
54
|
+
email: string | null;
|
|
55
|
+
account_id: string;
|
|
56
|
+
date_of_birth: string | null;
|
|
57
|
+
website: string | null;
|
|
58
|
+
industry: string | null;
|
|
59
|
+
merchant_category_code: string | null;
|
|
60
|
+
created_at: string;
|
|
61
|
+
updated_at: string;
|
|
62
|
+
}
|
|
63
|
+
interface Pagination {
|
|
64
|
+
page: number;
|
|
65
|
+
page_size: number;
|
|
66
|
+
total_items: number;
|
|
67
|
+
total_pages: number;
|
|
68
|
+
has_next: boolean;
|
|
69
|
+
has_previous: boolean;
|
|
70
|
+
}
|
|
71
|
+
interface RecipientListResponse {
|
|
72
|
+
data: RecipientListItem[];
|
|
73
|
+
pagination: Pagination;
|
|
74
|
+
}
|
|
75
|
+
interface RecipientDetail {
|
|
76
|
+
id: string;
|
|
77
|
+
merchant_recipient_id: string | null;
|
|
78
|
+
national_entity: string;
|
|
79
|
+
entity_type: string | null;
|
|
80
|
+
country: string;
|
|
81
|
+
first_name: string | null;
|
|
82
|
+
last_name: string | null;
|
|
83
|
+
legal_name: string | null;
|
|
84
|
+
email: string | null;
|
|
85
|
+
account_id: string;
|
|
86
|
+
created_at: string;
|
|
87
|
+
updated_at: string;
|
|
88
|
+
document: Document | null;
|
|
89
|
+
phone: Phone | null;
|
|
90
|
+
address: Address | null;
|
|
91
|
+
withdrawal_method: WithdrawalMethod | null;
|
|
92
|
+
documentation: Documentation[];
|
|
93
|
+
legal_representatives: LegalRepresentative[];
|
|
94
|
+
onboardings: OnboardingSummary[];
|
|
95
|
+
}
|
|
96
|
+
interface OnboardingProvider {
|
|
97
|
+
id: string | null;
|
|
98
|
+
connection_id: string | null;
|
|
99
|
+
redirect_url: string | null;
|
|
100
|
+
recipient_id: string | null;
|
|
101
|
+
recipient_additional_id: string | null;
|
|
102
|
+
onboarding_url: string | null;
|
|
103
|
+
legal_entity: string | null;
|
|
104
|
+
balance_account_id: string | null;
|
|
105
|
+
recipient_type: string | null;
|
|
106
|
+
raw_notification: string | null;
|
|
107
|
+
raw_response: string | null;
|
|
108
|
+
response_code: string | null;
|
|
109
|
+
response_message: string | null;
|
|
110
|
+
}
|
|
111
|
+
interface LegalRepresentativeDocument {
|
|
112
|
+
type: string | null;
|
|
113
|
+
number: string | null;
|
|
114
|
+
}
|
|
115
|
+
interface LegalRepresentative {
|
|
116
|
+
merchant_reference: string | null;
|
|
117
|
+
first_name: string | null;
|
|
118
|
+
last_name: string | null;
|
|
119
|
+
email: string | null;
|
|
120
|
+
document: LegalRepresentativeDocument | null;
|
|
121
|
+
phone: Phone | null;
|
|
122
|
+
address: Address | null;
|
|
123
|
+
date_of_birth: string | null;
|
|
124
|
+
country: string | null;
|
|
125
|
+
nationality: string | null;
|
|
126
|
+
title: string | null;
|
|
127
|
+
publicly_exposed_person: boolean | null;
|
|
128
|
+
ultimate_beneficial_owner: boolean | null;
|
|
129
|
+
}
|
|
130
|
+
interface Requirement {
|
|
131
|
+
field: string | null;
|
|
132
|
+
message: string | null;
|
|
133
|
+
status: string | null;
|
|
134
|
+
}
|
|
135
|
+
interface CapabilityRequirement {
|
|
136
|
+
provider_response_code: string | null;
|
|
137
|
+
provider_response_message: string | null;
|
|
138
|
+
provider_response_field: string | null;
|
|
139
|
+
message: string | null;
|
|
140
|
+
status: string | null;
|
|
141
|
+
}
|
|
142
|
+
interface Capability {
|
|
143
|
+
status: string | null;
|
|
144
|
+
requirements: CapabilityRequirement[];
|
|
145
|
+
}
|
|
146
|
+
interface Capabilities {
|
|
147
|
+
payouts: Capability | null;
|
|
148
|
+
send_transfers: Capability | null;
|
|
149
|
+
receive_transfers: Capability | null;
|
|
150
|
+
payments: Capability | null;
|
|
151
|
+
}
|
|
152
|
+
interface TermsOfService {
|
|
153
|
+
acceptance: boolean | null;
|
|
154
|
+
date: string | null;
|
|
155
|
+
ip: string | null;
|
|
156
|
+
}
|
|
157
|
+
interface Metadata {
|
|
158
|
+
key: string;
|
|
159
|
+
value: string;
|
|
160
|
+
}
|
|
161
|
+
interface OnboardingDetail {
|
|
162
|
+
id: string;
|
|
163
|
+
type: string;
|
|
164
|
+
workflow: string;
|
|
165
|
+
description: string | null;
|
|
166
|
+
status: string;
|
|
167
|
+
response_message: string | null;
|
|
168
|
+
callback_url: string | null;
|
|
169
|
+
provider: OnboardingProvider | null;
|
|
170
|
+
documentation: Documentation[];
|
|
171
|
+
legal_representatives: LegalRepresentative[];
|
|
172
|
+
withdrawal_methods: WithdrawalMethod | null;
|
|
173
|
+
requirements: Requirement[];
|
|
174
|
+
capabilities: Capabilities | null;
|
|
175
|
+
terms_of_service: TermsOfService | null;
|
|
176
|
+
metadata: Metadata[];
|
|
177
|
+
created_at: string;
|
|
178
|
+
updated_at: string;
|
|
179
|
+
expires_at: string | null;
|
|
180
|
+
}
|
|
181
|
+
interface TimelineEventData {
|
|
182
|
+
provider_id?: string | null;
|
|
183
|
+
provider_status?: string | null;
|
|
184
|
+
provider_response_code?: string | null;
|
|
185
|
+
provider_response_message?: string | null;
|
|
186
|
+
provider_recipient_id?: string | null;
|
|
187
|
+
provider_redirect_url?: string | null;
|
|
188
|
+
requirements?: Requirement[];
|
|
189
|
+
capabilities?: Capabilities | null;
|
|
190
|
+
change_type?: string | null;
|
|
191
|
+
}
|
|
192
|
+
interface TimelineEvent {
|
|
193
|
+
timestamp: string;
|
|
194
|
+
event_type: string;
|
|
195
|
+
status: string | null;
|
|
196
|
+
event_data: TimelineEventData | null;
|
|
197
|
+
}
|
|
198
|
+
type OnboardingTimeline = TimelineEvent[];
|
|
199
|
+
}
|
|
200
|
+
export interface GetRecipientsParams {
|
|
201
|
+
account_ids?: string;
|
|
202
|
+
countries?: string;
|
|
203
|
+
national_entities?: string;
|
|
204
|
+
entity_types?: string;
|
|
205
|
+
start_date?: string;
|
|
206
|
+
end_date?: string;
|
|
207
|
+
search_type?: string;
|
|
208
|
+
search_value?: string;
|
|
209
|
+
page?: number;
|
|
210
|
+
page_size?: number;
|
|
211
|
+
sort_by?: string;
|
|
212
|
+
sort_order?: string;
|
|
213
|
+
}
|
|
214
|
+
export interface GetRecipientByIdParams {
|
|
215
|
+
recipient_id: string;
|
|
216
|
+
}
|
|
217
|
+
export interface GetOnboardingDetailParams {
|
|
218
|
+
recipient_id: string;
|
|
219
|
+
onboarding_id: string;
|
|
220
|
+
}
|
|
221
|
+
export interface GetOnboardingTimelineParams {
|
|
222
|
+
onboarding_id: string;
|
|
223
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './reconciliation';
|
|
2
|
+
export * from './reconciliation-alerts';
|
|
3
|
+
export * from './reconciliation-agenda';
|
|
4
|
+
export * from './reconciliation-sales';
|
|
5
|
+
export * from './reconciliation-advancements';
|
|
6
|
+
export * from './reconciliation-fees';
|
|
7
|
+
export * from './reconciliation-insights';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export declare namespace ReconciliationAdvancements {
|
|
2
|
+
interface Advancements {
|
|
3
|
+
operation_id: string;
|
|
4
|
+
merchant_id: string;
|
|
5
|
+
product_id: string;
|
|
6
|
+
ur_key: string;
|
|
7
|
+
operation_type: string;
|
|
8
|
+
movement_type: string;
|
|
9
|
+
operation_date: string;
|
|
10
|
+
operation_settlement_date: string;
|
|
11
|
+
ur_operation_date: string;
|
|
12
|
+
ur_original_settlement_date: string;
|
|
13
|
+
negotiation_gross_amount: number;
|
|
14
|
+
negotiation_fees: number;
|
|
15
|
+
negotiation_net_amount: number;
|
|
16
|
+
ur_gross_amount: number;
|
|
17
|
+
ur_fees: number;
|
|
18
|
+
ur_net_amount: number;
|
|
19
|
+
bank: string;
|
|
20
|
+
bank_agency: string;
|
|
21
|
+
bank_account: string;
|
|
22
|
+
country: string;
|
|
23
|
+
acquirer: string;
|
|
24
|
+
ur_currency: string;
|
|
25
|
+
}
|
|
26
|
+
interface FiltersRequestParams {
|
|
27
|
+
page_number: number;
|
|
28
|
+
page_size: number;
|
|
29
|
+
}
|
|
30
|
+
interface FiltersRequestBody {
|
|
31
|
+
accounts?: string[];
|
|
32
|
+
acquirers?: string[];
|
|
33
|
+
countries?: string[];
|
|
34
|
+
start_date?: string;
|
|
35
|
+
end_date?: string;
|
|
36
|
+
}
|
|
37
|
+
interface GetAllReconciliationsAdvancementsResponse extends FiltersRequestParams {
|
|
38
|
+
items: Advancements[];
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
export declare namespace ReconciliationAgenda {
|
|
2
|
+
interface Agenda {
|
|
3
|
+
ur_key: string;
|
|
4
|
+
country: string;
|
|
5
|
+
type_transaction: string;
|
|
6
|
+
payment_method_category: string;
|
|
7
|
+
payment_method_type: string;
|
|
8
|
+
provider_id: string;
|
|
9
|
+
customer_id: string;
|
|
10
|
+
payment_id: string;
|
|
11
|
+
merchant_order_id: string;
|
|
12
|
+
merchant_transaction_id: string;
|
|
13
|
+
transaction_id: string;
|
|
14
|
+
provider_transaction_id: string;
|
|
15
|
+
third_party_transaction_id: string;
|
|
16
|
+
status_payment: string;
|
|
17
|
+
response_code: string;
|
|
18
|
+
provider_status: string;
|
|
19
|
+
transaction_amount: number;
|
|
20
|
+
currency: string;
|
|
21
|
+
card_type: string;
|
|
22
|
+
card_brand: string;
|
|
23
|
+
card_iin: string;
|
|
24
|
+
card_lfd: string;
|
|
25
|
+
authorization_code: string;
|
|
26
|
+
installments: number;
|
|
27
|
+
installment_number: number;
|
|
28
|
+
installment_amount: number;
|
|
29
|
+
pnr: string;
|
|
30
|
+
created_at: string;
|
|
31
|
+
updated_at: string;
|
|
32
|
+
agenda_status: string;
|
|
33
|
+
agenda_sub_status: string;
|
|
34
|
+
sales_reconciliation_date: string;
|
|
35
|
+
provider_intended_settlement_date: string;
|
|
36
|
+
provider_confirmation_date: string;
|
|
37
|
+
bank_account: string;
|
|
38
|
+
bank_agency: string;
|
|
39
|
+
bank: string;
|
|
40
|
+
advancement_amount: number;
|
|
41
|
+
provider_fees: number;
|
|
42
|
+
provider_taxes: number;
|
|
43
|
+
pending_amount: number;
|
|
44
|
+
acquirer: string;
|
|
45
|
+
}
|
|
46
|
+
interface InsightValue {
|
|
47
|
+
key: string;
|
|
48
|
+
value: number;
|
|
49
|
+
color?: string;
|
|
50
|
+
percentage?: number;
|
|
51
|
+
}
|
|
52
|
+
interface FiltersRequestParams {
|
|
53
|
+
page_number: number;
|
|
54
|
+
page_size: number;
|
|
55
|
+
}
|
|
56
|
+
interface InsightRequestParams {
|
|
57
|
+
insight_type: ReconciliationAgendaInsight;
|
|
58
|
+
}
|
|
59
|
+
interface FiltersRequestBody {
|
|
60
|
+
acquirers?: string[];
|
|
61
|
+
accounts?: string[];
|
|
62
|
+
countries?: string[];
|
|
63
|
+
providers?: string[];
|
|
64
|
+
}
|
|
65
|
+
interface GetAllReconciliationsAgendaResponse extends FiltersRequestParams {
|
|
66
|
+
agenda: Agenda[];
|
|
67
|
+
}
|
|
68
|
+
interface AmountToBeSettled {
|
|
69
|
+
amount_to_be_settled: number;
|
|
70
|
+
currency: string;
|
|
71
|
+
}
|
|
72
|
+
interface InsightDistribution {
|
|
73
|
+
items: InsightValue[];
|
|
74
|
+
total: number;
|
|
75
|
+
average: number;
|
|
76
|
+
}
|
|
77
|
+
type GetReconciliationsAgendaInsightsResponse = InsightDistribution | AmountToBeSettled;
|
|
78
|
+
}
|
|
79
|
+
export declare enum ReconciliationAgendaInsight {
|
|
80
|
+
TOTAL_AMOUNT = "AGENDA_TOTAL_AMOUNT",
|
|
81
|
+
DAILY = "AGENDA_DAILY_DISTRIBUTION",
|
|
82
|
+
PAYMENT_METHOD = "AGENDA_PAYMENT_METHOD_DISTRIBUTION",
|
|
83
|
+
CARD_BRAND = "AGENDA_CARD_BRAND_DISTRIBUTION"
|
|
84
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export declare namespace ReconciliationAlerts {
|
|
2
|
+
interface Alert {
|
|
3
|
+
alert_id?: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
provider: string;
|
|
7
|
+
country: string;
|
|
8
|
+
alert_type: string;
|
|
9
|
+
emails: string[];
|
|
10
|
+
accounts: string[];
|
|
11
|
+
conditions: string;
|
|
12
|
+
created_at: string;
|
|
13
|
+
updated_at: string;
|
|
14
|
+
}
|
|
15
|
+
interface ReconciliationAlertFiltersParams {
|
|
16
|
+
page_number: number;
|
|
17
|
+
page_size: number;
|
|
18
|
+
}
|
|
19
|
+
interface ReconciliationAlertFiltersBody {
|
|
20
|
+
start_date: string;
|
|
21
|
+
end_date: string;
|
|
22
|
+
accounts?: string[];
|
|
23
|
+
countries?: string[];
|
|
24
|
+
providers?: string[];
|
|
25
|
+
search?: string;
|
|
26
|
+
}
|
|
27
|
+
type ReconciliationAlertToSave = Omit<Alert, 'alert_id' | 'created_at' | 'updated_at'>;
|
|
28
|
+
type ReconciliationAlertToUpdate = Omit<Alert, 'created_at' | 'updated_at'>;
|
|
29
|
+
type GetAllReconciliationsAlertsResponse = {
|
|
30
|
+
page: number;
|
|
31
|
+
page_size: number;
|
|
32
|
+
total_pages: number;
|
|
33
|
+
total: number;
|
|
34
|
+
alerts: Alert[];
|
|
35
|
+
};
|
|
36
|
+
type PostReconciliationAlertRespose = Alert;
|
|
37
|
+
type DeleteReconciliationAlertResponse = Pick<Alert, 'alert_id'>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export declare namespace ReconciliationFees {
|
|
2
|
+
interface Fees {
|
|
3
|
+
transaction_id: string;
|
|
4
|
+
provider_transaction_id: string;
|
|
5
|
+
card_iin: string;
|
|
6
|
+
card_lfd: string;
|
|
7
|
+
authorization_code: string;
|
|
8
|
+
acquirer_type: string;
|
|
9
|
+
acquirer_gross_amount: number;
|
|
10
|
+
acquirer_real_amount: number;
|
|
11
|
+
acquirer_fees: number;
|
|
12
|
+
acquirer_taxes: number;
|
|
13
|
+
country: string;
|
|
14
|
+
type: string;
|
|
15
|
+
gross_field: string;
|
|
16
|
+
percentage_cost: number;
|
|
17
|
+
fix_cost: number;
|
|
18
|
+
calculated_fix_costed_fee: number;
|
|
19
|
+
calculated_percentage_cost: number;
|
|
20
|
+
acquirer_net_amount: number;
|
|
21
|
+
calculated_net_amount: number;
|
|
22
|
+
fee_taxes_diff: number;
|
|
23
|
+
fee_status: string;
|
|
24
|
+
fee_sub_status: string;
|
|
25
|
+
currency: string;
|
|
26
|
+
acquirer: string;
|
|
27
|
+
settlement_date: string;
|
|
28
|
+
}
|
|
29
|
+
interface FiltersRequestParams {
|
|
30
|
+
page_number: number;
|
|
31
|
+
page_size: number;
|
|
32
|
+
}
|
|
33
|
+
interface FiltersRequestBody {
|
|
34
|
+
accounts?: string[];
|
|
35
|
+
acquirers?: string[];
|
|
36
|
+
countries?: string[];
|
|
37
|
+
start_date: string;
|
|
38
|
+
end_date: string;
|
|
39
|
+
fee_status?: string;
|
|
40
|
+
fee_sub_status?: string;
|
|
41
|
+
}
|
|
42
|
+
interface GetAllReconciliationsFeesResponse extends FiltersRequestParams {
|
|
43
|
+
items: Fees[];
|
|
44
|
+
}
|
|
45
|
+
}
|