@emilgroup/insurance-sdk-node 1.104.1-beta.53 → 1.104.1-beta.55
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-premium-formula-request-dto.d.ts +6 -0
- package/dist/models/create-product-request-dto.d.ts +12 -0
- package/dist/models/create-product-version-request-dto.d.ts +6 -0
- package/dist/models/partner-class.d.ts +6 -0
- package/dist/models/premium-formula-class.d.ts +6 -0
- package/models/create-premium-formula-request-dto.ts +6 -0
- package/models/create-product-request-dto.ts +12 -0
- package/models/create-product-version-request-dto.ts +6 -0
- package/models/partner-class.ts +6 -0
- package/models/premium-formula-class.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.104.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.104.1-beta.55 --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.55
|
|
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";
|
|
@@ -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
|
}
|
|
@@ -64,4 +64,10 @@ export interface PartnerClass {
|
|
|
64
64
|
* @memberof PartnerClass
|
|
65
65
|
*/
|
|
66
66
|
'tags': Array<TagClass>;
|
|
67
|
+
/**
|
|
68
|
+
* The business subtypes of the partner, as recorded in partnerservice. Empty when unset.
|
|
69
|
+
* @type {Array<string>}
|
|
70
|
+
* @memberof PartnerClass
|
|
71
|
+
*/
|
|
72
|
+
'subtypes': Array<string>;
|
|
67
73
|
}
|
|
@@ -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 = {
|
|
@@ -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/models/partner-class.ts
CHANGED
|
@@ -69,5 +69,11 @@ export interface PartnerClass {
|
|
|
69
69
|
* @memberof PartnerClass
|
|
70
70
|
*/
|
|
71
71
|
'tags': Array<TagClass>;
|
|
72
|
+
/**
|
|
73
|
+
* The business subtypes of the partner, as recorded in partnerservice. Empty when unset.
|
|
74
|
+
* @type {Array<string>}
|
|
75
|
+
* @memberof PartnerClass
|
|
76
|
+
*/
|
|
77
|
+
'subtypes': Array<string>;
|
|
72
78
|
}
|
|
73
79
|
|
|
@@ -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