@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,188 @@
|
|
|
1
|
+
export declare namespace ReconciliationInsights {
|
|
2
|
+
interface BaseFilters {
|
|
3
|
+
accounts: string[];
|
|
4
|
+
start_date: string;
|
|
5
|
+
end_date: string;
|
|
6
|
+
countries?: string[];
|
|
7
|
+
currency_codes?: string[];
|
|
8
|
+
}
|
|
9
|
+
export interface BaseFiltersWithProvider extends BaseFilters {
|
|
10
|
+
providers?: string[];
|
|
11
|
+
}
|
|
12
|
+
export interface BaseFiltersWithAcquirer extends BaseFilters {
|
|
13
|
+
acquirers?: string[];
|
|
14
|
+
}
|
|
15
|
+
export interface ListFiltersWithProvider extends BaseFiltersWithProvider {
|
|
16
|
+
page?: number;
|
|
17
|
+
page_size?: number;
|
|
18
|
+
}
|
|
19
|
+
export interface ListFiltersWithAcquirer extends BaseFiltersWithAcquirer {
|
|
20
|
+
page?: number;
|
|
21
|
+
page_size?: number;
|
|
22
|
+
}
|
|
23
|
+
export type DateFilterType = 'by_settlement_date' | 'by_transaction_date';
|
|
24
|
+
export interface SummaryTotal {
|
|
25
|
+
transactions: number;
|
|
26
|
+
amount_local: number;
|
|
27
|
+
amount_usd: number;
|
|
28
|
+
currency_code_local: string;
|
|
29
|
+
}
|
|
30
|
+
export interface GenericSummaryItem extends SummaryTotal {
|
|
31
|
+
id: string;
|
|
32
|
+
}
|
|
33
|
+
export interface NotReconciledSummaryItem extends GenericSummaryItem {
|
|
34
|
+
total_transactions: number;
|
|
35
|
+
}
|
|
36
|
+
export interface ReconciledSummaryItem extends GenericSummaryItem {
|
|
37
|
+
transaction_type: string;
|
|
38
|
+
}
|
|
39
|
+
export interface GenericChartSummary<T = GenericSummaryItem> {
|
|
40
|
+
data: T[];
|
|
41
|
+
total: SummaryTotal;
|
|
42
|
+
}
|
|
43
|
+
export interface ChartWithGraph {
|
|
44
|
+
total_amount_usd: number;
|
|
45
|
+
chart_data: Array<{
|
|
46
|
+
date: string;
|
|
47
|
+
amount_usd: number;
|
|
48
|
+
}>;
|
|
49
|
+
}
|
|
50
|
+
export interface AggregatorByCurrency extends SummaryTotal {
|
|
51
|
+
currency_code: string;
|
|
52
|
+
}
|
|
53
|
+
export interface AggregatorByConnection extends SummaryTotal {
|
|
54
|
+
connection_name: string;
|
|
55
|
+
}
|
|
56
|
+
export interface AggregatorByBrand extends SummaryTotal {
|
|
57
|
+
brand: string;
|
|
58
|
+
}
|
|
59
|
+
export interface AggregatorByPaymentMethod extends SummaryTotal {
|
|
60
|
+
payment_method: string;
|
|
61
|
+
}
|
|
62
|
+
export interface Aggregators {
|
|
63
|
+
by_currency: AggregatorByCurrency[];
|
|
64
|
+
by_connection: AggregatorByConnection[];
|
|
65
|
+
by_brand: AggregatorByBrand[];
|
|
66
|
+
by_payment_method: AggregatorByPaymentMethod[];
|
|
67
|
+
total: SummaryTotal;
|
|
68
|
+
}
|
|
69
|
+
export interface PaginationInfo {
|
|
70
|
+
total: number;
|
|
71
|
+
page: number;
|
|
72
|
+
page_size: number;
|
|
73
|
+
total_pages: number;
|
|
74
|
+
}
|
|
75
|
+
export interface ReconciliationOverviewItem {
|
|
76
|
+
authorization_code: string;
|
|
77
|
+
card_category: string;
|
|
78
|
+
country: string;
|
|
79
|
+
created_at: string;
|
|
80
|
+
currency: string;
|
|
81
|
+
payment_method_category: string;
|
|
82
|
+
provider_id: string;
|
|
83
|
+
reconciliation_status: string;
|
|
84
|
+
reconciliation_sub_status: string;
|
|
85
|
+
}
|
|
86
|
+
export interface ReconciliationOverviewList {
|
|
87
|
+
data: ReconciliationOverviewItem[];
|
|
88
|
+
pagination: PaginationInfo;
|
|
89
|
+
}
|
|
90
|
+
export interface SettlementAndFeeItem {
|
|
91
|
+
transaction_id: string;
|
|
92
|
+
transaction_date: string;
|
|
93
|
+
acquirer: string;
|
|
94
|
+
authorization_code: string;
|
|
95
|
+
card_brand: string;
|
|
96
|
+
card_iin: string;
|
|
97
|
+
card_lfd: string;
|
|
98
|
+
card_type: string;
|
|
99
|
+
country: string;
|
|
100
|
+
currency: string;
|
|
101
|
+
fee_status: string;
|
|
102
|
+
fee_sub_status: string;
|
|
103
|
+
fee_taxes_diff: number;
|
|
104
|
+
calculated_fix_costed_fee: number;
|
|
105
|
+
calculated_percentage_cost: number;
|
|
106
|
+
percentage_cost: number;
|
|
107
|
+
merchant_order_id: string;
|
|
108
|
+
provider_transaction_id: string;
|
|
109
|
+
reconciliation_status: string;
|
|
110
|
+
reconciliation_sub_status: string;
|
|
111
|
+
type: string;
|
|
112
|
+
}
|
|
113
|
+
export interface SettlementAndFeeList {
|
|
114
|
+
data: SettlementAndFeeItem[];
|
|
115
|
+
pagination: PaginationInfo;
|
|
116
|
+
}
|
|
117
|
+
export interface ProcessedTransactionItem {
|
|
118
|
+
transaction_id: string;
|
|
119
|
+
acquirer: string;
|
|
120
|
+
amount: number;
|
|
121
|
+
authorization_code: string;
|
|
122
|
+
card_brand: string;
|
|
123
|
+
card_iin: string;
|
|
124
|
+
card_lfd: string;
|
|
125
|
+
card_type: string;
|
|
126
|
+
confirmation_status: string;
|
|
127
|
+
country: string;
|
|
128
|
+
created_at: string;
|
|
129
|
+
currency: string;
|
|
130
|
+
merchant_order_id: string;
|
|
131
|
+
merchant_transaction_id: string;
|
|
132
|
+
payment_id: string;
|
|
133
|
+
provider_status: string;
|
|
134
|
+
provider_transaction_id: string;
|
|
135
|
+
response_code: string;
|
|
136
|
+
status: string;
|
|
137
|
+
type: string;
|
|
138
|
+
}
|
|
139
|
+
export interface ProcessedTransactionList {
|
|
140
|
+
data: ProcessedTransactionItem[];
|
|
141
|
+
pagination: PaginationInfo;
|
|
142
|
+
}
|
|
143
|
+
export interface ConflictsSummary {
|
|
144
|
+
not_reconciled: GenericChartSummary<NotReconciledSummaryItem>;
|
|
145
|
+
status_conflict: GenericChartSummary;
|
|
146
|
+
amount_conflict: GenericChartSummary;
|
|
147
|
+
}
|
|
148
|
+
export interface ReconciliationRateTotal {
|
|
149
|
+
total_transactions: number;
|
|
150
|
+
transactions_percentage: number;
|
|
151
|
+
}
|
|
152
|
+
export interface ReconciliationRateByProviderDay {
|
|
153
|
+
transaction_date: string;
|
|
154
|
+
total_transactions: number;
|
|
155
|
+
reconciled_transactions: number;
|
|
156
|
+
}
|
|
157
|
+
export interface ReconciliationRateItem {
|
|
158
|
+
code: string;
|
|
159
|
+
total_transactions: number;
|
|
160
|
+
transactions_percentage: number;
|
|
161
|
+
}
|
|
162
|
+
export interface ReconciliationRateByProvider extends ReconciliationRateItem {
|
|
163
|
+
metrics: ReconciliationRateByProviderDay[];
|
|
164
|
+
}
|
|
165
|
+
export interface ReconciliationRateByProviderResponse {
|
|
166
|
+
total: ReconciliationRateTotal;
|
|
167
|
+
data: ReconciliationRateByProvider[];
|
|
168
|
+
}
|
|
169
|
+
export interface UseInsightsQueryProps<T> {
|
|
170
|
+
body: T;
|
|
171
|
+
enabled?: boolean;
|
|
172
|
+
}
|
|
173
|
+
export interface UseInsightsQueryWithDateFilterProps<T> {
|
|
174
|
+
body: T;
|
|
175
|
+
dateFilter?: DateFilterType;
|
|
176
|
+
transactionType?: string;
|
|
177
|
+
enabled?: boolean;
|
|
178
|
+
}
|
|
179
|
+
export interface UseInsightsListQueryProps<T> {
|
|
180
|
+
body: T;
|
|
181
|
+
enabled?: boolean;
|
|
182
|
+
}
|
|
183
|
+
export interface Error {
|
|
184
|
+
code?: string;
|
|
185
|
+
message?: string;
|
|
186
|
+
}
|
|
187
|
+
export {};
|
|
188
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export declare namespace ReconciliationSales {
|
|
2
|
+
interface Sales {
|
|
3
|
+
transaction_id: string;
|
|
4
|
+
payment_method_category: string;
|
|
5
|
+
type: string;
|
|
6
|
+
payment_method_type: string;
|
|
7
|
+
provider_id: string;
|
|
8
|
+
status: string;
|
|
9
|
+
response_code: string;
|
|
10
|
+
amount: number;
|
|
11
|
+
created_at: string;
|
|
12
|
+
updated_at: string;
|
|
13
|
+
provider_status: string;
|
|
14
|
+
merchant_transaction_id: string;
|
|
15
|
+
provider_transaction_id: string;
|
|
16
|
+
country: string;
|
|
17
|
+
customer_id: string;
|
|
18
|
+
description: string;
|
|
19
|
+
merchant_order_id: string;
|
|
20
|
+
payment_id: string;
|
|
21
|
+
currency: string;
|
|
22
|
+
card_issuer_name: string;
|
|
23
|
+
card_issuer_country: string;
|
|
24
|
+
card_category: string;
|
|
25
|
+
card_expiration_month: number;
|
|
26
|
+
card_expiration_year: number;
|
|
27
|
+
pnr: string;
|
|
28
|
+
retrieval_reference_number: string;
|
|
29
|
+
card_iin: string;
|
|
30
|
+
card_lfd: string;
|
|
31
|
+
authorization_code: string;
|
|
32
|
+
installments: number;
|
|
33
|
+
card_type: string;
|
|
34
|
+
card_brand: string;
|
|
35
|
+
provider_card_brand: string;
|
|
36
|
+
confirmation_status: string;
|
|
37
|
+
provider_confirmation_date: string;
|
|
38
|
+
acquirer: string;
|
|
39
|
+
}
|
|
40
|
+
interface FiltersRequestParams {
|
|
41
|
+
page_number: number;
|
|
42
|
+
page_size: number;
|
|
43
|
+
}
|
|
44
|
+
interface FiltersRequestBody {
|
|
45
|
+
accounts?: string[];
|
|
46
|
+
providers?: string[];
|
|
47
|
+
acquirers?: string[];
|
|
48
|
+
countries?: string[];
|
|
49
|
+
types?: string[];
|
|
50
|
+
start_date: string;
|
|
51
|
+
end_date: string;
|
|
52
|
+
}
|
|
53
|
+
interface GetAllReconciliationsSalesResponse extends FiltersRequestParams {
|
|
54
|
+
items: Sales[];
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
import { Reports } from '../reports';
|
|
2
|
+
export declare namespace Reconciliation {
|
|
3
|
+
type Template = {
|
|
4
|
+
id: number;
|
|
5
|
+
name: string;
|
|
6
|
+
columns: string[];
|
|
7
|
+
organization_code: string;
|
|
8
|
+
type: string;
|
|
9
|
+
};
|
|
10
|
+
type GetReconciliationsReportTemplatesResponse = {
|
|
11
|
+
templates: Template[];
|
|
12
|
+
};
|
|
13
|
+
type GetReconciliationsReportColumnsResponse = {
|
|
14
|
+
columns: Reports.IColumn[];
|
|
15
|
+
};
|
|
16
|
+
type SettlementHeaderQuery = {
|
|
17
|
+
currency?: string;
|
|
18
|
+
account_code?: string;
|
|
19
|
+
acquirer?: string;
|
|
20
|
+
page: number;
|
|
21
|
+
size: number;
|
|
22
|
+
sort?: string;
|
|
23
|
+
start_date?: string;
|
|
24
|
+
end_date?: string;
|
|
25
|
+
reconciliation_status?: string;
|
|
26
|
+
reconciliation_sub_status?: string;
|
|
27
|
+
settlement_batch_id?: number;
|
|
28
|
+
provider_merchant_id?: string;
|
|
29
|
+
country?: string;
|
|
30
|
+
payment_method_category?: string;
|
|
31
|
+
payment_method_type?: string;
|
|
32
|
+
provider_id?: string;
|
|
33
|
+
payment_id?: string;
|
|
34
|
+
merchant_order_id?: string;
|
|
35
|
+
amount?: string;
|
|
36
|
+
merchant_reference?: string;
|
|
37
|
+
transaction_id?: string;
|
|
38
|
+
provider_transaction_id?: string;
|
|
39
|
+
transaction_date?: string;
|
|
40
|
+
type?: string;
|
|
41
|
+
gross_currency?: string;
|
|
42
|
+
gross_credit?: string;
|
|
43
|
+
gross_debit?: string;
|
|
44
|
+
fee_rate?: string;
|
|
45
|
+
fx_rate?: string;
|
|
46
|
+
settlement_gross_amount?: string;
|
|
47
|
+
settlement_fees?: string;
|
|
48
|
+
settlement_fee_taxes?: string;
|
|
49
|
+
settlement_taxes?: string;
|
|
50
|
+
cost_of_installment_rate?: string;
|
|
51
|
+
settlement_cost_of_installments?: string;
|
|
52
|
+
settlement_net_credit?: string;
|
|
53
|
+
settlement_net_debit?: string;
|
|
54
|
+
card_type?: string;
|
|
55
|
+
card_brand?: string;
|
|
56
|
+
card_iin?: string;
|
|
57
|
+
card_lfd?: string;
|
|
58
|
+
authorization_code?: string;
|
|
59
|
+
customer_id?: string;
|
|
60
|
+
voucher?: string;
|
|
61
|
+
installments?: string;
|
|
62
|
+
installment_number?: string;
|
|
63
|
+
pnr?: string;
|
|
64
|
+
reconciliation_date?: string;
|
|
65
|
+
reconciliation_id?: string;
|
|
66
|
+
};
|
|
67
|
+
type Section = {
|
|
68
|
+
active: boolean;
|
|
69
|
+
};
|
|
70
|
+
type TableColumn = {
|
|
71
|
+
name: string;
|
|
72
|
+
enable_search: boolean;
|
|
73
|
+
};
|
|
74
|
+
type TableType = 'transactions' | 'settlements';
|
|
75
|
+
type Error = {
|
|
76
|
+
code?: string;
|
|
77
|
+
name?: string;
|
|
78
|
+
};
|
|
79
|
+
type UseGetReconciliationTransactionsParams = {
|
|
80
|
+
start_date?: string | Date;
|
|
81
|
+
end_date?: string | Date;
|
|
82
|
+
page: number;
|
|
83
|
+
size: number;
|
|
84
|
+
enabled?: boolean;
|
|
85
|
+
account_code?: string;
|
|
86
|
+
provider_id?: string;
|
|
87
|
+
currency?: string;
|
|
88
|
+
country?: string;
|
|
89
|
+
sort?: string;
|
|
90
|
+
reconciliation_status?: string;
|
|
91
|
+
reconciliation_sub_status?: string;
|
|
92
|
+
transaction_id?: string;
|
|
93
|
+
};
|
|
94
|
+
type GetSettlementsBodyParams = {
|
|
95
|
+
acquirer?: string;
|
|
96
|
+
settlement_date?: string;
|
|
97
|
+
settlement_batch_id?: string;
|
|
98
|
+
settlement_currency?: string;
|
|
99
|
+
page: number;
|
|
100
|
+
size: number;
|
|
101
|
+
};
|
|
102
|
+
interface Transaction {
|
|
103
|
+
primary_key: string;
|
|
104
|
+
account_code: string;
|
|
105
|
+
country: string;
|
|
106
|
+
type: string;
|
|
107
|
+
payment_method_category: string;
|
|
108
|
+
payment_method_type: string;
|
|
109
|
+
provider_id: string;
|
|
110
|
+
customer_code: string;
|
|
111
|
+
payment_id: string;
|
|
112
|
+
order_id: string;
|
|
113
|
+
merchant_transaction_id: string;
|
|
114
|
+
transaction_id: string;
|
|
115
|
+
provider_transaction_id: string;
|
|
116
|
+
status: string;
|
|
117
|
+
response_code: string;
|
|
118
|
+
provider_status: string;
|
|
119
|
+
amount: string;
|
|
120
|
+
currency_code: string;
|
|
121
|
+
card_type: string;
|
|
122
|
+
card_brand: string;
|
|
123
|
+
card_iin: string;
|
|
124
|
+
card_lfd: string;
|
|
125
|
+
authorization_code: string;
|
|
126
|
+
installments: string;
|
|
127
|
+
pnr: string;
|
|
128
|
+
created_at: string;
|
|
129
|
+
updated_at: string;
|
|
130
|
+
reconciliation_status: string;
|
|
131
|
+
reconciliation_sub_status: string;
|
|
132
|
+
reconciliation_date: string;
|
|
133
|
+
reconciliation_id: string;
|
|
134
|
+
}
|
|
135
|
+
type Settlement = {
|
|
136
|
+
primary_key: string;
|
|
137
|
+
organization_code: string;
|
|
138
|
+
account_id: string;
|
|
139
|
+
provider_merchant_id: string;
|
|
140
|
+
country: string;
|
|
141
|
+
settlement_batch_id: string;
|
|
142
|
+
settlement_date: string;
|
|
143
|
+
payment_method_category: string;
|
|
144
|
+
payment_method_type: string;
|
|
145
|
+
provider_id: string;
|
|
146
|
+
acquirer: string;
|
|
147
|
+
payment_id: string;
|
|
148
|
+
merchant_order_id: string;
|
|
149
|
+
amount: number;
|
|
150
|
+
merchant_reference: string;
|
|
151
|
+
transaction_id: string;
|
|
152
|
+
provider_transaction_id: string;
|
|
153
|
+
transaction_date: string;
|
|
154
|
+
type: string;
|
|
155
|
+
gross_currency: string;
|
|
156
|
+
gross_credit: number;
|
|
157
|
+
gross_debit: number;
|
|
158
|
+
fee_rate: number;
|
|
159
|
+
settlement_currency: string;
|
|
160
|
+
fx_rate: number;
|
|
161
|
+
settlement_gross_amount: number;
|
|
162
|
+
settlement_fees: number;
|
|
163
|
+
settlement_fee_taxes: number;
|
|
164
|
+
settlement_taxes: number;
|
|
165
|
+
cost_of_installment_rate: number;
|
|
166
|
+
settlement_cost_of_installments: number;
|
|
167
|
+
settlement_net_credit: number;
|
|
168
|
+
settlement_net_debit: number;
|
|
169
|
+
card_type: string;
|
|
170
|
+
card_brand: string;
|
|
171
|
+
card_iin: string;
|
|
172
|
+
card_lfd: string;
|
|
173
|
+
authorization_code: string;
|
|
174
|
+
customer_id: string;
|
|
175
|
+
voucher: string;
|
|
176
|
+
installments: number;
|
|
177
|
+
installment_number: number;
|
|
178
|
+
pnr: string;
|
|
179
|
+
reconciliation_status: string;
|
|
180
|
+
reconciliation_sub_status: string;
|
|
181
|
+
reconciliation_date: string;
|
|
182
|
+
reconciliation_id: string;
|
|
183
|
+
};
|
|
184
|
+
interface SettlementHeader {
|
|
185
|
+
type: string;
|
|
186
|
+
provider_id: string;
|
|
187
|
+
number_of_transactions: string;
|
|
188
|
+
gross_currency: string;
|
|
189
|
+
gross_credit: string;
|
|
190
|
+
gross_debit: string;
|
|
191
|
+
settlement_currency: string;
|
|
192
|
+
settlement_gross_amount: string;
|
|
193
|
+
settlement_credit_fees: number;
|
|
194
|
+
settlement_debit_fees: number;
|
|
195
|
+
settlement_fee_taxes: number;
|
|
196
|
+
settlement_taxes: number;
|
|
197
|
+
settlement_cost_of_installments: number;
|
|
198
|
+
settlement_net_credit: string;
|
|
199
|
+
settlement_net_debit: string | null;
|
|
200
|
+
settlement_net_balance: string;
|
|
201
|
+
settlement_batch_id: string;
|
|
202
|
+
settlement_date: string;
|
|
203
|
+
country: string;
|
|
204
|
+
acquirer: string;
|
|
205
|
+
settlement_fees_total: number;
|
|
206
|
+
settlement_taxes_total: number;
|
|
207
|
+
}
|
|
208
|
+
type SettlementBody = {
|
|
209
|
+
account_code: string;
|
|
210
|
+
provider_merchant_id: string;
|
|
211
|
+
country: string;
|
|
212
|
+
settlement_batch_id: string;
|
|
213
|
+
settlement_date: string;
|
|
214
|
+
payment_method_category: string;
|
|
215
|
+
payment_method_type: string;
|
|
216
|
+
provider_id: string;
|
|
217
|
+
acquirer: string;
|
|
218
|
+
payment_id: string;
|
|
219
|
+
order_id: string;
|
|
220
|
+
amount: null;
|
|
221
|
+
merchant_transaction_id: string;
|
|
222
|
+
transaction_id: string;
|
|
223
|
+
provider_transaction_id: string;
|
|
224
|
+
transaction_date: string;
|
|
225
|
+
type: string;
|
|
226
|
+
gross_currency: string;
|
|
227
|
+
gross_credit: string;
|
|
228
|
+
gross_debit: null;
|
|
229
|
+
fee_rate: null;
|
|
230
|
+
settlement_currency: string;
|
|
231
|
+
fx_rate: string;
|
|
232
|
+
settlement_gross_amount: string;
|
|
233
|
+
settlement_fees: string;
|
|
234
|
+
settlement_fee_taxes: null;
|
|
235
|
+
settlement_taxes: null;
|
|
236
|
+
cost_of_installment_rate: null;
|
|
237
|
+
settlement_cost_of_installments: null;
|
|
238
|
+
settlement_net_credit: string;
|
|
239
|
+
settlement_net_debit: null;
|
|
240
|
+
card_type: string;
|
|
241
|
+
card_brand: string;
|
|
242
|
+
card_iin: string;
|
|
243
|
+
card_lfd: string;
|
|
244
|
+
authorization_code: string;
|
|
245
|
+
customer_id: string;
|
|
246
|
+
voucher: string;
|
|
247
|
+
installments: string;
|
|
248
|
+
installment_number: string;
|
|
249
|
+
pnr: string;
|
|
250
|
+
reconciliation_status: string;
|
|
251
|
+
reconciliation_sub_status: string;
|
|
252
|
+
reconciliation_date: string;
|
|
253
|
+
reconciliation_id: string;
|
|
254
|
+
};
|
|
255
|
+
type SettlementBodyParam = {
|
|
256
|
+
acquirer?: string;
|
|
257
|
+
settlement_date?: string;
|
|
258
|
+
start_date?: string;
|
|
259
|
+
end_date?: string;
|
|
260
|
+
settlement_currency?: string;
|
|
261
|
+
page: number;
|
|
262
|
+
size: number;
|
|
263
|
+
};
|
|
264
|
+
interface TransactionList {
|
|
265
|
+
content: Array<Transaction>;
|
|
266
|
+
number: number;
|
|
267
|
+
number_of_elements: number;
|
|
268
|
+
size: number;
|
|
269
|
+
total_elements: number;
|
|
270
|
+
total_pages: number;
|
|
271
|
+
}
|
|
272
|
+
type MetricByDayProvider = {
|
|
273
|
+
provider_id: string;
|
|
274
|
+
Metrics: {
|
|
275
|
+
transaction_date: string;
|
|
276
|
+
total_transactions: number;
|
|
277
|
+
reconciled_transactions: number;
|
|
278
|
+
transactions_allocation: number;
|
|
279
|
+
}[];
|
|
280
|
+
};
|
|
281
|
+
type Metrics = {
|
|
282
|
+
reconciled_rate_total: {
|
|
283
|
+
reconciliation_status: string;
|
|
284
|
+
total_transactions: number;
|
|
285
|
+
transactions_percentage: number;
|
|
286
|
+
total_amount: number;
|
|
287
|
+
amount_percentage: number;
|
|
288
|
+
}[] | null;
|
|
289
|
+
reconciled_rate_by_provider: {
|
|
290
|
+
reconciliation_status: string;
|
|
291
|
+
provider_id: string;
|
|
292
|
+
transactions: number;
|
|
293
|
+
total_transactions: number;
|
|
294
|
+
transactions_percentage: number;
|
|
295
|
+
total_amount: number;
|
|
296
|
+
amount_percentage: number;
|
|
297
|
+
}[] | null;
|
|
298
|
+
reconciled_rate_by_currency: {
|
|
299
|
+
reconciliation_status: string;
|
|
300
|
+
currency_code: string;
|
|
301
|
+
transactions: number;
|
|
302
|
+
total_transactions: number;
|
|
303
|
+
transactions_percentage: number;
|
|
304
|
+
total_amount: number;
|
|
305
|
+
amount_percentage: number;
|
|
306
|
+
}[] | null;
|
|
307
|
+
reconciled_rate_by_account: {
|
|
308
|
+
reconciliation_status: string;
|
|
309
|
+
account_code: string;
|
|
310
|
+
transactions: number;
|
|
311
|
+
total_transactions: number;
|
|
312
|
+
transactions_percentage: number;
|
|
313
|
+
total_amount: number;
|
|
314
|
+
amount_percentage: number;
|
|
315
|
+
}[] | null;
|
|
316
|
+
not_reconciled_by_status: object | null;
|
|
317
|
+
metrics_by_day_provider: {
|
|
318
|
+
EndDate: string;
|
|
319
|
+
StartDate: string;
|
|
320
|
+
MetricsByDayProv: MetricByDayProvider[] | null;
|
|
321
|
+
};
|
|
322
|
+
message_default: string | null;
|
|
323
|
+
};
|
|
324
|
+
type Filters = {
|
|
325
|
+
organization_code: string;
|
|
326
|
+
statuses: string[];
|
|
327
|
+
sub_statuses: string[];
|
|
328
|
+
currency_codes: string[];
|
|
329
|
+
country_codes: string[];
|
|
330
|
+
transaction_statuses: string[];
|
|
331
|
+
providers: string[];
|
|
332
|
+
payment_methods: string[];
|
|
333
|
+
routes: string[];
|
|
334
|
+
acquirers: string[];
|
|
335
|
+
};
|
|
336
|
+
}
|
|
337
|
+
export declare enum ReconciliationReportType {
|
|
338
|
+
TRANSACTIONS = "TRANSACTION_RECONCILIATION",
|
|
339
|
+
SETTLEMENTS = "SETTLEMENTS",
|
|
340
|
+
SETTLEMENTS_HEADER = "SETTLEMENTS_HEADER",
|
|
341
|
+
AGENDA = "AGENDA",
|
|
342
|
+
SALES_CONCILIATION = "SALES_CONCILIATION",
|
|
343
|
+
FEES = "FEES",
|
|
344
|
+
ADVANCEMENTS = "ADVANCEMENTS",
|
|
345
|
+
RECONCILIATION_OVERVIEW = "RECONCILIATION_OVERVIEW",
|
|
346
|
+
SETTLEMENTS_FEES = "SETTLEMENTS_FEES",
|
|
347
|
+
CASHFLOW = "CASHFLOW",
|
|
348
|
+
PROCESSED_TRANSACTIONS = "PROCESSED_TRANSACTIONS"
|
|
349
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './reports';
|