@emilgroup/insurance-sdk-node 1.76.0 → 1.76.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 +14 -4
- package/README.md +2 -2
- package/api/booking-funnels-api.ts +31 -31
- package/api/commission-agreement-items-api.ts +4 -4
- package/api/policies-api.ts +32 -32
- package/api/product-fields-api.ts +16 -16
- package/api/status-transition-rules-api.ts +31 -31
- package/dist/api/booking-funnels-api.d.ts +18 -18
- package/dist/api/booking-funnels-api.js +24 -24
- package/dist/api/commission-agreement-items-api.d.ts +4 -4
- package/dist/api/commission-agreement-items-api.js +3 -3
- package/dist/api/policies-api.d.ts +18 -18
- package/dist/api/policies-api.js +24 -24
- package/dist/api/product-fields-api.d.ts +9 -9
- package/dist/api/product-fields-api.js +12 -12
- package/dist/api/status-transition-rules-api.d.ts +18 -18
- package/dist/api/status-transition-rules-api.js +24 -24
- package/dist/models/create-draft-policy-request-dto.d.ts +6 -0
- package/dist/models/create-product-field-request-dto.d.ts +22 -0
- package/dist/models/create-product-field-request-dto.js +9 -1
- package/dist/models/create-product-version-request-dto.d.ts +30 -0
- package/dist/models/{patch-booking-funnel-request-dto.d.ts → grpc-patch-booking-funnel-request-dto.d.ts} +10 -10
- package/dist/models/grpc-patch-draft-policy-request-dto.d.ts +76 -0
- package/dist/models/{patch-draft-policy-request-dto.js → grpc-patch-draft-policy-request-dto.js} +2 -2
- package/dist/models/grpc-patch-status-transition-rule-request-dto.d.ts +53 -0
- package/dist/models/{update-status-transition-rule-request-dto.js → grpc-patch-status-transition-rule-request-dto.js} +2 -2
- package/dist/models/{update-booking-funnel-request-dto.d.ts → grpc-update-booking-funnel-request-dto.d.ts} +10 -10
- package/dist/models/grpc-update-booking-funnel-request-dto.js +15 -0
- package/dist/models/grpc-update-status-transition-rule-request-dto.d.ts +53 -0
- package/dist/models/grpc-update-status-transition-rule-request-dto.js +20 -0
- package/dist/models/index.d.ts +14 -4
- package/dist/models/index.js +14 -4
- package/dist/models/patch-status-transition-rule-request-dto.d.ts +4 -10
- package/dist/models/product-field-class.d.ts +34 -0
- package/dist/models/product-field-class.js +9 -0
- package/dist/models/rest-create-draft-policy-request-dto.d.ts +70 -0
- package/dist/models/rest-create-draft-policy-request-dto.js +23 -0
- package/dist/models/rest-create-status-transition-rule-request-dto.d.ts +47 -0
- package/dist/models/rest-create-status-transition-rule-request-dto.js +20 -0
- package/dist/models/rest-patch-booking-funnel-request-dto.d.ts +60 -0
- package/dist/models/rest-patch-booking-funnel-request-dto.js +15 -0
- package/dist/models/{patch-draft-policy-request-dto.d.ts → rest-patch-draft-policy-request-dto.d.ts} +12 -12
- package/dist/models/rest-patch-draft-policy-request-dto.js +23 -0
- package/dist/models/rest-update-booking-funnel-request-dto.d.ts +60 -0
- package/dist/models/rest-update-booking-funnel-request-dto.js +15 -0
- package/dist/models/rest-update-product-field-request-dto.d.ts +171 -0
- package/dist/models/rest-update-product-field-request-dto.js +28 -0
- package/dist/models/rest-update-status-transition-rule-request-dto.d.ts +47 -0
- package/dist/models/rest-update-status-transition-rule-request-dto.js +20 -0
- package/dist/models/shared-delete-request-dto.d.ts +24 -0
- package/dist/models/shared-delete-request-dto.js +15 -0
- package/dist/models/shared-product-field-class.d.ts +34 -0
- package/dist/models/shared-product-field-class.js +9 -0
- package/dist/models/update-product-field-request-dto.d.ts +22 -0
- package/dist/models/update-product-field-request-dto.js +9 -1
- package/models/create-draft-policy-request-dto.ts +6 -0
- package/models/create-product-field-request-dto.ts +24 -0
- package/models/create-product-version-request-dto.ts +36 -0
- package/models/{patch-booking-funnel-request-dto.ts → grpc-patch-booking-funnel-request-dto.ts} +10 -10
- package/models/grpc-patch-draft-policy-request-dto.ts +85 -0
- package/models/grpc-patch-status-transition-rule-request-dto.ts +62 -0
- package/models/{update-booking-funnel-request-dto.ts → grpc-update-booking-funnel-request-dto.ts} +10 -10
- package/models/{update-status-transition-rule-request-dto.ts → grpc-update-status-transition-rule-request-dto.ts} +10 -10
- package/models/index.ts +14 -4
- package/models/patch-status-transition-rule-request-dto.ts +4 -10
- package/models/product-field-class.ts +38 -0
- package/models/rest-create-draft-policy-request-dto.ts +79 -0
- package/models/rest-create-status-transition-rule-request-dto.ts +56 -0
- package/models/rest-patch-booking-funnel-request-dto.ts +66 -0
- package/models/{patch-draft-policy-request-dto.ts → rest-patch-draft-policy-request-dto.ts} +12 -12
- package/models/rest-update-booking-funnel-request-dto.ts +66 -0
- package/models/rest-update-product-field-request-dto.ts +182 -0
- package/models/rest-update-status-transition-rule-request-dto.ts +56 -0
- package/models/shared-delete-request-dto.ts +30 -0
- package/models/shared-product-field-class.ts +38 -0
- package/models/update-product-field-request-dto.ts +24 -0
- package/package.json +1 -1
- package/dist/models/update-status-transition-rule-request-dto.d.ts +0 -53
- /package/dist/models/{patch-booking-funnel-request-dto.js → create-product-version-request-dto.js} +0 -0
- /package/dist/models/{update-booking-funnel-request-dto.js → grpc-patch-booking-funnel-request-dto.js} +0 -0
package/dist/models/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export * from './create-product-field-request-dto';
|
|
|
53
53
|
export * from './create-product-field-response-class';
|
|
54
54
|
export * from './create-product-request-dto';
|
|
55
55
|
export * from './create-product-response-class';
|
|
56
|
+
export * from './create-product-version-request-dto';
|
|
56
57
|
export * from './create-status-transition-rule-request-dto';
|
|
57
58
|
export * from './create-status-transition-rule-response-class';
|
|
58
59
|
export * from './csv-product-factor-dto';
|
|
@@ -101,6 +102,11 @@ export * from './get-status-transition-rule-response-class';
|
|
|
101
102
|
export * from './grouped-product-factor-class';
|
|
102
103
|
export * from './grouped-product-factor-value-class';
|
|
103
104
|
export * from './grouped-product-factors-response-class';
|
|
105
|
+
export * from './grpc-patch-booking-funnel-request-dto';
|
|
106
|
+
export * from './grpc-patch-draft-policy-request-dto';
|
|
107
|
+
export * from './grpc-patch-status-transition-rule-request-dto';
|
|
108
|
+
export * from './grpc-update-booking-funnel-request-dto';
|
|
109
|
+
export * from './grpc-update-status-transition-rule-request-dto';
|
|
104
110
|
export * from './inline-response200';
|
|
105
111
|
export * from './inline-response503';
|
|
106
112
|
export * from './insured-object-class';
|
|
@@ -145,9 +151,7 @@ export * from './omit-type-class';
|
|
|
145
151
|
export * from './partner-class';
|
|
146
152
|
export * from './partner-link-class';
|
|
147
153
|
export * from './partner-role-class';
|
|
148
|
-
export * from './patch-booking-funnel-request-dto';
|
|
149
154
|
export * from './patch-booking-funnel-response-class';
|
|
150
|
-
export * from './patch-draft-policy-request-dto';
|
|
151
155
|
export * from './patch-lead-request-dto';
|
|
152
156
|
export * from './patch-lead-response-class';
|
|
153
157
|
export * from './patch-policy-request-dto';
|
|
@@ -173,8 +177,16 @@ export * from './product-field-class';
|
|
|
173
177
|
export * from './product-field-type-class';
|
|
174
178
|
export * from './product-version-class';
|
|
175
179
|
export * from './rest-clone-lead-account-request-dto';
|
|
180
|
+
export * from './rest-create-draft-policy-request-dto';
|
|
181
|
+
export * from './rest-create-status-transition-rule-request-dto';
|
|
182
|
+
export * from './rest-patch-booking-funnel-request-dto';
|
|
183
|
+
export * from './rest-patch-draft-policy-request-dto';
|
|
184
|
+
export * from './rest-update-booking-funnel-request-dto';
|
|
185
|
+
export * from './rest-update-product-field-request-dto';
|
|
186
|
+
export * from './rest-update-status-transition-rule-request-dto';
|
|
176
187
|
export * from './sepa-dto';
|
|
177
188
|
export * from './shared-create-lead-policy-request-dto';
|
|
189
|
+
export * from './shared-delete-request-dto';
|
|
178
190
|
export * from './shared-invoice-class';
|
|
179
191
|
export * from './shared-lead-policy-object-dto';
|
|
180
192
|
export * from './shared-product-field-class';
|
|
@@ -192,7 +204,6 @@ export * from './terminate-policy-request-dto';
|
|
|
192
204
|
export * from './terminate-policy-response-class';
|
|
193
205
|
export * from './timeslice-class';
|
|
194
206
|
export * from './unlink-partner-response-class';
|
|
195
|
-
export * from './update-booking-funnel-request-dto';
|
|
196
207
|
export * from './update-booking-funnel-response-class';
|
|
197
208
|
export * from './update-commission-agreement-item-request-dto';
|
|
198
209
|
export * from './update-commission-agreement-item-response-class';
|
|
@@ -225,7 +236,6 @@ export * from './update-product-request-dto';
|
|
|
225
236
|
export * from './update-product-response-class';
|
|
226
237
|
export * from './update-product-version-request-dto';
|
|
227
238
|
export * from './update-product-version-response-class';
|
|
228
|
-
export * from './update-status-transition-rule-request-dto';
|
|
229
239
|
export * from './update-status-transition-rule-response-class';
|
|
230
240
|
export * from './uploaded-document-dto';
|
|
231
241
|
export * from './validate-product-factors-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -69,6 +69,7 @@ __exportStar(require("./create-product-field-request-dto"), exports);
|
|
|
69
69
|
__exportStar(require("./create-product-field-response-class"), exports);
|
|
70
70
|
__exportStar(require("./create-product-request-dto"), exports);
|
|
71
71
|
__exportStar(require("./create-product-response-class"), exports);
|
|
72
|
+
__exportStar(require("./create-product-version-request-dto"), exports);
|
|
72
73
|
__exportStar(require("./create-status-transition-rule-request-dto"), exports);
|
|
73
74
|
__exportStar(require("./create-status-transition-rule-response-class"), exports);
|
|
74
75
|
__exportStar(require("./csv-product-factor-dto"), exports);
|
|
@@ -117,6 +118,11 @@ __exportStar(require("./get-status-transition-rule-response-class"), exports);
|
|
|
117
118
|
__exportStar(require("./grouped-product-factor-class"), exports);
|
|
118
119
|
__exportStar(require("./grouped-product-factor-value-class"), exports);
|
|
119
120
|
__exportStar(require("./grouped-product-factors-response-class"), exports);
|
|
121
|
+
__exportStar(require("./grpc-patch-booking-funnel-request-dto"), exports);
|
|
122
|
+
__exportStar(require("./grpc-patch-draft-policy-request-dto"), exports);
|
|
123
|
+
__exportStar(require("./grpc-patch-status-transition-rule-request-dto"), exports);
|
|
124
|
+
__exportStar(require("./grpc-update-booking-funnel-request-dto"), exports);
|
|
125
|
+
__exportStar(require("./grpc-update-status-transition-rule-request-dto"), exports);
|
|
120
126
|
__exportStar(require("./inline-response200"), exports);
|
|
121
127
|
__exportStar(require("./inline-response503"), exports);
|
|
122
128
|
__exportStar(require("./insured-object-class"), exports);
|
|
@@ -161,9 +167,7 @@ __exportStar(require("./omit-type-class"), exports);
|
|
|
161
167
|
__exportStar(require("./partner-class"), exports);
|
|
162
168
|
__exportStar(require("./partner-link-class"), exports);
|
|
163
169
|
__exportStar(require("./partner-role-class"), exports);
|
|
164
|
-
__exportStar(require("./patch-booking-funnel-request-dto"), exports);
|
|
165
170
|
__exportStar(require("./patch-booking-funnel-response-class"), exports);
|
|
166
|
-
__exportStar(require("./patch-draft-policy-request-dto"), exports);
|
|
167
171
|
__exportStar(require("./patch-lead-request-dto"), exports);
|
|
168
172
|
__exportStar(require("./patch-lead-response-class"), exports);
|
|
169
173
|
__exportStar(require("./patch-policy-request-dto"), exports);
|
|
@@ -189,8 +193,16 @@ __exportStar(require("./product-field-class"), exports);
|
|
|
189
193
|
__exportStar(require("./product-field-type-class"), exports);
|
|
190
194
|
__exportStar(require("./product-version-class"), exports);
|
|
191
195
|
__exportStar(require("./rest-clone-lead-account-request-dto"), exports);
|
|
196
|
+
__exportStar(require("./rest-create-draft-policy-request-dto"), exports);
|
|
197
|
+
__exportStar(require("./rest-create-status-transition-rule-request-dto"), exports);
|
|
198
|
+
__exportStar(require("./rest-patch-booking-funnel-request-dto"), exports);
|
|
199
|
+
__exportStar(require("./rest-patch-draft-policy-request-dto"), exports);
|
|
200
|
+
__exportStar(require("./rest-update-booking-funnel-request-dto"), exports);
|
|
201
|
+
__exportStar(require("./rest-update-product-field-request-dto"), exports);
|
|
202
|
+
__exportStar(require("./rest-update-status-transition-rule-request-dto"), exports);
|
|
192
203
|
__exportStar(require("./sepa-dto"), exports);
|
|
193
204
|
__exportStar(require("./shared-create-lead-policy-request-dto"), exports);
|
|
205
|
+
__exportStar(require("./shared-delete-request-dto"), exports);
|
|
194
206
|
__exportStar(require("./shared-invoice-class"), exports);
|
|
195
207
|
__exportStar(require("./shared-lead-policy-object-dto"), exports);
|
|
196
208
|
__exportStar(require("./shared-product-field-class"), exports);
|
|
@@ -208,7 +220,6 @@ __exportStar(require("./terminate-policy-request-dto"), exports);
|
|
|
208
220
|
__exportStar(require("./terminate-policy-response-class"), exports);
|
|
209
221
|
__exportStar(require("./timeslice-class"), exports);
|
|
210
222
|
__exportStar(require("./unlink-partner-response-class"), exports);
|
|
211
|
-
__exportStar(require("./update-booking-funnel-request-dto"), exports);
|
|
212
223
|
__exportStar(require("./update-booking-funnel-response-class"), exports);
|
|
213
224
|
__exportStar(require("./update-commission-agreement-item-request-dto"), exports);
|
|
214
225
|
__exportStar(require("./update-commission-agreement-item-response-class"), exports);
|
|
@@ -241,7 +252,6 @@ __exportStar(require("./update-product-request-dto"), exports);
|
|
|
241
252
|
__exportStar(require("./update-product-response-class"), exports);
|
|
242
253
|
__exportStar(require("./update-product-version-request-dto"), exports);
|
|
243
254
|
__exportStar(require("./update-product-version-response-class"), exports);
|
|
244
|
-
__exportStar(require("./update-status-transition-rule-request-dto"), exports);
|
|
245
255
|
__exportStar(require("./update-status-transition-rule-response-class"), exports);
|
|
246
256
|
__exportStar(require("./uploaded-document-dto"), exports);
|
|
247
257
|
__exportStar(require("./validate-product-factors-request-dto"), exports);
|
|
@@ -16,31 +16,25 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface PatchStatusTransitionRuleRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof PatchStatusTransitionRuleRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'code': string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
19
|
+
* Entity type where the rule applies to.
|
|
26
20
|
* @type {string}
|
|
27
21
|
* @memberof PatchStatusTransitionRuleRequestDto
|
|
28
22
|
*/
|
|
29
23
|
'entityType'?: PatchStatusTransitionRuleRequestDtoEntityTypeEnum;
|
|
30
24
|
/**
|
|
31
|
-
*
|
|
25
|
+
* Current status of the entity.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof PatchStatusTransitionRuleRequestDto
|
|
34
28
|
*/
|
|
35
29
|
'currentStatus'?: string;
|
|
36
30
|
/**
|
|
37
|
-
*
|
|
31
|
+
* Array of next statuses of the entity.
|
|
38
32
|
* @type {Array<string>}
|
|
39
33
|
* @memberof PatchStatusTransitionRuleRequestDto
|
|
40
34
|
*/
|
|
41
35
|
'nextStatuses'?: Array<string>;
|
|
42
36
|
/**
|
|
43
|
-
*
|
|
37
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
44
38
|
* @type {string}
|
|
45
39
|
* @memberof PatchStatusTransitionRuleRequestDto
|
|
46
40
|
*/
|
|
@@ -129,6 +129,30 @@ export interface ProductFieldClass {
|
|
|
129
129
|
* @memberof ProductFieldClass
|
|
130
130
|
*/
|
|
131
131
|
'metadata'?: object;
|
|
132
|
+
/**
|
|
133
|
+
* Is this field is used the premium calculation?
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof ProductFieldClass
|
|
136
|
+
*/
|
|
137
|
+
'usedInPremiumCalculation': boolean;
|
|
138
|
+
/**
|
|
139
|
+
* Overrides automatic dependency check result (if this field is used in the premium calculation or not).
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof ProductFieldClass
|
|
142
|
+
*/
|
|
143
|
+
'usedInPremiumCalculationOverride': ProductFieldClassUsedInPremiumCalculationOverrideEnum;
|
|
144
|
+
/**
|
|
145
|
+
* Is this field is used the product field calculation?
|
|
146
|
+
* @type {boolean}
|
|
147
|
+
* @memberof ProductFieldClass
|
|
148
|
+
*/
|
|
149
|
+
'usedInFieldCalculation': boolean;
|
|
150
|
+
/**
|
|
151
|
+
* Overrides automatic dependency check result (if this field is used in the product field calculation or not).
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof ProductFieldClass
|
|
154
|
+
*/
|
|
155
|
+
'usedInFieldCalculationOverride': ProductFieldClassUsedInFieldCalculationOverrideEnum;
|
|
132
156
|
/**
|
|
133
157
|
* Time at which the object was created.
|
|
134
158
|
* @type {string}
|
|
@@ -154,3 +178,13 @@ export interface ProductFieldClass {
|
|
|
154
178
|
*/
|
|
155
179
|
'updatedBy': string;
|
|
156
180
|
}
|
|
181
|
+
export declare const ProductFieldClassUsedInPremiumCalculationOverrideEnum: {
|
|
182
|
+
readonly Used: "used";
|
|
183
|
+
readonly NotUsed: "not_used";
|
|
184
|
+
};
|
|
185
|
+
export type ProductFieldClassUsedInPremiumCalculationOverrideEnum = typeof ProductFieldClassUsedInPremiumCalculationOverrideEnum[keyof typeof ProductFieldClassUsedInPremiumCalculationOverrideEnum];
|
|
186
|
+
export declare const ProductFieldClassUsedInFieldCalculationOverrideEnum: {
|
|
187
|
+
readonly Used: "used";
|
|
188
|
+
readonly NotUsed: "not_used";
|
|
189
|
+
};
|
|
190
|
+
export type ProductFieldClassUsedInFieldCalculationOverrideEnum = typeof ProductFieldClassUsedInFieldCalculationOverrideEnum[keyof typeof ProductFieldClassUsedInFieldCalculationOverrideEnum];
|
|
@@ -13,3 +13,12 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProductFieldClassUsedInFieldCalculationOverrideEnum = exports.ProductFieldClassUsedInPremiumCalculationOverrideEnum = void 0;
|
|
17
|
+
exports.ProductFieldClassUsedInPremiumCalculationOverrideEnum = {
|
|
18
|
+
Used: 'used',
|
|
19
|
+
NotUsed: 'not_used'
|
|
20
|
+
};
|
|
21
|
+
exports.ProductFieldClassUsedInFieldCalculationOverrideEnum = {
|
|
22
|
+
Used: 'used',
|
|
23
|
+
NotUsed: 'not_used'
|
|
24
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { PolicyObjectDto } from './policy-object-dto';
|
|
13
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface RestCreateDraftPolicyRequestDto
|
|
18
|
+
*/
|
|
19
|
+
export interface RestCreateDraftPolicyRequestDto {
|
|
20
|
+
/**
|
|
21
|
+
* Policy objects
|
|
22
|
+
* @type {Array<PolicyObjectDto>}
|
|
23
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
24
|
+
*/
|
|
25
|
+
'policyObjects': Array<PolicyObjectDto>;
|
|
26
|
+
/**
|
|
27
|
+
* Date from which the policy should be updated. This will create a new timeline starting from this date.
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
30
|
+
*/
|
|
31
|
+
'from': string;
|
|
32
|
+
/**
|
|
33
|
+
* Date to which the policy should be updated. This will create a new timeline finishing at this date.
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
36
|
+
*/
|
|
37
|
+
'to'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Policy revision status.
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
42
|
+
*/
|
|
43
|
+
'revisionStatus': RestCreateDraftPolicyRequestDtoRevisionStatusEnum;
|
|
44
|
+
/**
|
|
45
|
+
* Premium Override
|
|
46
|
+
* @type {PremiumOverrideRequestDto}
|
|
47
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
48
|
+
*/
|
|
49
|
+
'premiumOverride'?: PremiumOverrideRequestDto;
|
|
50
|
+
/**
|
|
51
|
+
* Unique identifier of the lead that this object belongs to.
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
54
|
+
*/
|
|
55
|
+
'leadCode'?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Unique identifier of the policy that this object belongs to.
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof RestCreateDraftPolicyRequestDto
|
|
60
|
+
*/
|
|
61
|
+
'policyNumber'?: string;
|
|
62
|
+
}
|
|
63
|
+
export declare const RestCreateDraftPolicyRequestDtoRevisionStatusEnum: {
|
|
64
|
+
readonly Created: "CREATED";
|
|
65
|
+
readonly InReview: "IN_REVIEW";
|
|
66
|
+
readonly Reviewed: "REVIEWED";
|
|
67
|
+
readonly Rejected: "REJECTED";
|
|
68
|
+
readonly Approved: "APPROVED";
|
|
69
|
+
};
|
|
70
|
+
export type RestCreateDraftPolicyRequestDtoRevisionStatusEnum = typeof RestCreateDraftPolicyRequestDtoRevisionStatusEnum[keyof typeof RestCreateDraftPolicyRequestDtoRevisionStatusEnum];
|
|
@@ -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.RestCreateDraftPolicyRequestDtoRevisionStatusEnum = void 0;
|
|
17
|
+
exports.RestCreateDraftPolicyRequestDtoRevisionStatusEnum = {
|
|
18
|
+
Created: 'CREATED',
|
|
19
|
+
InReview: 'IN_REVIEW',
|
|
20
|
+
Reviewed: 'REVIEWED',
|
|
21
|
+
Rejected: 'REJECTED',
|
|
22
|
+
Approved: 'APPROVED'
|
|
23
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
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 RestCreateStatusTransitionRuleRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface RestCreateStatusTransitionRuleRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Entity type where the rule applies to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof RestCreateStatusTransitionRuleRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'entityType': RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* Current status of the entity.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RestCreateStatusTransitionRuleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'currentStatus': string;
|
|
30
|
+
/**
|
|
31
|
+
* Array of next statuses of the entity.
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof RestCreateStatusTransitionRuleRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'nextStatuses': Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof RestCreateStatusTransitionRuleRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'productSlug': string;
|
|
42
|
+
}
|
|
43
|
+
export declare const RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum: {
|
|
44
|
+
readonly Lead: "lead";
|
|
45
|
+
readonly Policy: "policy";
|
|
46
|
+
};
|
|
47
|
+
export type RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum = typeof RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum[keyof typeof RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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.RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum = void 0;
|
|
17
|
+
exports.RestCreateStatusTransitionRuleRequestDtoEntityTypeEnum = {
|
|
18
|
+
Lead: 'lead',
|
|
19
|
+
Policy: 'policy'
|
|
20
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RestPatchBookingFunnelRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface RestPatchBookingFunnelRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Parent Booking funnel ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'parentId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Booking funnel name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Code snippet to load the booking funnel.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'jsCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Steps configuration for the booking funnel.
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'stepsConfig'?: object;
|
|
42
|
+
/**
|
|
43
|
+
* Custom css for the booking funnel.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'css'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* URL to fech the logo for the booking funnel.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'logoPath'?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof RestPatchBookingFunnelRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'shouldShowOnApplicationsPage'?: boolean;
|
|
60
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/{patch-draft-policy-request-dto.d.ts → rest-patch-draft-policy-request-dto.d.ts}
RENAMED
|
@@ -14,57 +14,57 @@ import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
|
14
14
|
/**
|
|
15
15
|
*
|
|
16
16
|
* @export
|
|
17
|
-
* @interface
|
|
17
|
+
* @interface RestPatchDraftPolicyRequestDto
|
|
18
18
|
*/
|
|
19
|
-
export interface
|
|
19
|
+
export interface RestPatchDraftPolicyRequestDto {
|
|
20
20
|
/**
|
|
21
21
|
* Policy objects
|
|
22
22
|
* @type {Array<PolicyObjectDto>}
|
|
23
|
-
* @memberof
|
|
23
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
24
24
|
*/
|
|
25
25
|
'policyObjects': Array<PolicyObjectDto>;
|
|
26
26
|
/**
|
|
27
27
|
* Date from which the policy should be updated. This will create a new timeline starting from this date.
|
|
28
28
|
* @type {string}
|
|
29
|
-
* @memberof
|
|
29
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
30
30
|
*/
|
|
31
31
|
'from'?: string;
|
|
32
32
|
/**
|
|
33
33
|
* Date to which the policy should be updated. This will create a new timeline finishing at this date.
|
|
34
34
|
* @type {string}
|
|
35
|
-
* @memberof
|
|
35
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
36
36
|
*/
|
|
37
37
|
'to'?: string;
|
|
38
38
|
/**
|
|
39
39
|
* Policy revision status.
|
|
40
40
|
* @type {string}
|
|
41
|
-
* @memberof
|
|
41
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
42
42
|
*/
|
|
43
|
-
'revisionStatus':
|
|
43
|
+
'revisionStatus': RestPatchDraftPolicyRequestDtoRevisionStatusEnum;
|
|
44
44
|
/**
|
|
45
45
|
* Premium Override
|
|
46
46
|
* @type {PremiumOverrideRequestDto}
|
|
47
|
-
* @memberof
|
|
47
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
48
48
|
*/
|
|
49
49
|
'premiumOverride'?: PremiumOverrideRequestDto;
|
|
50
50
|
/**
|
|
51
51
|
* Unique identifier of the lead that this object belongs to.
|
|
52
52
|
* @type {string}
|
|
53
|
-
* @memberof
|
|
53
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
54
54
|
*/
|
|
55
55
|
'leadCode'?: string;
|
|
56
56
|
/**
|
|
57
57
|
* Unique identifier of the policy that this object belongs to.
|
|
58
58
|
* @type {string}
|
|
59
|
-
* @memberof
|
|
59
|
+
* @memberof RestPatchDraftPolicyRequestDto
|
|
60
60
|
*/
|
|
61
61
|
'policyNumber'?: string;
|
|
62
62
|
}
|
|
63
|
-
export declare const
|
|
63
|
+
export declare const RestPatchDraftPolicyRequestDtoRevisionStatusEnum: {
|
|
64
64
|
readonly Created: "CREATED";
|
|
65
65
|
readonly InReview: "IN_REVIEW";
|
|
66
66
|
readonly Reviewed: "REVIEWED";
|
|
67
67
|
readonly Rejected: "REJECTED";
|
|
68
68
|
readonly Approved: "APPROVED";
|
|
69
69
|
};
|
|
70
|
-
export type
|
|
70
|
+
export type RestPatchDraftPolicyRequestDtoRevisionStatusEnum = typeof RestPatchDraftPolicyRequestDtoRevisionStatusEnum[keyof typeof RestPatchDraftPolicyRequestDtoRevisionStatusEnum];
|
|
@@ -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.RestPatchDraftPolicyRequestDtoRevisionStatusEnum = void 0;
|
|
17
|
+
exports.RestPatchDraftPolicyRequestDtoRevisionStatusEnum = {
|
|
18
|
+
Created: 'CREATED',
|
|
19
|
+
InReview: 'IN_REVIEW',
|
|
20
|
+
Reviewed: 'REVIEWED',
|
|
21
|
+
Rejected: 'REJECTED',
|
|
22
|
+
Approved: 'APPROVED'
|
|
23
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL InsuranceService
|
|
3
|
+
* The EMIL InsuranceService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface RestUpdateBookingFunnelRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface RestUpdateBookingFunnelRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Parent Booking funnel ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'parentId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Booking funnel name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Code snippet to load the booking funnel.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'jsCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Steps configuration for the booking funnel.
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'stepsConfig'?: object;
|
|
42
|
+
/**
|
|
43
|
+
* Custom css for the booking funnel.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'css'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* URL to fech the logo for the booking funnel.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'logoPath'?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof RestUpdateBookingFunnelRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'shouldShowOnApplicationsPage'?: boolean;
|
|
60
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL InsuranceService
|
|
6
|
+
* The EMIL InsuranceService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|