@emilgroup/partner-portal-sdk-node 1.0.1-beta.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.
- package/.openapi-generator/FILES +49 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +84 -0
- package/api/health-check-api.ts +128 -0
- package/api/intermediary-api.ts +1226 -0
- package/api.ts +33 -0
- package/base.ts +286 -0
- package/common.ts +199 -0
- package/configuration.ts +109 -0
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/health-check-api.js +204 -0
- package/dist/api/intermediary-api.d.ts +704 -0
- package/dist/api/intermediary-api.js +1019 -0
- package/dist/api.d.ts +13 -0
- package/dist/api.js +31 -0
- package/dist/base.d.ts +79 -0
- package/dist/base.js +395 -0
- package/dist/common.d.ts +92 -0
- package/dist/common.js +277 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/account-class.d.ts +176 -0
- package/dist/models/account-class.js +22 -0
- package/dist/models/account-policy-class.d.ts +147 -0
- package/dist/models/account-policy-class.js +15 -0
- package/dist/models/create-payment-method-request-dto.d.ts +31 -0
- package/dist/models/create-payment-method-request-dto.js +15 -0
- package/dist/models/create-policy-request-dto.d.ts +55 -0
- package/dist/models/create-policy-request-dto.js +15 -0
- package/dist/models/index.d.ts +34 -0
- package/dist/models/index.js +50 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/insured-object-type-class.d.ts +60 -0
- package/dist/models/insured-object-type-class.js +15 -0
- package/dist/models/invoice-class.d.ts +150 -0
- package/dist/models/invoice-class.js +30 -0
- package/dist/models/invoice-item-class.d.ts +117 -0
- package/dist/models/invoice-item-class.js +24 -0
- package/dist/models/invoice-status-class.d.ts +47 -0
- package/dist/models/invoice-status-class.js +20 -0
- package/dist/models/lead-bank-account-class.d.ts +30 -0
- package/dist/models/lead-bank-account-class.js +15 -0
- package/dist/models/lead-class.d.ts +157 -0
- package/dist/models/lead-class.js +15 -0
- package/dist/models/list-accounts-response-class.d.ts +31 -0
- package/dist/models/list-accounts-response-class.js +15 -0
- package/dist/models/list-leads-response-class.d.ts +43 -0
- package/dist/models/list-leads-response-class.js +15 -0
- package/dist/models/list-partners-response-class.d.ts +31 -0
- package/dist/models/list-partners-response-class.js +15 -0
- package/dist/models/list-policies-response-class.d.ts +43 -0
- package/dist/models/list-policies-response-class.js +15 -0
- package/dist/models/omit-type-class.d.ts +84 -0
- package/dist/models/omit-type-class.js +15 -0
- package/dist/models/partner-class.d.ts +103 -0
- package/dist/models/partner-class.js +15 -0
- package/dist/models/partner-link-class.d.ts +98 -0
- package/dist/models/partner-link-class.js +15 -0
- package/dist/models/partner-role-class.d.ts +72 -0
- package/dist/models/partner-role-class.js +15 -0
- package/dist/models/policy-class.d.ts +147 -0
- package/dist/models/policy-class.js +15 -0
- package/dist/models/policy-object-class.d.ts +84 -0
- package/dist/models/policy-object-class.js +15 -0
- package/dist/models/policy-premium-class.d.ts +61 -0
- package/dist/models/policy-premium-class.js +15 -0
- package/dist/models/policy-premium-item-class.d.ts +67 -0
- package/dist/models/policy-premium-item-class.js +15 -0
- package/dist/models/policy-version-class.d.ts +79 -0
- package/dist/models/policy-version-class.js +15 -0
- package/dist/models/premium-formula-class.d.ts +108 -0
- package/dist/models/premium-formula-class.js +15 -0
- package/dist/models/premium-override-dto.d.ts +55 -0
- package/dist/models/premium-override-dto.js +27 -0
- package/dist/models/premium-override-request-dto.d.ts +25 -0
- package/dist/models/premium-override-request-dto.js +15 -0
- package/dist/models/product-class.d.ts +92 -0
- package/dist/models/product-class.js +15 -0
- package/dist/models/product-version-class.d.ts +73 -0
- package/dist/models/product-version-class.js +22 -0
- package/dist/models/sepa-dto.d.ts +30 -0
- package/dist/models/sepa-dto.js +15 -0
- package/dist/models/tag-class.d.ts +54 -0
- package/dist/models/tag-class.js +15 -0
- package/dist/models/timeslice-class.d.ts +74 -0
- package/dist/models/timeslice-class.js +15 -0
- package/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/account-class.ts +185 -0
- package/models/account-policy-class.ts +153 -0
- package/models/create-payment-method-request-dto.ts +37 -0
- package/models/create-policy-request-dto.ts +61 -0
- package/models/index.ts +34 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/insured-object-type-class.ts +66 -0
- package/models/invoice-class.ts +160 -0
- package/models/invoice-item-class.ts +126 -0
- package/models/invoice-status-class.ts +56 -0
- package/models/lead-bank-account-class.ts +36 -0
- package/models/lead-class.ts +163 -0
- package/models/list-accounts-response-class.ts +37 -0
- package/models/list-leads-response-class.ts +49 -0
- package/models/list-partners-response-class.ts +37 -0
- package/models/list-policies-response-class.ts +49 -0
- package/models/omit-type-class.ts +90 -0
- package/models/partner-class.ts +109 -0
- package/models/partner-link-class.ts +104 -0
- package/models/partner-role-class.ts +78 -0
- package/models/policy-class.ts +153 -0
- package/models/policy-object-class.ts +90 -0
- package/models/policy-premium-class.ts +67 -0
- package/models/policy-premium-item-class.ts +73 -0
- package/models/policy-version-class.ts +85 -0
- package/models/premium-formula-class.ts +114 -0
- package/models/premium-override-dto.ts +65 -0
- package/models/premium-override-request-dto.ts +31 -0
- package/models/product-class.ts +98 -0
- package/models/product-version-class.ts +82 -0
- package/models/sepa-dto.ts +36 -0
- package/models/tag-class.ts +60 -0
- package/models/timeslice-class.ts +80 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/package.json +29 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 { PolicyPremiumItemClass } from './policy-premium-item-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PolicyPremiumClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PolicyPremiumClass {
|
|
24
|
+
/**
|
|
25
|
+
* Premium Items.
|
|
26
|
+
* @type {Array<PolicyPremiumItemClass>}
|
|
27
|
+
* @memberof PolicyPremiumClass
|
|
28
|
+
*/
|
|
29
|
+
'premiumItems': Array<PolicyPremiumItemClass>;
|
|
30
|
+
/**
|
|
31
|
+
* The grand total of a policy premium is the net sum of all policy premium items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof PolicyPremiumClass
|
|
34
|
+
*/
|
|
35
|
+
'grandTotal': number;
|
|
36
|
+
/**
|
|
37
|
+
* Premium policy currency. EUR is used by default.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PolicyPremiumClass
|
|
40
|
+
*/
|
|
41
|
+
'currency': string;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was created.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PolicyPremiumClass
|
|
46
|
+
*/
|
|
47
|
+
'createdAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was updated.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PolicyPremiumClass
|
|
52
|
+
*/
|
|
53
|
+
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PolicyPremiumClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyPremiumClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
66
|
+
}
|
|
67
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 { PremiumFormulaClass } from './premium-formula-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PolicyPremiumItemClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PolicyPremiumItemClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier referencing the item premium formula.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PolicyPremiumItemClass
|
|
28
|
+
*/
|
|
29
|
+
'premiumFormulaId': number;
|
|
30
|
+
/**
|
|
31
|
+
* Item total.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof PolicyPremiumItemClass
|
|
34
|
+
*/
|
|
35
|
+
'total': number;
|
|
36
|
+
/**
|
|
37
|
+
* Time at which the object was created.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PolicyPremiumItemClass
|
|
40
|
+
*/
|
|
41
|
+
'createdAt': string;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was updated.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PolicyPremiumItemClass
|
|
46
|
+
*/
|
|
47
|
+
'updatedAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Item premium formula entity.
|
|
50
|
+
* @type {PremiumFormulaClass}
|
|
51
|
+
* @memberof PolicyPremiumItemClass
|
|
52
|
+
*/
|
|
53
|
+
'premiumFormula': PremiumFormulaClass;
|
|
54
|
+
/**
|
|
55
|
+
* Is premium override?
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof PolicyPremiumItemClass
|
|
58
|
+
*/
|
|
59
|
+
'isOverride': boolean;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who created the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyPremiumItemClass
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who last updated the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PolicyPremiumItemClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 { TimesliceClass } from './timeslice-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PolicyVersionClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PolicyVersionClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PolicyVersionClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Policy timeline.
|
|
32
|
+
* @type {Array<TimesliceClass>}
|
|
33
|
+
* @memberof PolicyVersionClass
|
|
34
|
+
*/
|
|
35
|
+
'timeline': Array<TimesliceClass>;
|
|
36
|
+
/**
|
|
37
|
+
* Policy version metadata. Metadata contains extra information that is needed for specific cases.
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof PolicyVersionClass
|
|
40
|
+
*/
|
|
41
|
+
'metadata': object;
|
|
42
|
+
/**
|
|
43
|
+
* Is this the current policy version?
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof PolicyVersionClass
|
|
46
|
+
*/
|
|
47
|
+
'isCurrent': boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Is this a draft policy version?
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof PolicyVersionClass
|
|
52
|
+
*/
|
|
53
|
+
'isDraft': boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Policy version revision status
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PolicyVersionClass
|
|
58
|
+
*/
|
|
59
|
+
'revisionStatus': string;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyVersionClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was updated.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PolicyVersionClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PolicyVersionClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PolicyVersionClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
}
|
|
85
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 PremiumFormulaClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PremiumFormulaClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PremiumFormulaClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier referencing the product version.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof PremiumFormulaClass
|
|
33
|
+
*/
|
|
34
|
+
'productVersionId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Premium group name.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PremiumFormulaClass
|
|
39
|
+
*/
|
|
40
|
+
'group': string;
|
|
41
|
+
/**
|
|
42
|
+
* Premium name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PremiumFormulaClass
|
|
45
|
+
*/
|
|
46
|
+
'name': string;
|
|
47
|
+
/**
|
|
48
|
+
* Premium expression.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PremiumFormulaClass
|
|
51
|
+
*/
|
|
52
|
+
'expression': string;
|
|
53
|
+
/**
|
|
54
|
+
* Type of Premium that is based on time.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PremiumFormulaClass
|
|
57
|
+
*/
|
|
58
|
+
'type': string;
|
|
59
|
+
/**
|
|
60
|
+
* This is unit of Premium. Premium units are determined based on oneTimePayment, day, week, month and year.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PremiumFormulaClass
|
|
63
|
+
*/
|
|
64
|
+
'unit': string;
|
|
65
|
+
/**
|
|
66
|
+
* Type of Premium item.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PremiumFormulaClass
|
|
69
|
+
*/
|
|
70
|
+
'itemType'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Visibility of Premium item.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PremiumFormulaClass
|
|
75
|
+
*/
|
|
76
|
+
'visibility'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Name of the variable this Premium item value is referenced by in the other items formulas.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PremiumFormulaClass
|
|
81
|
+
*/
|
|
82
|
+
'variableName'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* order index for the Premium item, used to define the order the items are calculated in.
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof PremiumFormulaClass
|
|
87
|
+
*/
|
|
88
|
+
'order': number;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was created.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PremiumFormulaClass
|
|
93
|
+
*/
|
|
94
|
+
'createdAt': string;
|
|
95
|
+
/**
|
|
96
|
+
* Time at which the object was updated.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof PremiumFormulaClass
|
|
99
|
+
*/
|
|
100
|
+
'updatedAt': string;
|
|
101
|
+
/**
|
|
102
|
+
* Identifier of the user who created the record.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PremiumFormulaClass
|
|
105
|
+
*/
|
|
106
|
+
'createdBy': string;
|
|
107
|
+
/**
|
|
108
|
+
* Identifier of the user who last updated the record.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof PremiumFormulaClass
|
|
111
|
+
*/
|
|
112
|
+
'updatedBy': string;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 PremiumOverrideDto
|
|
21
|
+
*/
|
|
22
|
+
export interface PremiumOverrideDto {
|
|
23
|
+
/**
|
|
24
|
+
* Name of Premium.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PremiumOverrideDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Type of Premium that is based on time.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PremiumOverrideDto
|
|
33
|
+
*/
|
|
34
|
+
'type': PremiumOverrideDtoTypeEnum;
|
|
35
|
+
/**
|
|
36
|
+
* This is unit of Premium. Premium units are determined based on oneTimePayment, day, week, month and year.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PremiumOverrideDto
|
|
39
|
+
*/
|
|
40
|
+
'unit': PremiumOverrideDtoUnitEnum;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof PremiumOverrideDto
|
|
45
|
+
*/
|
|
46
|
+
'netPremium': number;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const PremiumOverrideDtoTypeEnum = {
|
|
50
|
+
Time: 'time'
|
|
51
|
+
} as const;
|
|
52
|
+
|
|
53
|
+
export type PremiumOverrideDtoTypeEnum = typeof PremiumOverrideDtoTypeEnum[keyof typeof PremiumOverrideDtoTypeEnum];
|
|
54
|
+
export const PremiumOverrideDtoUnitEnum = {
|
|
55
|
+
Day: 'day',
|
|
56
|
+
Week: 'week',
|
|
57
|
+
Month: 'month',
|
|
58
|
+
Quarter: 'quarter',
|
|
59
|
+
Year: 'year',
|
|
60
|
+
OneTimePayment: 'oneTimePayment'
|
|
61
|
+
} as const;
|
|
62
|
+
|
|
63
|
+
export type PremiumOverrideDtoUnitEnum = typeof PremiumOverrideDtoUnitEnum[keyof typeof PremiumOverrideDtoUnitEnum];
|
|
64
|
+
|
|
65
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 { PremiumOverrideDto } from './premium-override-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PremiumOverrideRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface PremiumOverrideRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Premium Override.
|
|
26
|
+
* @type {Array<PremiumOverrideDto>}
|
|
27
|
+
* @memberof PremiumOverrideRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'premiumOverrides': Array<PremiumOverrideDto>;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 { InsuredObjectTypeClass } from './insured-object-type-class';
|
|
17
|
+
import { ProductVersionClass } from './product-version-class';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface ProductClass
|
|
23
|
+
*/
|
|
24
|
+
export interface ProductClass {
|
|
25
|
+
/**
|
|
26
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ProductClass
|
|
29
|
+
*/
|
|
30
|
+
'id': number;
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier for the object.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ProductClass
|
|
35
|
+
*/
|
|
36
|
+
'code': string;
|
|
37
|
+
/**
|
|
38
|
+
* Product\'s name.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProductClass
|
|
41
|
+
*/
|
|
42
|
+
'name': string;
|
|
43
|
+
/**
|
|
44
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ProductClass
|
|
47
|
+
*/
|
|
48
|
+
'slug': string;
|
|
49
|
+
/**
|
|
50
|
+
* Default language of the product.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof ProductClass
|
|
53
|
+
*/
|
|
54
|
+
'defaultLanguage': string;
|
|
55
|
+
/**
|
|
56
|
+
* Insured object types covered under product.
|
|
57
|
+
* @type {Array<InsuredObjectTypeClass>}
|
|
58
|
+
* @memberof ProductClass
|
|
59
|
+
*/
|
|
60
|
+
'insuredObjectTypes': Array<InsuredObjectTypeClass>;
|
|
61
|
+
/**
|
|
62
|
+
* Contract duration in days.
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof ProductClass
|
|
65
|
+
*/
|
|
66
|
+
'contractDurationDays': number;
|
|
67
|
+
/**
|
|
68
|
+
* Product versions.
|
|
69
|
+
* @type {Array<ProductVersionClass>}
|
|
70
|
+
* @memberof ProductClass
|
|
71
|
+
*/
|
|
72
|
+
'versions': Array<ProductVersionClass>;
|
|
73
|
+
/**
|
|
74
|
+
* Time at which the object was created.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof ProductClass
|
|
77
|
+
*/
|
|
78
|
+
'createdAt': string;
|
|
79
|
+
/**
|
|
80
|
+
* Time at which the object was updated.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof ProductClass
|
|
83
|
+
*/
|
|
84
|
+
'updatedAt': string;
|
|
85
|
+
/**
|
|
86
|
+
* Identifier of the user who created the record.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof ProductClass
|
|
89
|
+
*/
|
|
90
|
+
'createdBy': string;
|
|
91
|
+
/**
|
|
92
|
+
* Identifier of the user who last updated the record.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof ProductClass
|
|
95
|
+
*/
|
|
96
|
+
'updatedBy': string;
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 ProductVersionClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ProductVersionClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ProductVersionClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier referencing the product.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof ProductVersionClass
|
|
33
|
+
*/
|
|
34
|
+
'productId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Product version description.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ProductVersionClass
|
|
39
|
+
*/
|
|
40
|
+
'description': string;
|
|
41
|
+
/**
|
|
42
|
+
* Product version status.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ProductVersionClass
|
|
45
|
+
*/
|
|
46
|
+
'status': ProductVersionClassStatusEnum;
|
|
47
|
+
/**
|
|
48
|
+
* Time at which the object was created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ProductVersionClass
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was updated.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ProductVersionClass
|
|
57
|
+
*/
|
|
58
|
+
'updatedAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Identifier of the user who created the record.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ProductVersionClass
|
|
63
|
+
*/
|
|
64
|
+
'createdBy': string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the user who last updated the record.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ProductVersionClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedBy': string;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export const ProductVersionClassStatusEnum = {
|
|
74
|
+
Draft: 'draft',
|
|
75
|
+
Active: 'active',
|
|
76
|
+
Passive: 'passive',
|
|
77
|
+
Archived: 'archived'
|
|
78
|
+
} as const;
|
|
79
|
+
|
|
80
|
+
export type ProductVersionClassStatusEnum = typeof ProductVersionClassStatusEnum[keyof typeof ProductVersionClassStatusEnum];
|
|
81
|
+
|
|
82
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL PartnerPortal
|
|
5
|
+
* The EMIL PartnerPortal 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 SepaDto
|
|
21
|
+
*/
|
|
22
|
+
export interface SepaDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SepaDto
|
|
27
|
+
*/
|
|
28
|
+
'iban': string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SepaDto
|
|
33
|
+
*/
|
|
34
|
+
'holderName'?: string;
|
|
35
|
+
}
|
|
36
|
+
|