@emilgroup/insurance-sdk-node 1.93.0 → 1.93.1-beta.11
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 +29 -0
- package/README.md +2 -2
- package/api/product-configs-api.ts +1371 -0
- package/api.ts +2 -0
- package/dist/api/product-configs-api.d.ts +765 -0
- package/dist/api/product-configs-api.js +1225 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/amount-with-limit-class.d.ts +30 -0
- package/dist/models/amount-with-limit-class.js +15 -0
- package/dist/models/category-class.d.ts +57 -0
- package/dist/models/category-class.js +15 -0
- package/dist/models/claim-config-class.d.ts +39 -0
- package/dist/models/claim-config-class.js +15 -0
- package/dist/models/claim-position-fields-class.d.ts +31 -0
- package/dist/models/claim-position-fields-class.js +15 -0
- package/dist/models/coverage-class.d.ts +43 -0
- package/dist/models/coverage-class.js +15 -0
- package/dist/models/coverage-term-class.d.ts +54 -0
- package/dist/models/coverage-term-class.js +25 -0
- package/dist/models/custom-field-class.d.ts +50 -0
- package/dist/models/custom-field-class.js +23 -0
- package/dist/models/deductible-class.d.ts +60 -0
- package/dist/models/deductible-class.js +25 -0
- package/dist/models/delete-response-by-code-class.d.ts +24 -0
- package/dist/models/delete-response-by-code-class.js +15 -0
- package/dist/models/general-setting-class.d.ts +56 -0
- package/dist/models/general-setting-class.js +33 -0
- package/dist/models/index.d.ts +28 -0
- package/dist/models/index.js +28 -0
- package/dist/models/rest-create-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-response-class.js +15 -0
- package/dist/models/rest-create-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-version-response-class.js +15 -0
- package/dist/models/rest-get-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-response-class.js +15 -0
- package/dist/models/rest-get-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-version-response-class.js +15 -0
- package/dist/models/rest-list-product-config-versions-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-config-versions-response-class.js +15 -0
- package/dist/models/rest-list-product-configs-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-configs-response-class.js +15 -0
- package/dist/models/rest-update-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-response-class.js +15 -0
- package/dist/models/rest-update-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-version-response-class.js +15 -0
- package/dist/models/shared-product-config-class.d.ts +79 -0
- package/dist/models/shared-product-config-class.js +15 -0
- package/dist/models/shared-product-config-version-class.d.ts +85 -0
- package/dist/models/shared-product-config-version-class.js +21 -0
- package/dist/models/shared-product-field-override-class.d.ts +48 -0
- package/dist/models/shared-product-field-override-class.js +15 -0
- package/dist/models/shared-product-version-config-class.d.ts +32 -0
- package/dist/models/shared-product-version-config-class.js +15 -0
- package/dist/models/shared-tariff-variation-class.d.ts +64 -0
- package/dist/models/shared-tariff-variation-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +72 -0
- package/dist/models/tariff-coverage-term-class.js +30 -0
- package/dist/models/update-product-config-request-dto.d.ts +24 -0
- package/dist/models/update-product-config-request-dto.js +15 -0
- package/dist/models/update-product-config-version-status-request-dto.d.ts +30 -0
- package/dist/models/update-product-config-version-status-request-dto.js +21 -0
- package/dist/models/waiting-period-class.d.ts +41 -0
- package/dist/models/waiting-period-class.js +20 -0
- package/dist/models/warning-class.d.ts +47 -0
- package/dist/models/warning-class.js +20 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/category-class.ts +63 -0
- package/models/claim-config-class.ts +45 -0
- package/models/claim-position-fields-class.ts +37 -0
- package/models/coverage-class.ts +49 -0
- package/models/coverage-term-class.ts +64 -0
- package/models/custom-field-class.ts +59 -0
- package/models/deductible-class.ts +70 -0
- package/models/delete-response-by-code-class.ts +30 -0
- package/models/general-setting-class.ts +66 -0
- package/models/index.ts +28 -0
- package/models/rest-create-product-config-response-class.ts +31 -0
- package/models/rest-create-product-config-version-response-class.ts +31 -0
- package/models/rest-get-product-config-response-class.ts +31 -0
- package/models/rest-get-product-config-version-response-class.ts +31 -0
- package/models/rest-list-product-config-versions-response-class.ts +49 -0
- package/models/rest-list-product-configs-response-class.ts +49 -0
- package/models/rest-update-product-config-response-class.ts +31 -0
- package/models/rest-update-product-config-version-response-class.ts +31 -0
- package/models/shared-product-config-class.ts +85 -0
- package/models/shared-product-config-version-class.ts +94 -0
- package/models/shared-product-field-override-class.ts +54 -0
- package/models/shared-product-version-config-class.ts +38 -0
- package/models/shared-tariff-variation-class.ts +70 -0
- package/models/tariff-coverage-term-class.ts +83 -0
- package/models/update-product-config-request-dto.ts +30 -0
- package/models/update-product-config-version-status-request-dto.ts +39 -0
- package/models/waiting-period-class.ts +50 -0
- package/models/warning-class.ts +56 -0
- package/package.json +2 -2
package/dist/models/index.d.ts
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
|
+
export * from './amount-with-limit-class';
|
|
3
4
|
export * from './bank-transfer-dto';
|
|
4
5
|
export * from './billing-address-dto';
|
|
5
6
|
export * from './booking-funnel-class';
|
|
6
7
|
export * from './calculate-custom-premium-request-dto';
|
|
7
8
|
export * from './calculate-premium-request-dto';
|
|
8
9
|
export * from './calculate-product-fields-request-dto';
|
|
10
|
+
export * from './category-class';
|
|
11
|
+
export * from './claim-config-class';
|
|
12
|
+
export * from './claim-position-fields-class';
|
|
9
13
|
export * from './clone-lead-request-dto';
|
|
10
14
|
export * from './clone-product-version-request-dto';
|
|
11
15
|
export * from './commission-agreement-class';
|
|
@@ -13,6 +17,8 @@ export * from './commission-agreement-item-class';
|
|
|
13
17
|
export * from './commission-agreement-product-class';
|
|
14
18
|
export * from './commission-agreement-version-class';
|
|
15
19
|
export * from './commission-recipient-class';
|
|
20
|
+
export * from './coverage-class';
|
|
21
|
+
export * from './coverage-term-class';
|
|
16
22
|
export * from './create-account-request-dto';
|
|
17
23
|
export * from './create-bank-account-request-dto';
|
|
18
24
|
export * from './create-booking-funnel-request-dto';
|
|
@@ -58,7 +64,10 @@ export * from './create-product-version-request-dto';
|
|
|
58
64
|
export * from './create-status-transition-rule-request-dto';
|
|
59
65
|
export * from './create-status-transition-rule-response-class';
|
|
60
66
|
export * from './csv-product-factor-dto';
|
|
67
|
+
export * from './custom-field-class';
|
|
68
|
+
export * from './deductible-class';
|
|
61
69
|
export * from './delete-draft-policy-request-dto';
|
|
70
|
+
export * from './delete-response-by-code-class';
|
|
62
71
|
export * from './delete-response-class';
|
|
63
72
|
export * from './emil-function-class';
|
|
64
73
|
export * from './emil-function-secret-class';
|
|
@@ -66,6 +75,7 @@ export * from './empty-response-class';
|
|
|
66
75
|
export * from './execute-emil-function-request-dto';
|
|
67
76
|
export * from './filter-named-range-request-dto';
|
|
68
77
|
export * from './filter-named-range-response-class';
|
|
78
|
+
export * from './general-setting-class';
|
|
69
79
|
export * from './get-booking-funnel-response-class';
|
|
70
80
|
export * from './get-booking-funnel-version-request-dto';
|
|
71
81
|
export * from './get-commission-agreement-item-response-class';
|
|
@@ -177,6 +187,14 @@ export * from './product-field-class';
|
|
|
177
187
|
export * from './product-field-type-class';
|
|
178
188
|
export * from './product-version-class';
|
|
179
189
|
export * from './rest-clone-lead-account-request-dto';
|
|
190
|
+
export * from './rest-create-product-config-response-class';
|
|
191
|
+
export * from './rest-create-product-config-version-response-class';
|
|
192
|
+
export * from './rest-get-product-config-response-class';
|
|
193
|
+
export * from './rest-get-product-config-version-response-class';
|
|
194
|
+
export * from './rest-list-product-config-versions-response-class';
|
|
195
|
+
export * from './rest-list-product-configs-response-class';
|
|
196
|
+
export * from './rest-update-product-config-response-class';
|
|
197
|
+
export * from './rest-update-product-config-version-response-class';
|
|
180
198
|
export * from './restore-policy-version-request-dto';
|
|
181
199
|
export * from './restore-policy-version-response-class';
|
|
182
200
|
export * from './sepa-dto';
|
|
@@ -192,8 +210,13 @@ export * from './shared-mandate-hash-data-dto';
|
|
|
192
210
|
export * from './shared-mandate-hash-data-response-class';
|
|
193
211
|
export * from './shared-mandate-response-class';
|
|
194
212
|
export * from './shared-payment-method-response-class';
|
|
213
|
+
export * from './shared-product-config-class';
|
|
214
|
+
export * from './shared-product-config-version-class';
|
|
195
215
|
export * from './shared-product-field-class';
|
|
216
|
+
export * from './shared-product-field-override-class';
|
|
217
|
+
export * from './shared-product-version-config-class';
|
|
196
218
|
export * from './shared-sepa-response-class';
|
|
219
|
+
export * from './shared-tariff-variation-class';
|
|
197
220
|
export * from './shared-update-named-range-request-dto';
|
|
198
221
|
export * from './shared-update-premium-formula-request-dto';
|
|
199
222
|
export * from './status-transition-rule-class';
|
|
@@ -204,6 +227,7 @@ export * from './suspend-policy-response-class';
|
|
|
204
227
|
export * from './swap-premium-formulas-order-request-dto';
|
|
205
228
|
export * from './swap-product-fields-order-request-dto';
|
|
206
229
|
export * from './tag-class';
|
|
230
|
+
export * from './tariff-coverage-term-class';
|
|
207
231
|
export * from './terminate-policy-request-dto';
|
|
208
232
|
export * from './terminate-policy-response-class';
|
|
209
233
|
export * from './timeslice-class';
|
|
@@ -235,6 +259,8 @@ export * from './update-policy-request-dto';
|
|
|
235
259
|
export * from './update-policy-response-class';
|
|
236
260
|
export * from './update-premium-formula-request-dto';
|
|
237
261
|
export * from './update-premium-formula-response-class';
|
|
262
|
+
export * from './update-product-config-request-dto';
|
|
263
|
+
export * from './update-product-config-version-status-request-dto';
|
|
238
264
|
export * from './update-product-field-request-dto';
|
|
239
265
|
export * from './update-product-field-response-class';
|
|
240
266
|
export * from './update-product-request-dto';
|
|
@@ -245,4 +271,6 @@ export * from './update-status-transition-rule-request-dto';
|
|
|
245
271
|
export * from './update-status-transition-rule-response-class';
|
|
246
272
|
export * from './uploaded-document-dto';
|
|
247
273
|
export * from './validate-product-factors-request-dto';
|
|
274
|
+
export * from './waiting-period-class';
|
|
275
|
+
export * from './warning-class';
|
|
248
276
|
export * from './withdraw-policy-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -16,12 +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("./amount-with-limit-class"), exports);
|
|
19
20
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
20
21
|
__exportStar(require("./billing-address-dto"), exports);
|
|
21
22
|
__exportStar(require("./booking-funnel-class"), exports);
|
|
22
23
|
__exportStar(require("./calculate-custom-premium-request-dto"), exports);
|
|
23
24
|
__exportStar(require("./calculate-premium-request-dto"), exports);
|
|
24
25
|
__exportStar(require("./calculate-product-fields-request-dto"), exports);
|
|
26
|
+
__exportStar(require("./category-class"), exports);
|
|
27
|
+
__exportStar(require("./claim-config-class"), exports);
|
|
28
|
+
__exportStar(require("./claim-position-fields-class"), exports);
|
|
25
29
|
__exportStar(require("./clone-lead-request-dto"), exports);
|
|
26
30
|
__exportStar(require("./clone-product-version-request-dto"), exports);
|
|
27
31
|
__exportStar(require("./commission-agreement-class"), exports);
|
|
@@ -29,6 +33,8 @@ __exportStar(require("./commission-agreement-item-class"), exports);
|
|
|
29
33
|
__exportStar(require("./commission-agreement-product-class"), exports);
|
|
30
34
|
__exportStar(require("./commission-agreement-version-class"), exports);
|
|
31
35
|
__exportStar(require("./commission-recipient-class"), exports);
|
|
36
|
+
__exportStar(require("./coverage-class"), exports);
|
|
37
|
+
__exportStar(require("./coverage-term-class"), exports);
|
|
32
38
|
__exportStar(require("./create-account-request-dto"), exports);
|
|
33
39
|
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
34
40
|
__exportStar(require("./create-booking-funnel-request-dto"), exports);
|
|
@@ -74,7 +80,10 @@ __exportStar(require("./create-product-version-request-dto"), exports);
|
|
|
74
80
|
__exportStar(require("./create-status-transition-rule-request-dto"), exports);
|
|
75
81
|
__exportStar(require("./create-status-transition-rule-response-class"), exports);
|
|
76
82
|
__exportStar(require("./csv-product-factor-dto"), exports);
|
|
83
|
+
__exportStar(require("./custom-field-class"), exports);
|
|
84
|
+
__exportStar(require("./deductible-class"), exports);
|
|
77
85
|
__exportStar(require("./delete-draft-policy-request-dto"), exports);
|
|
86
|
+
__exportStar(require("./delete-response-by-code-class"), exports);
|
|
78
87
|
__exportStar(require("./delete-response-class"), exports);
|
|
79
88
|
__exportStar(require("./emil-function-class"), exports);
|
|
80
89
|
__exportStar(require("./emil-function-secret-class"), exports);
|
|
@@ -82,6 +91,7 @@ __exportStar(require("./empty-response-class"), exports);
|
|
|
82
91
|
__exportStar(require("./execute-emil-function-request-dto"), exports);
|
|
83
92
|
__exportStar(require("./filter-named-range-request-dto"), exports);
|
|
84
93
|
__exportStar(require("./filter-named-range-response-class"), exports);
|
|
94
|
+
__exportStar(require("./general-setting-class"), exports);
|
|
85
95
|
__exportStar(require("./get-booking-funnel-response-class"), exports);
|
|
86
96
|
__exportStar(require("./get-booking-funnel-version-request-dto"), exports);
|
|
87
97
|
__exportStar(require("./get-commission-agreement-item-response-class"), exports);
|
|
@@ -193,6 +203,14 @@ __exportStar(require("./product-field-class"), exports);
|
|
|
193
203
|
__exportStar(require("./product-field-type-class"), exports);
|
|
194
204
|
__exportStar(require("./product-version-class"), exports);
|
|
195
205
|
__exportStar(require("./rest-clone-lead-account-request-dto"), exports);
|
|
206
|
+
__exportStar(require("./rest-create-product-config-response-class"), exports);
|
|
207
|
+
__exportStar(require("./rest-create-product-config-version-response-class"), exports);
|
|
208
|
+
__exportStar(require("./rest-get-product-config-response-class"), exports);
|
|
209
|
+
__exportStar(require("./rest-get-product-config-version-response-class"), exports);
|
|
210
|
+
__exportStar(require("./rest-list-product-config-versions-response-class"), exports);
|
|
211
|
+
__exportStar(require("./rest-list-product-configs-response-class"), exports);
|
|
212
|
+
__exportStar(require("./rest-update-product-config-response-class"), exports);
|
|
213
|
+
__exportStar(require("./rest-update-product-config-version-response-class"), exports);
|
|
196
214
|
__exportStar(require("./restore-policy-version-request-dto"), exports);
|
|
197
215
|
__exportStar(require("./restore-policy-version-response-class"), exports);
|
|
198
216
|
__exportStar(require("./sepa-dto"), exports);
|
|
@@ -208,8 +226,13 @@ __exportStar(require("./shared-mandate-hash-data-dto"), exports);
|
|
|
208
226
|
__exportStar(require("./shared-mandate-hash-data-response-class"), exports);
|
|
209
227
|
__exportStar(require("./shared-mandate-response-class"), exports);
|
|
210
228
|
__exportStar(require("./shared-payment-method-response-class"), exports);
|
|
229
|
+
__exportStar(require("./shared-product-config-class"), exports);
|
|
230
|
+
__exportStar(require("./shared-product-config-version-class"), exports);
|
|
211
231
|
__exportStar(require("./shared-product-field-class"), exports);
|
|
232
|
+
__exportStar(require("./shared-product-field-override-class"), exports);
|
|
233
|
+
__exportStar(require("./shared-product-version-config-class"), exports);
|
|
212
234
|
__exportStar(require("./shared-sepa-response-class"), exports);
|
|
235
|
+
__exportStar(require("./shared-tariff-variation-class"), exports);
|
|
213
236
|
__exportStar(require("./shared-update-named-range-request-dto"), exports);
|
|
214
237
|
__exportStar(require("./shared-update-premium-formula-request-dto"), exports);
|
|
215
238
|
__exportStar(require("./status-transition-rule-class"), exports);
|
|
@@ -220,6 +243,7 @@ __exportStar(require("./suspend-policy-response-class"), exports);
|
|
|
220
243
|
__exportStar(require("./swap-premium-formulas-order-request-dto"), exports);
|
|
221
244
|
__exportStar(require("./swap-product-fields-order-request-dto"), exports);
|
|
222
245
|
__exportStar(require("./tag-class"), exports);
|
|
246
|
+
__exportStar(require("./tariff-coverage-term-class"), exports);
|
|
223
247
|
__exportStar(require("./terminate-policy-request-dto"), exports);
|
|
224
248
|
__exportStar(require("./terminate-policy-response-class"), exports);
|
|
225
249
|
__exportStar(require("./timeslice-class"), exports);
|
|
@@ -251,6 +275,8 @@ __exportStar(require("./update-policy-request-dto"), exports);
|
|
|
251
275
|
__exportStar(require("./update-policy-response-class"), exports);
|
|
252
276
|
__exportStar(require("./update-premium-formula-request-dto"), exports);
|
|
253
277
|
__exportStar(require("./update-premium-formula-response-class"), exports);
|
|
278
|
+
__exportStar(require("./update-product-config-request-dto"), exports);
|
|
279
|
+
__exportStar(require("./update-product-config-version-status-request-dto"), exports);
|
|
254
280
|
__exportStar(require("./update-product-field-request-dto"), exports);
|
|
255
281
|
__exportStar(require("./update-product-field-response-class"), exports);
|
|
256
282
|
__exportStar(require("./update-product-request-dto"), exports);
|
|
@@ -261,4 +287,6 @@ __exportStar(require("./update-status-transition-rule-request-dto"), exports);
|
|
|
261
287
|
__exportStar(require("./update-status-transition-rule-response-class"), exports);
|
|
262
288
|
__exportStar(require("./uploaded-document-dto"), exports);
|
|
263
289
|
__exportStar(require("./validate-product-factors-request-dto"), exports);
|
|
290
|
+
__exportStar(require("./waiting-period-class"), exports);
|
|
291
|
+
__exportStar(require("./warning-class"), exports);
|
|
264
292
|
__exportStar(require("./withdraw-policy-response-class"), exports);
|
|
@@ -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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestCreateProductConfigResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestCreateProductConfigResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration
|
|
21
|
+
* @type {SharedProductConfigClass}
|
|
22
|
+
* @memberof RestCreateProductConfigResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfig': SharedProductConfigClass;
|
|
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,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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestCreateProductConfigVersionResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestCreateProductConfigVersionResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration version
|
|
21
|
+
* @type {SharedProductConfigVersionClass}
|
|
22
|
+
* @memberof RestCreateProductConfigVersionResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
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,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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestGetProductConfigResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestGetProductConfigResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration
|
|
21
|
+
* @type {SharedProductConfigClass}
|
|
22
|
+
* @memberof RestGetProductConfigResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfig': SharedProductConfigClass;
|
|
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,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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestGetProductConfigVersionResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestGetProductConfigVersionResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration version
|
|
21
|
+
* @type {SharedProductConfigVersionClass}
|
|
22
|
+
* @memberof RestGetProductConfigVersionResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
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,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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestListProductConfigVersionsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestListProductConfigVersionsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* List of product configuration versions
|
|
21
|
+
* @type {Array<SharedProductConfigVersionClass>}
|
|
22
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<SharedProductConfigVersionClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total amount of items.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
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,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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestListProductConfigsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestListProductConfigsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* List of product configurations
|
|
21
|
+
* @type {Array<SharedProductConfigClass>}
|
|
22
|
+
* @memberof RestListProductConfigsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<SharedProductConfigClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RestListProductConfigsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof RestListProductConfigsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total amount of items.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof RestListProductConfigsResponseClass
|
|
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,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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestUpdateProductConfigResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestUpdateProductConfigResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration
|
|
21
|
+
* @type {SharedProductConfigClass}
|
|
22
|
+
* @memberof RestUpdateProductConfigResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfig': SharedProductConfigClass;
|
|
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,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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface RestUpdateProductConfigVersionResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface RestUpdateProductConfigVersionResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The product configuration version
|
|
21
|
+
* @type {SharedProductConfigVersionClass}
|
|
22
|
+
* @memberof RestUpdateProductConfigVersionResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
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,79 @@
|
|
|
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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SharedProductConfigClass
|
|
17
|
+
*/
|
|
18
|
+
export interface SharedProductConfigClass {
|
|
19
|
+
/**
|
|
20
|
+
* Unique numeric identifier
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof SharedProductConfigClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof SharedProductConfigClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* URL-friendly unique identifier
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof SharedProductConfigClass
|
|
35
|
+
*/
|
|
36
|
+
'slug': string;
|
|
37
|
+
/**
|
|
38
|
+
* URL-friendly product identifier
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof SharedProductConfigClass
|
|
41
|
+
*/
|
|
42
|
+
'productSlug': string;
|
|
43
|
+
/**
|
|
44
|
+
* Identifier for the related product version
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof SharedProductConfigClass
|
|
47
|
+
*/
|
|
48
|
+
'productVersionId': number;
|
|
49
|
+
/**
|
|
50
|
+
* Identifier of the user who created the record.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof SharedProductConfigClass
|
|
53
|
+
*/
|
|
54
|
+
'createdBy': string;
|
|
55
|
+
/**
|
|
56
|
+
* Identifier of the user who last updated the record.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof SharedProductConfigClass
|
|
59
|
+
*/
|
|
60
|
+
'updatedBy': string;
|
|
61
|
+
/**
|
|
62
|
+
* Time at which the object was created.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof SharedProductConfigClass
|
|
65
|
+
*/
|
|
66
|
+
'createdAt': string;
|
|
67
|
+
/**
|
|
68
|
+
* Time at which the object was updated.
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof SharedProductConfigClass
|
|
71
|
+
*/
|
|
72
|
+
'updatedAt': string;
|
|
73
|
+
/**
|
|
74
|
+
* Product configuration versions
|
|
75
|
+
* @type {Array<SharedProductConfigVersionClass>}
|
|
76
|
+
* @memberof SharedProductConfigClass
|
|
77
|
+
*/
|
|
78
|
+
'versions': Array<SharedProductConfigVersionClass>;
|
|
79
|
+
}
|
|
@@ -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 });
|