@adyen/kyc-components 2.10.0 → 2.11.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/dist/es/adyen-kyc-components.es.js +3837 -3784
- package/dist/style.css +1524 -1524
- package/dist/types/components/Company/component/CompanyComponent.d.ts +6 -7
- package/dist/types/components/Company/index.d.ts +1 -0
- package/dist/types/components/Company/types.d.ts +3 -10
- package/dist/types/components/CompanyRegistrationDetails/component/CompanyRegistrationDetailsComponent.d.ts +4 -0
- package/dist/types/components/CompanyRegistrationDetails/index.d.ts +1 -0
- package/dist/types/components/{CompanyDetails → CompanyRegistrationDetails}/types.d.ts +2 -2
- package/dist/types/components/CompanyRegistrationDetails/validate.d.ts +30 -0
- package/dist/types/components/Dropins/CompanyDropin/components/CompanyDropinComponent.d.ts +1 -1
- package/dist/types/components/Dropins/CompanyDropin/types.d.ts +9 -0
- package/dist/types/components/EmbeddedDropins/{PayoutEmbeddedDropin/PayoutEmbeddedDropin.d.ts → TransferInstrumentComponent/TransferInstrumentComponent.d.ts} +2 -2
- package/dist/types/components/SoleProp/component/SolePropComponent.d.ts +1 -1
- package/dist/types/components/SoleProp/types.d.ts +2 -2
- package/dist/types/components/Trust/rules.d.ts +3 -0
- package/dist/types/components/TrustRegistrationDetails/types.d.ts +3 -2
- package/dist/types/components/index.d.ts +2 -2
- package/dist/types/components/internal/AccountHolder/types.d.ts +1 -1
- package/dist/types/components/internal/Address/Address.d.ts +1 -1
- package/dist/types/components/internal/Address/constants.d.ts +2 -2
- package/dist/types/components/internal/Address/types.d.ts +10 -1
- package/dist/types/components/internal/Address/utils.d.ts +2 -2
- package/dist/types/components/internal/BusinessRegistrationNumber/types.d.ts +2 -0
- package/dist/types/components/internal/BusinessRegistrationNumber/validate.d.ts +5 -4
- package/dist/types/components/internal/LegalCompanyNameField/LegalCompanyNameField.d.ts +1 -1
- package/dist/types/components/internal/LegalCompanyNameField/types.d.ts +1 -4
- package/dist/types/core/SDKValidation/index.d.ts +1 -1
- package/dist/types/core/core.d.ts +1 -1
- package/dist/types/core/hooks/useForm/types.d.ts +3 -0
- package/dist/types/core/models/api/address-search.d.ts +9 -0
- package/dist/types/core/models/api/legal-arrangement.d.ts +0 -1
- package/dist/types/core/models/api/organization.d.ts +0 -1
- package/dist/types/core/models/country-config.d.ts +1 -0
- package/dist/types/core/process-field-configurations.d.ts +1 -1
- package/dist/types/language/config.d.ts +3 -5
- package/dist/types/utils/decision-maker-roles.d.ts +1 -1
- package/dist/types/utils/entity-status-util.d.ts +2 -2
- package/dist/types/utils/formUtils.d.ts +1 -0
- package/dist/types/utils/mapping/componentApiMapping.d.ts +28 -27
- package/dist/types/utils/regex/index.d.ts +1 -0
- package/dist/types/utils/regex/trustRegistrationNumberPatterns.d.ts +2 -0
- package/dist/types/utils/regex/types.d.ts +5 -0
- package/dist/types/utils/trust-util.d.ts +1 -1
- package/package.json +1 -1
- package/dist/types/components/CompanyDetails/component/CompanyDetailsComponent.d.ts +0 -5
- package/dist/types/components/CompanyDetails/validate.d.ts +0 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '
|
|
2
|
-
import {
|
|
1
|
+
import './CompanyComponent.scss';
|
|
2
|
+
import { CompanyRegistrationDetailsSchema } from '../../CompanyRegistrationDetails/types';
|
|
3
3
|
import { CompanyTypeSchema } from '../../CompanyType/types';
|
|
4
4
|
import { CompanyProps } from '../types';
|
|
5
5
|
export declare const companyForms: {
|
|
@@ -13,10 +13,10 @@ export declare const companyForms: {
|
|
|
13
13
|
readonly formName: "companyStructure";
|
|
14
14
|
readonly fields: (keyof CompanyTypeSchema)[];
|
|
15
15
|
};
|
|
16
|
-
readonly
|
|
17
|
-
readonly formId: "
|
|
16
|
+
readonly companyRegistrationDetails: {
|
|
17
|
+
readonly formId: "companyRegistrationDetails";
|
|
18
18
|
readonly formName: "registrationDetails";
|
|
19
|
-
readonly fields: (keyof
|
|
19
|
+
readonly fields: (keyof CompanyRegistrationDetailsSchema)[];
|
|
20
20
|
};
|
|
21
21
|
readonly companyRegistrationAddress: {
|
|
22
22
|
readonly formId: "companyRegistrationAddress";
|
|
@@ -35,5 +35,4 @@ export declare const companyForms: {
|
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
export declare const companyDocumentForms: ("companyRegistrationDocument" | "companyTaxDocument")[];
|
|
38
|
-
declare function CompanyComponent(props: CompanyProps): import("preact").JSX.Element;
|
|
39
|
-
export default CompanyComponent;
|
|
38
|
+
export declare function CompanyComponent(props: CompanyProps): import("preact").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './component/CompanyComponent';
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
import type { BaseOuterFormProps } from '../../core/hooks/useForm';
|
|
2
|
-
import type { LegalEntity } from '../../core/models/api/legal-entity';
|
|
3
2
|
import type { LegalEntityType } from '../../core/models/api/legal-entity-type';
|
|
4
3
|
import type { CountryCode } from '../../core/models/country-code';
|
|
5
4
|
import type { FormModel } from '../../core/models/form';
|
|
6
|
-
import type { CompanyDetailsSchema } from '../CompanyDetails/types';
|
|
7
5
|
import type { CompanyNameAndCountrySchema } from '../CompanyNameAndCountry/types';
|
|
6
|
+
import type { CompanyRegistrationDetailsSchema } from '../CompanyRegistrationDetails/types';
|
|
8
7
|
import type { CompanyTypeSchema } from '../CompanyType/types';
|
|
9
8
|
import type { DocumentUploadSchema } from '../DocumentUpload/types';
|
|
10
|
-
import type { DropinAPIHandlers
|
|
9
|
+
import type { DropinAPIHandlers } from '../Dropins/types';
|
|
11
10
|
import type { RegistrationAddressSchema } from '../RegistrationAddress/types';
|
|
12
|
-
import type { TrustMember } from '../TrustMembers/types';
|
|
13
11
|
export interface CompanySchema {
|
|
14
|
-
|
|
12
|
+
companyRegistrationDetails?: CompanyRegistrationDetailsSchema;
|
|
15
13
|
companyType?: CompanyTypeSchema;
|
|
16
14
|
companyRegistrationAddress?: RegistrationAddressSchema;
|
|
17
15
|
companyNameAndCountry?: CompanyNameAndCountrySchema;
|
|
@@ -29,8 +27,3 @@ export interface CompanyProps extends BaseOuterFormProps<CompanySchema> {
|
|
|
29
27
|
handleAddressSearch?: DropinAPIHandlers['handleAddressSearch'];
|
|
30
28
|
handleFindAddress?: DropinAPIHandlers['handleFindAddress'];
|
|
31
29
|
}
|
|
32
|
-
export interface CompanyDropinProps extends CompanyProps, DropinAPIHandlers, DropinProps {
|
|
33
|
-
parentLegalEntity?: LegalEntity;
|
|
34
|
-
associationDetail?: TrustMember;
|
|
35
|
-
isTargetLegalEntityType?: boolean;
|
|
36
|
-
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import './CompanyRegistrationDetailsComponent.scss';
|
|
2
|
+
import { CompanyRegistrationDetailsProps, CompanyRegistrationDetailsSchema } from '../types';
|
|
3
|
+
export declare const companyRegistrationDetailsFields: Array<keyof CompanyRegistrationDetailsSchema>;
|
|
4
|
+
export declare function CompanyRegistrationDetailsComponent(props: CompanyRegistrationDetailsProps): import("preact").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './component/CompanyRegistrationDetailsComponent';
|
|
@@ -4,7 +4,7 @@ import { CountryCode } from '../../core/models/country-code';
|
|
|
4
4
|
import { BusinessRegistrationNumberSchema } from '../internal/BusinessRegistrationNumber/types';
|
|
5
5
|
import { TaxIdSchema } from '../internal/TaxId/types';
|
|
6
6
|
import { VatNumberSchema } from '../internal/VatNumber/types';
|
|
7
|
-
export interface
|
|
7
|
+
export interface CompanyRegistrationDetailsSchema extends BusinessRegistrationNumberSchema, TaxIdSchema, VatNumberSchema {
|
|
8
8
|
tradingName?: string;
|
|
9
9
|
sameNameAsLegalName?: boolean;
|
|
10
10
|
stockExchangeMIC?: string;
|
|
@@ -12,7 +12,7 @@ export interface CompanyDetailsSchema extends BusinessRegistrationNumberSchema,
|
|
|
12
12
|
dateOfIncorporation?: string;
|
|
13
13
|
isUen?: boolean;
|
|
14
14
|
}
|
|
15
|
-
export interface
|
|
15
|
+
export interface CompanyRegistrationDetailsProps extends BaseInnerFormProps<CompanyRegistrationDetailsSchema> {
|
|
16
16
|
companyType?: CompanyTypesValue;
|
|
17
17
|
country?: CountryCode;
|
|
18
18
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export declare const companyRegistrationDetailsValidationRules: {
|
|
2
|
+
tradingName: {
|
|
3
|
+
modes: "blur"[];
|
|
4
|
+
validate: (tradingName: string) => boolean;
|
|
5
|
+
errorMessage: "fieldIsRequired";
|
|
6
|
+
};
|
|
7
|
+
stockExchangeMIC: {
|
|
8
|
+
modes: "blur"[];
|
|
9
|
+
validate: (input: string) => boolean;
|
|
10
|
+
errorMessage: "validationPleaseEnterAValidMarketIdentifier";
|
|
11
|
+
};
|
|
12
|
+
stockISIN: ({
|
|
13
|
+
modes: "blur"[];
|
|
14
|
+
validate: (stockISIN: string) => boolean;
|
|
15
|
+
errorMessage: "fieldIsRequired";
|
|
16
|
+
} | {
|
|
17
|
+
modes: "blur"[];
|
|
18
|
+
validate: (input: string) => boolean;
|
|
19
|
+
errorMessage: "validationPleaseEnterAValidStockISIN";
|
|
20
|
+
})[];
|
|
21
|
+
dateOfIncorporation: ({
|
|
22
|
+
modes: "blur"[];
|
|
23
|
+
validate: (dateOfIncorporation: string) => boolean;
|
|
24
|
+
errorMessage: "fieldIsRequired";
|
|
25
|
+
} | {
|
|
26
|
+
modes: "blur"[];
|
|
27
|
+
validate: (dateOfIncorporation: string) => boolean;
|
|
28
|
+
errorMessage: "invalidDateOfIncorporation";
|
|
29
|
+
})[];
|
|
30
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CompanyDropinProps } from '
|
|
1
|
+
import { CompanyDropinProps } from '../types';
|
|
2
2
|
export declare function CompanyDropinComponent({ country: parentCountry, problems: propProblems, hideDropinLayout, taskName, capabilities, homeButtonLabel, taskType, trackingConfig, associationDetail, parentLegalEntity, legalEntityResponse, isTargetLegalEntityType, eventEmitter, onSubmit: onExternalSubmit, handleCreateDocument, handleGetDocument, handleUpdateDocument, handleAddressSearch, handleFindAddress, handleCreateLegalEntity, handleUpdateLegalEntity, handleHomeClick, onTypeSwitch, onChange, }: CompanyDropinProps): import("preact").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { LegalEntity } from '../../../core/models/api/legal-entity';
|
|
2
|
+
import type { CompanyProps } from '../../Company/types';
|
|
3
|
+
import type { TrustMember } from '../../TrustMembers/types';
|
|
4
|
+
import type { DropinAPIHandlers, DropinProps } from '../types';
|
|
5
|
+
export interface CompanyDropinProps extends CompanyProps, DropinAPIHandlers, DropinProps {
|
|
6
|
+
parentLegalEntity?: LegalEntity;
|
|
7
|
+
associationDetail?: TrustMember;
|
|
8
|
+
isTargetLegalEntityType?: boolean;
|
|
9
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ExistingLegalEntity } from '../../../core/models/api/legal-entity';
|
|
2
2
|
import EventEmitter from '../../EventEmitter';
|
|
3
|
-
export interface
|
|
3
|
+
export interface TransferInstrumentComponentProps {
|
|
4
4
|
legalEntityId: ExistingLegalEntity['id'];
|
|
5
5
|
transferInstrumentId?: string;
|
|
6
6
|
onChange?(): void;
|
|
7
7
|
onSubmit?(): void;
|
|
8
8
|
eventEmitter?: EventEmitter;
|
|
9
9
|
}
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function TransferInstrumentComponent({ legalEntityId, transferInstrumentId, onChange, onSubmit, eventEmitter, }: TransferInstrumentComponentProps): import("preact").JSX.Element;
|
|
@@ -8,7 +8,7 @@ export declare const solePropForms: {
|
|
|
8
8
|
readonly solePropRegistrationDetails: {
|
|
9
9
|
readonly formId: "solePropRegistrationDetails";
|
|
10
10
|
readonly formName: "registrationDetails";
|
|
11
|
-
readonly fields: (keyof import("../../
|
|
11
|
+
readonly fields: (keyof import("../../CompanyRegistrationDetails/types").CompanyRegistrationDetailsSchema)[];
|
|
12
12
|
};
|
|
13
13
|
readonly solePropRegistrationAddress: {
|
|
14
14
|
readonly formId: "solePropRegistrationAddress";
|
|
@@ -2,13 +2,13 @@ import type { BaseOuterFormProps } from '../../core/hooks/useForm';
|
|
|
2
2
|
import { LegalEntity } from '../../core/models/api/legal-entity';
|
|
3
3
|
import { CountryCode } from '../../core/models/country-code';
|
|
4
4
|
import { FormModel } from '../../core/models/form';
|
|
5
|
-
import type { CompanyDetailsSchema } from '../CompanyDetails/types';
|
|
6
5
|
import { CompanyNameAndCountrySchema } from '../CompanyNameAndCountry/types';
|
|
6
|
+
import type { CompanyRegistrationDetailsSchema } from '../CompanyRegistrationDetails/types';
|
|
7
7
|
import { DocumentUploadSchema } from '../DocumentUpload/types';
|
|
8
8
|
import type { DropinAPIHandlers, DropinProps } from '../Dropins/types';
|
|
9
9
|
import type { RegistrationAddressSchema } from '../RegistrationAddress/types';
|
|
10
10
|
export type SolePropNameAndCountrySchema = CompanyNameAndCountrySchema;
|
|
11
|
-
export type SolePropRegistrationDetailsSchema =
|
|
11
|
+
export type SolePropRegistrationDetailsSchema = CompanyRegistrationDetailsSchema;
|
|
12
12
|
export interface SolePropSchema {
|
|
13
13
|
solePropNameAndCountry?: SolePropNameAndCountrySchema;
|
|
14
14
|
solePropRegistrationDetails?: SolePropRegistrationDetailsSchema;
|
|
@@ -2,11 +2,12 @@ import type { BaseInnerFormProps } from '../../core/hooks/useForm';
|
|
|
2
2
|
import { TrustTypes } from '../../core/models/api/trust-types-value';
|
|
3
3
|
import { CountryCode } from '../../core/models/country-code';
|
|
4
4
|
import { TranslationKey } from '../../language/types';
|
|
5
|
+
import { BusinessRegistrationNumberSchema } from '../internal/BusinessRegistrationNumber/types';
|
|
5
6
|
import { TaxIdSchema } from '../internal/TaxId/types';
|
|
6
|
-
export interface TrustRegistrationDetailsSchema extends TaxIdSchema {
|
|
7
|
+
export interface TrustRegistrationDetailsSchema extends BusinessRegistrationNumberSchema, TaxIdSchema {
|
|
7
8
|
legalName?: string;
|
|
8
9
|
country?: CountryCode;
|
|
9
|
-
trustType?:
|
|
10
|
+
trustType?: TrustTypes;
|
|
10
11
|
}
|
|
11
12
|
export interface TrustRegistrationDetailsProps extends BaseInnerFormProps<TrustRegistrationDetailsSchema> {
|
|
12
13
|
country: CountryCode;
|
|
@@ -9,7 +9,7 @@ import { PayoutDetailsDropinComponent } from './Dropins/PayoutDetailsDropin';
|
|
|
9
9
|
import { PciDropinComponent } from './Dropins/PciDropin';
|
|
10
10
|
import { SolePropDropinComponent } from './Dropins/SolePropDropin';
|
|
11
11
|
import { TrustDropinComponent } from './Dropins/TrustDropin';
|
|
12
|
-
import {
|
|
12
|
+
import { TransferInstrumentComponent } from './EmbeddedDropins/TransferInstrumentComponent/TransferInstrumentComponent';
|
|
13
13
|
/**
|
|
14
14
|
* Maps each component with a Component element.
|
|
15
15
|
*/
|
|
@@ -21,7 +21,7 @@ export declare const componentsMap: {
|
|
|
21
21
|
readonly trustDropin: typeof TrustDropinComponent;
|
|
22
22
|
readonly soleProprietorDropin: typeof SolePropDropinComponent;
|
|
23
23
|
readonly pci: typeof PciDropinComponent;
|
|
24
|
-
readonly
|
|
24
|
+
readonly transferInstrumentComponent: typeof TransferInstrumentComponent;
|
|
25
25
|
};
|
|
26
26
|
export type ComponentMap = typeof componentsMap;
|
|
27
27
|
export type ComponentProps<Name extends keyof ComponentMap> = Parameters<ComponentMap[Name]>[0];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { BaseInnerFormProps } from '../../../core/hooks/useForm';
|
|
2
2
|
import { LegalEntityType } from '../../../core/models/api/legal-entity-type';
|
|
3
3
|
import { CountryCode } from '../../../core/models/country-code';
|
|
4
|
-
export type AccountHolderOption = 'myName' | '
|
|
4
|
+
export type AccountHolderOption = 'myName' | 'mySoleProprietorName' | 'theCompanyIWorkFor' | 'aTrust' | 'aPartnership' | 'anAssociation';
|
|
5
5
|
export interface AccountHolderSchema {
|
|
6
6
|
accountHolder?: AccountHolderOption;
|
|
7
7
|
}
|
|
@@ -6,7 +6,7 @@ export declare namespace Address {
|
|
|
6
6
|
data: {};
|
|
7
7
|
onChange: () => void;
|
|
8
8
|
visibility: string;
|
|
9
|
-
requiredFields: readonly ["
|
|
9
|
+
requiredFields: readonly ["address", "otherAddressInformation", "postalCode", "city", "stateOrProvince", "country"];
|
|
10
10
|
countryCode: any;
|
|
11
11
|
};
|
|
12
12
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CountryCode } from '../../../core/models/country-code';
|
|
2
2
|
import type { AddressLabels, AddressSchemas } from './types';
|
|
3
|
-
export declare const ADDRESS_SCHEMA: readonly ["
|
|
3
|
+
export declare const ADDRESS_SCHEMA: readonly ["address", "otherAddressInformation", "postalCode", "city", "stateOrProvince", "country"];
|
|
4
4
|
export declare const COUNTRIES_WITH_STATES_DATASET: CountryCode[];
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const COUNTRIES_WITH_HOUSE_NUMBER_FIRST: CountryCode[];
|
|
6
6
|
export declare const ADDRESS_SCHEMAS: AddressSchemas;
|
|
7
7
|
export declare const LABELS: AddressLabels;
|
|
@@ -6,13 +6,22 @@ import { RecordWithDefault } from '../../../utils/recordWithDefault';
|
|
|
6
6
|
import type { ValidationRuleResult, ValidatorMode } from '../../../utils/validation/types';
|
|
7
7
|
import type { DropinAPIHandlers } from '../../Dropins/types';
|
|
8
8
|
export interface AddressSchema {
|
|
9
|
+
address?: string;
|
|
10
|
+
otherAddressInformation?: string;
|
|
11
|
+
postalCode?: string;
|
|
12
|
+
city?: string;
|
|
13
|
+
stateOrProvince?: string;
|
|
14
|
+
country?: CountryCode;
|
|
15
|
+
searchAddress?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface LoqateAddressSchema {
|
|
9
18
|
street?: string;
|
|
19
|
+
street2?: string;
|
|
10
20
|
houseNumberOrName?: string;
|
|
11
21
|
postalCode?: string;
|
|
12
22
|
city?: string;
|
|
13
23
|
stateOrProvince?: string;
|
|
14
24
|
country?: CountryCode;
|
|
15
|
-
searchAddress?: string;
|
|
16
25
|
}
|
|
17
26
|
export interface AddressProps extends BaseInnerFormProps<AddressSchema> {
|
|
18
27
|
allowedCountries?: CountryCode[];
|
|
@@ -6,12 +6,12 @@ import { DatasetUtil } from '../../../utils/datasetUtil';
|
|
|
6
6
|
* @param fieldName - The data to pre-fill the address fields
|
|
7
7
|
* @param country - The selected country
|
|
8
8
|
*/
|
|
9
|
-
export declare const getKeyForField: (fieldName: string, country: CountryCode) => "number" | "SST" | "RFC" | "CNPJ" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "houseNumber" | "houseNumberOptional" | "houseNumberOrName" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "socialSecurityNumber" | "socialSecurityNumber9Digits" | "codiceFiscale" | "personnummer" | "dni" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "invalidFormatForAuProofOfIdentityCardNumber" | "invalidFormatForHKPassportNumber" | "invalidFormatForHKDriversLicenseNumber" | "invalidFormatForHKIdentityCardNumber" | "invalidFormatIdentityNumberBR" | "invalidFormatIdentityNumberDK" | "invalidFormatIdentityNumberCA" | "invalidFormatIdentityNumberIT" | "invalidFormatIdentityNumberPL" | "invalidFormatIdentityNumberRO" | "invalidFormatIdentityNumberES" | "invalidFormatIdentityNumberSE" | "invalidFormatIdentityNumberUS" | "invalidFormatIdentityNumberUS9" | "invalidFormatIdentityNumberSG" | "invalidFormatIdentityNumberHK" | "invalidFormatBankStatementDescription" | "residencyCountry" | "stateOrProvince" | "selectStateOrProvince" | "dragYourFilesHereOr" | "browse" | "supports" | "complete" | "summary" | "selectDocument" | "passport" | "passportNumber" | "id" | "driversLicense" | "issuerState" | "licenseNumber" | "driverLicense" | "licenseCardNumber" | "licenceVersionNumber" | "documents" | "idDocument" | "documentType" | "frontPage" | "backPage" | "fileName" | "nationality" | "dateOfIncorporation" | "proofOfNationality" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "incorporatedPartnershipTitle" | "incorporatedPartnershipDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporatedTitle" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__US" | "registeredAddressTrustHeaderDescription" | "operationalAddress" | "provideRegistrationDetails" | "companyStructure" | "providePersonalAddress" | "provideContactDetails" | "correctErrorsResubmit" | "registrationDocument" | "taxDocument" | "companyDetails" | "invalidRegistrationNumber" | "tradingName" | "chamberOfCommerceRegistrationNumber" | "taxId" | "exemptedFromTax" | "doNotHaveTaxIdNumber" | "doNotHaveFirmenbuchnummer" | "doNotHaveOrganisationsnummer" | "doNotHaveYTunnus" | "doNotHaveLtRegistrationNumber" | "doNotHaveLuRegistrationNumber" | "doNotHaveChRegistrationNumber" | "doNotHaveHandelsregisternummer" | "doNotHaveRegonKrsNumber" | "taxIdAbsenceReason" | "vatNumberExempted" | "vatNumberAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMIC" | "stockExchangeMICHelper" | "stockISINHelper" | "stockISIN" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "legalCompanyName" | "legalCompanyNameHelper" | "legalCompanyNameHelper__AU" | "legalCompanyNameHelper__US" | "legalCompanyNameHelper__SG" | "legalCompanyNameHelper__HK" | "accountDetailsDescription" | "provideDetails" | "payoutAccountsDescription" | "payoutAccountsDescriptionReview" | "payinAccountsDescription" | "addExtraPayoutAccount" | "addExtraPayinAccount" | "payoutDetails" | "payinDetails" | "addPayoutAccount" | "addPayinAccount" | "failedToFetchPayoutAccount" | "failedToDeletePayoutAccount" | "transferInstrumentDeleted" | "toCompleteProcessReviewAndSignOfficialDocumentation" | "sign" | "signer" | "selectSigner" | "pciSignedSuccessfully" | "pciSignFailed" | "byClickingSignIAcknowledgeAndAgree" | "acknowledgePciRequirements" | "basedOnTheAboveSignatory" | "failedToGetPciStatus" | "failedToGetPciTemplate" | "failedToGetPciTemplateInSelectedLanguageFallbackToEn" | "failedToDownloadPci" | "signServiceAgreement" | "signedDocuments" | "paymentProcessingTerms" | "accountHolderTerms" | "capitalUserTerms" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "iban" | "swiftCode" | "bic" | "bsbNumber" | "branchCode" | "transitNumber" | "listitemVoidedChequeBankLetterBankStatementOnline" | "instructionNumber" | "institutionNumber" | "sortCode" | "bankCityTown" | "clearingCode" | "bankCode" | "bankName" | "achRoutingNumber" | "decisionMaker" | "decisionMakerDescription" | "owner" | "ownerDescription" | "controllingPerson" | "controllingPersonDescription" | "signatory" | "signatoryDescription" | "director" | "directorDescription" | "provideAllDirectors" | "addDecisionMaker" | "decisionMakers" | "goToIntro" | "goToOverview" | "goToOverviewFromIntro" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "proofOfIdentityCard" | "proofOfIdentityCardNumber" | "proofOfResidence" | "proofOfNationalId" | "backToTaskList" | "proofOfResidenceDocumentTypeLabel" | "utilityBill" | "governmentIssuedCorrespondence" | "taxationDocument" | "extractFromMunicipalPersonalRecordsDatabase" | "salarySlip" | "mortgageStatement" | "certificateOfVoterRegistration" | "businessAccountDetailsDescription" | "businessAccountDetailsDescriptionReview" | "documentAddressedToName" | "showAddressStateCountry" | "dateOnDocumentNoOlderThanXMonths" | "fullDocumentVisibleWithReadableText" | "documentCannotBeDamaged" | "verify" | "add" | "idUploadDocumentSubtitle" | "documentNotExpiredOrDamaged" | "weAccept" | "includeFrontAndBack" | "fullDocumentVisible" | "imagesInColor" | "datePlaceholder" | "onlyEnterNormalCharacters" | "verifyCompanyInfoIsUpToDate" | "failedToFetchRelevantDocuments" | "failedToFetchRelevantAccounts" | "processing" | "inReview" | "unsuccessful" | "invalidDateOfBirth" | "invalidDateOfIncorporation" | "successfullyUpdatedDetails" | "failedToUpdateDetails" | "successfullyVerifiedIdNumber" | "failedFetchingDecisionMaker" | "fileUpload" | "bankStatement" | "bankStatementOptional" | "bankAccountVerification" | "bankStatementDocument" | "bankStatementDocumentTypeLabel" | "requirements" | "accountHolderNameMatchesWithBusinessOrTradingName" | "accountNumberOrIbanVisible" | "accountNumberVisible" | "routingNumberVisible" | "showsCountryOfBankAccount" | "hasToBeOfficialDocumentFromBank" | "ifDocumentMoreThan12months" | "whyDoINeedToFillInThisInformation" | "reasonForFillingCompanyRegistrationDetails" | "reasonForFillingCompanyAddressDetails" | "reasonForFillingIndividualPersonalDetails" | "reasonForFillingIndividualAddressDetails" | "reasonForFillingPayoutAccountDetails" | "reasonForFillingPayoutDetails" | "whatIsTheDifferenceBetweenTheseRoles" | "ownerGuideDescription" | "controllingPersonGuideDescription" | "signatoryGuideDescription" | "directorGuideDescription" | "someoneAppointedToManageACompanysBusinessAndAffairs" | "whatIfDocumentIsMoreThan12MonthsOld" | "descriptionHelper" | "depositTicket" | "screenshotOfOnlineBankingEnviroment" | "officialEmailOrALetterFromYourBank" | "cheques" | "releveDidentiteBancaire" | "successFullyRemovedDecisionMaker" | "failedToRemoveDecisionMaker" | "chamberOfCommerceExtract" | "taxNumberCorporateNumber" | "companyLegalName" | "companyName" | "companyType" | "taxReferenceNumber" | "companyProfile" | "companyNumber" | "RfcDocument" | "companyRegistrationDocument" | "businessName" | "typeOfCompany" | "typeOfIdentity" | "typeOfIdentitySubtitle" | "businessNumber" | "doingBusinessAs" | "taxIdentificationNumber" | "irdDocument" | "irdNumber" | "australianBusinessNumberAbn" | "australianBusinessNumberAcn" | "NZBN/NCN" | "NZBN" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "codiceFiscaleOrCCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "skattenummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "regonKrsNumber" | "registrationNumber" | "registrationNumber__nonProfit__FR" | "registrationNumber__FR" | "registrationNumber__PR" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "stepsX/YofForm" | "no" | "yes" | "informationCouldNotBeSubmitted" | "fieldHasUnsupportedFormats" | "updateTheInformation" | "andResubmit" | "someFieldsHaveUnsupportedFormatedUpdateInfoAndResubmit" | "trustType" | "businessTrust" | "cashManagementTrust" | "charitableTrust" | "corporateUnitTrust" | "deceasedEstate" | "discretionaryInvestmentTrust" | "discretionaryServicesManagementTrust" | "discretionaryTradingTrust" | "discretionaryTrust" | "familyTrust" | "firstHomeSaverAccountsTrust" | "fixedTrust" | "fixedUnitTrust" | "hybridTrust" | "listedPublicUnitTrust" | "otherTrust" | "pooledSuperannuationTrust" | "publicTradingTrust" | "unlistedPublicUnitTrust" | "countryOfEstablishment" | "nameOfTrustAgreement" | "typeOfTrustAgreement" | "weFoundTheFollowingIssues" | "reviewTheInformationBelowAndCorrectMistakesOr" | "uploadTheRequestedDocuments" | "uploadTheFollowingDocuments" | "uploadDocumentAndDocument" | "thenResubmit" | "isTrustOperationAddressSame" | "trustDetails" | "trustDetailsDescription" | "trustDocumentDescription" | "nameOfTrust" | "fullLegalNamesOfAnyAppointers" | "dateDeedWasSigned" | "settlerDetailsIncl" | "trusteeDetailsIncl" | "beneficiariesDetailsIncl" | "trustMembers" | "trustMembersDescription" | "trustee" | "obligatory" | "requiredIfApplicable" | "provideAtLeastOneSettlor" | "provideAtLeastOneProtector" | "provideAllBeneficiaries" | "provideAllTrustees" | "provideAllControllingPersons" | "settlorGuideDescription" | "trusteeGuideDescription" | "protectorGuideDescription" | "beneficiaryGuideDescription" | "uboThroughControlGuideDescription" | "uboThroughOwnershipGuideDescription" | "beneficiary" | "protector" | "settlor" | "ultimateBeneficialOwner" | "addTrustMember" | "personAppointmentUnderTrustInstrument" | "legalOwnerOfProperty" | "entityEstablishingTrust" | "entityOwning25OrMoreOfTrust" | "controllingPersonOfTrust" | "failedToFetchTrustDetails" | "failedToFetchTrustMemberDetails" | "failedToFetchLegalEntityDetails" | "editTrustMember" | "removeTrustMember" | "successFullyRemovedTrustMember" | "failedToRemoveTrustMember" | "editEntityDetails" | "editOwnerOfTrustMember" | "editEntityOwner" | "addEntityOwner" | "addOwnerToTrustMember" | "whatTypeOfYourMembersEntity" | "naturalPersonTitle" | "naturalPersonDescription" | "businessEntityTitle" | "businessEntityDescription" | "roleAndEntityType" | "helpUsVerifyCompany" | "providePersonalDetailsOfOwner" | "memberDetails" | "good" | "notCutOff" | "notBlurry" | "notExpired" | "noGlare" | "selectDocumentType" | "registrationDocumentSubTitle" | "documentIssuedByGovernmentAuthority" | "uploadTaxationDocument" | "containsNameOfCompany" | "documentShowsTaxIdOfCompany" | "issuedByTheTaxAuthority" | "providePageWithPhotoAndCode" | "constitutionalDocument" | "solePropDetails" | "soleProprietorDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "myName" | "myNameDescription" | "mySoleTraderName" | "mySoleTraderNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "momsregistreringsnummerOrStamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "valueAddedTaxIdentificationNumber" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "Xdigits" | "upToXdigits" | "XtoYdigits" | "XorYdigits" | "Xcharacters" | "XtoYcharacters" | "XdigitsAndYcharacters" | "1character5to7digits" | "1char8digits" | "1charXalphanumeric" | "2characters6or7digits" | "7or8or12characters" | "2digits1to3letters5digits" | "Cchar5digits" | "characterPlusXToYDigitsWithOptionalSpace" | "cop1to8digits" | "8digitsOptional-" | "provideAllOwners" | "ifNoOwnersSpecifyControllingPersons" | "provideAtLeastOneSignatory" | "provideOneControllingPerson" | "textToVerifyAccount" | "theBankAccountHolderMustHaveTheSameNameAsYourCompany_" | "theBankAccountHolderMustBeInYourName_" | "weDoNotYetSupportInstantVerificationForBankAccountsIn_" | "youCanOnlyUseABankAccountInTheCountryWhereYourCompanyIsRegistered" | "youCanOnlyUseABankAccountInTheCountryWhereYouLive" | "mobileApplication" | "onOnlineBankingEnvironment" | "dontHaveAccessOnlineBanking" | "confirmPayoutManually" | "noteManualTakesLonger" | "accountVerification" | "verifyWith" | "documentVerification" | "youHaveSuccessfullyProvidedTheIdDocument" | "submitIdDocumentsAgain" | "madeAMistake" | "canNotCompleteInstantVerification" | "goBackAndProvideDocumentScans" | "identityCard" | "uploadOneOfTheFollowing" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "taxFiling" | "continueAsCompany" | "continueAsIndividual" | "indicatedPayoutToCompany" | "continueSigningUpAsCompany" | "indicatedPayoutToPersonalAccount" | "continueSigningUpAsIndividual" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "socialInsuranceNumber" | "verificationMethod" | "verifyViaMobileBankAppOrBankWebsite" | "provideAccountDetailsAndUploadBankStatement" | "instantVerificationDescription" | "couldNotEstablishBankConnection" | "sorryAnErrorOccurred" | "ranIntoTechnicalError" | "failedInitializeInstantVerification" | "couldNotCompleteAccountCheck" | "tryAgainOrManualAccountDetails" | "manualVerificationDescription" | "poweredBy" | "youSuccessfullyVerifiedAccount" | "verifyBankAccountAgain" | "accountName" | "mayTakeAFewHoursOrDays" | "instant" | "isOurTrustedPartnerHelpingSpeedUpSetup" | "howDoesVerificationWithOurPartnerWorks" | "selectTheBankToReceivePayouts" | "bankAccountFormat" | "ibanFormat" | "localFormat" | "payoutInOnly_" | "payoutIn_Or_" | "loginIntoYourBankingEnvironment" | "yourBankWillConfirmYourAccountDetails" | "adyenWillOnlyGetTemporaryAccess" | "instantVerification" | "xCharactersLeft" | "goBack" | "businessRegistrationNumber" | "businessRegistrationNumber__HK" | "doNotHaveBusinessNumber" | "UEN/GST" | "UEN" | "IRD/GST" | "IRD" | "enterNameExactlyAsAppearInID" | "enterLastNameExactlyAsAppearInID" | "takePhotoOriginalDocumentWithPhone" | "instantIDVerificationDescription" | "manualIDVerificationDescription" | "uploadScanOriginalIDDocument" | "takesLonger" | "howVerificationWithOnfidoWork" | "onfidoIsOurTrustedPartner" | "usePhoneToScanId" | "onfidoWillGiveFeedbackInRealTime" | "theIdCheckWillBeAutomaticallyValidated" | "adyenKeepsDataAsLongAsLegallyRequired" | "requiresSignatory" | "requiresDecisionMakers" | "definedBeneficiary" | "definedBeneficiaryDescription" | "undefinedBeneficiary" | "undefinedBeneficiaryDescription" | "description" | "descriptionOptional" | "describeWhoIsABeneficiaryInYourTrust" | "descriptionUndefinedBeneficiary" | "undefinedBeneficiaryGuideDescription" | "identityCardBack" | "identityCardFront" | "drivinglicenseBack" | "drivinglicenseFront" | "passportPhotoPage" | "residencePermitBack" | "residencePermitFront" | "manualUpload" | "errorMessage_1_10" | "errorMessage_1_11" | "errorMessage_1_12" | "errorMessage_1_30" | "errorMessage_1_31" | "errorMessage_1_32" | "errorMessage_1_33" | "errorMessage_1_34" | "errorMessage_1_35" | "errorMessage_1_36" | "errorMessage_1_37" | "errorMessage_1_38" | "errorMessage_1_39" | "errorMessage_1_40" | "errorMessage_1_41" | "errorMessage_1_50" | "errorMessage_1_51" | "errorMessage_1_52" | "errorMessage_1_53" | "errorMessage_1_54" | "errorMessage_1_55" | "errorMessage_1_56" | "errorMessage_1_57" | "errorMessage_1_60" | "errorMessage_1_61" | "errorMessage_1_62" | "errorMessage_1_70" | "errorMessage_1_71" | "errorMessage_1_72" | "errorMessage_1_73" | "errorMessage_1_74" | "errorMessage_1_75" | "errorMessage_1_76" | "errorMessage_1_1000" | "errorMessage_1_1001" | "errorMessage_1_1002" | "errorMessage_1_1003" | "errorMessage_1_3000" | "errorMessage_1_3001" | "errorMessage_1_3002" | "errorMessage_1_3003" | "errorMessage_1_3004" | "errorMessage_1_3005" | "errorMessage_1_3006" | "errorMessage_1_3007" | "errorMessage_1_3008" | "errorMessage_1_3009" | "errorMessage_1_3010" | "errorMessage_1_3011" | "errorMessage_1_3012" | "errorMessage_1_3013" | "errorMessage_1_3014" | "errorMessage_1_3015" | "errorMessage_1_3016" | "errorMessage_1_3017" | "errorMessage_1_3018" | "errorMessage_1_3019" | "errorMessage_1_3020" | "errorMessage_1_3021" | "errorMessage_1_3022" | "errorMessage_1_3023" | "errorMessage_1_3024" | "errorMessage_1_3025" | "errorMessage_1_3026" | "errorMessage_1_3027" | "errorMessage_1_3028" | "errorMessage_1_3029" | "errorMessage_1_3030" | "errorMessage_1_3031" | "errorMessage_1_3032" | "errorMessage_1_3033" | "errorMessage_1_3034" | "errorMessage_1_3035" | "errorMessage_1_3036" | "errorMessage_1_3037" | "errorMessage_1_3038" | "errorMessage_1_3039" | "errorMessage_1_3040" | "errorMessage_1_3041" | "errorMessage_1_3042" | "errorMessage_1_3043" | "errorMessage_1_3044" | "errorMessage_1_3045" | "errorMessage_1_3046" | "errorMessage_1_3047" | "errorMessage_1_3048" | "errorMessage_1_3049" | "errorMessage_1_3050" | "errorMessage_1_3051" | "errorMessage_1_3062" | "errorMessage_1_5000" | "errorMessage_1_5001" | "errorMessage_1_5002" | "errorMessage_1_5003" | "errorMessage_1_5004" | "errorMessage_1_5005" | "errorMessage_1_5006" | "errorMessage_1_5007" | "errorMessage_1_5008" | "errorMessage_1_5009" | "errorMessage_1_5010" | "errorMessage_1_5011" | "errorMessage_1_5012" | "errorMessage_1_5013" | "errorMessage_1_5014" | "errorMessage_1_5015" | "errorMessage_1_5016" | "errorMessage_1_5017" | "errorMessage_1_5018" | "errorMessage_1_5019" | "errorMessage_1_5020" | "errorMessage_1_5021" | "errorMessage_1_5022" | "errorMessage_1_5023" | "errorMessage_1_5024" | "errorMessage_1_5025" | "errorMessage_1_5026" | "errorMessage_1_5027" | "errorMessage_1_5028" | "errorMessage_1_5029" | "errorMessage_1_5030" | "errorMessage_1_5031" | "errorMessage_1_5032" | "errorMessage_1_5033" | "errorMessage_1_5034" | "errorMessage_1_5035" | "errorMessage_1_5036" | "errorMessage_1_5037" | "errorMessage_1_5038" | "errorMessage_1_5039" | "errorMessage_1_5040" | "errorMessage_1_5041" | "errorMessage_1_5042" | "errorMessage_1_5043" | "errorMessage_1_5044" | "errorMessage_1_5045" | "errorMessage_1_5046" | "errorMessage_1_5047" | "errorMessage_1_5048" | "errorMessage_1_5049" | "errorMessage_1_5050" | "errorMessage_1_5051" | "errorMessage_1_5052" | "errorMessage_1_5053" | "errorMessage_1_6000" | "errorMessage_1_6001" | "errorMessage_1_6002" | "errorMessage_1_6003" | "errorMessage_1_6004" | "errorMessage_1_6005" | "errorMessage_1_6006" | "errorMessage_1_6007" | "errorMessage_1_6008" | "errorMessage_1_6009" | "errorMessage_1_6010" | "errorMessage_1_6011" | "errorMessage_1_6012" | "errorMessage_1_6013" | "errorMessage_1_6014" | "errorMessage_1_6015" | "errorMessage_1_6016" | "errorMessage_1_6017" | "errorMessage_1_6018" | "errorMessage_1_6019" | "errorMessage_1_6020" | "errorMessage_1_6021" | "errorMessage_1_6022" | "errorMessage_1_6023" | "errorMessage_1_6024" | "errorMessage_1_6025" | "errorMessage_1_6026" | "errorMessage_1_6027" | "errorMessage_1_6028" | "errorMessage_1_6029" | "errorMessage_1_6030" | "errorMessage_1_6031" | "errorMessage_1_6032" | "errorMessage_1_6033" | "errorMessage_1_6034" | "errorMessage_1_6035" | "errorMessage_1_6036" | "errorMessage_1_6037" | "errorMessage_1_6038" | "errorMessage_1_6039" | "errorMessage_1_6040" | "errorMessage_1_6041" | "errorMessage_1_6042" | "errorMessage_1_6044" | "errorMessage_1_6045" | "errorMessage_1_6046" | "errorMessage_1_6047" | "errorMessage_1_6048" | "errorMessage_1_6049" | "errorMessage_1_7000" | "errorMessage_1_7001" | "errorMessage_1_7002" | "errorMessage_1_7003" | "errorMessage_1_7004" | "errorMessage_1_7005" | "errorMessage_1_7006" | "errorMessage_1_7007" | "errorMessage_1_7008" | "errorMessage_1_7009" | "errorMessage_1_7010" | "errorMessage_1_7011" | "errorMessage_1_7012" | "errorMessage_1_7013" | "errorMessage_1_7014" | "errorMessage_1_7015" | "errorMessage_1_7016" | "errorMessage_1_7017" | "errorMessage_1_7018" | "errorMessage_1_7019" | "errorMessage_1_7020" | "errorMessage_1_7021" | "errorMessage_1_7022" | "errorMessage_3_10" | "remediationMessage_1_100" | "remediationMessage_1_101" | "remediationMessage_1_102" | "remediationMessage_2_158" | "remediationMessage_1_300" | "remediationMessage_1_301" | "remediationMessage_1_302" | "remediationMessage_1_303" | "remediationMessage_1_304" | "remediationMessage_1_305" | "remediationMessage_1_306" | "remediationMessage_1_307" | "remediationMessage_1_308" | "remediationMessage_1_309" | "remediationMessage_1_316" | "remediationMessage_1_500" | "remediationMessage_1_501" | "remediationMessage_1_502" | "remediationMessage_1_503" | "remediationMessage_1_504" | "remediationMessage_1_505" | "remediationMessage_1_506" | "remediationMessage_1_507" | "remediationMessage_1_508" | "remediationMessage_1_509" | "remediationMessage_1_510" | "remediationMessage_1_511" | "remediationMessage_1_600" | "remediationMessage_1_601" | "remediationMessage_1_602" | "remediationMessage_1_603" | "remediationMessage_1_700" | "remediationMessage_1_701" | "remediationMessage_1_702" | "remediationMessage_1_703" | "remediationMessage_1_704" | "remediationMessage_1_705" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "taskIntroPrologueTitle" | "taskIntroPrologueDescriptionP1" | "taskIntroPrologueDescriptionP2" | "taskIntroCompanyTitle" | "taskIntroCompanyDescriptionP1" | "taskIntroCompanyDescriptionP2" | "taskIntroDecisionMakerOverviewTitle" | "taskIntroDecisionMakerOverviewDescriptionP1" | "taskIntroDecisionMakerOverviewDescriptionP2" | "taskIntroDecisionMakerOverviewDescriptionP3" | "taskIntroDecisionMakerOverviewDescriptionLI1" | "taskIntroDecisionMakerOverviewDescriptionLI2" | "taskIntroDecisionMakerOverviewDescriptionLI3" | "taskIntroIndividualTitle" | "taskIntroIndividualDescriptionP1" | "taskIntroIndividualDescriptionP2" | "taskIntroIndividualDescriptionP3" | "taskIntroIndividualDescriptionLI1" | "taskIntroIndividualDescriptionLI2" | "taskIntroIndividualDescriptionLI3" | "taskIntroPayoutTitle" | "taskIntroPayoutOrganizationDescriptionP1" | "taskIntroPayoutOrganizationDescriptionP2" | "taskIntroPayoutIndividualDescriptionP1" | "taskIntroPayoutIndividualDescriptionP2" | "taskIntroEpilogueTitle" | "taskIntroEpilogueDescriptionP1" | "taskIntroEpilogueDescriptionP2" | "taskIntroEpilogueDescriptionP3";
|
|
9
|
+
export declare const getKeyForField: (fieldName: string, country: CountryCode) => "number" | "SST" | "RFC" | "CNPJ" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "otherAddressInformation" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "socialSecurityNumber" | "socialSecurityNumber9Digits" | "codiceFiscale" | "personnummer" | "dni" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "invalidFormatForAuProofOfIdentityCardNumber" | "invalidFormatForHKPassportNumber" | "invalidFormatForHKDriversLicenseNumber" | "invalidFormatForHKIdentityCardNumber" | "invalidFormatIdentityNumberBR" | "invalidFormatIdentityNumberDK" | "invalidFormatIdentityNumberCA" | "invalidFormatIdentityNumberIT" | "invalidFormatIdentityNumberPL" | "invalidFormatIdentityNumberRO" | "invalidFormatIdentityNumberES" | "invalidFormatIdentityNumberSE" | "invalidFormatIdentityNumberUS" | "invalidFormatIdentityNumberUS9" | "invalidFormatIdentityNumberSG" | "invalidFormatIdentityNumberHK" | "invalidFormatBankStatementDescription" | "residencyCountry" | "stateOrProvince" | "selectStateOrProvince" | "dragYourFilesHereOr" | "browse" | "supports" | "complete" | "summary" | "selectDocument" | "passport" | "passportNumber" | "id" | "driversLicense" | "issuerState" | "licenseNumber" | "driverLicense" | "licenseCardNumber" | "licenceVersionNumber" | "documents" | "idDocument" | "documentType" | "frontPage" | "backPage" | "fileName" | "nationality" | "dateOfIncorporation" | "proofOfNationality" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "incorporatedPartnershipTitle" | "incorporatedPartnershipDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporatedTitle" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__US" | "registeredAddressTrustHeaderDescription" | "operationalAddress" | "provideRegistrationDetails" | "companyStructure" | "providePersonalAddress" | "provideContactDetails" | "correctErrorsResubmit" | "registrationDocument" | "taxDocument" | "companyDetails" | "invalidRegistrationNumber" | "tradingName" | "chamberOfCommerceRegistrationNumber" | "taxId" | "exemptedFromTax" | "doNotHaveTaxIdNumber" | "doNotHaveFirmenbuchnummer" | "doNotHaveOrganisationsnummer" | "doNotHaveYTunnus" | "doNotHaveLtRegistrationNumber" | "doNotHaveLuRegistrationNumber" | "doNotHaveChRegistrationNumber" | "doNotHaveHandelsregisternummer" | "doNotHaveRegonKrsNumber" | "taxIdAbsenceReason" | "vatNumberExempted" | "vatNumberAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMIC" | "stockExchangeMICHelper" | "stockISINHelper" | "stockISIN" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "legalCompanyName" | "legalCompanyNameHelper" | "legalCompanyNameHelper__AU" | "legalCompanyNameHelper__US" | "legalCompanyNameHelper__SG" | "legalCompanyNameHelper__HK" | "accountDetailsDescription" | "provideDetails" | "payoutAccountsDescription" | "payoutAccountsDescriptionReview" | "payinAccountsDescription" | "addExtraPayoutAccount" | "addExtraPayinAccount" | "payoutDetails" | "payinDetails" | "addPayoutAccount" | "addPayinAccount" | "failedToFetchPayoutAccount" | "failedToDeletePayoutAccount" | "transferInstrumentDeleted" | "toCompleteProcessReviewAndSignOfficialDocumentation" | "sign" | "signer" | "selectSigner" | "pciSignedSuccessfully" | "pciSignFailed" | "byClickingSignIAcknowledgeAndAgree" | "acknowledgePciRequirements" | "basedOnTheAboveSignatory" | "failedToGetPciStatus" | "failedToGetPciTemplate" | "failedToGetPciTemplateInSelectedLanguageFallbackToEn" | "failedToDownloadPci" | "signServiceAgreement" | "signedDocuments" | "paymentProcessingTerms" | "accountHolderTerms" | "capitalUserTerms" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "iban" | "swiftCode" | "bic" | "bsbNumber" | "branchCode" | "transitNumber" | "listitemVoidedChequeBankLetterBankStatementOnline" | "instructionNumber" | "institutionNumber" | "sortCode" | "bankCityTown" | "clearingCode" | "bankCode" | "bankName" | "achRoutingNumber" | "decisionMaker" | "decisionMakerDescription" | "owner" | "ownerDescription" | "controllingPerson" | "controllingPersonDescription" | "signatory" | "signatoryDescription" | "director" | "directorDescription" | "provideAllDirectors" | "addDecisionMaker" | "decisionMakers" | "goToIntro" | "goToOverview" | "goToOverviewFromIntro" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "proofOfIdentityCard" | "proofOfIdentityCardNumber" | "proofOfResidence" | "proofOfNationalId" | "backToTaskList" | "proofOfResidenceDocumentTypeLabel" | "utilityBill" | "governmentIssuedCorrespondence" | "taxationDocument" | "extractFromMunicipalPersonalRecordsDatabase" | "salarySlip" | "mortgageStatement" | "certificateOfVoterRegistration" | "businessAccountDetailsDescription" | "businessAccountDetailsDescriptionReview" | "documentAddressedToName" | "showAddressStateCountry" | "dateOnDocumentNoOlderThanXMonths" | "fullDocumentVisibleWithReadableText" | "documentCannotBeDamaged" | "verify" | "add" | "idUploadDocumentSubtitle" | "documentNotExpiredOrDamaged" | "weAccept" | "includeFrontAndBack" | "fullDocumentVisible" | "imagesInColor" | "datePlaceholder" | "onlyEnterNormalCharacters" | "verifyCompanyInfoIsUpToDate" | "failedToFetchRelevantDocuments" | "failedToFetchRelevantAccounts" | "processing" | "inReview" | "unsuccessful" | "invalidDateOfBirth" | "invalidDateOfIncorporation" | "successfullyUpdatedDetails" | "failedToUpdateDetails" | "successfullyVerifiedIdNumber" | "failedFetchingDecisionMaker" | "fileUpload" | "bankStatement" | "bankStatementOptional" | "bankAccountVerification" | "bankStatementDocument" | "bankStatementDocumentTypeLabel" | "requirements" | "accountHolderNameMatchesWithBusinessOrTradingName" | "accountNumberOrIbanVisible" | "accountNumberVisible" | "routingNumberVisible" | "showsCountryOfBankAccount" | "hasToBeOfficialDocumentFromBank" | "ifDocumentMoreThan12months" | "whyDoINeedToFillInThisInformation" | "reasonForFillingCompanyRegistrationDetails" | "reasonForFillingCompanyAddressDetails" | "reasonForFillingIndividualPersonalDetails" | "reasonForFillingIndividualAddressDetails" | "reasonForFillingPayoutAccountDetails" | "reasonForFillingPayoutDetails" | "whatIsTheDifferenceBetweenTheseRoles" | "ownerGuideDescription" | "controllingPersonGuideDescription" | "signatoryGuideDescription" | "directorGuideDescription" | "someoneAppointedToManageACompanysBusinessAndAffairs" | "whatIfDocumentIsMoreThan12MonthsOld" | "descriptionHelper" | "depositTicket" | "screenshotOfOnlineBankingEnviroment" | "officialEmailOrALetterFromYourBank" | "cheques" | "releveDidentiteBancaire" | "successFullyRemovedDecisionMaker" | "failedToRemoveDecisionMaker" | "chamberOfCommerceExtract" | "taxNumberCorporateNumber" | "companyLegalName" | "companyName" | "companyType" | "taxReferenceNumber" | "companyProfile" | "companyNumber" | "RfcDocument" | "companyRegistrationDocument" | "businessName" | "typeOfCompany" | "typeOfIdentity" | "typeOfIdentitySubtitle" | "businessNumber" | "doingBusinessAs" | "taxIdentificationNumber" | "irdDocument" | "irdNumber" | "australianBusinessNumberAbn" | "australianBusinessNumberAcn" | "NZBN/NCN" | "NZBN" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "codiceFiscaleOrCCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "skattenummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "regonKrsNumber" | "registrationNumber" | "registrationNumber__nonProfit__FR" | "registrationNumber__FR" | "registrationNumber__PR" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "stepsX/YofForm" | "no" | "yes" | "informationCouldNotBeSubmitted" | "fieldHasUnsupportedFormats" | "updateTheInformation" | "andResubmit" | "someFieldsHaveUnsupportedFormatedUpdateInfoAndResubmit" | "trustType" | "businessTrust" | "cashManagementTrust" | "charitableTrust" | "corporateUnitTrust" | "deceasedEstate" | "discretionaryInvestmentTrust" | "discretionaryServicesManagementTrust" | "discretionaryTradingTrust" | "discretionaryTrust" | "familyTrust" | "firstHomeSaverAccountsTrust" | "fixedTrust" | "fixedUnitTrust" | "hybridTrust" | "listedPublicUnitTrust" | "otherTrust" | "pooledSuperannuationTrust" | "publicTradingTrust" | "unlistedPublicUnitTrust" | "countryOfEstablishment" | "nameOfTrustAgreement" | "typeOfTrustAgreement" | "weFoundTheFollowingIssues" | "reviewTheInformationBelowAndCorrectMistakesOr" | "uploadTheRequestedDocuments" | "uploadTheFollowingDocuments" | "uploadDocumentAndDocument" | "thenResubmit" | "isTrustOperationAddressSame" | "trustDetails" | "trustDetailsDescription" | "trustDocumentDescription" | "nameOfTrust" | "fullLegalNamesOfAnyAppointers" | "dateDeedWasSigned" | "settlerDetailsIncl" | "trusteeDetailsIncl" | "beneficiariesDetailsIncl" | "trustMembers" | "trustMembersDescription" | "trustee" | "obligatory" | "requiredIfApplicable" | "provideAtLeastOneSettlor" | "provideAtLeastOneProtector" | "provideAllBeneficiaries" | "provideAllTrustees" | "provideAllControllingPersons" | "settlorGuideDescription" | "trusteeGuideDescription" | "protectorGuideDescription" | "beneficiaryGuideDescription" | "uboThroughControlGuideDescription" | "uboThroughOwnershipGuideDescription" | "beneficiary" | "protector" | "settlor" | "ultimateBeneficialOwner" | "addTrustMember" | "personAppointmentUnderTrustInstrument" | "legalOwnerOfProperty" | "entityEstablishingTrust" | "entityOwning25OrMoreOfTrust" | "controllingPersonOfTrust" | "failedToFetchTrustDetails" | "failedToFetchTrustMemberDetails" | "failedToFetchLegalEntityDetails" | "editTrustMember" | "removeTrustMember" | "successFullyRemovedTrustMember" | "failedToRemoveTrustMember" | "editEntityDetails" | "editOwnerOfTrustMember" | "editEntityOwner" | "addEntityOwner" | "addOwnerToTrustMember" | "whatTypeOfYourMembersEntity" | "naturalPersonTitle" | "naturalPersonDescription" | "businessEntityTitle" | "businessEntityDescription" | "roleAndEntityType" | "helpUsVerifyCompany" | "providePersonalDetailsOfOwner" | "memberDetails" | "good" | "notCutOff" | "notBlurry" | "notExpired" | "noGlare" | "selectDocumentType" | "registrationDocumentSubTitle" | "documentIssuedByGovernmentAuthority" | "uploadTaxationDocument" | "containsNameOfCompany" | "documentShowsTaxIdOfCompany" | "issuedByTheTaxAuthority" | "providePageWithPhotoAndCode" | "constitutionalDocument" | "solePropDetails" | "soleProprietorDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "myName" | "myNameDescription" | "mySoleProprietorName" | "mySoleProprietorNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "momsregistreringsnummerOrStamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "valueAddedTaxIdentificationNumber" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "Xdigits" | "upToXdigits" | "XtoYdigits" | "XorYdigits" | "Xcharacters" | "XtoYcharacters" | "XdigitsAndYcharacters" | "1character5to7digits" | "1char8digits" | "1charXalphanumeric" | "2characters6or7digits" | "7or8or12characters" | "2digits1to3letters5digits" | "Cchar5digits" | "characterPlusXToYDigitsWithOptionalSpace" | "cop1to8digits" | "8digitsOptional-" | "provideAllOwners" | "ifNoOwnersSpecifyControllingPersons" | "provideAtLeastOneSignatory" | "provideOneControllingPerson" | "textToVerifyAccount" | "theBankAccountHolderMustHaveTheSameNameAsYourCompany_" | "theBankAccountHolderMustBeInYourName_" | "weDoNotYetSupportInstantVerificationForBankAccountsIn_" | "youCanOnlyUseABankAccountInTheCountryWhereYourCompanyIsRegistered" | "youCanOnlyUseABankAccountInTheCountryWhereYouLive" | "mobileApplication" | "onOnlineBankingEnvironment" | "dontHaveAccessOnlineBanking" | "confirmPayoutManually" | "noteManualTakesLonger" | "accountVerification" | "verifyWith" | "documentVerification" | "youHaveSuccessfullyProvidedTheIdDocument" | "submitIdDocumentsAgain" | "madeAMistake" | "canNotCompleteInstantVerification" | "goBackAndProvideDocumentScans" | "identityCard" | "uploadOneOfTheFollowing" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "taxFiling" | "continueAsCompany" | "continueAsIndividual" | "indicatedPayoutToCompany" | "continueSigningUpAsCompany" | "indicatedPayoutToPersonalAccount" | "continueSigningUpAsIndividual" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "socialInsuranceNumber" | "verificationMethod" | "verifyViaMobileBankAppOrBankWebsite" | "provideAccountDetailsAndUploadBankStatement" | "instantVerificationDescription" | "couldNotEstablishBankConnection" | "sorryAnErrorOccurred" | "ranIntoTechnicalError" | "failedInitializeInstantVerification" | "couldNotCompleteAccountCheck" | "tryAgainOrManualAccountDetails" | "manualVerificationDescription" | "poweredBy" | "youSuccessfullyVerifiedAccount" | "verifyBankAccountAgain" | "accountName" | "mayTakeAFewHoursOrDays" | "instant" | "isOurTrustedPartnerHelpingSpeedUpSetup" | "howDoesVerificationWithOurPartnerWorks" | "selectTheBankToReceivePayouts" | "bankAccountFormat" | "ibanFormat" | "localFormat" | "payoutInOnly_" | "payoutIn_Or_" | "loginIntoYourBankingEnvironment" | "yourBankWillConfirmYourAccountDetails" | "adyenWillOnlyGetTemporaryAccess" | "instantVerification" | "xCharactersLeft" | "goBack" | "businessRegistrationNumber" | "businessRegistrationNumber__HK" | "doNotHaveBusinessNumber" | "UEN/GST" | "UEN" | "IRD/GST" | "IRD" | "enterNameExactlyAsAppearInID" | "enterLastNameExactlyAsAppearInID" | "takePhotoOriginalDocumentWithPhone" | "instantIDVerificationDescription" | "manualIDVerificationDescription" | "uploadScanOriginalIDDocument" | "takesLonger" | "howVerificationWithOnfidoWork" | "onfidoIsOurTrustedPartner" | "usePhoneToScanId" | "onfidoWillGiveFeedbackInRealTime" | "theIdCheckWillBeAutomaticallyValidated" | "adyenKeepsDataAsLongAsLegallyRequired" | "requiresSignatory" | "requiresDecisionMakers" | "definedBeneficiary" | "definedBeneficiaryDescription" | "undefinedBeneficiary" | "undefinedBeneficiaryDescription" | "description" | "descriptionOptional" | "describeWhoIsABeneficiaryInYourTrust" | "descriptionUndefinedBeneficiary" | "undefinedBeneficiaryGuideDescription" | "identityCardBack" | "identityCardFront" | "drivinglicenseBack" | "drivinglicenseFront" | "passportPhotoPage" | "residencePermitBack" | "residencePermitFront" | "manualUpload" | "errorMessage_1_10" | "errorMessage_1_11" | "errorMessage_1_12" | "errorMessage_1_30" | "errorMessage_1_31" | "errorMessage_1_32" | "errorMessage_1_33" | "errorMessage_1_34" | "errorMessage_1_35" | "errorMessage_1_36" | "errorMessage_1_37" | "errorMessage_1_38" | "errorMessage_1_39" | "errorMessage_1_40" | "errorMessage_1_41" | "errorMessage_1_50" | "errorMessage_1_51" | "errorMessage_1_52" | "errorMessage_1_53" | "errorMessage_1_54" | "errorMessage_1_55" | "errorMessage_1_56" | "errorMessage_1_57" | "errorMessage_1_60" | "errorMessage_1_61" | "errorMessage_1_62" | "errorMessage_1_70" | "errorMessage_1_71" | "errorMessage_1_72" | "errorMessage_1_73" | "errorMessage_1_74" | "errorMessage_1_75" | "errorMessage_1_76" | "errorMessage_1_1000" | "errorMessage_1_1001" | "errorMessage_1_1002" | "errorMessage_1_1003" | "errorMessage_1_3000" | "errorMessage_1_3001" | "errorMessage_1_3002" | "errorMessage_1_3003" | "errorMessage_1_3004" | "errorMessage_1_3005" | "errorMessage_1_3006" | "errorMessage_1_3007" | "errorMessage_1_3008" | "errorMessage_1_3009" | "errorMessage_1_3010" | "errorMessage_1_3011" | "errorMessage_1_3012" | "errorMessage_1_3013" | "errorMessage_1_3014" | "errorMessage_1_3015" | "errorMessage_1_3016" | "errorMessage_1_3017" | "errorMessage_1_3018" | "errorMessage_1_3019" | "errorMessage_1_3020" | "errorMessage_1_3021" | "errorMessage_1_3022" | "errorMessage_1_3023" | "errorMessage_1_3024" | "errorMessage_1_3025" | "errorMessage_1_3026" | "errorMessage_1_3027" | "errorMessage_1_3028" | "errorMessage_1_3029" | "errorMessage_1_3030" | "errorMessage_1_3031" | "errorMessage_1_3032" | "errorMessage_1_3033" | "errorMessage_1_3034" | "errorMessage_1_3035" | "errorMessage_1_3036" | "errorMessage_1_3037" | "errorMessage_1_3038" | "errorMessage_1_3039" | "errorMessage_1_3040" | "errorMessage_1_3041" | "errorMessage_1_3042" | "errorMessage_1_3043" | "errorMessage_1_3044" | "errorMessage_1_3045" | "errorMessage_1_3046" | "errorMessage_1_3047" | "errorMessage_1_3048" | "errorMessage_1_3049" | "errorMessage_1_3050" | "errorMessage_1_3051" | "errorMessage_1_3062" | "errorMessage_1_5000" | "errorMessage_1_5001" | "errorMessage_1_5002" | "errorMessage_1_5003" | "errorMessage_1_5004" | "errorMessage_1_5005" | "errorMessage_1_5006" | "errorMessage_1_5007" | "errorMessage_1_5008" | "errorMessage_1_5009" | "errorMessage_1_5010" | "errorMessage_1_5011" | "errorMessage_1_5012" | "errorMessage_1_5013" | "errorMessage_1_5014" | "errorMessage_1_5015" | "errorMessage_1_5016" | "errorMessage_1_5017" | "errorMessage_1_5018" | "errorMessage_1_5019" | "errorMessage_1_5020" | "errorMessage_1_5021" | "errorMessage_1_5022" | "errorMessage_1_5023" | "errorMessage_1_5024" | "errorMessage_1_5025" | "errorMessage_1_5026" | "errorMessage_1_5027" | "errorMessage_1_5028" | "errorMessage_1_5029" | "errorMessage_1_5030" | "errorMessage_1_5031" | "errorMessage_1_5032" | "errorMessage_1_5033" | "errorMessage_1_5034" | "errorMessage_1_5035" | "errorMessage_1_5036" | "errorMessage_1_5037" | "errorMessage_1_5038" | "errorMessage_1_5039" | "errorMessage_1_5040" | "errorMessage_1_5041" | "errorMessage_1_5042" | "errorMessage_1_5043" | "errorMessage_1_5044" | "errorMessage_1_5045" | "errorMessage_1_5046" | "errorMessage_1_5047" | "errorMessage_1_5048" | "errorMessage_1_5049" | "errorMessage_1_5050" | "errorMessage_1_5051" | "errorMessage_1_5052" | "errorMessage_1_5053" | "errorMessage_1_6000" | "errorMessage_1_6001" | "errorMessage_1_6002" | "errorMessage_1_6003" | "errorMessage_1_6004" | "errorMessage_1_6005" | "errorMessage_1_6006" | "errorMessage_1_6007" | "errorMessage_1_6008" | "errorMessage_1_6009" | "errorMessage_1_6010" | "errorMessage_1_6011" | "errorMessage_1_6012" | "errorMessage_1_6013" | "errorMessage_1_6014" | "errorMessage_1_6015" | "errorMessage_1_6016" | "errorMessage_1_6017" | "errorMessage_1_6018" | "errorMessage_1_6019" | "errorMessage_1_6020" | "errorMessage_1_6021" | "errorMessage_1_6022" | "errorMessage_1_6023" | "errorMessage_1_6024" | "errorMessage_1_6025" | "errorMessage_1_6026" | "errorMessage_1_6027" | "errorMessage_1_6028" | "errorMessage_1_6029" | "errorMessage_1_6030" | "errorMessage_1_6031" | "errorMessage_1_6032" | "errorMessage_1_6033" | "errorMessage_1_6034" | "errorMessage_1_6035" | "errorMessage_1_6036" | "errorMessage_1_6037" | "errorMessage_1_6038" | "errorMessage_1_6039" | "errorMessage_1_6040" | "errorMessage_1_6041" | "errorMessage_1_6042" | "errorMessage_1_6044" | "errorMessage_1_6045" | "errorMessage_1_6046" | "errorMessage_1_6047" | "errorMessage_1_6048" | "errorMessage_1_6049" | "errorMessage_1_7000" | "errorMessage_1_7001" | "errorMessage_1_7002" | "errorMessage_1_7003" | "errorMessage_1_7004" | "errorMessage_1_7005" | "errorMessage_1_7006" | "errorMessage_1_7007" | "errorMessage_1_7008" | "errorMessage_1_7009" | "errorMessage_1_7010" | "errorMessage_1_7011" | "errorMessage_1_7012" | "errorMessage_1_7013" | "errorMessage_1_7014" | "errorMessage_1_7015" | "errorMessage_1_7016" | "errorMessage_1_7017" | "errorMessage_1_7018" | "errorMessage_1_7019" | "errorMessage_1_7020" | "errorMessage_1_7021" | "errorMessage_1_7022" | "errorMessage_3_10" | "remediationMessage_1_100" | "remediationMessage_1_101" | "remediationMessage_1_102" | "remediationMessage_2_158" | "remediationMessage_1_300" | "remediationMessage_1_301" | "remediationMessage_1_302" | "remediationMessage_1_303" | "remediationMessage_1_304" | "remediationMessage_1_305" | "remediationMessage_1_306" | "remediationMessage_1_307" | "remediationMessage_1_308" | "remediationMessage_1_309" | "remediationMessage_1_316" | "remediationMessage_1_500" | "remediationMessage_1_501" | "remediationMessage_1_502" | "remediationMessage_1_503" | "remediationMessage_1_504" | "remediationMessage_1_505" | "remediationMessage_1_506" | "remediationMessage_1_507" | "remediationMessage_1_508" | "remediationMessage_1_509" | "remediationMessage_1_510" | "remediationMessage_1_511" | "remediationMessage_1_600" | "remediationMessage_1_601" | "remediationMessage_1_602" | "remediationMessage_1_603" | "remediationMessage_1_700" | "remediationMessage_1_701" | "remediationMessage_1_702" | "remediationMessage_1_703" | "remediationMessage_1_704" | "remediationMessage_1_705" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "taskIntroPrologueTitle" | "taskIntroPrologueDescriptionP1" | "taskIntroPrologueDescriptionP2" | "taskIntroCompanyTitle" | "taskIntroCompanyDescriptionP1" | "taskIntroCompanyDescriptionP2" | "taskIntroDecisionMakerOverviewTitle" | "taskIntroDecisionMakerOverviewDescriptionP1" | "taskIntroDecisionMakerOverviewDescriptionP2" | "taskIntroDecisionMakerOverviewDescriptionP3" | "taskIntroDecisionMakerOverviewDescriptionLI1" | "taskIntroDecisionMakerOverviewDescriptionLI2" | "taskIntroDecisionMakerOverviewDescriptionLI3" | "taskIntroIndividualTitle" | "taskIntroIndividualDescriptionP1" | "taskIntroIndividualDescriptionP2" | "taskIntroIndividualDescriptionP3" | "taskIntroIndividualDescriptionLI1" | "taskIntroIndividualDescriptionLI2" | "taskIntroIndividualDescriptionLI3" | "taskIntroPayoutTitle" | "taskIntroPayoutOrganizationDescriptionP1" | "taskIntroPayoutOrganizationDescriptionP2" | "taskIntroPayoutIndividualDescriptionP1" | "taskIntroPayoutIndividualDescriptionP2" | "taskIntroEpilogueTitle" | "taskIntroEpilogueDescriptionP1" | "taskIntroEpilogueDescriptionP2" | "taskIntroEpilogueDescriptionP3";
|
|
10
10
|
/**
|
|
11
11
|
* Returns the address schema of the selected country or the default address schema.
|
|
12
12
|
* @param country - The selected country
|
|
13
13
|
*/
|
|
14
|
-
export declare const getAddressSchemaForCountry: (country: CountryCode) => ("country" | "
|
|
14
|
+
export declare const getAddressSchemaForCountry: (country: CountryCode) => ("country" | "otherAddressInformation" | "postalCode" | "city" | "address" | "stateOrProvince")[];
|
|
15
15
|
/**
|
|
16
16
|
* Generates an object to be used as the initial data.
|
|
17
17
|
* @param data - The data to pre-fill the address fields
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { BaseInnerFormProps } from '../../../core/hooks/useForm';
|
|
2
2
|
import type { CompanyTypesValue } from '../../../core/models/api/company-types-value';
|
|
3
|
+
import type { TrustTypes } from '../../../core/models/api/trust-types-value';
|
|
3
4
|
import type { CountryCode } from '../../../core/models/country-code';
|
|
4
5
|
export interface BusinessRegistrationNumberSchema {
|
|
5
6
|
registrationNumber?: string;
|
|
@@ -8,4 +9,5 @@ export interface BusinessRegistrationNumberSchema {
|
|
|
8
9
|
export interface BusinessRegistrationNumberProps extends BaseInnerFormProps<BusinessRegistrationNumberSchema> {
|
|
9
10
|
country: CountryCode;
|
|
10
11
|
companyType?: CompanyTypesValue;
|
|
12
|
+
trustType?: TrustTypes;
|
|
11
13
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { CompanyTypesValue } from '../../../core/models/api/company-types-value';
|
|
2
|
+
import { TrustTypes } from '../../../core/models/api/trust-types-value';
|
|
2
3
|
import { CountryCode } from '../../../core/models/country-code';
|
|
3
4
|
import { TranslationKey } from '../../../language/types';
|
|
4
|
-
import { CompanyTypeValidation } from '../../../utils/regex';
|
|
5
|
+
import { CompanyTypeValidation, TrustTypeValidation } from '../../../utils/regex';
|
|
5
6
|
import { ValidatorRule, ValidatorRules } from '../../../utils/validation/types';
|
|
6
7
|
import { BusinessRegistrationNumberSchema } from './types';
|
|
7
8
|
interface TranslationMessage {
|
|
@@ -9,11 +10,11 @@ interface TranslationMessage {
|
|
|
9
10
|
format: string | undefined | null;
|
|
10
11
|
values: Record<any, any> | undefined | null;
|
|
11
12
|
}
|
|
12
|
-
export declare const validateBusinessRegistrationNumber: (input: string, fallbackCountry?: CountryCode | null, companyType?: keyof CompanyTypeValidation) => {
|
|
13
|
+
export declare const validateBusinessRegistrationNumber: (input: string, fallbackCountry?: CountryCode | null, companyType?: keyof CompanyTypeValidation, trustType?: keyof TrustTypeValidation) => {
|
|
13
14
|
isValid: boolean;
|
|
14
15
|
translationMessage: TranslationMessage;
|
|
15
16
|
};
|
|
16
|
-
export declare const getValidationRulesPerCountryAndType: (country: CountryCode, companyType: CompanyTypesValue, i18n: any) => ValidatorRule<string, any>;
|
|
17
|
+
export declare const getValidationRulesPerCountryAndType: (country: CountryCode, companyType: CompanyTypesValue, trustType: TrustTypes | undefined, i18n: any) => ValidatorRule<string, any>;
|
|
17
18
|
export declare const defaultValidationRules: ValidatorRule<string, any>;
|
|
18
|
-
export declare const getRegistrationNumberValidationRules: (country: CountryCode, companyType: CompanyTypesValue, i18n: any) => ValidatorRules<BusinessRegistrationNumberSchema>;
|
|
19
|
+
export declare const getRegistrationNumberValidationRules: (country: CountryCode, companyType: CompanyTypesValue, trustType: TrustTypes, i18n: any) => ValidatorRules<BusinessRegistrationNumberSchema>;
|
|
19
20
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { JSX } from 'preact';
|
|
2
2
|
import { LegalCompanyNameFieldProps, LegalCompanyNameFieldSchema } from './types';
|
|
3
3
|
export declare const LEGAL_COMPANY_NAME_FIELD: keyof LegalCompanyNameFieldSchema;
|
|
4
|
-
export declare function LegalCompanyNameField({
|
|
4
|
+
export declare function LegalCompanyNameField({ data, valid, error, label, helperText, readonly, handleChangeFor, }: LegalCompanyNameFieldProps): JSX.Element;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import type { BaseFormFieldProps } from '../../../core/hooks/useForm/types';
|
|
2
|
-
import type { CountryCode } from '../../../core/models/country-code';
|
|
3
2
|
export interface LegalCompanyNameFieldSchema {
|
|
4
3
|
legalCompanyName: string | undefined;
|
|
5
4
|
}
|
|
6
|
-
export
|
|
7
|
-
country: CountryCode | undefined;
|
|
8
|
-
}
|
|
5
|
+
export type LegalCompanyNameFieldProps = BaseFormFieldProps<LegalCompanyNameFieldSchema>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ComponentOptions } from '../../components';
|
|
2
2
|
import { CoreOptions } from '../types';
|
|
3
3
|
export declare const validateCoreOptions: (coreOptions: CoreOptions) => void;
|
|
4
|
-
export declare const validateForComponent: <Name extends "payoutAccount" | "taskList" | "pci" | "individualDropin" | "companyDropin" | "trustDropin" | "soleProprietorDropin" | "
|
|
4
|
+
export declare const validateForComponent: <Name extends "payoutAccount" | "taskList" | "pci" | "individualDropin" | "companyDropin" | "trustDropin" | "soleProprietorDropin" | "transferInstrumentComponent">(componentName: Name, options: ComponentOptions<Name>) => void;
|
|
@@ -8,7 +8,7 @@ export declare class Core {
|
|
|
8
8
|
};
|
|
9
9
|
components: UIElement[];
|
|
10
10
|
constructor(coreOptions: CoreOptions);
|
|
11
|
-
create: <Name extends "payoutAccount" | "taskList" | "pci" | "individualDropin" | "companyDropin" | "trustDropin" | "soleProprietorDropin" | "
|
|
11
|
+
create: <Name extends "payoutAccount" | "taskList" | "pci" | "individualDropin" | "companyDropin" | "trustDropin" | "soleProprietorDropin" | "transferInstrumentComponent">(componentName: Name, componentOptions: ComponentOptions<Name>) => UIElement;
|
|
12
12
|
/**
|
|
13
13
|
* Updates global configurations, resets the internal state and remounts each element.
|
|
14
14
|
* @param options - props to update
|
|
@@ -44,6 +44,9 @@ export interface BaseFormProps<FormSchema> {
|
|
|
44
44
|
labels?: {
|
|
45
45
|
[Field in keyof FormSchema]: TranslationKey;
|
|
46
46
|
};
|
|
47
|
+
helperText?: {
|
|
48
|
+
[Field in keyof FormSchema]: TranslationKey;
|
|
49
|
+
};
|
|
47
50
|
data?: FormSchema;
|
|
48
51
|
validators?: ValidatorRules<FormSchema>;
|
|
49
52
|
ref?: any;
|
|
@@ -12,8 +12,17 @@ export interface Address {
|
|
|
12
12
|
country?: CountryCode;
|
|
13
13
|
postalCode?: string;
|
|
14
14
|
stateOrProvince?: string;
|
|
15
|
+
address?: string;
|
|
16
|
+
otherAddressInformation?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface LoqateAddress {
|
|
15
19
|
street?: string;
|
|
20
|
+
street2?: string;
|
|
16
21
|
houseNumberOrName?: string;
|
|
22
|
+
postalCode?: string;
|
|
23
|
+
city?: string;
|
|
24
|
+
stateOrProvince?: string;
|
|
25
|
+
country?: CountryCode;
|
|
17
26
|
}
|
|
18
27
|
export interface AddressSearchItem {
|
|
19
28
|
description: string;
|
|
@@ -20,7 +20,6 @@ export interface Organization {
|
|
|
20
20
|
vatNumber?: string;
|
|
21
21
|
vatAbsenceReason?: VatAbsenceReason;
|
|
22
22
|
type?: CompanyTypesValue;
|
|
23
|
-
isUen?: boolean;
|
|
24
23
|
}
|
|
25
24
|
export declare const vatAbsenceReasons: readonly ["industryExemption", "belowTaxThreshold"];
|
|
26
25
|
export type VatAbsenceReason = (typeof vatAbsenceReasons)[number];
|