@adyen/kyc-components 2.30.0 → 2.30.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.
@@ -1023,6 +1023,7 @@ const errorMessage_1_5050 = "The affiliation document was not official.";
1023
1023
  const errorMessage_1_5051 = "Signing person on the affiliation document could not be verified";
1024
1024
  const errorMessage_1_5052 = "The affiliation document verifies the payout entity is not 100% affiliated with the company. Setup can't be continued.";
1025
1025
  const errorMessage_1_5053 = "The affiliation document was not issued within the last 6 months";
1026
+ const errorMessage_1_5067 = "The legal name didn't match the one on the VAT registry.";
1026
1027
  const errorMessage_1_6000 = "The legal name couldn't be verified.";
1027
1028
  const errorMessage_1_6001 = "The legal name didn't match the registration number.";
1028
1029
  const errorMessage_1_6002 = "The registration number couldn't be verified.";
@@ -1127,6 +1128,8 @@ const remediationMessage_1_508 = "Upload a proof of ownership";
1127
1128
  const remediationMessage_1_509 = "Upload a different affiliation document";
1128
1129
  const remediationMessage_1_510 = "Ensure signing person has the rights to represent the organization or is a listed professional member (lawyer, accountant) in your country of business and upload the right document";
1129
1130
  const remediationMessage_1_511 = "Upload a document that proves the payout entity is 100% affiliated with the legal entity";
1131
+ const remediationMessage_1_512 = "Upload a VAT document";
1132
+ const remediationMessage_1_513 = "Upload a different VAT document";
1130
1133
  const remediationMessage_1_600 = "Update legal entity details";
1131
1134
  const remediationMessage_1_601 = "Upload a constitutional document";
1132
1135
  const remediationMessage_1_602 = "Upload a different constitutional document";
@@ -2242,6 +2245,7 @@ const defaultTrans = {
2242
2245
  errorMessage_1_5051,
2243
2246
  errorMessage_1_5052,
2244
2247
  errorMessage_1_5053,
2248
+ errorMessage_1_5067,
2245
2249
  errorMessage_1_6000,
2246
2250
  errorMessage_1_6001,
2247
2251
  errorMessage_1_6002,
@@ -2346,6 +2350,8 @@ const defaultTrans = {
2346
2350
  remediationMessage_1_509,
2347
2351
  remediationMessage_1_510,
2348
2352
  remediationMessage_1_511,
2353
+ remediationMessage_1_512,
2354
+ remediationMessage_1_513,
2349
2355
  remediationMessage_1_600,
2350
2356
  remediationMessage_1_601,
2351
2357
  remediationMessage_1_602,
@@ -6977,7 +6983,7 @@ const CountryIdNumberPatterns = {
6977
6983
  [CountryCodes.Italy]: /^[A-Z]{6}[0-9]{2}[ABCDEHLMPRST][0-9]{2}[A-Z][0-9]{3}[A-Z]$/,
6978
6984
  [CountryCodes.Poland]: /^\d{11}$/,
6979
6985
  [CountryCodes.Romania]: /^\d{13}$/,
6980
- [CountryCodes.Singapore]: /^[A-Z][0-9]{6}[A-Z]$/,
6986
+ [CountryCodes.Singapore]: /^[A-Z][0-9]{7}[A-Z]$/,
6981
6987
  [CountryCodes.Spain]: {
6982
6988
  dni: /(^[KL]?\d{8}[A-Z]$)/,
6983
6989
  nie: /(^[MXYZ]\d{7,8}[A-Z]$)/
@@ -12719,7 +12725,7 @@ function CompanyComponent(props) {
12719
12725
  children: jsx(DocumentUpload, {
12720
12726
  ...companyTaxDocumentFormProps,
12721
12727
  documentField: "taxDocument",
12722
- documentType: DocumentType.VAT_DOCUMENT,
12728
+ documentType: props.country === "US" ? DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO : DocumentType.VAT_DOCUMENT,
12723
12729
  heading: i18n.get("taxDocument"),
12724
12730
  guidanceContent: jsxs(Fragment, {
12725
12731
  children: [jsx("div", {
@@ -13367,13 +13373,15 @@ const remediationCompanyApiKeyMapping = {
13367
13373
  ...companyApiKeyMapping,
13368
13374
  "organization.registeredAddress": "companyRegistrationAddress.registrationAddress",
13369
13375
  [DocumentType.REGISTRATION_DOCUMENT]: "companyRegistrationDocument.registrationDocument",
13370
- [DocumentType.VAT_DOCUMENT]: "companyTaxDocument.taxDocument"
13376
+ [DocumentType.VAT_DOCUMENT]: "companyTaxDocument.taxDocument",
13377
+ [DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO]: "companyTaxDocument.taxDocument"
13371
13378
  };
13372
13379
  const remediationCompanySearchApiKeyMapping = {
13373
13380
  ...companySearchApiKeyMapping,
13374
13381
  "organization.registeredAddress": "companyRegistrationAddress.registrationAddress",
13375
13382
  [DocumentType.REGISTRATION_DOCUMENT]: "companyRegistrationDocument.registrationDocument",
13376
- [DocumentType.VAT_DOCUMENT]: "companyTaxDocument.taxDocument"
13383
+ [DocumentType.VAT_DOCUMENT]: "companyTaxDocument.taxDocument",
13384
+ [DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO]: "companyTaxDocument.taxDocument"
13377
13385
  };
13378
13386
  const remediationIndividualApiKeyMapping = {
13379
13387
  ...individualApiKeyMapping,
@@ -15596,15 +15604,15 @@ const defaultFieldConfig$5 = {
15596
15604
  [CountryCodes.Singapore]: {
15597
15605
  label: "nric",
15598
15606
  mask: {
15599
- mask: makeMask(...alphaInputs(1), ...numericInputs(6), ...alphaInputs(1)),
15607
+ mask: makeMask(...alphaInputs(1), ...numericInputs(7), ...alphaInputs(1)),
15600
15608
  transformOnType: uppercase
15601
15609
  },
15602
15610
  validators: validatePatternOnBlur(CountryIdNumberPatterns[CountryCodes.Singapore]),
15603
15611
  guidanceText: {
15604
15612
  key: "enterNCharactersWithAMixForExample",
15605
15613
  values: {
15606
- numChars: "8",
15607
- example: "T123456J"
15614
+ numChars: "9",
15615
+ example: "T9123456J"
15608
15616
  }
15609
15617
  }
15610
15618
  },
@@ -21494,6 +21502,8 @@ const invalidInputRemediationActionMappings = {
21494
21502
  "1_502": [{
21495
21503
  key: DocumentType.REGISTRATION_DOCUMENT
21496
21504
  }],
21505
+ // '1_503': [{ key: DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO }], // TODO: These are the correct mappings according to the API. We've done various bandaid fixes on both sides for this
21506
+ // '1_504': [{ key: DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO }], // These will be corrected in a later ticket. see https://docs.adyen.com/platforms/kyc-verification-codes/remediating-actions/#1_503
21497
21507
  "1_503": [{
21498
21508
  key: DocumentType.VAT_DOCUMENT
21499
21509
  }],
@@ -21552,6 +21562,8 @@ const invalidInputRemediationActionMappings = {
21552
21562
  };
21553
21563
  const dataMissingRemediationsToFieldsMap = {
21554
21564
  "1_501": [DocumentType.REGISTRATION_DOCUMENT],
21565
+ "1_503": [DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO],
21566
+ "1_512": [DocumentType.VAT_DOCUMENT],
21555
21567
  "2_158": ["vatNumber", "exemptedFromVat", "vatAbsenceReason"]
21556
21568
  };
21557
21569
  const DATA_MISSING_DECISION_MAKER_ERROR_CODE_MAPPING = {
@@ -21586,7 +21598,7 @@ const entityProblemInitialState = {
21586
21598
  };
21587
21599
  const UNRELATED_DATA_MISSING_ERROR_CODES = ["2_8036", "2_8064", "2_8067", "2_8189"];
21588
21600
  const UNRELATED_INVALID_INPUT_ERROR_CODES = ["1_14", "2_901", "2_902"];
21589
- function getCapabilityProblems(response, isExperimentEnabled) {
21601
+ function getCapabilityProblems(response, country2, isExperimentEnabled) {
21590
21602
  const capabilities = (response == null ? void 0 : response.capabilities) || {};
21591
21603
  const capabilityProblems = {};
21592
21604
  Object.values(capabilities).forEach(({
@@ -21601,26 +21613,26 @@ function getCapabilityProblems(response, isExperimentEnabled) {
21601
21613
  } = problem.entity;
21602
21614
  capabilityProblems[entityType2] = capabilityProblems[entityType2] || {};
21603
21615
  capabilityProblems[entityType2][entityId] = capabilityProblems[entityType2][entityId] ?? getInitialProblemState(entityType2, entityId, response);
21604
- setProblem(problem, capabilityProblems[entityType2][entityId], isExperimentEnabled);
21616
+ setProblem(problem, capabilityProblems[entityType2][entityId], country2, isExperimentEnabled);
21605
21617
  }
21606
21618
  });
21607
21619
  }
21608
21620
  });
21609
21621
  return capabilityProblems;
21610
21622
  }
21611
- function setProblem(problem, entityProblems, isExperimentEnabled) {
21623
+ function setProblem(problem, entityProblems, country2, isExperimentEnabled) {
21612
21624
  var _a;
21613
21625
  if ((_a = problem.verificationErrors) == null ? void 0 : _a.length) {
21614
21626
  problem.verificationErrors.forEach((error) => {
21615
- setVerificationError(error, entityProblems, isExperimentEnabled);
21627
+ setVerificationError(error, entityProblems, country2, isExperimentEnabled);
21616
21628
  });
21617
21629
  }
21618
21630
  }
21619
- function setVerificationError(error, entityProblems, isExperimentEnabled) {
21631
+ function setVerificationError(error, entityProblems, country2, isExperimentEnabled) {
21620
21632
  switch (error.type) {
21621
21633
  case VerificationErrorType.INVALID_INPUT: {
21622
21634
  if (!isUnRelatedErrorCode(error)) {
21623
- setInvalidInputError(error, entityProblems, isExperimentEnabled);
21635
+ setInvalidInputError(error, entityProblems, country2, isExperimentEnabled);
21624
21636
  }
21625
21637
  break;
21626
21638
  }
@@ -21651,14 +21663,22 @@ const setReviewRequiredError = (verificationError, entityProblems) => {
21651
21663
  };
21652
21664
  setPriorityStatus(entityProblems, TaskStatus.SUBMIT);
21653
21665
  };
21654
- function setInvalidInputError(parentVerificationError, entityProblems, isExperimentEnabled) {
21666
+ const overrideInvalidInputRemediations = (code2, country2) => {
21667
+ if ((code2 === "1_501" || code2 === "1_502") && country2 === "US") {
21668
+ return [{
21669
+ key: DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO
21670
+ }];
21671
+ }
21672
+ return invalidInputRemediationActionMappings[code2];
21673
+ };
21674
+ function setInvalidInputError(parentVerificationError, entityProblems, country2, isExperimentEnabled) {
21655
21675
  var _a, _b;
21656
21676
  const processedSubErrors = (_a = parentVerificationError == null ? void 0 : parentVerificationError.subErrors) == null ? void 0 : _a.reduce((acc, {
21657
21677
  code: code2,
21658
21678
  remediatingActions
21659
21679
  }) => {
21660
21680
  const mappedRemActions = remediatingActions == null ? void 0 : remediatingActions.reduce((acc2, remediatingAction) => {
21661
- const remMapping = invalidInputRemediationActionMappings[remediatingAction.code];
21681
+ const remMapping = overrideInvalidInputRemediations(remediatingAction.code, country2);
21662
21682
  if (remMapping) {
21663
21683
  const {
21664
21684
  entityType: entityType2
@@ -22668,7 +22688,7 @@ const isFieldRequired = (fieldConfigurations, customRules) => {
22668
22688
  }
22669
22689
  return fieldConfigurations && ((fieldConfigurations == null ? void 0 : fieldConfigurations.rule) === "REQUIRED" || (customRules == null ? void 0 : customRules[fieldConfigurations.rule]) && customRules[fieldConfigurations.rule]() === "REQUIRED");
22670
22690
  };
22671
- function getPropsFromConfigurations(scenarioConfiguration, forms2, remediationActions, dataMissingErrors, fieldsWithExistingData, customRules = {}, customLabels = {}) {
22691
+ function getPropsFromConfigurations(scenarioConfiguration, forms2, remediationActions, dataMissingErrors, fieldsWithExistingData, country2, customRules = {}, customLabels = {}) {
22672
22692
  var _a;
22673
22693
  const requiredFields = {};
22674
22694
  const optionalFields = {};
@@ -22691,7 +22711,7 @@ function getPropsFromConfigurations(scenarioConfiguration, forms2, remediationAc
22691
22711
  const fieldConfigurations = scenarioConfiguration[field];
22692
22712
  const isRequiredFromFieldConfig = isFieldRequired(fieldConfigurations, customRules);
22693
22713
  const isFieldRequiredByRemediationAction = showRemediationField(field, remediationActions);
22694
- const isFieldNeededToRemediateDataMissingError = isFieldRequiredToRemediateDataMissingError(formId, field, dataMissingErrors);
22714
+ const isFieldNeededToRemediateDataMissingError = isFieldRequiredToRemediateDataMissingError(formId, field, dataMissingErrors, country2);
22695
22715
  const fieldHasExistingData = formFieldsWithExistingData.includes(field);
22696
22716
  const isRequired = isFieldRequiredByRemediationAction || isRequiredFromFieldConfig || isFieldNeededToRemediateDataMissingError || fieldHasExistingData;
22697
22717
  if (isRequired) {
@@ -22769,10 +22789,21 @@ const showRemediationField = (field, remediationActions) => remediationActions.s
22769
22789
  var _a;
22770
22790
  return ((_a = rem.fields) == null ? void 0 : _a.includes(field)) && remediationHasFileUploadField(rem);
22771
22791
  });
22772
- const makeTLDSFieldName = (formId, fieldName) => `${formId}.${fieldName}`;
22773
- const isFieldRequiredToRemediateDataMissingError = (formId, field, dataMissingErrors) => {
22792
+ const makeTLDSFieldName = (formId, fieldName) => {
22793
+ if (fieldName === DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO) {
22794
+ return `${formId}.taxDocument`;
22795
+ }
22796
+ return `${formId}.${fieldName}`;
22797
+ };
22798
+ const overrideDataMissingRemediations = (code2, country2) => {
22799
+ if (code2 === "1_501" && country2 === "US") {
22800
+ return dataMissingRemediationsToFieldsMap["1_503"];
22801
+ }
22802
+ return dataMissingRemediationsToFieldsMap[code2];
22803
+ };
22804
+ const isFieldRequiredToRemediateDataMissingError = (formId, field, dataMissingErrors, country2) => {
22774
22805
  const dataMissingRemediations = dataMissingErrors.flatMap((error) => error.remediatingActions).filter((remediatingAction) => remediatingAction.code in dataMissingRemediationsToFieldsMap);
22775
- const missingFields = dataMissingRemediations.flatMap((remediatingAction) => dataMissingRemediationsToFieldsMap[remediatingAction.code]).map((missingField) => makeTLDSFieldName(formId, missingField));
22806
+ const missingFields = dataMissingRemediations.flatMap((remediatingAction) => overrideDataMissingRemediations(remediatingAction.code, country2)).map((missingField) => makeTLDSFieldName(formId, missingField));
22776
22807
  const missingAndLinkedFields = addLinkedFields(missingFields);
22777
22808
  return missingAndLinkedFields.includes(makeTLDSFieldName(formId, field));
22778
22809
  };
@@ -23143,7 +23174,8 @@ const BusinessTypeSelection = ({
23143
23174
  handleUpdateLegalEntity,
23144
23175
  taskHistory,
23145
23176
  setTaskHistory,
23146
- onNavigateTo
23177
+ onNavigateTo,
23178
+ baseTrackingPayload
23147
23179
  }) => {
23148
23180
  var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
23149
23181
  const {
@@ -23196,6 +23228,26 @@ const BusinessTypeSelection = ({
23196
23228
  var _a2, _b2;
23197
23229
  setFormSchema(getFormSchema(((_a2 = data.businessType) == null ? void 0 : _a2.id) === "legalArrangement" && !!data.legalArrangement || currentStep === 1, ((_b2 = data.legalArrangement) == null ? void 0 : _b2.id) === "aTrust"));
23198
23230
  }, [data.businessType, data.legalArrangement, currentStep]);
23231
+ useEffect(() => {
23232
+ userEvents.addPageView("Entity Selection");
23233
+ const startDropOffTrackingEvent = () => {
23234
+ userEvents.addEvent("Started legal entity selection", {
23235
+ segmentation: baseTrackingPayload
23236
+ });
23237
+ };
23238
+ const stopDropOffTrackingEvent = () => {
23239
+ userEvents.addEvent("Drop off at legal entity selection", {
23240
+ segmentation: baseTrackingPayload
23241
+ });
23242
+ };
23243
+ startDropOffTrackingEvent();
23244
+ window.addEventListener("focus", startDropOffTrackingEvent);
23245
+ window.addEventListener("blur", stopDropOffTrackingEvent);
23246
+ return () => {
23247
+ window.removeEventListener("focus", startDropOffTrackingEvent);
23248
+ window.removeEventListener("blur", stopDropOffTrackingEvent);
23249
+ };
23250
+ }, []);
23199
23251
  const handleNextClick = async () => {
23200
23252
  var _a2;
23201
23253
  if (loadingStatus === "loading")
@@ -23227,11 +23279,17 @@ const BusinessTypeSelection = ({
23227
23279
  return;
23228
23280
  }
23229
23281
  await updateLegalEntityAndSelectAccountHolder();
23282
+ userEvents.addEvent("Saved legal entity selection", {
23283
+ segmentation: baseTrackingPayload
23284
+ });
23230
23285
  } else {
23231
23286
  onAccountHolderSelect(newAccountHolder);
23232
23287
  }
23233
23288
  if (isLegalArrangementChanging) {
23234
23289
  await updateLegalEntityAndSelectAccountHolder();
23290
+ userEvents.addEvent("Saved legal entity selection", {
23291
+ segmentation: baseTrackingPayload
23292
+ });
23235
23293
  }
23236
23294
  }
23237
23295
  };
@@ -23835,7 +23893,7 @@ function CompanyDropinComponent({
23835
23893
  requiredFields,
23836
23894
  isSettingEnabled
23837
23895
  }), [country2, data, taskType, requiredFields, isSettingEnabled]);
23838
- const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, companyForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
23896
+ const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, companyForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], country2, fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions, country2]);
23839
23897
  const {
23840
23898
  state: {
23841
23899
  currentState
@@ -26166,7 +26224,7 @@ function CompanySearchComponent(props) {
26166
26224
  heading: i18n.get(forms.companyTaxDocument.formName),
26167
26225
  description: i18n.get(forms.companyTaxDocument.formDescription),
26168
26226
  documentField: "taxDocument",
26169
- documentType: country2 !== "US" ? DocumentType.VAT_DOCUMENT : DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO,
26227
+ documentType: country2 === "US" ? DocumentType.PROOF_OF_ORGANIZATION_TAX_INFO : DocumentType.VAT_DOCUMENT,
26170
26228
  guidanceContent: jsxs(Fragment, {
26171
26229
  children: [jsx("div", {
26172
26230
  className: "adyen-kyc-document-upload__subtitle adl-u-margin-bottom-16",
@@ -26241,11 +26299,11 @@ function CompanySearchDropinComponent({
26241
26299
  } = useExperimentsContext();
26242
26300
  const [loadingStatus, setLoadingStatus] = useState("success");
26243
26301
  const [initialData, setInitialData] = useState(mapLegalEntityToCompanySearchSchema(legalEntityResponse));
26244
- const [problems, setProblems] = useState(propProblems ?? ((_b = (_a = getCapabilityProblems(legalEntityResponse, isExperimentEnabled)) == null ? void 0 : _a.LegalEntity) == null ? void 0 : _b[legalEntityResponse.id]));
26245
26302
  const country2 = useMemo(() => {
26246
26303
  var _a2;
26247
26304
  return ((_a2 = currentState.data.companyBasics) == null ? void 0 : _a2.country) ?? parentCountry;
26248
- }, [(_c = currentState.data.companyBasics) == null ? void 0 : _c.country, parentCountry]);
26305
+ }, [(_a = currentState.data.companyBasics) == null ? void 0 : _a.country, parentCountry]);
26306
+ const [problems, setProblems] = useState(propProblems ?? ((_c = (_b = getCapabilityProblems(legalEntityResponse, country2, isExperimentEnabled)) == null ? void 0 : _b.LegalEntity) == null ? void 0 : _c[legalEntityResponse.id]));
26249
26307
  const documentUtils = documentApiUtils(handleCreateDocument, handleGetDocument, handleUpdateDocument);
26250
26308
  useEffect(() => {
26251
26309
  var _a2;
@@ -26282,7 +26340,7 @@ function CompanySearchDropinComponent({
26282
26340
  taskType
26283
26341
  }), [currentState.data, country2, taskType]);
26284
26342
  const derivedProps = useMemo(() => {
26285
- const props = getPropsFromConfigurations(fieldConfigurations, forms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse, isExperimentEnabled) : [], customRules);
26343
+ const props = getPropsFromConfigurations(fieldConfigurations, forms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse, isExperimentEnabled) : [], country2, customRules);
26286
26344
  if (props) {
26287
26345
  return entriesOf(props).reduce((acc, [key, value]) => {
26288
26346
  var _a2, _b2;
@@ -28103,6 +28161,7 @@ const LEGAL_ENTITY_BASE_TASKS = [TaskTypes.INDIVIDUAL, TaskTypes.COMPANY, TaskTy
28103
28161
  const CONTRACT_TASKS = [TaskTypes.SERVICE_AGREEMENT, TaskTypes.PCI_DSS];
28104
28162
  function TaskListComponent({
28105
28163
  tasks,
28164
+ trackingConfig,
28106
28165
  onNavigateToTask,
28107
28166
  legalEntityResponse,
28108
28167
  capabilityProblems,
@@ -28168,6 +28227,17 @@ function TaskListComponent({
28168
28227
  const handleOnNavigateToServiceAgreement = () => onNavigateToTask(TaskTypes.SERVICE_AGREEMENT);
28169
28228
  const companyTaskDescriptionKey = isReview ? "businessAccountDetailsDescriptionReview" : "businessAccountDetailsDescription";
28170
28229
  const payoutTaskDescriptionKey = isReview ? "payoutAccountsDescriptionReview" : "payoutAccountsDescription";
28230
+ const onEditBusinessSetupClick = () => {
28231
+ const baseTrackingPayload = getBaseTrackingPayload({
28232
+ trackingConfig,
28233
+ legalEntity: legalEntityResponse,
28234
+ task: tasks[tasks.length - 1]
28235
+ });
28236
+ userEvents.addEvent("Clicked back to legal entity selection", {
28237
+ segmentation: baseTrackingPayload
28238
+ });
28239
+ onNavigateToTask(TaskTypes.BUSINESS_TYPE_SELECTION);
28240
+ };
28171
28241
  return jsxs("div", {
28172
28242
  children: [canSeeIntroduction && jsx("div", {
28173
28243
  className: "adyen-task-list__nav",
@@ -28196,7 +28266,7 @@ function TaskListComponent({
28196
28266
  icon: "edit",
28197
28267
  ghost: true,
28198
28268
  circle: true,
28199
- onClick: () => onNavigateToTask(TaskTypes.BUSINESS_TYPE_SELECTION),
28269
+ onClick: onEditBusinessSetupClick,
28200
28270
  className: "adl-u-margin-left-4",
28201
28271
  type: "button"
28202
28272
  })]
@@ -28744,7 +28814,7 @@ function IndividualDropinComponent({
28744
28814
  taskType,
28745
28815
  isEmbeddedDropin
28746
28816
  }), [country2, data, taskType]);
28747
- const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, individualForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
28817
+ const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, individualForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], country2, fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
28748
28818
  const {
28749
28819
  state: {
28750
28820
  currentState
@@ -29313,7 +29383,7 @@ function PayoutDetailsDropinComponent({
29313
29383
  const [hideBackButton, setHideBackButton] = useState(false);
29314
29384
  const [loadingStatus, setLoadingStatus] = useState("success");
29315
29385
  const [data, setData] = useState(prefilledData);
29316
- const [problems, setProblems] = useState(propProblems || ((transferInstrument == null ? void 0 : transferInstrument.id) ? (_c = (_b = getCapabilityProblems(legalEntityResponse)) == null ? void 0 : _b.BankAccount) == null ? void 0 : _c[transferInstrument.id] : void 0));
29386
+ const [problems, setProblems] = useState(propProblems || ((transferInstrument == null ? void 0 : transferInstrument.id) ? (_c = (_b = getCapabilityProblems(legalEntityResponse, bankAccountCountry2)) == null ? void 0 : _b.BankAccount) == null ? void 0 : _c[transferInstrument.id] : void 0));
29317
29387
  const existingBankAccountFormat = transferInstrument ? ((_d = existingPayoutDetails == null ? void 0 : existingPayoutDetails.payoutAccountDetails) == null ? void 0 : _d.iban) ? "iban" : "local" : void 0;
29318
29388
  const baseTrackingPayload = getBaseTrackingPayload({
29319
29389
  trackingConfig,
@@ -29368,7 +29438,7 @@ function PayoutDetailsDropinComponent({
29368
29438
  verificationVendorsCallback: handleGetBankVerificationVendors
29369
29439
  }), isSettingEnabled(SettingNames.AllowIntraRegionCrossBorderPayout), isExperimentEnabled("EnableNewEntryFlow"));
29370
29440
  }, [bankVerificationVendors]);
29371
- const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, payoutDetailsSteps, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], [], fieldsFromCustomRules, fieldsFormCustomLabels), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
29441
+ const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, payoutDetailsSteps, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], [], bankAccountCountry2, fieldsFromCustomRules, fieldsFormCustomLabels), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
29372
29442
  const {
29373
29443
  state: {
29374
29444
  currentState
@@ -30938,7 +31008,7 @@ function SolePropDropinComponent({
30938
31008
  requiredFields,
30939
31009
  isSettingEnabled
30940
31010
  }), [country2, data, taskType, requiredFields, isSettingEnabled]);
30941
- const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, solePropForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
31011
+ const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, solePropForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], country2, fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions, country2]);
30942
31012
  const {
30943
31013
  state: {
30944
31014
  currentState
@@ -31221,7 +31291,7 @@ function TrustDropinComponent({
31221
31291
  requiredFields,
31222
31292
  isSettingEnabled
31223
31293
  }), [country2, data, taskType, requiredFields, isSettingEnabled]);
31224
- const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, trustForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions]);
31294
+ const derivedProps = useMemo(() => getPropsFromConfigurations(fieldConfigurations, trustForms, (problems == null ? void 0 : problems.remediationActions) ? Object.values(problems == null ? void 0 : problems.remediationActions) : [], (problems == null ? void 0 : problems.missingData) ?? [], legalEntityResponse ? getFieldsWithExistingData(legalEntityResponse) : [], country2, fieldsFromCustomRules), [fieldConfigurations, fieldsFromCustomRules, problems == null ? void 0 : problems.remediationActions, country2]);
31225
31295
  const {
31226
31296
  state: {
31227
31297
  currentState
@@ -31486,9 +31556,9 @@ function DropinComposerComponent({
31486
31556
  const [serviceAgreementTypes, setServiceAgreementTypes] = useState([]);
31487
31557
  const [serviceAgreementAcceptanceInfos, setServiceAgreementAcceptanceInfos] = useState([]);
31488
31558
  const [transferInstrument, setTransferInstrument] = useState(null);
31489
- const [capabilityProblems, setCapabilityProblems] = useState(getCapabilityProblems(legalEntityResponse, isExperimentEnabled));
31490
- const [bankVerificationVendors, setBankVerificationVendors] = useState();
31491
31559
  const rootLegalEntityCountry = rootLegalEntity.type === LegalEntityType.INDIVIDUAL ? (_a = rootLegalEntity.individual.residentialAddress) == null ? void 0 : _a.country : (_b = rootLegalEntity.organization.registeredAddress) == null ? void 0 : _b.country;
31560
+ const [capabilityProblems, setCapabilityProblems] = useState(getCapabilityProblems(legalEntityResponse, rootLegalEntityCountry, isExperimentEnabled));
31561
+ const [bankVerificationVendors, setBankVerificationVendors] = useState();
31492
31562
  const hasTrust = accountHolder2 === "aTrust" || isPartOfTrustFromLegalEntity(legalEntityResponse);
31493
31563
  const reviewRequired = (rootLegalEntity == null ? void 0 : rootLegalEntity.id) && ((_d = (_c = capabilityProblems == null ? void 0 : capabilityProblems.LegalEntity) == null ? void 0 : _c[rootLegalEntity.id]) == null ? void 0 : _d.isReviewRequired);
31494
31564
  const additionalSalesChannels = useSalesChannelsSettings();
@@ -31595,7 +31665,7 @@ function DropinComposerComponent({
31595
31665
  try {
31596
31666
  const response = await (args == null ? void 0 : args.handleGetLegalEntity(rootLegalEntity.id));
31597
31667
  setRootLegalEntity(response);
31598
- setCapabilityProblems(getCapabilityProblems(response));
31668
+ setCapabilityProblems(getCapabilityProblems(response, rootLegalEntityCountry, isExperimentEnabled));
31599
31669
  return response;
31600
31670
  } catch (e) {
31601
31671
  logger$8.warn(i18n.get("failedToFetchLegalEntityDetails"));
@@ -32007,7 +32077,11 @@ function DropinComposerComponent({
32007
32077
  },
32008
32078
  taskHistory,
32009
32079
  setTaskHistory,
32010
- onNavigateTo
32080
+ onNavigateTo,
32081
+ trackingConfig: {
32082
+ topLevelLegalEntity: legalEntityResponse
32083
+ },
32084
+ eventEmitter
32011
32085
  })
32012
32086
  });
32013
32087
  case TaskTypes.INTRODUCTION:
@@ -32023,6 +32097,9 @@ function DropinComposerComponent({
32023
32097
  return jsx(AccountSetupRejected, {});
32024
32098
  case TaskTypes.TASKS_OVERVIEW:
32025
32099
  return jsx(TaskListComponent, {
32100
+ trackingConfig: {
32101
+ topLevelLegalEntity: legalEntityResponse
32102
+ },
32026
32103
  onNavigateToTask: navigateTo,
32027
32104
  tasks,
32028
32105
  legalEntityResponse: rootLegalEntity,
@@ -13,4 +13,4 @@ export declare enum BusinessTypeSelectionStep {
13
13
  CONFIRM_BUSINESS_SETUP_CHANGE = 3
14
14
  }
15
15
  export declare const businessTypeSelectionStepTitles: Record<BusinessTypeSelectionStep, TranslationKey>;
16
- export declare const BusinessTypeSelection: ({ legalEntityResponse, accountHolder, showTrustOption, showSolePropOption, onAccountHolderSelect, handleUpdateLegalEntity, taskHistory, setTaskHistory, onNavigateTo, }: BusinessTypeSelectionProps) => JSX.Element | null;
16
+ export declare const BusinessTypeSelection: ({ legalEntityResponse, accountHolder, showTrustOption, showSolePropOption, onAccountHolderSelect, handleUpdateLegalEntity, taskHistory, setTaskHistory, onNavigateTo, baseTrackingPayload, }: BusinessTypeSelectionProps) => JSX.Element | null;
@@ -1,9 +1,9 @@
1
1
  import { ExistingLegalEntity } from '../../core/models/api/legal-entity';
2
2
  import { TranslationKey } from '../../language/types';
3
- import { DropinAPIHandlers } from '../Dropins/types';
3
+ import { DropinAPIHandlers, type DropinProps } from '../Dropins/types';
4
4
  import { AccountHolderOption, LegalArrangementOption } from '../internal/AccountHolder/types';
5
5
  import { TaskTypes } from '../TaskList/types';
6
- export interface BusinessTypeSelectionProps extends DropinAPIHandlers {
6
+ export interface BusinessTypeSelectionProps extends DropinAPIHandlers, DropinProps {
7
7
  legalEntityResponse: ExistingLegalEntity;
8
8
  accountHolder?: AccountHolderOption;
9
9
  showTrustOption: boolean;
@@ -1,4 +1,4 @@
1
1
  import '../TaskList.scss';
2
2
  import { TaskListComponentProps } from '../types';
3
- declare function TaskListComponent({ tasks, onNavigateToTask, legalEntityResponse, capabilityProblems, onPciDownload, isReview, pciStatus, serviceAgreementTypes, serviceAgreementAcceptanceInfos, onTransferInstrumentDelete, }: TaskListComponentProps): import("preact").JSX.Element;
3
+ declare function TaskListComponent({ tasks, trackingConfig, onNavigateToTask, legalEntityResponse, capabilityProblems, onPciDownload, isReview, pciStatus, serviceAgreementTypes, serviceAgreementAcceptanceInfos, onTransferInstrumentDelete, }: TaskListComponentProps): import("preact").JSX.Element;
4
4
  export default TaskListComponent;
@@ -63,6 +63,9 @@ export interface TaskListComponentProps {
63
63
  onPciDownload?(): void;
64
64
  country?: string;
65
65
  onTransferInstrumentDelete: (id: string) => void;
66
+ trackingConfig?: {
67
+ topLevelLegalEntity: ExistingLegalEntity;
68
+ };
66
69
  }
67
70
  export interface TaskListGroupProps {
68
71
  title: string;
@@ -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" | "iban" | "SST" | "RFC" | "CNPJ" | "MBO" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "otherAddressInformation" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "formatIsCorrect" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "last4DigitsOfSocialSecurityNumber" | "socialSecurityNumber" | "socialInsuranceNumber" | "codiceFiscale" | "personnummer" | "dni" | "nie" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "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" | "passportExpiryDate" | "proofOfNationality" | "identityNumberExempt" | "identityNumberExempt__US" | "identityNumberExempt__CA" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "partnershipIncorporated" | "partnershipUnincorporated" | "partnershipIncorporatedDescription" | "partnershipUnincorporatedDescription" | "partnershipIncorporatedNewEntryFlowDescription" | "partnershipUnincorporatedNewEntryFlowDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporated" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "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" | "vatAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMICHelper" | "stockISINHelper" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "accountDetailsDescription" | "provideFewDetailsAboutYourself" | "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" | "pccr" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "downloadACopy" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankAccountHasToBeInYourName" | "orSoleProprietorshipName" | "bankAccountHasToBeInYourCompanyName" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "swiftCode" | "bic" | "bicSwift" | "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" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "stateIssuedProofOfIdentityCard" | "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" | "hasBankStampOrBankSignature" | "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" | "companyNumberNZ" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "CCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "mvanummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "vatRegistrationNumber" | "regonKrsNumber" | "registrationNumber" | "identificationNumber" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "regon" | "krsNumber" | "registrationNumber__nonProfit__FR" | "rnaNumber" | "siret" | "registrationNumber__PR" | "employerIdentificationNumber" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "zentralesVereinsregisterId" | "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" | "objectOfCharitableTrust" | "objectOfTrust" | "pleaseProvideThePurposeOfCharitableTrust" | "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" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorshipDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "whatBestDescribesYourBusinessSetup" | "whichLegalArrangementDoesYourBusinessHave" | "sorryWeCantSetUpAnAccountForYou" | "changeYourBusinessSetup" | "someInformationWillNotBeSaved" | "yesChange" | "youAreNotSoleProprietorAndUseBankAccount" | "soleProprietorship" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "company" | "youUseCompanyBankAccount" | "trust" | "trustPartnershipOrAssociation" | "whatTypeOfTrusteeAreYou" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "individualTrustee" | "companyTrustee" | "association" | "partnership" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "jointlyOwnedBusinessWhereTwoOrMorePeopleOperateAndShareProfits" | "groupOfPeopleActingTogetherForNonCommercialPurpose" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "myName" | "setUpYourAccount" | "yourBusinessSetup" | "myNameDescription" | "mySoleProprietorName" | "mySoleProprietorNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "letUsKnowTheBankAccountToSendReceiveFunds" | "bankAccount" | "bankAccountDetails" | "addExtraBankAccount" | "addAndVerifyYourBankDetails" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "btwNummer" | "momsregistreringsnummerOrStamregister" | "momsregistreringsnummerCVR" | "stamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "enterNDigitsForExample" | "enterNCharactersForExample" | "enterLastNDigitsForExample" | "enterXToYDigitsForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXOrYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterXToYLettersAndThenWToZDigitsForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingXToYDigitsForExample" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "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" | "uploadOneOfTheseDocuments" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "businessRegistrationDocument__FR" | "taxFiling" | "taxFiling__US" | "einVerificationLetter" | "areYouACompany" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "wouldYouLikeToSignUpAsCompanyInstead" | "areYouAnIndividual" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "wouldYouLikeToSignUpAsIndividualInstead" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "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" | "doNotHaveBusinessNumber" | "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" | "missingMultipleDecisionMakers" | "legalCompanyName" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__HK" | "taxInformationNumber" | "taxInformationNumber__HK" | "stockExchangeMIC" | "stockExchangeMIC__US" | "stockExchangeMIC__placeholder__US" | "stockExchangeMIC__helperText" | "stockISIN" | "stockISIN__US" | "stockISIN__placeholder__US" | "stockISIN__helperText" | "companyLookupResultsHeader" | "companyLookupResultsHeader__searching" | "companyLookupResultsHeader__verifying" | "companyLookupResultsHeader__noResults" | "companyLookupResultsHeader__results" | "companyLookupResultsHeader__searchFailure" | "companyLookupResultsHeaderDescription__noResults" | "companyLookupResultsHeaderDescription__results" | "companyLookupResultsHeaderDescription__searchFailure" | "companyLookupResultsListAlert__title__verified" | "companyLookupResultsListAlert__title__warning" | "companyLookupResultsListAlert__title__error" | "companyLookupResultsListAlert__description__warning" | "companyBasicsFormName" | "companyRegistrationAddressFormName" | "companyRegistrationAddressFormDescription" | "companyStructureFormName" | "companyStructureFormDescription" | "companyOtherDetailsFormName" | "companyRegistrationDocumentFormName" | "companyRegistrationDocumentFormDescription" | "companyTaxDocumentFormName" | "companyTaxDocumentFormDescription" | "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_3052" | "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_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8189" | "errorMessage_2_8193" | "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_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_185" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "introductionScreenPrologueTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenIndividualTitle" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenDecisionMakerTitle" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenTrustTitle" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenAccountTitle" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "oib" | "onboardingRedirectInitialHeader" | "onboardingRedirectInitialDescriptionP1" | "onboardingRedirectInitialCtaButton" | "onboardingRedirectInProgressHeader" | "onboardingRedirectInProgressDescriptionP1" | "onboardingRedirectInProgressCtaButton" | "onboardingRedirectErrorsHeader" | "onboardingRedirectErrorsDescriptionP1" | "onboardingRedirectErrorsDescriptionP2" | "onboardingRedirectErrorsCtaButton" | "onboardingRedirectFinishedHeader" | "onboardingRedirectFinishedDescriptionP1" | "onboardingRedirectFinishedCtaButton" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError";
9
+ export declare const getKeyForField: (fieldName: string, country: CountryCode) => "number" | "iban" | "SST" | "RFC" | "CNPJ" | "MBO" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "otherAddressInformation" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "formatIsCorrect" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "last4DigitsOfSocialSecurityNumber" | "socialSecurityNumber" | "socialInsuranceNumber" | "codiceFiscale" | "personnummer" | "dni" | "nie" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "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" | "passportExpiryDate" | "proofOfNationality" | "identityNumberExempt" | "identityNumberExempt__US" | "identityNumberExempt__CA" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "partnershipIncorporated" | "partnershipUnincorporated" | "partnershipIncorporatedDescription" | "partnershipUnincorporatedDescription" | "partnershipIncorporatedNewEntryFlowDescription" | "partnershipUnincorporatedNewEntryFlowDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporated" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "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" | "vatAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMICHelper" | "stockISINHelper" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "accountDetailsDescription" | "provideFewDetailsAboutYourself" | "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" | "pccr" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "downloadACopy" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankAccountHasToBeInYourName" | "orSoleProprietorshipName" | "bankAccountHasToBeInYourCompanyName" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "swiftCode" | "bic" | "bicSwift" | "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" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "stateIssuedProofOfIdentityCard" | "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" | "hasBankStampOrBankSignature" | "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" | "companyNumberNZ" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "CCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "mvanummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "vatRegistrationNumber" | "regonKrsNumber" | "registrationNumber" | "identificationNumber" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "regon" | "krsNumber" | "registrationNumber__nonProfit__FR" | "rnaNumber" | "siret" | "registrationNumber__PR" | "employerIdentificationNumber" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "zentralesVereinsregisterId" | "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" | "objectOfCharitableTrust" | "objectOfTrust" | "pleaseProvideThePurposeOfCharitableTrust" | "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" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorshipDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "whatBestDescribesYourBusinessSetup" | "whichLegalArrangementDoesYourBusinessHave" | "sorryWeCantSetUpAnAccountForYou" | "changeYourBusinessSetup" | "someInformationWillNotBeSaved" | "yesChange" | "youAreNotSoleProprietorAndUseBankAccount" | "soleProprietorship" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "company" | "youUseCompanyBankAccount" | "trust" | "trustPartnershipOrAssociation" | "whatTypeOfTrusteeAreYou" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "individualTrustee" | "companyTrustee" | "association" | "partnership" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "jointlyOwnedBusinessWhereTwoOrMorePeopleOperateAndShareProfits" | "groupOfPeopleActingTogetherForNonCommercialPurpose" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "myName" | "setUpYourAccount" | "yourBusinessSetup" | "myNameDescription" | "mySoleProprietorName" | "mySoleProprietorNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "letUsKnowTheBankAccountToSendReceiveFunds" | "bankAccount" | "bankAccountDetails" | "addExtraBankAccount" | "addAndVerifyYourBankDetails" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "btwNummer" | "momsregistreringsnummerOrStamregister" | "momsregistreringsnummerCVR" | "stamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "enterNDigitsForExample" | "enterNCharactersForExample" | "enterLastNDigitsForExample" | "enterXToYDigitsForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXOrYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterXToYLettersAndThenWToZDigitsForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingXToYDigitsForExample" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "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" | "uploadOneOfTheseDocuments" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "businessRegistrationDocument__FR" | "taxFiling" | "taxFiling__US" | "einVerificationLetter" | "areYouACompany" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "wouldYouLikeToSignUpAsCompanyInstead" | "areYouAnIndividual" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "wouldYouLikeToSignUpAsIndividualInstead" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "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" | "doNotHaveBusinessNumber" | "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" | "missingMultipleDecisionMakers" | "legalCompanyName" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__HK" | "taxInformationNumber" | "taxInformationNumber__HK" | "stockExchangeMIC" | "stockExchangeMIC__US" | "stockExchangeMIC__placeholder__US" | "stockExchangeMIC__helperText" | "stockISIN" | "stockISIN__US" | "stockISIN__placeholder__US" | "stockISIN__helperText" | "companyLookupResultsHeader" | "companyLookupResultsHeader__searching" | "companyLookupResultsHeader__verifying" | "companyLookupResultsHeader__noResults" | "companyLookupResultsHeader__results" | "companyLookupResultsHeader__searchFailure" | "companyLookupResultsHeaderDescription__noResults" | "companyLookupResultsHeaderDescription__results" | "companyLookupResultsHeaderDescription__searchFailure" | "companyLookupResultsListAlert__title__verified" | "companyLookupResultsListAlert__title__warning" | "companyLookupResultsListAlert__title__error" | "companyLookupResultsListAlert__description__warning" | "companyBasicsFormName" | "companyRegistrationAddressFormName" | "companyRegistrationAddressFormDescription" | "companyStructureFormName" | "companyStructureFormDescription" | "companyOtherDetailsFormName" | "companyRegistrationDocumentFormName" | "companyRegistrationDocumentFormDescription" | "companyTaxDocumentFormName" | "companyTaxDocumentFormDescription" | "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_3052" | "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_5067" | "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_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8189" | "errorMessage_2_8193" | "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_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_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_185" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "introductionScreenPrologueTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenIndividualTitle" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenDecisionMakerTitle" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenTrustTitle" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenAccountTitle" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "oib" | "onboardingRedirectInitialHeader" | "onboardingRedirectInitialDescriptionP1" | "onboardingRedirectInitialCtaButton" | "onboardingRedirectInProgressHeader" | "onboardingRedirectInProgressDescriptionP1" | "onboardingRedirectInProgressCtaButton" | "onboardingRedirectErrorsHeader" | "onboardingRedirectErrorsDescriptionP1" | "onboardingRedirectErrorsDescriptionP2" | "onboardingRedirectErrorsCtaButton" | "onboardingRedirectFinishedHeader" | "onboardingRedirectFinishedDescriptionP1" | "onboardingRedirectFinishedCtaButton" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError";
10
10
  /**
11
11
  * Returns the address schema of the selected country or the default address schema.
12
12
  * @param country - The selected country
@@ -69,5 +69,5 @@ type PropsFromConfiguration<FormSchema> = Required<Pick<BaseOuterFormProps<FormS
69
69
  * }
70
70
  * ```
71
71
  */
72
- export declare function getPropsFromConfigurations<FormSchema extends object>(scenarioConfiguration: FieldConfigurations<FormSchema> | undefined, forms: FormList, remediationActions: Remediation[], dataMissingErrors: VerificationError[], fieldsWithExistingData: AnyTLDSFieldName[], customRules?: {}, customLabels?: {}): PropsFromConfiguration<FormSchema> | undefined;
72
+ export declare function getPropsFromConfigurations<FormSchema extends object>(scenarioConfiguration: FieldConfigurations<FormSchema> | undefined, forms: FormList, remediationActions: Remediation[], dataMissingErrors: VerificationError[], fieldsWithExistingData: AnyTLDSFieldName[], country: CountryCode, customRules?: {}, customLabels?: {}): PropsFromConfiguration<FormSchema> | undefined;
73
73
  export {};
@@ -1020,6 +1020,7 @@ export declare const defaultTranslation: {
1020
1020
  errorMessage_1_5051: string;
1021
1021
  errorMessage_1_5052: string;
1022
1022
  errorMessage_1_5053: string;
1023
+ errorMessage_1_5067: string;
1023
1024
  errorMessage_1_6000: string;
1024
1025
  errorMessage_1_6001: string;
1025
1026
  errorMessage_1_6002: string;
@@ -1124,6 +1125,8 @@ export declare const defaultTranslation: {
1124
1125
  remediationMessage_1_509: string;
1125
1126
  remediationMessage_1_510: string;
1126
1127
  remediationMessage_1_511: string;
1128
+ remediationMessage_1_512: string;
1129
+ remediationMessage_1_513: string;
1127
1130
  remediationMessage_1_600: string;
1128
1131
  remediationMessage_1_601: string;
1129
1132
  remediationMessage_1_602: string;
@@ -1,5 +1,6 @@
1
1
  import { ExperimentName } from '../../core/Context/ExperimentContext/types';
2
2
  import { LegalEntity } from '../../core/models/api/legal-entity';
3
+ import { CountryCode } from '../../core/models/country-code';
3
4
  import { CapabilityProblems } from '../../core/models/errors/capability-problems';
4
5
  import { EntityProblems } from '../../core/models/errors/entity-problems';
5
6
  import { Remediation } from '../../core/models/errors/remediation';
@@ -52,7 +53,7 @@ import { RemediationActionContext } from '../../core/models/errors/remediation-a
52
53
  * ```
53
54
  *
54
55
  * */
55
- declare function getCapabilityProblems(response: LegalEntity, isExperimentEnabled?: (key: ExperimentName) => boolean): CapabilityProblems;
56
+ declare function getCapabilityProblems(response: LegalEntity, country: CountryCode, isExperimentEnabled?: (key: ExperimentName) => boolean): CapabilityProblems;
56
57
  declare const getComponentMappingFromLEFieldPath: (context: RemediationActionContext, entityType: EntityProblems['entityType'], isExperimentEnabled?: (key: ExperimentName) => boolean) => any;
57
58
  export declare const remediationHasFileUploadField: (remediation: Remediation) => boolean;
58
59
  export { getCapabilityProblems, getComponentMappingFromLEFieldPath };
@@ -4,4 +4,4 @@ import { DecisionMakerType } from '../core/models/api/decision-maker-type';
4
4
  import { CountryCode } from '../core/models/country-code';
5
5
  import { TrustMemberGuidanceLabel } from '../core/models/trust';
6
6
  export declare const iconStatus: (current: number, min: number, max: number) => EntityStatus;
7
- export declare const getEntityStatusRuleDescription: (country: CountryCode, currentTask: TaskTypes, entityLabel: TrustMemberGuidanceLabel | DecisionMakerType) => "number" | "iban" | "SST" | "RFC" | "CNPJ" | "MBO" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "otherAddressInformation" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "formatIsCorrect" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "last4DigitsOfSocialSecurityNumber" | "socialSecurityNumber" | "socialInsuranceNumber" | "codiceFiscale" | "personnummer" | "dni" | "nie" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "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" | "passportExpiryDate" | "proofOfNationality" | "identityNumberExempt" | "identityNumberExempt__US" | "identityNumberExempt__CA" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "partnershipIncorporated" | "partnershipUnincorporated" | "partnershipIncorporatedDescription" | "partnershipUnincorporatedDescription" | "partnershipIncorporatedNewEntryFlowDescription" | "partnershipUnincorporatedNewEntryFlowDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporated" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "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" | "vatAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMICHelper" | "stockISINHelper" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "accountDetailsDescription" | "provideFewDetailsAboutYourself" | "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" | "pccr" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "downloadACopy" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankAccountHasToBeInYourName" | "orSoleProprietorshipName" | "bankAccountHasToBeInYourCompanyName" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "swiftCode" | "bic" | "bicSwift" | "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" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "stateIssuedProofOfIdentityCard" | "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" | "hasBankStampOrBankSignature" | "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" | "companyNumberNZ" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "CCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "mvanummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "vatRegistrationNumber" | "regonKrsNumber" | "registrationNumber" | "identificationNumber" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "regon" | "krsNumber" | "registrationNumber__nonProfit__FR" | "rnaNumber" | "siret" | "registrationNumber__PR" | "employerIdentificationNumber" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "zentralesVereinsregisterId" | "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" | "objectOfCharitableTrust" | "objectOfTrust" | "pleaseProvideThePurposeOfCharitableTrust" | "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" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorshipDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "whatBestDescribesYourBusinessSetup" | "whichLegalArrangementDoesYourBusinessHave" | "sorryWeCantSetUpAnAccountForYou" | "changeYourBusinessSetup" | "someInformationWillNotBeSaved" | "yesChange" | "youAreNotSoleProprietorAndUseBankAccount" | "soleProprietorship" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "company" | "youUseCompanyBankAccount" | "trust" | "trustPartnershipOrAssociation" | "whatTypeOfTrusteeAreYou" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "individualTrustee" | "companyTrustee" | "association" | "partnership" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "jointlyOwnedBusinessWhereTwoOrMorePeopleOperateAndShareProfits" | "groupOfPeopleActingTogetherForNonCommercialPurpose" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "myName" | "setUpYourAccount" | "yourBusinessSetup" | "myNameDescription" | "mySoleProprietorName" | "mySoleProprietorNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "letUsKnowTheBankAccountToSendReceiveFunds" | "bankAccount" | "bankAccountDetails" | "addExtraBankAccount" | "addAndVerifyYourBankDetails" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "btwNummer" | "momsregistreringsnummerOrStamregister" | "momsregistreringsnummerCVR" | "stamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "enterNDigitsForExample" | "enterNCharactersForExample" | "enterLastNDigitsForExample" | "enterXToYDigitsForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXOrYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterXToYLettersAndThenWToZDigitsForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingXToYDigitsForExample" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "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" | "uploadOneOfTheseDocuments" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "businessRegistrationDocument__FR" | "taxFiling" | "taxFiling__US" | "einVerificationLetter" | "areYouACompany" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "wouldYouLikeToSignUpAsCompanyInstead" | "areYouAnIndividual" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "wouldYouLikeToSignUpAsIndividualInstead" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "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" | "doNotHaveBusinessNumber" | "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" | "missingMultipleDecisionMakers" | "legalCompanyName" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__HK" | "taxInformationNumber" | "taxInformationNumber__HK" | "stockExchangeMIC" | "stockExchangeMIC__US" | "stockExchangeMIC__placeholder__US" | "stockExchangeMIC__helperText" | "stockISIN" | "stockISIN__US" | "stockISIN__placeholder__US" | "stockISIN__helperText" | "companyLookupResultsHeader" | "companyLookupResultsHeader__searching" | "companyLookupResultsHeader__verifying" | "companyLookupResultsHeader__noResults" | "companyLookupResultsHeader__results" | "companyLookupResultsHeader__searchFailure" | "companyLookupResultsHeaderDescription__noResults" | "companyLookupResultsHeaderDescription__results" | "companyLookupResultsHeaderDescription__searchFailure" | "companyLookupResultsListAlert__title__verified" | "companyLookupResultsListAlert__title__warning" | "companyLookupResultsListAlert__title__error" | "companyLookupResultsListAlert__description__warning" | "companyBasicsFormName" | "companyRegistrationAddressFormName" | "companyRegistrationAddressFormDescription" | "companyStructureFormName" | "companyStructureFormDescription" | "companyOtherDetailsFormName" | "companyRegistrationDocumentFormName" | "companyRegistrationDocumentFormDescription" | "companyTaxDocumentFormName" | "companyTaxDocumentFormDescription" | "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_3052" | "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_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8189" | "errorMessage_2_8193" | "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_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_185" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "introductionScreenPrologueTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenIndividualTitle" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenDecisionMakerTitle" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenTrustTitle" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenAccountTitle" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "oib" | "onboardingRedirectInitialHeader" | "onboardingRedirectInitialDescriptionP1" | "onboardingRedirectInitialCtaButton" | "onboardingRedirectInProgressHeader" | "onboardingRedirectInProgressDescriptionP1" | "onboardingRedirectInProgressCtaButton" | "onboardingRedirectErrorsHeader" | "onboardingRedirectErrorsDescriptionP1" | "onboardingRedirectErrorsDescriptionP2" | "onboardingRedirectErrorsCtaButton" | "onboardingRedirectFinishedHeader" | "onboardingRedirectFinishedDescriptionP1" | "onboardingRedirectFinishedCtaButton" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError";
7
+ export declare const getEntityStatusRuleDescription: (country: CountryCode, currentTask: TaskTypes, entityLabel: TrustMemberGuidanceLabel | DecisionMakerType) => "number" | "iban" | "SST" | "RFC" | "CNPJ" | "MBO" | "CVR-nummer" | "close" | "individual" | "payoutAccount" | "payinAccount" | "firstName" | "lastName" | "country" | "street" | "otherAddressInformation" | "postalCode" | "city" | "cityTown" | "state" | "region" | "provinceOrTerritory" | "selectProvinceOrTerritory" | "zipCode" | "apartmentSuite" | "apartmentSuiteOptional" | "phoneNumber" | "email" | "birthdate" | "code" | "invalidEmail" | "pleaseEnterAPhoneNumberPrefixedWithCountryCode" | "invalidPhoneNumber" | "birthDate" | "idNumber" | "selectState" | "selectCountry" | "search" | "noOptionsFound" | "SSNFormatUS" | "SSNFormatUS9Digits" | "SINFormatCA" | "invalidFormat" | "formatIsCorrect" | "fieldIsRequired" | "tooManyFiles" | "duplicatedFiles" | "unsupportedFiletype" | "maximumFileSizeExceeded" | "personalDetails" | "invalidBirthDate" | "address" | "contactDetails" | "uploadDocument" | "individualDetails" | "last4DigitsOfSocialSecurityNumber" | "socialSecurityNumber" | "socialInsuranceNumber" | "codiceFiscale" | "personnummer" | "dni" | "nie" | "peselNumber" | "detCentralePersonregister" | "codNumericPersonal" | "cadastroDePessoasFisicas" | "invalidFormatExpects" | "invalidFormatForAuPassportNumber" | "invalidFormatForNZPassportNumber" | "invalidFormatForAuDriversLicenseNumber" | "invalidFormatForNZDriversLicenseNumber" | "invalidFormatForAuDriversLicenseCardNumber" | "invalidFormatForNZDriversLicenseCardNumber" | "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" | "passportExpiryDate" | "proofOfNationality" | "identityNumberExempt" | "identityNumberExempt__US" | "identityNumberExempt__CA" | "uploadDocumentForSsn" | "uploadDocumentForNric" | "operationalAddressHeader" | "operationalAddressHeaderDescription" | "operationalAddressIsSame" | "operationalAddressIsSameItemName" | "operationalAddressIsNotSameItemName" | "verifyPrefilledInfoIsCorrect" | "legalStructureHeader" | "whatTypeOfCompanyDoYouHave" | "privateCompanyTitle" | "privateCompanyDescription" | "publicCompanyTitle" | "publicCompanyDescription" | "partnershipIncorporated" | "partnershipUnincorporated" | "partnershipIncorporatedDescription" | "partnershipUnincorporatedDescription" | "partnershipIncorporatedNewEntryFlowDescription" | "partnershipUnincorporatedNewEntryFlowDescription" | "nonProfitOrCharitableOrgTitle" | "nonProfitOrCharitableOrgDescription" | "governmentalOrganizationTitle" | "governmentalOrganizationDescription" | "associationIncorporated" | "associationIncorporatedDescription" | "jobTitle" | "legalStructure" | "entityType" | "registrationDetails" | "registeredAddress" | "registrationAddress" | "registeredAddressHeaderDescription" | "registeredAddressHeaderDescription__NL" | "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" | "vatAbsenceReason" | "belowTaxThreshold" | "industryExemption" | "validationPleaseEnterAValidRegistrationNumber" | "validationPleaseEnterAValidRegistrationNumberWithFormat" | "validationPleaseEnterAValidVatNumber" | "validationPleaseEnterAValidIdNumberWithFormat" | "validationPleaseEnterAValidVatNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumberWithFormat" | "validationPleaseEnterAValidTaxIdNumber" | "validationPleaseEnterAValidIRDNumber" | "aValidAbnShouldBe11Digits" | "aValidUenOrGstShouldBe9To10Characters" | "aValidBrnShouldBe8Digits" | "validationPleaseEnterAValidUen" | "validationPleaseEnterAValidIban" | "yourIbanShouldBeginWith_" | "validation8Or11Characters" | "validationCharacters" | "validationDigitsBetween" | "validationDigits" | "enterValidRegistrationNumber" | "stockExchangeMICHelper" | "stockISINHelper" | "validationPleaseEnterAValidMarketIdentifier" | "validationPleaseEnterAValidStockISIN" | "shareholderDocument" | "role" | "selectAllTheRolesThatThisDecisionMakerHolds" | "selectTheApplicableRoles" | "back" | "next" | "submit" | "submitSuccessful" | "submitFailed" | "submitReviewOfYourData" | "completeReview" | "submitReview" | "undoWithTimer" | "removing" | "cantSetUpAcccount" | "accountCantBeSetUp" | "pleaseNote" | "byClickingSubmitReview" | "nameAndCountry" | "companyCountry" | "accountDetailsDescription" | "provideFewDetailsAboutYourself" | "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" | "pccr" | "businessAccountTerms" | "cardUserTerms" | "franchiseesTAndCs" | "pciDssQuestionnaire" | "serviceAgreementSignedSuccessfully" | "serviceAgreementSignFailed" | "failedToGetServiceAgreementStatus" | "failedToGetServiceAgreement" | "failedToGetServiceAgreementInSelectedLanguageFallbackToEn" | "iHaveReadAndIAcceptTheseTerms" | "verified" | "signed" | "invalidRole" | "unableToVerifyTheIdNumber" | "download" | "downloadACopy" | "accountHolder" | "accountHolderDescriptionCompany" | "accountHolderDescriptionIndividual" | "accountHolderDescriptionSoleProp" | "bankAccountToHaveSameNameAsTrust" | "bankAccountHasToBeInYourName" | "orSoleProprietorshipName" | "bankAccountHasToBeInYourCompanyName" | "bankCountry" | "bankAccountCountry" | "currency" | "currencyCode" | "currencyPlaceholder" | "bankAccountNumber" | "swiftCode" | "bic" | "bicSwift" | "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" | "goToIntroduction" | "goToOverview" | "goToOverviewFromIntroduction" | "saveAndGoToOverview" | "pleaseEnsureTheFollowing" | "edit" | "remove" | "toggleAssociationMenu" | "editDecisionMakerDetails" | "removeDecisionMaker" | "verifyDecisionMakerDetails" | "goToMenu" | "confirm" | "goToDecisionMakers" | "theSubmitWasSuccessful" | "thereWasAnErrorTryAgain" | "stateIssuedProofOfIdentityCard" | "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" | "hasBankStampOrBankSignature" | "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" | "companyNumberNZ" | "enterpriseNumber" | "NIP" | "NIPC" | "numerodeIVA" | "NIF" | "uen" | "gst" | "iDoNotHaveGst" | "nric" | "hkid" | "NIFdeIVA" | "partitaIVA" | "organisationsnummer" | "momsregistreringsnummer" | "vatNummerMomsregistreringsnummerOrMomsnummer" | "CCIAA" | "UST-ID" | "DIC" | "ICO" | "USt-IdNr" | "handelsregisternummer" | "NumeroDeTVA" | "organisasjonsnummer" | "mvanummer" | "verificationErrorMessage" | "remediationFormErrorMessage" | "youHaveUnsavedChanges" | "areYouSureToLeave" | "cancel" | "save&Leave" | "leave" | "taxIdNumber" | "companyRegistrationNumber" | "companyRegistrationNumber__HK" | "euVatNumber" | "vatNumber" | "vatRegistrationNumber" | "regonKrsNumber" | "registrationNumber" | "identificationNumber" | "whichTypeOfRegistrationNumberDoYouHave" | "whichTypeOfIdNumberDoYouHave" | "whichTypeOfTaxIdNumberDoYouHave" | "regon" | "krsNumber" | "registrationNumber__nonProfit__FR" | "rnaNumber" | "siret" | "registrationNumber__PR" | "employerIdentificationNumber" | "charityNumber" | "firmenbuchnummer" | "firmenbuchnummerOrZVR" | "zentralesVereinsregisterId" | "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" | "objectOfCharitableTrust" | "objectOfTrust" | "pleaseProvideThePurposeOfCharitableTrust" | "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" | "constitutionalDocument__header" | "constitutionalDocument__headerDescription" | "solePropDetails" | "soleProprietorDetails" | "soleProprietorshipDetails" | "selectAccountHolder" | "nameOfBankAccountHolder" | "whatBestDescribesYourBusinessSetup" | "whichLegalArrangementDoesYourBusinessHave" | "sorryWeCantSetUpAnAccountForYou" | "changeYourBusinessSetup" | "someInformationWillNotBeSaved" | "yesChange" | "youAreNotSoleProprietorAndUseBankAccount" | "soleProprietorship" | "youAreRegisteredSoleProprietorAndUseBankAccount" | "company" | "youUseCompanyBankAccount" | "trust" | "trustPartnershipOrAssociation" | "whatTypeOfTrusteeAreYou" | "youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation" | "individualTrustee" | "companyTrustee" | "association" | "partnership" | "youAreTrusteeManagingTheTrustForBeneficiaries" | "jointlyOwnedBusinessWhereTwoOrMorePeopleOperateAndShareProfits" | "groupOfPeopleActingTogetherForNonCommercialPurpose" | "ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations" | "needHelpYouCanAlwaysReachOutToCustomerSupport" | "myName" | "setUpYourAccount" | "yourBusinessSetup" | "myNameDescription" | "mySoleProprietorName" | "mySoleProprietorNameDescription" | "theCompanyIWorkFor" | "theCompanyIWorkForDescription" | "aTrust" | "aTrustDescription" | "aPartnership" | "aPartnershipDescription" | "anAssociation" | "anAssociationDescription" | "legalNameOfSoleProprietor" | "legalNameOfSoleProprietorship" | "letUsKnowTheBankAccountToSendReceiveFunds" | "bankAccount" | "bankAccountDetails" | "addExtraBankAccount" | "addAndVerifyYourBankDetails" | "failedToFetchSoleProp" | "uniqueIdentificationCode" | "identifikacionenNomerDDS" | "MBS" | "PDVIdBrojOIB" | "cyRegistrationNumber" | "arithmosEngraphes" | "btwNummer" | "momsregistreringsnummerOrStamregister" | "momsregistreringsnummerCVR" | "stamregister" | "registrikood" | "kaibemaksukohustuslaseNumber" | "YTunnus" | "arvonlisaveronumeroMervardesskattenummer" | "GEMI-number" | "grTaxId" | "huRegistrationNumber" | "huTaxId" | "lvRegistrationNumber" | "lvTaxId" | "ltRegistrationNumber" | "mcRegistrationNumberSoleProp" | "PVMmoketojoKodas" | "luRegistrationNumber" | "numeroDIdentificationALATaxe" | "numarOrdineRegistrulComertului" | "codulDeIdentificareFiscala" | "skRegistrationNumber" | "skTaxId" | "siRegistrationNumber" | "siTaxId" | "chRegistrationNumber" | "mcRegistrationNumber" | "liRegistrationNumber" | "Mehrwertsteuernummer" | "enterNDigitsForExample" | "enterNCharactersForExample" | "enterLastNDigitsForExample" | "enterXToYDigitsForExample" | "enterXOrYDigitsForExample" | "enterXToYCharactersForExample" | "enterXOrYCharactersForExample" | "enterXToYCharactersWithAMixForExample" | "enterAMaximumOfNDigitsForExample" | "enterAMaximumOfNMoreDigitsForExample" | "enterAMaximumOfNCharactersForExample" | "enterAMaximumOfNCharactersWithAMixForExample" | "enterNCharactersWithAMixForExample" | "enterNDigitsAndThen1LetterForExample" | "enter1LetterAndThenNDigitsForExample" | "enter1LetterAndThenXToYDigitsForExample" | "enterNLettersAndThenXToYDigitsForExample" | "enterXToYLettersAndThenWToZDigitsForExample" | "enterTheRemainingNDigitsForExample" | "enterTheRemainingXToYDigitsForExample" | "enterTheRemainingNCharactersForExample" | "enterTheRemainingXToYCharactersForExample" | "enterTheRemainingNDigitsThenXToYLettersForExample" | "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" | "uploadOneOfTheseDocuments" | "documentIssuedWithinLastYear" | "learnMore" | "doingBusinessAsNameFiling" | "doingBusinessAsNameFiling__FR" | "doingBusinessAsNameFiling__US" | "businessRegistrationDocument__FR" | "taxFiling" | "taxFiling__US" | "einVerificationLetter" | "areYouACompany" | "singingUpAsIndividualButLooksLikeYouAreACompany" | "wouldYouLikeToSignUpAsCompanyInstead" | "areYouAnIndividual" | "singingUpAsCompanyButLooksLikeYouAreAnIndividual" | "wouldYouLikeToSignUpAsIndividualInstead" | "continue" | "noGoBack" | "continueCompany" | "continueIndividual" | "addManually" | "searchAddress" | "startTypingTheAddress" | "addresses" | "loading" | "businessIncorporationNumber" | "doNotHaveBusinessIncorporationNumber" | "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" | "doNotHaveBusinessNumber" | "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" | "missingMultipleDecisionMakers" | "legalCompanyName" | "legalCompanyName__helperText" | "legalCompanyName__helperText__AU" | "legalCompanyName__helperText__NL" | "legalCompanyName__helperText__US" | "legalCompanyName__helperText__SG" | "legalCompanyName__helperText__HK" | "taxInformationNumber" | "taxInformationNumber__HK" | "stockExchangeMIC" | "stockExchangeMIC__US" | "stockExchangeMIC__placeholder__US" | "stockExchangeMIC__helperText" | "stockISIN" | "stockISIN__US" | "stockISIN__placeholder__US" | "stockISIN__helperText" | "companyLookupResultsHeader" | "companyLookupResultsHeader__searching" | "companyLookupResultsHeader__verifying" | "companyLookupResultsHeader__noResults" | "companyLookupResultsHeader__results" | "companyLookupResultsHeader__searchFailure" | "companyLookupResultsHeaderDescription__noResults" | "companyLookupResultsHeaderDescription__results" | "companyLookupResultsHeaderDescription__searchFailure" | "companyLookupResultsListAlert__title__verified" | "companyLookupResultsListAlert__title__warning" | "companyLookupResultsListAlert__title__error" | "companyLookupResultsListAlert__description__warning" | "companyBasicsFormName" | "companyRegistrationAddressFormName" | "companyRegistrationAddressFormDescription" | "companyStructureFormName" | "companyStructureFormDescription" | "companyOtherDetailsFormName" | "companyRegistrationDocumentFormName" | "companyRegistrationDocumentFormDescription" | "companyTaxDocumentFormName" | "companyTaxDocumentFormDescription" | "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_3052" | "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_5067" | "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_2_8064" | "errorMessage_2_8067" | "errorMessage_2_8189" | "errorMessage_2_8193" | "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_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_2_123" | "remediationMessage_2_124" | "remediationMessage_2_151" | "remediationMessage_2_185" | "remediationMessage_3_100" | "sameNameAsLegalName" | "whereCanIFindTheseNumbersOnMyDriversLicense" | "whereToFindNumbersOnDriversLicense" | "whereToFindNumbersOnDriversLicense__NZ" | "iStillCantFindIt" | "patriotActDisclosureTitle" | "patriotActDisclosureTextParagraph1" | "patriotActDisclosureTextParagraph2" | "trusteeAsTrusteeForTrust" | "trusteeAsTrusteeForTrustDoingBusinessAs" | "trustDeed" | "trustInstrument" | "makeSureToHaveYourTrustDeed" | "maintenanceModeMessage" | "individualTrusteeDetails" | "companyTrusteeDetails" | "trusteePersonalDetails" | "byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms" | "whichOfTheseApplyToTheSettlor" | "contributionBelowThreshold" | "professionalServiceProvider" | "deceased" | "noneOfTheAbove" | "settlorExemptionReason" | "otherInformation" | "firstNameOfSettlor" | "lastNameOfSettlor" | "enterSettlorsFirstNameExactlyAsItAppearsInID" | "enterSettlorsLastNameExactlyAsItAppearsInID" | "introductionScreenPrologueTitle" | "introductionScreenPrologueDescriptionP1" | "introductionScreenPrologueDescriptionP2" | "introductionScreenCompanyTitle" | "introductionScreenCompanyDescriptionP1" | "introductionScreenCompanyDescriptionP2" | "introductionScreenCompanyDescriptionLI1" | "introductionScreenIndividualTitle" | "introductionScreenIndividualDescriptionP1" | "introductionScreenIndividualDescriptionP2" | "introductionScreenIndividualDescriptionLI1" | "introductionScreenIndividualDescriptionLI2" | "introductionScreenIndividualDescriptionLI3" | "introductionScreenDecisionMakerTitle" | "introductionScreenDecisionMakerDescriptionP1" | "introductionScreenDecisionMakerDescriptionP2" | "introductionScreenDecisionMakerDescriptionLI1" | "introductionScreenDecisionMakerDescriptionLI2" | "introductionScreenDecisionMakerDescriptionLI3" | "introductionScreenSoleProprietorCompanyTitle" | "introductionScreenSoleProprietorCompanyDescriptionP1" | "introductionScreenSoleProprietorCompanyDescriptionP2" | "introductionScreenSoleProprietorCompanyDescriptionLI1" | "introductionScreenTrustTitle" | "introductionScreenTrustDescriptionP1" | "introductionScreenTrustDescriptionP2" | "introductionScreenTrustDescriptionLI1" | "introductionScreenTrustMemberTitle" | "introductionScreenTrustMemberDescriptionP1" | "introductionScreenTrustMemberDescriptionP2" | "introductionScreenTrustMemberDescriptionLI1" | "introductionScreenTrustMemberDescriptionLI2" | "introductionScreenTrustMemberDescriptionLI3" | "introductionScreenAccountTitle" | "introductionScreenAccountDescriptionP1" | "introductionScreenAccountDescriptionP2" | "introductionScreenEpilogueTitle" | "introductionScreenEpilogueDescriptionP1" | "introductionScreenEpilogueDescriptionP2" | "oib" | "onboardingRedirectInitialHeader" | "onboardingRedirectInitialDescriptionP1" | "onboardingRedirectInitialCtaButton" | "onboardingRedirectInProgressHeader" | "onboardingRedirectInProgressDescriptionP1" | "onboardingRedirectInProgressCtaButton" | "onboardingRedirectErrorsHeader" | "onboardingRedirectErrorsDescriptionP1" | "onboardingRedirectErrorsDescriptionP2" | "onboardingRedirectErrorsCtaButton" | "onboardingRedirectFinishedHeader" | "onboardingRedirectFinishedDescriptionP1" | "onboardingRedirectFinishedCtaButton" | "onboardingRedirectLinkError" | "onboardingRedirectOpenError";
@@ -173,11 +173,13 @@ export declare const remediationCompanyApiKeyMapping: {
173
173
  'organization.registeredAddress': string;
174
174
  registrationDocument: string;
175
175
  vatDocument: string;
176
+ proofOfOrganizationTaxInfo: string;
176
177
  };
177
178
  export declare const remediationCompanySearchApiKeyMapping: {
178
179
  'organization.registeredAddress': string;
179
180
  registrationDocument: string;
180
181
  vatDocument: string;
182
+ proofOfOrganizationTaxInfo: string;
181
183
  };
182
184
  export declare const remediationIndividualApiKeyMapping: {
183
185
  'individual.residentialAddress': string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adyen/kyc-components",
3
- "version": "2.30.0",
3
+ "version": "2.30.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "files": [