@emilgroup/public-api-sdk-node 1.1.0 → 1.1.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.
|
@@ -22,19 +22,19 @@ export interface CreateEstimatedInvoiceRequestDto {
|
|
|
22
22
|
* @type {Array<PolicyObjectRequestDto>}
|
|
23
23
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
24
24
|
*/
|
|
25
|
-
'policyObjects'
|
|
25
|
+
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
26
26
|
/**
|
|
27
27
|
* Customer custom data for premium calculation.
|
|
28
28
|
* @type {object}
|
|
29
29
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
30
30
|
*/
|
|
31
|
-
'data'
|
|
31
|
+
'data'?: object;
|
|
32
32
|
/**
|
|
33
33
|
* Custom provider name.
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
36
36
|
*/
|
|
37
|
-
'provider'
|
|
37
|
+
'provider'?: CreateEstimatedInvoiceRequestDtoProviderEnum;
|
|
38
38
|
/**
|
|
39
39
|
* Premium Override.
|
|
40
40
|
* @type {Array<PremiumOverrideRequestDto>}
|
|
@@ -27,19 +27,19 @@ export interface CreateEstimatedInvoiceRequestDto {
|
|
|
27
27
|
* @type {Array<PolicyObjectRequestDto>}
|
|
28
28
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
29
29
|
*/
|
|
30
|
-
'policyObjects'
|
|
30
|
+
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
31
31
|
/**
|
|
32
32
|
* Customer custom data for premium calculation.
|
|
33
33
|
* @type {object}
|
|
34
34
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
35
35
|
*/
|
|
36
|
-
'data'
|
|
36
|
+
'data'?: object;
|
|
37
37
|
/**
|
|
38
38
|
* Custom provider name.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof CreateEstimatedInvoiceRequestDto
|
|
41
41
|
*/
|
|
42
|
-
'provider'
|
|
42
|
+
'provider'?: CreateEstimatedInvoiceRequestDtoProviderEnum;
|
|
43
43
|
/**
|
|
44
44
|
* Premium Override.
|
|
45
45
|
* @type {Array<PremiumOverrideRequestDto>}
|