@yuno-payments/dashboard-api-mfe 1.10.6 → 1.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/__mocks__/@yuno/dashboard-authentication-mfe/index.d.ts +10 -0
- package/build/api/api.d.ts +675 -0
- package/build/api/api.singleton.d.ts +9 -0
- package/build/api/api.types.d.ts +229 -0
- package/build/api/index.d.ts +3 -0
- package/build/api-provider.d.ts +4 -0
- package/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +2 -26
- package/build/cjs/types/api/api.singleton.d.ts +0 -1
- package/build/cjs/types/api/api.types.d.ts +0 -1
- package/build/cjs/types/mutations/index.d.ts +0 -2
- package/build/cjs/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
- package/build/cjs/types/mutations/settings/index.d.ts +0 -1
- package/build/cjs/types/queries/audit/audit.query.d.ts +1 -5
- package/build/cjs/types/queries/audit/index.d.ts +0 -1
- package/build/cjs/types/queries/index.d.ts +0 -1
- package/build/cjs/types/types/audit/audit.d.ts +0 -80
- package/build/cjs/types/types/checkout/styling/styling.d.ts +0 -31
- package/build/cjs/types/types/index.d.ts +0 -1
- package/build/cjs/types/types/organization/organization.d.ts +0 -1
- package/build/cjs/types/types/recipients/index.d.ts +0 -1
- package/build/cjs/types/types/recipients/recipients.d.ts +0 -7
- package/build/cjs/types/types/team/team.d.ts +0 -1
- package/build/cjs/types/types/webhook/webhook.d.ts +0 -2
- package/build/common/config.d.ts +13 -0
- package/build/common/config.test.d.ts +0 -0
- package/build/constants/errors-code.constant.d.ts +5 -0
- package/build/constants/index.d.ts +1 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -26
- package/build/esm/types/api/api.singleton.d.ts +0 -1
- package/build/esm/types/api/api.types.d.ts +0 -1
- package/build/esm/types/mutations/index.d.ts +0 -2
- package/build/esm/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
- package/build/esm/types/mutations/settings/index.d.ts +0 -1
- package/build/esm/types/queries/audit/audit.query.d.ts +1 -5
- package/build/esm/types/queries/audit/index.d.ts +0 -1
- package/build/esm/types/queries/index.d.ts +0 -1
- package/build/esm/types/types/audit/audit.d.ts +0 -80
- package/build/esm/types/types/checkout/styling/styling.d.ts +0 -31
- package/build/esm/types/types/index.d.ts +0 -1
- package/build/esm/types/types/organization/organization.d.ts +0 -1
- package/build/esm/types/types/recipients/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients.d.ts +0 -7
- package/build/esm/types/types/team/team.d.ts +0 -1
- package/build/esm/types/types/webhook/webhook.d.ts +0 -2
- package/build/index.d.ts +4 -378
- package/build/lib/http-client/__tests__/http-client.test.d.ts +1 -0
- package/build/lib/http-client/api.config.d.ts +2 -0
- package/build/lib/http-client/axios.d.ts +19 -0
- package/build/lib/http-client/http-client.d.ts +175 -0
- package/build/lib/http-client/index.d.ts +2 -0
- package/build/msw/browser.d.ts +1 -0
- package/build/msw/handlers/api-logs.d.ts +1 -0
- package/build/msw/handlers/index.d.ts +1 -0
- package/build/msw/handlers/insights.d.ts +1 -0
- package/build/msw/handlers/installments.d.ts +1 -0
- package/build/msw/handlers/organizations.d.ts +1 -0
- package/build/msw/handlers/payments.d.ts +1 -0
- package/build/msw/handlers/reconciliation-insights.d.ts +1 -0
- package/build/msw/handlers/webhooks.d.ts +1 -0
- package/build/msw/index.d.ts +1 -0
- package/build/msw/mocks/api-logs/api-logs-v3.mock.d.ts +2 -0
- package/build/msw/mocks/insights/conversion-rate/overview-fraud-3ds.mock.d.ts +14 -0
- package/build/msw/mocks/insights/conversion-rate/overview.mock.d.ts +34 -0
- package/build/msw/mocks/insights/overview/overview-metrics.mock.d.ts +9 -0
- package/build/msw/mocks/insights/overview/overview.mock.d.ts +139 -0
- package/build/msw/mocks/installments/installments.mock.d.ts +8 -0
- package/build/msw/mocks/payments/payments.mock.d.ts +92 -0
- package/build/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
- package/build/msw/mocks/reconciliation-insights/index.d.ts +22 -0
- package/build/msw/mocks/webhooks/webhook-timeline.mock.d.ts +2 -0
- package/build/mutations/S3Client/S3Client.mutation.d.ts +6 -0
- package/build/mutations/S3Client/index.d.ts +1 -0
- package/build/mutations/accounts/accounts.mutation.d.ts +57 -0
- package/build/mutations/accounts/accounts.mutation.test.d.ts +1 -0
- package/build/mutations/accounts/delete-mutation.d.ts +20 -0
- package/build/mutations/accounts/index.d.ts +2 -0
- package/build/mutations/accounts/types.d.ts +25 -0
- package/build/mutations/ai/ai.mutation.d.ts +28 -0
- package/build/mutations/ai/ai.mutation.test.d.ts +1 -0
- package/build/mutations/ai/index.d.ts +1 -0
- package/build/mutations/audit/audit-api.mutation.d.ts +13 -0
- package/build/mutations/audit/audit-api.mutation.test.d.ts +1 -0
- package/build/mutations/audit/audit.mutation.d.ts +6 -0
- package/build/mutations/audit/index.d.ts +2 -0
- package/build/mutations/audit/settings.mutation.test.d.ts +1 -0
- package/build/mutations/batch-refunds/batch-refunds.mutation.d.ts +32 -0
- package/build/mutations/batch-refunds/batch-refunds.mutation.test.d.ts +1 -0
- package/build/mutations/batch-refunds/index.d.ts +1 -0
- package/build/mutations/chartgpt/chartgpt.mutation.d.ts +70 -0
- package/build/mutations/chartgpt/chartgpt.mutation.test.d.ts +1 -0
- package/build/mutations/chartgpt/index.d.ts +1 -0
- package/build/mutations/checkouts/checkouts.mutation.d.ts +5 -0
- package/build/mutations/checkouts/checkouts.mutation.test.d.ts +1 -0
- package/build/mutations/checkouts/index.d.ts +1 -0
- package/build/mutations/connections/conections.mutation.test.d.ts +1 -0
- package/build/mutations/connections/connections.mutation.d.ts +40 -0
- package/build/mutations/connections/index.d.ts +1 -0
- package/build/mutations/developers/developers.mutation.d.ts +31 -0
- package/build/mutations/developers/developers.mutation.test.d.ts +1 -0
- package/build/mutations/developers/index.d.ts +2 -0
- package/build/mutations/developers/types.d.ts +5 -0
- package/build/mutations/fraud-screening/fraud-screening.mutation.d.ts +52 -0
- package/build/mutations/fraud-screening/index.d.ts +1 -0
- package/build/mutations/index.d.ts +34 -0
- package/build/mutations/insights/index.d.ts +1 -0
- package/build/mutations/insights/insights.mutation.d.ts +2 -0
- package/build/mutations/installments/index.d.ts +1 -0
- package/build/mutations/installments/installments.mutation.d.ts +17 -0
- package/build/mutations/installments/installments.mutation.test.d.ts +1 -0
- package/build/mutations/multi-factor-authentication/index.d.ts +1 -0
- package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.d.ts +12 -0
- package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.test.d.ts +1 -0
- package/build/mutations/notifications/index.d.ts +1 -0
- package/build/mutations/notifications/notifications.mutation.d.ts +6 -0
- package/build/mutations/organization-config/index.d.ts +1 -0
- package/build/mutations/organization-config/organization-config.mutation.d.ts +6 -0
- package/build/mutations/organization-settings/index.d.ts +1 -0
- package/build/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
- package/build/mutations/organizations/index.d.ts +1 -0
- package/build/mutations/organizations/organizations.mutation.d.ts +2 -0
- package/build/mutations/organizations/organizations.mutation.test.d.ts +1 -0
- package/build/mutations/payment-links/index.d.ts +1 -0
- package/build/mutations/payment-links/payment-links.mutation.d.ts +21 -0
- package/build/mutations/payment-links/payment-links.mutation.test.d.ts +1 -0
- package/build/mutations/payments/index.d.ts +1 -0
- package/build/mutations/payments/payments.mutation.d.ts +21 -0
- package/build/mutations/payments/payments.mutation.test.d.ts +1 -0
- package/build/mutations/reconciliations/index.d.ts +2 -0
- package/build/mutations/reconciliations/reconciliations-alerts.mutation.d.ts +5 -0
- package/build/mutations/reconciliations/reconciliations-alerts.mutation.test.d.ts +1 -0
- package/build/mutations/reconciliations/reconciliations.mutation.d.ts +4 -0
- package/build/mutations/reports/index.d.ts +1 -0
- package/build/mutations/reports/reports.mutation.d.ts +10 -0
- package/build/mutations/reports/reports.mutation.test.d.ts +1 -0
- package/build/mutations/routing-monitors/index.d.ts +1 -0
- package/build/mutations/routing-monitors/routing-monitors.mutation.d.ts +4 -0
- package/build/mutations/saml-config/index.d.ts +1 -0
- package/build/mutations/saml-config/saml-config.query.d.ts +4 -0
- package/build/mutations/saml-config/saml-config.query.test.d.ts +1 -0
- package/build/mutations/scheduled-reports/index.d.ts +1 -0
- package/build/mutations/scheduled-reports/scheduled-reports.mutation.d.ts +8 -0
- package/build/mutations/security/index.d.ts +1 -0
- package/build/mutations/security/security.mutation.d.ts +7 -0
- package/build/mutations/security/security.mutation.test.d.ts +1 -0
- package/build/mutations/settings/index.d.ts +1 -0
- package/build/mutations/settings/settings.mutation.d.ts +17 -0
- package/build/mutations/settings/settings.mutation.test.d.ts +1 -0
- package/build/mutations/smart-routing/index.d.ts +1 -0
- package/build/mutations/smart-routing/smart-routing.mutation.d.ts +90 -0
- package/build/mutations/smart-routing/smart-routing.mutation.test.d.ts +1 -0
- package/build/mutations/subscriptions/index.d.ts +1 -0
- package/build/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
- package/build/mutations/subscriptions/subscriptions.mutation.test.d.ts +1 -0
- package/build/mutations/team/index.d.ts +1 -0
- package/build/mutations/team/team.mutaion.test.d.ts +1 -0
- package/build/mutations/team/team.mutation.d.ts +12 -0
- package/build/mutations/template-reporting/index.d.ts +1 -0
- package/build/mutations/template-reporting/template-reporting.mutation.d.ts +29 -0
- package/build/mutations/template-reporting/template-reporting.mutation.test.d.ts +1 -0
- package/build/mutations/users/index.d.ts +1 -0
- package/build/mutations/users/users.mutation.d.ts +17 -0
- package/build/mutations/users/users.mutation.test.d.ts +1 -0
- package/build/mutations/velocity-rules/index.d.ts +1 -0
- package/build/mutations/velocity-rules/velocity-rules.mutation.d.ts +5 -0
- package/build/queries/accounts/accounts.query.d.ts +30 -0
- package/build/queries/accounts/accounts.query.test.d.ts +1 -0
- package/build/queries/accounts/index.d.ts +2 -0
- package/build/queries/accounts/types.d.ts +21 -0
- package/build/queries/api-logs/api-logs-v3.query.d.ts +9 -0
- package/build/queries/api-logs/api-logs-v3.query.test.d.ts +1 -0
- package/build/queries/api-logs/index.d.ts +1 -0
- package/build/queries/audit/audit.query.d.ts +28 -0
- package/build/queries/audit/audit.query.test.d.ts +1 -0
- package/build/queries/audit/index.d.ts +1 -0
- package/build/queries/batch-refunds/batch-refunds.query.d.ts +3 -0
- package/build/queries/batch-refunds/index.d.ts +1 -0
- package/build/queries/chartgpt/chartgpt.query.d.ts +65 -0
- package/build/queries/chartgpt/chartgpt.query.test.d.ts +1 -0
- package/build/queries/chartgpt/index.d.ts +1 -0
- package/build/queries/checkouts/checkouts.query.d.ts +12 -0
- package/build/queries/checkouts/checkouts.query.test.d.ts +1 -0
- package/build/queries/checkouts/index.d.ts +2 -0
- package/build/queries/checkouts/styling/styling.query.d.ts +11 -0
- package/build/queries/checkouts/styling/styling.query.test.d.ts +1 -0
- package/build/queries/cms/cms.query.d.ts +14 -0
- package/build/queries/cms/cms.query.test.d.ts +1 -0
- package/build/queries/cms/index.d.ts +1 -0
- package/build/queries/connections/connections.query.d.ts +3 -0
- package/build/queries/connections/connections.query.test.d.ts +1 -0
- package/build/queries/connections/index.d.ts +1 -0
- package/build/queries/data-report/data-report.query.d.ts +20 -0
- package/build/queries/data-report/data-report.query.test.d.ts +1 -0
- package/build/queries/data-report/fraud/fraud.query.d.ts +17 -0
- package/build/queries/data-report/fraud/fraud.query.test.d.ts +1 -0
- package/build/queries/data-report/index.d.ts +2 -0
- package/build/queries/developers/developers.query.d.ts +16 -0
- package/build/queries/developers/developers.query.test.d.ts +1 -0
- package/build/queries/developers/index.d.ts +1 -0
- package/build/queries/dialogs/dialogs.query.d.ts +2 -0
- package/build/queries/dialogs/dialogs.query.test.d.ts +1 -0
- package/build/queries/dialogs/index.d.ts +1 -0
- package/build/queries/feature-flags/feature-flags.test.d.ts +1 -0
- package/build/queries/feature-flags/index.d.ts +8 -0
- package/build/queries/firebase/firebase.query.d.ts +8 -0
- package/build/queries/firebase/firebase.query.test.d.ts +1 -0
- package/build/queries/firebase/index.d.ts +1 -0
- package/build/queries/fraud-screening/fraud-screening.query.d.ts +11 -0
- package/build/queries/fraud-screening/fraud-screening.query.test.d.ts +1 -0
- package/build/queries/fraud-screening/index.d.ts +1 -0
- package/build/queries/index.d.ts +39 -0
- package/build/queries/installments/index.d.ts +1 -0
- package/build/queries/installments/installments.query.d.ts +4 -0
- package/build/queries/installments/installments.query.test.d.ts +1 -0
- package/build/queries/mfa/index.d.ts +1 -0
- package/build/queries/mfa/organization-settings.query.d.ts +11 -0
- package/build/queries/network-tokens/index.d.ts +1 -0
- package/build/queries/network-tokens/network-tokens.query.d.ts +4 -0
- package/build/queries/notifications/index.d.ts +1 -0
- package/build/queries/notifications/notifications.query.d.ts +12 -0
- package/build/queries/notifications/notifications.query.test.d.ts +1 -0
- package/build/queries/onboarding/index.d.ts +1 -0
- package/build/queries/onboarding/onboarding.query.d.ts +7 -0
- package/build/queries/onboarding/onboarding.query.test.d.ts +1 -0
- package/build/queries/organization-config/index.d.ts +1 -0
- package/build/queries/organization-config/organization-config.query.d.ts +4 -0
- package/build/queries/organizations/index.d.ts +1 -0
- package/build/queries/organizations/organizations.query.d.ts +30 -0
- package/build/queries/organizations/organizations.query.test.d.ts +1 -0
- package/build/queries/payment-links/index.d.ts +1 -0
- package/build/queries/payment-links/payment-links.query.d.ts +7 -0
- package/build/queries/payment-links/payment-links.query.test.d.ts +1 -0
- package/build/queries/payments/index.d.ts +2 -0
- package/build/queries/payments/payments.query.d.ts +36 -0
- package/build/queries/payments/payments.query.test.d.ts +1 -0
- package/build/queries/payments/payouts-timeline.query.test.d.ts +1 -0
- package/build/queries/payments/payouts.query.d.ts +7 -0
- package/build/queries/payments/payouts.query.test.d.ts +1 -0
- package/build/queries/recipients/index.d.ts +1 -0
- package/build/queries/recipients/recipients.query.d.ts +8 -0
- package/build/queries/reconciliations/index.d.ts +7 -0
- package/build/queries/reconciliations/reconciliation-insights.query.d.ts +26 -0
- package/build/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-advancements.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-advancements.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-agenda.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-agenda.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-alerts.query.d.ts +8 -0
- package/build/queries/reconciliations/reconciliations-alerts.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-fees.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-fees.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations-sales.query.d.ts +9 -0
- package/build/queries/reconciliations/reconciliations-sales.query.test.d.ts +1 -0
- package/build/queries/reconciliations/reconciliations.query.d.ts +11 -0
- package/build/queries/reconciliations/reconciliations.query.test.d.ts +1 -0
- package/build/queries/reports/index.d.ts +1 -0
- package/build/queries/reports/reports.query.d.ts +13 -0
- package/build/queries/reports/reports.query.test.d.ts +1 -0
- package/build/queries/routing-monitors/index.d.ts +1 -0
- package/build/queries/routing-monitors/routing-monitors.query.d.ts +4 -0
- package/build/queries/saml-config/index.d.ts +1 -0
- package/build/queries/saml-config/saml-config.query.d.ts +4 -0
- package/build/queries/saml-config/saml-config.query.test.d.ts +1 -0
- package/build/queries/security/index.d.ts +1 -0
- package/build/queries/security/security.query.d.ts +8 -0
- package/build/queries/security/security.query.test.d.ts +1 -0
- package/build/queries/smart-recovery/index.d.ts +1 -0
- package/build/queries/smart-recovery/smart-recovery-overview.query.d.ts +9 -0
- package/build/queries/smart-recovery/smart-recovery-overview.query.test.d.ts +1 -0
- package/build/queries/smart-routing/index.d.ts +1 -0
- package/build/queries/smart-routing/smart-routing.query.d.ts +28 -0
- package/build/queries/smart-routing/smart-routing.query.test.d.ts +1 -0
- package/build/queries/subscriptions/index.d.ts +1 -0
- package/build/queries/subscriptions/subscriptions.query.d.ts +3 -0
- package/build/queries/subscriptions/subscriptions.query.test.d.ts +1 -0
- package/build/queries/team/index.d.ts +1 -0
- package/build/queries/team/team.query.d.ts +28 -0
- package/build/queries/team/team.query.test.d.ts +1 -0
- package/build/queries/template-reporting/index.d.ts +1 -0
- package/build/queries/template-reporting/template-reporting.query.d.ts +7 -0
- package/build/queries/template-reporting/template-reporting.query.test.d.ts +1 -0
- package/build/queries/translation/index.d.ts +1 -0
- package/build/queries/translation/translation.query.d.ts +5 -0
- package/build/queries/users/index.d.ts +1 -0
- package/build/queries/users/users.query.d.ts +25 -0
- package/build/queries/users/users.query.test.d.ts +1 -0
- package/build/queries/velocity-rules/index.d.ts +1 -0
- package/build/queries/velocity-rules/velocity-rules.query.d.ts +6 -0
- package/build/queries/webhooks/index.d.ts +1 -0
- package/build/queries/webhooks/webhook-timeline.query.d.ts +9 -0
- package/build/queries/webhooks/webhook-timeline.query.test.d.ts +1 -0
- package/build/set-public-path.d.ts +1 -0
- package/build/store/index.d.ts +3 -0
- package/build/types/accounts/accounts.d.ts +11 -0
- package/build/types/accounts/index.d.ts +1 -0
- package/build/types/ai/ai.d.ts +78 -0
- package/build/types/ai/index.d.ts +1 -0
- package/build/types/allowed-list/allowed-list.d.ts +9 -0
- package/build/types/allowed-list/index.d.ts +1 -0
- package/build/types/audit/audit.d.ts +387 -0
- package/build/types/audit/index.d.ts +1 -0
- package/build/types/batch-refunds/batch-refunds.d.ts +38 -0
- package/build/types/batch-refunds/index.d.ts +1 -0
- package/build/types/chartgpt/feedback.types.d.ts +34 -0
- package/build/types/chartgpt/index.d.ts +1 -0
- package/build/types/checkout/checkout.d.ts +289 -0
- package/build/types/checkout/index.d.ts +1 -0
- package/build/types/checkout/styling/styling.d.ts +176 -0
- package/build/types/cms/cms.d.ts +47 -0
- package/build/types/cms/index.d.ts +1 -0
- package/build/types/connection/connection.d.ts +81 -0
- package/build/types/connection/costs.d.ts +26 -0
- package/build/types/connection/index.d.ts +2 -0
- package/build/types/country/country.d.ts +12 -0
- package/build/types/country/index.d.ts +1 -0
- package/build/types/customized-api-keys/customized-api-keys.d.ts +30 -0
- package/build/types/customized-api-keys/index.d.ts +1 -0
- package/build/types/data-report/conversion-rate.types.d.ts +48 -0
- package/build/types/data-report/data-report.d.ts +66 -0
- package/build/types/data-report/fraud.types.d.ts +166 -0
- package/build/types/data-report/index.d.ts +3 -0
- package/build/types/developer/developer.d.ts +13 -0
- package/build/types/developer/index.d.ts +1 -0
- package/build/types/feature-flags/intex.d.ts +13 -0
- package/build/types/fraud-screening/fraud-screening.d.ts +109 -0
- package/build/types/fraud-screening/index.d.ts +1 -0
- package/build/types/index.d.ts +37 -0
- package/build/types/installments/index.d.ts +1 -0
- package/build/types/installments/installments.d.ts +125 -0
- package/build/types/mfa/index.d.ts +1 -0
- package/build/types/mfa/mfa.d.ts +6 -0
- package/build/types/notifications/index.d.ts +1 -0
- package/build/types/notifications/notifications.d.ts +39 -0
- package/build/types/onboarding/index.d.ts +1 -0
- package/build/types/onboarding/onboarding.d.ts +7 -0
- package/build/types/operation-transaction/index.d.ts +1 -0
- package/build/types/operation-transaction/operation-transaction.d.ts +28 -0
- package/build/types/organization/index.d.ts +1 -0
- package/build/types/organization/organization.d.ts +137 -0
- package/build/types/organization-config/index.d.ts +1 -0
- package/build/types/organization-config/organization-config.d.ts +34 -0
- package/build/types/organization-settings/index.d.ts +1 -0
- package/build/types/organization-settings/organization-settings.d.ts +27 -0
- package/build/types/payment/index.d.ts +1 -0
- package/build/types/payment/payment.d.ts +581 -0
- package/build/types/payment-links/index.d.ts +1 -0
- package/build/types/payment-links/payment-links.d.ts +16 -0
- package/build/types/payouts/index.d.ts +1 -0
- package/build/types/payouts/payouts.d.ts +125 -0
- package/build/types/recipients/index.d.ts +2 -0
- package/build/types/recipients/recipients.d.ts +223 -0
- package/build/types/reconciliation/index.d.ts +7 -0
- package/build/types/reconciliation/reconciliation-advancements.d.ts +40 -0
- package/build/types/reconciliation/reconciliation-agenda.d.ts +84 -0
- package/build/types/reconciliation/reconciliation-alerts.d.ts +38 -0
- package/build/types/reconciliation/reconciliation-fees.d.ts +45 -0
- package/build/types/reconciliation/reconciliation-insights.d.ts +188 -0
- package/build/types/reconciliation/reconciliation-sales.d.ts +56 -0
- package/build/types/reconciliation/reconciliation.d.ts +349 -0
- package/build/types/reports/index.d.ts +1 -0
- package/build/types/reports/reports.d.ts +154 -0
- package/build/types/routing-monitors/index.d.ts +1 -0
- package/build/types/routing-monitors/routing-monitors.d.ts +35 -0
- package/build/types/s3-client/index.d.ts +1 -0
- package/build/types/s3-client/s3-client.d.ts +19 -0
- package/build/types/saml-config/index.d.ts +1 -0
- package/build/types/saml-config/saml-config.d.ts +28 -0
- package/build/types/smart-recovery/index.d.ts +1 -0
- package/build/types/smart-recovery/smart-recovery-overview.types.d.ts +94 -0
- package/build/types/smart-routing/index.d.ts +1 -0
- package/build/types/smart-routing/smart-routing.d.ts +362 -0
- package/build/types/subscriptions/index.d.ts +1 -0
- package/build/types/subscriptions/subscriptions.d.ts +68 -0
- package/build/types/team/index.d.ts +1 -0
- package/build/types/team/team.d.ts +122 -0
- package/build/types/template-reporting/common.types.d.ts +65 -0
- package/build/types/template-reporting/index.d.ts +55 -0
- package/build/types/template-reporting/schedule.types.d.ts +72 -0
- package/build/types/template-reporting/template.types.d.ts +98 -0
- package/build/types/translation/index.d.ts +1 -0
- package/build/types/translation/translation.d.ts +8 -0
- package/build/types/user/index.d.ts +1 -0
- package/build/types/user/user.d.ts +208 -0
- package/build/types/velocity-rules/index.d.ts +1 -0
- package/build/types/velocity-rules/velocity-rules.d.ts +15 -0
- package/build/types/webhook/index.d.ts +1 -0
- package/build/types/webhook/webhook.d.ts +73 -0
- package/build/utils/enums.d.ts +162 -0
- package/build/utils/handler-error.d.ts +6 -0
- package/build/utils/index.d.ts +3 -0
- package/build/utils/test-utils.d.ts +4 -0
- package/build/utils/use-account-code.d.ts +1 -0
- package/build/utils/use-account-code.test.d.ts +1 -0
- package/build/utils/use-is-testing.d.ts +3 -0
- package/build/utils/use-is-testing.test.d.ts +1 -0
- package/build/utils/use-localstorage.d.ts +2 -0
- package/build/websockets/index.d.ts +1 -0
- package/build/websockets/use-chart-assistant-socket.d.ts +17 -0
- package/build/websockets/use-chart-assistant-socket.test.d.ts +1 -0
- package/build/yuno-dashboard-api-mfe.d.ts +9 -0
- package/package.json +1 -1
- package/build/cjs/types/mutations/concierge/concierge.mutation.d.ts +0 -8
- package/build/cjs/types/mutations/concierge/index.d.ts +0 -1
- package/build/cjs/types/mutations/settings/use-table-onboarding.d.ts +0 -6
- package/build/cjs/types/queries/audit/audit-v3.query.d.ts +0 -9
- package/build/cjs/types/queries/concierge/concierge.query.d.ts +0 -6
- package/build/cjs/types/queries/concierge/index.d.ts +0 -1
- package/build/cjs/types/types/concierge/concierge-alerts.d.ts +0 -42
- package/build/cjs/types/types/concierge/index.d.ts +0 -1
- package/build/esm/types/msw/handlers/recipients.d.ts +0 -1
- package/build/esm/types/msw/mocks/recipients/recipients.mock.d.ts +0 -775
- package/build/esm/types/mutations/concierge/concierge.mutation.d.ts +0 -8
- package/build/esm/types/mutations/concierge/index.d.ts +0 -1
- package/build/esm/types/mutations/recipients/index.d.ts +0 -1
- package/build/esm/types/mutations/recipients/recipients.mutation.d.ts +0 -11
- package/build/esm/types/mutations/settings/use-table-onboarding.d.ts +0 -6
- package/build/esm/types/queries/audit/audit-v3.query.d.ts +0 -9
- package/build/esm/types/queries/concierge/concierge.query.d.ts +0 -6
- package/build/esm/types/queries/concierge/index.d.ts +0 -1
- package/build/esm/types/types/concierge/concierge-alerts.d.ts +0 -42
- package/build/esm/types/types/concierge/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients-mutations.d.ts +0 -136
- package/build/main.31b800bdfc7bcf66.hot-update.js +0 -23
- package/build/main.31b800bdfc7bcf66.hot-update.js.map +0 -1
- package/build/main.31b800bdfc7bcf66.hot-update.json +0 -1
- package/build/main.31ef41183a0357fd.hot-update.js +0 -23
- package/build/main.31ef41183a0357fd.hot-update.js.map +0 -1
- package/build/main.31ef41183a0357fd.hot-update.json +0 -1
- package/build/main.5231ec959bfdd54a.hot-update.js +0 -823
- package/build/main.5231ec959bfdd54a.hot-update.js.map +0 -1
- package/build/main.5231ec959bfdd54a.hot-update.json +0 -1
- package/build/main.60642e2056d40cbc.hot-update.js +0 -23
- package/build/main.60642e2056d40cbc.hot-update.js.map +0 -1
- package/build/main.60642e2056d40cbc.hot-update.json +0 -1
- package/build/main.7734f96d14c3c07a.hot-update.js +0 -10
- package/build/main.7734f96d14c3c07a.hot-update.js.map +0 -1
- package/build/main.7734f96d14c3c07a.hot-update.json +0 -1
- package/build/main.9a70cae7efc29065.hot-update.js +0 -39
- package/build/main.9a70cae7efc29065.hot-update.js.map +0 -1
- package/build/main.9a70cae7efc29065.hot-update.json +0 -1
- package/build/main.9c87c39ff7873bca.hot-update.js +0 -10
- package/build/main.9c87c39ff7873bca.hot-update.js.map +0 -1
- package/build/main.9c87c39ff7873bca.hot-update.json +0 -1
- package/build/main.a0a0faaf03061b21.hot-update.js +0 -23
- package/build/main.a0a0faaf03061b21.hot-update.js.map +0 -1
- package/build/main.a0a0faaf03061b21.hot-update.json +0 -1
- package/build/main.d62d5a57d5bc6614.hot-update.js +0 -4236
- package/build/main.d62d5a57d5bc6614.hot-update.js.map +0 -1
- package/build/main.d62d5a57d5bc6614.hot-update.json +0 -1
- package/build/main.ecc2159bd4dc7d54.hot-update.js +0 -23
- package/build/main.ecc2159bd4dc7d54.hot-update.js.map +0 -1
- package/build/main.ecc2159bd4dc7d54.hot-update.json +0 -1
- package/build/yuno-dashboard-api-mfe.js +0 -57105
- package/build/yuno-dashboard-api-mfe.js.map +0 -1
- /package/build/{esm/types/set-public-path.d.ts → api/api.test.d.ts} +0 -0
- /package/build/{cjs/types/set-public-path.d.ts → api-provider.test.d.ts} +0 -0
- /package/build/{cjs/types/msw → msw}/handlers/recipients.d.ts +0 -0
- /package/build/{cjs/types/msw → msw}/mocks/recipients/recipients.mock.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/recipients/index.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/recipients/recipients.mutation.d.ts +0 -0
- /package/build/{cjs/types/types → types}/recipients/recipients-mutations.d.ts +0 -0
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { ConciergeAlerts } from '../../types';
|
|
3
|
-
export declare function useCreateConciergeAlert(): UseMutationResult<ConciergeAlerts.CreateAlertResponse, ConciergeAlerts.Error, ConciergeAlerts.CreateAlertPayload>;
|
|
4
|
-
export declare function useDeleteConciergeAlert(): UseMutationResult<ConciergeAlerts.DeleteAlertResponse, ConciergeAlerts.Error, string>;
|
|
5
|
-
export declare function useEnableConciergeAlert(): UseMutationResult<ConciergeAlerts.EnableAlertResponse, ConciergeAlerts.Error, {
|
|
6
|
-
alertId: string;
|
|
7
|
-
payload: ConciergeAlerts.EnableAlertPayload;
|
|
8
|
-
}>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './concierge.mutation';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './recipients.mutation';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { AxiosError } from 'axios';
|
|
2
|
-
import { CreateRecipientParams, UpdateRecipientParams, DeleteRecipientParams, CreateOnboardingParams, UpdateOnboardingParams, BlockOnboardingParams, UnblockOnboardingParams } from '../../types/recipients/recipients-mutations';
|
|
3
|
-
import { Recipients } from '../../types/recipients/recipients';
|
|
4
|
-
import { BFFErrorResponse } from '../smart-routing/smart-routing.mutation';
|
|
5
|
-
export declare function useCreateRecipient(): import("@tanstack/react-query").UseMutationResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse, any>, CreateRecipientParams, unknown>;
|
|
6
|
-
export declare function useUpdateRecipient(): import("@tanstack/react-query").UseMutationResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse, any>, UpdateRecipientParams, unknown>;
|
|
7
|
-
export declare function useDeleteRecipient(): import("@tanstack/react-query").UseMutationResult<void, AxiosError<BFFErrorResponse, any>, DeleteRecipientParams, unknown>;
|
|
8
|
-
export declare function useCreateOnboarding(): import("@tanstack/react-query").UseMutationResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse, any>, CreateOnboardingParams, unknown>;
|
|
9
|
-
export declare function useUpdateOnboarding(): import("@tanstack/react-query").UseMutationResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse, any>, UpdateOnboardingParams, unknown>;
|
|
10
|
-
export declare function useBlockOnboarding(): import("@tanstack/react-query").UseMutationResult<void, AxiosError<BFFErrorResponse, any>, BlockOnboardingParams, unknown>;
|
|
11
|
-
export declare function useUnblockOnboarding(): import("@tanstack/react-query").UseMutationResult<void, AxiosError<BFFErrorResponse, any>, UnblockOnboardingParams, unknown>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { Audit } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
-
export interface UseGetApiLogsV3ByPaymentCodeOptions {
|
|
5
|
-
paymentCode: string;
|
|
6
|
-
createdAtFrom?: string;
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useGetApiLogsV3ByPaymentCode({ paymentCode, createdAtFrom, enabled, }: UseGetApiLogsV3ByPaymentCodeOptions): UseQueryResult<Audit.ApiLogsV3ListResponse, BFFErrorResponse>;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { ConciergeAlerts } from '../../types';
|
|
3
|
-
export declare const CONCIERGE_ALERTS_QUERY_KEY = "GET/concierge/alerts";
|
|
4
|
-
export declare const CONCIERGE_ALERT_BY_ID_QUERY_KEY = "GET/concierge/alerts/by-id";
|
|
5
|
-
export declare function useGetConciergeAlerts(): UseQueryResult<ConciergeAlerts.Alert[], ConciergeAlerts.Error>;
|
|
6
|
-
export declare function useGetConciergeAlertById(alertId: string): UseQueryResult<ConciergeAlerts.Alert, ConciergeAlerts.Error>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './concierge.query';
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
export declare namespace ConciergeAlerts {
|
|
2
|
-
interface AntiNoiseControls {
|
|
3
|
-
cooldown: number;
|
|
4
|
-
minimum_transactions: number;
|
|
5
|
-
}
|
|
6
|
-
interface ThresholdConfiguration {
|
|
7
|
-
error_rate_threshold: number;
|
|
8
|
-
error_types: string[];
|
|
9
|
-
}
|
|
10
|
-
interface ScopeFilters {
|
|
11
|
-
countries: string[];
|
|
12
|
-
providers: string[];
|
|
13
|
-
payment_methods: string[];
|
|
14
|
-
card_brands: string[];
|
|
15
|
-
}
|
|
16
|
-
interface Alert {
|
|
17
|
-
id: string;
|
|
18
|
-
alert_type: string;
|
|
19
|
-
name: string;
|
|
20
|
-
language: string;
|
|
21
|
-
analysis_window: string;
|
|
22
|
-
comparison_baseline: string;
|
|
23
|
-
anti_noise_controls: AntiNoiseControls;
|
|
24
|
-
threshold_configuration: ThresholdConfiguration;
|
|
25
|
-
scope_filters: ScopeFilters;
|
|
26
|
-
enabled: boolean;
|
|
27
|
-
}
|
|
28
|
-
type CreateAlertPayload = Omit<Alert, 'id' | 'enabled'>;
|
|
29
|
-
type CreateAlertResponse = Pick<Alert, 'id'>;
|
|
30
|
-
type DeleteAlertResponse = Pick<Alert, 'id'>;
|
|
31
|
-
interface EnableAlertPayload {
|
|
32
|
-
enable: boolean;
|
|
33
|
-
}
|
|
34
|
-
interface EnableAlertResponse {
|
|
35
|
-
id: string;
|
|
36
|
-
enable: boolean;
|
|
37
|
-
}
|
|
38
|
-
type Error = {
|
|
39
|
-
code?: string;
|
|
40
|
-
name?: string;
|
|
41
|
-
};
|
|
42
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './concierge-alerts';
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
export interface CreateRecipientDocument {
|
|
2
|
-
document_number: string;
|
|
3
|
-
document_type: string;
|
|
4
|
-
}
|
|
5
|
-
export interface CreateRecipientPhone {
|
|
6
|
-
country_code: string;
|
|
7
|
-
number: string;
|
|
8
|
-
}
|
|
9
|
-
export interface CreateRecipientAddress {
|
|
10
|
-
address_line_1?: string;
|
|
11
|
-
address_line_2?: string;
|
|
12
|
-
city?: string;
|
|
13
|
-
country?: string;
|
|
14
|
-
state?: string;
|
|
15
|
-
zip_code?: string;
|
|
16
|
-
neighborhood?: string;
|
|
17
|
-
}
|
|
18
|
-
export interface CreateRecipientBank {
|
|
19
|
-
code?: string;
|
|
20
|
-
branch?: string;
|
|
21
|
-
branch_digit?: string;
|
|
22
|
-
account?: string;
|
|
23
|
-
account_digit?: string;
|
|
24
|
-
account_type?: string;
|
|
25
|
-
routing?: string;
|
|
26
|
-
country?: string;
|
|
27
|
-
currency?: string;
|
|
28
|
-
payout_schedule?: string;
|
|
29
|
-
}
|
|
30
|
-
export interface CreateRecipientWithdrawalMethod {
|
|
31
|
-
bank?: CreateRecipientBank;
|
|
32
|
-
}
|
|
33
|
-
export interface CreateRecipientDocumentation {
|
|
34
|
-
file_name: string;
|
|
35
|
-
content_type: string;
|
|
36
|
-
content_category: string;
|
|
37
|
-
content: string;
|
|
38
|
-
}
|
|
39
|
-
export interface CreateRecipientLegalRepresentative {
|
|
40
|
-
merchant_reference?: string;
|
|
41
|
-
first_name?: string;
|
|
42
|
-
last_name?: string;
|
|
43
|
-
email?: string;
|
|
44
|
-
date_of_birth?: string;
|
|
45
|
-
document?: CreateRecipientDocument;
|
|
46
|
-
phone?: CreateRecipientPhone;
|
|
47
|
-
address?: CreateRecipientAddress;
|
|
48
|
-
country?: string;
|
|
49
|
-
nationality?: string;
|
|
50
|
-
title?: string;
|
|
51
|
-
publicly_exposed_person?: boolean;
|
|
52
|
-
ultimate_beneficial_owner?: boolean;
|
|
53
|
-
}
|
|
54
|
-
export interface CreateOnboardingProvider {
|
|
55
|
-
id: string;
|
|
56
|
-
connection_id: string;
|
|
57
|
-
recipient_id?: string;
|
|
58
|
-
recipient_type?: string;
|
|
59
|
-
}
|
|
60
|
-
export interface CreateOnboardingTermsOfService {
|
|
61
|
-
acceptance: boolean;
|
|
62
|
-
date?: string;
|
|
63
|
-
ip?: string;
|
|
64
|
-
}
|
|
65
|
-
export interface CreateOnboardingPayload {
|
|
66
|
-
account_id?: string;
|
|
67
|
-
type: string;
|
|
68
|
-
workflow: string;
|
|
69
|
-
description?: string;
|
|
70
|
-
callback_url?: string;
|
|
71
|
-
provider: CreateOnboardingProvider;
|
|
72
|
-
documentation?: CreateRecipientDocumentation[];
|
|
73
|
-
withdrawal_methods?: CreateRecipientWithdrawalMethod[];
|
|
74
|
-
legal_representatives?: CreateRecipientLegalRepresentative[];
|
|
75
|
-
terms_of_service?: CreateOnboardingTermsOfService;
|
|
76
|
-
}
|
|
77
|
-
export interface CreateRecipientPayload {
|
|
78
|
-
account_id: string;
|
|
79
|
-
merchant_recipient_id: string;
|
|
80
|
-
national_entity: string;
|
|
81
|
-
entity_type?: string;
|
|
82
|
-
first_name: string;
|
|
83
|
-
last_name: string;
|
|
84
|
-
date_of_birth?: string;
|
|
85
|
-
legal_name?: string;
|
|
86
|
-
email?: string;
|
|
87
|
-
country: string;
|
|
88
|
-
website?: string;
|
|
89
|
-
industry?: string;
|
|
90
|
-
merchant_category_code?: string;
|
|
91
|
-
document?: CreateRecipientDocument;
|
|
92
|
-
phone?: CreateRecipientPhone;
|
|
93
|
-
address?: CreateRecipientAddress;
|
|
94
|
-
legal_representatives?: CreateRecipientLegalRepresentative[];
|
|
95
|
-
withdrawal_methods?: CreateRecipientWithdrawalMethod;
|
|
96
|
-
documentation?: CreateRecipientDocumentation[];
|
|
97
|
-
onboardings?: CreateOnboardingPayload[];
|
|
98
|
-
}
|
|
99
|
-
export type UpdateRecipientPayload = Partial<Omit<CreateRecipientPayload, 'account_id' | 'onboardings'>>;
|
|
100
|
-
export type UpdateOnboardingPayload = Partial<Omit<CreateOnboardingPayload, 'type' | 'workflow' | 'provider'>> & {
|
|
101
|
-
provider?: Partial<CreateOnboardingProvider>;
|
|
102
|
-
};
|
|
103
|
-
export interface CreateRecipientParams {
|
|
104
|
-
organizationCode: string;
|
|
105
|
-
payload: CreateRecipientPayload;
|
|
106
|
-
}
|
|
107
|
-
export interface UpdateRecipientParams {
|
|
108
|
-
organizationCode: string;
|
|
109
|
-
recipientId: string;
|
|
110
|
-
payload: UpdateRecipientPayload;
|
|
111
|
-
}
|
|
112
|
-
export interface DeleteRecipientParams {
|
|
113
|
-
organizationCode: string;
|
|
114
|
-
recipientId: string;
|
|
115
|
-
}
|
|
116
|
-
export interface CreateOnboardingParams {
|
|
117
|
-
organizationCode: string;
|
|
118
|
-
recipientId: string;
|
|
119
|
-
payload: CreateOnboardingPayload;
|
|
120
|
-
}
|
|
121
|
-
export interface UpdateOnboardingParams {
|
|
122
|
-
organizationCode: string;
|
|
123
|
-
recipientId: string;
|
|
124
|
-
onboardingId: string;
|
|
125
|
-
payload: UpdateOnboardingPayload;
|
|
126
|
-
}
|
|
127
|
-
export interface BlockOnboardingParams {
|
|
128
|
-
organizationCode: string;
|
|
129
|
-
recipientId: string;
|
|
130
|
-
onboardingId: string;
|
|
131
|
-
}
|
|
132
|
-
export interface UnblockOnboardingParams {
|
|
133
|
-
organizationCode: string;
|
|
134
|
-
recipientId: string;
|
|
135
|
-
onboardingId: string;
|
|
136
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
self["webpackHotUpdatedashboard_api_mfe"]("main", {
|
|
3
|
-
"./src/types/installments/installments.ts"(module, __webpack_exports__, __webpack_require__) {
|
|
4
|
-
__webpack_require__.r(__webpack_exports__);
|
|
5
|
-
/* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
|
|
9
|
-
function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
|
|
10
|
-
Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
},function(__webpack_require__) {
|
|
16
|
-
// webpack/runtime/get_full_hash
|
|
17
|
-
(() => {
|
|
18
|
-
__webpack_require__.h = () => ("31ef41183a0357fd")
|
|
19
|
-
})();
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
23
|
-
//# sourceMappingURL=main.31b800bdfc7bcf66.hot-update.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"main.31b800bdfc7bcf66.hot-update.js","sources":["webpack://dashboard-api-mfe/./src/types/installments/installments.ts","webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["export namespace Installments {\n // Filter params for querying installments plans\n export interface GetInstallmentsPlansParams {\n account_id?: string | string[]\n country_code?: string | string[]\n brand?: string | string[]\n name?: string\n merchant_reference?: string\n issuer?: string | string[]\n bin?: string | string[]\n start_date?: string\n end_date?: string\n page?: number\n size?: number\n }\n\n export interface FinancialCost {\n type: 'CFT' | 'TEA' | string\n rate: number\n }\n\n export interface InstallmentAmount {\n currency: string\n value: string\n total_value: string\n }\n\n export interface InstallmentPlanItem {\n id?: string\n installment: number\n rate: number | null\n provider_id?: string\n amount?: InstallmentAmount\n type?: string\n financial_costs?: FinancialCost[]\n }\n\n export interface PlanAmount {\n currency: string\n min_value: string\n max_value: string\n }\n\n export interface Availability {\n start_at?: string\n finish_at?: string\n }\n\n export interface InstallmentsPlan {\n id?: string\n code: string\n name: string\n account_id: string[]\n merchant_reference?: string\n installments_plan: InstallmentPlanItem[]\n country_code: string\n amount: PlanAmount\n availability?: Availability\n types_list?: string[] | null\n payment_method_type?: string\n created_at?: string\n updated_at?: string\n }\n\n export type GetInstallmentsPlansResponse = InstallmentsPlan[]\n\n export interface CreateInstallmentsPlanRequest {\n name: string\n merchant_reference?: string\n country_code: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n }\n\n export interface CreateInstallmentsPlanResponse extends InstallmentsPlan {}\n\n export interface UpdateInstallmentsPlanRequest {\n name?: string\n merchant_reference?: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n }\n\n export interface UpdateInstallmentsPlanResponse extends InstallmentsPlan {}\n\n export interface DeleteInstallmentsPlanResponse {\n deleted?: boolean\n message?: string\n }\n\n // V2 Search (POST-based to avoid 431 errors with many filters)\n export interface SearchInstallmentsPlansRequest {\n account_ids?: string[]\n country_code?: string[]\n brand?: string[]\n name?: string\n merchant_reference?: string\n issuer?: string\n bin?: string\n start_date?: string\n end_date?: string\n page?: number\n size?: number\n }\n\n export interface SearchInstallmentsPlansResponse {\n data: InstallmentsPlan[]\n total: number\n page: number\n size: number\n }\n\n // V2 Bulk Create (create plans for multiple accounts simultaneously)\n export interface BulkCreateInstallmentsPlansRequest {\n account_ids: string[]\n name: string\n source?: string\n merchant_reference?: string\n country_code: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n }\n\n export interface BulkCreateInstallmentsPlansResponse {\n created: InstallmentsPlan[]\n errors?: string[]\n }\n\n // V2 Bulk Delete\n export interface BulkDeleteInstallmentsPlansRequest {\n codes: string[]\n }\n\n export interface BulkDeleteError {\n code: string\n error_code: string\n message?: string\n }\n\n export interface BulkDeleteInstallmentsPlansResponse {\n deleted: string[]\n errors?: BulkDeleteError[]\n }\n}\n","__webpack_require__.h = () => (\"31ef41183a0357fd\")"],"names":[],"mappings":";;;;;AAAA;;;;;;;;;;;;ACAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"c":["main"],"r":[],"m":[]}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
self["webpackHotUpdatedashboard_api_mfe"]("main", {
|
|
3
|
-
"./src/types/installments/installments.ts"(module, __webpack_exports__, __webpack_require__) {
|
|
4
|
-
__webpack_require__.r(__webpack_exports__);
|
|
5
|
-
/* provided dependency */ var $ReactRefreshRuntime$ = __webpack_require__("./node_modules/@rspack/plugin-react-refresh/client/reactRefresh.js");
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
function $RefreshSig$() { return $ReactRefreshRuntime$.createSignatureFunctionForTransform() }
|
|
9
|
-
function $RefreshReg$(type, id) { $ReactRefreshRuntime$.register(type, module.id + "_" + id) }
|
|
10
|
-
Promise.resolve().then(() => { $ReactRefreshRuntime$.refresh(module.id, module.hot) });
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
},function(__webpack_require__) {
|
|
16
|
-
// webpack/runtime/get_full_hash
|
|
17
|
-
(() => {
|
|
18
|
-
__webpack_require__.h = () => ("ecc2159bd4dc7d54")
|
|
19
|
-
})();
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
);
|
|
23
|
-
//# sourceMappingURL=main.31ef41183a0357fd.hot-update.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"main.31ef41183a0357fd.hot-update.js","sources":["webpack://dashboard-api-mfe/./src/types/installments/installments.ts","webpack://dashboard-api-mfe/webpack/runtime/get_full_hash"],"sourcesContent":["export namespace Installments {\n // Filter params for querying installments plans\n export interface GetInstallmentsPlansParams {\n account_id?: string | string[]\n country_code?: string | string[]\n brand?: string | string[]\n name?: string\n merchant_reference?: string\n issuer?: string | string[]\n bin?: string | string[]\n start_date?: string\n end_date?: string\n page?: number\n size?: number\n }\n\n export interface FinancialCost {\n type: 'CFT' | 'TEA' | string\n rate: number\n }\n\n export interface InstallmentAmount {\n currency: string\n value: string\n total_value: string\n }\n\n export interface InstallmentPlanItem {\n id?: string\n installment: number\n rate: number | null\n provider_id?: string\n amount?: InstallmentAmount\n type?: string\n financial_costs?: FinancialCost[]\n }\n\n export interface PlanAmount {\n currency: string\n min_value: string\n max_value: string\n }\n\n export interface Availability {\n start_at?: string\n finish_at?: string\n }\n\n export interface InstallmentsPlan {\n id?: string\n code: string\n name: string\n account_id: string[]\n merchant_reference?: string\n installments_plan: InstallmentPlanItem[]\n country_code: string\n amount: PlanAmount\n availability?: Availability\n types_list?: string[] | null\n payment_method_type?: string\n created_at?: string\n updated_at?: string\n }\n\n export type GetInstallmentsPlansResponse = InstallmentsPlan[]\n\n export interface CreateInstallmentsPlanRequest {\n name: string\n merchant_reference?: string\n country_code: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n payment_method_type?: string\n }\n\n export interface CreateInstallmentsPlanResponse extends InstallmentsPlan {}\n\n export interface UpdateInstallmentsPlanRequest {\n name?: string\n merchant_reference?: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n }\n\n export interface UpdateInstallmentsPlanResponse extends InstallmentsPlan {}\n\n export interface DeleteInstallmentsPlanResponse {\n deleted?: boolean\n message?: string\n }\n\n // V2 Search (POST-based to avoid 431 errors with many filters)\n export interface SearchInstallmentsPlansRequest {\n account_ids?: string[]\n country_code?: string[]\n brand?: string[]\n name?: string\n merchant_reference?: string\n issuer?: string\n bin?: string\n start_date?: string\n end_date?: string\n page?: number\n size?: number\n }\n\n export interface SearchInstallmentsPlansResponse {\n data: InstallmentsPlan[]\n total: number\n page: number\n size: number\n }\n\n // V2 Bulk Create (create plans for multiple accounts simultaneously)\n export interface BulkCreateInstallmentsPlansRequest {\n account_ids: string[]\n name: string\n source?: string\n merchant_reference?: string\n country_code: string\n amount?: PlanAmount\n installments_plan?: InstallmentPlanItem[]\n availability?: Availability\n }\n\n export interface BulkCreateInstallmentsPlansResponse {\n created: InstallmentsPlan[]\n errors?: string[]\n }\n\n // V2 Bulk Delete\n export interface BulkDeleteInstallmentsPlansRequest {\n codes: string[]\n }\n\n export interface BulkDeleteError {\n code: string\n error_code: string\n message?: string\n }\n\n export interface BulkDeleteInstallmentsPlansResponse {\n deleted: string[]\n errors?: BulkDeleteError[]\n }\n}\n","__webpack_require__.h = () => (\"ecc2159bd4dc7d54\")"],"names":[],"mappings":";;;;;AAAA;;;;;;;;;;;;ACAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"c":["main"],"r":[],"m":[]}
|