@emilgroup/insurance-sdk 1.90.0 → 1.90.1-beta.13
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/api/booking-funnels-api.ts +20 -20
- package/dist/api/booking-funnel-versions-api.d.ts +2 -2
- package/dist/api/booking-funnels-api.d.ts +26 -26
- package/dist/api/booking-funnels-api.js +16 -16
- package/dist/api/commission-agreement-items-api.d.ts +5 -5
- package/dist/api/commission-agreement-products-api.d.ts +5 -5
- package/dist/api/commission-agreement-versions-api.d.ts +4 -4
- package/dist/api/commission-agreements-api.d.ts +5 -5
- package/dist/api/commission-recipients-api.d.ts +5 -5
- package/dist/api/emil-functions-api.d.ts +11 -11
- package/dist/api/health-check-api.d.ts +1 -1
- package/dist/api/insured-object-types-api.d.ts +1 -1
- package/dist/api/insured-objects-api.d.ts +4 -4
- package/dist/api/lead-statuses-api.d.ts +5 -5
- package/dist/api/lead-versions-api.d.ts +2 -2
- package/dist/api/leads-api.d.ts +10 -10
- package/dist/api/named-ranges-api.d.ts +6 -6
- package/dist/api/partner-links-api.d.ts +6 -6
- package/dist/api/partner-roles-api.d.ts +5 -5
- package/dist/api/policies-api.d.ts +17 -17
- package/dist/api/premium-formulas-api.d.ts +6 -6
- package/dist/api/product-factors-api.d.ts +7 -7
- package/dist/api/product-fields-api.d.ts +7 -7
- package/dist/api/product-versions-api.d.ts +2 -2
- package/dist/api/products-api.d.ts +6 -6
- package/dist/api/status-transition-rules-api.d.ts +6 -6
- package/dist/common.d.ts +1 -1
- package/dist/models/booking-funnel-class.d.ts +1 -1
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/list-booking-funnel-class.d.ts +114 -0
- package/dist/models/list-booking-funnel-class.js +15 -0
- package/dist/models/list-booking-funnels-response-class.d.ts +3 -3
- package/models/booking-funnel-class.ts +1 -1
- package/models/index.ts +1 -0
- package/models/list-booking-funnel-class.ts +120 -0
- package/models/list-booking-funnels-response-class.ts +3 -3
- package/package.json +2 -2
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -18,10 +18,10 @@ import { BookingFunnelClass } from './booking-funnel-class';
|
|
|
18
18
|
export interface ListBookingFunnelsResponseClass {
|
|
19
19
|
/**
|
|
20
20
|
* BookingFunnels
|
|
21
|
-
* @type {Array<
|
|
21
|
+
* @type {Array<ListBookingFunnelClass>}
|
|
22
22
|
* @memberof ListBookingFunnelsResponseClass
|
|
23
23
|
*/
|
|
24
|
-
'items': Array<
|
|
24
|
+
'items': Array<ListBookingFunnelClass>;
|
|
25
25
|
/**
|
|
26
26
|
* Next page token.
|
|
27
27
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -116,6 +116,7 @@ export * from './lead-status-class';
|
|
|
116
116
|
export * from './link-lead-partner-request-dto';
|
|
117
117
|
export * from './link-partner-request-dto';
|
|
118
118
|
export * from './link-partner-response-class';
|
|
119
|
+
export * from './list-booking-funnel-class';
|
|
119
120
|
export * from './list-booking-funnels-response-class';
|
|
120
121
|
export * from './list-commission-agreement-items-response-class';
|
|
121
122
|
export * from './list-commission-agreement-products-response-class';
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService 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 ListBookingFunnelClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ListBookingFunnelClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ListBookingFunnelClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ListBookingFunnelClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof ListBookingFunnelClass
|
|
39
|
+
*/
|
|
40
|
+
'parentId': number;
|
|
41
|
+
/**
|
|
42
|
+
* Booking Funnel name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ListBookingFunnelClass
|
|
45
|
+
*/
|
|
46
|
+
'name': string;
|
|
47
|
+
/**
|
|
48
|
+
* Booking Funnel snippet.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ListBookingFunnelClass
|
|
51
|
+
*/
|
|
52
|
+
'jsCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* Booking Funnel JSON steps configuration.
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof ListBookingFunnelClass
|
|
57
|
+
*/
|
|
58
|
+
'stepsConfig'?: object;
|
|
59
|
+
/**
|
|
60
|
+
* Booking Funnel custom CSS.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ListBookingFunnelClass
|
|
63
|
+
*/
|
|
64
|
+
'css': string;
|
|
65
|
+
/**
|
|
66
|
+
* Booking Funnel logo url.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ListBookingFunnelClass
|
|
69
|
+
*/
|
|
70
|
+
'logoPath': string;
|
|
71
|
+
/**
|
|
72
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ListBookingFunnelClass
|
|
75
|
+
*/
|
|
76
|
+
'productSlug': string;
|
|
77
|
+
/**
|
|
78
|
+
* Product version ID.
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof ListBookingFunnelClass
|
|
81
|
+
*/
|
|
82
|
+
'productVersionId': number;
|
|
83
|
+
/**
|
|
84
|
+
* Time at which the object was created.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ListBookingFunnelClass
|
|
87
|
+
*/
|
|
88
|
+
'createdAt': string;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was updated.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ListBookingFunnelClass
|
|
93
|
+
*/
|
|
94
|
+
'updatedAt': string;
|
|
95
|
+
/**
|
|
96
|
+
* Booking Funnel version.
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof ListBookingFunnelClass
|
|
99
|
+
*/
|
|
100
|
+
'version': number;
|
|
101
|
+
/**
|
|
102
|
+
* Show booking funnel on applications page.
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof ListBookingFunnelClass
|
|
105
|
+
*/
|
|
106
|
+
'shouldShowOnApplicationsPage'?: boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Identifier of the user who created the record.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof ListBookingFunnelClass
|
|
111
|
+
*/
|
|
112
|
+
'createdBy': string;
|
|
113
|
+
/**
|
|
114
|
+
* Identifier of the user who last updated the record.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof ListBookingFunnelClass
|
|
117
|
+
*/
|
|
118
|
+
'updatedBy': string;
|
|
119
|
+
}
|
|
120
|
+
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -23,10 +23,10 @@ import { BookingFunnelClass } from './booking-funnel-class';
|
|
|
23
23
|
export interface ListBookingFunnelsResponseClass {
|
|
24
24
|
/**
|
|
25
25
|
* BookingFunnels
|
|
26
|
-
* @type {Array<
|
|
26
|
+
* @type {Array<ListBookingFunnelClass>}
|
|
27
27
|
* @memberof ListBookingFunnelsResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'items': Array<
|
|
29
|
+
'items': Array<ListBookingFunnelClass>;
|
|
30
30
|
/**
|
|
31
31
|
* Next page token.
|
|
32
32
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/insurance-sdk",
|
|
3
|
-
"version": "1.90.
|
|
3
|
+
"version": "1.90.1-beta.13",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/insurance-sdk",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"prepare": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"axios": "^
|
|
21
|
+
"axios": "^1.12.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"typescript": "^4.0"
|