@emilgroup/insurance-sdk-node 1.104.1-beta.49 → 1.104.1-beta.50
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.50 --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.50
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -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
|
}
|
|
@@ -33,12 +33,6 @@ export interface ProductVersionClass {
|
|
|
33
33
|
* @memberof ProductVersionClass
|
|
34
34
|
*/
|
|
35
35
|
'code': string;
|
|
36
|
-
/**
|
|
37
|
-
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. It is derived from the product slug and the version number, e.g. `car-insurance_v2`.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof ProductVersionClass
|
|
40
|
-
*/
|
|
41
|
-
'slug': string;
|
|
42
36
|
/**
|
|
43
37
|
* Product version description.
|
|
44
38
|
* @type {string}
|
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
|
|
|
@@ -38,12 +38,6 @@ export interface ProductVersionClass {
|
|
|
38
38
|
* @memberof ProductVersionClass
|
|
39
39
|
*/
|
|
40
40
|
'code': string;
|
|
41
|
-
/**
|
|
42
|
-
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. It is derived from the product slug and the version number, e.g. `car-insurance_v2`.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof ProductVersionClass
|
|
45
|
-
*/
|
|
46
|
-
'slug': string;
|
|
47
41
|
/**
|
|
48
42
|
* Product version description.
|
|
49
43
|
* @type {string}
|
package/package.json
CHANGED