@adyen/kyc-components 2.10.0 → 2.10.1
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 +112 -59
- package/dist/types/components/Trust/rules.d.ts +3 -0
- package/dist/types/components/TrustRegistrationDetails/types.d.ts +3 -2
- package/dist/types/components/internal/AccountHolder/types.d.ts +1 -1
- package/dist/types/components/internal/Address/utils.d.ts +1 -1
- 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/core/models/api/legal-arrangement.d.ts +0 -1
- package/dist/types/core/models/api/organization.d.ts +0 -1
- package/dist/types/language/config.d.ts +2 -2
- 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/mapping/componentApiMapping.d.ts +2 -1
- 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
|
@@ -589,8 +589,8 @@ const selectAccountHolder = "Select account holder";
|
|
|
589
589
|
const nameOfBankAccountHolder = "We need to know about the bank account where you want to receive your payouts. What is the name of the account holder of that bank account?";
|
|
590
590
|
const myName = "My name";
|
|
591
591
|
const myNameDescription = "It’s a personal bank account held in my own name";
|
|
592
|
-
const
|
|
593
|
-
const
|
|
592
|
+
const mySoleProprietorName = "My sole proprietor name";
|
|
593
|
+
const mySoleProprietorNameDescription = "The account is in my name, but I am registered as a sole proprietor, sole trader, or freelancer";
|
|
594
594
|
const theCompanyIWorkFor = "The company I work for";
|
|
595
595
|
const theCompanyIWorkForDescription = "It is a company bank account for a private, public, or non-profit organization";
|
|
596
596
|
const aTrust = "A trust";
|
|
@@ -1651,8 +1651,8 @@ const defaultTrans = {
|
|
|
1651
1651
|
nameOfBankAccountHolder,
|
|
1652
1652
|
myName,
|
|
1653
1653
|
myNameDescription,
|
|
1654
|
-
|
|
1655
|
-
|
|
1654
|
+
mySoleProprietorName,
|
|
1655
|
+
mySoleProprietorNameDescription,
|
|
1656
1656
|
theCompanyIWorkFor,
|
|
1657
1657
|
theCompanyIWorkForDescription,
|
|
1658
1658
|
aTrust,
|
|
@@ -4618,6 +4618,17 @@ const ProofOfIdentityCardPatterns = {
|
|
|
4618
4618
|
[CountryCodes.Australia]: /^[A-Za-z\d]{6,10}$/,
|
|
4619
4619
|
[CountryCodes.HongKong]: /^[A-Z]{1,2}[0-9]{6}[0-9A]$/
|
|
4620
4620
|
};
|
|
4621
|
+
const trustRegistrationNumberPatterns = {
|
|
4622
|
+
[CountryCodes.NewZealand]: {
|
|
4623
|
+
default: {
|
|
4624
|
+
regex: /^\d{13}$/,
|
|
4625
|
+
format: "Xdigits",
|
|
4626
|
+
values: {
|
|
4627
|
+
digits: 13
|
|
4628
|
+
}
|
|
4629
|
+
}
|
|
4630
|
+
}
|
|
4631
|
+
};
|
|
4621
4632
|
const vatSpecsPerCountry = {
|
|
4622
4633
|
/* EUROPE: EU */
|
|
4623
4634
|
[CountryCodes.Austria]: {
|
|
@@ -4727,29 +4738,8 @@ const nonVatSpecsPerCountry = {
|
|
|
4727
4738
|
regex: /^\d{9}MVA$/
|
|
4728
4739
|
}
|
|
4729
4740
|
};
|
|
4730
|
-
const
|
|
4731
|
-
|
|
4732
|
-
return {
|
|
4733
|
-
isValid: CHARACTER_PATTERNS.noHtml.test(input),
|
|
4734
|
-
translationMessage: {
|
|
4735
|
-
translationKey: "validationPleaseEnterAValidRegistrationNumber",
|
|
4736
|
-
format: null,
|
|
4737
|
-
values: null
|
|
4738
|
-
}
|
|
4739
|
-
};
|
|
4740
|
-
}
|
|
4741
|
-
const patternForCountry = businessRegistrationNumberPatterns[fallbackCountry];
|
|
4742
|
-
if (!patternForCountry) {
|
|
4743
|
-
return {
|
|
4744
|
-
isValid: CHARACTER_PATTERNS.noHtml.test(input),
|
|
4745
|
-
translationMessage: {
|
|
4746
|
-
translationKey: "validationPleaseEnterAValidRegistrationNumber",
|
|
4747
|
-
format: null,
|
|
4748
|
-
values: null
|
|
4749
|
-
}
|
|
4750
|
-
};
|
|
4751
|
-
}
|
|
4752
|
-
const patterns = patternForCountry[companyType2] ?? patternForCountry.default;
|
|
4741
|
+
const testInputWithPatterns = (input, patterns) => {
|
|
4742
|
+
var _a, _b;
|
|
4753
4743
|
const patternArray = Array.isArray(patterns) ? [...patterns] : [patterns];
|
|
4754
4744
|
const validPatternMatch = patternArray.find((pattern) => pattern.regex.test(pattern.replaceChars ? input.replaceAll(pattern.replaceChars, "") : input));
|
|
4755
4745
|
return validPatternMatch ? {
|
|
@@ -4763,12 +4753,41 @@ const validateBusinessRegistrationNumber = (input, fallbackCountry = null, compa
|
|
|
4763
4753
|
isValid: false,
|
|
4764
4754
|
translationMessage: {
|
|
4765
4755
|
translationKey: "validationPleaseEnterAValidRegistrationNumberWithFormat",
|
|
4766
|
-
format: patternArray[0].format,
|
|
4767
|
-
values: patternArray[0].values
|
|
4756
|
+
format: (_a = patternArray[0]) == null ? void 0 : _a.format,
|
|
4757
|
+
values: (_b = patternArray[0]) == null ? void 0 : _b.values
|
|
4758
|
+
}
|
|
4759
|
+
};
|
|
4760
|
+
};
|
|
4761
|
+
const validateBusinessRegistrationNumber = (input, fallbackCountry = null, companyType2 = "default", trustType2) => {
|
|
4762
|
+
if (!fallbackCountry) {
|
|
4763
|
+
return {
|
|
4764
|
+
isValid: CHARACTER_PATTERNS.noHtml.test(input),
|
|
4765
|
+
translationMessage: {
|
|
4766
|
+
translationKey: "validationPleaseEnterAValidRegistrationNumber",
|
|
4767
|
+
format: null,
|
|
4768
|
+
values: null
|
|
4769
|
+
}
|
|
4770
|
+
};
|
|
4771
|
+
}
|
|
4772
|
+
const trustPatternForCountry = trustRegistrationNumberPatterns[fallbackCountry];
|
|
4773
|
+
const companyPatternForCountry = businessRegistrationNumberPatterns[fallbackCountry];
|
|
4774
|
+
if (trustType2 && trustPatternForCountry) {
|
|
4775
|
+
return testInputWithPatterns(input, trustPatternForCountry[trustType2] ?? trustPatternForCountry.default);
|
|
4776
|
+
}
|
|
4777
|
+
if (companyPatternForCountry) {
|
|
4778
|
+
const patterns = companyPatternForCountry[companyType2] ?? companyPatternForCountry.default;
|
|
4779
|
+
return testInputWithPatterns(input, patterns);
|
|
4780
|
+
}
|
|
4781
|
+
return {
|
|
4782
|
+
isValid: CHARACTER_PATTERNS.noHtml.test(input),
|
|
4783
|
+
translationMessage: {
|
|
4784
|
+
translationKey: "validationPleaseEnterAValidRegistrationNumber",
|
|
4785
|
+
format: null,
|
|
4786
|
+
values: null
|
|
4768
4787
|
}
|
|
4769
4788
|
};
|
|
4770
4789
|
};
|
|
4771
|
-
const getValidationRulesPerCountryAndType = (country2, companyType2, i18n) => ({
|
|
4790
|
+
const getValidationRulesPerCountryAndType = (country2, companyType2, trustType2, i18n) => ({
|
|
4772
4791
|
modes: ["blur"],
|
|
4773
4792
|
validate(registrationNumber2) {
|
|
4774
4793
|
if (!registrationNumber2)
|
|
@@ -4776,7 +4795,7 @@ const getValidationRulesPerCountryAndType = (country2, companyType2, i18n) => ({
|
|
|
4776
4795
|
const {
|
|
4777
4796
|
isValid,
|
|
4778
4797
|
translationMessage
|
|
4779
|
-
} = validateBusinessRegistrationNumber(registrationNumber2, country2, companyType2);
|
|
4798
|
+
} = validateBusinessRegistrationNumber(registrationNumber2, country2, companyType2, trustType2);
|
|
4780
4799
|
this.errorMessage = {
|
|
4781
4800
|
translationKey: translationMessage.translationKey,
|
|
4782
4801
|
translationObject: {
|
|
@@ -4795,9 +4814,9 @@ const defaultValidationRules = {
|
|
|
4795
4814
|
validate: (registrationNumber2) => !isEmpty(registrationNumber2),
|
|
4796
4815
|
errorMessage: "fieldIsRequired"
|
|
4797
4816
|
};
|
|
4798
|
-
const getRegistrationNumberValidationRules = (country2, companyType2, i18n) => {
|
|
4817
|
+
const getRegistrationNumberValidationRules = (country2, companyType2, trustType2, i18n) => {
|
|
4799
4818
|
const validationRules = [defaultValidationRules];
|
|
4800
|
-
const countryValidationRules = getValidationRulesPerCountryAndType(country2, companyType2, i18n);
|
|
4819
|
+
const countryValidationRules = getValidationRulesPerCountryAndType(country2, companyType2, trustType2, i18n);
|
|
4801
4820
|
if (countryValidationRules) {
|
|
4802
4821
|
validationRules.push(countryValidationRules);
|
|
4803
4822
|
}
|
|
@@ -4816,9 +4835,10 @@ function BusinessRegistrationNumber(props) {
|
|
|
4816
4835
|
const schema = props.requiredFields || ["registrationNumber"];
|
|
4817
4836
|
const {
|
|
4818
4837
|
companyType: companyType2,
|
|
4819
|
-
country: country2
|
|
4838
|
+
country: country2,
|
|
4839
|
+
trustType: trustType2
|
|
4820
4840
|
} = props;
|
|
4821
|
-
const validationRules = useMemo(() => getRegistrationNumberValidationRules(country2, companyType2, i18n), [country2, companyType2, i18n]);
|
|
4841
|
+
const validationRules = useMemo(() => getRegistrationNumberValidationRules(country2, companyType2, trustType2, i18n), [country2, companyType2, i18n]);
|
|
4822
4842
|
const registrationNumberFormatters = getRegistrationNumberFormatters(props.country);
|
|
4823
4843
|
const {
|
|
4824
4844
|
handleChangeFor,
|
|
@@ -8426,7 +8446,7 @@ var TrustMemberGuidanceLabel = /* @__PURE__ */ ((TrustMemberGuidanceLabel2) => {
|
|
|
8426
8446
|
TrustMemberGuidanceLabel2["SETTLOR"] = "settlor";
|
|
8427
8447
|
return TrustMemberGuidanceLabel2;
|
|
8428
8448
|
})(TrustMemberGuidanceLabel || {});
|
|
8429
|
-
const TRUST_COUNTRIES = ["AU"];
|
|
8449
|
+
const TRUST_COUNTRIES = ["AU", "NZ"];
|
|
8430
8450
|
const trustBase = {
|
|
8431
8451
|
trustType: {
|
|
8432
8452
|
rule: "REQUIRED"
|
|
@@ -8438,7 +8458,7 @@ const trustBase = {
|
|
|
8438
8458
|
rule: "REQUIRED"
|
|
8439
8459
|
},
|
|
8440
8460
|
taxId: {
|
|
8441
|
-
rule: "
|
|
8461
|
+
rule: "countryUsesTaxId"
|
|
8442
8462
|
},
|
|
8443
8463
|
registrationAddress: {
|
|
8444
8464
|
rule: "REQUIRED"
|
|
@@ -8448,6 +8468,9 @@ const trustBase = {
|
|
|
8448
8468
|
},
|
|
8449
8469
|
constitutionalDocument: {
|
|
8450
8470
|
rule: "REQUIRED"
|
|
8471
|
+
},
|
|
8472
|
+
registrationNumber: {
|
|
8473
|
+
rule: "countryRequiresRegistrationNumberForTrust"
|
|
8451
8474
|
}
|
|
8452
8475
|
};
|
|
8453
8476
|
const fieldsPerScenario$2 = {
|
|
@@ -8466,6 +8489,11 @@ const countryConfig$3 = {
|
|
|
8466
8489
|
taxId: {
|
|
8467
8490
|
label: "australianBusinessNumberAbn"
|
|
8468
8491
|
}
|
|
8492
|
+
},
|
|
8493
|
+
NZ: {
|
|
8494
|
+
registrationNumber: {
|
|
8495
|
+
label: "NZBN"
|
|
8496
|
+
}
|
|
8469
8497
|
}
|
|
8470
8498
|
};
|
|
8471
8499
|
const DEFAULT_TRUST_MEMBER_REQUIREMENTS = [{
|
|
@@ -8557,13 +8585,13 @@ var TaskStatus = /* @__PURE__ */ ((TaskStatus2) => {
|
|
|
8557
8585
|
const SOLE_PROP_COUNTRIES = [CountryCodes.Austria, CountryCodes.Australia, CountryCodes.Belgium, CountryCodes.Bulgaria, CountryCodes.Canada, CountryCodes.Croatia, CountryCodes.Cyprus, CountryCodes.CzechRepublic, CountryCodes.Denmark, CountryCodes.Estonia, CountryCodes.Finland, CountryCodes.France, CountryCodes.Germany, CountryCodes.Gibraltar, CountryCodes.Greece, CountryCodes.Guernsey, CountryCodes.HongKong, CountryCodes.Hungary, CountryCodes.Ireland, CountryCodes.IsleOfMan, CountryCodes.Italy, CountryCodes.Jersey, CountryCodes.Latvia, CountryCodes.Liechtenstein, CountryCodes.Lithuania, CountryCodes.Luxembourg, CountryCodes.Malta, CountryCodes.Monaco, CountryCodes.Netherlands, CountryCodes.NewZealand, CountryCodes.Norway, CountryCodes.Poland, CountryCodes.Portugal, CountryCodes.PuertoRico, CountryCodes.Romania, CountryCodes.Singapore, CountryCodes.Slovakia, CountryCodes.Slovenia, CountryCodes.Spain, CountryCodes.Sweden, CountryCodes.Switzerland, CountryCodes.UnitedKingdom, CountryCodes.UnitedStates];
|
|
8558
8586
|
const ID_NUMBER_EXEMPT_COUNTRIES = [CountryCodes.Canada, CountryCodes.UnitedStates];
|
|
8559
8587
|
const ID_NUMBER_VERIFICATION_COUNTRIES = [CountryCodes.UnitedStates];
|
|
8560
|
-
const COUNTRIES_WHICH_USE_MULTIPLE_IDENTITY_TYPES = [CountryCodes.HongKong, CountryCodes.Australia];
|
|
8588
|
+
const COUNTRIES_WHICH_USE_MULTIPLE_IDENTITY_TYPES = [CountryCodes.HongKong, CountryCodes.Australia, CountryCodes.NewZealand];
|
|
8561
8589
|
const ID_NUMBER_REQUIRED_FOR_DIRECTOR_COUNTRIES = [CountryCodes.Singapore, CountryCodes.NewZealand];
|
|
8562
8590
|
const NATIONALITY_REQUIRED_FOR_COUNTRIES = [CountryCodes.Singapore];
|
|
8563
8591
|
const CONTACTS_REQUIRED_FOR_COUNTRIES = [CountryCodes.NewZealand];
|
|
8564
8592
|
const JOB_TITLE_REQUIRED_FOR_COUNTRIES = [CountryCodes.NewZealand];
|
|
8565
8593
|
const ISSUER_REQUIRED_FOR_COUNTRIES = [CountryCodes.Australia];
|
|
8566
|
-
const rules$
|
|
8594
|
+
const rules$3 = ({
|
|
8567
8595
|
data,
|
|
8568
8596
|
country: country2,
|
|
8569
8597
|
taskType
|
|
@@ -8669,7 +8697,7 @@ function getAvailableAccountHolderOptions(legalEntityType, isChangeOfLegalEntity
|
|
|
8669
8697
|
return ["theCompanyIWorkFor", ...isChangeOfLegalEntityTypeAllowed ? ["myName"] : [], ...isTrustFlowEnabled ? ["aTrust"] : []];
|
|
8670
8698
|
}
|
|
8671
8699
|
case LegalEntityType.INDIVIDUAL: {
|
|
8672
|
-
return [...isChangeToMyNameAllowed ? ["myName"] : [], ...isChangeOfLegalEntityTypeAllowed ? ["theCompanyIWorkFor"] : [], ...isTrustFlowEnabled ? ["aTrust"] : [], ...isSoleProprietorshipAllowed ? ["
|
|
8700
|
+
return [...isChangeToMyNameAllowed ? ["myName"] : [], ...isChangeOfLegalEntityTypeAllowed ? ["theCompanyIWorkFor"] : [], ...isTrustFlowEnabled ? ["aTrust"] : [], ...isSoleProprietorshipAllowed ? ["mySoleProprietorName"] : []];
|
|
8673
8701
|
}
|
|
8674
8702
|
default:
|
|
8675
8703
|
logger$j.error(`No available account holder options for legal entity type '${legalEntityType}'`);
|
|
@@ -11155,7 +11183,7 @@ const COUNTRIES_WITH_POSSIBLE_TAX_EXEMPTION_FOR_SOLE_PROPS = [
|
|
|
11155
11183
|
];
|
|
11156
11184
|
const COUNTRIES_THAT_REQUIRE_DATE_OF_INCORPORATION = [CountryCodes.HongKong, CountryCodes.Singapore];
|
|
11157
11185
|
const COUNTRIES_THAT_USES_UEN_OR_GST = [CountryCodes.Singapore];
|
|
11158
|
-
const rules$
|
|
11186
|
+
const rules$2 = ({
|
|
11159
11187
|
data,
|
|
11160
11188
|
country: country2,
|
|
11161
11189
|
taskType
|
|
@@ -11683,7 +11711,7 @@ const filterOutUnwantedAssociationsIfRootLE = (taskType, legalEntity, accountHol
|
|
|
11683
11711
|
if (!isRootLegalEntity(legalEntity, taskType)) {
|
|
11684
11712
|
return entityAssociations;
|
|
11685
11713
|
}
|
|
11686
|
-
if (accountHolder2 !== "
|
|
11714
|
+
if (accountHolder2 !== "mySoleProprietorName" && hasOwnEntityAssociationOfType(LegalEntityType.SOLE_PROPRIETORSHIP, entityAssociations, legalEntity.id)) {
|
|
11687
11715
|
entityAssociations = removeEntityAssociationByType(LegalEntityType.SOLE_PROPRIETORSHIP, entityAssociations, legalEntity.id);
|
|
11688
11716
|
}
|
|
11689
11717
|
if (accountHolder2 !== "aTrust" && hasOwnEntityAssociationOfType(LegalEntityType.TRUST, entityAssociations, legalEntity.id)) {
|
|
@@ -11758,14 +11786,14 @@ function isEmptyEntity(legalEntity) {
|
|
|
11758
11786
|
const entityTypeToCorrespondingAccountHolderOption = {
|
|
11759
11787
|
[LegalEntityType.INDIVIDUAL]: "myName",
|
|
11760
11788
|
[LegalEntityType.ORGANIZATION]: "theCompanyIWorkFor",
|
|
11761
|
-
[LegalEntityType.SOLE_PROPRIETORSHIP]: "
|
|
11789
|
+
[LegalEntityType.SOLE_PROPRIETORSHIP]: "mySoleProprietorName",
|
|
11762
11790
|
[LegalEntityType.TRUST]: "aTrust"
|
|
11763
11791
|
};
|
|
11764
11792
|
const getDefaultAccountHolderType = (legalEntityResponse, isTypeChanging = false) => {
|
|
11765
11793
|
if (!(legalEntityResponse == null ? void 0 : legalEntityResponse.type))
|
|
11766
11794
|
return void 0;
|
|
11767
11795
|
if (hasOwnEntityAssociationOfType(LegalEntityType.SOLE_PROPRIETORSHIP, legalEntityResponse.entityAssociations, legalEntityResponse.id)) {
|
|
11768
|
-
return "
|
|
11796
|
+
return "mySoleProprietorName";
|
|
11769
11797
|
}
|
|
11770
11798
|
if (hasOwnEntityAssociationOfType(LegalEntityType.TRUST, legalEntityResponse.entityAssociations, legalEntityResponse.id)) {
|
|
11771
11799
|
return "aTrust";
|
|
@@ -11933,6 +11961,7 @@ const trustBaseMapping = {
|
|
|
11933
11961
|
"trustRegistrationDetails.trustType": "trust.type",
|
|
11934
11962
|
"trustRegistrationDetails.legalName": "trust.name",
|
|
11935
11963
|
"trustRegistrationDetails.country": "trust.countryOfGoverningLaw",
|
|
11964
|
+
"trustRegistrationDetails.registrationNumber": "trust.registrationNumber",
|
|
11936
11965
|
"trustRegistrationAddress.registrationAddress.city": "trust.registeredAddress.city",
|
|
11937
11966
|
"trustRegistrationAddress.registrationAddress.country": "trust.registeredAddress.country",
|
|
11938
11967
|
"trustRegistrationAddress.registrationAddress.postalCode": "trust.registeredAddress.postalCode",
|
|
@@ -17567,7 +17596,7 @@ function PayoutAccountComponent(props) {
|
|
|
17567
17596
|
const bankNameProps = getFieldProps(props, bankNameFields);
|
|
17568
17597
|
const bankCodeProps = getFieldProps(props, bankCodeFields);
|
|
17569
17598
|
const bankCityProps = getFieldProps(props, bankCityFields);
|
|
17570
|
-
const hasSoleProprietorship = accountHolder2 === "
|
|
17599
|
+
const hasSoleProprietorship = accountHolder2 === "mySoleProprietorName" || hasOwnEntityAssociationOfType(LegalEntityType.SOLE_PROPRIETORSHIP, legalEntityResponse.entityAssociations, legalEntityResponse.id);
|
|
17571
17600
|
const hasTrusts = accountHolder2 === "aTrust" || hasOwnEntityAssociationOfType(LegalEntityType.TRUST, legalEntityResponse.entityAssociations, legalEntityResponse.id);
|
|
17572
17601
|
const accountHolderDescriptionKey = hasSoleProprietorship ? "accountHolderDescriptionSoleProp" : hasTrusts ? "bankAccountToHaveSameNameAsTrust" : legalEntityResponse.type === LegalEntityType.ORGANIZATION ? "accountHolderDescriptionCompany" : "accountHolderDescriptionIndividual";
|
|
17573
17602
|
return jsxs("form", {
|
|
@@ -18642,10 +18671,10 @@ const trustRegistrationDetailsValidations = {
|
|
|
18642
18671
|
errorMessage: "fieldIsRequired"
|
|
18643
18672
|
}
|
|
18644
18673
|
};
|
|
18645
|
-
const trustRegistrationDetailsFields = ["legalName", "country", "trustType", "taxId"];
|
|
18646
|
-
const ALLOWED_TRUST_COUNTRIES = [CountryCodes.Australia];
|
|
18674
|
+
const trustRegistrationDetailsFields = ["legalName", "country", "trustType", "taxId", "registrationNumber"];
|
|
18675
|
+
const ALLOWED_TRUST_COUNTRIES = [CountryCodes.Australia, CountryCodes.NewZealand];
|
|
18647
18676
|
function TrustRegistrationDetailsComponent(props) {
|
|
18648
|
-
var _a;
|
|
18677
|
+
var _a, _b;
|
|
18649
18678
|
const {
|
|
18650
18679
|
i18n
|
|
18651
18680
|
} = useI18nContext();
|
|
@@ -18654,7 +18683,7 @@ function TrustRegistrationDetailsComponent(props) {
|
|
|
18654
18683
|
setState: null
|
|
18655
18684
|
});
|
|
18656
18685
|
const requiredFieldsByTask = trustRegistrationDetailsFields;
|
|
18657
|
-
const directChildFields = requiredFieldsByTask.filter((field) => ["trustType", "legalName", "country"].includes(field));
|
|
18686
|
+
const directChildFields = requiredFieldsByTask.filter((field) => ["trustType", "legalName", "country", "taxId", "registrationNumber"].includes(field));
|
|
18658
18687
|
const {
|
|
18659
18688
|
handleChangeFor,
|
|
18660
18689
|
data,
|
|
@@ -18672,8 +18701,8 @@ function TrustRegistrationDetailsComponent(props) {
|
|
|
18672
18701
|
});
|
|
18673
18702
|
const formUtils = formUtilities(props, i18n);
|
|
18674
18703
|
useEffect(() => {
|
|
18675
|
-
var _a2,
|
|
18676
|
-
(
|
|
18704
|
+
var _a2, _b2;
|
|
18705
|
+
(_b2 = (_a2 = stateRef.current) == null ? void 0 : _a2.setState) == null ? void 0 : _b2.call(_a2, {
|
|
18677
18706
|
type: "addToState",
|
|
18678
18707
|
value: {
|
|
18679
18708
|
data,
|
|
@@ -18688,12 +18717,13 @@ function TrustRegistrationDetailsComponent(props) {
|
|
|
18688
18717
|
}, [data, valid, errors]);
|
|
18689
18718
|
const taxIdProps = getFieldProps(props, taxIdFields);
|
|
18690
18719
|
useEffect(() => {
|
|
18691
|
-
if (
|
|
18692
|
-
setData("country",
|
|
18720
|
+
if (!data.country) {
|
|
18721
|
+
setData("country", props.country);
|
|
18693
18722
|
triggerValidation(["country"]);
|
|
18694
18723
|
}
|
|
18695
18724
|
}, [(_a = props.data) == null ? void 0 : _a.country]);
|
|
18696
18725
|
const trustTypeOptions2 = getCountrySpecificTrustTypeOptions(props.country) ?? [];
|
|
18726
|
+
const registrationNumberProps = getFieldProps(props, businessRegistrationNumberFields);
|
|
18697
18727
|
return jsxs(Fragment, {
|
|
18698
18728
|
children: [jsx(StateContextSetter, {
|
|
18699
18729
|
owner: TRUST_REGISTRATION_DETAILS,
|
|
@@ -18760,6 +18790,11 @@ function TrustRegistrationDetailsComponent(props) {
|
|
|
18760
18790
|
...taxIdProps,
|
|
18761
18791
|
dataStoreId: TRUST_REGISTRATION_DETAILS,
|
|
18762
18792
|
country: props.country
|
|
18793
|
+
}), formUtils.isRequiredField("registrationNumber") && jsx(BusinessRegistrationNumber, {
|
|
18794
|
+
...registrationNumberProps,
|
|
18795
|
+
dataStoreId: TRUST_REGISTRATION_DETAILS,
|
|
18796
|
+
country: props.country,
|
|
18797
|
+
trustType: (_b = props.data) == null ? void 0 : _b.trustType
|
|
18763
18798
|
})]
|
|
18764
18799
|
})]
|
|
18765
18800
|
});
|
|
@@ -20834,7 +20869,7 @@ function CompanyDropinComponent({
|
|
|
20834
20869
|
setLoadingStatus,
|
|
20835
20870
|
country: country2
|
|
20836
20871
|
});
|
|
20837
|
-
const fieldsFromCustomRules = useMemo(() => rules$
|
|
20872
|
+
const fieldsFromCustomRules = useMemo(() => rules$2({
|
|
20838
20873
|
data,
|
|
20839
20874
|
country: country2,
|
|
20840
20875
|
taskType,
|
|
@@ -22703,7 +22738,7 @@ function TaskListComponent({
|
|
|
22703
22738
|
const hasTrust = isExperimentEnabled("EnableTrustFlow") && (accountHolder2 === "aTrust" || isPartOfTrustFromLegalEntity(legalEntityResponse));
|
|
22704
22739
|
const hasContractTasks = tasks.some((task) => CONTRACT_TASKS.includes(task));
|
|
22705
22740
|
const isCompany = tasks.some((task) => task === TaskTypes.COMPANY);
|
|
22706
|
-
const hasSoleProprietorship = accountHolder2 === "
|
|
22741
|
+
const hasSoleProprietorship = accountHolder2 === "mySoleProprietorName" || hasSolePropInLegalEntity(legalEntityResponse);
|
|
22707
22742
|
const transferInstruments = (legalEntityResponse == null ? void 0 : legalEntityResponse.transferInstruments) || [];
|
|
22708
22743
|
const canAddPayoutAccount = ((_a = legalEntityResponse == null ? void 0 : legalEntityResponse.organization) == null ? void 0 : _a.legalName) || ((_b = legalEntityResponse == null ? void 0 : legalEntityResponse.individual) == null ? void 0 : _b.name);
|
|
22709
22744
|
const hasPayinTaskNotPayout = tasks.includes(TaskTypes.PAYIN) && !tasks.includes(TaskTypes.PAYOUT);
|
|
@@ -23298,7 +23333,7 @@ function IndividualDropinComponent({
|
|
|
23298
23333
|
setLoadingStatus,
|
|
23299
23334
|
country: country2
|
|
23300
23335
|
});
|
|
23301
|
-
const fieldsFromCustomRules = useMemo(() => rules$
|
|
23336
|
+
const fieldsFromCustomRules = useMemo(() => rules$3({
|
|
23302
23337
|
data,
|
|
23303
23338
|
country: country2,
|
|
23304
23339
|
taskType
|
|
@@ -23716,7 +23751,7 @@ const isInstantVerificationAvailable = ({
|
|
|
23716
23751
|
verificationVendorsCallback,
|
|
23717
23752
|
bankVerificationVendors
|
|
23718
23753
|
}) => Boolean(verificationVendorsCallback && (bankVerificationVendors == null ? void 0 : bankVerificationVendors[country2]));
|
|
23719
|
-
const rules = ({
|
|
23754
|
+
const rules$1 = ({
|
|
23720
23755
|
data,
|
|
23721
23756
|
requiredFields
|
|
23722
23757
|
}) => ({
|
|
@@ -23899,7 +23934,7 @@ function PayoutDetailsDropinComponent({
|
|
|
23899
23934
|
setLoadingStatus,
|
|
23900
23935
|
country: bankAccountCountry2 ?? defaultPayoutCountry
|
|
23901
23936
|
});
|
|
23902
|
-
const fieldsFromCustomRules = useMemo(() => rules({
|
|
23937
|
+
const fieldsFromCustomRules = useMemo(() => rules$1({
|
|
23903
23938
|
data,
|
|
23904
23939
|
country: bankAccountCountry2 ?? defaultPayoutCountry,
|
|
23905
23940
|
taskType,
|
|
@@ -26085,7 +26120,7 @@ const SolePropWithFormComposer = withFormComposer(SolePropComponent, {
|
|
|
26085
26120
|
matchingScenario,
|
|
26086
26121
|
country: country2
|
|
26087
26122
|
}) => parseSolePropScenarios([matchingScenario[LegalEntityType.TRUST]], country2),
|
|
26088
|
-
rules: rules$
|
|
26123
|
+
rules: rules$2,
|
|
26089
26124
|
labels,
|
|
26090
26125
|
defaultTaskName: "solePropDetails"
|
|
26091
26126
|
});
|
|
@@ -26317,6 +26352,23 @@ function SolePropDropinComponent({
|
|
|
26317
26352
|
})
|
|
26318
26353
|
});
|
|
26319
26354
|
}
|
|
26355
|
+
const COUNTRIES_THAT_USE_REGISTRATION_NUMBER = [CountryCodes.NewZealand];
|
|
26356
|
+
const rules = ({
|
|
26357
|
+
data,
|
|
26358
|
+
country: country2,
|
|
26359
|
+
taskType
|
|
26360
|
+
}) => ({
|
|
26361
|
+
countryUsesTaxId: () => {
|
|
26362
|
+
if (country2 !== CountryCodes.NewZealand && COUNTRIES_THAT_USE_TAX_ID_INSTEAD_OF_VAT.includes(country2)) {
|
|
26363
|
+
return "REQUIRED";
|
|
26364
|
+
}
|
|
26365
|
+
},
|
|
26366
|
+
countryRequiresRegistrationNumberForTrust: () => {
|
|
26367
|
+
if (COUNTRIES_THAT_USE_REGISTRATION_NUMBER.includes(country2)) {
|
|
26368
|
+
return "REQUIRED";
|
|
26369
|
+
}
|
|
26370
|
+
}
|
|
26371
|
+
});
|
|
26320
26372
|
const TrustWithFormComposer = withFormComposer(TrustComponent, {
|
|
26321
26373
|
getComponentForms: () => trustForms,
|
|
26322
26374
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -26324,6 +26376,7 @@ const TrustWithFormComposer = withFormComposer(TrustComponent, {
|
|
|
26324
26376
|
matchingScenario,
|
|
26325
26377
|
country: country2
|
|
26326
26378
|
}) => parseTrustScenarios(matchingScenario == null ? void 0 : matchingScenario[LegalEntityType.TRUST], country2),
|
|
26379
|
+
rules,
|
|
26327
26380
|
defaultTaskName: "trustDetails"
|
|
26328
26381
|
});
|
|
26329
26382
|
function TrustDropinComponent(props) {
|
|
@@ -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;
|
|
@@ -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 @@ 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" | "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" | "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
|
|
@@ -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
|
}
|