@adyen/kyc-components 3.41.4 → 3.41.6
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 +379 -204
- package/dist/style.css +38 -5
- package/dist/types/components/DebugWrapper/DebugExperimentsAndSettings.d.ts +7 -0
- package/dist/types/components/DebugWrapper/DebugLegalEntityData.d.ts +6 -0
- package/dist/types/components/DebugWrapper/DebugMetadata.d.ts +6 -0
- package/dist/types/components/DebugWrapper/DebugTaskStatuses.d.ts +11 -0
- package/dist/types/components/DebugWrapper/debugInfo.d.ts +17 -6
- package/dist/types/components/Tabs/Tabs.d.ts +12 -0
- package/dist/types/components/internal/Address/utils.d.ts +1 -1
- package/dist/types/components/internal/DebugTable/DebugTable.d.ts +16 -5
- package/dist/types/stores/taskStore/calculateTaskStatus.d.ts +8 -1
- package/dist/types/stores/taskStore/determineTaskIdentifiers.d.ts +3 -1
- package/dist/types/stores/taskStore/taskStatus.d.ts +3 -1
- package/dist/types/stores/taskStore/taskStore.d.ts +4 -0
- package/dist/types/utils/entity-status-util.d.ts +1 -1
- package/dist/types/utils/listToRecord.d.ts +1 -0
- package/package.json +1 -1
- package/dist/types/components/DebugWrapper/types.d.ts +0 -6
- package/dist/types/components/internal/DebugTable/types.d.ts +0 -5
package/dist/style.css
CHANGED
|
@@ -3718,7 +3718,8 @@ fieldset {
|
|
|
3718
3718
|
|
|
3719
3719
|
.adyen-kyc-task-status-details-required,
|
|
3720
3720
|
.adyen-kyc-task-status-sign,
|
|
3721
|
-
.adyen-kyc-task-status-submit
|
|
3721
|
+
.adyen-kyc-task-status-submit,
|
|
3722
|
+
.adyen-kyc-task-status-unknown {
|
|
3722
3723
|
font-size: var(--adyen-sdk-text-body-font-size, 14px);
|
|
3723
3724
|
margin-right: var(--adyen-sdk-spacer-040, 8px);
|
|
3724
3725
|
padding-top: 1px;
|
|
@@ -4785,6 +4786,11 @@ fieldset {
|
|
|
4785
4786
|
margin: 1em;
|
|
4786
4787
|
}
|
|
4787
4788
|
|
|
4789
|
+
.adyen-kyc-debug-modal__header-tabs {
|
|
4790
|
+
display: flex;
|
|
4791
|
+
gap: 8px;
|
|
4792
|
+
}
|
|
4793
|
+
|
|
4788
4794
|
.adyen-kyc-debug-modal__footer {
|
|
4789
4795
|
display: flex;
|
|
4790
4796
|
align-items: center;
|
|
@@ -4803,10 +4809,6 @@ fieldset {
|
|
|
4803
4809
|
margin-right: 1em;
|
|
4804
4810
|
}
|
|
4805
4811
|
|
|
4806
|
-
.adyen-kyc-debug-modal__table-label {
|
|
4807
|
-
margin-right: 4px;
|
|
4808
|
-
}
|
|
4809
|
-
|
|
4810
4812
|
.adyen-kyc-debug-modal__content {
|
|
4811
4813
|
display: flex;
|
|
4812
4814
|
flex-direction: column;
|
|
@@ -4819,4 +4821,35 @@ fieldset {
|
|
|
4819
4821
|
flex-direction: column;
|
|
4820
4822
|
gap: 4px;
|
|
4821
4823
|
margin: 0 1em;
|
|
4824
|
+
}/* #region Borders */
|
|
4825
|
+
/* #endregion */
|
|
4826
|
+
/* #region Z-index */
|
|
4827
|
+
/* #endregion */
|
|
4828
|
+
/* #region Timing functions */
|
|
4829
|
+
/* #endregion */
|
|
4830
|
+
/* #region Inline components */
|
|
4831
|
+
/* #endregion */
|
|
4832
|
+
.adyen-kyc-header th {
|
|
4833
|
+
text-align: start;
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
.adyen-kyc-task-name {
|
|
4837
|
+
font-size: 0.85em;
|
|
4838
|
+
letter-spacing: 0.5px;
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
.adyen-kyc-table tbody {
|
|
4842
|
+
/* stylelint-disable-next-line selector-max-compound-selectors */
|
|
4843
|
+
}
|
|
4844
|
+
.adyen-kyc-table tbody tr td {
|
|
4845
|
+
padding: 4px;
|
|
4846
|
+
}
|
|
4847
|
+
.adyen-kyc-table tbody tr:nth-child(odd) {
|
|
4848
|
+
background-color: var(--adyen-sdk-color-background-secondary, #f7f7f8);
|
|
4849
|
+
}
|
|
4850
|
+
.adyen-kyc-table tbody tr:nth-child(even) {
|
|
4851
|
+
background-color: var(--adyen-sdk-color-background-primary, #ffffff);
|
|
4852
|
+
}.adyen-kyc-tabs {
|
|
4853
|
+
display: flex;
|
|
4854
|
+
gap: 8px;
|
|
4822
4855
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { DebugInfo } from './debugInfo';
|
|
2
|
+
interface DebugExperimentsAndSettingsProps {
|
|
3
|
+
experiments: DebugInfo['experiments'];
|
|
4
|
+
settings: DebugInfo['settings'];
|
|
5
|
+
}
|
|
6
|
+
export declare const DebugExperimentsAndSettings: ({ experiments, settings, }: DebugExperimentsAndSettingsProps) => import("preact").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { DebugInfo } from './debugInfo';
|
|
2
|
+
interface DebugLegalEntityProps {
|
|
3
|
+
legalEntityData: DebugInfo['legalEntityData'];
|
|
4
|
+
}
|
|
5
|
+
export declare const DebugLegalEntityData: ({ legalEntityData }: DebugLegalEntityProps) => import("preact").JSX.Element;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { DebugInfo } from './debugInfo';
|
|
2
|
+
interface DebugMetadataProps {
|
|
3
|
+
metadata: DebugInfo['metadata'];
|
|
4
|
+
}
|
|
5
|
+
export declare const DebugMetadata: ({ metadata: { sdkVersion, locale, rootLegalEntityId }, }: DebugMetadataProps) => import("preact").JSX.Element;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { TaskStatusWithReason } from '../../stores/taskStore/taskStatus';
|
|
2
|
+
import type { DebugInfo } from './debugInfo';
|
|
3
|
+
interface DebugTaskStatusesProps {
|
|
4
|
+
taskStatuses: DebugInfo['taskStatuses'];
|
|
5
|
+
}
|
|
6
|
+
export declare const DebugTaskStatuses: ({ taskStatuses }: DebugTaskStatusesProps) => import("preact").JSX.Element;
|
|
7
|
+
interface ExplainReasonProps {
|
|
8
|
+
status: TaskStatusWithReason;
|
|
9
|
+
}
|
|
10
|
+
export declare const ExplainDetails: ({ status }: ExplainReasonProps) => import("preact").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -1,9 +1,20 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { Experiments } from '../../core/Context/ExperimentContext/types';
|
|
2
|
+
import type { Settings } from '../../core/Context/SettingsContext/types';
|
|
3
3
|
import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
|
|
4
|
+
import type { LegalEntityType } from '../../core/models/api/legal-entity-type';
|
|
5
|
+
import type { TaskIdentifier } from '../../stores/taskStore/taskStore';
|
|
6
|
+
import type { TaskStatusWithReason } from '../../stores/taskStore/taskStatus';
|
|
4
7
|
export interface DebugInfo {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
metadata: {
|
|
9
|
+
sdkVersion: string;
|
|
10
|
+
locale: string;
|
|
11
|
+
rootLegalEntityId: string;
|
|
12
|
+
};
|
|
13
|
+
settings: Settings;
|
|
14
|
+
experiments: Experiments;
|
|
15
|
+
taskStatuses: Partial<Record<TaskIdentifier, TaskStatusWithReason>>;
|
|
16
|
+
legalEntityData?: {
|
|
17
|
+
rootLegalEntityType: LegalEntityType;
|
|
18
|
+
rootLegalEntity: ExistingLegalEntity;
|
|
19
|
+
};
|
|
9
20
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface TabOptions<T> {
|
|
2
|
+
name: T;
|
|
3
|
+
label: string;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface TabsProps<T> {
|
|
7
|
+
tabs: TabOptions<T>[];
|
|
8
|
+
activeTab: T;
|
|
9
|
+
onChange: (tab: T) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const Tabs: <T>({ tabs, activeTab, onChange }: TabsProps<T>) => import("preact").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -6,7 +6,7 @@ import type { AddressSchema, AddressSchemaLabels } from './types';
|
|
|
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" | "iban" | "search" | "aTrust" | "partnershipIncorporated" | "partnershipUnincorporated" | "associationIncorporated" | "myName" | "mySoleProprietorName" | "theCompanyIWorkFor" | "address" | "code" | "progress" | "select" | "summary" | "cancel" | "close" | "submit" | "id" | "CNPJ" | "CVR-nummer" | "MBO" | "RFC" | "guardian" | "parent" | "1Minute" | "1Second" | "CCIAA" | "DIC" | "GEMI-number" | "ICO" | "MBS" | "Mehrwertsteuernummer" | "NIF" | "NIFdeIVA" | "NIP" | "NIPC" | "NZBN" | "NZBN/NCN" | "NumeroDeTVA" | "PDVIdBrojOIB" | "PVMmoketojoKodas" | "RfcDocument" | "SINFormatCA" | "SSM" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SST" | "UST-ID" | "USt-IdNr" | "XOfYSteps" | "YTunnus" | "aLegalRepresentativeIsRequired" | "aLetterFromYourBank" | "aNomineeDirectorIsAppointed" | "aNomineeShareholderHoldsShares" | "accept" | "acceptedDocumentsForGovernment" | "acceptedDocumentsForNonProfit" | "acceptedDocumentsForPartnerships" | "acceptedDocumentsForPrivateCompanies" | "acceptedDocumentsForPublicCompanies" | "accountCantBeSetUp" | "accountDetailsDescription" | "accountHolder" | "accountHolderTerms" | "accountName" | "accountNumber" | "accountNumberOrIbanVisible" | "accountNumberVisible" | "accountVerification" | "acknowledgePciRequirements" | "actionNeeded" | "add" | "addABankAccountForPayouts" | "addAccountManually" | "addBankAccount" | "addBankDetails" | "addDecisionMaker" | "addEntityOwner" | "addExtraBankAccount" | "addExtraPayinAccount" | "addExtraPayoutAccount" | "addManually" | "addMissingBankDetails" | "addOwnerToTrustMember" | "addPayoutAccount" | "addTrustMember" | "addYourselfAsSigner" | "additionalInformation" | "additionalInformationFormHeading" | "additionalInformationFormName" | "addressRegisteredWithSecretaryOfState" | "address__placeHolder" | "addresses" | "adoptionCertificate" | "adyenKeepsDataAsLongAsLegallyRequired" | "adyenWillOnlyGetTemporaryAccess" | "anAssociation" | "anLEIIsAUniqueCode" | "andResubmit" | "annualReport" | "annualTurnover" | "annualTurnoverCurrency" | "annualTurnoverHelper" | "annualTurnoverValue" | "apartmentSuite" | "apartmentSuiteOther" | "applicationSubmittedSuccessfully" | "areYouACompany" | "areYouAnIndividual" | "areYouSureYouWantToDeleteThisBankAccount" | "arithmosEngraphes" | "articlesOfIncorporation" | "arvonlisaveronumeroMervardesskattenummer" | "association" | "associationIncorporatedDescription" | "australianBusinessNumberAbn" | "australianBusinessNumberAcn" | "back" | "backPage" | "backToTaskList" | "bankAccount" | "bankAccountCountryRegion" | "bankAccountDetails" | "bankAccountFormat" | "bankAccountHasToBeInYourCompanyName" | "bankAccountHasToBeInYourName" | "bankAccountNameIndividual" | "bankAccountNameOrganization" | "bankAccountNameWithSoleProprietor" | "bankAccountNameWithTrust" | "bankAccountNameWithTrust_US" | "bankAccountNumber" | "bankAccountToHaveSameNameAsTrust" | "bankAccountVerification" | "bankCityTown" | "bankCode" | "bankCountry" | "bankDetails" | "bankDocument" | "bankDocumentDescription" | "bankDocumentFileDescription" | "bankDocumentHeader" | "bankDocumentHeaderOptional" | "bankName" | "bankStatement" | "bankStatementAlreadyUploaded" | "bankStatementDocument" | "bankStatementIndividualDescription" | "bankStatementNonIndividualDescription" | "bankruptcyInsolvency" | "basedOnTheAboveSignatory" | "basicCompanyInformation" | "basicInformation" | "basicInformationFormDescription" | "basicInformationFormDescriptionLink" | "basicInformationFormHeading" | "basicInformationFormName" | "becauseYoureUnderXWeNeedToCollectInformationAboutALegalRepresentative" | "beforeSubmittingYourCapitalLoanApplication" | "belowTaxThreshold" | "beneficiary" | "beneficiaryGuideDescription" | "bic" | "bicSwift" | "birthCertificate" | "birthDate" | "branchCode" | "branchNumber" | "browseFiles" | "bsbCode" | "bsbNumber" | "btwNummer" | "businessAccountDetailsDescription" | "businessAccountDetailsDescriptionReview" | "businessAccountTerms" | "businessDetails" | "businessEntityDescription" | "businessEntityTitle" | "businessIncorporationNumber" | "businessInformation" | "businessName" | "businessNumber" | "businessRegistrationDocument__FR" | "businessRegistryStatement" | "businessSelection__failedToLoad" | "businessSelection__footer" | "businessSelection__footerButton" | "businessSelection__heading" | "businessSelection__invalidTin" | "businessSelection__tinVerificationFailure" | "businessStructure" | "businessTrust" | "businessTrusteeDetails" | "byClickingSignIAcknowledgeAndAgree" | "byClickingSubmitReview" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "cadastroDePessoasFisicas" | "canNotCompleteInstantVerification" | "cantSetUpAcccount" | "capitalUserTerms" | "cardUserTerms" | "cashManagementTrust" | "certificateOfFormation" | "certificateOfIncorporation" | "certificateOfIncumbency" | "certificateOfVoterRegistration" | "chRegistrationNumber" | "chamberOfCommerceExtract" | "chamberOfCommerceRegistrationNumber" | "changeYourBusinessSetup" | "chargeCardUserAgreement" | "charitableTrust" | "charityNumber" | "charter" | "check" | "checkForTypos" | "city" | "cityTown" | "clearingCode" | "clearingNumber" | "codNumericPersonal" | "codiceFiscale" | "codiceFiscalePartitaIVA" | "codulDeIdentificareFiscala" | "commercialLicence" | "company" | "companyDetails" | "companyFinancialInformationFormDescription" | "companyFinancialInformationFormHeading" | "companyLegalName" | "companyName" | "companyNumber" | "companyNumberNZ" | "companyProfile" | "companyRegistrationDocument" | "companyRegistrationDocumentFormDescription" | "companyRegistrationDocumentFormHeading" | "companyRegistrationDocumentFormName" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "companyStructure" | "companyStructureFormDescription" | "companyStructureFormName" | "companyTaxDocumentFormDescription" | "companyTaxDocumentFormHeading" | "companyTaxDocumentFormName" | "companyTrustee" | "companyTrusteeDetails" | "companyType" | "complete" | "completeAddingAccount" | "confirm" | "connectWith" | "constitutionalDocument" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "constitutionalDocument__trust__headerDescription" | "constitutionalDocument__soleProprietorship__headerDescription" | "contactDetails" | "containsNameOfCompany" | "continue" | "continueCompany" | "continueIndividual" | "contributionBelowThreshold" | "controllingPerson" | "controllingPersonDescription" | "controllingPersonGuideDescription" | "corporateUnitTrust" | "correctErrorsResubmit" | "couldNotCompleteAccountCheck" | "couldNotEstablishBankConnection" | "country" | "countryOfGoverningLaw" | "countryRegionOfEstablishment" | "countryWithoutVatOrGstSystem" | "country__US__business" | "currency" | "currencyCode" | "currencyPlaceholder" | "customerSupport" | "cyRegistrationNumber" | "dateCannotBeInTheFuture" | "dateOfIncorporation" | "dateOfTotalAssetsCalculation" | "dateOnDocumentNoOlderThanXMonths" | "datePlaceholder" | "dbaName" | "deceased" | "deceasedEstate" | "decisionMaker" | "decisionMakerDescription" | "decisionMakers" | "defaultCufeCodesInItalyAreEither" | "definedBeneficiary" | "definedBeneficiaryDescription" | "delete" | "depositSlip" | "describeWhoIsABeneficiaryInYourTrust" | "description" | "descriptionOptional" | "descriptionUndefinedBeneficiary" | "detCentralePersonregister" | "differentCountryOfGoverningLaw" | "director" | "directorDescription" | "directorGuideDescription" | "discretionaryInvestmentTrust" | "discretionaryServicesManagementTrust" | "discretionaryTradingTrust" | "discretionaryTrust" | "dni" | "doNotHaveAbn" | "doNotHaveAcn" | "doNotHaveBusinessIncorporationNumber" | "doNotHaveBusinessNumber" | "doNotHaveChRegistrationNumber" | "doNotHaveEIN" | "doNotHaveFirmenbuchnummer" | "doNotHaveHandelsregisternummer" | "doNotHaveLtRegistrationNumber" | "doNotHaveLuRegistrationNumber" | "doNotHaveNZBN" | "doNotHaveOrganisationsnummer" | "doNotHaveRegonKrsNumber" | "doNotHaveYTunnus" | "documentAddressedToName" | "documentCannotBeDamaged" | "documentIssuedByGovernmentAuthority" | "documentName" | "documentNotExpiredOrDamaged" | "documentRequirements" | "documentShowsTaxIdOfCompany" | "documentType" | "documentUpload" | "documentVerification" | "documents" | "doesThisCompanyHaveLEI" | "doesYourCompanyHaveLEI" | "doingBusinessAs" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "download" | "downloadACopy" | "downloadAsPdf" | "driversLicense" | "drivinglicenseBack" | "drivinglicenseFront" | "dropFileToUpload" | "duplicatedFiles" | "eInvoicingCode" | "edit" | "editDetails" | "editEntityDetails" | "editEntityOwner" | "editOwnerOfTrustMember" | "editTrustMember" | "ein" | "einVerificationLetter" | "email" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterEnglishLetterFollowedByXtoYDigitsForExample" | "enterLastNDigitsForExample" | "enterLastNameExactlyAsAppearInID" | "enterNCharactersForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enterNDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterNameExactlyAsAppearInID" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "enterTheDetailsYourself" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingXToYDigitsForExample" | "enterValidAccountDetails" | "enterValid_" | "enterXOrYCharactersForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterXToYDigitsForExample" | "enterpriseNumber" | "entityEstablishingTrust" | "entityType" | "errorMessage_1_10" | "errorMessage_1_1000" | "errorMessage_1_1001" | "errorMessage_1_1002" | "errorMessage_1_1003" | "errorMessage_1_11" | "errorMessage_1_12" | "errorMessage_1_30" | "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_3052" | "errorMessage_1_3062" | "errorMessage_1_3072" | "errorMessage_1_3073" | "errorMessage_1_3083" | "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_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_5067" | "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_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_61" | "errorMessage_1_62" | "errorMessage_1_70" | "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_1_71" | "errorMessage_1_72" | "errorMessage_1_73" | "errorMessage_1_74" | "errorMessage_1_75" | "errorMessage_1_76" | "errorMessage_1_8009" | "errorMessage_1_8010" | "errorMessage_1_8011" | "errorMessage_1_8012" | "errorMessage_1_8013" | "errorMessage_1_8014" | "errorMessage_1_8015" | "errorMessage_1_803" | "errorMessage_1_804" | "errorMessage_1_84" | "errorMessage_1_85" | "errorMessage_1_86" | "errorMessage_1_87" | "errorMessage_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8141" | "errorMessage_2_8162" | "errorMessage_2_8183" | "errorMessage_2_8189" | "errorMessage_2_8193" | "errorMessage_2_8196" | "errorMessage_2_8234" | "errorMessage_2_8236" | "errorMessage_3_10" | "euVatNumber" | "exemptedFromTax" | "extractFromMunicipalPersonalRecordsDatabase" | "failedFetchingDecisionMaker" | "failedFetchingLegalRepresentative" | "failedInitializeInstantVerification" | "failedToDeletePayoutAccount" | "failedToDownloadAcceptedServiceAgreementDocument" | "failedToDownloadPci" | "failedToDownloadServiceAgreementDocument" | "failedToFetchAcceptedByName" | "failedToFetchPayoutAccount" | "failedToFetchRelevantDocuments" | "failedToFetchSoleProp" | "failedToFetchTrustDetails" | "failedToFetchTrustMemberDetails" | "failedToGetPciStatus" | "failedToGetPciTemplate" | "failedToGetPciTemplateInSelectedLanguageFallbackToEn" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "failedToGetServiceAgreementStatus" | "failedToRemoveDecisionMaker" | "failedToRemoveTrustMember" | "failedToUpdateDetails" | "familyTrust" | "fieldHasUnsupportedFormats" | "fieldIsRequired" | "fieldMustContainAtLeast" | "fileName" | "financialInformation" | "financialReportingDate" | "findYourIncorporatedAssociationNumberInThePublicRegistryForYourState" | "finish" | "firmenbuchnummer" | "firstHomeSaverAccountsTrust" | "firstName" | "firstNameOfSettlor" | "fixedTrust" | "fixedUnitTrust" | "forExample_" | "formatIsCorrect" | "franchiseesTAndCs" | "frontPage" | "fullDocumentVisible" | "fullDocumentVisibleWithReadableText" | "getSetUpInstantly" | "getYourBusinessVerifiedDetails" | "getYourVerifiedDetailsInstantly" | "goBack" | "goBackAndProvideDocumentScans" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "good" | "governmentIssuedCorrespondence" | "governmentalOrganizationDescription" | "governmentalOrganizationTitle" | "grTaxId" | "gst" | "guardianshipCertificate" | "handelsregisternummer" | "hasBankStampOrBankSignature" | "hasDba" | "hasDba__helperText" | "hasToBeOfficialDocumentFromBank" | "helpUsVerifyCompany" | "hideDetails" | "hkid" | "howDoesVerificationWithOurPartnerWorks" | "howVerificationWithOnfidoWork" | "howWouldYouLikeToSetUpYourAccount" | "howYourCustomersCanReachYou" | "huRegistrationNumber" | "huTaxId" | "hybridTrust" | "iDoNotHaveCompanyRegistrationNumber" | "iDoNotHaveGst" | "iDontHaveARegistrationNumber" | "iDontHaveATaxId" | "iDontHaveAVatNumber" | "iDontKnow" | "iHaveReadAndIAcceptTheseTerms" | "iStillCantFindIt" | "ibanFormat" | "idDocument" | "idDocumentAlreadyUploaded" | "idNumber" | "idUploadDocumentSubtitle" | "identifikacionenNomerDDS" | "identityCard" | "identityCardBack" | "identityCardFront" | "identityNumberExempt" | "identityNumberExempt__CA" | "identityNumberExempt__US" | "ifNoOwnersSpecifyControllingPersons" | "imagesInColor" | "inReview" | "inThePreviousStepOwnedByAParentCompany" | "inThePreviousStepOwnedByAnUltimateParentCompany" | "includeFrontAndBack" | "includesEIN" | "includesEvidenceOfTheIndividualsRole" | "includesLegalCompanyName" | "includesTheDirectorsFullName" | "incorporatedAssociationRegistrationNumber" | "individual" | "individualDetails" | "individualTrustee" | "individualTrusteeDetails" | "industryAndNaceCode" | "industryExemption" | "infoInUploadedDocumentIsTrue" | "informationCouldNotBeSubmitted" | "instant" | "instantIDVerificationDescription" | "instantVerification" | "instantVerificationDescription" | "instantlyConnectAndVerifyYourBankAccount" | "institutionNumber" | "internalCompanyDocument" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenAccountTitle" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenPrologueTitle" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustTitle" | "invalidDateOfBirth" | "invalidDateOfIncorporation" | "invalidEmail" | "invalidFinancialReportingDate" | "invalidFormat" | "invalidFormatBankStatementDescription" | "invalidFormatExpects" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForAuPassportNumber" | "invalidFormatForHKDriversLicenseNumber" | "invalidFormatForHKIdentityCardNumber" | "invalidFormatForHKPassportNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatIdentityNumberBR" | "invalidFormatIdentityNumberCA" | "invalidFormatIdentityNumberDK" | "invalidFormatIdentityNumberES" | "invalidFormatIdentityNumberHK" | "invalidFormatIdentityNumberIT" | "invalidFormatIdentityNumberPL" | "invalidFormatIdentityNumberRO" | "invalidFormatIdentityNumberSE" | "invalidFormatIdentityNumberSG" | "invalidFormatIdentityNumberUS" | "invalidFormatIdentityNumberUS9" | "invalidNumberOfEmployees" | "invalidPhoneNumber" | "irdDocument" | "irdNumber" | "irsCP575" | "irsScheduleK1" | "isCompanyOwnedByAnotherCompany" | "isOurTrustedPartnerHelpingSpeedUpSetup" | "isParentOwnedByAnotherCompany" | "isThisAddressTheMainHeadquarters" | "isThisPersonANomineeDirector" | "isThisPersonANomineeShareholder" | "isTrustOperationAddressSame" | "isYourNameMissingFromSigners" | "issuedByTheTaxAuthority" | "issuedInTheLastXMonths" | "issuedOrSignedByALegalRepresentative" | "issuerState" | "jobTitle" | "kaibemaksukohustuslaseNumber" | "krsNumber" | "last4DigitsOfSocialSecurityNumber" | "lastName" | "lastNameOfSettlor" | "learnMore" | "leave" | "legalCompanyName" | "legalCompanyName__US" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__HK" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__PR" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__US__business" | "legalEntityIdentifier" | "legalForm" | "legalInformation" | "legalInformationInsolvency" | "legalName" | "legalNameIsUsedToIdentifyABusinessWithTheGovernment" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "legalOwnerOfProperty" | "legalProceedingsDate" | "legalRepresentative" | "legalRepresentativeDetails" | "legalRepresentativeFor" | "letUsKnowTheBankAccountToSendReceiveFunds" | "liRegistrationNumber" | "licenceVersionNumber" | "licenseCardNumber" | "licenseNumber" | "listedPublicUnitTrust" | "listitemVoidedChequeBankLetterBankStatementOnline" | "loading" | "loanApplication" | "localFormat" | "loginIntoYourBankingEnvironment" | "lookUpYourLEI" | "ltRegistrationNumber" | "luRegistrationNumber" | "lvRegistrationNumber" | "lvTaxId" | "madeAMistake" | "maintenanceModeMessage" | "makeSureToHaveYourTrustDeed" | "manualIDVerificationDescription" | "manualUpload" | "manualVerificationDescription" | "maxFileSize" | "maximumFileSizeExceeded" | "mayTakeAFewDays" | "mcRegistrationNumber" | "mcRegistrationNumberSoleProp" | "meetingRecords" | "memberDetails" | "missingCompanyDetails" | "missingMultipleDecisionMakers" | "missingPhoneCountryCode" | "momsregistreringsnummer" | "momsregistreringsnummerCVR" | "mortgageStatement" | "mvanummer" | "myInfoBusinessYouCanGetVerifiedDetails" | "myInfoYouCanGetVerifiedDetails" | "myinfoBusinessDetailsRetrieved" | "myinfoDetailsRetrieved" | "nameMustContainLetters" | "nameOfTrust" | "nameOfTrustAgreement" | "nationalInsuranceNumber" | "nationality" | "naturalPersonDescription" | "naturalPersonTitle" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "next" | "nie" | "no" | "noGlare" | "noGoBack" | "noIdontKnow" | "noOptionsFound" | "nominee" | "nonProfitOrCharitableOrgDescription" | "nonProfitOrCharitableOrgTitle" | "noneOfTheAbove" | "notBlurry" | "notCutOff" | "notExpired" | "nothingNeedsToBeSigned" | "nric" | "numarOrdineRegistrulComertului" | "numberOfEmployees" | "numeroDIdentificationALATaxe" | "numerodeIVA" | "objectOfCharitableTrust" | "objectOfTrust" | "oib" | "onboardingRedirectAwaitingCtaButton" | "onboardingRedirectAwaitingDescriptionP1" | "onboardingRedirectInReviewCtaButton" | "onboardingRedirectInReviewDescriptionP1" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError" | "onboardingRedirectRejectedDescriptionP1" | "onboardingRedirectUnsuccessfulCtaButton" | "onboardingRedirectUnsuccessfulDescriptionP1" | "onboardingRedirectVerifiedDescriptionP1" | "onfidoIsOurTrustedPartner" | "onfidoWillGiveFeedbackInRealTime" | "operationalAddress" | "operationalAddressHeader" | "operationalAddressIsNotSameItemName" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "optional" | "orSoleProprietorshipName" | "organisasjonsnummer" | "organisationsnummer" | "otherAddressInformation" | "otherBusinessInformation" | "otherInformation" | "otherLegalMeasures" | "otherTrust" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "owner" | "ownerDescription" | "ownerGuideDescription" | "ownershipStructure" | "parentCompany" | "parentCompanyInformation" | "partitaIVA" | "partnerShipAgreement" | "partnership" | "partnershipIncorporatedDescription" | "partnershipOrAssociation" | "partnershipUnincorporatedDescription" | "passport" | "passportExpiryDate" | "passportNumber" | "passportPhotoPage" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "patriotActDisclosureTitle" | "payinAccount" | "payinAccountsDescription" | "payinDetails" | "paymentProcessingTerms" | "payoutAccount" | "payoutAccountsDescription" | "payoutAccountsDescriptionReview" | "payoutDetails" | "payoutInOnly_" | "payoutIn_Or_" | "pccr" | "pciDoesNotNeedSigningOrHasBeenSigned" | "pciDssQuestionnaire" | "pciSignFailed" | "pciSignedSuccessfully" | "personAppointmentUnderTrustInstrument" | "personalDetails" | "personnummer" | "peselNumber" | "phoneNumber" | "phoneNumber__placeholder__AL" | "phoneNumber__placeholder__AS" | "phoneNumber__placeholder__NL" | "phoneNumber__placeholder__SG" | "phoneNumber__placeholder__US" | "pleaseEnsureTheFollowing" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "pleaseEnterAValidNumber" | "pleaseEnterAValidWholeNumber" | "pleaseNote" | "pleaseProvideThePurposeOfCharitableTrust" | "pooledSuperannuationTrust" | "postalCode" | "poweredBy" | "previous" | "principalPlaceOfBusiness" | "principalPlaceOfBusinessDescription" | "privateCompanyDescription" | "privateCompanyTitle" | "processing" | "professionalServiceProvider" | "proofOfDirector" | "proofOfNationalId" | "proofOfRelationship" | "proofOfResidenceDocumentTypeLabel" | "proofOfResidency" | "protector" | "protectorGuideDescription" | "provideAllBeneficiaries" | "provideAllDirectors" | "provideAllOwners" | "provideAllTrustees" | "provideAtLeastOneProtector" | "provideAtLeastOneSettlor" | "provideAtLeastOneSignatory" | "provideFewDetailsAboutYourself" | "provideOneControllingPerson" | "providePageWithPhotoAndCode" | "providePersonalAddress" | "providePersonalDetailsOfOwner" | "provinceOrTerritory" | "publicCompanyDescription" | "publicCompanyTitle" | "publicTradingTrust" | "ranIntoTechnicalError" | "reasonForFillingCompanyAddressDetails" | "reasonForFillingCompanyRegistrationDetails" | "reasonForFillingIndividualAddressDetails" | "reasonForFillingIndividualPersonalDetails" | "reasonForFillingPayoutDetails" | "region" | "registeredAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "registeredAddressHeaderDescription__PR" | "registeredAddressHeaderDescription__US" | "registeredAddressTrustHeaderDescription" | "registeredBusinessAddress" | "registeredBusinessAddressDescription" | "registeredBusinessAddressDescription__withCountry" | "registeredBusinessAddressDescription__withCountry__commonNoun" | "registrationAddress" | "registrationDetails" | "registrationDocument" | "registrationNumber" | "registrationNumber__US" | "registrationNumber__helperText__US" | "registrationNumber__nonProfit__FR" | "registrikood" | "regon" | "regonKrsNumber" | "rejected" | "relationshipTo" | "remediationFormErrorMessage" | "remediationMessage_1_100" | "remediationMessage_1_101" | "remediationMessage_1_102" | "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_319" | "remediationMessage_1_320" | "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_512" | "remediationMessage_1_513" | "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_1_803" | "remediationMessage_1_804" | "remediationMessage_1_805" | "remediationMessage_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_158" | "remediationMessage_2_178" | "remediationMessage_2_185" | "remediationMessage_2_188" | "remediationMessage_2_222" | "remediationMessage_2_223" | "remediationMessage_3_100" | "remove" | "removeDecisionMaker" | "removeTrustMember" | "removing" | "reportedValue" | "reportingCurrency" | "requirements" | "requiresDecisionMakers" | "requiresSignatory" | "residencePermitBack" | "residencePermitFront" | "residencyCountry" | "retrieveMyInfo" | "retrieveMyInfoBusiness" | "retrieveMyinfoBusinessWith" | "retrieveMyinfoWith" | "reviewTheInformationBelowAndCorrectMistakesOr" | "rnaNumber" | "role" | "roleAndEntityType" | "routingNumber" | "routingNumberVisible" | "salarySlip" | "sameAsRegisteredAddress" | "sameNameAsLegalName" | "saveAndGoToOverview" | "screenshotOfOnlineBankingEnviroment" | "searchAddress" | "secForm10k" | "secretaryOfStateFiling" | "secretaryOfStateFiling__PR" | "secretaryOfStateRegDoc" | "secretaryOfStateRegDoc__PR" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectCountryRegion" | "selectDocument" | "selectDocumentType" | "selectOne" | "selectProvinceOrTerritory" | "selectSigner" | "selectState" | "selectTheApplicableRoles" | "selectTheBankToReceivePayouts" | "serviceAgreementSignFailed" | "serviceAgreementSignedAndDated" | "serviceAgreementSignedSuccessfully" | "serviceAgreements" | "sessionTimeout" | "setUpYourAccount" | "settlor" | "settlorExemptionReason" | "settlorGuideDescription" | "shareholderDocument" | "showAddressStateCountry" | "showDetails" | "showOnMap" | "showsCountryOfBankAccount" | "siRegistrationNumber" | "siTaxId" | "sign" | "signAndContinue" | "signServiceAgreement" | "signatory" | "signatoryDescription" | "signatoryGuideDescription" | "signed" | "signedByOn" | "signer" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "siret" | "skRegistrationNumber" | "skTaxId" | "socialInsuranceNumber" | "socialSecurityNumber" | "socialSecurityNumber__placeholder" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorship" | "soleProprietorshipDetails" | "someFieldsHaveUnsupportedFormatedUpdateInfoAndResubmit" | "someInformationWillNotBeSaved" | "sorryAnErrorOccurred" | "sorryWeCantSetUpAnAccountForYou" | "sortCode" | "ssn" | "stamregister" | "startANewSessionFromTheSamePlaceYouOriginallyAccessed" | "startTypingTheAddress" | "state" | "stateIssuedProofOfIdentityCard" | "stateOrProvince" | "stateOrProvince__US__business" | "stateOrProvince__placeHolder" | "stateOrProvince__placeHolder__US" | "status" | "stepsX/YofForm" | "stockExchangeInformation" | "stockExchangeMIC" | "stockISIN" | "stockISINHelper" | "stockTickerSymbol" | "street" | "submitFailed" | "submitIdDocumentsAgain" | "submitReview" | "submitReviewOfYourData" | "submitSuccessful" | "successFullyRemovedDecisionMaker" | "successFullyRemovedTrustMember" | "successfullyUpdatedDetails" | "summaryLegalCaption" | "summaryTaxExemptionLegalCaptionTitle" | "summaryTaxExemptionLegalCaption_1" | "summaryTaxExemptionLegalCaption_2" | "summaryTaxExemptionLegalCaption_3" | "supportedFileTypes" | "swiftCode" | "taxDocument" | "taxFiling" | "taxFiling__US" | "taxId" | "taxIdAbsenceReason" | "taxIdNumber" | "taxIdentificationNumber" | "taxInformationNumber" | "taxInformationNumber__HK" | "taxInformationNumber__US" | "taxInformationNumber__helperText__US" | "taxInformationNumber__placeHolder__US" | "taxReferenceNumber" | "taxRegistrationNumber" | "taxationDocument" | "taxpayerReferenceNumber" | "textToVerifyAccount" | "theBankAccountHolderMustBeInYourName_" | "theBankAccountHolderMustHaveTheSameNameAsYourCompany_" | "theIdCheckWillBeAutomaticallyValidated" | "thenResubmit" | "thereAreNoSigners" | "thereWasAnErrorTryAgain" | "thisIsMyBusiness" | "thisMeansYouHaveAParentCompany" | "thisMeansYouHaveAnUltimateParentCompany" | "thisPageIsNowInactive" | "thisSessionWillExpireIn" | "toCompleteProcessReviewAndSignOfficialDocumentation" | "toProtectYourInformationThisSessionHasExpired" | "toggleAssociationMenu" | "tooManyFiles" | "totalAssets" | "totalAssetsHelper" | "tradingName" | "transferInstrumentDeleted" | "transitNumber" | "trust" | "trustDeed" | "trustDetails" | "trustDetailsDescription" | "trustInstrument" | "trustMembers" | "trustMembersDescription" | "trustPartnershipOrAssociation" | "trustType" | "trustee" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trusteeGuideDescription" | "trusteePersonalDetails" | "tryAgainOrContinueEnteringTheDetailsYourself" | "tryAgainOrManualAccountDetails" | "typeOfCompany" | "typeOfIdentity" | "typeOfIdentitySubtitle" | "typeOfTrustAgreement" | "uboThroughControlGuideDescription" | "uboThroughOwnershipGuideDescription" | "uen" | "ultimateParentCompany" | "ultimateParentCompanyInformation" | "unableToVerifyTheIdNumber" | "undefinedBeneficiary" | "undefinedBeneficiaryDescription" | "underJudicialAdministration" | "undoWithTimer" | "uniqueIdentificationCode" | "unknown" | "unlistedPublicUnitTrust" | "unsuccessful" | "unsupportedFiletype" | "upToFiles" | "updateTheInformation" | "uploadABankStatement" | "uploadDocumentForNric" | "uploadOneOfTheseDocuments" | "uploadTheFollowingDocuments" | "uploadYourOrganizationProofOfDirector" | "usePhoneToScanId" | "utilityBill" | "validation8Or11Characters" | "validationCharacters" | "validationDigits" | "validationDigitsBetween" | "validationPleaseEnterAValidBusinessRegistrationNumberWithFormat" | "validationPleaseEnterAValidEINWithFormat" | "validationPleaseEnterAValidIRDNumber" | "validationPleaseEnterAValidIban" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidStockISIN" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidVatNumberWithFormat" | "vatAbsenceReason" | "vatNumber" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "vatRegistrationNumber" | "verificationErrorMessage" | "verificationMethod" | "verified" | "verifiedInformation" | "verify" | "verifyIndividualIdentity" | "verifyViaMobileBankingAppOrWebsite" | "verifyWith" | "weAccept" | "weCouldntCompleteTheAccountCheck" | "weCouldntConnectToMyinfo" | "weCouldntConnectToMyinfoBusiness" | "weDoNotYetSupportInstantVerificationForBankAccountsIn_" | "weFoundTheFollowingIssues" | "weNeedAnOfficialDocument" | "weSelectedSomeRolesBasedOnMyinfoBusinessDataAboutYourCompanysAppointmentHoldersAndShareholders" | "whatBestDescribesYourBusinessSetup" | "whatIsTheDifferenceBetweenTheseRoles" | "whatTypeOfCompanyDoYouHave" | "whatTypeOfTrusteeAreYou" | "whatTypeOfYourMembersEntity" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "whichLegalArrangementDoesYourBusinessHave" | "whichOfTheseApplyToTheSettlor" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "whyDoINeedToFillInThisInformation" | "wouldYouLikeToSignUpAsCompanyInstead" | "wouldYouLikeToSignUpAsIndividualInstead" | "xCharactersLeft" | "xMinutes" | "xMinutesAndYSeconds" | "xSeconds" | "yes" | "yesChange" | "youAlsoHaveToUploadSomeSupportingDocuments" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfPartnershipOrAssociation" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "youAreNotSoleProprietorAndUseBankAccount" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "youCanOnlyUseABankAccountInTheCountryRegionWhereYouLive" | "youCanOnlyUseABankAccountInTheCountryRegionWhereYourCompanyIsRegistered" | "youHaveSuccessfullyProvidedTheIdDocument" | "youMustXYearsOldToContinue" | "youSuccessfullyVerifiedAccount" | "yourAssociationIsRegisteredItWasSetUpForNonCommercialPurpose" | "yourBankWillConfirmYourAccountDetails" | "yourBusiness" | "yourBusinessInformation" | "yourBusinessIsRegisteredAsASeparateLegalEntityFromItsOwners" | "yourBusinessSetup" | "yourBusinesssDetailsArePreFilledInTheRelevantSections" | "yourDetailsArePreFilledInTheRelevantSections" | "yourIbanShouldBeginWith_" | "yourLoanApplicationHasBeenReceived" | "zentralesVereinsregisterId" | "zipCode";
|
|
9
|
+
export declare const getKeyForField: (fieldName: string, country?: CountryCode) => "number" | "iban" | "search" | "aTrust" | "partnershipIncorporated" | "partnershipUnincorporated" | "associationIncorporated" | "myName" | "mySoleProprietorName" | "theCompanyIWorkFor" | "address" | "code" | "progress" | "select" | "summary" | "cancel" | "close" | "submit" | "id" | "CNPJ" | "CVR-nummer" | "MBO" | "RFC" | "guardian" | "parent" | "1Minute" | "1Second" | "CCIAA" | "DIC" | "GEMI-number" | "ICO" | "MBS" | "Mehrwertsteuernummer" | "NIF" | "NIFdeIVA" | "NIP" | "NIPC" | "NZBN" | "NZBN/NCN" | "NumeroDeTVA" | "PDVIdBrojOIB" | "PVMmoketojoKodas" | "RfcDocument" | "SINFormatCA" | "SSM" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SST" | "UST-ID" | "USt-IdNr" | "XOfYSteps" | "YTunnus" | "aLegalRepresentativeIsRequired" | "aLetterFromYourBank" | "aNomineeDirectorIsAppointed" | "aNomineeShareholderHoldsShares" | "accept" | "acceptedDocumentsForGovernment" | "acceptedDocumentsForNonProfit" | "acceptedDocumentsForPartnerships" | "acceptedDocumentsForPrivateCompanies" | "acceptedDocumentsForPublicCompanies" | "accountCantBeSetUp" | "accountDetailsDescription" | "accountHolder" | "accountHolderTerms" | "accountName" | "accountNumber" | "accountNumberOrIbanVisible" | "accountNumberVisible" | "accountVerification" | "acknowledgePciRequirements" | "actionNeeded" | "add" | "addABankAccountForPayouts" | "addAccountManually" | "addBankAccount" | "addBankDetails" | "addDecisionMaker" | "addEntityOwner" | "addExtraBankAccount" | "addExtraPayinAccount" | "addExtraPayoutAccount" | "addManually" | "addMissingBankDetails" | "addOwnerToTrustMember" | "addPayoutAccount" | "addTrustMember" | "addYourselfAsSigner" | "additionalInformation" | "additionalInformationFormHeading" | "additionalInformationFormName" | "addressRegisteredWithSecretaryOfState" | "address__placeHolder" | "addresses" | "adoptionCertificate" | "adyenKeepsDataAsLongAsLegallyRequired" | "adyenWillOnlyGetTemporaryAccess" | "anAssociation" | "anLEIIsAUniqueCode" | "andResubmit" | "annualReport" | "annualTurnover" | "annualTurnoverCurrency" | "annualTurnoverHelper" | "annualTurnoverValue" | "apartmentSuite" | "apartmentSuiteOther" | "applicationSubmittedSuccessfully" | "areYouACompany" | "areYouAnIndividual" | "areYouSureYouWantToDeleteThisBankAccount" | "arithmosEngraphes" | "articlesOfIncorporation" | "arvonlisaveronumeroMervardesskattenummer" | "association" | "associationIncorporatedDescription" | "australianBusinessNumberAbn" | "australianBusinessNumberAcn" | "back" | "backPage" | "backToTaskList" | "bankAccount" | "bankAccountCountryRegion" | "bankAccountDetails" | "bankAccountFormat" | "bankAccountHasToBeInYourCompanyName" | "bankAccountHasToBeInYourName" | "bankAccountNameIndividual" | "bankAccountNameOrganization" | "bankAccountNameWithSoleProprietor" | "bankAccountNameWithTrust" | "bankAccountNameWithTrust_US" | "bankAccountNumber" | "bankAccountToHaveSameNameAsTrust" | "bankAccountVerification" | "bankCityTown" | "bankCode" | "bankCountry" | "bankDetails" | "bankDocument" | "bankDocumentDescription" | "bankDocumentFileDescription" | "bankDocumentHeader" | "bankDocumentHeaderOptional" | "bankName" | "bankStatement" | "bankStatementAlreadyUploaded" | "bankStatementDocument" | "bankStatementIndividualDescription" | "bankStatementNonIndividualDescription" | "bankruptcyInsolvency" | "basedOnTheAboveSignatory" | "basicCompanyInformation" | "basicInformation" | "basicInformationFormDescription" | "basicInformationFormDescriptionLink" | "basicInformationFormHeading" | "basicInformationFormName" | "becauseYoureUnderXWeNeedToCollectInformationAboutALegalRepresentative" | "beforeSubmittingYourCapitalLoanApplication" | "belowTaxThreshold" | "beneficiary" | "beneficiaryGuideDescription" | "bic" | "bicSwift" | "birthCertificate" | "birthDate" | "branchCode" | "branchNumber" | "browseFiles" | "bsbCode" | "bsbNumber" | "btwNummer" | "businessAccountDetailsDescription" | "businessAccountDetailsDescriptionReview" | "businessAccountTerms" | "businessDetails" | "businessEntityDescription" | "businessEntityTitle" | "businessIncorporationNumber" | "businessInformation" | "businessName" | "businessNumber" | "businessRegistrationDocument__FR" | "businessRegistryStatement" | "businessSelection__failedToLoad" | "businessSelection__footer" | "businessSelection__footerButton" | "businessSelection__heading" | "businessSelection__invalidTin" | "businessSelection__tinVerificationFailure" | "businessStructure" | "businessTrust" | "businessTrusteeDetails" | "byClickingSignIAcknowledgeAndAgree" | "byClickingSubmitReview" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "cadastroDePessoasFisicas" | "canNotCompleteInstantVerification" | "cantSetUpAcccount" | "capitalUserTerms" | "cardUserTerms" | "cashManagementTrust" | "certificateOfFormation" | "certificateOfIncorporation" | "certificateOfIncumbency" | "certificateOfVoterRegistration" | "chRegistrationNumber" | "chamberOfCommerceExtract" | "chamberOfCommerceRegistrationNumber" | "changeYourBusinessSetup" | "chargeCardUserAgreement" | "charitableTrust" | "charityNumber" | "charter" | "check" | "checkForTypos" | "city" | "cityTown" | "clearingCode" | "clearingNumber" | "codNumericPersonal" | "codiceFiscale" | "codiceFiscalePartitaIVA" | "codulDeIdentificareFiscala" | "commercialLicence" | "company" | "companyDetails" | "companyFinancialInformationFormDescription" | "companyFinancialInformationFormHeading" | "companyLegalName" | "companyName" | "companyNumber" | "companyNumberNZ" | "companyProfile" | "companyRegistrationDocument" | "companyRegistrationDocumentFormDescription" | "companyRegistrationDocumentFormHeading" | "companyRegistrationDocumentFormName" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "companyStructure" | "companyStructureFormDescription" | "companyStructureFormName" | "companyTaxDocumentFormDescription" | "companyTaxDocumentFormHeading" | "companyTaxDocumentFormName" | "companyTrustee" | "companyTrusteeDetails" | "companyType" | "complete" | "completeAddingAccount" | "confirm" | "connectWith" | "constitutionalDocument" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "constitutionalDocument__trust__headerDescription" | "constitutionalDocument__soleProprietorship__headerDescription" | "contactDetails" | "containsNameOfCompany" | "continue" | "continueCompany" | "continueIndividual" | "contributionBelowThreshold" | "controllingPerson" | "controllingPersonDescription" | "controllingPersonGuideDescription" | "corporateUnitTrust" | "correctErrorsResubmit" | "couldNotCompleteAccountCheck" | "couldNotEstablishBankConnection" | "country" | "countryOfGoverningLaw" | "countryRegionOfEstablishment" | "countryWithoutVatOrGstSystem" | "country__US__business" | "currency" | "currencyCode" | "currencyPlaceholder" | "customerSupport" | "cyRegistrationNumber" | "dateCannotBeInTheFuture" | "dateOfIncorporation" | "dateOfTotalAssetsCalculation" | "dateOnDocumentNoOlderThanXMonths" | "datePlaceholder" | "dbaName" | "deceased" | "deceasedEstate" | "decisionMaker" | "decisionMakerDescription" | "decisionMakers" | "defaultCufeCodesInItalyAreEither" | "definedBeneficiary" | "definedBeneficiaryDescription" | "delete" | "depositSlip" | "describeWhoIsABeneficiaryInYourTrust" | "description" | "descriptionOptional" | "descriptionUndefinedBeneficiary" | "detCentralePersonregister" | "differentCountryOfGoverningLaw" | "director" | "directorDescription" | "directorGuideDescription" | "discretionaryInvestmentTrust" | "discretionaryServicesManagementTrust" | "discretionaryTradingTrust" | "discretionaryTrust" | "dni" | "doNotHaveAbn" | "doNotHaveAcn" | "doNotHaveBusinessIncorporationNumber" | "doNotHaveBusinessNumber" | "doNotHaveChRegistrationNumber" | "doNotHaveEIN" | "doNotHaveFirmenbuchnummer" | "doNotHaveHandelsregisternummer" | "doNotHaveLtRegistrationNumber" | "doNotHaveLuRegistrationNumber" | "doNotHaveNZBN" | "doNotHaveOrganisationsnummer" | "doNotHaveRegonKrsNumber" | "doNotHaveYTunnus" | "documentAddressedToName" | "documentCannotBeDamaged" | "documentIssuedByGovernmentAuthority" | "documentName" | "documentNotExpiredOrDamaged" | "documentRequirements" | "documentShowsTaxIdOfCompany" | "documentType" | "documentUpload" | "documentVerification" | "documents" | "doesThisCompanyHaveLEI" | "doesYourCompanyHaveLEI" | "doingBusinessAs" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "download" | "downloadACopy" | "downloadAsPdf" | "driversLicense" | "drivinglicenseBack" | "drivinglicenseFront" | "dropFileToUpload" | "duplicatedFiles" | "eInvoicingCode" | "edit" | "editDetails" | "editEntityDetails" | "editEntityOwner" | "editOwnerOfTrustMember" | "editTrustMember" | "ein" | "einVerificationLetter" | "email" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterEnglishLetterFollowedByXtoYDigitsForExample" | "enterLastNDigitsForExample" | "enterLastNameExactlyAsAppearInID" | "enterNCharactersForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enterNDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterNameExactlyAsAppearInID" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "enterTheDetailsYourself" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingXToYDigitsForExample" | "enterValidAccountDetails" | "enterValid_" | "enterXOrYCharactersForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterXToYDigitsForExample" | "enterpriseNumber" | "entityEstablishingTrust" | "entityType" | "errorMessage_1_10" | "errorMessage_1_1000" | "errorMessage_1_1001" | "errorMessage_1_1002" | "errorMessage_1_1003" | "errorMessage_1_11" | "errorMessage_1_12" | "errorMessage_1_30" | "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_3052" | "errorMessage_1_3062" | "errorMessage_1_3072" | "errorMessage_1_3073" | "errorMessage_1_3083" | "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_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_5067" | "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_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_61" | "errorMessage_1_62" | "errorMessage_1_70" | "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_1_71" | "errorMessage_1_72" | "errorMessage_1_73" | "errorMessage_1_74" | "errorMessage_1_75" | "errorMessage_1_76" | "errorMessage_1_8009" | "errorMessage_1_8010" | "errorMessage_1_8011" | "errorMessage_1_8012" | "errorMessage_1_8013" | "errorMessage_1_8014" | "errorMessage_1_8015" | "errorMessage_1_803" | "errorMessage_1_804" | "errorMessage_1_84" | "errorMessage_1_85" | "errorMessage_1_86" | "errorMessage_1_87" | "errorMessage_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8141" | "errorMessage_2_8162" | "errorMessage_2_8183" | "errorMessage_2_8189" | "errorMessage_2_8193" | "errorMessage_2_8196" | "errorMessage_2_8234" | "errorMessage_2_8236" | "errorMessage_3_10" | "euVatNumber" | "exemptedFromTax" | "extractFromMunicipalPersonalRecordsDatabase" | "failedFetchingDecisionMaker" | "failedFetchingLegalRepresentative" | "failedInitializeInstantVerification" | "failedToDeletePayoutAccount" | "failedToDownloadAcceptedServiceAgreementDocument" | "failedToDownloadPci" | "failedToDownloadServiceAgreementDocument" | "failedToFetchAcceptedByName" | "failedToFetchPayoutAccount" | "failedToFetchRelevantDocuments" | "failedToFetchSoleProp" | "failedToFetchTrustDetails" | "failedToFetchTrustMemberDetails" | "failedToGetPciStatus" | "failedToGetPciTemplate" | "failedToGetPciTemplateInSelectedLanguageFallbackToEn" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "failedToGetServiceAgreementStatus" | "failedToRemoveDecisionMaker" | "failedToRemoveTrustMember" | "failedToUpdateDetails" | "familyTrust" | "fieldHasUnsupportedFormats" | "fieldIsRequired" | "fieldMustContainAtLeast" | "fileName" | "financialInformation" | "financialReportingDate" | "findYourIncorporatedAssociationNumberInThePublicRegistryForYourState" | "finish" | "firmenbuchnummer" | "firstHomeSaverAccountsTrust" | "firstName" | "firstNameOfSettlor" | "fixedTrust" | "fixedUnitTrust" | "forExample_" | "formatIsCorrect" | "franchiseesTAndCs" | "frontPage" | "fullDocumentVisible" | "fullDocumentVisibleWithReadableText" | "getSetUpInstantly" | "getYourBusinessVerifiedDetails" | "getYourVerifiedDetailsInstantly" | "goBack" | "goBackAndProvideDocumentScans" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "good" | "governmentIssuedCorrespondence" | "governmentalOrganizationDescription" | "governmentalOrganizationTitle" | "grTaxId" | "gst" | "guardianshipCertificate" | "handelsregisternummer" | "hasBankStampOrBankSignature" | "hasDba" | "hasDba__helperText" | "hasToBeOfficialDocumentFromBank" | "helpUsVerifyCompany" | "hideDetails" | "hkid" | "howDoesVerificationWithOurPartnerWorks" | "howVerificationWithOnfidoWork" | "howWouldYouLikeToSetUpYourAccount" | "howYourCustomersCanReachYou" | "huRegistrationNumber" | "huTaxId" | "hybridTrust" | "iDoNotHaveCompanyRegistrationNumber" | "iDoNotHaveGst" | "iDontHaveARegistrationNumber" | "iDontHaveATaxId" | "iDontHaveAVatNumber" | "iDontKnow" | "iHaveReadAndIAcceptTheseTerms" | "iStillCantFindIt" | "ibanFormat" | "idDocument" | "idDocumentAlreadyUploaded" | "idNumber" | "idUploadDocumentSubtitle" | "identifikacionenNomerDDS" | "identityCard" | "identityCardBack" | "identityCardFront" | "identityNumberExempt" | "identityNumberExempt__CA" | "identityNumberExempt__US" | "ifNoOwnersSpecifyControllingPersons" | "imagesInColor" | "inReview" | "inThePreviousStepOwnedByAParentCompany" | "inThePreviousStepOwnedByAnUltimateParentCompany" | "includeFrontAndBack" | "includesEIN" | "includesEvidenceOfTheIndividualsRole" | "includesLegalCompanyName" | "includesTheDirectorsFullName" | "incorporatedAssociationRegistrationNumber" | "individual" | "individualDetails" | "individualTrustee" | "individualTrusteeDetails" | "industryAndNaceCode" | "industryExemption" | "infoInUploadedDocumentIsTrue" | "informationCouldNotBeSubmitted" | "instant" | "instantIDVerificationDescription" | "instantVerification" | "instantVerificationDescription" | "instantlyConnectAndVerifyYourBankAccount" | "institutionNumber" | "internalCompanyDocument" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenAccountTitle" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenPrologueTitle" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustTitle" | "invalidDateOfBirth" | "invalidDateOfIncorporation" | "invalidEmail" | "invalidFinancialReportingDate" | "invalidFormat" | "invalidFormatBankStatementDescription" | "invalidFormatExpects" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForAuPassportNumber" | "invalidFormatForHKDriversLicenseNumber" | "invalidFormatForHKIdentityCardNumber" | "invalidFormatForHKPassportNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatIdentityNumberBR" | "invalidFormatIdentityNumberCA" | "invalidFormatIdentityNumberDK" | "invalidFormatIdentityNumberES" | "invalidFormatIdentityNumberHK" | "invalidFormatIdentityNumberIT" | "invalidFormatIdentityNumberPL" | "invalidFormatIdentityNumberRO" | "invalidFormatIdentityNumberSE" | "invalidFormatIdentityNumberSG" | "invalidFormatIdentityNumberUS" | "invalidFormatIdentityNumberUS9" | "invalidNumberOfEmployees" | "invalidPhoneNumber" | "irdDocument" | "irdNumber" | "irsCP575" | "irsScheduleK1" | "isCompanyOwnedByAnotherCompany" | "isOurTrustedPartnerHelpingSpeedUpSetup" | "isParentOwnedByAnotherCompany" | "isThisAddressTheMainHeadquarters" | "isThisPersonANomineeDirector" | "isThisPersonANomineeShareholder" | "isTrustOperationAddressSame" | "isYourNameMissingFromSigners" | "issuedByTheTaxAuthority" | "issuedInTheLastXMonths" | "issuedOrSignedByALegalRepresentative" | "issuerState" | "jobTitle" | "kaibemaksukohustuslaseNumber" | "krsNumber" | "last4DigitsOfSocialSecurityNumber" | "lastName" | "lastNameOfSettlor" | "learnMore" | "leave" | "legalCompanyName" | "legalCompanyName__US" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__HK" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__PR" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__US__business" | "legalEntityIdentifier" | "legalForm" | "legalInformation" | "legalInformationInsolvency" | "legalName" | "legalNameIsUsedToIdentifyABusinessWithTheGovernment" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "legalOwnerOfProperty" | "legalProceedingsDate" | "legalRepresentative" | "legalRepresentativeDetails" | "legalRepresentativeFor" | "letUsKnowTheBankAccountToSendReceiveFunds" | "liRegistrationNumber" | "licenceVersionNumber" | "licenseCardNumber" | "licenseNumber" | "listedPublicUnitTrust" | "listitemVoidedChequeBankLetterBankStatementOnline" | "loading" | "loanApplication" | "localFormat" | "loginIntoYourBankingEnvironment" | "lookUpYourLEI" | "ltRegistrationNumber" | "luRegistrationNumber" | "lvRegistrationNumber" | "lvTaxId" | "madeAMistake" | "maintenanceModeMessage" | "makeSureToHaveYourTrustDeed" | "manualIDVerificationDescription" | "manualUpload" | "manualVerificationDescription" | "maxFileSize" | "maximumFileSizeExceeded" | "mayTakeAFewDays" | "mcRegistrationNumber" | "mcRegistrationNumberSoleProp" | "meetingRecords" | "memberDetails" | "missingCompanyDetails" | "missingMultipleDecisionMakers" | "missingPhoneCountryCode" | "momsregistreringsnummer" | "momsregistreringsnummerCVR" | "mortgageStatement" | "mvanummer" | "myInfoBusinessYouCanGetVerifiedDetails" | "myInfoYouCanGetVerifiedDetails" | "myinfoBusinessDetailsRetrieved" | "myinfoDetailsRetrieved" | "nameMustContainLetters" | "nameOfTrust" | "nameOfTrustAgreement" | "nationalInsuranceNumber" | "nationality" | "naturalPersonDescription" | "naturalPersonTitle" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "next" | "nie" | "no" | "noGlare" | "noGoBack" | "noIdontKnow" | "noOptionsFound" | "nominee" | "nonProfitOrCharitableOrgDescription" | "nonProfitOrCharitableOrgTitle" | "noneOfTheAbove" | "notBlurry" | "notCutOff" | "notExpired" | "nothingNeedsToBeSigned" | "nric" | "numarOrdineRegistrulComertului" | "numberOfEmployees" | "numeroDIdentificationALATaxe" | "numerodeIVA" | "objectOfCharitableTrust" | "objectOfTrust" | "oib" | "onboardingRedirectAwaitingCtaButton" | "onboardingRedirectAwaitingDescriptionP1" | "onboardingRedirectInReviewCtaButton" | "onboardingRedirectInReviewDescriptionP1" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError" | "onboardingRedirectRejectedDescriptionP1" | "onboardingRedirectUnsuccessfulCtaButton" | "onboardingRedirectUnsuccessfulDescriptionP1" | "onboardingRedirectVerifiedDescriptionP1" | "onfidoIsOurTrustedPartner" | "onfidoWillGiveFeedbackInRealTime" | "operationalAddress" | "operationalAddressHeader" | "operationalAddressIsNotSameItemName" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "optional" | "orSoleProprietorshipName" | "organisasjonsnummer" | "organisationsnummer" | "otherAddressInformation" | "otherBusinessInformation" | "otherInformation" | "otherLegalMeasures" | "otherTrust" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "owner" | "ownerDescription" | "ownerGuideDescription" | "ownershipStructure" | "parentCompany" | "parentCompanyInformation" | "partitaIVA" | "partnerShipAgreement" | "partnership" | "partnershipIncorporatedDescription" | "partnershipOrAssociation" | "partnershipUnincorporatedDescription" | "passport" | "passportExpiryDate" | "passportNumber" | "passportPhotoPage" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "patriotActDisclosureTitle" | "payinAccount" | "payinAccountsDescription" | "payinDetails" | "paymentProcessingTerms" | "payoutAccount" | "payoutAccountsDescription" | "payoutAccountsDescriptionReview" | "payoutDetails" | "payoutInOnly_" | "payoutIn_Or_" | "pccr" | "pciDoesNotNeedSigningOrHasBeenSigned" | "pciDssQuestionnaire" | "pciSignFailed" | "pciSignedSuccessfully" | "personAppointmentUnderTrustInstrument" | "personalDetails" | "personnummer" | "peselNumber" | "phoneNumber" | "phoneNumber__placeholder__AL" | "phoneNumber__placeholder__AS" | "phoneNumber__placeholder__NL" | "phoneNumber__placeholder__SG" | "phoneNumber__placeholder__US" | "pleaseEnsureTheFollowing" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "pleaseEnterAValidNumber" | "pleaseEnterAValidWholeNumber" | "pleaseNote" | "pleaseProvideThePurposeOfCharitableTrust" | "pooledSuperannuationTrust" | "postalCode" | "poweredBy" | "previous" | "principalPlaceOfBusiness" | "principalPlaceOfBusinessDescription" | "privateCompanyDescription" | "privateCompanyTitle" | "processing" | "professionalServiceProvider" | "proofOfDirector" | "proofOfNationalId" | "proofOfRelationship" | "proofOfResidenceDocumentTypeLabel" | "proofOfResidency" | "protector" | "protectorGuideDescription" | "provideAllBeneficiaries" | "provideAllDirectors" | "provideAllOwners" | "provideAllTrustees" | "provideAtLeastOneProtector" | "provideAtLeastOneSettlor" | "provideAtLeastOneSignatory" | "provideFewDetailsAboutYourself" | "provideOneControllingPerson" | "providePageWithPhotoAndCode" | "providePersonalAddress" | "providePersonalDetailsOfOwner" | "provinceOrTerritory" | "publicCompanyDescription" | "publicCompanyTitle" | "publicTradingTrust" | "ranIntoTechnicalError" | "reasonForFillingCompanyAddressDetails" | "reasonForFillingCompanyRegistrationDetails" | "reasonForFillingIndividualAddressDetails" | "reasonForFillingIndividualPersonalDetails" | "reasonForFillingPayoutDetails" | "region" | "registeredAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "registeredAddressHeaderDescription__PR" | "registeredAddressHeaderDescription__US" | "registeredAddressTrustHeaderDescription" | "registeredBusinessAddress" | "registeredBusinessAddressDescription" | "registeredBusinessAddressDescription__withCountry" | "registeredBusinessAddressDescription__withCountry__commonNoun" | "registrationAddress" | "registrationDetails" | "registrationDocument" | "registrationNumber" | "registrationNumber__US" | "registrationNumber__helperText__US" | "registrationNumber__nonProfit__FR" | "registrikood" | "regon" | "regonKrsNumber" | "rejected" | "relationshipTo" | "remediationFormErrorMessage" | "remediationMessage_1_100" | "remediationMessage_1_101" | "remediationMessage_1_102" | "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_319" | "remediationMessage_1_320" | "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_512" | "remediationMessage_1_513" | "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_1_803" | "remediationMessage_1_804" | "remediationMessage_1_805" | "remediationMessage_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_158" | "remediationMessage_2_178" | "remediationMessage_2_185" | "remediationMessage_2_188" | "remediationMessage_2_222" | "remediationMessage_2_223" | "remediationMessage_3_100" | "remove" | "removeDecisionMaker" | "removeTrustMember" | "removing" | "reportedValue" | "reportingCurrency" | "requirements" | "requiresDecisionMakers" | "requiresSignatory" | "residencePermitBack" | "residencePermitFront" | "residencyCountry" | "retrieveMyInfo" | "retrieveMyInfoBusiness" | "retrieveMyinfoBusinessWith" | "retrieveMyinfoWith" | "reviewTheInformationBelowAndCorrectMistakesOr" | "rnaNumber" | "role" | "roleAndEntityType" | "routingNumber" | "routingNumberVisible" | "salarySlip" | "sameAsRegisteredAddress" | "sameNameAsLegalName" | "saveAndGoToOverview" | "screenshotOfOnlineBankingEnviroment" | "searchAddress" | "secForm10k" | "secretaryOfStateFiling" | "secretaryOfStateFiling__PR" | "secretaryOfStateRegDoc" | "secretaryOfStateRegDoc__PR" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectCountryRegion" | "selectDocument" | "selectDocumentType" | "selectOne" | "selectProvinceOrTerritory" | "selectSigner" | "selectState" | "selectTheApplicableRoles" | "selectTheBankToReceivePayouts" | "serviceAgreementSignFailed" | "serviceAgreementSignedAndDated" | "serviceAgreementSignedSuccessfully" | "serviceAgreements" | "sessionTimeout" | "setUpYourAccount" | "settlor" | "settlorExemptionReason" | "settlorGuideDescription" | "shareholderDocument" | "showAddressStateCountry" | "showDetails" | "showOnMap" | "showsCountryOfBankAccount" | "siRegistrationNumber" | "siTaxId" | "sign" | "signAndContinue" | "signServiceAgreement" | "signatory" | "signatoryDescription" | "signatoryGuideDescription" | "signed" | "signedByOn" | "signer" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "siret" | "skRegistrationNumber" | "skTaxId" | "socialInsuranceNumber" | "socialSecurityNumber" | "socialSecurityNumber__placeholder" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorship" | "soleProprietorshipDetails" | "someFieldsHaveUnsupportedFormatedUpdateInfoAndResubmit" | "someInformationWillNotBeSaved" | "sorryAnErrorOccurred" | "sorryWeCantSetUpAnAccountForYou" | "sortCode" | "ssn" | "stamregister" | "startANewSessionFromTheSamePlaceYouOriginallyAccessed" | "startTypingTheAddress" | "state" | "stateIssuedProofOfIdentityCard" | "stateOrProvince" | "stateOrProvince__US__business" | "stateOrProvince__placeHolder" | "stateOrProvince__placeHolder__US" | "status" | "stepsX/YofForm" | "stockExchangeInformation" | "stockExchangeMIC" | "stockISIN" | "stockISINHelper" | "stockTickerSymbol" | "street" | "submitFailed" | "submitIdDocumentsAgain" | "submitReview" | "submitReviewOfYourData" | "submitSuccessful" | "successFullyRemovedDecisionMaker" | "successFullyRemovedTrustMember" | "successfullyUpdatedDetails" | "summaryLegalCaption" | "summaryTaxExemptionLegalCaptionTitle" | "summaryTaxExemptionLegalCaption_1" | "summaryTaxExemptionLegalCaption_2" | "summaryTaxExemptionLegalCaption_3" | "supportedFileTypes" | "swiftCode" | "taxDocument" | "taxFiling" | "taxFiling__US" | "taxId" | "taxIdAbsenceReason" | "taxIdNumber" | "taxIdentificationNumber" | "taxInformationNumber" | "taxInformationNumber__HK" | "taxInformationNumber__US" | "taxInformationNumber__helperText__US" | "taxInformationNumber__placeHolder__US" | "taxReferenceNumber" | "taxRegistrationNumber" | "taxationDocument" | "taxpayerReferenceNumber" | "textToVerifyAccount" | "theBankAccountHolderMustBeInYourName_" | "theBankAccountHolderMustHaveTheSameNameAsYourCompany_" | "theIdCheckWillBeAutomaticallyValidated" | "thenResubmit" | "thereAreNoSigners" | "thereWasAnErrorTryAgain" | "thisIsMyBusiness" | "thisMeansYouHaveAParentCompany" | "thisMeansYouHaveAnUltimateParentCompany" | "thisPageIsNowInactive" | "thisSessionWillExpireIn" | "toCompleteProcessReviewAndSignOfficialDocumentation" | "toProtectYourInformationThisSessionHasExpired" | "toggleAssociationMenu" | "tooManyFiles" | "totalAssets" | "totalAssetsHelper" | "tradingName" | "transferInstrumentDeleted" | "transitNumber" | "trust" | "trustDeed" | "trustDetails" | "trustDetailsDescription" | "trustInstrument" | "trustMembers" | "trustMembersDescription" | "trustPartnershipOrAssociation" | "trustType" | "trustee" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trusteeGuideDescription" | "trusteePersonalDetails" | "tryAgainOrContinueEnteringTheDetailsYourself" | "tryAgainOrManualAccountDetails" | "typeOfCompany" | "typeOfIdentity" | "typeOfIdentitySubtitle" | "typeOfTrustAgreement" | "uboThroughControlGuideDescription" | "uboThroughOwnershipGuideDescription" | "uen" | "ultimateParentCompany" | "ultimateParentCompanyInformation" | "unableToVerifyTheIdNumber" | "undefinedBeneficiary" | "undefinedBeneficiaryDescription" | "underJudicialAdministration" | "undoWithTimer" | "uniqueIdentificationCode" | "unknown" | "unlistedPublicUnitTrust" | "unsuccessful" | "unsupportedFiletype" | "upToFiles" | "updateTheInformation" | "uploadABankStatement" | "uploadDocumentForNric" | "uploadOneOfTheseDocuments" | "uploadTheFollowingDocuments" | "uploadYourOrganizationProofOfDirector" | "usePhoneToScanId" | "utilityBill" | "validation8Or11Characters" | "validationCharacters" | "validationDigits" | "validationDigitsBetween" | "validationPleaseEnterAValidBusinessRegistrationNumberWithFormat" | "validationPleaseEnterAValidEINWithFormat" | "validationPleaseEnterAValidIRDNumber" | "validationPleaseEnterAValidIban" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidStockISIN" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidVatNumberWithFormat" | "vatAbsenceReason" | "vatNumber" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "vatRegistrationNumber" | "verificationErrorMessage" | "verificationMethod" | "verified" | "verifiedInformation" | "verify" | "verifyIndividualIdentity" | "verifyViaMobileBankingAppOrWebsite" | "verifyWith" | "weAccept" | "weCouldntCompleteTheAccountCheck" | "weCouldntConnectToMyinfo" | "weCouldntConnectToMyinfoBusiness" | "weDoNotYetSupportInstantVerificationForBankAccountsIn_" | "weFoundTheFollowingIssues" | "weNeedAnOfficialDocument" | "weSelectedSomeRolesBasedOnMyinfoBusinessDataAboutYourCompanysAppointmentHoldersAndShareholders" | "whatBestDescribesYourBusinessSetup" | "whatIsTheDifferenceBetweenTheseRoles" | "whatTypeOfCompanyDoYouHave" | "whatTypeOfTrusteeAreYou" | "whatTypeOfYourMembersEntity" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "whichLegalArrangementDoesYourBusinessHave" | "whichOfTheseApplyToTheSettlor" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "whyDoINeedToFillInThisInformation" | "wouldYouLikeToSignUpAsCompanyInstead" | "wouldYouLikeToSignUpAsIndividualInstead" | "xCharactersLeft" | "xMinutes" | "xMinutesAndYSeconds" | "xSeconds" | "yes" | "yesChange" | "youAlsoHaveToUploadSomeSupportingDocuments" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfPartnershipOrAssociation" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "youAreNotSoleProprietorAndUseBankAccount" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "youCanOnlyUseABankAccountInTheCountryRegionWhereYouLive" | "youCanOnlyUseABankAccountInTheCountryRegionWhereYourCompanyIsRegistered" | "youHaveSuccessfullyProvidedTheIdDocument" | "youMustXYearsOldToContinue" | "youSuccessfullyVerifiedAccount" | "yourAssociationIsRegisteredItWasSetUpForNonCommercialPurpose" | "yourBankWillConfirmYourAccountDetails" | "yourBusiness" | "yourBusinessInformation" | "yourBusinessIsRegisteredAsASeparateLegalEntityFromItsOwners" | "yourBusinessSetup" | "yourBusinesssDetailsArePreFilledInTheRelevantSections" | "yourDetailsArePreFilledInTheRelevantSections" | "yourIbanShouldBeginWith_" | "yourLoanApplicationHasBeenReceived" | "zentralesVereinsregisterId" | "zipCode" | "invalidInputError" | "bankAccountNeeded" | "noIssuesFound" | "newEntityAlwaysEmpty" | "missingRequiredDecisionMakers" | "missingRequiredTrustMembers" | "rootLegalEntityIsEmpty" | "legalRepresentativeNeeded" | "dataMissingError" | "dataReviewNeeded" | "pendingStatusError" | "pendingCapabilities" | "invalidCapabilities" | "allCapabilitiesValid" | "task" | "reason";
|
|
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,16 @@
|
|
|
1
|
-
import type
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { type TagVariant } from '../Tag/Tag';
|
|
2
|
+
export interface DebugTableRow {
|
|
3
|
+
key: string;
|
|
4
|
+
value: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
variant?: TagVariant;
|
|
7
|
+
}
|
|
8
|
+
interface DebugTableProps {
|
|
9
|
+
data: readonly DebugTableRow[];
|
|
10
|
+
heading?: string;
|
|
11
|
+
searchTerm?: string;
|
|
12
|
+
tagPosition?: 'before' | 'after';
|
|
13
|
+
sort?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const DebugTable: ({ data, heading, searchTerm, tagPosition, sort, }: DebugTableProps) => import("preact").JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -4,12 +4,19 @@ import type { LegalEntityAssociation } from '../../core/models/api/legal-entity-
|
|
|
4
4
|
import type { TrustMember } from '../../components/TrustMembers/types';
|
|
5
5
|
import type { TransferInstrumentOverview } from '../../core/models/api/transfer-instrument';
|
|
6
6
|
import type { TaskStatusWithReason } from './taskStatus';
|
|
7
|
+
import { TaskTypes } from './taskTypes';
|
|
7
8
|
import type { TaskIdentifier } from './taskStore';
|
|
8
|
-
|
|
9
|
+
import type { AccountHolderOption } from '../../components/internal/AccountHolder/types';
|
|
10
|
+
export declare const calculateTaskStatus: ({ taskIdentifier, capabilityProblems, rootLegalEntity, accountHolder, legalRepresentative, trustMembers, transferInstruments, }: {
|
|
9
11
|
taskIdentifier: TaskIdentifier;
|
|
10
12
|
capabilityProblems: CapabilityProblems;
|
|
11
13
|
rootLegalEntity: ExistingLegalEntity;
|
|
14
|
+
accountHolder: AccountHolderOption | undefined;
|
|
12
15
|
legalRepresentative: LegalEntityAssociation | undefined;
|
|
13
16
|
trustMembers: TrustMember[];
|
|
14
17
|
transferInstruments: TransferInstrumentOverview[];
|
|
15
18
|
}) => TaskStatusWithReason;
|
|
19
|
+
export declare const splitTaskIdentifier: (taskIdentifier: TaskIdentifier) => {
|
|
20
|
+
taskType: TaskTypes;
|
|
21
|
+
id?: string;
|
|
22
|
+
};
|
|
@@ -5,9 +5,11 @@ import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
|
|
|
5
5
|
import type { LegalEntityAssociation } from '../../core/models/api/legal-entity-association';
|
|
6
6
|
import type { TrustMember } from '../../components/TrustMembers/types';
|
|
7
7
|
import type { TransferInstrumentOverview } from '../../core/models/api/transfer-instrument';
|
|
8
|
-
|
|
8
|
+
import type { AccountHolderOption } from '../../components/internal/AccountHolder/types';
|
|
9
|
+
export declare const determineTaskIdentifiers: ({ taskTypes: receivedTaskTypes, rootLegalEntity, accountHolder, capabilityProblems, trustMembers, transferInstruments, }: {
|
|
9
10
|
taskTypes: TaskTypes[];
|
|
10
11
|
rootLegalEntity: ExistingLegalEntity | undefined;
|
|
12
|
+
accountHolder: AccountHolderOption | undefined;
|
|
11
13
|
capabilityProblems: CapabilityProblems | undefined;
|
|
12
14
|
legalRepresentative: LegalEntityAssociation | undefined;
|
|
13
15
|
trustMembers: TrustMember[];
|
|
@@ -12,11 +12,13 @@ export declare enum TaskStatus {
|
|
|
12
12
|
ERROR = 6,
|
|
13
13
|
SIGNED = 7,
|
|
14
14
|
SUBMIT = 8,
|
|
15
|
-
REMOVING = 9
|
|
15
|
+
REMOVING = 9,
|
|
16
|
+
UNKNOWN = 10
|
|
16
17
|
}
|
|
17
18
|
type Reason = 'rootLegalEntityIsEmpty' | 'newEntityAlwaysEmpty' | 'legalRepresentativeNeeded' | 'bankAccountNeeded' | 'missingRequiredDecisionMakers' | 'missingRequiredTrustMembers' | 'invalidInputError' | 'dataMissingError' | 'dataReviewNeeded' | 'pendingStatusError' | 'pendingCapabilities' | 'invalidCapabilities' | 'allCapabilitiesValid' | 'noIssuesFound';
|
|
18
19
|
export interface TaskStatusWithReason {
|
|
19
20
|
status: TaskStatus;
|
|
20
21
|
reason: Reason;
|
|
22
|
+
details?: any;
|
|
21
23
|
}
|
|
22
24
|
export {};
|
|
@@ -7,16 +7,19 @@ import type { CapabilityProblems } from '../../core/models/errors/capability-pro
|
|
|
7
7
|
import type { LegalEntityAssociation } from '../../core/models/api/legal-entity-association';
|
|
8
8
|
import type { TrustMember } from '../../components/TrustMembers/types';
|
|
9
9
|
import type { TransferInstrumentOverview } from '../../core/models/api/transfer-instrument';
|
|
10
|
+
import type { AccountHolderOption } from '../../components/internal/AccountHolder/types';
|
|
10
11
|
export type TaskIdentifier = `${TaskTypes}` | `${TaskTypes}-${string}`;
|
|
11
12
|
interface BaseTaskState {
|
|
12
13
|
taskTypes: TaskTypes[];
|
|
13
14
|
rootLegalEntity: ExistingLegalEntity | undefined;
|
|
15
|
+
accountHolder: AccountHolderOption | undefined;
|
|
14
16
|
capabilityProblems: CapabilityProblems | undefined;
|
|
15
17
|
legalRepresentative: LegalEntityAssociation | undefined;
|
|
16
18
|
trustMembers: TrustMember[];
|
|
17
19
|
transferInstruments: TransferInstrumentOverview[];
|
|
18
20
|
setTaskTypes(taskTypes: TaskTypes[]): void;
|
|
19
21
|
setRootLegalEntity(rootLegalEntity: ExistingLegalEntity): void;
|
|
22
|
+
setAccountHolder(accountHolder: AccountHolderOption | undefined): void;
|
|
20
23
|
setCapabilityProblems(capabilityProblems: CapabilityProblems): void;
|
|
21
24
|
setLegalRepresentative(legalRepresentative: LegalEntityAssociation | undefined): void;
|
|
22
25
|
setTrustMembers(trustMembers: TrustMember[]): void;
|
|
@@ -40,5 +43,6 @@ export declare const TaskContext: import("preact").Context<TaskStore>;
|
|
|
40
43
|
export declare function useTaskStore(): TaskState;
|
|
41
44
|
export declare function useTaskStore<T>(selector: (state: TaskState) => T): T;
|
|
42
45
|
export declare const useTasks: () => TaskIdentifier[];
|
|
46
|
+
export declare const useTaskStatuses: () => TaskStatuses;
|
|
43
47
|
export declare const useGetTaskStatus: () => (taskType: TaskTypes, id?: string) => TaskStatus;
|
|
44
48
|
export {};
|