@emilgroup/insurance-sdk-node 1.44.0 → 1.47.0

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.
Files changed (86) hide show
  1. package/.openapi-generator/FILES +12 -0
  2. package/README.md +2 -2
  3. package/api/booking-funnels-api.ts +791 -0
  4. package/api/insured-object-types-api.ts +20 -6
  5. package/api/insured-objects-api.ts +20 -6
  6. package/api/lead-versions-api.ts +24 -10
  7. package/api/leads-api.ts +24 -10
  8. package/api/named-ranges-api.ts +20 -6
  9. package/api/policies-api.ts +748 -20
  10. package/api/premium-formulas-api.ts +20 -6
  11. package/api/product-factors-api.ts +22 -6
  12. package/api/product-fields-api.ts +40 -12
  13. package/api/products-api.ts +20 -6
  14. package/api/status-transition-rules-api.ts +24 -10
  15. package/api.ts +2 -0
  16. package/dist/api/booking-funnels-api.d.ts +443 -0
  17. package/dist/api/booking-funnels-api.js +735 -0
  18. package/dist/api/insured-object-types-api.d.ts +12 -3
  19. package/dist/api/insured-object-types-api.js +12 -6
  20. package/dist/api/insured-objects-api.d.ts +12 -3
  21. package/dist/api/insured-objects-api.js +12 -6
  22. package/dist/api/lead-versions-api.d.ts +16 -7
  23. package/dist/api/lead-versions-api.js +15 -9
  24. package/dist/api/leads-api.d.ts +16 -7
  25. package/dist/api/leads-api.js +15 -9
  26. package/dist/api/named-ranges-api.d.ts +12 -3
  27. package/dist/api/named-ranges-api.js +12 -6
  28. package/dist/api/policies-api.d.ts +428 -14
  29. package/dist/api/policies-api.js +574 -18
  30. package/dist/api/premium-formulas-api.d.ts +12 -3
  31. package/dist/api/premium-formulas-api.js +12 -6
  32. package/dist/api/product-factors-api.d.ts +12 -3
  33. package/dist/api/product-factors-api.js +12 -6
  34. package/dist/api/product-fields-api.d.ts +24 -6
  35. package/dist/api/product-fields-api.js +24 -12
  36. package/dist/api/products-api.d.ts +12 -3
  37. package/dist/api/products-api.js +12 -6
  38. package/dist/api/status-transition-rules-api.d.ts +16 -7
  39. package/dist/api/status-transition-rules-api.js +15 -9
  40. package/dist/api.d.ts +1 -0
  41. package/dist/api.js +1 -0
  42. package/dist/models/booking-funnel-class.d.ts +84 -0
  43. package/dist/models/booking-funnel-class.js +15 -0
  44. package/dist/models/create-booking-funnel-request-dto.d.ts +66 -0
  45. package/dist/models/create-booking-funnel-request-dto.js +15 -0
  46. package/dist/models/create-draft-policy-request-dto.d.ts +70 -0
  47. package/dist/models/create-draft-policy-request-dto.js +23 -0
  48. package/dist/models/delete-draft-policy-request-dto.d.ts +24 -0
  49. package/dist/models/delete-draft-policy-request-dto.js +15 -0
  50. package/dist/models/get-draft-policy-request-dto.d.ts +30 -0
  51. package/dist/models/get-draft-policy-request-dto.js +15 -0
  52. package/dist/models/index.d.ts +11 -0
  53. package/dist/models/index.js +11 -0
  54. package/dist/models/list-booking-funnels-response-class.d.ts +31 -0
  55. package/dist/models/list-booking-funnels-response-class.js +15 -0
  56. package/dist/models/list-policy-version-response-class.d.ts +43 -0
  57. package/dist/models/list-policy-version-response-class.js +15 -0
  58. package/dist/models/list-policy-versions-request-dto.d.ts +66 -0
  59. package/dist/models/list-policy-versions-request-dto.js +15 -0
  60. package/dist/models/list-request-dto.d.ts +6 -0
  61. package/dist/models/patch-booking-funnel-request-dto.d.ts +60 -0
  62. package/dist/models/patch-booking-funnel-request-dto.js +15 -0
  63. package/dist/models/patch-draft-policy-request-dto.d.ts +70 -0
  64. package/dist/models/patch-draft-policy-request-dto.js +23 -0
  65. package/dist/models/patch-policy-request-dto.d.ts +0 -6
  66. package/dist/models/policy-version-class.d.ts +12 -0
  67. package/dist/models/update-booking-funnel-request-dto.d.ts +60 -0
  68. package/dist/models/update-booking-funnel-request-dto.js +15 -0
  69. package/dist/models/update-policy-request-dto.d.ts +0 -6
  70. package/models/booking-funnel-class.ts +90 -0
  71. package/models/create-booking-funnel-request-dto.ts +72 -0
  72. package/models/create-draft-policy-request-dto.ts +79 -0
  73. package/models/delete-draft-policy-request-dto.ts +30 -0
  74. package/models/get-draft-policy-request-dto.ts +36 -0
  75. package/models/index.ts +11 -0
  76. package/models/list-booking-funnels-response-class.ts +37 -0
  77. package/models/list-policy-version-response-class.ts +49 -0
  78. package/models/list-policy-versions-request-dto.ts +72 -0
  79. package/models/list-request-dto.ts +6 -0
  80. package/models/patch-booking-funnel-request-dto.ts +66 -0
  81. package/models/patch-draft-policy-request-dto.ts +79 -0
  82. package/models/patch-policy-request-dto.ts +0 -6
  83. package/models/policy-version-class.ts +12 -0
  84. package/models/update-booking-funnel-request-dto.ts +66 -0
  85. package/models/update-policy-request-dto.ts +0 -6
  86. package/package.json +1 -1
@@ -16,13 +16,16 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./activate-policy-request-dto"), exports);
18
18
  __exportStar(require("./activate-policy-response-class"), exports);
19
+ __exportStar(require("./booking-funnel-class"), exports);
19
20
  __exportStar(require("./calculate-custom-premium-request-dto"), exports);
20
21
  __exportStar(require("./calculate-premium-request-dto"), exports);
21
22
  __exportStar(require("./calculate-product-fields-request-dto"), exports);
22
23
  __exportStar(require("./clone-product-version-request-dto"), exports);
23
24
  __exportStar(require("./create-account-request-dto"), exports);
24
25
  __exportStar(require("./create-bank-account-request-dto"), exports);
26
+ __exportStar(require("./create-booking-funnel-request-dto"), exports);
25
27
  __exportStar(require("./create-custom-application-request-dto"), exports);
28
+ __exportStar(require("./create-draft-policy-request-dto"), exports);
26
29
  __exportStar(require("./create-dummy-policy-request-dto"), exports);
27
30
  __exportStar(require("./create-insured-object-request-dto"), exports);
28
31
  __exportStar(require("./create-insured-object-response-class"), exports);
@@ -47,10 +50,12 @@ __exportStar(require("./create-product-response-class"), exports);
47
50
  __exportStar(require("./create-status-transition-rule-request-dto"), exports);
48
51
  __exportStar(require("./create-status-transition-rule-response-class"), exports);
49
52
  __exportStar(require("./csv-product-factor-dto"), exports);
53
+ __exportStar(require("./delete-draft-policy-request-dto"), exports);
50
54
  __exportStar(require("./delete-response-class"), exports);
51
55
  __exportStar(require("./empty-response-class"), exports);
52
56
  __exportStar(require("./filter-named-range-request-dto"), exports);
53
57
  __exportStar(require("./filter-named-range-response-class"), exports);
58
+ __exportStar(require("./get-draft-policy-request-dto"), exports);
54
59
  __exportStar(require("./get-insured-object-response-class"), exports);
55
60
  __exportStar(require("./get-lead-response-class"), exports);
56
61
  __exportStar(require("./get-lead-status-response-class"), exports);
@@ -88,6 +93,7 @@ __exportStar(require("./invoice-status-class"), exports);
88
93
  __exportStar(require("./lead-bank-account-class"), exports);
89
94
  __exportStar(require("./lead-class"), exports);
90
95
  __exportStar(require("./lead-status-class"), exports);
96
+ __exportStar(require("./list-booking-funnels-response-class"), exports);
91
97
  __exportStar(require("./list-insured-object-types-response-class"), exports);
92
98
  __exportStar(require("./list-insured-objects-response-class"), exports);
93
99
  __exportStar(require("./list-lead-statuses-response-class"), exports);
@@ -96,6 +102,8 @@ __exportStar(require("./list-leads-response-class"), exports);
96
102
  __exportStar(require("./list-named-ranges-response-class"), exports);
97
103
  __exportStar(require("./list-policies-response-class"), exports);
98
104
  __exportStar(require("./list-policy-objects-response-class"), exports);
105
+ __exportStar(require("./list-policy-version-response-class"), exports);
106
+ __exportStar(require("./list-policy-versions-request-dto"), exports);
99
107
  __exportStar(require("./list-premium-formulas-response-class"), exports);
100
108
  __exportStar(require("./list-product-factors-response-class"), exports);
101
109
  __exportStar(require("./list-product-field-types-response-class"), exports);
@@ -104,6 +112,8 @@ __exportStar(require("./list-products-response-class"), exports);
104
112
  __exportStar(require("./list-request-dto"), exports);
105
113
  __exportStar(require("./list-status-transition-rules-response-class"), exports);
106
114
  __exportStar(require("./named-range-class"), exports);
115
+ __exportStar(require("./patch-booking-funnel-request-dto"), exports);
116
+ __exportStar(require("./patch-draft-policy-request-dto"), exports);
107
117
  __exportStar(require("./patch-lead-request-dto"), exports);
108
118
  __exportStar(require("./patch-lead-response-class"), exports);
109
119
  __exportStar(require("./patch-policy-request-dto"), exports);
@@ -144,6 +154,7 @@ __exportStar(require("./swap-premium-formulas-order-request-dto"), exports);
144
154
  __exportStar(require("./terminate-policy-request-dto"), exports);
145
155
  __exportStar(require("./terminate-policy-response-class"), exports);
146
156
  __exportStar(require("./timeslice-class"), exports);
157
+ __exportStar(require("./update-booking-funnel-request-dto"), exports);
147
158
  __exportStar(require("./update-insured-object-request-dto"), exports);
148
159
  __exportStar(require("./update-lead-request-dto"), exports);
149
160
  __exportStar(require("./update-lead-response-class"), exports);
@@ -0,0 +1,31 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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
+ import { BookingFunnelClass } from './booking-funnel-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBookingFunnelsResponseClass
17
+ */
18
+ export interface ListBookingFunnelsResponseClass {
19
+ /**
20
+ * BookingFunnels
21
+ * @type {Array<BookingFunnelClass>}
22
+ * @memberof ListBookingFunnelsResponseClass
23
+ */
24
+ 'items': Array<BookingFunnelClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBookingFunnelsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 });
@@ -0,0 +1,43 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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
+ import { PolicyVersionClass } from './policy-version-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListPolicyVersionResponseClass
17
+ */
18
+ export interface ListPolicyVersionResponseClass {
19
+ /**
20
+ * Policy versions
21
+ * @type {Array<PolicyVersionClass>}
22
+ * @memberof ListPolicyVersionResponseClass
23
+ */
24
+ 'items': Array<PolicyVersionClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPolicyVersionResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPolicyVersionResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPolicyVersionResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 });
@@ -0,0 +1,66 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 ListPolicyVersionsRequestDto
16
+ */
17
+ export interface ListPolicyVersionsRequestDto {
18
+ /**
19
+ * Page size.
20
+ * @type {number}
21
+ * @memberof ListPolicyVersionsRequestDto
22
+ */
23
+ 'pageSize'?: number;
24
+ /**
25
+ * Page token.
26
+ * @type {string}
27
+ * @memberof ListPolicyVersionsRequestDto
28
+ */
29
+ 'pageToken'?: string;
30
+ /**
31
+ * List filter
32
+ * @type {string}
33
+ * @memberof ListPolicyVersionsRequestDto
34
+ */
35
+ 'filter'?: string;
36
+ /**
37
+ * Search query.
38
+ * @type {string}
39
+ * @memberof ListPolicyVersionsRequestDto
40
+ */
41
+ 'search'?: string;
42
+ /**
43
+ * Ordering criteria.
44
+ * @type {string}
45
+ * @memberof ListPolicyVersionsRequestDto
46
+ */
47
+ 'order'?: string;
48
+ /**
49
+ * Extra fields to fetch.
50
+ * @type {string}
51
+ * @memberof ListPolicyVersionsRequestDto
52
+ */
53
+ 'expand'?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof ListPolicyVersionsRequestDto
58
+ */
59
+ 'filters'?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof ListPolicyVersionsRequestDto
64
+ */
65
+ 'policyCode': string;
66
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 });
@@ -51,4 +51,10 @@ export interface ListRequestDto {
51
51
  * @memberof ListRequestDto
52
52
  */
53
53
  'expand'?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof ListRequestDto
58
+ */
59
+ 'filters'?: string;
54
60
  }
@@ -0,0 +1,60 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 PatchBookingFunnelRequestDto
16
+ */
17
+ export interface PatchBookingFunnelRequestDto {
18
+ /**
19
+ * Parent Booking funnel ID
20
+ * @type {number}
21
+ * @memberof PatchBookingFunnelRequestDto
22
+ */
23
+ 'parentId'?: number;
24
+ /**
25
+ * Booking funnel name
26
+ * @type {string}
27
+ * @memberof PatchBookingFunnelRequestDto
28
+ */
29
+ 'name'?: string;
30
+ /**
31
+ * Code snippet to load the booking funnel.
32
+ * @type {string}
33
+ * @memberof PatchBookingFunnelRequestDto
34
+ */
35
+ 'jsCode'?: string;
36
+ /**
37
+ * Steps configuration for the booking funnel.
38
+ * @type {object}
39
+ * @memberof PatchBookingFunnelRequestDto
40
+ */
41
+ 'stepsConfig'?: object;
42
+ /**
43
+ * Custom css for the booking funnel.
44
+ * @type {string}
45
+ * @memberof PatchBookingFunnelRequestDto
46
+ */
47
+ 'css'?: string;
48
+ /**
49
+ * URL to fech the logo for the booking funnel.
50
+ * @type {string}
51
+ * @memberof PatchBookingFunnelRequestDto
52
+ */
53
+ 'logoPath'?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof PatchBookingFunnelRequestDto
58
+ */
59
+ 'code': string;
60
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 });
@@ -0,0 +1,70 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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
+ import { PolicyObjectDto } from './policy-object-dto';
13
+ import { PremiumOverrideRequestDto } from './premium-override-request-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PatchDraftPolicyRequestDto
18
+ */
19
+ export interface PatchDraftPolicyRequestDto {
20
+ /**
21
+ * Policy objects
22
+ * @type {Array<PolicyObjectDto>}
23
+ * @memberof PatchDraftPolicyRequestDto
24
+ */
25
+ 'policyObjects': Array<PolicyObjectDto>;
26
+ /**
27
+ * Date from which the policy should be updated. This will create a new timeline starting from this date.
28
+ * @type {string}
29
+ * @memberof PatchDraftPolicyRequestDto
30
+ */
31
+ 'from': string;
32
+ /**
33
+ * Date to which the policy should be updated. This will create a new timeline finishing at this date.
34
+ * @type {string}
35
+ * @memberof PatchDraftPolicyRequestDto
36
+ */
37
+ 'to'?: string;
38
+ /**
39
+ * Policy revision status.
40
+ * @type {string}
41
+ * @memberof PatchDraftPolicyRequestDto
42
+ */
43
+ 'revisionStatus': PatchDraftPolicyRequestDtoRevisionStatusEnum;
44
+ /**
45
+ * Premium Override
46
+ * @type {PremiumOverrideRequestDto}
47
+ * @memberof PatchDraftPolicyRequestDto
48
+ */
49
+ 'premiumOverride'?: PremiumOverrideRequestDto;
50
+ /**
51
+ * Unique identifier of the lead that this object belongs to.
52
+ * @type {string}
53
+ * @memberof PatchDraftPolicyRequestDto
54
+ */
55
+ 'leadCode'?: string;
56
+ /**
57
+ * Unique identifier of the policy that this object belongs to.
58
+ * @type {string}
59
+ * @memberof PatchDraftPolicyRequestDto
60
+ */
61
+ 'policyNumber'?: string;
62
+ }
63
+ export declare const PatchDraftPolicyRequestDtoRevisionStatusEnum: {
64
+ readonly Created: "CREATED";
65
+ readonly InReview: "IN_REVIEW";
66
+ readonly Reviewed: "REVIEWED";
67
+ readonly Rejected: "REJECTED";
68
+ readonly Approved: "APPROVED";
69
+ };
70
+ export type PatchDraftPolicyRequestDtoRevisionStatusEnum = typeof PatchDraftPolicyRequestDtoRevisionStatusEnum[keyof typeof PatchDraftPolicyRequestDtoRevisionStatusEnum];
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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.PatchDraftPolicyRequestDtoRevisionStatusEnum = void 0;
17
+ exports.PatchDraftPolicyRequestDtoRevisionStatusEnum = {
18
+ Created: 'CREATED',
19
+ InReview: 'IN_REVIEW',
20
+ Reviewed: 'REVIEWED',
21
+ Rejected: 'REJECTED',
22
+ Approved: 'APPROVED'
23
+ };
@@ -47,10 +47,4 @@ export interface PatchPolicyRequestDto {
47
47
  * @memberof PatchPolicyRequestDto
48
48
  */
49
49
  'policyNumber'?: string;
50
- /**
51
- *
52
- * @type {string}
53
- * @memberof PatchPolicyRequestDto
54
- */
55
- 'reason'?: string;
56
50
  }
@@ -40,6 +40,18 @@ export interface PolicyVersionClass {
40
40
  * @memberof PolicyVersionClass
41
41
  */
42
42
  'isCurrent': boolean;
43
+ /**
44
+ * Is this a draft policy version?
45
+ * @type {boolean}
46
+ * @memberof PolicyVersionClass
47
+ */
48
+ 'isDraft': boolean;
49
+ /**
50
+ * Policy version revision status
51
+ * @type {string}
52
+ * @memberof PolicyVersionClass
53
+ */
54
+ 'revisionStatus': string;
43
55
  /**
44
56
  * Time at which the object was created.
45
57
  * @type {string}
@@ -0,0 +1,60 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 UpdateBookingFunnelRequestDto
16
+ */
17
+ export interface UpdateBookingFunnelRequestDto {
18
+ /**
19
+ * Parent Booking funnel ID
20
+ * @type {number}
21
+ * @memberof UpdateBookingFunnelRequestDto
22
+ */
23
+ 'parentId'?: number;
24
+ /**
25
+ * Booking funnel name
26
+ * @type {string}
27
+ * @memberof UpdateBookingFunnelRequestDto
28
+ */
29
+ 'name': string;
30
+ /**
31
+ * Code snippet to load the booking funnel.
32
+ * @type {string}
33
+ * @memberof UpdateBookingFunnelRequestDto
34
+ */
35
+ 'jsCode': string;
36
+ /**
37
+ * Steps configuration for the booking funnel.
38
+ * @type {object}
39
+ * @memberof UpdateBookingFunnelRequestDto
40
+ */
41
+ 'stepsConfig'?: object;
42
+ /**
43
+ * Custom css for the booking funnel.
44
+ * @type {string}
45
+ * @memberof UpdateBookingFunnelRequestDto
46
+ */
47
+ 'css'?: string;
48
+ /**
49
+ * URL to fech the logo for the booking funnel.
50
+ * @type {string}
51
+ * @memberof UpdateBookingFunnelRequestDto
52
+ */
53
+ 'logoPath'?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UpdateBookingFunnelRequestDto
58
+ */
59
+ 'code': string;
60
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 });
@@ -59,12 +59,6 @@ export interface UpdatePolicyRequestDto {
59
59
  * @memberof UpdatePolicyRequestDto
60
60
  */
61
61
  'policyNumber'?: string;
62
- /**
63
- * Policy status transition reason.
64
- * @type {string}
65
- * @memberof UpdatePolicyRequestDto
66
- */
67
- 'reason'?: string;
68
62
  }
69
63
  export declare const UpdatePolicyRequestDtoStatusEnum: {
70
64
  readonly Active: "ACTIVE";
@@ -0,0 +1,90 @@
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 BookingFunnelClass
21
+ */
22
+ export interface BookingFunnelClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof BookingFunnelClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof BookingFunnelClass
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 BookingFunnelClass
39
+ */
40
+ 'parentId': number;
41
+ /**
42
+ * Booking Funnel name.
43
+ * @type {string}
44
+ * @memberof BookingFunnelClass
45
+ */
46
+ 'name': string;
47
+ /**
48
+ * Booking Funnel snippet.
49
+ * @type {string}
50
+ * @memberof BookingFunnelClass
51
+ */
52
+ 'jsCode': string;
53
+ /**
54
+ * Booking Funnel JSON steps configuration.
55
+ * @type {object}
56
+ * @memberof BookingFunnelClass
57
+ */
58
+ 'stepsConfig': object;
59
+ /**
60
+ * Booking Funnel custom CSS.
61
+ * @type {string}
62
+ * @memberof BookingFunnelClass
63
+ */
64
+ 'css': string;
65
+ /**
66
+ * Booking Funnel logo url.
67
+ * @type {string}
68
+ * @memberof BookingFunnelClass
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 BookingFunnelClass
75
+ */
76
+ 'productSlug': string;
77
+ /**
78
+ * Time at which the object was created.
79
+ * @type {string}
80
+ * @memberof BookingFunnelClass
81
+ */
82
+ 'createdAt': string;
83
+ /**
84
+ * Time at which the object was updated.
85
+ * @type {string}
86
+ * @memberof BookingFunnelClass
87
+ */
88
+ 'updatedAt': string;
89
+ }
90
+