@emilgroup/insurance-sdk-node 1.104.1-beta.48 → 1.104.1-beta.49
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.49 --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.49
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -45,6 +45,18 @@ export interface CreateProductRequestDto {
|
|
|
45
45
|
* @memberof CreateProductRequestDto
|
|
46
46
|
*/
|
|
47
47
|
'defaultLanguage': CreateProductRequestDtoDefaultLanguageEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Unique, immutable identifier for this product. Omit it and one is generated. Supply it only when importing a product that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateProductRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'code'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Unique, immutable identifier for the product version created along with the product. Omit it and one is generated. Supply it only when importing a product that already exists in another environment, to keep cross-service configuration pointing at its first version. It cannot be changed afterwards.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateProductRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'versionCode'?: string;
|
|
48
60
|
}
|
|
49
61
|
export declare const CreateProductRequestDtoInsuredObjectTypesEnum: {
|
|
50
62
|
readonly Default: "default";
|
|
@@ -27,4 +27,10 @@ export interface CreateProductVersionRequestDto {
|
|
|
27
27
|
* @memberof CreateProductVersionRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique, immutable identifier for this product version. Omit it and one is generated. Supply it only when importing a product version that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateProductVersionRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'code'?: string;
|
|
30
36
|
}
|
|
@@ -50,6 +50,18 @@ export interface CreateProductRequestDto {
|
|
|
50
50
|
* @memberof CreateProductRequestDto
|
|
51
51
|
*/
|
|
52
52
|
'defaultLanguage': CreateProductRequestDtoDefaultLanguageEnum;
|
|
53
|
+
/**
|
|
54
|
+
* Unique, immutable identifier for this product. Omit it and one is generated. Supply it only when importing a product that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateProductRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'code'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Unique, immutable identifier for the product version created along with the product. Omit it and one is generated. Supply it only when importing a product that already exists in another environment, to keep cross-service configuration pointing at its first version. It cannot be changed afterwards.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateProductRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'versionCode'?: string;
|
|
53
65
|
}
|
|
54
66
|
|
|
55
67
|
export const CreateProductRequestDtoInsuredObjectTypesEnum = {
|
|
@@ -32,5 +32,11 @@ export interface CreateProductVersionRequestDto {
|
|
|
32
32
|
* @memberof CreateProductVersionRequestDto
|
|
33
33
|
*/
|
|
34
34
|
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique, immutable identifier for this product version. Omit it and one is generated. Supply it only when importing a product version that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateProductVersionRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'code'?: string;
|
|
35
41
|
}
|
|
36
42
|
|
package/package.json
CHANGED