@emilgroup/public-api-sdk 1.11.0 → 1.13.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 +4 -0
- package/README.md +2 -2
- package/api/documents-api.ts +107 -0
- package/dist/api/documents-api.d.ts +57 -0
- package/dist/api/documents-api.js +93 -0
- package/dist/models/create-document-request-dto.d.ts +8 -0
- package/dist/models/create-document-request-dto.js +9 -1
- package/dist/models/create-lead-request-dto.d.ts +7 -0
- package/dist/models/create-payment-method-request-dto.d.ts +36 -0
- package/dist/models/create-payment-method-request-dto.js +20 -0
- package/dist/models/create-presigned-post-request-dto.d.ts +128 -0
- package/dist/models/create-presigned-post-request-dto.js +52 -0
- package/dist/models/create-presigned-post-response-class.d.ts +30 -0
- package/dist/models/create-presigned-post-response-class.js +15 -0
- package/dist/models/document-class.d.ts +8 -0
- package/dist/models/document-class.js +9 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/invoice-item-class.d.ts +12 -0
- package/dist/models/lead-class.d.ts +7 -0
- package/dist/models/premium-override-dto.d.ts +1 -0
- package/dist/models/premium-override-dto.js +1 -0
- package/dist/models/product-class.d.ts +6 -0
- package/dist/models/product-document-class.d.ts +8 -0
- package/dist/models/product-document-class.js +9 -1
- package/dist/models/sepa-dto.d.ts +30 -0
- package/dist/models/sepa-dto.js +15 -0
- package/dist/models/update-lead-request-dto.d.ts +7 -0
- package/models/create-document-request-dto.ts +9 -1
- package/models/create-lead-request-dto.ts +7 -0
- package/models/create-payment-method-request-dto.ts +45 -0
- package/models/create-presigned-post-request-dto.ts +138 -0
- package/models/create-presigned-post-response-class.ts +36 -0
- package/models/document-class.ts +9 -1
- package/models/index.ts +4 -0
- package/models/invoice-item-class.ts +12 -0
- package/models/lead-class.ts +7 -0
- package/models/premium-override-dto.ts +1 -0
- package/models/product-class.ts +6 -0
- package/models/product-document-class.ts +9 -1
- package/models/sepa-dto.ts +36 -0
- package/models/update-lead-request-dto.ts +7 -0
- package/package.json +2 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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.CreatePresignedPostRequestDtoContentTypeEnum = exports.CreatePresignedPostRequestDtoRequesterEnum = void 0;
|
|
17
|
+
exports.CreatePresignedPostRequestDtoRequesterEnum = {
|
|
18
|
+
Accountservice: 'accountservice',
|
|
19
|
+
Insuranceservice: 'insuranceservice',
|
|
20
|
+
Billingservice: 'billingservice',
|
|
21
|
+
Tenantservice: 'tenantservice',
|
|
22
|
+
BookingFunnel: 'bookingFunnel',
|
|
23
|
+
Publicapi: 'publicapi',
|
|
24
|
+
Admin: 'admin',
|
|
25
|
+
Claimservice: 'claimservice',
|
|
26
|
+
Customerservice: 'customerservice',
|
|
27
|
+
Notificationservice: 'notificationservice',
|
|
28
|
+
Paymentservice: 'paymentservice',
|
|
29
|
+
Processmanager: 'processmanager',
|
|
30
|
+
Gdvservice: 'gdvservice',
|
|
31
|
+
Documentservice: 'documentservice'
|
|
32
|
+
};
|
|
33
|
+
exports.CreatePresignedPostRequestDtoContentTypeEnum = {
|
|
34
|
+
Pdf: 'pdf',
|
|
35
|
+
Jpg: 'jpg',
|
|
36
|
+
Png: 'png',
|
|
37
|
+
Gz: 'gz',
|
|
38
|
+
Csv: 'csv',
|
|
39
|
+
Doc: 'doc',
|
|
40
|
+
Docx: 'docx',
|
|
41
|
+
Html: 'html',
|
|
42
|
+
Json: 'json',
|
|
43
|
+
Xml: 'xml',
|
|
44
|
+
Txt: 'txt',
|
|
45
|
+
Zip: 'zip',
|
|
46
|
+
Tar: 'tar',
|
|
47
|
+
Rar: 'rar',
|
|
48
|
+
Mp4: 'MP4',
|
|
49
|
+
Mov: 'MOV',
|
|
50
|
+
Wmv: 'WMV',
|
|
51
|
+
Avi: 'AVI'
|
|
52
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 CreatePresignedPostResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePresignedPostResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Upload document fields.
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof CreatePresignedPostResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'fields': object;
|
|
24
|
+
/**
|
|
25
|
+
* Pre-signed Url.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePresignedPostResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'url': string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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 });
|
|
@@ -126,5 +126,13 @@ export declare const DocumentClassContentTypeEnum: {
|
|
|
126
126
|
readonly Html: "html";
|
|
127
127
|
readonly Json: "json";
|
|
128
128
|
readonly Xml: "xml";
|
|
129
|
+
readonly Txt: "txt";
|
|
130
|
+
readonly Zip: "zip";
|
|
131
|
+
readonly Tar: "tar";
|
|
132
|
+
readonly Rar: "rar";
|
|
133
|
+
readonly Mp4: "MP4";
|
|
134
|
+
readonly Mov: "MOV";
|
|
135
|
+
readonly Wmv: "WMV";
|
|
136
|
+
readonly Avi: "AVI";
|
|
129
137
|
};
|
|
130
138
|
export type DocumentClassContentTypeEnum = typeof DocumentClassContentTypeEnum[keyof typeof DocumentClassContentTypeEnum];
|
package/dist/models/index.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export * from './create-estimated-invoice-request-dto';
|
|
|
16
16
|
export * from './create-estimated-invoice-response-class';
|
|
17
17
|
export * from './create-lead-request-dto';
|
|
18
18
|
export * from './create-lead-response-class';
|
|
19
|
+
export * from './create-payment-method-request-dto';
|
|
20
|
+
export * from './create-presigned-post-request-dto';
|
|
21
|
+
export * from './create-presigned-post-response-class';
|
|
19
22
|
export * from './document-class';
|
|
20
23
|
export * from './get-custom-css-response-class';
|
|
21
24
|
export * from './get-lead-response-class';
|
|
@@ -54,6 +57,7 @@ export * from './product-field-class';
|
|
|
54
57
|
export * from './product-version-class';
|
|
55
58
|
export * from './send-notification-request-dto';
|
|
56
59
|
export * from './send-notification-response-class';
|
|
60
|
+
export * from './sepa-dto';
|
|
57
61
|
export * from './structured-address-class';
|
|
58
62
|
export * from './suggested-address-details-class';
|
|
59
63
|
export * from './update-lead-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -32,6 +32,9 @@ __exportStar(require("./create-estimated-invoice-request-dto"), exports);
|
|
|
32
32
|
__exportStar(require("./create-estimated-invoice-response-class"), exports);
|
|
33
33
|
__exportStar(require("./create-lead-request-dto"), exports);
|
|
34
34
|
__exportStar(require("./create-lead-response-class"), exports);
|
|
35
|
+
__exportStar(require("./create-payment-method-request-dto"), exports);
|
|
36
|
+
__exportStar(require("./create-presigned-post-request-dto"), exports);
|
|
37
|
+
__exportStar(require("./create-presigned-post-response-class"), exports);
|
|
35
38
|
__exportStar(require("./document-class"), exports);
|
|
36
39
|
__exportStar(require("./get-custom-css-response-class"), exports);
|
|
37
40
|
__exportStar(require("./get-lead-response-class"), exports);
|
|
@@ -70,6 +73,7 @@ __exportStar(require("./product-field-class"), exports);
|
|
|
70
73
|
__exportStar(require("./product-version-class"), exports);
|
|
71
74
|
__exportStar(require("./send-notification-request-dto"), exports);
|
|
72
75
|
__exportStar(require("./send-notification-response-class"), exports);
|
|
76
|
+
__exportStar(require("./sepa-dto"), exports);
|
|
73
77
|
__exportStar(require("./structured-address-class"), exports);
|
|
74
78
|
__exportStar(require("./suggested-address-details-class"), exports);
|
|
75
79
|
__exportStar(require("./update-lead-request-dto"), exports);
|
|
@@ -105,4 +105,16 @@ export interface InvoiceItemClass {
|
|
|
105
105
|
* @memberof InvoiceItemClass
|
|
106
106
|
*/
|
|
107
107
|
'billingIntervalTo': string;
|
|
108
|
+
/**
|
|
109
|
+
* Type of Premium item.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof InvoiceItemClass
|
|
112
|
+
*/
|
|
113
|
+
'itemType'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Visibility of Premium item.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof InvoiceItemClass
|
|
118
|
+
*/
|
|
119
|
+
'visibility'?: string;
|
|
108
120
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
12
13
|
import { InvoiceClass } from './invoice-class';
|
|
13
14
|
import { LeadAccountClass } from './lead-account-class';
|
|
14
15
|
import { LeadBankAccountClass } from './lead-bank-account-class';
|
|
@@ -87,6 +88,12 @@ export interface LeadClass {
|
|
|
87
88
|
* @memberof LeadClass
|
|
88
89
|
*/
|
|
89
90
|
'ern': string;
|
|
91
|
+
/**
|
|
92
|
+
* Payment method. When a payment method is provided, it needs to be handled in the workflow based on its type.
|
|
93
|
+
* @type {CreatePaymentMethodRequestDto}
|
|
94
|
+
* @memberof LeadClass
|
|
95
|
+
*/
|
|
96
|
+
'paymentMethod': CreatePaymentMethodRequestDto;
|
|
90
97
|
/**
|
|
91
98
|
* Time at which the object was created.
|
|
92
99
|
* @type {string}
|
|
@@ -87,5 +87,13 @@ export declare const ProductDocumentClassContentTypeEnum: {
|
|
|
87
87
|
readonly Html: "html";
|
|
88
88
|
readonly Json: "json";
|
|
89
89
|
readonly Xml: "xml";
|
|
90
|
+
readonly Txt: "txt";
|
|
91
|
+
readonly Zip: "zip";
|
|
92
|
+
readonly Tar: "tar";
|
|
93
|
+
readonly Rar: "rar";
|
|
94
|
+
readonly Mp4: "MP4";
|
|
95
|
+
readonly Mov: "MOV";
|
|
96
|
+
readonly Wmv: "WMV";
|
|
97
|
+
readonly Avi: "AVI";
|
|
90
98
|
};
|
|
91
99
|
export type ProductDocumentClassContentTypeEnum = typeof ProductDocumentClassContentTypeEnum[keyof typeof ProductDocumentClassContentTypeEnum];
|
|
@@ -24,5 +24,13 @@ exports.ProductDocumentClassContentTypeEnum = {
|
|
|
24
24
|
Docx: 'docx',
|
|
25
25
|
Html: 'html',
|
|
26
26
|
Json: 'json',
|
|
27
|
-
Xml: 'xml'
|
|
27
|
+
Xml: 'xml',
|
|
28
|
+
Txt: 'txt',
|
|
29
|
+
Zip: 'zip',
|
|
30
|
+
Tar: 'tar',
|
|
31
|
+
Rar: 'rar',
|
|
32
|
+
Mp4: 'MP4',
|
|
33
|
+
Mov: 'MOV',
|
|
34
|
+
Wmv: 'WMV',
|
|
35
|
+
Avi: 'AVI'
|
|
28
36
|
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 SepaDto
|
|
16
|
+
*/
|
|
17
|
+
export interface SepaDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SepaDto
|
|
22
|
+
*/
|
|
23
|
+
'iban': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SepaDto
|
|
28
|
+
*/
|
|
29
|
+
'holderName'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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 });
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
13
13
|
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
14
|
+
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
14
15
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
15
16
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
16
17
|
/**
|
|
@@ -67,6 +68,12 @@ export interface UpdateLeadRequestDto {
|
|
|
67
68
|
* @memberof UpdateLeadRequestDto
|
|
68
69
|
*/
|
|
69
70
|
'status': string;
|
|
71
|
+
/**
|
|
72
|
+
* Payment Method.
|
|
73
|
+
* @type {CreatePaymentMethodRequestDto}
|
|
74
|
+
* @memberof UpdateLeadRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'paymentMethod'?: CreatePaymentMethodRequestDto;
|
|
70
77
|
/**
|
|
71
78
|
*
|
|
72
79
|
* @type {CreateAccountRequestDto}
|
|
@@ -109,7 +109,15 @@ export const CreateDocumentRequestDtoContentTypeEnum = {
|
|
|
109
109
|
Docx: 'docx',
|
|
110
110
|
Html: 'html',
|
|
111
111
|
Json: 'json',
|
|
112
|
-
Xml: 'xml'
|
|
112
|
+
Xml: 'xml',
|
|
113
|
+
Txt: 'txt',
|
|
114
|
+
Zip: 'zip',
|
|
115
|
+
Tar: 'tar',
|
|
116
|
+
Rar: 'rar',
|
|
117
|
+
Mp4: 'MP4',
|
|
118
|
+
Mov: 'MOV',
|
|
119
|
+
Wmv: 'WMV',
|
|
120
|
+
Avi: 'AVI'
|
|
113
121
|
} as const;
|
|
114
122
|
|
|
115
123
|
export type CreateDocumentRequestDtoContentTypeEnum = typeof CreateDocumentRequestDtoContentTypeEnum[keyof typeof CreateDocumentRequestDtoContentTypeEnum];
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
import { CreateAccountRequestDto } from './create-account-request-dto';
|
|
17
17
|
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
18
|
+
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
18
19
|
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
19
20
|
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
20
21
|
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
@@ -91,5 +92,11 @@ export interface CreateLeadRequestDto {
|
|
|
91
92
|
* @memberof CreateLeadRequestDto
|
|
92
93
|
*/
|
|
93
94
|
'premiumOverride'?: PremiumOverrideRequestDto;
|
|
95
|
+
/**
|
|
96
|
+
* Payment Method.
|
|
97
|
+
* @type {CreatePaymentMethodRequestDto}
|
|
98
|
+
* @memberof CreateLeadRequestDto
|
|
99
|
+
*/
|
|
100
|
+
'paymentMethod'?: CreatePaymentMethodRequestDto;
|
|
94
101
|
}
|
|
95
102
|
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { SepaDto } from './sepa-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreatePaymentMethodRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreatePaymentMethodRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'type': CreatePaymentMethodRequestDtoTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {SepaDto}
|
|
33
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'sepa'?: SepaDto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export const CreatePaymentMethodRequestDtoTypeEnum = {
|
|
39
|
+
Sepa: 'sepa',
|
|
40
|
+
Invoice: 'invoice'
|
|
41
|
+
} as const;
|
|
42
|
+
|
|
43
|
+
export type CreatePaymentMethodRequestDtoTypeEnum = typeof CreatePaymentMethodRequestDtoTypeEnum[keyof typeof CreatePaymentMethodRequestDtoTypeEnum];
|
|
44
|
+
|
|
45
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
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 CreatePresignedPostRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePresignedPostRequestDto {
|
|
23
|
+
/**
|
|
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
|
+
* @type {string}
|
|
26
|
+
* @memberof CreatePresignedPostRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'templateSlug': string;
|
|
29
|
+
/**
|
|
30
|
+
* Document entity type.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePresignedPostRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'entityType': string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier referencing the entity.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof CreatePresignedPostRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'entityId'?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Description of the document. Usually a short summary about the context in which the document is being used.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreatePresignedPostRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the policy that this object belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreatePresignedPostRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'policyCode'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Unique identifier of the account that this object belongs to.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreatePresignedPostRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'accountCode'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Unique identifier of the lead that this object belongs to.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreatePresignedPostRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'leadCode'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifier of the service that requested the creation of this document.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreatePresignedPostRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'requester': CreatePresignedPostRequestDtoRequesterEnum;
|
|
71
|
+
/**
|
|
72
|
+
* Extension of the file.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CreatePresignedPostRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'contentType': CreatePresignedPostRequestDtoContentTypeEnum;
|
|
77
|
+
/**
|
|
78
|
+
* Content type of the file.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CreatePresignedPostRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'isoContentType': string;
|
|
83
|
+
/**
|
|
84
|
+
* Name of the file the end user will see when he downloads it.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreatePresignedPostRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'filename': string;
|
|
89
|
+
/**
|
|
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
|
+
* @type {string}
|
|
92
|
+
* @memberof CreatePresignedPostRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'productSlug'?: string;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export const CreatePresignedPostRequestDtoRequesterEnum = {
|
|
98
|
+
Accountservice: 'accountservice',
|
|
99
|
+
Insuranceservice: 'insuranceservice',
|
|
100
|
+
Billingservice: 'billingservice',
|
|
101
|
+
Tenantservice: 'tenantservice',
|
|
102
|
+
BookingFunnel: 'bookingFunnel',
|
|
103
|
+
Publicapi: 'publicapi',
|
|
104
|
+
Admin: 'admin',
|
|
105
|
+
Claimservice: 'claimservice',
|
|
106
|
+
Customerservice: 'customerservice',
|
|
107
|
+
Notificationservice: 'notificationservice',
|
|
108
|
+
Paymentservice: 'paymentservice',
|
|
109
|
+
Processmanager: 'processmanager',
|
|
110
|
+
Gdvservice: 'gdvservice',
|
|
111
|
+
Documentservice: 'documentservice'
|
|
112
|
+
} as const;
|
|
113
|
+
|
|
114
|
+
export type CreatePresignedPostRequestDtoRequesterEnum = typeof CreatePresignedPostRequestDtoRequesterEnum[keyof typeof CreatePresignedPostRequestDtoRequesterEnum];
|
|
115
|
+
export const CreatePresignedPostRequestDtoContentTypeEnum = {
|
|
116
|
+
Pdf: 'pdf',
|
|
117
|
+
Jpg: 'jpg',
|
|
118
|
+
Png: 'png',
|
|
119
|
+
Gz: 'gz',
|
|
120
|
+
Csv: 'csv',
|
|
121
|
+
Doc: 'doc',
|
|
122
|
+
Docx: 'docx',
|
|
123
|
+
Html: 'html',
|
|
124
|
+
Json: 'json',
|
|
125
|
+
Xml: 'xml',
|
|
126
|
+
Txt: 'txt',
|
|
127
|
+
Zip: 'zip',
|
|
128
|
+
Tar: 'tar',
|
|
129
|
+
Rar: 'rar',
|
|
130
|
+
Mp4: 'MP4',
|
|
131
|
+
Mov: 'MOV',
|
|
132
|
+
Wmv: 'WMV',
|
|
133
|
+
Avi: 'AVI'
|
|
134
|
+
} as const;
|
|
135
|
+
|
|
136
|
+
export type CreatePresignedPostRequestDtoContentTypeEnum = typeof CreatePresignedPostRequestDtoContentTypeEnum[keyof typeof CreatePresignedPostRequestDtoContentTypeEnum];
|
|
137
|
+
|
|
138
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CreatePresignedPostResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePresignedPostResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Upload document fields.
|
|
25
|
+
* @type {object}
|
|
26
|
+
* @memberof CreatePresignedPostResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'fields': object;
|
|
29
|
+
/**
|
|
30
|
+
* Pre-signed Url.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePresignedPostResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'url': string;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/document-class.ts
CHANGED
|
@@ -133,7 +133,15 @@ export const DocumentClassContentTypeEnum = {
|
|
|
133
133
|
Docx: 'docx',
|
|
134
134
|
Html: 'html',
|
|
135
135
|
Json: 'json',
|
|
136
|
-
Xml: 'xml'
|
|
136
|
+
Xml: 'xml',
|
|
137
|
+
Txt: 'txt',
|
|
138
|
+
Zip: 'zip',
|
|
139
|
+
Tar: 'tar',
|
|
140
|
+
Rar: 'rar',
|
|
141
|
+
Mp4: 'MP4',
|
|
142
|
+
Mov: 'MOV',
|
|
143
|
+
Wmv: 'WMV',
|
|
144
|
+
Avi: 'AVI'
|
|
137
145
|
} as const;
|
|
138
146
|
|
|
139
147
|
export type DocumentClassContentTypeEnum = typeof DocumentClassContentTypeEnum[keyof typeof DocumentClassContentTypeEnum];
|
package/models/index.ts
CHANGED
|
@@ -16,6 +16,9 @@ export * from './create-estimated-invoice-request-dto';
|
|
|
16
16
|
export * from './create-estimated-invoice-response-class';
|
|
17
17
|
export * from './create-lead-request-dto';
|
|
18
18
|
export * from './create-lead-response-class';
|
|
19
|
+
export * from './create-payment-method-request-dto';
|
|
20
|
+
export * from './create-presigned-post-request-dto';
|
|
21
|
+
export * from './create-presigned-post-response-class';
|
|
19
22
|
export * from './document-class';
|
|
20
23
|
export * from './get-custom-css-response-class';
|
|
21
24
|
export * from './get-lead-response-class';
|
|
@@ -54,6 +57,7 @@ export * from './product-field-class';
|
|
|
54
57
|
export * from './product-version-class';
|
|
55
58
|
export * from './send-notification-request-dto';
|
|
56
59
|
export * from './send-notification-response-class';
|
|
60
|
+
export * from './sepa-dto';
|
|
57
61
|
export * from './structured-address-class';
|
|
58
62
|
export * from './suggested-address-details-class';
|
|
59
63
|
export * from './update-lead-request-dto';
|
|
@@ -110,5 +110,17 @@ export interface InvoiceItemClass {
|
|
|
110
110
|
* @memberof InvoiceItemClass
|
|
111
111
|
*/
|
|
112
112
|
'billingIntervalTo': string;
|
|
113
|
+
/**
|
|
114
|
+
* Type of Premium item.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof InvoiceItemClass
|
|
117
|
+
*/
|
|
118
|
+
'itemType'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Visibility of Premium item.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof InvoiceItemClass
|
|
123
|
+
*/
|
|
124
|
+
'visibility'?: string;
|
|
113
125
|
}
|
|
114
126
|
|
package/models/lead-class.ts
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { CreatePaymentMethodRequestDto } from './create-payment-method-request-dto';
|
|
16
17
|
import { InvoiceClass } from './invoice-class';
|
|
17
18
|
import { LeadAccountClass } from './lead-account-class';
|
|
18
19
|
import { LeadBankAccountClass } from './lead-bank-account-class';
|
|
@@ -92,6 +93,12 @@ export interface LeadClass {
|
|
|
92
93
|
* @memberof LeadClass
|
|
93
94
|
*/
|
|
94
95
|
'ern': string;
|
|
96
|
+
/**
|
|
97
|
+
* Payment method. When a payment method is provided, it needs to be handled in the workflow based on its type.
|
|
98
|
+
* @type {CreatePaymentMethodRequestDto}
|
|
99
|
+
* @memberof LeadClass
|
|
100
|
+
*/
|
|
101
|
+
'paymentMethod': CreatePaymentMethodRequestDto;
|
|
95
102
|
/**
|
|
96
103
|
* Time at which the object was created.
|
|
97
104
|
* @type {string}
|