@emilgroup/insurance-sdk-node 1.52.0 → 1.54.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 (218) hide show
  1. package/.openapi-generator/FILES +38 -1
  2. package/README.md +2 -2
  3. package/api/booking-funnel-versions-api.ts +4 -4
  4. package/api/booking-funnels-api.ts +20 -12
  5. package/api/commission-agreement-products-api.ts +710 -0
  6. package/api/commission-agreement-versions-api.ts +592 -0
  7. package/api/commission-agreements-api.ts +697 -0
  8. package/api/commission-recipients-api.ts +696 -0
  9. package/api/emil-functions-api.ts +8 -8
  10. package/api/{default-api.ts → health-check-api.ts} +21 -17
  11. package/api/insured-objects-api.ts +5 -2
  12. package/api/lead-statuses-api.ts +4 -4
  13. package/api/lead-versions-api.ts +4 -4
  14. package/api/leads-api.ts +4 -4
  15. package/api/partner-links-api.ts +4 -4
  16. package/api/partner-roles-api.ts +4 -4
  17. package/api/policies-api.ts +192 -237
  18. package/api/products-api.ts +8 -8
  19. package/api/status-transition-rules-api.ts +4 -4
  20. package/api.ts +10 -2
  21. package/base.ts +15 -7
  22. package/dist/api/booking-funnel-versions-api.d.ts +4 -4
  23. package/dist/api/booking-funnel-versions-api.js +4 -4
  24. package/dist/api/booking-funnels-api.d.ts +20 -16
  25. package/dist/api/booking-funnels-api.js +4 -4
  26. package/dist/api/commission-agreement-products-api.d.ts +403 -0
  27. package/dist/api/commission-agreement-products-api.js +652 -0
  28. package/dist/api/commission-agreement-versions-api.d.ts +337 -0
  29. package/dist/api/commission-agreement-versions-api.js +555 -0
  30. package/dist/api/commission-agreements-api.d.ts +394 -0
  31. package/dist/api/commission-agreements-api.js +646 -0
  32. package/dist/api/commission-recipients-api.d.ts +394 -0
  33. package/dist/api/commission-recipients-api.js +646 -0
  34. package/dist/api/emil-functions-api.d.ts +8 -8
  35. package/dist/api/emil-functions-api.js +8 -8
  36. package/dist/api/health-check-api.d.ts +70 -0
  37. package/dist/api/{default-api.js → health-check-api.js} +30 -26
  38. package/dist/api/insured-objects-api.js +4 -2
  39. package/dist/api/lead-statuses-api.d.ts +4 -4
  40. package/dist/api/lead-statuses-api.js +4 -4
  41. package/dist/api/lead-versions-api.d.ts +4 -4
  42. package/dist/api/lead-versions-api.js +4 -4
  43. package/dist/api/leads-api.d.ts +4 -4
  44. package/dist/api/leads-api.js +4 -4
  45. package/dist/api/partner-links-api.d.ts +4 -4
  46. package/dist/api/partner-links-api.js +3 -3
  47. package/dist/api/partner-roles-api.d.ts +4 -4
  48. package/dist/api/partner-roles-api.js +4 -4
  49. package/dist/api/policies-api.d.ts +150 -177
  50. package/dist/api/policies-api.js +143 -165
  51. package/dist/api/products-api.d.ts +8 -8
  52. package/dist/api/products-api.js +8 -8
  53. package/dist/api/status-transition-rules-api.d.ts +4 -4
  54. package/dist/api/status-transition-rules-api.js +4 -4
  55. package/dist/api.d.ts +5 -1
  56. package/dist/api.js +5 -1
  57. package/dist/base.d.ts +3 -1
  58. package/dist/base.js +27 -20
  59. package/dist/models/booking-funnel-class.d.ts +12 -0
  60. package/dist/models/commission-agreement-class.d.ts +101 -0
  61. package/dist/models/commission-agreement-class.js +23 -0
  62. package/dist/models/commission-agreement-item-class.d.ts +78 -0
  63. package/dist/models/commission-agreement-item-class.js +15 -0
  64. package/dist/models/commission-agreement-product-class.d.ts +84 -0
  65. package/dist/models/commission-agreement-product-class.js +15 -0
  66. package/dist/models/commission-agreement-version-class.d.ts +91 -0
  67. package/dist/models/commission-agreement-version-class.js +15 -0
  68. package/dist/models/commission-recipient-class.d.ts +90 -0
  69. package/dist/models/commission-recipient-class.js +15 -0
  70. package/dist/models/create-booking-funnel-response-class.d.ts +25 -0
  71. package/dist/models/create-booking-funnel-response-class.js +15 -0
  72. package/dist/models/create-commission-agreement-item-dto.d.ts +36 -0
  73. package/dist/models/create-commission-agreement-item-dto.js +15 -0
  74. package/dist/models/create-commission-agreement-product-request-dto.d.ts +42 -0
  75. package/dist/models/create-commission-agreement-product-request-dto.js +15 -0
  76. package/dist/models/create-commission-agreement-product-response-class.d.ts +25 -0
  77. package/dist/models/create-commission-agreement-product-response-class.js +15 -0
  78. package/dist/models/create-commission-agreement-request-dto.d.ts +75 -0
  79. package/dist/models/create-commission-agreement-request-dto.js +23 -0
  80. package/dist/models/create-commission-agreement-response-class.d.ts +25 -0
  81. package/dist/models/create-commission-agreement-response-class.js +15 -0
  82. package/dist/models/create-commission-agreement-version-request-dto.d.ts +49 -0
  83. package/dist/models/create-commission-agreement-version-request-dto.js +15 -0
  84. package/dist/models/create-commission-agreement-version-response-class.d.ts +25 -0
  85. package/dist/models/create-commission-agreement-version-response-class.js +15 -0
  86. package/dist/models/create-commission-recipient-request-dto.d.ts +48 -0
  87. package/dist/models/create-commission-recipient-request-dto.js +15 -0
  88. package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
  89. package/dist/models/create-commission-recipient-response-class.js +15 -0
  90. package/dist/models/create-dummy-policy-request-dto.d.ts +6 -0
  91. package/dist/models/create-lead-request-dto.d.ts +4 -9
  92. package/dist/models/emil-function-class.d.ts +12 -0
  93. package/dist/models/get-booking-funnel-response-class.d.ts +25 -0
  94. package/dist/models/get-booking-funnel-response-class.js +15 -0
  95. package/dist/models/get-commission-agreement-product-response-class.d.ts +25 -0
  96. package/dist/models/get-commission-agreement-product-response-class.js +15 -0
  97. package/dist/models/get-commission-agreement-response-class.d.ts +25 -0
  98. package/dist/models/get-commission-agreement-response-class.js +15 -0
  99. package/dist/models/get-commission-agreement-version-response-class.d.ts +25 -0
  100. package/dist/models/get-commission-agreement-version-response-class.js +15 -0
  101. package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
  102. package/dist/models/get-commission-recipient-response-class.js +15 -0
  103. package/dist/models/index.d.ts +33 -0
  104. package/dist/models/index.js +33 -0
  105. package/dist/models/insured-object-class.d.ts +12 -0
  106. package/dist/models/insured-object-type-class.d.ts +12 -0
  107. package/dist/models/lead-class.d.ts +12 -0
  108. package/dist/models/lead-status-class.d.ts +12 -0
  109. package/dist/models/link-lead-partner-request-dto.d.ts +36 -0
  110. package/dist/models/link-lead-partner-request-dto.js +15 -0
  111. package/dist/models/list-commission-agreement-products-response-class.d.ts +31 -0
  112. package/dist/models/list-commission-agreement-products-response-class.js +15 -0
  113. package/dist/models/list-commission-agreement-versions-response-class.d.ts +31 -0
  114. package/dist/models/list-commission-agreement-versions-response-class.js +15 -0
  115. package/dist/models/list-commission-agreements-response-class.d.ts +31 -0
  116. package/dist/models/list-commission-agreements-response-class.js +15 -0
  117. package/dist/models/list-commission-recipients-response-class.d.ts +31 -0
  118. package/dist/models/list-commission-recipients-response-class.js +15 -0
  119. package/dist/models/list-named-ranges-response-class.d.ts +3 -2
  120. package/dist/models/named-range-class.d.ts +12 -0
  121. package/dist/models/partner-link-class.d.ts +12 -0
  122. package/dist/models/partner-role-class.d.ts +12 -0
  123. package/dist/models/patch-booking-funnel-response-class.d.ts +25 -0
  124. package/dist/models/patch-booking-funnel-response-class.js +15 -0
  125. package/dist/models/policy-class.d.ts +12 -0
  126. package/dist/models/policy-object-class.d.ts +12 -0
  127. package/dist/models/policy-premium-class.d.ts +12 -0
  128. package/dist/models/policy-premium-item-class.d.ts +12 -0
  129. package/dist/models/policy-version-class.d.ts +12 -0
  130. package/dist/models/premium-formula-class.d.ts +12 -0
  131. package/dist/models/product-class.d.ts +12 -0
  132. package/dist/models/product-factor-class.d.ts +12 -0
  133. package/dist/models/product-factor-for-version-class.d.ts +12 -0
  134. package/dist/models/product-factor-value-class.d.ts +12 -0
  135. package/dist/models/product-field-class.d.ts +12 -0
  136. package/dist/models/product-field-type-class.d.ts +12 -0
  137. package/dist/models/product-version-class.d.ts +12 -0
  138. package/dist/models/shared-product-field-class.d.ts +12 -0
  139. package/dist/models/status-transition-rule-class.d.ts +12 -0
  140. package/dist/models/timeslice-class.d.ts +12 -0
  141. package/dist/models/update-booking-funnel-response-class.d.ts +25 -0
  142. package/dist/models/update-booking-funnel-response-class.js +15 -0
  143. package/dist/models/update-commission-agreement-product-request-dto.d.ts +42 -0
  144. package/dist/models/update-commission-agreement-product-request-dto.js +15 -0
  145. package/dist/models/update-commission-agreement-product-response-class.d.ts +25 -0
  146. package/dist/models/update-commission-agreement-product-response-class.js +15 -0
  147. package/dist/models/update-commission-agreement-request-dto.d.ts +44 -0
  148. package/dist/models/update-commission-agreement-request-dto.js +23 -0
  149. package/dist/models/update-commission-agreement-response-class.d.ts +25 -0
  150. package/dist/models/update-commission-agreement-response-class.js +15 -0
  151. package/dist/models/update-commission-recipient-request-dto.d.ts +48 -0
  152. package/dist/models/update-commission-recipient-request-dto.js +15 -0
  153. package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
  154. package/dist/models/update-commission-recipient-response-class.js +15 -0
  155. package/models/booking-funnel-class.ts +12 -0
  156. package/models/commission-agreement-class.ts +110 -0
  157. package/models/commission-agreement-item-class.ts +84 -0
  158. package/models/commission-agreement-product-class.ts +90 -0
  159. package/models/commission-agreement-version-class.ts +97 -0
  160. package/models/commission-recipient-class.ts +96 -0
  161. package/models/create-booking-funnel-response-class.ts +31 -0
  162. package/models/create-commission-agreement-item-dto.ts +42 -0
  163. package/models/create-commission-agreement-product-request-dto.ts +48 -0
  164. package/models/create-commission-agreement-product-response-class.ts +31 -0
  165. package/models/create-commission-agreement-request-dto.ts +84 -0
  166. package/models/create-commission-agreement-response-class.ts +31 -0
  167. package/models/create-commission-agreement-version-request-dto.ts +55 -0
  168. package/models/create-commission-agreement-version-response-class.ts +31 -0
  169. package/models/create-commission-recipient-request-dto.ts +54 -0
  170. package/models/create-commission-recipient-response-class.ts +31 -0
  171. package/models/create-dummy-policy-request-dto.ts +6 -0
  172. package/models/create-lead-request-dto.ts +4 -9
  173. package/models/emil-function-class.ts +12 -0
  174. package/models/get-booking-funnel-response-class.ts +31 -0
  175. package/models/get-commission-agreement-product-response-class.ts +31 -0
  176. package/models/get-commission-agreement-response-class.ts +31 -0
  177. package/models/get-commission-agreement-version-response-class.ts +31 -0
  178. package/models/get-commission-recipient-response-class.ts +31 -0
  179. package/models/index.ts +33 -0
  180. package/models/insured-object-class.ts +12 -0
  181. package/models/insured-object-type-class.ts +12 -0
  182. package/models/lead-class.ts +12 -0
  183. package/models/lead-status-class.ts +12 -0
  184. package/models/link-lead-partner-request-dto.ts +42 -0
  185. package/models/list-commission-agreement-products-response-class.ts +37 -0
  186. package/models/list-commission-agreement-versions-response-class.ts +37 -0
  187. package/models/list-commission-agreements-response-class.ts +37 -0
  188. package/models/list-commission-recipients-response-class.ts +37 -0
  189. package/models/list-named-ranges-response-class.ts +3 -2
  190. package/models/named-range-class.ts +12 -0
  191. package/models/partner-link-class.ts +12 -0
  192. package/models/partner-role-class.ts +12 -0
  193. package/models/patch-booking-funnel-response-class.ts +31 -0
  194. package/models/policy-class.ts +12 -0
  195. package/models/policy-object-class.ts +12 -0
  196. package/models/policy-premium-class.ts +12 -0
  197. package/models/policy-premium-item-class.ts +12 -0
  198. package/models/policy-version-class.ts +12 -0
  199. package/models/premium-formula-class.ts +12 -0
  200. package/models/product-class.ts +12 -0
  201. package/models/product-factor-class.ts +12 -0
  202. package/models/product-factor-for-version-class.ts +12 -0
  203. package/models/product-factor-value-class.ts +12 -0
  204. package/models/product-field-class.ts +12 -0
  205. package/models/product-field-type-class.ts +12 -0
  206. package/models/product-version-class.ts +12 -0
  207. package/models/shared-product-field-class.ts +12 -0
  208. package/models/status-transition-rule-class.ts +12 -0
  209. package/models/timeslice-class.ts +12 -0
  210. package/models/update-booking-funnel-response-class.ts +31 -0
  211. package/models/update-commission-agreement-product-request-dto.ts +48 -0
  212. package/models/update-commission-agreement-product-response-class.ts +31 -0
  213. package/models/update-commission-agreement-request-dto.ts +53 -0
  214. package/models/update-commission-agreement-response-class.ts +31 -0
  215. package/models/update-commission-recipient-request-dto.ts +54 -0
  216. package/models/update-commission-recipient-response-class.ts +31 -0
  217. package/package.json +1 -1
  218. package/dist/api/default-api.d.ts +0 -66
@@ -63,4 +63,16 @@ export interface StatusTransitionRuleClass {
63
63
  * @memberof StatusTransitionRuleClass
64
64
  */
65
65
  'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof StatusTransitionRuleClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof StatusTransitionRuleClass
76
+ */
77
+ 'updatedBy': string;
66
78
  }
@@ -59,4 +59,16 @@ export interface TimesliceClass {
59
59
  * @memberof TimesliceClass
60
60
  */
61
61
  'updatedAt': string;
62
+ /**
63
+ * Identifier of the user who created the record.
64
+ * @type {string}
65
+ * @memberof TimesliceClass
66
+ */
67
+ 'createdBy': string;
68
+ /**
69
+ * Identifier of the user who last updated the record.
70
+ * @type {string}
71
+ * @memberof TimesliceClass
72
+ */
73
+ 'updatedBy': string;
62
74
  }
@@ -0,0 +1,25 @@
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 UpdateBookingFunnelResponseClass
17
+ */
18
+ export interface UpdateBookingFunnelResponseClass {
19
+ /**
20
+ * Booking Funnel
21
+ * @type {BookingFunnelClass}
22
+ * @memberof UpdateBookingFunnelResponseClass
23
+ */
24
+ 'bookingFunnel': BookingFunnelClass;
25
+ }
@@ -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,42 @@
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 UpdateCommissionAgreementProductRequestDto
16
+ */
17
+ export interface UpdateCommissionAgreementProductRequestDto {
18
+ /**
19
+ * Unique identifier referencing the product.
20
+ * @type {number}
21
+ * @memberof UpdateCommissionAgreementProductRequestDto
22
+ */
23
+ 'productId': number;
24
+ /**
25
+ * The date the product can use the commision agreement from.
26
+ * @type {string}
27
+ * @memberof UpdateCommissionAgreementProductRequestDto
28
+ */
29
+ 'startDate'?: string;
30
+ /**
31
+ * The date the product can use the commision agreement to.
32
+ * @type {string}
33
+ * @memberof UpdateCommissionAgreementProductRequestDto
34
+ */
35
+ 'endDate'?: string;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof UpdateCommissionAgreementProductRequestDto
40
+ */
41
+ 'enabled': boolean;
42
+ }
@@ -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,25 @@
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 { CommissionAgreementProductClass } from './commission-agreement-product-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateCommissionAgreementProductResponseClass
17
+ */
18
+ export interface UpdateCommissionAgreementProductResponseClass {
19
+ /**
20
+ * Commission agreement product
21
+ * @type {CommissionAgreementProductClass}
22
+ * @memberof UpdateCommissionAgreementProductResponseClass
23
+ */
24
+ 'product': CommissionAgreementProductClass;
25
+ }
@@ -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,44 @@
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 UpdateCommissionAgreementRequestDto
16
+ */
17
+ export interface UpdateCommissionAgreementRequestDto {
18
+ /**
19
+ * Commission agreement name.
20
+ * @type {string}
21
+ * @memberof UpdateCommissionAgreementRequestDto
22
+ */
23
+ 'name': string;
24
+ /**
25
+ * Commission agreement description.
26
+ * @type {string}
27
+ * @memberof UpdateCommissionAgreementRequestDto
28
+ */
29
+ 'description'?: string;
30
+ /**
31
+ * Type of the commission agreement.
32
+ * @type {string}
33
+ * @memberof UpdateCommissionAgreementRequestDto
34
+ */
35
+ 'type': UpdateCommissionAgreementRequestDtoTypeEnum;
36
+ }
37
+ export declare const UpdateCommissionAgreementRequestDtoTypeEnum: {
38
+ readonly PerPolicy: "PerPolicy";
39
+ readonly Monthly: "Monthly";
40
+ readonly Quarterly: "Quarterly";
41
+ readonly Semiannually: "Semiannually";
42
+ readonly Annually: "Annually";
43
+ };
44
+ export type UpdateCommissionAgreementRequestDtoTypeEnum = typeof UpdateCommissionAgreementRequestDtoTypeEnum[keyof typeof UpdateCommissionAgreementRequestDtoTypeEnum];
@@ -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.UpdateCommissionAgreementRequestDtoTypeEnum = void 0;
17
+ exports.UpdateCommissionAgreementRequestDtoTypeEnum = {
18
+ PerPolicy: 'PerPolicy',
19
+ Monthly: 'Monthly',
20
+ Quarterly: 'Quarterly',
21
+ Semiannually: 'Semiannually',
22
+ Annually: 'Annually'
23
+ };
@@ -0,0 +1,25 @@
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 { CommissionAgreementClass } from './commission-agreement-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateCommissionAgreementResponseClass
17
+ */
18
+ export interface UpdateCommissionAgreementResponseClass {
19
+ /**
20
+ * Commission agreement
21
+ * @type {CommissionAgreementClass}
22
+ * @memberof UpdateCommissionAgreementResponseClass
23
+ */
24
+ 'commissionAgreement': CommissionAgreementClass;
25
+ }
@@ -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,48 @@
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 UpdateCommissionRecipientRequestDto
16
+ */
17
+ export interface UpdateCommissionRecipientRequestDto {
18
+ /**
19
+ * Unique identifier of the partner that this object belongs to.
20
+ * @type {string}
21
+ * @memberof UpdateCommissionRecipientRequestDto
22
+ */
23
+ 'partnerCode': string;
24
+ /**
25
+ * The date the recipient receives the commission from.
26
+ * @type {string}
27
+ * @memberof UpdateCommissionRecipientRequestDto
28
+ */
29
+ 'startDate'?: string;
30
+ /**
31
+ * The date the recipient receives the commission to.
32
+ * @type {string}
33
+ * @memberof UpdateCommissionRecipientRequestDto
34
+ */
35
+ 'endDate'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UpdateCommissionRecipientRequestDto
40
+ */
41
+ 'displayName': string;
42
+ /**
43
+ *
44
+ * @type {boolean}
45
+ * @memberof UpdateCommissionRecipientRequestDto
46
+ */
47
+ 'enabled': boolean;
48
+ }
@@ -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,25 @@
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 { CommissionRecipientClass } from './commission-recipient-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateCommissionRecipientResponseClass
17
+ */
18
+ export interface UpdateCommissionRecipientResponseClass {
19
+ /**
20
+ * Commission recipient
21
+ * @type {CommissionRecipientClass}
22
+ * @memberof UpdateCommissionRecipientResponseClass
23
+ */
24
+ 'recipient': CommissionRecipientClass;
25
+ }
@@ -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 });
@@ -98,5 +98,17 @@ export interface BookingFunnelClass {
98
98
  * @memberof BookingFunnelClass
99
99
  */
100
100
  'shouldShowOnApplicationsPage'?: boolean;
101
+ /**
102
+ * Identifier of the user who created the record.
103
+ * @type {string}
104
+ * @memberof BookingFunnelClass
105
+ */
106
+ 'createdBy': string;
107
+ /**
108
+ * Identifier of the user who last updated the record.
109
+ * @type {string}
110
+ * @memberof BookingFunnelClass
111
+ */
112
+ 'updatedBy': string;
101
113
  }
102
114
 
@@ -0,0 +1,110 @@
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
+ import { CommissionAgreementProductClass } from './commission-agreement-product-class';
17
+ import { CommissionAgreementVersionClass } from './commission-agreement-version-class';
18
+ import { CommissionRecipientClass } from './commission-recipient-class';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CommissionAgreementClass
24
+ */
25
+ export interface CommissionAgreementClass {
26
+ /**
27
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
28
+ * @type {number}
29
+ * @memberof CommissionAgreementClass
30
+ */
31
+ 'id': number;
32
+ /**
33
+ * Commission agreement name.
34
+ * @type {string}
35
+ * @memberof CommissionAgreementClass
36
+ */
37
+ 'name': string;
38
+ /**
39
+ * Unique identifier for the object.
40
+ * @type {string}
41
+ * @memberof CommissionAgreementClass
42
+ */
43
+ 'code': string;
44
+ /**
45
+ * Commission agreement description.
46
+ * @type {string}
47
+ * @memberof CommissionAgreementClass
48
+ */
49
+ 'description'?: string;
50
+ /**
51
+ * Type of the commission agreement.
52
+ * @type {string}
53
+ * @memberof CommissionAgreementClass
54
+ */
55
+ 'type': CommissionAgreementClassTypeEnum;
56
+ /**
57
+ * Products the commission agreement is used for.
58
+ * @type {Array<CommissionAgreementProductClass>}
59
+ * @memberof CommissionAgreementClass
60
+ */
61
+ 'products': Array<CommissionAgreementProductClass>;
62
+ /**
63
+ * Commission agreement versions.
64
+ * @type {Array<CommissionAgreementVersionClass>}
65
+ * @memberof CommissionAgreementClass
66
+ */
67
+ 'versions': Array<CommissionAgreementVersionClass>;
68
+ /**
69
+ * Brokers to receive the commission by the commission agreement.
70
+ * @type {Array<CommissionRecipientClass>}
71
+ * @memberof CommissionAgreementClass
72
+ */
73
+ 'recipients': Array<CommissionRecipientClass>;
74
+ /**
75
+ * Time at which the object was created.
76
+ * @type {string}
77
+ * @memberof CommissionAgreementClass
78
+ */
79
+ 'createdAt': string;
80
+ /**
81
+ * Time at which the object was updated.
82
+ * @type {string}
83
+ * @memberof CommissionAgreementClass
84
+ */
85
+ 'updatedAt': string;
86
+ /**
87
+ * Identifier of the user who created the record.
88
+ * @type {string}
89
+ * @memberof CommissionAgreementClass
90
+ */
91
+ 'createdBy': string;
92
+ /**
93
+ * Identifier of the user who last updated the record.
94
+ * @type {string}
95
+ * @memberof CommissionAgreementClass
96
+ */
97
+ 'updatedBy': string;
98
+ }
99
+
100
+ export const CommissionAgreementClassTypeEnum = {
101
+ PerPolicy: 'PerPolicy',
102
+ Monthly: 'Monthly',
103
+ Quarterly: 'Quarterly',
104
+ Semiannually: 'Semiannually',
105
+ Annually: 'Annually'
106
+ } as const;
107
+
108
+ export type CommissionAgreementClassTypeEnum = typeof CommissionAgreementClassTypeEnum[keyof typeof CommissionAgreementClassTypeEnum];
109
+
110
+
@@ -0,0 +1,84 @@
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 CommissionAgreementItemClass
21
+ */
22
+ export interface CommissionAgreementItemClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof CommissionAgreementItemClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier referencing the commission agreement version.
31
+ * @type {number}
32
+ * @memberof CommissionAgreementItemClass
33
+ */
34
+ 'commissionAgreementVersionId': number;
35
+ /**
36
+ * Unique identifier for the object.
37
+ * @type {string}
38
+ * @memberof CommissionAgreementItemClass
39
+ */
40
+ 'code': string;
41
+ /**
42
+ * Commission agreement item name.
43
+ * @type {string}
44
+ * @memberof CommissionAgreementItemClass
45
+ */
46
+ 'itemName': string;
47
+ /**
48
+ * Commission agreement item description.
49
+ * @type {string}
50
+ * @memberof CommissionAgreementItemClass
51
+ */
52
+ 'itemDescription': string;
53
+ /**
54
+ * Commission formula (Python expression).
55
+ * @type {string}
56
+ * @memberof CommissionAgreementItemClass
57
+ */
58
+ 'commissionFormula': string;
59
+ /**
60
+ * Time at which the object was created.
61
+ * @type {string}
62
+ * @memberof CommissionAgreementItemClass
63
+ */
64
+ 'createdAt': string;
65
+ /**
66
+ * Time at which the object was updated.
67
+ * @type {string}
68
+ * @memberof CommissionAgreementItemClass
69
+ */
70
+ 'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof CommissionAgreementItemClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof CommissionAgreementItemClass
81
+ */
82
+ 'updatedBy': string;
83
+ }
84
+