@emilgroup/insurance-sdk 1.99.1-beta.33 → 1.99.1-beta.34
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/base.ts +0 -1
- package/dist/base.d.ts +1 -2
- package/dist/base.js +0 -1
- package/dist/models/insured-object-type-class.d.ts +2 -2
- package/dist/models/lead-status-class.d.ts +1 -1
- package/models/insured-object-type-class.ts +2 -2
- package/models/lead-status-class.ts +1 -1
- 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@1.99.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk@1.99.1-beta.34 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk@1.99.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk@1.99.1-beta.34
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
package/base.ts
CHANGED
|
@@ -53,7 +53,6 @@ export enum Environment {
|
|
|
53
53
|
Staging = 'https://apiv2-staging.emil.de',
|
|
54
54
|
Development = 'https://apiv2-dev.emil.de',
|
|
55
55
|
ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
|
|
56
|
-
StagingZurich = 'https://eu-central-2.apiv2-staging.emil.de',
|
|
57
56
|
}
|
|
58
57
|
|
|
59
58
|
let _retry_count = 0
|
package/dist/base.d.ts
CHANGED
|
@@ -39,8 +39,7 @@ export declare enum Environment {
|
|
|
39
39
|
Test = "https://apiv2-test.emil.de",
|
|
40
40
|
Staging = "https://apiv2-staging.emil.de",
|
|
41
41
|
Development = "https://apiv2-dev.emil.de",
|
|
42
|
-
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
43
|
-
StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
|
|
42
|
+
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
44
43
|
}
|
|
45
44
|
export declare function resetRetry(): void;
|
|
46
45
|
/**
|
package/dist/base.js
CHANGED
|
@@ -102,7 +102,6 @@ var Environment;
|
|
|
102
102
|
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
103
103
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
104
104
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
105
|
-
Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
|
|
106
105
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
107
106
|
var _retry_count = 0;
|
|
108
107
|
var _retry = null;
|
|
@@ -34,13 +34,13 @@ export interface InsuredObjectTypeClass {
|
|
|
34
34
|
*/
|
|
35
35
|
'slug': string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Time at which the object was created.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof InsuredObjectTypeClass
|
|
40
40
|
*/
|
|
41
41
|
'createdAt': string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Time at which the object was updated.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof InsuredObjectTypeClass
|
|
46
46
|
*/
|
|
@@ -40,7 +40,7 @@ export interface LeadStatusClass {
|
|
|
40
40
|
*/
|
|
41
41
|
'productSlug': string;
|
|
42
42
|
/**
|
|
43
|
-
* Indicates if this status is the default for the lead. Defaults to false.
|
|
43
|
+
* Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
|
|
44
44
|
* @type {boolean}
|
|
45
45
|
* @memberof LeadStatusClass
|
|
46
46
|
*/
|
|
@@ -39,13 +39,13 @@ export interface InsuredObjectTypeClass {
|
|
|
39
39
|
*/
|
|
40
40
|
'slug': string;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Time at which the object was created.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof InsuredObjectTypeClass
|
|
45
45
|
*/
|
|
46
46
|
'createdAt': string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Time at which the object was updated.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof InsuredObjectTypeClass
|
|
51
51
|
*/
|
|
@@ -45,7 +45,7 @@ export interface LeadStatusClass {
|
|
|
45
45
|
*/
|
|
46
46
|
'productSlug': string;
|
|
47
47
|
/**
|
|
48
|
-
* Indicates if this status is the default for the lead. Defaults to false.
|
|
48
|
+
* Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
|
|
49
49
|
* @type {boolean}
|
|
50
50
|
* @memberof LeadStatusClass
|
|
51
51
|
*/
|