@emilgroup/public-api-sdk-node 1.16.1 → 1.16.2
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
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/public-api-sdk-node@1.16.
|
|
20
|
+
npm install @emilgroup/public-api-sdk-node@1.16.2 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/public-api-sdk-node@1.16.
|
|
24
|
+
yarn add @emilgroup/public-api-sdk-node@1.16.2
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PublicApi`.
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
13
|
-
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
14
13
|
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
15
14
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
16
15
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
@@ -52,10 +51,10 @@ export interface UpdateLeadRequestDto {
|
|
|
52
51
|
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
53
52
|
/**
|
|
54
53
|
* Bank account details, to be used for direct debit payments, the created bank account will be attached to the lead for later use, such as paying claims. The bank account content will be validated if the \'validate\' flag is set to true.
|
|
55
|
-
* @type {
|
|
54
|
+
* @type {any}
|
|
56
55
|
* @memberof UpdateLeadRequestDto
|
|
57
56
|
*/
|
|
58
|
-
'bankAccount'?:
|
|
57
|
+
'bankAccount'?: any;
|
|
59
58
|
/**
|
|
60
59
|
* Optional custom data for the lead. This field is useful for edge cases where the lead requires additional data for the risk carrier, such as creating an application in the risk carrier platform or performing a premium calculation. The custom data should include three main entities: \'data\', \'provider\', and \'productCode\'. The \'data\' entity contains information used in the risk carrier platform, the \'provider\' field contains the name of the provider (usually the risk carrier\'s name), the provider must be supported in EMIL, The \'productCode\' field contains the product code in EMIL
|
|
61
60
|
* @type {object}
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
17
|
-
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
18
17
|
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
19
18
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
20
19
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
@@ -57,10 +56,10 @@ export interface UpdateLeadRequestDto {
|
|
|
57
56
|
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
58
57
|
/**
|
|
59
58
|
* Bank account details, to be used for direct debit payments, the created bank account will be attached to the lead for later use, such as paying claims. The bank account content will be validated if the \'validate\' flag is set to true.
|
|
60
|
-
* @type {
|
|
59
|
+
* @type {any}
|
|
61
60
|
* @memberof UpdateLeadRequestDto
|
|
62
61
|
*/
|
|
63
|
-
'bankAccount'?:
|
|
62
|
+
'bankAccount'?: any;
|
|
64
63
|
/**
|
|
65
64
|
* Optional custom data for the lead. This field is useful for edge cases where the lead requires additional data for the risk carrier, such as creating an application in the risk carrier platform or performing a premium calculation. The custom data should include three main entities: \'data\', \'provider\', and \'productCode\'. The \'data\' entity contains information used in the risk carrier platform, the \'provider\' field contains the name of the provider (usually the risk carrier\'s name), the provider must be supported in EMIL, The \'productCode\' field contains the product code in EMIL
|
|
66
65
|
* @type {object}
|