@yuno-payments/dashboard-api-mfe 2.4.0 → 2.7.0
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 +739 -0
- package/build/api/api.singleton.d.ts +10 -0
- package/build/api/api.singleton.test.d.ts +1 -0
- package/build/api/api.test.d.ts +1 -0
- package/build/api/api.types.d.ts +231 -0
- package/build/api/index.d.ts +3 -0
- package/build/api-provider.d.ts +4 -0
- package/build/api-provider.test.d.ts +1 -0
- package/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +46 -37
- package/build/cjs/types/msw/handlers/api-logs.d.ts +1 -0
- package/build/cjs/types/msw/handlers/webhooks.d.ts +1 -0
- package/build/cjs/types/msw/mocks/api-logs/api-logs-v3.mock.d.ts +2 -0
- package/build/cjs/types/msw/mocks/webhooks/webhook-timeline.mock.d.ts +2 -0
- package/build/cjs/types/mutations/audit/audit-api.mutation.d.ts +4 -0
- package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
- package/build/cjs/types/mutations/audit/index.d.ts +1 -1
- package/build/cjs/types/mutations/concierge/concierge.mutation.d.ts +6 -8
- package/build/cjs/types/mutations/index.d.ts +1 -1
- package/build/cjs/types/mutations/organization-settings/index.d.ts +1 -0
- package/build/cjs/types/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
- package/build/cjs/types/mutations/users/users.mutation.d.ts +4 -0
- package/build/cjs/types/queries/api-logs/api-logs-v3.query.d.ts +9 -0
- package/build/cjs/types/queries/api-logs/index.d.ts +1 -0
- package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +14 -0
- package/build/cjs/types/queries/audit/audit-v3.query.d.ts +9 -0
- package/build/cjs/types/queries/audit/audit.query.d.ts +8 -9
- package/build/cjs/types/queries/audit/index.d.ts +2 -1
- package/build/cjs/types/queries/concierge/concierge.query.d.ts +5 -5
- package/build/cjs/types/queries/index.d.ts +2 -1
- package/build/cjs/types/queries/mfa/organization-settings.query.d.ts +10 -1
- package/build/cjs/types/queries/users/users.query.d.ts +1 -0
- package/build/cjs/types/queries/webhooks/index.d.ts +1 -0
- package/build/cjs/types/queries/webhooks/webhook-timeline.query.d.ts +9 -0
- package/build/cjs/types/types/audit/audit.d.ts +152 -8
- package/build/cjs/types/types/concierge/concierge-alerts.d.ts +42 -0
- package/build/cjs/types/types/concierge/index.d.ts +1 -2
- package/build/cjs/types/types/index.d.ts +0 -1
- package/build/cjs/types/types/recipients/recipients.d.ts +0 -1
- 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 +5 -5
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +46 -37
- package/build/esm/types/msw/handlers/api-logs.d.ts +1 -0
- package/build/esm/types/msw/handlers/webhooks.d.ts +1 -0
- package/build/esm/types/msw/mocks/api-logs/api-logs-v3.mock.d.ts +2 -0
- package/build/esm/types/msw/mocks/webhooks/webhook-timeline.mock.d.ts +2 -0
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +4 -0
- package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
- package/build/esm/types/mutations/audit/index.d.ts +1 -1
- package/build/esm/types/mutations/concierge/concierge.mutation.d.ts +6 -8
- package/build/esm/types/mutations/index.d.ts +1 -1
- package/build/esm/types/mutations/organization-settings/index.d.ts +1 -0
- package/build/esm/types/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
- package/build/esm/types/mutations/users/users.mutation.d.ts +4 -0
- package/build/esm/types/queries/api-logs/api-logs-v3.query.d.ts +9 -0
- package/build/esm/types/queries/api-logs/index.d.ts +1 -0
- package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +14 -0
- package/build/esm/types/queries/audit/audit-v3.query.d.ts +9 -0
- package/build/esm/types/queries/audit/audit.query.d.ts +8 -9
- package/build/esm/types/queries/audit/index.d.ts +2 -1
- package/build/esm/types/queries/concierge/concierge.query.d.ts +5 -5
- package/build/esm/types/queries/index.d.ts +2 -1
- package/build/esm/types/queries/mfa/organization-settings.query.d.ts +10 -1
- package/build/esm/types/queries/users/users.query.d.ts +1 -0
- package/build/esm/types/queries/webhooks/index.d.ts +1 -0
- package/build/esm/types/queries/webhooks/webhook-timeline.query.d.ts +9 -0
- package/build/esm/types/types/audit/audit.d.ts +152 -8
- package/build/esm/types/types/concierge/concierge-alerts.d.ts +42 -0
- package/build/esm/types/types/concierge/index.d.ts +1 -2
- package/build/esm/types/types/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients.d.ts +0 -1
- package/build/index.d.ts +332 -268
- 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/lib/session-expired/emit-expired.d.ts +4 -0
- package/build/lib/session-expired/emit-expired.test.d.ts +1 -0
- package/build/lib/session-expired/index.d.ts +1 -0
- package/build/msw/browser.d.ts +1 -0
- package/build/msw/handlers/accounts.d.ts +1 -0
- package/build/msw/handlers/field-visibility.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/mfa.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/recipients.d.ts +1 -0
- package/build/msw/handlers/reconciliation-insights.d.ts +1 -0
- package/build/msw/index.d.ts +1 -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/recipients/recipients.mock.d.ts +775 -0
- package/build/msw/mocks/reconciliation-insights/index.d.ts +23 -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 +59 -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 +3 -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/certificates/certificates.mutation.d.ts +31 -0
- package/build/mutations/certificates/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/concierge/concierge.mutation.d.ts +10 -0
- package/build/mutations/concierge/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 +54 -0
- package/build/mutations/fraud-screening/index.d.ts +1 -0
- package/build/mutations/index.d.ts +38 -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/integration-requests/index.d.ts +1 -0
- package/build/mutations/integration-requests/integration-requests.mutation.d.ts +12 -0
- package/build/mutations/integration-requests/integration-requests.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 +5 -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/organizations/index.d.ts +1 -0
- package/build/mutations/organizations/organizations.mutation.d.ts +1 -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/playground/index.d.ts +1 -0
- package/build/mutations/playground/playground.mutation.d.ts +7 -0
- package/build/mutations/playground/playground.mutation.test.d.ts +1 -0
- package/build/mutations/recipients/index.d.ts +1 -0
- package/build/mutations/recipients/recipients.mutation.d.ts +18 -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 +2 -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/settings/use-table-onboarding.d.ts +6 -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 +12 -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.by-organization.test.d.ts +1 -0
- package/build/queries/accounts/accounts.query.d.ts +33 -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/audit/audit.query.d.ts +49 -0
- package/build/queries/audit/audit.query.test.d.ts +1 -0
- package/build/queries/audit/index.d.ts +2 -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/certificates/certificates.query.d.ts +6 -0
- package/build/queries/certificates/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 +116 -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/concierge/concierge.query.d.ts +6 -0
- package/build/queries/concierge/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 +16 -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/feature-flags/datadog-hooks.d.ts +34 -0
- package/build/queries/feature-flags/datadog-hooks.test.d.ts +1 -0
- package/build/queries/feature-flags/feature-flags.test.d.ts +1 -0
- package/build/queries/feature-flags/index.d.ts +17 -0
- package/build/queries/feature-flags/index.test.d.ts +11 -0
- package/build/queries/feature-flags/legacy-hooks.d.ts +8 -0
- package/build/queries/feature-flags/parity.test.d.ts +8 -0
- package/build/queries/field-visibility/field-visibility.query.d.ts +8 -0
- package/build/queries/field-visibility/field-visibility.query.test.d.ts +1 -0
- package/build/queries/field-visibility/index.d.ts +1 -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 +5 -0
- package/build/queries/mfa/organization-settings.query.test.d.ts +1 -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 +29 -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 +6 -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 +14 -0
- package/build/queries/reconciliations/index.d.ts +7 -0
- package/build/queries/reconciliations/reconciliation-insights.query.d.ts +27 -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 +23 -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 +24 -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/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 +352 -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/certificates/certificates.d.ts +26 -0
- package/build/types/certificates/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 +177 -0
- package/build/{cjs/types/types → types}/concierge/concierge-access.d.ts +1 -1
- package/build/types/concierge/index.d.ts +2 -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 +70 -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/field-visibility/field-visibility.d.ts +6 -0
- package/build/types/field-visibility/index.d.ts +1 -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 +42 -0
- package/build/types/installments/index.d.ts +1 -0
- package/build/types/installments/installments.d.ts +129 -0
- package/build/types/integration-requests/index.d.ts +1 -0
- package/build/types/integration-requests/integration-request.d.ts +26 -0
- package/build/types/mfa/index.d.ts +1 -0
- package/build/types/mfa/mfa.d.ts +10 -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 +141 -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 +582 -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/playground/index.d.ts +1 -0
- package/build/types/playground/playground.d.ts +33 -0
- package/build/types/recipients/index.d.ts +3 -0
- package/build/types/recipients/recipients-export.d.ts +52 -0
- package/build/types/recipients/recipients-mutations.d.ts +136 -0
- package/build/types/recipients/recipients.d.ts +242 -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 +238 -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 +155 -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 +75 -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 +102 -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 +199 -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/datadog-environment.d.ts +33 -0
- package/build/utils/datadog-environment.test.d.ts +1 -0
- package/build/utils/enums.d.ts +19 -0
- package/build/utils/feature-flags-provider.d.ts +21 -0
- package/build/utils/feature-flags-provider.test.d.ts +1 -0
- package/build/utils/handler-error.d.ts +6 -0
- package/build/utils/index.d.ts +5 -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 +10 -0
- package/package.json +1 -1
- package/build/esm/types/mutations/audit/audit-subscriptions-v2.mutation.d.ts +0 -12
- package/build/esm/types/mutations/domains/domains.mutation.d.ts +0 -41
- package/build/esm/types/mutations/domains/index.d.ts +0 -1
- package/build/esm/types/queries/audit/audit-subscriptions-v2.query.d.ts +0 -4
- package/build/esm/types/queries/domains/domains.query.d.ts +0 -13
- package/build/esm/types/queries/domains/index.d.ts +0 -1
- package/build/esm/types/types/concierge/concierge-access-request.d.ts +0 -36
- package/build/esm/types/types/concierge/concierge-access.d.ts +0 -50
- package/build/esm/types/types/domains/domains.d.ts +0 -77
- package/build/esm/types/types/domains/index.d.ts +0 -1
- /package/build/{cjs/types/mutations → mutations}/audit/audit-subscriptions-v2.mutation.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/domains/domains.mutation.d.ts +0 -0
- /package/build/{cjs/types/mutations → mutations}/domains/index.d.ts +0 -0
- /package/build/{cjs/types/queries → queries}/audit/audit-subscriptions-v2.query.d.ts +0 -0
- /package/build/{cjs/types/queries → queries}/domains/domains.query.d.ts +0 -0
- /package/build/{cjs/types/queries → queries}/domains/index.d.ts +0 -0
- /package/build/{cjs/types/types → types}/concierge/concierge-access-request.d.ts +0 -0
- /package/build/{cjs/types/types → types}/domains/domains.d.ts +0 -0
- /package/build/{cjs/types/types → types}/domains/index.d.ts +0 -0
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { AxiosError } from 'axios';
|
|
2
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
3
|
-
import { Domains } from '../../types/domains';
|
|
4
|
-
import { BFFErrorResponse } from '../smart-routing/smart-routing.mutation';
|
|
5
|
-
interface RegisterDomainsParams {
|
|
6
|
-
organizationCode: string;
|
|
7
|
-
payload: Domains.RegisterDomainsPayload;
|
|
8
|
-
}
|
|
9
|
-
interface DeleteDomainParams {
|
|
10
|
-
organizationCode: string;
|
|
11
|
-
/**
|
|
12
|
-
* Forwarded as `x-account-integration-code` so provider-domain-ms can
|
|
13
|
-
* propagate it to pci-applepay-ms (Apple needs the connection to unregister
|
|
14
|
-
* the domain). Resolve this from the connection that owns the domain — for
|
|
15
|
-
* Apple Pay today, the single Apple Pay connection on the account.
|
|
16
|
-
*/
|
|
17
|
-
accountIntegrationCode: string;
|
|
18
|
-
paymentMethod: Domains.PaymentMethodType;
|
|
19
|
-
code: string;
|
|
20
|
-
/**
|
|
21
|
-
* Surfaced to provider-domain-ms in the unregister payload. Use distinct
|
|
22
|
-
* strings for the user-facing "Delete" action vs the in-flight "Cancel"
|
|
23
|
-
* action so audit logs can distinguish intent.
|
|
24
|
-
*/
|
|
25
|
-
reason: string;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Registers one or more Apple Pay (or future Google Pay) domains. Also drives
|
|
29
|
-
* the "Retry" row action — calling Register again with the same URL is the
|
|
30
|
-
* supported way to recover a row stuck in ERROR, since provider-domain-ms has
|
|
31
|
-
* no dedicated retry endpoint.
|
|
32
|
-
*/
|
|
33
|
-
export declare function useRegisterAppleDomains(): UseMutationResult<Domains.RegisterDomainsResponse, AxiosError<BFFErrorResponse>, RegisterDomainsParams>;
|
|
34
|
-
/**
|
|
35
|
-
* Soft-deletes (status → INACTIVE) a single domain. Also drives the "Cancel"
|
|
36
|
-
* row action while the domain is verifying — both flows POST to the same
|
|
37
|
-
* endpoint but pass distinct `reason` strings so callers can be told apart in
|
|
38
|
-
* audit logs.
|
|
39
|
-
*/
|
|
40
|
-
export declare function useDeleteAppleDomain(): UseMutationResult<void, AxiosError<BFFErrorResponse>, DeleteDomainParams>;
|
|
41
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './domains.mutation';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { Audit } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
-
export declare function useListAuditSubscriptionsV2(params?: Audit.ListAuditSubscriptionsV2Params): UseQueryResult<Audit.AuditSubscriptionGroupV2[], BFFErrorResponse>;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AxiosError } from 'axios';
|
|
2
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
-
import { Domains } from '../../types/domains';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
-
/**
|
|
6
|
-
* Lists Apple Pay (and future Google Pay) merchant domains for an organization.
|
|
7
|
-
*
|
|
8
|
-
* provider-domain-ms doesn't emit webhooks when CREATED rows transition to
|
|
9
|
-
* REGISTERED/ERROR. To keep the UI responsive we poll every 5s while at least
|
|
10
|
-
* one row in the current page is still CREATED, and stop as soon as the table
|
|
11
|
-
* settles (saves bandwidth on idle tabs).
|
|
12
|
-
*/
|
|
13
|
-
export declare function useListAppleDomains(organizationCode: string, filters: Domains.ListDomainsFilters, enabled?: boolean): UseQueryResult<Domains.ListDomainsResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './domains.query';
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
export declare namespace ConciergeAccessRequest {
|
|
2
|
-
type Channel = 'slack' | 'whatsapp' | 'telegram';
|
|
3
|
-
type SlackSetup = 'add_existing' | 'create_new';
|
|
4
|
-
type Status = 'pending' | 'in_review' | 'approved' | 'active' | 'rejected';
|
|
5
|
-
interface Item {
|
|
6
|
-
id: string;
|
|
7
|
-
organization_code: string;
|
|
8
|
-
merchant_name: string | null;
|
|
9
|
-
merchant_first_name: string | null;
|
|
10
|
-
kam_email: string | null;
|
|
11
|
-
tam_email: string | null;
|
|
12
|
-
agent_email: string | null;
|
|
13
|
-
requester_email: string;
|
|
14
|
-
status: Status;
|
|
15
|
-
channel: Channel | null;
|
|
16
|
-
slack_setup: SlackSetup | null;
|
|
17
|
-
group_name: string | null;
|
|
18
|
-
link: string | null;
|
|
19
|
-
activation_date: string | null;
|
|
20
|
-
brief_language: string | null;
|
|
21
|
-
created_at: string;
|
|
22
|
-
updated_at: string;
|
|
23
|
-
}
|
|
24
|
-
interface CreatePayload {
|
|
25
|
-
channel: Channel;
|
|
26
|
-
slack_setup?: SlackSetup | null;
|
|
27
|
-
group_name: string;
|
|
28
|
-
activation_date: string;
|
|
29
|
-
}
|
|
30
|
-
type CreateResponse = Item;
|
|
31
|
-
type StatusResponse = Item | null;
|
|
32
|
-
type Error = {
|
|
33
|
-
code?: string;
|
|
34
|
-
name?: string;
|
|
35
|
-
};
|
|
36
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
export declare namespace ConciergeAccess {
|
|
2
|
-
interface SlackChannels {
|
|
3
|
-
channel_ids: string[];
|
|
4
|
-
dm_user_ids: string[];
|
|
5
|
-
}
|
|
6
|
-
interface WhatsappChannels {
|
|
7
|
-
group_ids: string[];
|
|
8
|
-
dm_phones: string[];
|
|
9
|
-
}
|
|
10
|
-
interface TelegramChannels {
|
|
11
|
-
chat_ids: string[];
|
|
12
|
-
dm_usernames: string[];
|
|
13
|
-
}
|
|
14
|
-
interface ChannelsConfig {
|
|
15
|
-
slack?: SlackChannels;
|
|
16
|
-
whatsapp?: WhatsappChannels;
|
|
17
|
-
telegram?: TelegramChannels;
|
|
18
|
-
}
|
|
19
|
-
interface Brief {
|
|
20
|
-
id: string;
|
|
21
|
-
name: string;
|
|
22
|
-
enabled: boolean;
|
|
23
|
-
frequency: string;
|
|
24
|
-
day_of_week: string;
|
|
25
|
-
day_of_month: string;
|
|
26
|
-
delivery_time: string;
|
|
27
|
-
content: string;
|
|
28
|
-
}
|
|
29
|
-
interface HeartbeatConfig {
|
|
30
|
-
merchant_id: string;
|
|
31
|
-
preferred_language: string;
|
|
32
|
-
heartbeat_channel_id: string;
|
|
33
|
-
heartbeat_channel_name: string;
|
|
34
|
-
timezone: string;
|
|
35
|
-
briefs: Brief[];
|
|
36
|
-
channels: ChannelsConfig;
|
|
37
|
-
updated_at: string;
|
|
38
|
-
}
|
|
39
|
-
type GetResponse = HeartbeatConfig;
|
|
40
|
-
type UpdatePayload = ChannelsConfig;
|
|
41
|
-
type UpdateResponse = ChannelsConfig;
|
|
42
|
-
type CreateBriefPayload = Omit<Brief, 'id'>;
|
|
43
|
-
type CreateBriefResponse = Brief;
|
|
44
|
-
type UpdateBriefPayload = Omit<Brief, 'id'>;
|
|
45
|
-
type UpdateBriefResponse = Brief;
|
|
46
|
-
type Error = {
|
|
47
|
-
code?: string;
|
|
48
|
-
name?: string;
|
|
49
|
-
};
|
|
50
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Apple Pay (and future Google Pay) merchant domain registrations.
|
|
3
|
-
*
|
|
4
|
-
* Backend statuses (`BackendStatus`) come straight from provider-domain-ms's
|
|
5
|
-
* `merchant_domain_registrations.status` column. Consumers usually want the
|
|
6
|
-
* coarser UI bucket (`UiStatus`) — see `mapBackendStatusToUi`.
|
|
7
|
-
*/
|
|
8
|
-
export declare namespace Domains {
|
|
9
|
-
type BackendStatus = 'REGISTERED' | 'CREATED' | 'ERROR' | 'INACTIVE';
|
|
10
|
-
/** UI bucket exposed to the Dashboard (matches the Figma status badge variants). */
|
|
11
|
-
type UiStatus = 'ACTIVE' | 'VERIFYING' | 'FAILED';
|
|
12
|
-
type PaymentMethodType = 'APPLE_PAY' | 'GOOGLE_PAY';
|
|
13
|
-
interface AppleDomain {
|
|
14
|
-
code: string;
|
|
15
|
-
domain: string;
|
|
16
|
-
status: BackendStatus;
|
|
17
|
-
paymentMethod: PaymentMethodType;
|
|
18
|
-
accountCode: string;
|
|
19
|
-
responseCode: string;
|
|
20
|
-
createdAt: string;
|
|
21
|
-
updatedAt: string;
|
|
22
|
-
}
|
|
23
|
-
interface Pagination {
|
|
24
|
-
page: number;
|
|
25
|
-
limit: number;
|
|
26
|
-
total: number;
|
|
27
|
-
totalPages: number;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Filters accepted by the list endpoint. Every multi-value filter is serialised
|
|
31
|
-
* as repeated query params (`?status=A&status=B`) by the BFF — matches the strict
|
|
32
|
-
* parser in provider-domain-ms.
|
|
33
|
-
*
|
|
34
|
-
* `createdAtFrom` / `createdAtTo` are required ISO-8601 instants; defaults are the
|
|
35
|
-
* caller's job (e.g. "last 90 days" in the UI).
|
|
36
|
-
*/
|
|
37
|
-
interface ListDomainsFilters {
|
|
38
|
-
createdAtFrom: string;
|
|
39
|
-
createdAtTo: string;
|
|
40
|
-
accountCode?: string[];
|
|
41
|
-
paymentMethodType?: PaymentMethodType[];
|
|
42
|
-
status?: BackendStatus[];
|
|
43
|
-
responseCode?: string[];
|
|
44
|
-
domainName?: string;
|
|
45
|
-
page?: number;
|
|
46
|
-
limit?: number;
|
|
47
|
-
}
|
|
48
|
-
interface ListDomainsResponse {
|
|
49
|
-
data: AppleDomain[];
|
|
50
|
-
pagination: Pagination;
|
|
51
|
-
}
|
|
52
|
-
interface RegisterDomainsPayload {
|
|
53
|
-
accountCode: string;
|
|
54
|
-
connectionCode: string;
|
|
55
|
-
paymentMethodType: PaymentMethodType;
|
|
56
|
-
domains: {
|
|
57
|
-
url: string;
|
|
58
|
-
}[];
|
|
59
|
-
}
|
|
60
|
-
interface RegisterDomainsResponse {
|
|
61
|
-
accountCode: string;
|
|
62
|
-
paymentMethod: PaymentMethodType;
|
|
63
|
-
domains: AppleDomain[];
|
|
64
|
-
}
|
|
65
|
-
interface DeleteDomainPayload {
|
|
66
|
-
paymentMethod: PaymentMethodType;
|
|
67
|
-
code: string;
|
|
68
|
-
reason: string;
|
|
69
|
-
}
|
|
70
|
-
/**
|
|
71
|
-
* Maps the backend status to the FE bucket the Figma uses for badges and row
|
|
72
|
-
* actions. INACTIVE rows are tombstones — callers typically filter them out
|
|
73
|
-
* before reaching the badge layer, but mapping to `null` keeps the function
|
|
74
|
-
* total in case a row slips through.
|
|
75
|
-
*/
|
|
76
|
-
const mapBackendStatusToUi: (status: BackendStatus) => UiStatus | null;
|
|
77
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './domains';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|