@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
42 lines (41 loc) • 1.45 kB
JavaScript
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "b1c423a9-befd-49c1-9a39-bc847f98cfda", e._sentryDebugIdIdentifier = "sentry-dbid-b1c423a9-befd-49c1-9a39-bc847f98cfda");
} catch (e) {}
import { t as CountryCodes } from "./country-code-CX5KqMBr.js";
//#region src/constants/countries.ts
var EEA_Countries = [
CountryCodes.Austria,
CountryCodes.Belgium,
CountryCodes.Bulgaria,
CountryCodes.Croatia,
CountryCodes.Cyprus,
CountryCodes.CzechRepublic,
CountryCodes.Denmark,
CountryCodes.Estonia,
CountryCodes.Finland,
CountryCodes.France,
CountryCodes.Germany,
CountryCodes.Greece,
CountryCodes.Hungary,
CountryCodes.Iceland,
CountryCodes.Ireland,
CountryCodes.Italy,
CountryCodes.Latvia,
CountryCodes.Liechtenstein,
CountryCodes.Lithuania,
CountryCodes.Luxembourg,
CountryCodes.Malta,
CountryCodes.Netherlands,
CountryCodes.Norway,
CountryCodes.Poland,
CountryCodes.Portugal,
CountryCodes.Romania,
CountryCodes.Slovakia,
CountryCodes.Slovenia,
CountryCodes.Spain,
CountryCodes.Sweden
];
var LOW_RISK_COUNTRIES = [CountryCodes.UnitedKingdom, ...EEA_Countries].filter((country) => country !== CountryCodes.Liechtenstein);
//#endregion
export { LOW_RISK_COUNTRIES as n, EEA_Countries as t };