@adyen/kyc-components 3.12.2 → 3.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -138
- package/dist/es/{AT-njBxlQEe.js → AT-DfFnDrfM.js} +3 -3
- package/dist/es/{AU-DFQDmtVS.js → AU-duGkeX5u.js} +3 -3
- package/dist/es/{BE-C2-55587.js → BE-DyUVAPGr.js} +3 -3
- package/dist/es/{BR-DRRnRMe_.js → BR-C6EuLR5N.js} +3 -3
- package/dist/es/{CA-DF_5NHUp.js → CA-D9XwVu9a.js} +3 -3
- package/dist/es/{CH-DS_pPGGY.js → CH-5BWWB7V-.js} +3 -3
- package/dist/es/{CZ-CGN19Iaf.js → CZ-K85AZiMU.js} +3 -3
- package/dist/es/{DE-CWIcy4sf.js → DE-DidUFPKJ.js} +3 -3
- package/dist/es/{DK-CUV7SrN_.js → DK-VkWwZpKj.js} +3 -3
- package/dist/es/{ES-CXBTHBlj.js → ES-_IZ-GJq2.js} +3 -3
- package/dist/es/{FI-D9lkf5Ag.js → FI-CwQpEt0y.js} +3 -3
- package/dist/es/{FR-C62B055T.js → FR-93Nh7eJw.js} +3 -3
- package/dist/es/{GB-C3gyya0v.js → GB-CLutKk3G.js} +3 -3
- package/dist/es/{HK-BHvvteyC.js → HK-Bi2_xTHs.js} +3 -3
- package/dist/es/{HR-BuR2eqt5.js → HR-B241qzlq.js} +3 -3
- package/dist/es/{HU-BeWCk1sl.js → HU-DAS2gLl6.js} +3 -3
- package/dist/es/{IE-DY6xU4Nq.js → IE-CqqnKWAt.js} +3 -3
- package/dist/es/{IT-DIpVZHWq.js → IT-CTbAQN-N.js} +3 -3
- package/dist/es/{LT-vsmh_veZ.js → LT-CL75MQds.js} +3 -3
- package/dist/es/{NL-D4GPWO-k.js → NL-byavnuPs.js} +3 -3
- package/dist/es/{NO-C2rMiNW_.js → NO-BhWA5RkZ.js} +3 -3
- package/dist/es/{PL-B6DmYhdz.js → PL-DvHlZoe-.js} +3 -3
- package/dist/es/{PT-CiWuVvP4.js → PT-CrMmPrqH.js} +3 -3
- package/dist/es/{RO-CbO4Kr4f.js → RO-ZjE_bLtQ.js} +3 -3
- package/dist/es/{SE-ClnBSAdx.js → SE-pVoKikqF.js} +3 -3
- package/dist/es/{SG-CQ7yymJt.js → SG-o7Vue3ft.js} +3 -3
- package/dist/es/{SI-CKmjaPXK.js → SI-D65TuGII.js} +3 -3
- package/dist/es/{SK-BHbQeHKV.js → SK-B8YA21ir.js} +3 -3
- package/dist/es/{US-Dxp45Utb.js → US-ynCbKn6I.js} +3 -3
- package/dist/es/adyen-kyc-components.es.js +63 -867
- package/dist/style.css +3918 -111085
- package/dist/types/components/PayoutAccount/component/PayoutAccountComponent.d.ts +0 -1
- package/dist/types/components/SingpassBanner/index.d.ts +5 -0
- package/dist/types/components/TaskList/component/TaskListComponent.d.ts +1 -1
- package/dist/types/components/TaskList/types.d.ts +1 -0
- package/dist/types/components/internal/Alert/Alert.d.ts +1 -1
- package/dist/types/components/internal/Alert/types.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,163 +1,59 @@
|
|
|
1
|
-
|
|
1
|
+
# Adyen KYC Components (Onboarding Components)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity.
|
|
3
|
+
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboarding components. You can integrate these components into your UI to let your users enter their data. The component then uses the entered data to create the relevant resource. This means you don't need to implement the API call to create the resource yourself.
|
|
6
4
|
|
|
7
5
|
## Setup
|
|
8
6
|
|
|
9
|
-
1.
|
|
7
|
+
1. Install and import the npm package
|
|
10
8
|
|
|
11
|
-
-
|
|
9
|
+
- Install the node package
|
|
12
10
|
|
|
13
|
-
```
|
|
14
|
-
|
|
11
|
+
```
|
|
12
|
+
npm install @adyen/kyc-components --save
|
|
15
13
|
```
|
|
16
14
|
|
|
17
|
-
-
|
|
15
|
+
- Import the package and the style sheet in your application
|
|
18
16
|
|
|
19
17
|
```
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
import AdyenKyc from '@adyen/kyc-components';
|
|
19
|
+
import '@adyen/kyc-components/styles.css';
|
|
22
20
|
```
|
|
23
21
|
|
|
24
22
|
2. Initializing the sdk
|
|
25
23
|
|
|
26
24
|
```js
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
const adyenKycHandler = new AdyenKyc({
|
|
26
|
+
locale: 'en-US',
|
|
27
|
+
country: 'US',
|
|
28
|
+
environment: 'https://test.adyen.com',
|
|
29
|
+
sdkToken: token,
|
|
30
|
+
getSdkToken,
|
|
31
|
+
});
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
3. Including
|
|
34
|
+
3. Including createTransferInstrument component
|
|
35
35
|
|
|
36
36
|
```js
|
|
37
|
-
const
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
37
|
+
const createTransferInstrumentComponent = adyenKycHandler
|
|
38
|
+
.create('createTransferInstrumentComponent', {
|
|
39
|
+
legalEntityId,
|
|
40
|
+
transferInstrumentId, // Optional
|
|
41
|
+
openBankingPartnerConfigId: 'YourBrandOBConfigId',
|
|
42
|
+
settings: {
|
|
43
|
+
allowIntraRegionCrossBorderPayout: true, // Optional
|
|
44
|
+
allowBankAccountFormatSelection: true, // Optional
|
|
45
|
+
},
|
|
46
|
+
onSubmitSuccess: (submittedData) => {},
|
|
47
|
+
})
|
|
48
|
+
.mount('#create-transfer-instrument-container'); // Mount to the container you created
|
|
44
49
|
```
|
|
45
50
|
|
|
46
|
-
|
|
47
|
-
in a country as a prop, based on which it will be rendered. If no country is provided the country
|
|
48
|
-
value provided during initialization will be used.
|
|
49
|
-
|
|
50
|
-
## Configuration
|
|
51
|
-
|
|
52
|
-
#### **`AdyenKyc(config: Config)`**
|
|
53
|
-
|
|
54
|
-
**`Config`**
|
|
55
|
-
|
|
56
|
-
| Key | Default | Description |
|
|
57
|
-
| ------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
58
|
-
| `locale` | `en-US` | the locale country code |
|
|
59
|
-
| `country` | `US` | the resident country code |
|
|
60
|
-
| `clientKey` | | the client key to contact the KYC external API where the configuration API lives. In order for the SDK to work, your webpage needs to configure a clientKey that can be used by the SDK. The procedure for obtaining a `clientKey` for KYC Components are the same as for our other Web components. The details are listed on [docs.adyen.com](https://docs.adyen.com/development-resources/client-side-authentication#get-your-client-key) |
|
|
61
|
-
| `environment` | | the domain where the KYC external api can be contacted. |
|
|
62
|
-
|
|
63
|
-
#### **`AdyenKyc.create(dropinComponentName: ComponentName, options: Options)`**
|
|
64
|
-
|
|
65
|
-
**`ComponentName`**
|
|
66
|
-
Possible values are:
|
|
67
|
-
| Value | Description |
|
|
68
|
-
|---|---|
|
|
69
|
-
| `'taskList'` **recommended** | Let the SDK list the tasks that require completion. The navigation between each task will be handled internally. The rendering of drop-ins and navigation will be decided automatically. |
|
|
70
|
-
| `'individualDropin'` | KYC details for a natural person
|
|
71
|
-
| `'companyDropin'` | KYC details for an organization
|
|
72
|
-
| `'payoutAccount'` | KYC details for a transfer instrument
|
|
73
|
-
|
|
74
|
-
**`Options`**
|
|
75
|
-
|
|
76
|
-
| Option | Required | Type | Remarks |
|
|
77
|
-
| ------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
78
|
-
| `legalEntityResponse` | Required | Legal Entity _object_ that is returned from the [Legal Entities API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/get/legalEntities/{id}) | this now contains extended properties, see [legal-entity.ts](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/core/models/api/legal-entity.ts) for more details |
|
|
79
|
-
| `capabilities` | Required | _array_ | List of capabilities that are being requested, e.g. ['PSP_PAYOUT'] |
|
|
80
|
-
| `readOnly` | Rrequired | _boolean_ | to set form to read only mode |
|
|
81
|
-
| `country` | Optional | _string_ | overrides resident country set in the Config that initialises the AdyenKyc |
|
|
82
|
-
| `showInlineErrors` | Optional | _boolean_ | show errors inline or only above form |
|
|
83
|
-
| `onChange` | Optional | _(state) => void_ | method that passes on the entire state when changes to the state of the forms have changed. _state_ in the case of the Individual form will be of type [IndividualSchema](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/components/Individual/types.ts#:~:text=export%20interface-,IndividualSchema,-%7B). |
|
|
84
|
-
| `onSubmit` | Optional | _(state) => void_ | method that passed on the entire state _after_ submitted data has been handled by the backend (successfully received a 200 response). <br />_i.e. User clicks form submit -> API handler promise fired -> promise resolves successfully -> fires onSubmit_ |
|
|
85
|
-
| `handleGetLegalEntity` | Required | _(legalEntityId: string) => Promise\<LegalEntity\>_ | method for getting a Legal Entity using the [legalEntities API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/get/legalEntities/{id}). |
|
|
86
|
-
| `handleCreateLegalEntity` | Required | _(data: [LegalEntity](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/core/models/api/legal-entity.ts)) => Promise\<LegalEntity\>_ | method for creating a legal entity using the [legalEntities API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/post/legalEntities). |
|
|
87
|
-
| `handleUpdateLegalEntity` | Required | _(data: [LegalEntity](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/core/models/api/legal-entity.ts), legalEntityId: string) => Promise\<LegalEntity\>_ | method for updating a legal entity using the [legalEntities API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/patch/legalEntities/{id}). |
|
|
88
|
-
| `handleCreateIdDocument` | Required | _(data: [Document](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/core/models/api/document.ts)) => Promise\<Document\>_ | method for creating a document using the [documents API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/post/documents). |
|
|
89
|
-
| `handleUpdateIdDocument` | Required | _(data: [Document](https://github.com/Adyen/adyen-kyc-components/blob/main/packages/lib/src/core/models/api/document.ts), , documentId: string) => Promise\<Document\>_ | method for updating a document using the [documents API](https://docs.adyen.com/api-explorer/#/balanceplatform/v1/patch/documents/{id}). |
|
|
90
|
-
|
|
91
|
-
## Server configuration
|
|
92
|
-
|
|
93
|
-
To complete the setup of the Adyen SDK the following additional configurations are needed on your server. These configurations are listed below.
|
|
94
|
-
|
|
95
|
-
### Content Security Policy
|
|
96
|
-
|
|
97
|
-
In order for the SDK to reach out to the Adyen servers for configuration requests and assets, additional [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) need to be configured. On top of your existing configration the following domains need to be added:
|
|
98
|
-
|
|
99
|
-
| Environment | CSP Section | Value |
|
|
100
|
-
| ----------- | ----------- | -------------------------- |
|
|
101
|
-
| Test | connect-src | https://kyc-test.adyen.com |
|
|
102
|
-
| Test | font-src | https://kyc-test.adyen.com |
|
|
103
|
-
| Test | img-src | https://kyc-test.adyen.com |
|
|
104
|
-
| Live | connect-src | https://kyc-live.adyen.com |
|
|
105
|
-
| Live | font-src | https://kyc-live.adyen.com |
|
|
106
|
-
| Live | img-src | https://kyc-live.adyen.com |
|
|
107
|
-
|
|
108
|
-
## Mock API
|
|
109
|
-
|
|
110
|
-
[The `server` folder contains the mock API](./server). It is used to develop without running the Adyen platform.
|
|
111
|
-
It is also used during e2e testing in CI jobs.
|
|
112
|
-
|
|
113
|
-
## End-to-end tests
|
|
114
|
-
|
|
115
|
-
End-to-end tests live in the [tests](./tests) folder. The E2E test framework we use is [Playwright](https://playwright.dev/).
|
|
116
|
-
|
|
117
|
-
To run the e2e tests locally, simply do `npm run test:e2e -- --project {browser}`, where `{browser}` can be one of:
|
|
118
|
-
|
|
119
|
-
- `local-chrome`: uses the Google Chrome installation already present on your machine.
|
|
120
|
-
- `chromium`: uses the latest stable Chromium binary installed via `playwright install`.
|
|
121
|
-
This is usually a major version ahead of Chrome & Edge.
|
|
122
|
-
- `firefox`: uses the latest stable Firefox binary installed via `playwright install`.
|
|
123
|
-
- ~~`webkit` : uses the latest stable WebKit binary installed via `playwright install`~~ (currently disabled)
|
|
124
|
-
|
|
125
|
-
For more info on the available browsers, [see here](https://playwright.dev/docs/browsers).
|
|
126
|
-
|
|
127
|
-
By default, Playwright runs in headed mode in development, and headless in CI.
|
|
128
|
-
|
|
129
|
-
### Debugging E2E tests
|
|
130
|
-
|
|
131
|
-
When you need to figure out why a test is (or isn't) failing, `npm run test:e2e:debug` is your friend.
|
|
132
|
-
There are a few tools here which come in handy:
|
|
133
|
-
|
|
134
|
-
- [Playwright Inspector](https://playwright.dev/docs/debug#playwright-inspector):
|
|
135
|
-
This tool allows you to explore the selectors Playwright is checking and see what user actions it is performing.
|
|
136
|
-
- `.only()`: Add this to any of your tests to make it the only test Playwright runs.
|
|
137
|
-
- `page.pause()`: You can use this to make Playwright pause execution (and open the inspector) at a specific point in any test.
|
|
138
|
-
- Dev Tools: You can use the browser's dev tools as normal when inspecting a Playwright test.
|
|
139
|
-
For example, you can see what network requests are being made in the network tab.
|
|
140
|
-
Playwright will also add a `window.playwright` object you can use to test out [locators](https://playwright.dev/docs/locators).
|
|
141
|
-
|
|
142
|
-
For more info on debugging Playwright tests, [see here](https://playwright.dev/docs/debug).
|
|
143
|
-
|
|
144
|
-
### Viewing traces
|
|
145
|
-
|
|
146
|
-
When the E2E tests fail on CI, it can be quite difficult to figure out why. For that, we can use [Playwright's trace viewer](https://playwright.dev/docs/trace-viewer).
|
|
147
|
-
This tool lets us view a recorded test run and "replay" what happened. It includes screenshots, logs of browser console & network requests, and more.
|
|
148
|
-
|
|
149
|
-
To use it, first download the report artifact for the given test run from GitHub:
|
|
150
|
-
|
|
151
|
-
1. Find your test run [here](https://github.com/Adyen/adyen-kyc-components/actions/workflows/e2e-test.yml) (or click on the check from the PR).
|
|
152
|
-
2. If the tests failed, you should see `playwright-report-{xxxxx}` under _Artifacts_.
|
|
153
|
-
3. Download this file and unzip it. Inside, you will find a `data` directory which contains more `.zip`s. Each of these is the trace for a single test.
|
|
154
|
-
4. To view a trace, upload the `.zip` xto [trace.playwright.dev](https://trace.playwright.dev/).
|
|
51
|
+
See our [Onboarding components documentation](https://docs.adyen.com/platforms/onboard-users/onboarding-components/) for more details.
|
|
155
52
|
|
|
156
|
-
##
|
|
53
|
+
## Supported countries/regions
|
|
157
54
|
|
|
158
|
-
|
|
159
|
-
For more information see the [documentation for static assets](./assets/README.md).
|
|
55
|
+
You can use the Onboarding components to onboard users operating in countries listed [here](https://docs.adyen.com/platforms/onboard-users/onboarding-components/#supported-countries-regions).
|
|
160
56
|
|
|
161
|
-
##
|
|
57
|
+
## Supported languages
|
|
162
58
|
|
|
163
|
-
|
|
59
|
+
You can localize the Onboarding components by setting `locale` parameter to one of the supported languages listed [here](https://docs.adyen.com/platforms/onboard-users/onboarding-components/#supported-languages).
|
|
@@ -3,7 +3,7 @@ const partnershipIncorporated = [
|
|
|
3
3
|
"Kommanditgesellschaft (KG)",
|
|
4
4
|
"GmbH & Co. KG"
|
|
5
5
|
];
|
|
6
|
-
const
|
|
6
|
+
const partnershipUnincorporated = [
|
|
7
7
|
"Gesellschaft des bürgerlichen Rechts (GesbR)",
|
|
8
8
|
"stille Gesellschaft (stG)"
|
|
9
9
|
];
|
|
@@ -14,12 +14,12 @@ const associationIncorporated = [
|
|
|
14
14
|
];
|
|
15
15
|
const AT = {
|
|
16
16
|
partnershipIncorporated,
|
|
17
|
-
|
|
17
|
+
partnershipUnincorporated,
|
|
18
18
|
associationIncorporated
|
|
19
19
|
};
|
|
20
20
|
export {
|
|
21
21
|
associationIncorporated,
|
|
22
22
|
AT as default,
|
|
23
23
|
partnershipIncorporated,
|
|
24
|
-
|
|
24
|
+
partnershipUnincorporated
|
|
25
25
|
};
|
|
@@ -2,7 +2,7 @@ const partnershipIncorporated = [
|
|
|
2
2
|
"incorporated limited partnership (ILP)",
|
|
3
3
|
"limited liability partnership (LLP)"
|
|
4
4
|
];
|
|
5
|
-
const
|
|
5
|
+
const partnershipUnincorporated = [
|
|
6
6
|
"general partnership (GP)",
|
|
7
7
|
"limited partnership (LP)"
|
|
8
8
|
];
|
|
@@ -11,12 +11,12 @@ const associationIncorporated = [
|
|
|
11
11
|
];
|
|
12
12
|
const AU = {
|
|
13
13
|
partnershipIncorporated,
|
|
14
|
-
|
|
14
|
+
partnershipUnincorporated,
|
|
15
15
|
associationIncorporated
|
|
16
16
|
};
|
|
17
17
|
export {
|
|
18
18
|
associationIncorporated,
|
|
19
19
|
AU as default,
|
|
20
20
|
partnershipIncorporated,
|
|
21
|
-
|
|
21
|
+
partnershipUnincorporated
|
|
22
22
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"commanditaire vennootschap op aandelen (Comm.VA) / société en commandite par actions (SCA)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"maatschap / société simple"
|
|
6
6
|
];
|
|
7
7
|
const associationIncorporated = [
|
|
@@ -9,12 +9,12 @@ const associationIncorporated = [
|
|
|
9
9
|
];
|
|
10
10
|
const BE = {
|
|
11
11
|
partnershipIncorporated,
|
|
12
|
-
|
|
12
|
+
partnershipUnincorporated,
|
|
13
13
|
associationIncorporated
|
|
14
14
|
};
|
|
15
15
|
export {
|
|
16
16
|
associationIncorporated,
|
|
17
17
|
BE as default,
|
|
18
18
|
partnershipIncorporated,
|
|
19
|
-
|
|
19
|
+
partnershipUnincorporated
|
|
20
20
|
};
|
|
@@ -3,7 +3,7 @@ const partnershipIncorporated = [
|
|
|
3
3
|
"sociedade em comandita simples",
|
|
4
4
|
"sociedade em comandita por ações"
|
|
5
5
|
];
|
|
6
|
-
const
|
|
6
|
+
const partnershipUnincorporated = [
|
|
7
7
|
"sociedade em comum (no legal personality)",
|
|
8
8
|
"sociedade em conta de participação"
|
|
9
9
|
];
|
|
@@ -13,12 +13,12 @@ const associationIncorporated = [
|
|
|
13
13
|
];
|
|
14
14
|
const BR = {
|
|
15
15
|
partnershipIncorporated,
|
|
16
|
-
|
|
16
|
+
partnershipUnincorporated,
|
|
17
17
|
associationIncorporated
|
|
18
18
|
};
|
|
19
19
|
export {
|
|
20
20
|
associationIncorporated,
|
|
21
21
|
BR as default,
|
|
22
22
|
partnershipIncorporated,
|
|
23
|
-
|
|
23
|
+
partnershipUnincorporated
|
|
24
24
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"limited liability partnership (LLP)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"limited partnership (LP)",
|
|
6
6
|
"general partnership (GP)"
|
|
7
7
|
];
|
|
8
8
|
const CA = {
|
|
9
9
|
partnershipIncorporated,
|
|
10
|
-
|
|
10
|
+
partnershipUnincorporated
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
13
13
|
CA as default,
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated
|
|
16
16
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"Kommanditgesellschaft fuer kollektive Kapitalanlagen / société en commandite de placements collectifs / società in accomandita per investimenti collettivi di capitale"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"Einfache Gesellschaft (eG) / société simple / società semplice"
|
|
6
6
|
];
|
|
7
7
|
const associationIncorporated = [
|
|
@@ -9,12 +9,12 @@ const associationIncorporated = [
|
|
|
9
9
|
];
|
|
10
10
|
const CH = {
|
|
11
11
|
partnershipIncorporated,
|
|
12
|
-
|
|
12
|
+
partnershipUnincorporated,
|
|
13
13
|
associationIncorporated
|
|
14
14
|
};
|
|
15
15
|
export {
|
|
16
16
|
associationIncorporated,
|
|
17
17
|
CH as default,
|
|
18
18
|
partnershipIncorporated,
|
|
19
|
-
|
|
19
|
+
partnershipUnincorporated
|
|
20
20
|
};
|
|
@@ -2,7 +2,7 @@ const partnershipIncorporated = [
|
|
|
2
2
|
"společnost komanditní (k.s.)",
|
|
3
3
|
"družstvo"
|
|
4
4
|
];
|
|
5
|
-
const
|
|
5
|
+
const partnershipUnincorporated = [
|
|
6
6
|
"veřejná obchodní společnost (v.o.s)",
|
|
7
7
|
"druzstvo"
|
|
8
8
|
];
|
|
@@ -13,12 +13,12 @@ const associationIncorporated = [
|
|
|
13
13
|
];
|
|
14
14
|
const CZ = {
|
|
15
15
|
partnershipIncorporated,
|
|
16
|
-
|
|
16
|
+
partnershipUnincorporated,
|
|
17
17
|
associationIncorporated
|
|
18
18
|
};
|
|
19
19
|
export {
|
|
20
20
|
associationIncorporated,
|
|
21
21
|
CZ as default,
|
|
22
22
|
partnershipIncorporated,
|
|
23
|
-
|
|
23
|
+
partnershipUnincorporated
|
|
24
24
|
};
|
|
@@ -2,7 +2,7 @@ const partnershipIncorporated = [
|
|
|
2
2
|
"Partnerschaftsgesellschaft (PartG)",
|
|
3
3
|
"GmbH & Co. KG"
|
|
4
4
|
];
|
|
5
|
-
const
|
|
5
|
+
const partnershipUnincorporated = [
|
|
6
6
|
"GmbH & Co. OHG",
|
|
7
7
|
"offene Handelsgesellschaft (OHG)",
|
|
8
8
|
"Gesellschaft des bürgerlichen Rechts (GbR)"
|
|
@@ -14,12 +14,12 @@ const associationIncorporated = [
|
|
|
14
14
|
];
|
|
15
15
|
const DE = {
|
|
16
16
|
partnershipIncorporated,
|
|
17
|
-
|
|
17
|
+
partnershipUnincorporated,
|
|
18
18
|
associationIncorporated
|
|
19
19
|
};
|
|
20
20
|
export {
|
|
21
21
|
associationIncorporated,
|
|
22
22
|
DE as default,
|
|
23
23
|
partnershipIncorporated,
|
|
24
|
-
|
|
24
|
+
partnershipUnincorporated
|
|
25
25
|
};
|
|
@@ -2,7 +2,7 @@ const partnershipIncorporated = [
|
|
|
2
2
|
"partnerselskab (P/S)",
|
|
3
3
|
"kommanditselskab (K/S)"
|
|
4
4
|
];
|
|
5
|
-
const
|
|
5
|
+
const partnershipUnincorporated = [
|
|
6
6
|
"interessentskab (I/S)"
|
|
7
7
|
];
|
|
8
8
|
const associationIncorporated = [
|
|
@@ -12,12 +12,12 @@ const associationIncorporated = [
|
|
|
12
12
|
];
|
|
13
13
|
const DK = {
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated,
|
|
16
16
|
associationIncorporated
|
|
17
17
|
};
|
|
18
18
|
export {
|
|
19
19
|
associationIncorporated,
|
|
20
20
|
DK as default,
|
|
21
21
|
partnershipIncorporated,
|
|
22
|
-
|
|
22
|
+
partnershipUnincorporated
|
|
23
23
|
};
|
|
@@ -3,7 +3,7 @@ const partnershipIncorporated = [
|
|
|
3
3
|
"sociedad limitada laboral (SLL)",
|
|
4
4
|
"unión temporal de empresas (UTE)"
|
|
5
5
|
];
|
|
6
|
-
const
|
|
6
|
+
const partnershipUnincorporated = [
|
|
7
7
|
"comunidad de bienes",
|
|
8
8
|
"herencia yacente",
|
|
9
9
|
"comunidad de propietarios en régimen de propiedad horizontal"
|
|
@@ -13,12 +13,12 @@ const associationIncorporated = [
|
|
|
13
13
|
];
|
|
14
14
|
const ES = {
|
|
15
15
|
partnershipIncorporated,
|
|
16
|
-
|
|
16
|
+
partnershipUnincorporated,
|
|
17
17
|
associationIncorporated
|
|
18
18
|
};
|
|
19
19
|
export {
|
|
20
20
|
associationIncorporated,
|
|
21
21
|
ES as default,
|
|
22
22
|
partnershipIncorporated,
|
|
23
|
-
|
|
23
|
+
partnershipUnincorporated
|
|
24
24
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"kommandiittiyhtiö / kommanditbolag (Ky/kb)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"avoin yhtiö / öppet bolag"
|
|
6
6
|
];
|
|
7
7
|
const associationIncorporated = [
|
|
@@ -9,12 +9,12 @@ const associationIncorporated = [
|
|
|
9
9
|
];
|
|
10
10
|
const FI = {
|
|
11
11
|
partnershipIncorporated,
|
|
12
|
-
|
|
12
|
+
partnershipUnincorporated,
|
|
13
13
|
associationIncorporated
|
|
14
14
|
};
|
|
15
15
|
export {
|
|
16
16
|
associationIncorporated,
|
|
17
17
|
FI as default,
|
|
18
18
|
partnershipIncorporated,
|
|
19
|
-
|
|
19
|
+
partnershipUnincorporated
|
|
20
20
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"société civile immobilière (SCI)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"société en nom collectif (SNC)",
|
|
6
6
|
"société en commandite simple (SCS)",
|
|
7
7
|
"société en participation (SEP)"
|
|
@@ -11,12 +11,12 @@ const associationIncorporated = [
|
|
|
11
11
|
];
|
|
12
12
|
const FR = {
|
|
13
13
|
partnershipIncorporated,
|
|
14
|
-
|
|
14
|
+
partnershipUnincorporated,
|
|
15
15
|
associationIncorporated
|
|
16
16
|
};
|
|
17
17
|
export {
|
|
18
18
|
associationIncorporated,
|
|
19
19
|
FR as default,
|
|
20
20
|
partnershipIncorporated,
|
|
21
|
-
|
|
21
|
+
partnershipUnincorporated
|
|
22
22
|
};
|
|
@@ -2,7 +2,7 @@ const partnershipIncorporated = [
|
|
|
2
2
|
"limited liability partnership (LLP)",
|
|
3
3
|
"Scottish limited partnership (SLP)"
|
|
4
4
|
];
|
|
5
|
-
const
|
|
5
|
+
const partnershipUnincorporated = [
|
|
6
6
|
"limited partnership (LP)",
|
|
7
7
|
"private fund limited partnership (PFLP)",
|
|
8
8
|
"general partnership (GP)"
|
|
@@ -12,12 +12,12 @@ const associationIncorporated = [
|
|
|
12
12
|
];
|
|
13
13
|
const GB = {
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated,
|
|
16
16
|
associationIncorporated
|
|
17
17
|
};
|
|
18
18
|
export {
|
|
19
19
|
associationIncorporated,
|
|
20
20
|
GB as default,
|
|
21
21
|
partnershipIncorporated,
|
|
22
|
-
|
|
22
|
+
partnershipUnincorporated
|
|
23
23
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"limited liability partnership (LP)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"general partnership",
|
|
6
6
|
"limited partnership"
|
|
7
7
|
];
|
|
8
8
|
const HK = {
|
|
9
9
|
partnershipIncorporated,
|
|
10
|
-
|
|
10
|
+
partnershipUnincorporated
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
13
13
|
HK as default,
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated
|
|
16
16
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"komanditno društvo (k.d.)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"javno trgovačko društvo (j.t.d.)",
|
|
6
6
|
"ortakluk"
|
|
7
7
|
];
|
|
@@ -12,12 +12,12 @@ const associationIncorporated = [
|
|
|
12
12
|
];
|
|
13
13
|
const HR = {
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated,
|
|
16
16
|
associationIncorporated
|
|
17
17
|
};
|
|
18
18
|
export {
|
|
19
19
|
associationIncorporated,
|
|
20
20
|
HR as default,
|
|
21
21
|
partnershipIncorporated,
|
|
22
|
-
|
|
22
|
+
partnershipUnincorporated
|
|
23
23
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"limited liability partnership (LP)"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"betéti társaság (Bt.)",
|
|
6
6
|
"közkereseti társaság (Kkt.)"
|
|
7
7
|
];
|
|
@@ -10,12 +10,12 @@ const associationIncorporated = [
|
|
|
10
10
|
];
|
|
11
11
|
const HU = {
|
|
12
12
|
partnershipIncorporated,
|
|
13
|
-
|
|
13
|
+
partnershipUnincorporated,
|
|
14
14
|
associationIncorporated
|
|
15
15
|
};
|
|
16
16
|
export {
|
|
17
17
|
associationIncorporated,
|
|
18
18
|
HU as default,
|
|
19
19
|
partnershipIncorporated,
|
|
20
|
-
|
|
20
|
+
partnershipUnincorporated
|
|
21
21
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
const partnershipIncorporated = [
|
|
2
2
|
"investment limited partnership"
|
|
3
3
|
];
|
|
4
|
-
const
|
|
4
|
+
const partnershipUnincorporated = [
|
|
5
5
|
"limited partnership (LP)",
|
|
6
6
|
"general partnership (GP)"
|
|
7
7
|
];
|
|
8
8
|
const IE = {
|
|
9
9
|
partnershipIncorporated,
|
|
10
|
-
|
|
10
|
+
partnershipUnincorporated
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
13
13
|
IE as default,
|
|
14
14
|
partnershipIncorporated,
|
|
15
|
-
|
|
15
|
+
partnershipUnincorporated
|
|
16
16
|
};
|
|
@@ -5,7 +5,7 @@ const partnershipIncorporated = [
|
|
|
5
5
|
"",
|
|
6
6
|
"società semplice (S.S.)"
|
|
7
7
|
];
|
|
8
|
-
const
|
|
8
|
+
const partnershipUnincorporated = [
|
|
9
9
|
"società consortile a responsabilità limitata (S.c.a.r.l.)",
|
|
10
10
|
"Sscietà cooperativa a responsabilità limitata (S.c.r.l.)"
|
|
11
11
|
];
|
|
@@ -14,12 +14,12 @@ const associationIncorporated = [
|
|
|
14
14
|
];
|
|
15
15
|
const IT = {
|
|
16
16
|
partnershipIncorporated,
|
|
17
|
-
|
|
17
|
+
partnershipUnincorporated,
|
|
18
18
|
associationIncorporated
|
|
19
19
|
};
|
|
20
20
|
export {
|
|
21
21
|
associationIncorporated,
|
|
22
22
|
IT as default,
|
|
23
23
|
partnershipIncorporated,
|
|
24
|
-
|
|
24
|
+
partnershipUnincorporated
|
|
25
25
|
};
|