@cobre-npm/library-onboarding-core 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/documentAutofillFields.d.ts +1 -0
- package/dist/constants/documentAutofillFields.js +36 -0
- package/dist/constants/fieldMaxLength.d.ts +3 -0
- package/dist/constants/fieldMaxLength.js +42 -0
- package/dist/index.d.ts +2699 -0
- package/dist/index.js +36 -0
- package/package.json +18 -8
- package/src/index.d.ts +0 -17
- package/src/index.js +0 -17
- /package/{src → dist}/locales/Common/en.json +0 -0
- /package/{src → dist}/locales/Common/es.json +0 -0
- /package/{src → dist}/locales/Host/en.json +0 -0
- /package/{src → dist}/locales/Host/es.json +0 -0
- /package/{src → dist}/locales/Shared/en.json +0 -0
- /package/{src → dist}/locales/Shared/es.json +0 -0
- /package/{src → dist}/locales/Summary/en.json +0 -0
- /package/{src → dist}/locales/Summary/es.json +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DOCUMENT_AUTOFILL_FIELDS: Record<string, string[]>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DOCUMENT_AUTOFILL_FIELDS = void 0;
|
|
4
|
+
exports.DOCUMENT_AUTOFILL_FIELDS = {
|
|
5
|
+
certificate_of_incorporation: [
|
|
6
|
+
"legal_name", "dba_name", "entity_type", "tax_id_type", "tax_id_number",
|
|
7
|
+
"incorporation_date", "incorporation_country", "incorporation_state",
|
|
8
|
+
"incorporation_city", "economic_activity", "business_description",
|
|
9
|
+
"website", "email", "phone", "registered_address", "operational_address",
|
|
10
|
+
],
|
|
11
|
+
tax_id_documentation: [
|
|
12
|
+
"tax_id_type", "tax_id_number", "legal_name", "entity_type", "dba_name",
|
|
13
|
+
"operations_start_date", "economic_activity", "registered_address",
|
|
14
|
+
],
|
|
15
|
+
articles_of_incorporation: [
|
|
16
|
+
"legal_name", "entity_type", "dba_name", "incorporation_date",
|
|
17
|
+
"incorporation_country", "incorporation_state", "incorporation_city",
|
|
18
|
+
"economic_activity", "business_description", "website", "email",
|
|
19
|
+
"phone", "registered_address", "operational_address",
|
|
20
|
+
],
|
|
21
|
+
shareholder_structure: [
|
|
22
|
+
"beneficial_owner[].full_name", "beneficial_owner[].percentage_ownership",
|
|
23
|
+
],
|
|
24
|
+
legal_rep_power_of_attorney: [
|
|
25
|
+
"legal_representative[].full_name", "legal_representative[].identification[]",
|
|
26
|
+
],
|
|
27
|
+
control_documents: [
|
|
28
|
+
"beneficial_owner[].full_name", "beneficial_owner[].identification[]",
|
|
29
|
+
"beneficial_owner[].birth_date", "beneficial_owner[].country_of_birth",
|
|
30
|
+
"beneficial_owner[].nationality", "beneficial_owner[].country_of_residence",
|
|
31
|
+
"beneficial_owner[].address", "beneficial_owner[].tax_id_type",
|
|
32
|
+
"beneficial_owner[].tax_id_number", "beneficial_owner[].email",
|
|
33
|
+
"beneficial_owner[].percentage_ownership",
|
|
34
|
+
],
|
|
35
|
+
bank_certificate_30_days: [],
|
|
36
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FIELD_MAX_LENGTH = exports.DEFAULT_PHONE_MAX_LENGTH = exports.DEFAULT_MAX_LENGTH = void 0;
|
|
4
|
+
exports.DEFAULT_MAX_LENGTH = 500;
|
|
5
|
+
exports.DEFAULT_PHONE_MAX_LENGTH = 30;
|
|
6
|
+
exports.FIELD_MAX_LENGTH = {
|
|
7
|
+
full_name: 200,
|
|
8
|
+
phone: 30,
|
|
9
|
+
legal_name: 300,
|
|
10
|
+
dba_name: 300,
|
|
11
|
+
tax_id_number: 50,
|
|
12
|
+
e_sign_number: 50,
|
|
13
|
+
incorporation_state: 100,
|
|
14
|
+
incorporation_city: 100,
|
|
15
|
+
business_description: 2000,
|
|
16
|
+
website: 500,
|
|
17
|
+
line_1: 200,
|
|
18
|
+
line_2: 200,
|
|
19
|
+
city: 100,
|
|
20
|
+
state: 100,
|
|
21
|
+
postal_code: 20,
|
|
22
|
+
tax_id_type: 50,
|
|
23
|
+
curp: 18,
|
|
24
|
+
migration_status: 100,
|
|
25
|
+
migration_form_number: 50,
|
|
26
|
+
nationality: 100,
|
|
27
|
+
birth_country: 100,
|
|
28
|
+
country_of_birth: 100,
|
|
29
|
+
country_of_residence: 100,
|
|
30
|
+
state_of_birth: 100,
|
|
31
|
+
occupation: 200,
|
|
32
|
+
number: 50,
|
|
33
|
+
first_name: 100,
|
|
34
|
+
middle_name: 100,
|
|
35
|
+
last_name: 100,
|
|
36
|
+
company_relationship: 200,
|
|
37
|
+
public_office_position: 500,
|
|
38
|
+
legal_proceedings_description: 5000,
|
|
39
|
+
funds_source_other_description: 1000,
|
|
40
|
+
monthly_counterparties_count: 100,
|
|
41
|
+
third_party_id: 100,
|
|
42
|
+
};
|