@emilgroup/insurance-sdk-node 1.104.1-beta.42 → 1.104.1-beta.44
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.44 --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.44
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -75,6 +75,12 @@ export interface CreatePremiumFormulaRequestDto {
|
|
|
75
75
|
* @memberof CreatePremiumFormulaRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'order': number;
|
|
78
|
+
/**
|
|
79
|
+
* Unique, immutable identifier for this Premium item. Omit it and one is generated. Supply it only when importing a Premium item that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreatePremiumFormulaRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'code'?: string;
|
|
78
84
|
}
|
|
79
85
|
export declare const CreatePremiumFormulaRequestDtoTypeEnum: {
|
|
80
86
|
readonly Time: "time";
|
|
@@ -27,6 +27,12 @@ export interface PremiumFormulaClass {
|
|
|
27
27
|
* @memberof PremiumFormulaClass
|
|
28
28
|
*/
|
|
29
29
|
'productVersionId': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique, immutable identifier for the Premium item. Stable across environments; use it instead of the numeric id in cross-service configuration.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PremiumFormulaClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
30
36
|
/**
|
|
31
37
|
* Premium group name.
|
|
32
38
|
* @type {string}
|
|
@@ -80,6 +80,12 @@ export interface CreatePremiumFormulaRequestDto {
|
|
|
80
80
|
* @memberof CreatePremiumFormulaRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'order': number;
|
|
83
|
+
/**
|
|
84
|
+
* Unique, immutable identifier for this Premium item. Omit it and one is generated. Supply it only when importing a Premium item that already exists in another environment, to keep cross-service configuration pointing at it. It cannot be changed afterwards.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreatePremiumFormulaRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'code'?: string;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const CreatePremiumFormulaRequestDtoTypeEnum = {
|
|
@@ -32,6 +32,12 @@ export interface PremiumFormulaClass {
|
|
|
32
32
|
* @memberof PremiumFormulaClass
|
|
33
33
|
*/
|
|
34
34
|
'productVersionId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Unique, immutable identifier for the Premium item. Stable across environments; use it instead of the numeric id in cross-service configuration.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PremiumFormulaClass
|
|
39
|
+
*/
|
|
40
|
+
'code': string;
|
|
35
41
|
/**
|
|
36
42
|
* Premium group name.
|
|
37
43
|
* @type {string}
|
package/package.json
CHANGED