@swan-io/shared-business 8.1.2 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/RIB.d.ts +4 -0
- package/src/components/RIB.js +1 -0
- package/src/components/SupportingDocumentCollection.d.ts +11 -1
- package/src/components/SupportingDocumentCollection.js +14 -6
- package/src/locales/de.json +5 -0
- package/src/locales/en.json +5 -0
- package/src/locales/es.json +5 -0
- package/src/locales/fi.json +5 -0
- package/src/locales/fr.json +5 -0
- package/src/locales/it.json +5 -0
- package/src/locales/nl.json +5 -0
- package/src/locales/pt.json +5 -0
- package/src/utils/i18n.d.ts +1 -1
package/package.json
CHANGED
package/src/components/RIB.d.ts
CHANGED
|
@@ -31,6 +31,10 @@ type RIBv1Props = {
|
|
|
31
31
|
accountCountry: "NLD";
|
|
32
32
|
bankKey: string;
|
|
33
33
|
bankNumber: string;
|
|
34
|
+
} | {
|
|
35
|
+
accountCountry: "ITA";
|
|
36
|
+
agency: string;
|
|
37
|
+
bankNumber: string;
|
|
34
38
|
});
|
|
35
39
|
export type RIBProps = RIBv1Props;
|
|
36
40
|
export declare const RIB: (props: RIBProps) => import("react/jsx-runtime").JSX.Element;
|
package/src/components/RIB.js
CHANGED
|
@@ -78,6 +78,7 @@ const RIBv1 = ({ accountHolderAddress, bank, bankAddress, bic, iban, partnerColo
|
|
|
78
78
|
.with({ accountCountry: "DEU" }, ({ accountNumber }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.accountNumber"), value: accountNumber })] })))
|
|
79
79
|
.with({ accountCountry: "ESP" }, ({ agency, bankNumber, nationalCode }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.nationalCode"), value: nationalCode }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.number"), value: bankNumber })] })))
|
|
80
80
|
.with({ accountCountry: "NLD" }, ({ bankKey, bankNumber }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.number"), value: bankNumber }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.key"), value: bankKey })] })))
|
|
81
|
+
.with({ accountCountry: "ITA" }, ({ agency, bankNumber }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.number"), value: bankNumber })] })))
|
|
81
82
|
.exhaustive() })] }), _jsx(Separator, {}), _jsxs(View, { style: styles.half, children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Item, { kind: "address", color: "partner", label: t("rib.address"), value: [
|
|
82
83
|
bankAddress.name,
|
|
83
84
|
bankAddress.address,
|
|
@@ -19,6 +19,14 @@ export type UploadOutput = {
|
|
|
19
19
|
}[];
|
|
20
20
|
};
|
|
21
21
|
type SupportingDocumentCollectionStatus = "WaitingForDocument" | "PendingReview" | "Approved" | "Canceled" | "Rejected";
|
|
22
|
+
type PurposeMetadata = {
|
|
23
|
+
title: string;
|
|
24
|
+
values: {
|
|
25
|
+
type?: "text" | "copy";
|
|
26
|
+
title: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}[];
|
|
29
|
+
};
|
|
22
30
|
type Props<Purpose extends string> = {
|
|
23
31
|
status: SupportingDocumentCollectionStatus;
|
|
24
32
|
generateUpload: (input: UploadInput<Purpose>) => Future<Result<UploadOutputWithId<UploadOutput>, unknown>>;
|
|
@@ -30,6 +38,8 @@ type Props<Purpose extends string> = {
|
|
|
30
38
|
templateLanguage?: string;
|
|
31
39
|
showIds?: boolean;
|
|
32
40
|
readOnly?: boolean;
|
|
41
|
+
getPurposeMetadata?: (purose: Purpose) => PurposeMetadata | undefined;
|
|
42
|
+
readonlyDocumentPurposes?: Purpose[];
|
|
33
43
|
};
|
|
34
44
|
export declare const getSupportingDocumentPurposeLabel: (purpose: string) => string;
|
|
35
45
|
export declare const getSupportingDocumentPurposeDescriptionLabel: (purpose: string) => string;
|
|
@@ -37,7 +47,7 @@ export type SupportingDocumentCollectionRef<Purpose extends string> = {
|
|
|
37
47
|
areAllRequiredDocumentsFilled: () => boolean;
|
|
38
48
|
addDocument: (document: Document<Purpose>) => void;
|
|
39
49
|
};
|
|
40
|
-
export declare const SupportingDocumentCollectionWithRef: <Purpose extends string>({ documents, generateUpload, uploadFile, requiredDocumentPurposes, templateLanguage, status, onRemoveFile, showIds, readOnly, }: Props<Purpose>, ref: Ref<SupportingDocumentCollectionRef<Purpose>>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
export declare const SupportingDocumentCollectionWithRef: <Purpose extends string>({ documents, generateUpload, uploadFile, requiredDocumentPurposes, templateLanguage, status, onRemoveFile, showIds, readOnly, getPurposeMetadata, readonlyDocumentPurposes, }: Props<Purpose>, ref: Ref<SupportingDocumentCollectionRef<Purpose>>) => import("react/jsx-runtime").JSX.Element;
|
|
41
51
|
export declare const SupportingDocumentCollection: <I extends string>(props: Props<I> & {
|
|
42
52
|
ref?: ForwardedRef<SupportingDocumentCollectionRef<I>>;
|
|
43
53
|
}) => ReturnType<typeof SupportingDocumentCollectionWithRef>;
|
|
@@ -2,10 +2,13 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
2
2
|
import { Array, Option } from "@swan-io/boxed";
|
|
3
3
|
import { Form } from "@swan-io/lake/src/components/Form";
|
|
4
4
|
import { LakeButton, LakeButtonGroup } from "@swan-io/lake/src/components/LakeButton";
|
|
5
|
+
import { LakeCopyButton } from "@swan-io/lake/src/components/LakeCopyButton";
|
|
5
6
|
import { LakeLabel } from "@swan-io/lake/src/components/LakeLabel";
|
|
6
7
|
import { LakeText } from "@swan-io/lake/src/components/LakeText";
|
|
7
8
|
import { LakeTooltip } from "@swan-io/lake/src/components/LakeTooltip";
|
|
9
|
+
import { ReadOnlyFieldList } from "@swan-io/lake/src/components/ReadOnlyFieldList";
|
|
8
10
|
import { Space } from "@swan-io/lake/src/components/Space";
|
|
11
|
+
import { colors } from "@swan-io/lake/src/constants/design";
|
|
9
12
|
import { isNotNullish, isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nullish";
|
|
10
13
|
import { Request, badStatusToError } from "@swan-io/request";
|
|
11
14
|
import { Fragment, forwardRef, useEffect, useImperativeHandle, useMemo, useRef, useState, } from "react";
|
|
@@ -48,9 +51,10 @@ export const getSupportingDocumentPurposeDescriptionLabel = (purpose) => {
|
|
|
48
51
|
return "";
|
|
49
52
|
}
|
|
50
53
|
};
|
|
51
|
-
export const SupportingDocumentCollectionWithRef = ({ documents, generateUpload, uploadFile, requiredDocumentPurposes, templateLanguage = locale.language, status, onRemoveFile, showIds = false, readOnly = false, }, ref) => {
|
|
54
|
+
export const SupportingDocumentCollectionWithRef = ({ documents, generateUpload, uploadFile, requiredDocumentPurposes, templateLanguage = locale.language, status, onRemoveFile, showIds = false, readOnly = false, getPurposeMetadata, readonlyDocumentPurposes = [], }, ref) => {
|
|
52
55
|
const [showPowerOfAttorneyModal, setShowPowerOfAttorneyModal] = useState(false);
|
|
53
56
|
const [showSwornStatementModal, setShowSwornStatementModal] = useState(false);
|
|
57
|
+
const [currentMetadata, setCurrentMetadata] = useState(undefined);
|
|
54
58
|
const [addedDocuments, setAddedDocuments] = useState([]);
|
|
55
59
|
const orderedDocumentPurposes = useMemo(() => {
|
|
56
60
|
// Get all purposes to display: the required ones and the ones that have at least a document
|
|
@@ -126,16 +130,20 @@ export const SupportingDocumentCollectionWithRef = ({ documents, generateUpload,
|
|
|
126
130
|
return true;
|
|
127
131
|
});
|
|
128
132
|
return (_jsxs(Form, { children: [showableDocumentPurposes.map(({ purpose, files, areAllDocumentsValidated, isRequired }) => {
|
|
129
|
-
|
|
133
|
+
const metadata = getPurposeMetadata === null || getPurposeMetadata === void 0 ? void 0 : getPurposeMetadata(purpose);
|
|
134
|
+
return (_jsxs(Fragment, { children: [_jsx(LakeLabel, { label: getSupportingDocumentPurposeLabel(purpose), help: isNotNullish(metadata) ? (_jsx(Help, { type: "button", label: metadata.title, onPress: () => setCurrentMetadata(metadata) })) : (match(purpose)
|
|
130
135
|
.with("PowerOfAttorney", () => (_jsx(Help, { type: "button", label: t("supportingDocuments.help.whatIsThis"), onPress: () => setShowPowerOfAttorneyModal(true) })))
|
|
131
136
|
.with("SwornStatement", () => (_jsx(Help, { type: "button", label: t("supportingDocuments.help.whatIsThis"), onPress: () => setShowSwornStatementModal(true) })))
|
|
132
137
|
.otherwise(() => {
|
|
133
138
|
const label = getSupportingDocumentPurposeDescriptionLabel(purpose);
|
|
134
|
-
return isNotNullishOrEmpty(label) ? _jsx(Help, { type: "tooltip", text: label }) : null;
|
|
135
|
-
}), render: () => (_jsx(FilesUploader, { ref: ref => (filesUploaderRefByPurpose.current[purpose] = ref),
|
|
139
|
+
return isNotNullishOrEmpty(label) ? (_jsx(Help, { type: "tooltip", text: label })) : null;
|
|
140
|
+
})), render: () => (_jsx(FilesUploader, { ref: ref => (filesUploaderRefByPurpose.current[purpose] = ref),
|
|
136
141
|
// Only allow uploading is the Supporting Document Collection awaits for docs
|
|
137
142
|
// and that the specific purpose isn't already fully validated
|
|
138
|
-
canUpload: !
|
|
143
|
+
canUpload: !readonlyDocumentPurposes.includes(purpose) &&
|
|
144
|
+
!readOnly &&
|
|
145
|
+
status === "WaitingForDocument" &&
|
|
146
|
+
!areAllDocumentsValidated, accept: ACCEPTED_FORMATS, maxSize: 20000000, icon: "document-regular", initialFiles: files, generateUpload: generateUpload, getUploadConfig: file => ({ fileName: file.name, purpose }), uploadFile: isNotNullish(uploadFile)
|
|
139
147
|
? uploadFile
|
|
140
148
|
: ({ upload, file, onLoadStart, onProgress }) => {
|
|
141
149
|
const body = new FormData();
|
|
@@ -159,6 +167,6 @@ export const SupportingDocumentCollectionWithRef = ({ documents, generateUpload,
|
|
|
159
167
|
.with("fr", () => "fr")
|
|
160
168
|
.with("de", () => "de")
|
|
161
169
|
.with("es", () => "es")
|
|
162
|
-
.otherwise(() => "en")}.pdf`), children: t("supportingDocuments.downloadTemplate") }) })] }), _jsxs(LakeModal, { visible: showSwornStatementModal, title: t("supportingDocuments.purpose.SwornStatement"), icon: "document-regular", onPressClose: () => setShowSwornStatementModal(false), children: [_jsx(LakeText, { children: t("supportingDocuments.purpose.SwornStatement.description") }), _jsx(Space, { height: 16 }), _jsx(LakeButtonGroup, { paddingBottom: 0, children: _jsx(LakeButton, { grow: true, color: "current", onPress: () => window.open("/sworn-statement-template/es.pdf"), children: t("supportingDocuments.downloadTemplate") }) })] })] }));
|
|
170
|
+
.otherwise(() => "en")}.pdf`), children: t("supportingDocuments.downloadTemplate") }) })] }), _jsxs(LakeModal, { visible: showSwornStatementModal, title: t("supportingDocuments.purpose.SwornStatement"), icon: "document-regular", onPressClose: () => setShowSwornStatementModal(false), children: [_jsx(LakeText, { children: t("supportingDocuments.purpose.SwornStatement.description") }), _jsx(Space, { height: 16 }), _jsx(LakeButtonGroup, { paddingBottom: 0, children: _jsx(LakeButton, { grow: true, color: "current", onPress: () => window.open("/sworn-statement-template/es.pdf"), children: t("supportingDocuments.downloadTemplate") }) })] }), _jsx(LakeModal, { visible: isNotNullish(currentMetadata), title: t("supportingDocuments.informations"), icon: "document-regular", onPressClose: () => setCurrentMetadata(undefined), children: _jsx(ReadOnlyFieldList, { children: currentMetadata === null || currentMetadata === void 0 ? void 0 : currentMetadata.values.map(({ title, value, type }) => (_jsx(LakeLabel, { type: "viewSmall", label: title, actions: type === "copy" && (_jsx(LakeCopyButton, { valueToCopy: value, copiedText: t("copyButton.copiedTooltip"), copyText: t("copyButton.copyTooltip") })), render: () => (_jsx(LakeText, { variant: "regular", color: colors.gray[900], children: value })) }))) }) })] }));
|
|
163
171
|
};
|
|
164
172
|
export const SupportingDocumentCollection = forwardRef(SupportingDocumentCollectionWithRef);
|
package/src/locales/de.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Vorlage herunterladen",
|
|
213
213
|
"supportingDocuments.errorUpload": "Datei konnte nicht hochgeladen werden",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "Was ist das?",
|
|
215
|
+
"supportingDocuments.informations": "Dokumentinformationen",
|
|
215
216
|
"supportingDocuments.noDocuments": "Keine Dokumente.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Ein unterzeichneter und datierter Dokument, das einer Person die Vertretung oder Handlung im Namen des gesetzlichen Vertreters eines Unternehmens autorisiert.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Vollmacht",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Entscheidung über die Ernennung eines Administrators",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Gründungsurkunde",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Nachweis der Registrierung",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Offizielles Dokument, das die Registrierung Ihres Vereins nachweist. (< 3 Monate alt)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bankwesen",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Unternehmensmietvertrag",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Nachweis der Firmenregistrierung (< 3 Monate alt)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Offizielles Dokument, das die rechtliche Existenz eines Unternehmens nachweist und Informationen über seine Rechtspersönlichkeit liefert. (< 3 Monate alt)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Körperschaftsteuererklärung",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Jahresabschlüsse",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Protokoll der Generalversammlung",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Nachweis der Herkunft der Gelder",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Registerauszug",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Statuten und Satzungen",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Die Regeln, die Ihr Unternehmen festgelegt hat, um Mitglieder zu regulieren und die Zivilisation aufrechtzuerhalten.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Eidesstattliche Erklärung zur Validierung der UBO-Erklärung",
|
package/src/locales/en.json
CHANGED
|
@@ -208,6 +208,7 @@
|
|
|
208
208
|
"rib.nationalCode": "National code",
|
|
209
209
|
"rib.number": "Number",
|
|
210
210
|
"rib.partnership": "In partnership with",
|
|
211
|
+
"supportingDocuments.informations": "Document informations",
|
|
211
212
|
"supportingDocuments.documentTypes": "Supported documents: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
212
213
|
"supportingDocuments.downloadTemplate": "Download template",
|
|
213
214
|
"supportingDocuments.errorUpload": "Failed to upload file",
|
|
@@ -217,12 +218,15 @@
|
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Power of attorney",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decision of appointment of Administrator",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Articles Of Incorporation",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration": "Proof of registration",
|
|
222
224
|
"supportingDocuments.purpose.Banking.description": "",
|
|
223
225
|
"supportingDocuments.purpose.Banking": "Banking",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Company Lease Agreement",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration.description": "Official document proving the legal existence of a company and providing info about its legal personality.\n(< 3 months old)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration": "Proof of company registration (< 3 months old)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Corporate Income Tax Return",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements": "Financial Statements",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Minutes of the last general assembly of the association",
|
|
@@ -253,6 +257,7 @@
|
|
|
253
257
|
"supportingDocuments.purpose.SignedStatus": "Statutes and Bylaws",
|
|
254
258
|
"supportingDocuments.purpose.SwornStatement.description": "For regulatory reasons, Swan requires a sworn statement to confirm the validity of your UBO Declaration. You can use a template or create your own.",
|
|
255
259
|
"supportingDocuments.purpose.SwornStatement": "Sworn statement validating the UBO Declaration",
|
|
260
|
+
"supportingDocuments.purpose.RegisterExtract": "Register Extract",
|
|
256
261
|
"supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
|
|
257
262
|
"supportingDocuments.purpose.UBODeclaration": "UBO Declaration",
|
|
258
263
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
package/src/locales/es.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Descargar plantilla",
|
|
213
213
|
"supportingDocuments.errorUpload": "Error al subir el archivo",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "¿Qué es esto?",
|
|
215
|
+
"supportingDocuments.informations": "Información de documentos",
|
|
215
216
|
"supportingDocuments.noDocuments": "Sin documentos.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Documento firmado y fechado que autoriza a una persona a representar o actuar en nombre del representante legal de una empresa.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Poder notarial",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisión de nombramiento del administrador",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos de constitución",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Prueba de registro",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial que prueba el registro de tu asociación. (Menos de 3 meses de antigüedad)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bancario",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de arrendamiento de la empresa",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Prueba de registro de la empresa (Menos de 3 meses de antigüedad)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Documento oficial que prueba la existencia legal de una empresa y proporciona información sobre su personalidad jurídica.\n(Menos de 3 meses de antigüedad)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaración de impuestos sobre la renta de la empresa",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Estado de cuentas",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Actas de la asamblea general",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prueba de origen de fondos",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Extracto del registro",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Estatutos y Reglamentos",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Las reglas que tu empresa ha establecido para regular a los miembros y mantener la civilidad.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Declaración jurada validando la Declaración de UBO",
|
package/src/locales/fi.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Lataa pohja",
|
|
213
213
|
"supportingDocuments.errorUpload": "Tiedoston lataus epäonnistui",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "Mikä tämä on?",
|
|
215
|
+
"supportingDocuments.informations": "Asiakirjojen tiedot",
|
|
215
216
|
"supportingDocuments.noDocuments": "Ei asiakirjoja.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa yksilön edustamaan tai toimimaan yrityksen laillisen edustajan puolesta.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Valtakirja",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Päättäjän nimityspäätös",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Perustamissopimus",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Rekisteröintitodistus",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Virallinen asiakirja, joka todistaa yhdistyksen rekisteröinnin. (< 3 kuukautta vanha)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Pankkitoiminta",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Yrityksen vuokrasopimus",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Yrityksen rekisteröintitodistus (< 3 kuukautta vanha)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Virallinen asiakirja, joka todistaa yrityksen laillisen olemassaolon ja antaa tietoa sen oikeushenkilöstä.\n(< 3 kuukautta vanha)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Yrityksen tuloveroilmoitus",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Tilinpäätös",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Yleiskokouksen pöytäkirja",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Varojen alkuperän todistus",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Rekisteriote",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Säännöt ja määräykset",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Säännöt, jotka yrityksesi on asettanut jäsenten sääntelemiseksi ja sivistyneen käytöksen ylläpitämiseksi.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Valaistunto, joka vahvistaa UBO-ilmoituksen",
|
package/src/locales/fr.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Télécharger le modèle",
|
|
213
213
|
"supportingDocuments.errorUpload": "Échec du téléchargement du fichier",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "Qu'est-ce que c'est ?",
|
|
215
|
+
"supportingDocuments.informations": "Informations sur le document",
|
|
215
216
|
"supportingDocuments.noDocuments": "Aucun document.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Un document signé et daté autorisant une personne à représenter ou agir au nom du représentant légal d'une entreprise.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Procuration",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Décision de nomination de l'administrateur",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Statuts de la société",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Preuve d'inscription",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Document officiel prouvant l'inscription de votre association. (< 3 mois)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bancaire",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de location de l'entreprise",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Preuve d'inscription de l'entreprise (< 3 mois)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Document officiel prouvant l'existence légale d'une entreprise et fournissant des informations sur sa personnalité juridique.\n(< 3 mois)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de revenus de l'entreprise",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "États financiers",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Procès-verbal de l'assemblée générale",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Preuve de l'origine des fonds",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Extrait du registre",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Statuts et règlements",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Les règles que votre entreprise a mises en place pour régir les membres et maintenir la civilité.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Déclaration sous serment validant la Déclaration UBO",
|
package/src/locales/it.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Scarica modello",
|
|
213
213
|
"supportingDocuments.errorUpload": "Caricamento del file non riuscito",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "Cosa è questo?",
|
|
215
|
+
"supportingDocuments.informations": "Informazioni sul documento",
|
|
215
216
|
"supportingDocuments.noDocuments": "Nessun documento.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Un documento firmato e datato che autorizza un individuo a rappresentare o agire per conto del legale rappresentante di un'azienda.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Procura",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisione di nomina dell'Amministratore",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Atto costitutivo",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Prova di registrazione",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Documento ufficiale che attesta la registrazione della tua associazione. (< 3 mesi)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bancario",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contratto di locazione aziendale",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Prova di registrazione dell'azienda (< 3 mesi)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di un'azienda e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Dichiarazione dei redditi societari",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Bilancio",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Verbale dell'assemblea generale",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova dell'origine dei fondi",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Estratto di registro",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Statuto e Regolamento",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Le regole che la tua azienda ha stabilito per regolare i membri e mantenere la civiltà.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Dichiarazione giurata che convalida la Dichiarazione UBO",
|
package/src/locales/nl.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Sjabloon downloaden",
|
|
213
213
|
"supportingDocuments.errorUpload": "Het uploaden van het bestand is mislukt",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "Wat is dit?",
|
|
215
|
+
"supportingDocuments.informations": "Documentinformatie",
|
|
215
216
|
"supportingDocuments.noDocuments": "Geen documenten.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Een ondertekend en gedateerd document waarin een individu gemachtigd wordt om namens een wettelijke vertegenwoordiger van een bedrijf op te treden.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Volmacht",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Besluit tot benoeming van de beheerder",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Statuten",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Bewijs van registratie",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Officieel document dat de registratie van uw vereniging aantoont. (< 3 maanden oud)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bankieren",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Bedrijfshuurcontract",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Bewijs van bedrijfsregistratie (< 3 maanden oud)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Officieel document dat het wettelijke bestaan van een bedrijf aantoont en informatie verstrekt over de juridische persoonlijkheid ervan.\n(< 3 maanden oud)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Vennootschapsbelastingaangifte",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Jaarrekening",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Notulen van de algemene vergadering",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Bewijs van herkomst van middelen",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Uittreksel uit het register",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Statuten en Huishoudelijk Reglement",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "De regels die uw bedrijf heeft opgesteld om leden te reguleren en de beleefdheid te handhaven.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Eedaflegging ter bevestiging van de UBO-verklaring",
|
package/src/locales/pt.json
CHANGED
|
@@ -212,17 +212,21 @@
|
|
|
212
212
|
"supportingDocuments.downloadTemplate": "Descarregar modelo",
|
|
213
213
|
"supportingDocuments.errorUpload": "Falha ao carregar o ficheiro",
|
|
214
214
|
"supportingDocuments.help.whatIsThis": "O que é isto?",
|
|
215
|
+
"supportingDocuments.informations": "Informações do documento",
|
|
215
216
|
"supportingDocuments.noDocuments": "Sem documentos.",
|
|
216
217
|
"supportingDocuments.powerOfAttorneyModal.description": "Documento assinado e datado autorizando um indivíduo a representar ou agir em nome do representante legal de uma empresa.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.title": "Procuração",
|
|
218
219
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisão de nomeação de Administrador",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos de Constituição",
|
|
220
222
|
"supportingDocuments.purpose.AssociationRegistration": "Prova de registo",
|
|
221
223
|
"supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial que comprove o registo da sua associação. (< 3 meses)",
|
|
222
224
|
"supportingDocuments.purpose.Banking": "Bancário",
|
|
223
225
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de Arrendamento da Empresa",
|
|
224
227
|
"supportingDocuments.purpose.CompanyRegistration": "Prova de registo da empresa (< 3 meses)",
|
|
225
228
|
"supportingDocuments.purpose.CompanyRegistration.description": "Documento oficial que comprove a existência legal de uma empresa e forneça informações sobre sua personalidade jurídica.\n(< 3 meses)",
|
|
229
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de Imposto de Renda da Pessoa Jurídica",
|
|
226
230
|
"supportingDocuments.purpose.FinancialStatements": "Demonstrações financeiras",
|
|
227
231
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
228
232
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Atas da assembleia geral",
|
|
@@ -249,6 +253,7 @@
|
|
|
249
253
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
250
254
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova de origem dos fundos",
|
|
251
255
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
256
|
+
"supportingDocuments.purpose.RegisterExtract": "Extrato de Registro",
|
|
252
257
|
"supportingDocuments.purpose.SignedStatus": "Estatutos e Regulamentos",
|
|
253
258
|
"supportingDocuments.purpose.SignedStatus.description": "Regras estabelecidas pela sua empresa para regular os membros e manter a civilidade.",
|
|
254
259
|
"supportingDocuments.purpose.SwornStatement": "Declaração juramentada validando a Declaração de UBO",
|
package/src/utils/i18n.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export declare const locale: Locale;
|
|
|
19
19
|
export declare const t: (key: TranslationKey, params?: TranslationParams) => string;
|
|
20
20
|
export declare const formatNestedMessage: (key: TranslationKey, params: Record<string, string | number | ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((children: ReactNode) => ReactNode)>) => (string | ReactElement<any, string | import("react").JSXElementConstructor<any>>)[];
|
|
21
21
|
export declare const rifmDateProps: RifmProps;
|
|
22
|
-
export declare const isTranslationKey: (value: unknown) => value is "addressFormPart.addressLabel" | "addressFormPart.cityLabel" | "addressFormPart.placeholder" | "addressFormPart.postCodeLabel" | "businessActivity.administrativeServices" | "businessActivity.agriculture" | "businessActivity.arts" | "businessActivity.businessAndRetail" | "businessActivity.construction" | "businessActivity.education" | "businessActivity.electricalDistributionAndWaterSupply" | "businessActivity.financialAndInsuranceOperations" | "businessActivity.health" | "businessActivity.housekeeping" | "businessActivity.informationAndCommunication" | "businessActivity.lodgingAndFoodServices" | "businessActivity.manufacturingAndMining" | "businessActivity.other" | "businessActivity.publicAdministration" | "businessActivity.realEstate" | "businessActivity.scientificActivities" | "businessActivity.transportation" | "common.cancel" | "common.close" | "common.form.help.nbCharacters" | "common.form.help.nbDigits" | "common.form.invalidTaxIdentificationNumber" | "common.form.taxIdentificationNumber.placeholder" | "common.form.taxIdentificationNumber.tooltip.deu" | "common.next" | "common.noResult" | "common.open" | "common.optional" | "common.previous" | "common.remove" | "common.showLess" | "common.showMore" | "common.skipToContent" | "copyButton.copiedTooltip" | "copyButton.copyTooltip" | "datePicker.day.friday" | "datePicker.day.monday" | "datePicker.day.saturday" | "datePicker.day.sunday" | "datePicker.day.thursday" | "datePicker.day.tuesday" | "datePicker.day.wednesday" | "datePicker.month.april" | "datePicker.month.august" | "datePicker.month.december" | "datePicker.month.february" | "datePicker.month.january" | "datePicker.month.july" | "datePicker.month.june" | "datePicker.month.march" | "datePicker.month.may" | "datePicker.month.next" | "datePicker.month.november" | "datePicker.month.october" | "datePicker.month.previous" | "datePicker.month.september" | "error.generic" | "error.iban.invalid" | "error.network.500" | "error.network.503" | "error.requiredField" | "fileInput.browse" | "fileInput.clickToModify" | "fileInput.dropFile" | "fileInput.noFile" | "fileInput.unknownFileName" | "fileTile.id" | "fileTile.status.Pending" | "fileTile.status.Refused" | "fileTile.status.Validated" | "fileTile.uploading" | "monthlyPaymentVolume.between10000And50000" | "monthlyPaymentVolume.between50000And100000" | "monthlyPaymentVolume.lessThan10000" | "monthlyPaymentVolume.moreThan100000" | "registrationPage.defaultNumberLabel" | "registrationPage.withOrganismLabel" | "registrationPage.withoutOrganismNameLabel" | "rejection.AccountHolderNotFoundRejection" | "rejection.AccountHolderTypeIndividualRejection" | "rejection.AccountMembershipCannotBeDisabledRejection" | "rejection.AccountMembershipCannotBeUpdatedRejection" | "rejection.AccountMembershipNotAllowedRejection" | "rejection.AccountMembershipNotFoundRejection" | "rejection.AccountMembershipNotReadyToBeBoundRejection" | "rejection.AccountNotEligibleRejection" | "rejection.AccountNotFoundRejection" | "rejection.AccountVerificationAlreadyRejectedRejection" | "rejection.AccountVerificationWrongStatusRejection" | "rejection.AddingCardsToDifferentAccountsRejection" | "rejection.AlreadyValidPhysicalCardRejection" | "rejection.ApplePayNotAllowedForProjectRejection" | "rejection.BadAccountStatusRejection" | "rejection.BadRequestRejection" | "rejection.CannotActivatePhysicalCardRejection" | "rejection.CapitalDepositDocumentCanNotBeUploaded" | "rejection.CardCanNotBeDigitalizedRejection" | "rejection.CardNotFoundRejection" | "rejection.CardProductDisabledRejection" | "rejection.CardProductNotApplicableToPhysicalCardsRejection" | "rejection.CardProductNotFoundRejection" | "rejection.CardProductSuspendedRejection" | "rejection.CardProductUsedRejection" | "rejection.CardWrongStatusRejection" | "rejection.ConsentNotFoundRejection" | "rejection.ConsentsAlreadyLinkedToMultiConsentRejection" | "rejection.ConsentsNotAllInCreatedStatusRejection" | "rejection.ConsentsNotFoundRejection" | "rejection.ConsentTypeNotSupportedByServerConsentRejection" | "rejection.DebtorAccountClosedRejection" | "rejection.DebtorAccountNotAllowedRejection" | "rejection.DigitalCardNotFoundRejection" | "rejection.EnabledCardDesignNotFoundRejection" | "rejection.ExternalAccountAlreadyExistsRejection" | "rejection.ExternalAccountBalanceAlreadyExistsRejection" | "rejection.ForbiddenRejection" | "rejection.FundingLimitExceededRejection" | "rejection.FundingLimitSettingsChangeRequestBadAmountRejection" | "rejection.FundingSourceNotFoundRejection" | "rejection.FundingSourceWrongStatusRejection" | "rejection.GlobalFundingLimitExceededRejection" | "rejection.GlobalInstantFundingLimitExceededRejection" | "rejection.IBANNotReachableRejection" | "rejection.IBANNotValidRejection" | "rejection.IbanValidationRejection" | "rejection.IdentityAlreadyBindToAccountMembershipRejection" | "rejection.InstantFundingLimitExceededRejection" | "rejection.InsufficientFundsRejection" | "rejection.InternalErrorRejection" | "rejection.InvalidArgumentRejection" | "rejection.InvalidPhoneNumberRejection" | "rejection.InvalidSirenNumberRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" | "rejection.MerchantProfileWrongStatusRejection" | "rejection.MissingMandatoryFieldRejection" | "rejection.NotFoundRejection" | "rejection.NotReachableConsentStatusRejection" | "rejection.NotSupportedCountryRejection" | "rejection.OnboardingNotCompletedRejection" | "rejection.PaymentMandateMandateNotFoundRejection" | "rejection.PaymentMandateReferenceAlreadyUsedRejection" | "rejection.PaymentMethodNotCompatibleRejection" | "rejection.PermissionCannotBeGrantedRejection" | "rejection.PhysicalCardNotFoundRejection" | "rejection.PhysicalCardWrongStatusRejection" | "rejection.PINNotReadyRejection" | "rejection.ProjectForbiddenRejection" | "rejection.ProjectFundingLimitExceededRejection" | "rejection.ProjectInstantFundingLimitExceededRejection" | "rejection.ProjectInvalidStatusRejection" | "rejection.ProjectNotFound" | "rejection.ProjectNotFoundRejection" | "rejection.ProjectSettingsForbiddenError" | "rejection.ProjectSettingsNotFound" | "rejection.ProjectSettingsStatusNotReachable" | "rejection.PublicOnboardingDisabledRejection" | "rejection.ReceivedDirectDebitMandateAlreadyExistRejection" | "rejection.ReceivedDirectDebitMandateCanceledRejection" | "rejection.ReceivedDirectDebitMandateNotB2bRejection" | "rejection.ReceivedDirectDebitMandateNotFoundRejection" | "rejection.RefundRejection" | "rejection.RestrictedToUserRejection" | "rejection.SchemeWrongRejection" | "rejection.ServerConsentCredentialsNotValidOrOutdatedRejection" | "rejection.ServerConsentNotAllowedForConsentOperationRejection" | "rejection.ServerConsentNotAllowedForProjectRejection" | "rejection.ServerConsentProjectCredentialMissingRejection" | "rejection.ServerConsentProjectCredentialNotFoundRejection" | "rejection.ServerConsentProjectSettingsNotFoundRejection" | "rejection.ServerConsentSignatureNotValidRejection" | "rejection.StandingOrderNotFoundRejection" | "rejection.SupportingDocumentCollectionNotFoundRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentCollectionStatusNotAllowedRejection" | "rejection.SupportingDocumentNotFoundRejection" | "rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentStatusNotAllowedRejection" | "rejection.SupportingDocumentUploadNotAllowedRejection" | "rejection.SuspendReceivedDirectDebitMandatedRejection" | "rejection.TooManyChildConsentsRejection" | "rejection.TooManyItemsRejection" | "rejection.TransactionNotFoundRejection" | "rejection.UpdateUserConsentSettingsTokenRejection" | "rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection" | "rejection.UserNotAllowedToManageAccountMembershipRejection" | "rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection" | "rejection.UserNotCardHolderRejection" | "rejection.ValidationRejection" | "rejection.WrongValueProvidedRejection" | "rib.accountHolder" | "rib.accountNumber" | "rib.address" | "rib.agency" | "rib.bank" | "rib.bankDetails" | "rib.bic" | "rib.iban" | "rib.key" | "rib.nationalCode" | "rib.number" | "rib.partnership" | "supportingDocuments.documentTypes" | "supportingDocuments.downloadTemplate" | "supportingDocuments.errorUpload" | "supportingDocuments.help.whatIsThis" | "supportingDocuments.noDocuments" | "supportingDocuments.powerOfAttorneyModal.description" | "supportingDocuments.powerOfAttorneyModal.title" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment" | "supportingDocuments.purpose.AssociationRegistration.description" | "supportingDocuments.purpose.AssociationRegistration" | "supportingDocuments.purpose.Banking.description" | "supportingDocuments.purpose.Banking" | "supportingDocuments.purpose.CompanyRegistration.description" | "supportingDocuments.purpose.CompanyRegistration" | "supportingDocuments.purpose.FinancialStatements.description" | "supportingDocuments.purpose.FinancialStatements" | "supportingDocuments.purpose.GeneralAssemblyMinutes.description" | "supportingDocuments.purpose.GeneralAssemblyMinutes" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity" | "supportingDocuments.purpose.NIFAccreditationCard.description" | "supportingDocuments.purpose.NIFAccreditationCard" | "supportingDocuments.purpose.Other.description" | "supportingDocuments.purpose.Other" | "supportingDocuments.purpose.PowerOfAttorney.description" | "supportingDocuments.purpose.PowerOfAttorney" | "supportingDocuments.purpose.PresidentDecisionOfAppointment.description" | "supportingDocuments.purpose.PresidentDecisionOfAppointment" | "supportingDocuments.purpose.ProofOfCompanyAddress.description" | "supportingDocuments.purpose.ProofOfCompanyAddress" | "supportingDocuments.purpose.ProofOfCompanyIncome.description" | "supportingDocuments.purpose.ProofOfCompanyIncome" | "supportingDocuments.purpose.ProofOfIdentity.description" | "supportingDocuments.purpose.ProofOfIdentity" | "supportingDocuments.purpose.ProofOfIndividualAddress.description" | "supportingDocuments.purpose.ProofOfIndividualAddress" | "supportingDocuments.purpose.ProofOfIndividualIncome.description" | "supportingDocuments.purpose.ProofOfIndividualIncome" | "supportingDocuments.purpose.ProofOfOriginOfFunds.description" | "supportingDocuments.purpose.ProofOfOriginOfFunds" | "supportingDocuments.purpose.SignedStatus.description" | "supportingDocuments.purpose.SignedStatus" | "supportingDocuments.purpose.SwornStatement.description" | "supportingDocuments.purpose.SwornStatement" | "supportingDocuments.purpose.UBODeclaration.description" | "supportingDocuments.purpose.UBODeclaration" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity" | "taxIdentificationNumber.label";
|
|
22
|
+
export declare const isTranslationKey: (value: unknown) => value is "addressFormPart.addressLabel" | "addressFormPart.cityLabel" | "addressFormPart.placeholder" | "addressFormPart.postCodeLabel" | "businessActivity.administrativeServices" | "businessActivity.agriculture" | "businessActivity.arts" | "businessActivity.businessAndRetail" | "businessActivity.construction" | "businessActivity.education" | "businessActivity.electricalDistributionAndWaterSupply" | "businessActivity.financialAndInsuranceOperations" | "businessActivity.health" | "businessActivity.housekeeping" | "businessActivity.informationAndCommunication" | "businessActivity.lodgingAndFoodServices" | "businessActivity.manufacturingAndMining" | "businessActivity.other" | "businessActivity.publicAdministration" | "businessActivity.realEstate" | "businessActivity.scientificActivities" | "businessActivity.transportation" | "common.cancel" | "common.close" | "common.form.help.nbCharacters" | "common.form.help.nbDigits" | "common.form.invalidTaxIdentificationNumber" | "common.form.taxIdentificationNumber.placeholder" | "common.form.taxIdentificationNumber.tooltip.deu" | "common.next" | "common.noResult" | "common.open" | "common.optional" | "common.previous" | "common.remove" | "common.showLess" | "common.showMore" | "common.skipToContent" | "copyButton.copiedTooltip" | "copyButton.copyTooltip" | "datePicker.day.friday" | "datePicker.day.monday" | "datePicker.day.saturday" | "datePicker.day.sunday" | "datePicker.day.thursday" | "datePicker.day.tuesday" | "datePicker.day.wednesday" | "datePicker.month.april" | "datePicker.month.august" | "datePicker.month.december" | "datePicker.month.february" | "datePicker.month.january" | "datePicker.month.july" | "datePicker.month.june" | "datePicker.month.march" | "datePicker.month.may" | "datePicker.month.next" | "datePicker.month.november" | "datePicker.month.october" | "datePicker.month.previous" | "datePicker.month.september" | "error.generic" | "error.iban.invalid" | "error.network.500" | "error.network.503" | "error.requiredField" | "fileInput.browse" | "fileInput.clickToModify" | "fileInput.dropFile" | "fileInput.noFile" | "fileInput.unknownFileName" | "fileTile.id" | "fileTile.status.Pending" | "fileTile.status.Refused" | "fileTile.status.Validated" | "fileTile.uploading" | "monthlyPaymentVolume.between10000And50000" | "monthlyPaymentVolume.between50000And100000" | "monthlyPaymentVolume.lessThan10000" | "monthlyPaymentVolume.moreThan100000" | "registrationPage.defaultNumberLabel" | "registrationPage.withOrganismLabel" | "registrationPage.withoutOrganismNameLabel" | "rejection.AccountHolderNotFoundRejection" | "rejection.AccountHolderTypeIndividualRejection" | "rejection.AccountMembershipCannotBeDisabledRejection" | "rejection.AccountMembershipCannotBeUpdatedRejection" | "rejection.AccountMembershipNotAllowedRejection" | "rejection.AccountMembershipNotFoundRejection" | "rejection.AccountMembershipNotReadyToBeBoundRejection" | "rejection.AccountNotEligibleRejection" | "rejection.AccountNotFoundRejection" | "rejection.AccountVerificationAlreadyRejectedRejection" | "rejection.AccountVerificationWrongStatusRejection" | "rejection.AddingCardsToDifferentAccountsRejection" | "rejection.AlreadyValidPhysicalCardRejection" | "rejection.ApplePayNotAllowedForProjectRejection" | "rejection.BadAccountStatusRejection" | "rejection.BadRequestRejection" | "rejection.CannotActivatePhysicalCardRejection" | "rejection.CapitalDepositDocumentCanNotBeUploaded" | "rejection.CardCanNotBeDigitalizedRejection" | "rejection.CardNotFoundRejection" | "rejection.CardProductDisabledRejection" | "rejection.CardProductNotApplicableToPhysicalCardsRejection" | "rejection.CardProductNotFoundRejection" | "rejection.CardProductSuspendedRejection" | "rejection.CardProductUsedRejection" | "rejection.CardWrongStatusRejection" | "rejection.ConsentNotFoundRejection" | "rejection.ConsentsAlreadyLinkedToMultiConsentRejection" | "rejection.ConsentsNotAllInCreatedStatusRejection" | "rejection.ConsentsNotFoundRejection" | "rejection.ConsentTypeNotSupportedByServerConsentRejection" | "rejection.DebtorAccountClosedRejection" | "rejection.DebtorAccountNotAllowedRejection" | "rejection.DigitalCardNotFoundRejection" | "rejection.EnabledCardDesignNotFoundRejection" | "rejection.ExternalAccountAlreadyExistsRejection" | "rejection.ExternalAccountBalanceAlreadyExistsRejection" | "rejection.ForbiddenRejection" | "rejection.FundingLimitExceededRejection" | "rejection.FundingLimitSettingsChangeRequestBadAmountRejection" | "rejection.FundingSourceNotFoundRejection" | "rejection.FundingSourceWrongStatusRejection" | "rejection.GlobalFundingLimitExceededRejection" | "rejection.GlobalInstantFundingLimitExceededRejection" | "rejection.IBANNotReachableRejection" | "rejection.IBANNotValidRejection" | "rejection.IbanValidationRejection" | "rejection.IdentityAlreadyBindToAccountMembershipRejection" | "rejection.InstantFundingLimitExceededRejection" | "rejection.InsufficientFundsRejection" | "rejection.InternalErrorRejection" | "rejection.InvalidArgumentRejection" | "rejection.InvalidPhoneNumberRejection" | "rejection.InvalidSirenNumberRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" | "rejection.MerchantProfileWrongStatusRejection" | "rejection.MissingMandatoryFieldRejection" | "rejection.NotFoundRejection" | "rejection.NotReachableConsentStatusRejection" | "rejection.NotSupportedCountryRejection" | "rejection.OnboardingNotCompletedRejection" | "rejection.PaymentMandateMandateNotFoundRejection" | "rejection.PaymentMandateReferenceAlreadyUsedRejection" | "rejection.PaymentMethodNotCompatibleRejection" | "rejection.PermissionCannotBeGrantedRejection" | "rejection.PhysicalCardNotFoundRejection" | "rejection.PhysicalCardWrongStatusRejection" | "rejection.PINNotReadyRejection" | "rejection.ProjectForbiddenRejection" | "rejection.ProjectFundingLimitExceededRejection" | "rejection.ProjectInstantFundingLimitExceededRejection" | "rejection.ProjectInvalidStatusRejection" | "rejection.ProjectNotFound" | "rejection.ProjectNotFoundRejection" | "rejection.ProjectSettingsForbiddenError" | "rejection.ProjectSettingsNotFound" | "rejection.ProjectSettingsStatusNotReachable" | "rejection.PublicOnboardingDisabledRejection" | "rejection.ReceivedDirectDebitMandateAlreadyExistRejection" | "rejection.ReceivedDirectDebitMandateCanceledRejection" | "rejection.ReceivedDirectDebitMandateNotB2bRejection" | "rejection.ReceivedDirectDebitMandateNotFoundRejection" | "rejection.RefundRejection" | "rejection.RestrictedToUserRejection" | "rejection.SchemeWrongRejection" | "rejection.ServerConsentCredentialsNotValidOrOutdatedRejection" | "rejection.ServerConsentNotAllowedForConsentOperationRejection" | "rejection.ServerConsentNotAllowedForProjectRejection" | "rejection.ServerConsentProjectCredentialMissingRejection" | "rejection.ServerConsentProjectCredentialNotFoundRejection" | "rejection.ServerConsentProjectSettingsNotFoundRejection" | "rejection.ServerConsentSignatureNotValidRejection" | "rejection.StandingOrderNotFoundRejection" | "rejection.SupportingDocumentCollectionNotFoundRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentCollectionStatusNotAllowedRejection" | "rejection.SupportingDocumentNotFoundRejection" | "rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentStatusNotAllowedRejection" | "rejection.SupportingDocumentUploadNotAllowedRejection" | "rejection.SuspendReceivedDirectDebitMandatedRejection" | "rejection.TooManyChildConsentsRejection" | "rejection.TooManyItemsRejection" | "rejection.TransactionNotFoundRejection" | "rejection.UpdateUserConsentSettingsTokenRejection" | "rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection" | "rejection.UserNotAllowedToManageAccountMembershipRejection" | "rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection" | "rejection.UserNotCardHolderRejection" | "rejection.ValidationRejection" | "rejection.WrongValueProvidedRejection" | "rib.accountHolder" | "rib.accountNumber" | "rib.address" | "rib.agency" | "rib.bank" | "rib.bankDetails" | "rib.bic" | "rib.iban" | "rib.key" | "rib.nationalCode" | "rib.number" | "rib.partnership" | "supportingDocuments.informations" | "supportingDocuments.documentTypes" | "supportingDocuments.downloadTemplate" | "supportingDocuments.errorUpload" | "supportingDocuments.help.whatIsThis" | "supportingDocuments.noDocuments" | "supportingDocuments.powerOfAttorneyModal.description" | "supportingDocuments.powerOfAttorneyModal.title" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment" | "supportingDocuments.purpose.ArticlesOfIncorporation" | "supportingDocuments.purpose.AssociationRegistration.description" | "supportingDocuments.purpose.AssociationRegistration" | "supportingDocuments.purpose.Banking.description" | "supportingDocuments.purpose.Banking" | "supportingDocuments.purpose.CompanyLeaseAgreement" | "supportingDocuments.purpose.CompanyRegistration.description" | "supportingDocuments.purpose.CompanyRegistration" | "supportingDocuments.purpose.CorporateIncomeTaxReturn" | "supportingDocuments.purpose.FinancialStatements.description" | "supportingDocuments.purpose.FinancialStatements" | "supportingDocuments.purpose.GeneralAssemblyMinutes.description" | "supportingDocuments.purpose.GeneralAssemblyMinutes" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity" | "supportingDocuments.purpose.NIFAccreditationCard.description" | "supportingDocuments.purpose.NIFAccreditationCard" | "supportingDocuments.purpose.Other.description" | "supportingDocuments.purpose.Other" | "supportingDocuments.purpose.PowerOfAttorney.description" | "supportingDocuments.purpose.PowerOfAttorney" | "supportingDocuments.purpose.PresidentDecisionOfAppointment.description" | "supportingDocuments.purpose.PresidentDecisionOfAppointment" | "supportingDocuments.purpose.ProofOfCompanyAddress.description" | "supportingDocuments.purpose.ProofOfCompanyAddress" | "supportingDocuments.purpose.ProofOfCompanyIncome.description" | "supportingDocuments.purpose.ProofOfCompanyIncome" | "supportingDocuments.purpose.ProofOfIdentity.description" | "supportingDocuments.purpose.ProofOfIdentity" | "supportingDocuments.purpose.ProofOfIndividualAddress.description" | "supportingDocuments.purpose.ProofOfIndividualAddress" | "supportingDocuments.purpose.ProofOfIndividualIncome.description" | "supportingDocuments.purpose.ProofOfIndividualIncome" | "supportingDocuments.purpose.ProofOfOriginOfFunds.description" | "supportingDocuments.purpose.ProofOfOriginOfFunds" | "supportingDocuments.purpose.SignedStatus.description" | "supportingDocuments.purpose.SignedStatus" | "supportingDocuments.purpose.SwornStatement.description" | "supportingDocuments.purpose.SwornStatement" | "supportingDocuments.purpose.RegisterExtract" | "supportingDocuments.purpose.UBODeclaration.description" | "supportingDocuments.purpose.UBODeclaration" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity" | "taxIdentificationNumber.label";
|
|
23
23
|
export declare const translateError: (error: unknown) => string;
|
|
24
24
|
export {};
|