@emilgroup/insurance-sdk-node 1.93.1-beta.32 → 1.93.1-beta.34
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 +2 -2
- package/dist/models/create-product-field-request-dto.d.ts +6 -0
- package/dist/models/product-field-class.d.ts +6 -0
- package/dist/models/shared-product-field-class.d.ts +6 -0
- package/dist/models/update-product-field-request-dto.d.ts +6 -0
- package/models/create-product-field-request-dto.ts +6 -0
- package/models/product-field-class.ts +6 -0
- package/models/shared-product-field-class.ts +6 -0
- package/models/update-product-field-request-dto.ts +6 -0
- package/package.json +1 -1
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.93.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.93.1-beta.34 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.34
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -81,6 +81,12 @@ export interface CreateProductFieldRequestDto {
|
|
|
81
81
|
* @memberof CreateProductFieldRequestDto
|
|
82
82
|
*/
|
|
83
83
|
'isEditableCustomerPortal': boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this field can be overridden by product config.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof CreateProductFieldRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'isProductConfigOverridable'?: boolean;
|
|
84
90
|
/**
|
|
85
91
|
* Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" }
|
|
86
92
|
* @type {object}
|
|
@@ -81,6 +81,12 @@ export interface ProductFieldClass {
|
|
|
81
81
|
* @memberof ProductFieldClass
|
|
82
82
|
*/
|
|
83
83
|
'isEditableCustomerPortal': boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this field can be overridden by product config.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof ProductFieldClass
|
|
88
|
+
*/
|
|
89
|
+
'isProductConfigOverridable': boolean;
|
|
84
90
|
/**
|
|
85
91
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
86
92
|
* @type {boolean}
|
|
@@ -81,6 +81,12 @@ export interface SharedProductFieldClass {
|
|
|
81
81
|
* @memberof SharedProductFieldClass
|
|
82
82
|
*/
|
|
83
83
|
'isEditableCustomerPortal': boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this field can be overridden by product config.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof SharedProductFieldClass
|
|
88
|
+
*/
|
|
89
|
+
'isProductConfigOverridable': boolean;
|
|
84
90
|
/**
|
|
85
91
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
86
92
|
* @type {boolean}
|
|
@@ -81,6 +81,12 @@ export interface UpdateProductFieldRequestDto {
|
|
|
81
81
|
* @memberof UpdateProductFieldRequestDto
|
|
82
82
|
*/
|
|
83
83
|
'isEditableCustomerPortal': boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this field can be overridden by product config.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof UpdateProductFieldRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'isProductConfigOverridable'?: boolean;
|
|
84
90
|
/**
|
|
85
91
|
* Should the field value be unique across policies?
|
|
86
92
|
* @type {boolean}
|
|
@@ -86,6 +86,12 @@ export interface CreateProductFieldRequestDto {
|
|
|
86
86
|
* @memberof CreateProductFieldRequestDto
|
|
87
87
|
*/
|
|
88
88
|
'isEditableCustomerPortal': boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Whether this field can be overridden by product config.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof CreateProductFieldRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'isProductConfigOverridable'?: boolean;
|
|
89
95
|
/**
|
|
90
96
|
* Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" }
|
|
91
97
|
* @type {object}
|
|
@@ -86,6 +86,12 @@ export interface ProductFieldClass {
|
|
|
86
86
|
* @memberof ProductFieldClass
|
|
87
87
|
*/
|
|
88
88
|
'isEditableCustomerPortal': boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Whether this field can be overridden by product config.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof ProductFieldClass
|
|
93
|
+
*/
|
|
94
|
+
'isProductConfigOverridable': boolean;
|
|
89
95
|
/**
|
|
90
96
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
91
97
|
* @type {boolean}
|
|
@@ -86,6 +86,12 @@ export interface SharedProductFieldClass {
|
|
|
86
86
|
* @memberof SharedProductFieldClass
|
|
87
87
|
*/
|
|
88
88
|
'isEditableCustomerPortal': boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Whether this field can be overridden by product config.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof SharedProductFieldClass
|
|
93
|
+
*/
|
|
94
|
+
'isProductConfigOverridable': boolean;
|
|
89
95
|
/**
|
|
90
96
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
91
97
|
* @type {boolean}
|
|
@@ -86,6 +86,12 @@ export interface UpdateProductFieldRequestDto {
|
|
|
86
86
|
* @memberof UpdateProductFieldRequestDto
|
|
87
87
|
*/
|
|
88
88
|
'isEditableCustomerPortal': boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Whether this field can be overridden by product config.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof UpdateProductFieldRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'isProductConfigOverridable'?: boolean;
|
|
89
95
|
/**
|
|
90
96
|
* Should the field value be unique across policies?
|
|
91
97
|
* @type {boolean}
|