@emilgroup/insurance-sdk-node 1.104.1-beta.4 → 1.104.1-beta.5
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/insurance-sdk-node@1.104.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.104.1-beta.5 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.104.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.104.1-beta.5
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface TerminatePolicyRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Policy termination date. A different date may be used depending on the policy minimum term, termination notice period, and the submission date.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof TerminatePolicyRequestDto
|
|
22
22
|
*/
|
|
@@ -27,6 +27,12 @@ export interface TerminatePolicyRequestDto {
|
|
|
27
27
|
* @memberof TerminatePolicyRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'terminationReason'?: TerminatePolicyRequestDtoTerminationReasonEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Submission date. Date used for checking if the notice was given in time or late when the termination notice period is configured. Defaults to the current date when omitted.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof TerminatePolicyRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'submissionDate'?: string;
|
|
30
36
|
}
|
|
31
37
|
export declare const TerminatePolicyRequestDtoTerminationReasonEnum: {
|
|
32
38
|
readonly TerminationAtRenewal: "termination_at_renewal";
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface TerminatePolicyRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Policy termination date. A different date may be used depending on the policy minimum term, termination notice period, and the submission date.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof TerminatePolicyRequestDto
|
|
27
27
|
*/
|
|
@@ -32,6 +32,12 @@ export interface TerminatePolicyRequestDto {
|
|
|
32
32
|
* @memberof TerminatePolicyRequestDto
|
|
33
33
|
*/
|
|
34
34
|
'terminationReason'?: TerminatePolicyRequestDtoTerminationReasonEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Submission date. Date used for checking if the notice was given in time or late when the termination notice period is configured. Defaults to the current date when omitted.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof TerminatePolicyRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'submissionDate'?: string;
|
|
35
41
|
}
|
|
36
42
|
|
|
37
43
|
export const TerminatePolicyRequestDtoTerminationReasonEnum = {
|