@emilgroup/insurance-sdk-node 1.60.0 → 1.62.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 +1 -0
- package/README.md +2 -2
- package/api/commission-agreement-items-api.ts +4 -4
- package/api/commission-agreement-versions-api.ts +4 -4
- package/api/commission-recipients-api.ts +4 -4
- package/api/policies-api.ts +29 -15
- package/api/products-api.ts +46 -56
- package/base.ts +7 -15
- package/dist/api/commission-agreement-items-api.d.ts +4 -4
- package/dist/api/commission-agreement-items-api.js +3 -3
- package/dist/api/commission-agreement-versions-api.d.ts +4 -4
- package/dist/api/commission-agreement-versions-api.js +3 -3
- package/dist/api/commission-recipients-api.d.ts +4 -4
- package/dist/api/commission-recipients-api.js +3 -3
- package/dist/api/policies-api.d.ts +21 -12
- package/dist/api/policies-api.js +15 -9
- package/dist/api/products-api.d.ts +39 -39
- package/dist/api/products-api.js +28 -37
- package/dist/base.d.ts +1 -3
- package/dist/base.js +20 -26
- package/dist/models/booking-funnel-class.d.ts +6 -0
- package/dist/models/create-booking-funnel-request-dto.d.ts +7 -1
- package/dist/models/create-lead-status-request-dto.d.ts +6 -0
- package/dist/models/create-partner-role-request-dto.d.ts +6 -0
- package/dist/models/get-policy-data-by-date-request-dto.d.ts +6 -0
- package/dist/models/get-product-request-dto.d.ts +3 -3
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/lead-class.d.ts +3 -3
- package/dist/models/lead-status-class.d.ts +6 -0
- package/dist/models/link-lead-partner-request-dto.d.ts +16 -4
- package/dist/models/link-partner-request-dto.d.ts +16 -4
- package/dist/models/omit-type-class.d.ts +84 -0
- package/dist/models/omit-type-class.js +15 -0
- package/dist/models/partner-role-class.d.ts +6 -0
- package/dist/models/update-lead-status-request-dto.d.ts +6 -0
- package/dist/models/update-partner-role-request-dto.d.ts +6 -0
- package/models/booking-funnel-class.ts +6 -0
- package/models/create-booking-funnel-request-dto.ts +7 -1
- package/models/create-lead-status-request-dto.ts +6 -0
- package/models/create-partner-role-request-dto.ts +6 -0
- package/models/get-policy-data-by-date-request-dto.ts +6 -0
- package/models/get-product-request-dto.ts +3 -3
- package/models/index.ts +1 -0
- package/models/lead-class.ts +3 -3
- package/models/lead-status-class.ts +6 -0
- package/models/link-lead-partner-request-dto.ts +16 -4
- package/models/link-partner-request-dto.ts +16 -4
- package/models/omit-type-class.ts +90 -0
- package/models/partner-role-class.ts +6 -0
- package/models/update-lead-status-request-dto.ts +6 -0
- package/models/update-partner-role-request-dto.ts +6 -0
- package/package.json +1 -1
|
@@ -45,6 +45,12 @@ export interface LeadStatusClass {
|
|
|
45
45
|
* @memberof LeadStatusClass
|
|
46
46
|
*/
|
|
47
47
|
'isDefault': boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Indicates if this status is locked for the lead, preventing updates while true.
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof LeadStatusClass
|
|
52
|
+
*/
|
|
53
|
+
'isLocked': boolean;
|
|
48
54
|
/**
|
|
49
55
|
* Identifier of the user who created the record.
|
|
50
56
|
* @type {string}
|
|
@@ -16,17 +16,29 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface LinkLeadPartnerRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* The code of the partner with which the lead will be linked.
|
|
19
|
+
* The code of the partner with which the lead will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred).
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof LinkLeadPartnerRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'partnerCode'
|
|
23
|
+
'partnerCode'?: string;
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
25
|
+
* The number of the partner with which the lead will be linked. Either this field or \'partnerCode\' must be passed (this is preferred).
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof LinkLeadPartnerRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'
|
|
29
|
+
'partnerNumber'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The code of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred).
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof LinkLeadPartnerRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerRoleCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The slug of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred).
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof LinkLeadPartnerRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'partnerRoleSlug'?: string;
|
|
30
42
|
/**
|
|
31
43
|
* The date of the start of linking with a partner.
|
|
32
44
|
* @type {string}
|
|
@@ -16,17 +16,29 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface LinkPartnerRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* The code of the partner with which the target entity will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred).
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof LinkPartnerRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'partnerCode'
|
|
23
|
+
'partnerCode'?: string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* The number of the partner with which the target entity will be linked. Either this field or \'partnerCode\' must be passed (this is preferred).
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof LinkPartnerRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'
|
|
29
|
+
'partnerNumber'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The code of role that the partner will have in the established link between the target entity and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred).
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof LinkPartnerRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'partnerRoleCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The slug of role that the partner will have in the established link between the target entity and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred).
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof LinkPartnerRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'partnerRoleSlug'?: string;
|
|
30
42
|
/**
|
|
31
43
|
* Unique identifier of the policy that this object belongs to. Either this or leadCode should be provided, but not both.
|
|
32
44
|
* @type {string}
|
|
@@ -0,0 +1,84 @@
|
|
|
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 OmitTypeClass
|
|
16
|
+
*/
|
|
17
|
+
export interface OmitTypeClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof OmitTypeClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the partner that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OmitTypeClass
|
|
28
|
+
*/
|
|
29
|
+
'partnerCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner role that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof OmitTypeClass
|
|
34
|
+
*/
|
|
35
|
+
'partnerRoleCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the policy that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof OmitTypeClass
|
|
40
|
+
*/
|
|
41
|
+
'policyCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique identifier of the lead that this object belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof OmitTypeClass
|
|
46
|
+
*/
|
|
47
|
+
'leadCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Date from which the partner should be linked.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof OmitTypeClass
|
|
52
|
+
*/
|
|
53
|
+
'startDate': string;
|
|
54
|
+
/**
|
|
55
|
+
* Date to which the partner should be linked.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof OmitTypeClass
|
|
58
|
+
*/
|
|
59
|
+
'endDate'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof OmitTypeClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was updated.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof OmitTypeClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof OmitTypeClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof OmitTypeClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
84
|
+
}
|
|
@@ -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 });
|
|
@@ -33,6 +33,12 @@ export interface PartnerRoleClass {
|
|
|
33
33
|
* @memberof PartnerRoleClass
|
|
34
34
|
*/
|
|
35
35
|
'name': 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 PartnerRoleClass
|
|
40
|
+
*/
|
|
41
|
+
'slug': string;
|
|
36
42
|
/**
|
|
37
43
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
38
44
|
* @type {string}
|
|
@@ -33,4 +33,10 @@ export interface UpdateLeadStatusRequestDto {
|
|
|
33
33
|
* @memberof UpdateLeadStatusRequestDto
|
|
34
34
|
*/
|
|
35
35
|
'isDefault'?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Indicates if this status is locked for the lead, preventing updates while true.
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof UpdateLeadStatusRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'isLocked'?: boolean;
|
|
36
42
|
}
|
|
@@ -21,6 +21,12 @@ export interface UpdatePartnerRoleRequestDto {
|
|
|
21
21
|
* @memberof UpdatePartnerRoleRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePartnerRoleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'slug': string;
|
|
24
30
|
/**
|
|
25
31
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
32
|
* @type {string}
|
|
@@ -74,6 +74,12 @@ export interface BookingFunnelClass {
|
|
|
74
74
|
* @memberof BookingFunnelClass
|
|
75
75
|
*/
|
|
76
76
|
'productSlug': string;
|
|
77
|
+
/**
|
|
78
|
+
* Product version ID.
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof BookingFunnelClass
|
|
81
|
+
*/
|
|
82
|
+
'productVersionId': number;
|
|
77
83
|
/**
|
|
78
84
|
* Time at which the object was created.
|
|
79
85
|
* @type {string}
|
|
@@ -57,7 +57,7 @@ export interface CreateBookingFunnelRequestDto {
|
|
|
57
57
|
*/
|
|
58
58
|
'css'?: string;
|
|
59
59
|
/**
|
|
60
|
-
* URL to
|
|
60
|
+
* URL to fetch the logo for the booking funnel.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof CreateBookingFunnelRequestDto
|
|
63
63
|
*/
|
|
@@ -68,6 +68,12 @@ export interface CreateBookingFunnelRequestDto {
|
|
|
68
68
|
* @memberof CreateBookingFunnelRequestDto
|
|
69
69
|
*/
|
|
70
70
|
'productSlug': string;
|
|
71
|
+
/**
|
|
72
|
+
* Product version id. Will default to the latest version if not specified.
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof CreateBookingFunnelRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'productVersionId'?: number;
|
|
71
77
|
/**
|
|
72
78
|
*
|
|
73
79
|
* @type {boolean}
|
|
@@ -38,5 +38,11 @@ export interface CreateLeadStatusRequestDto {
|
|
|
38
38
|
* @memberof CreateLeadStatusRequestDto
|
|
39
39
|
*/
|
|
40
40
|
'isDefault'?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Indicates if this status is locked for the lead, preventing updates while true.
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof CreateLeadStatusRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'isLocked'?: boolean;
|
|
41
47
|
}
|
|
42
48
|
|
|
@@ -26,6 +26,12 @@ export interface CreatePartnerRoleRequestDto {
|
|
|
26
26
|
* @memberof CreatePartnerRoleRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePartnerRoleRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug': string;
|
|
29
35
|
/**
|
|
30
36
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
37
|
* @type {string}
|
|
@@ -25,19 +25,19 @@ export interface GetProductRequestDto {
|
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof GetProductRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'id'
|
|
28
|
+
'id'?: number;
|
|
29
29
|
/**
|
|
30
30
|
* Unique identifier of the product that this object belongs to.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof GetProductRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'code'
|
|
34
|
+
'code'?: string;
|
|
35
35
|
/**
|
|
36
36
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof GetProductRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'slug'
|
|
40
|
+
'slug'?: string;
|
|
41
41
|
/**
|
|
42
42
|
* Fields to expand response by
|
|
43
43
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -145,6 +145,7 @@ export * from './list-products-response-class';
|
|
|
145
145
|
export * from './list-request-dto';
|
|
146
146
|
export * from './list-status-transition-rules-response-class';
|
|
147
147
|
export * from './named-range-class';
|
|
148
|
+
export * from './omit-type-class';
|
|
148
149
|
export * from './partner-class';
|
|
149
150
|
export * from './partner-link-class';
|
|
150
151
|
export * from './partner-role-class';
|
package/models/lead-class.ts
CHANGED
|
@@ -17,7 +17,7 @@ import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
|
17
17
|
import { CreateLeadPolicyRequestDto } from './create-lead-policy-request-dto';
|
|
18
18
|
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
19
19
|
import { LeadBankAccountClass } from './lead-bank-account-class';
|
|
20
|
-
import {
|
|
20
|
+
import { OmitTypeClass } from './omit-type-class';
|
|
21
21
|
import { PremiumOverrideRequestClass } from './premium-override-request-class';
|
|
22
22
|
import { SharedInvoiceClass } from './shared-invoice-class';
|
|
23
23
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
@@ -144,10 +144,10 @@ export interface LeadClass {
|
|
|
144
144
|
'version'?: number;
|
|
145
145
|
/**
|
|
146
146
|
* Partner links.
|
|
147
|
-
* @type {Array<
|
|
147
|
+
* @type {Array<OmitTypeClass>}
|
|
148
148
|
* @memberof LeadClass
|
|
149
149
|
*/
|
|
150
|
-
'partnerLinks': Array<
|
|
150
|
+
'partnerLinks': Array<OmitTypeClass>;
|
|
151
151
|
/**
|
|
152
152
|
* Identifier of the user who created the record.
|
|
153
153
|
* @type {string}
|
|
@@ -50,6 +50,12 @@ export interface LeadStatusClass {
|
|
|
50
50
|
* @memberof LeadStatusClass
|
|
51
51
|
*/
|
|
52
52
|
'isDefault': boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Indicates if this status is locked for the lead, preventing updates while true.
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof LeadStatusClass
|
|
57
|
+
*/
|
|
58
|
+
'isLocked': boolean;
|
|
53
59
|
/**
|
|
54
60
|
* Identifier of the user who created the record.
|
|
55
61
|
* @type {string}
|
|
@@ -21,17 +21,29 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface LinkLeadPartnerRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
* The code of the partner with which the lead will be linked.
|
|
24
|
+
* The code of the partner with which the lead will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred).
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof LinkLeadPartnerRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'partnerCode'
|
|
28
|
+
'partnerCode'?: string;
|
|
29
29
|
/**
|
|
30
|
-
* The
|
|
30
|
+
* The number of the partner with which the lead will be linked. Either this field or \'partnerCode\' must be passed (this is preferred).
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof LinkLeadPartnerRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'partnerNumber'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The code of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof LinkLeadPartnerRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'partnerRoleCode'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The slug of role that the partner will have in the established link between the lead and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred).
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof LinkLeadPartnerRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'partnerRoleSlug'?: string;
|
|
35
47
|
/**
|
|
36
48
|
* The date of the start of linking with a partner.
|
|
37
49
|
* @type {string}
|
|
@@ -21,17 +21,29 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface LinkPartnerRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* The code of the partner with which the target entity will be linked. Either this field or \'partnerNumber\' must be passed (\'partnerNumber\' is preferred).
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof LinkPartnerRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'partnerCode'
|
|
28
|
+
'partnerCode'?: string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* The number of the partner with which the target entity will be linked. Either this field or \'partnerCode\' must be passed (this is preferred).
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof LinkPartnerRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'partnerNumber'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The code of role that the partner will have in the established link between the target entity and the partner. Either this field or \'partnerRoleSlug\' must be passed (\'partnerRoleSlug\' is preferred).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof LinkPartnerRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'partnerRoleCode'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The slug of role that the partner will have in the established link between the target entity and the partner. Either this field or \'partnerRoleCode\' must be passed (this is preferred).
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof LinkPartnerRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'partnerRoleSlug'?: string;
|
|
35
47
|
/**
|
|
36
48
|
* Unique identifier of the policy that this object belongs to. Either this or leadCode should be provided, but not both.
|
|
37
49
|
* @type {string}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface OmitTypeClass
|
|
21
|
+
*/
|
|
22
|
+
export interface OmitTypeClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof OmitTypeClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier of the partner that this object belongs to.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof OmitTypeClass
|
|
33
|
+
*/
|
|
34
|
+
'partnerCode': string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier of the partner role that this object belongs to.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof OmitTypeClass
|
|
39
|
+
*/
|
|
40
|
+
'partnerRoleCode': string;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier of the policy that this object belongs to.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof OmitTypeClass
|
|
45
|
+
*/
|
|
46
|
+
'policyCode'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the lead that this object belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof OmitTypeClass
|
|
51
|
+
*/
|
|
52
|
+
'leadCode'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Date from which the partner should be linked.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof OmitTypeClass
|
|
57
|
+
*/
|
|
58
|
+
'startDate': string;
|
|
59
|
+
/**
|
|
60
|
+
* Date to which the partner should be linked.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof OmitTypeClass
|
|
63
|
+
*/
|
|
64
|
+
'endDate'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof OmitTypeClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was updated.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof OmitTypeClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
/**
|
|
78
|
+
* Identifier of the user who created the record.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof OmitTypeClass
|
|
81
|
+
*/
|
|
82
|
+
'createdBy': string;
|
|
83
|
+
/**
|
|
84
|
+
* Identifier of the user who last updated the record.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof OmitTypeClass
|
|
87
|
+
*/
|
|
88
|
+
'updatedBy': string;
|
|
89
|
+
}
|
|
90
|
+
|
|
@@ -38,6 +38,12 @@ export interface PartnerRoleClass {
|
|
|
38
38
|
* @memberof PartnerRoleClass
|
|
39
39
|
*/
|
|
40
40
|
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PartnerRoleClass
|
|
45
|
+
*/
|
|
46
|
+
'slug': string;
|
|
41
47
|
/**
|
|
42
48
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
43
49
|
* @type {string}
|
|
@@ -38,5 +38,11 @@ export interface UpdateLeadStatusRequestDto {
|
|
|
38
38
|
* @memberof UpdateLeadStatusRequestDto
|
|
39
39
|
*/
|
|
40
40
|
'isDefault'?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Indicates if this status is locked for the lead, preventing updates while true.
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof UpdateLeadStatusRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'isLocked'?: boolean;
|
|
41
47
|
}
|
|
42
48
|
|
|
@@ -26,6 +26,12 @@ export interface UpdatePartnerRoleRequestDto {
|
|
|
26
26
|
* @memberof UpdatePartnerRoleRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdatePartnerRoleRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug': string;
|
|
29
35
|
/**
|
|
30
36
|
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
37
|
* @type {string}
|