@emilgroup/public-api-sdk 1.33.1-beta.20 → 1.33.1-beta.22
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/.openapi-generator/FILES +1 -0
- package/README.md +2 -2
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/tariff-info-class.d.ts +47 -0
- package/dist/models/tariff-info-class.js +20 -0
- package/dist/models/tariff-summary-class.d.ts +4 -9
- package/models/index.ts +1 -0
- package/models/tariff-info-class.ts +56 -0
- package/models/tariff-summary-class.ts +4 -9
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -129,6 +129,7 @@ models/structured-address-class.ts
|
|
|
129
129
|
models/suggested-address-details-class.ts
|
|
130
130
|
models/tariff-category-summary-class.ts
|
|
131
131
|
models/tariff-coverage-term-class.ts
|
|
132
|
+
models/tariff-info-class.ts
|
|
132
133
|
models/tariff-summary-class.ts
|
|
133
134
|
models/update-lead-request-dto.ts
|
|
134
135
|
models/update-lead-response-class.ts
|
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/public-api-sdk@1.33.1-beta.
|
|
20
|
+
npm install @emilgroup/public-api-sdk@1.33.1-beta.22 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/public-api-sdk@1.33.1-beta.
|
|
24
|
+
yarn add @emilgroup/public-api-sdk@1.33.1-beta.22
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PublicApi`.
|
package/dist/models/index.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ export * from './structured-address-class';
|
|
|
108
108
|
export * from './suggested-address-details-class';
|
|
109
109
|
export * from './tariff-category-summary-class';
|
|
110
110
|
export * from './tariff-coverage-term-class';
|
|
111
|
+
export * from './tariff-info-class';
|
|
111
112
|
export * from './tariff-summary-class';
|
|
112
113
|
export * from './update-lead-request-dto';
|
|
113
114
|
export * from './update-lead-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -124,6 +124,7 @@ __exportStar(require("./structured-address-class"), exports);
|
|
|
124
124
|
__exportStar(require("./suggested-address-details-class"), exports);
|
|
125
125
|
__exportStar(require("./tariff-category-summary-class"), exports);
|
|
126
126
|
__exportStar(require("./tariff-coverage-term-class"), exports);
|
|
127
|
+
__exportStar(require("./tariff-info-class"), exports);
|
|
127
128
|
__exportStar(require("./tariff-summary-class"), exports);
|
|
128
129
|
__exportStar(require("./update-lead-request-dto"), exports);
|
|
129
130
|
__exportStar(require("./update-lead-response-class"), exports);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface TariffInfoClass
|
|
16
|
+
*/
|
|
17
|
+
export interface TariffInfoClass {
|
|
18
|
+
/**
|
|
19
|
+
* Display name shown to users
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof TariffInfoClass
|
|
22
|
+
*/
|
|
23
|
+
'label': string;
|
|
24
|
+
/**
|
|
25
|
+
* Tariff variation description
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TariffInfoClass
|
|
28
|
+
*/
|
|
29
|
+
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Starting premium amount for display
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof TariffInfoClass
|
|
34
|
+
*/
|
|
35
|
+
'startingPremium': number;
|
|
36
|
+
/**
|
|
37
|
+
* Premium billing period, used for display
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof TariffInfoClass
|
|
40
|
+
*/
|
|
41
|
+
'billingPeriod': TariffInfoClassBillingPeriodEnum;
|
|
42
|
+
}
|
|
43
|
+
export declare const TariffInfoClassBillingPeriodEnum: {
|
|
44
|
+
readonly Monthly: "MONTHLY";
|
|
45
|
+
readonly Yearly: "YEARLY";
|
|
46
|
+
};
|
|
47
|
+
export type TariffInfoClassBillingPeriodEnum = typeof TariffInfoClassBillingPeriodEnum[keyof typeof TariffInfoClassBillingPeriodEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.TariffInfoClassBillingPeriodEnum = void 0;
|
|
17
|
+
exports.TariffInfoClassBillingPeriodEnum = {
|
|
18
|
+
Monthly: 'MONTHLY',
|
|
19
|
+
Yearly: 'YEARLY'
|
|
20
|
+
};
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { DeductibleClass } from './deductible-class';
|
|
13
13
|
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
14
14
|
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
15
|
+
import { TariffInfoClass } from './tariff-info-class';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
17
18
|
* @export
|
|
@@ -25,17 +26,11 @@ export interface TariffSummaryClass {
|
|
|
25
26
|
*/
|
|
26
27
|
'key': string;
|
|
27
28
|
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {
|
|
30
|
-
* @memberof TariffSummaryClass
|
|
31
|
-
*/
|
|
32
|
-
'label': string;
|
|
33
|
-
/**
|
|
34
|
-
* Tariff variation description
|
|
35
|
-
* @type {string}
|
|
29
|
+
* Tariff variation display information
|
|
30
|
+
* @type {TariffInfoClass}
|
|
36
31
|
* @memberof TariffSummaryClass
|
|
37
32
|
*/
|
|
38
|
-
'
|
|
33
|
+
'info': TariffInfoClass;
|
|
39
34
|
/**
|
|
40
35
|
* Tariff coverage term
|
|
41
36
|
* @type {TariffCoverageTermClass}
|
package/models/index.ts
CHANGED
|
@@ -108,6 +108,7 @@ export * from './structured-address-class';
|
|
|
108
108
|
export * from './suggested-address-details-class';
|
|
109
109
|
export * from './tariff-category-summary-class';
|
|
110
110
|
export * from './tariff-coverage-term-class';
|
|
111
|
+
export * from './tariff-info-class';
|
|
111
112
|
export * from './tariff-summary-class';
|
|
112
113
|
export * from './update-lead-request-dto';
|
|
113
114
|
export * from './update-lead-response-class';
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface TariffInfoClass
|
|
21
|
+
*/
|
|
22
|
+
export interface TariffInfoClass {
|
|
23
|
+
/**
|
|
24
|
+
* Display name shown to users
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof TariffInfoClass
|
|
27
|
+
*/
|
|
28
|
+
'label': string;
|
|
29
|
+
/**
|
|
30
|
+
* Tariff variation description
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof TariffInfoClass
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Starting premium amount for display
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof TariffInfoClass
|
|
39
|
+
*/
|
|
40
|
+
'startingPremium': number;
|
|
41
|
+
/**
|
|
42
|
+
* Premium billing period, used for display
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof TariffInfoClass
|
|
45
|
+
*/
|
|
46
|
+
'billingPeriod': TariffInfoClassBillingPeriodEnum;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const TariffInfoClassBillingPeriodEnum = {
|
|
50
|
+
Monthly: 'MONTHLY',
|
|
51
|
+
Yearly: 'YEARLY'
|
|
52
|
+
} as const;
|
|
53
|
+
|
|
54
|
+
export type TariffInfoClassBillingPeriodEnum = typeof TariffInfoClassBillingPeriodEnum[keyof typeof TariffInfoClassBillingPeriodEnum];
|
|
55
|
+
|
|
56
|
+
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
import { DeductibleClass } from './deductible-class';
|
|
17
17
|
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
18
18
|
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
19
|
+
import { TariffInfoClass } from './tariff-info-class';
|
|
19
20
|
|
|
20
21
|
/**
|
|
21
22
|
*
|
|
@@ -30,17 +31,11 @@ export interface TariffSummaryClass {
|
|
|
30
31
|
*/
|
|
31
32
|
'key': string;
|
|
32
33
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
35
|
-
* @memberof TariffSummaryClass
|
|
36
|
-
*/
|
|
37
|
-
'label': string;
|
|
38
|
-
/**
|
|
39
|
-
* Tariff variation description
|
|
40
|
-
* @type {string}
|
|
34
|
+
* Tariff variation display information
|
|
35
|
+
* @type {TariffInfoClass}
|
|
41
36
|
* @memberof TariffSummaryClass
|
|
42
37
|
*/
|
|
43
|
-
'
|
|
38
|
+
'info': TariffInfoClass;
|
|
44
39
|
/**
|
|
45
40
|
* Tariff coverage term
|
|
46
41
|
* @type {TariffCoverageTermClass}
|