@emilgroup/public-api-sdk-node 1.27.1 → 1.29.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 +9 -0
- package/README.md +18 -2
- package/api/booking-funnels-api.ts +165 -0
- package/api/documents-api.ts +56 -28
- package/api/leads-api.ts +4 -4
- package/api/named-ranges-api.ts +254 -0
- package/api/products-api.ts +65 -38
- package/api.ts +4 -0
- package/dist/api/booking-funnels-api.d.ts +96 -0
- package/dist/api/booking-funnels-api.js +227 -0
- package/dist/api/documents-api.d.ts +40 -22
- package/dist/api/documents-api.js +38 -26
- package/dist/api/leads-api.d.ts +4 -4
- package/dist/api/leads-api.js +4 -4
- package/dist/api/named-ranges-api.d.ts +150 -0
- package/dist/api/named-ranges-api.js +267 -0
- package/dist/api/products-api.d.ts +49 -31
- package/dist/api/products-api.js +47 -36
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/address-field-score-class.d.ts +10 -10
- package/dist/models/booking-funnel-class.d.ts +90 -0
- package/dist/models/booking-funnel-class.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +1 -1
- package/dist/models/create-account-request-dto.js +1 -1
- package/dist/models/create-document-request-dto.d.ts +2 -2
- package/dist/models/create-lead-request-dto.d.ts +13 -1
- package/dist/models/create-presigned-post-request-dto.d.ts +2 -2
- package/dist/models/document-class.d.ts +1 -1
- package/dist/models/filter-named-range-response-class.d.ts +42 -0
- package/dist/models/filter-named-range-response-class.js +15 -0
- package/dist/models/get-booking-funnel-response-class.d.ts +25 -0
- package/dist/models/get-booking-funnel-response-class.js +15 -0
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -0
- package/dist/models/initiate-email-verification-dto.d.ts +1 -1
- package/dist/models/insured-object-type-class.d.ts +1 -1
- package/dist/models/lead-account-class.d.ts +1 -1
- package/dist/models/lead-account-class.js +1 -1
- package/dist/models/lead-class.d.ts +7 -0
- package/dist/models/lead-policy-object-class.d.ts +2 -2
- package/dist/models/partner-class.d.ts +60 -0
- package/dist/models/partner-class.js +15 -0
- package/dist/models/partner-link-class.d.ts +86 -0
- package/dist/models/partner-link-class.js +15 -0
- package/dist/models/partner-role-class.d.ts +54 -0
- package/dist/models/partner-role-class.js +15 -0
- package/dist/models/product-class.d.ts +1 -1
- package/dist/models/product-document-class.d.ts +14 -2
- package/dist/models/product-factor-for-version-class.d.ts +4 -3
- package/dist/models/product-factor-value-for-version-class.d.ts +42 -0
- package/dist/models/product-factor-value-for-version-class.js +15 -0
- package/dist/models/send-notification-request-dto.d.ts +1 -1
- package/dist/models/update-lead-request-dto.d.ts +1 -1
- package/models/address-field-score-class.ts +10 -10
- package/models/booking-funnel-class.ts +96 -0
- package/models/create-account-request-dto.ts +1 -1
- package/models/create-document-request-dto.ts +2 -2
- package/models/create-lead-request-dto.ts +13 -1
- package/models/create-presigned-post-request-dto.ts +2 -2
- package/models/document-class.ts +1 -1
- package/models/filter-named-range-response-class.ts +48 -0
- package/models/get-booking-funnel-response-class.ts +31 -0
- package/models/index.ts +7 -0
- package/models/initiate-email-verification-dto.ts +1 -1
- package/models/insured-object-type-class.ts +1 -1
- package/models/lead-account-class.ts +1 -1
- package/models/lead-class.ts +7 -0
- package/models/lead-policy-object-class.ts +2 -2
- package/models/partner-class.ts +66 -0
- package/models/partner-link-class.ts +92 -0
- package/models/partner-role-class.ts +60 -0
- package/models/product-class.ts +1 -1
- package/models/product-document-class.ts +14 -2
- package/models/product-factor-for-version-class.ts +4 -3
- package/models/product-factor-value-for-version-class.ts +48 -0
- package/models/send-notification-request-dto.ts +1 -1
- package/models/update-lead-request-dto.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 BookingFunnelClass
|
|
21
|
+
*/
|
|
22
|
+
export interface BookingFunnelClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof BookingFunnelClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BookingFunnelClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof BookingFunnelClass
|
|
39
|
+
*/
|
|
40
|
+
'parentId': number;
|
|
41
|
+
/**
|
|
42
|
+
* Booking Funnel name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BookingFunnelClass
|
|
45
|
+
*/
|
|
46
|
+
'name': string;
|
|
47
|
+
/**
|
|
48
|
+
* Booking Funnel snippet.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof BookingFunnelClass
|
|
51
|
+
*/
|
|
52
|
+
'jsCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* Booking Funnel JSON steps configuration.
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof BookingFunnelClass
|
|
57
|
+
*/
|
|
58
|
+
'stepsConfig': object;
|
|
59
|
+
/**
|
|
60
|
+
* Booking Funnel custom CSS.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BookingFunnelClass
|
|
63
|
+
*/
|
|
64
|
+
'css': string;
|
|
65
|
+
/**
|
|
66
|
+
* Booking Funnel logo url.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof BookingFunnelClass
|
|
69
|
+
*/
|
|
70
|
+
'logoPath': string;
|
|
71
|
+
/**
|
|
72
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof BookingFunnelClass
|
|
75
|
+
*/
|
|
76
|
+
'productSlug': string;
|
|
77
|
+
/**
|
|
78
|
+
* Booking Funnel version.
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof BookingFunnelClass
|
|
81
|
+
*/
|
|
82
|
+
'version': number;
|
|
83
|
+
/**
|
|
84
|
+
* Time at which the object was created.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof BookingFunnelClass
|
|
87
|
+
*/
|
|
88
|
+
'createdAt': string;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was updated.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof BookingFunnelClass
|
|
93
|
+
*/
|
|
94
|
+
'updatedAt': string;
|
|
95
|
+
}
|
|
96
|
+
|
|
@@ -122,7 +122,7 @@ export const CreateAccountRequestDtoTitleEnum = {
|
|
|
122
122
|
Empty: '',
|
|
123
123
|
Dr: 'Dr.',
|
|
124
124
|
DrMed: 'Dr. med.',
|
|
125
|
-
|
|
125
|
+
Prof: 'Prof.'
|
|
126
126
|
} as const;
|
|
127
127
|
|
|
128
128
|
export type CreateAccountRequestDtoTitleEnum = typeof CreateAccountRequestDtoTitleEnum[keyof typeof CreateAccountRequestDtoTitleEnum];
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CreateDocumentRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
24
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CreateDocumentRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'templateSlug': string;
|
|
29
29
|
/**
|
|
30
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
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
31
|
* @type {string}
|
|
32
32
|
* @memberof CreateDocumentRequestDto
|
|
33
33
|
*/
|
|
@@ -45,7 +45,7 @@ export interface CreateLeadRequestDto {
|
|
|
45
45
|
*/
|
|
46
46
|
'productCode'?: string;
|
|
47
47
|
/**
|
|
48
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
48
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CreateLeadRequestDto
|
|
51
51
|
*/
|
|
@@ -110,5 +110,17 @@ export interface CreateLeadRequestDto {
|
|
|
110
110
|
* @memberof CreateLeadRequestDto
|
|
111
111
|
*/
|
|
112
112
|
'validate'?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* An optional partner code to establish a link between a lead and a partner. It must be sent together with the partner role code. It will be validated regardless of the value of the \'validate\' flag.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof CreateLeadRequestDto
|
|
117
|
+
*/
|
|
118
|
+
'partnerCode'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* An optional partner role code to establish a link between a lead and a partner. It must be sent together with the partner code. It will be validated regardless of the value of the \'validate\' flag.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof CreateLeadRequestDto
|
|
123
|
+
*/
|
|
124
|
+
'partnerRoleCode'?: string;
|
|
113
125
|
}
|
|
114
126
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CreatePresignedPostRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
24
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CreatePresignedPostRequestDto
|
|
27
27
|
*/
|
|
@@ -87,7 +87,7 @@ export interface CreatePresignedPostRequestDto {
|
|
|
87
87
|
*/
|
|
88
88
|
'filename': string;
|
|
89
89
|
/**
|
|
90
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
90
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof CreatePresignedPostRequestDto
|
|
93
93
|
*/
|
package/models/document-class.ts
CHANGED
|
@@ -33,7 +33,7 @@ export interface DocumentClass {
|
|
|
33
33
|
*/
|
|
34
34
|
'code': string;
|
|
35
35
|
/**
|
|
36
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
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 DocumentClass
|
|
39
39
|
*/
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 FilterNamedRangeResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface FilterNamedRangeResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Named range rows as an array of JSON objects.
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof FilterNamedRangeResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'items': Array<string>;
|
|
29
|
+
/**
|
|
30
|
+
* Next page token.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof FilterNamedRangeResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'nextPageToken': string;
|
|
35
|
+
/**
|
|
36
|
+
* Items per page.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof FilterNamedRangeResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'itemsPerPage': number;
|
|
41
|
+
/**
|
|
42
|
+
* Total amount of items.
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof FilterNamedRangeResponseClass
|
|
45
|
+
*/
|
|
46
|
+
'totalItems': number;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { BookingFunnelClass } from './booking-funnel-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetBookingFunnelResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetBookingFunnelResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of booking funnels.
|
|
26
|
+
* @type {BookingFunnelClass}
|
|
27
|
+
* @memberof GetBookingFunnelResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'bookingFunnel': BookingFunnelClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './address-completion-item-class';
|
|
2
2
|
export * from './address-completion-response-class';
|
|
3
3
|
export * from './address-field-score-class';
|
|
4
|
+
export * from './booking-funnel-class';
|
|
4
5
|
export * from './calculate-product-fields-request-dto';
|
|
5
6
|
export * from './calculate-product-fields-response-class';
|
|
6
7
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
@@ -23,6 +24,8 @@ export * from './create-payment-method-request-dto';
|
|
|
23
24
|
export * from './create-presigned-post-request-dto';
|
|
24
25
|
export * from './create-presigned-post-response-class';
|
|
25
26
|
export * from './document-class';
|
|
27
|
+
export * from './filter-named-range-response-class';
|
|
28
|
+
export * from './get-booking-funnel-response-class';
|
|
26
29
|
export * from './get-custom-css-response-class';
|
|
27
30
|
export * from './get-lead-response-class';
|
|
28
31
|
export * from './get-product-document-download-url-response-class';
|
|
@@ -51,6 +54,9 @@ export * from './lead-policy-object-class';
|
|
|
51
54
|
export * from './list-documents-response-class';
|
|
52
55
|
export * from './list-product-documents-response-class';
|
|
53
56
|
export * from './list-products-response-class';
|
|
57
|
+
export * from './partner-class';
|
|
58
|
+
export * from './partner-link-class';
|
|
59
|
+
export * from './partner-role-class';
|
|
54
60
|
export * from './payment-method-class';
|
|
55
61
|
export * from './policy-object-request-dto';
|
|
56
62
|
export * from './policy-object-response-class';
|
|
@@ -59,6 +65,7 @@ export * from './premium-override-request-dto';
|
|
|
59
65
|
export * from './product-class';
|
|
60
66
|
export * from './product-document-class';
|
|
61
67
|
export * from './product-factor-for-version-class';
|
|
68
|
+
export * from './product-factor-value-for-version-class';
|
|
62
69
|
export * from './product-field-class';
|
|
63
70
|
export * from './product-version-class';
|
|
64
71
|
export * from './send-notification-request-dto';
|
|
@@ -27,7 +27,7 @@ export interface InitiateEmailVerificationDto {
|
|
|
27
27
|
*/
|
|
28
28
|
'email': string;
|
|
29
29
|
/**
|
|
30
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
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
31
|
* @type {string}
|
|
32
32
|
* @memberof InitiateEmailVerificationDto
|
|
33
33
|
*/
|
|
@@ -33,7 +33,7 @@ export interface InsuredObjectTypeClass {
|
|
|
33
33
|
*/
|
|
34
34
|
'name': string;
|
|
35
35
|
/**
|
|
36
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
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 InsuredObjectTypeClass
|
|
39
39
|
*/
|
|
@@ -110,7 +110,7 @@ export const LeadAccountClassTitleEnum = {
|
|
|
110
110
|
Empty: '',
|
|
111
111
|
Dr: 'Dr.',
|
|
112
112
|
DrMed: 'Dr. med.',
|
|
113
|
-
|
|
113
|
+
Prof: 'Prof.'
|
|
114
114
|
} as const;
|
|
115
115
|
|
|
116
116
|
export type LeadAccountClassTitleEnum = typeof LeadAccountClassTitleEnum[keyof typeof LeadAccountClassTitleEnum];
|
package/models/lead-class.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { InvoiceClass } from './invoice-class';
|
|
|
18
18
|
import { LeadAccountClass } from './lead-account-class';
|
|
19
19
|
import { LeadBankAccountClass } from './lead-bank-account-class';
|
|
20
20
|
import { LeadPolicyClass } from './lead-policy-class';
|
|
21
|
+
import { PartnerLinkClass } from './partner-link-class';
|
|
21
22
|
import { PremiumOverrideDto } from './premium-override-dto';
|
|
22
23
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
23
24
|
|
|
@@ -99,6 +100,12 @@ export interface LeadClass {
|
|
|
99
100
|
* @memberof LeadClass
|
|
100
101
|
*/
|
|
101
102
|
'paymentMethod': CreatePaymentMethodRequestDto;
|
|
103
|
+
/**
|
|
104
|
+
* Partner links.
|
|
105
|
+
* @type {PartnerLinkClass}
|
|
106
|
+
* @memberof LeadClass
|
|
107
|
+
*/
|
|
108
|
+
'partnerLinks': PartnerLinkClass;
|
|
102
109
|
/**
|
|
103
110
|
* Time at which the object was created.
|
|
104
111
|
* @type {string}
|
|
@@ -28,10 +28,10 @@ export interface LeadPolicyObjectClass {
|
|
|
28
28
|
'insuredObjectId': number;
|
|
29
29
|
/**
|
|
30
30
|
* Insured object name.
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {string}
|
|
32
32
|
* @memberof LeadPolicyObjectClass
|
|
33
33
|
*/
|
|
34
|
-
'insuredObjectName'?:
|
|
34
|
+
'insuredObjectName'?: string;
|
|
35
35
|
/**
|
|
36
36
|
* Insured object data.
|
|
37
37
|
* @type {object}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 PartnerClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PartnerClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PartnerClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier referencing the partner type.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PartnerClass
|
|
39
|
+
*/
|
|
40
|
+
'partnerTypeId': number;
|
|
41
|
+
/**
|
|
42
|
+
* For person partner type displayName is a combination if firstname and lastname. For organization its organization name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PartnerClass
|
|
45
|
+
*/
|
|
46
|
+
'displayName': string;
|
|
47
|
+
/**
|
|
48
|
+
* The partner object, based on partner schema.
|
|
49
|
+
* @type {object}
|
|
50
|
+
* @memberof PartnerClass
|
|
51
|
+
*/
|
|
52
|
+
'partner'?: object;
|
|
53
|
+
/**
|
|
54
|
+
* The version number of the partner
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof PartnerClass
|
|
57
|
+
*/
|
|
58
|
+
'version'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Last user who updated the entity
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PartnerClass
|
|
63
|
+
*/
|
|
64
|
+
'updatedBy'?: string;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { PartnerClass } from './partner-class';
|
|
17
|
+
import { PartnerRoleClass } from './partner-role-class';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface PartnerLinkClass
|
|
23
|
+
*/
|
|
24
|
+
export interface PartnerLinkClass {
|
|
25
|
+
/**
|
|
26
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof PartnerLinkClass
|
|
29
|
+
*/
|
|
30
|
+
'id': number;
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier of the partner that this object belongs to.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PartnerLinkClass
|
|
35
|
+
*/
|
|
36
|
+
'partnerCode': string;
|
|
37
|
+
/**
|
|
38
|
+
* Unique identifier of the partner role that this object belongs to.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof PartnerLinkClass
|
|
41
|
+
*/
|
|
42
|
+
'partnerRoleCode': string;
|
|
43
|
+
/**
|
|
44
|
+
* Unique identifier of the policy that this object belongs to.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PartnerLinkClass
|
|
47
|
+
*/
|
|
48
|
+
'policyCode'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Unique identifier of the lead that this object belongs to.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PartnerLinkClass
|
|
53
|
+
*/
|
|
54
|
+
'leadCode'?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Date from which the partner should be linked.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PartnerLinkClass
|
|
59
|
+
*/
|
|
60
|
+
'startDate': string;
|
|
61
|
+
/**
|
|
62
|
+
* Date to which the partner should be linked.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof PartnerLinkClass
|
|
65
|
+
*/
|
|
66
|
+
'endDate'?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Partner role
|
|
69
|
+
* @type {PartnerRoleClass}
|
|
70
|
+
* @memberof PartnerLinkClass
|
|
71
|
+
*/
|
|
72
|
+
'partnerRole'?: PartnerRoleClass;
|
|
73
|
+
/**
|
|
74
|
+
* Partner
|
|
75
|
+
* @type {PartnerClass}
|
|
76
|
+
* @memberof PartnerLinkClass
|
|
77
|
+
*/
|
|
78
|
+
'partner'?: PartnerClass;
|
|
79
|
+
/**
|
|
80
|
+
* Time at which the object was created.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof PartnerLinkClass
|
|
83
|
+
*/
|
|
84
|
+
'createdAt': string;
|
|
85
|
+
/**
|
|
86
|
+
* Time at which the object was updated.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof PartnerLinkClass
|
|
89
|
+
*/
|
|
90
|
+
'updatedAt': string;
|
|
91
|
+
}
|
|
92
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 PartnerRoleClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerRoleClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PartnerRoleClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PartnerRoleClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the partner role.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PartnerRoleClass
|
|
39
|
+
*/
|
|
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
|
+
'productSlug'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Time at which the object was created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PartnerRoleClass
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was updated.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PartnerRoleClass
|
|
57
|
+
*/
|
|
58
|
+
'updatedAt': string;
|
|
59
|
+
}
|
|
60
|
+
|
package/models/product-class.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface ProductClass {
|
|
|
41
41
|
*/
|
|
42
42
|
'name': string;
|
|
43
43
|
/**
|
|
44
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
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
45
|
* @type {string}
|
|
46
46
|
* @memberof ProductClass
|
|
47
47
|
*/
|
|
@@ -69,13 +69,13 @@ export interface ProductDocumentClass {
|
|
|
69
69
|
*/
|
|
70
70
|
'contentType': ProductDocumentClassContentTypeEnum;
|
|
71
71
|
/**
|
|
72
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
72
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof ProductDocumentClass
|
|
75
75
|
*/
|
|
76
76
|
'productSlug': string;
|
|
77
77
|
/**
|
|
78
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
78
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof ProductDocumentClass
|
|
81
81
|
*/
|
|
@@ -86,6 +86,18 @@ export interface ProductDocumentClass {
|
|
|
86
86
|
* @memberof ProductDocumentClass
|
|
87
87
|
*/
|
|
88
88
|
'versionNumber': number;
|
|
89
|
+
/**
|
|
90
|
+
* The file name of the document.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ProductDocumentClass
|
|
93
|
+
*/
|
|
94
|
+
'filename': string;
|
|
95
|
+
/**
|
|
96
|
+
* The entity type of the document.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ProductDocumentClass
|
|
99
|
+
*/
|
|
100
|
+
'entityType': string;
|
|
89
101
|
/**
|
|
90
102
|
* Time at which the object was created.
|
|
91
103
|
* @type {string}
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { ProductFactorValueForVersionClass } from './product-factor-value-for-version-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -57,10 +58,10 @@ export interface ProductFactorForVersionClass {
|
|
|
57
58
|
*/
|
|
58
59
|
'updatedAt': string;
|
|
59
60
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {Array<
|
|
61
|
+
* The list of productFactorValues.
|
|
62
|
+
* @type {Array<ProductFactorValueForVersionClass>}
|
|
62
63
|
* @memberof ProductFactorForVersionClass
|
|
63
64
|
*/
|
|
64
|
-
'values': Array<
|
|
65
|
+
'values': Array<ProductFactorValueForVersionClass>;
|
|
65
66
|
}
|
|
66
67
|
|