@emilgroup/insurance-sdk-node 1.58.0 → 1.59.0
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.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.59.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.59.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -135,6 +135,12 @@ export interface CreateProductFieldRequestDto {
|
|
|
135
135
|
* @memberof CreateProductFieldRequestDto
|
|
136
136
|
*/
|
|
137
137
|
'legacyBfOrder'?: number;
|
|
138
|
+
/**
|
|
139
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
140
|
+
* @type {object}
|
|
141
|
+
* @memberof CreateProductFieldRequestDto
|
|
142
|
+
*/
|
|
143
|
+
'metadata'?: object;
|
|
138
144
|
}
|
|
139
145
|
export declare const CreateProductFieldRequestDtoTypeEntityEnum: {
|
|
140
146
|
readonly SystemProductFieldType: "system_product_field_type";
|
|
@@ -123,6 +123,12 @@ export interface ProductFieldClass {
|
|
|
123
123
|
* @memberof ProductFieldClass
|
|
124
124
|
*/
|
|
125
125
|
'order': number;
|
|
126
|
+
/**
|
|
127
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
128
|
+
* @type {object}
|
|
129
|
+
* @memberof ProductFieldClass
|
|
130
|
+
*/
|
|
131
|
+
'metadata'?: object;
|
|
126
132
|
/**
|
|
127
133
|
* Time at which the object was created.
|
|
128
134
|
* @type {string}
|
|
@@ -123,6 +123,12 @@ export interface SharedProductFieldClass {
|
|
|
123
123
|
* @memberof SharedProductFieldClass
|
|
124
124
|
*/
|
|
125
125
|
'order': number;
|
|
126
|
+
/**
|
|
127
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
128
|
+
* @type {object}
|
|
129
|
+
* @memberof SharedProductFieldClass
|
|
130
|
+
*/
|
|
131
|
+
'metadata'?: object;
|
|
126
132
|
/**
|
|
127
133
|
* Time at which the object was created.
|
|
128
134
|
* @type {string}
|
|
@@ -141,6 +141,12 @@ export interface UpdateProductFieldRequestDto {
|
|
|
141
141
|
* @memberof UpdateProductFieldRequestDto
|
|
142
142
|
*/
|
|
143
143
|
'legacyBfOrder'?: number;
|
|
144
|
+
/**
|
|
145
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
146
|
+
* @type {object}
|
|
147
|
+
* @memberof UpdateProductFieldRequestDto
|
|
148
|
+
*/
|
|
149
|
+
'metadata'?: object;
|
|
144
150
|
}
|
|
145
151
|
export declare const UpdateProductFieldRequestDtoTypeEntityEnum: {
|
|
146
152
|
readonly SystemProductFieldType: "system_product_field_type";
|
|
@@ -140,6 +140,12 @@ export interface CreateProductFieldRequestDto {
|
|
|
140
140
|
* @memberof CreateProductFieldRequestDto
|
|
141
141
|
*/
|
|
142
142
|
'legacyBfOrder'?: number;
|
|
143
|
+
/**
|
|
144
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
145
|
+
* @type {object}
|
|
146
|
+
* @memberof CreateProductFieldRequestDto
|
|
147
|
+
*/
|
|
148
|
+
'metadata'?: object;
|
|
143
149
|
}
|
|
144
150
|
|
|
145
151
|
export const CreateProductFieldRequestDtoTypeEntityEnum = {
|
|
@@ -128,6 +128,12 @@ export interface ProductFieldClass {
|
|
|
128
128
|
* @memberof ProductFieldClass
|
|
129
129
|
*/
|
|
130
130
|
'order': number;
|
|
131
|
+
/**
|
|
132
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
133
|
+
* @type {object}
|
|
134
|
+
* @memberof ProductFieldClass
|
|
135
|
+
*/
|
|
136
|
+
'metadata'?: object;
|
|
131
137
|
/**
|
|
132
138
|
* Time at which the object was created.
|
|
133
139
|
* @type {string}
|
|
@@ -128,6 +128,12 @@ export interface SharedProductFieldClass {
|
|
|
128
128
|
* @memberof SharedProductFieldClass
|
|
129
129
|
*/
|
|
130
130
|
'order': number;
|
|
131
|
+
/**
|
|
132
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
133
|
+
* @type {object}
|
|
134
|
+
* @memberof SharedProductFieldClass
|
|
135
|
+
*/
|
|
136
|
+
'metadata'?: object;
|
|
131
137
|
/**
|
|
132
138
|
* Time at which the object was created.
|
|
133
139
|
* @type {string}
|
|
@@ -146,6 +146,12 @@ export interface UpdateProductFieldRequestDto {
|
|
|
146
146
|
* @memberof UpdateProductFieldRequestDto
|
|
147
147
|
*/
|
|
148
148
|
'legacyBfOrder'?: number;
|
|
149
|
+
/**
|
|
150
|
+
* Product field metadata object. The field may contain special data specific to the product.
|
|
151
|
+
* @type {object}
|
|
152
|
+
* @memberof UpdateProductFieldRequestDto
|
|
153
|
+
*/
|
|
154
|
+
'metadata'?: object;
|
|
149
155
|
}
|
|
150
156
|
|
|
151
157
|
export const UpdateProductFieldRequestDtoTypeEntityEnum = {
|