@emilgroup/public-api-sdk-node 1.0.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 +30 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/documents-api.ts +424 -0
- package/api/payment-setup-api.ts +260 -0
- package/api/products-api.ts +958 -0
- package/api.ts +36 -0
- package/base.ts +247 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/documents-api.d.ts +239 -0
- package/dist/api/documents-api.js +427 -0
- package/dist/api/payment-setup-api.d.ts +144 -0
- package/dist/api/payment-setup-api.js +309 -0
- package/dist/api/products-api.d.ts +511 -0
- package/dist/api/products-api.js +935 -0
- package/dist/api.d.ts +18 -0
- package/dist/api.js +38 -0
- package/dist/base.d.ts +72 -0
- package/dist/base.js +293 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +48 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/complete-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +54 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +90 -0
- package/dist/models/create-account-request-dto.js +21 -0
- package/dist/models/create-bank-account-request-dto.d.ts +30 -0
- package/dist/models/create-bank-account-request-dto.js +15 -0
- package/dist/models/create-custom-application-request-dto.d.ts +34 -0
- package/dist/models/create-custom-application-request-dto.js +19 -0
- package/dist/models/create-document-request-dto.d.ts +95 -0
- package/dist/models/create-document-request-dto.js +31 -0
- package/dist/models/create-estimated-invoice-request-dto.d.ts +41 -0
- package/dist/models/create-estimated-invoice-request-dto.js +19 -0
- package/dist/models/create-lead-request-dto.d.ts +77 -0
- package/dist/models/create-lead-request-dto.js +22 -0
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +30 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +24 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/initiate-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +24 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/policy-object-request-dto.d.ts +30 -0
- package/dist/models/policy-object-request-dto.js +15 -0
- package/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/complete-braintree-payment-setup-request-dto.ts +54 -0
- package/models/complete-payment-setup-request-dto.ts +38 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +60 -0
- package/models/create-account-request-dto.ts +99 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-custom-application-request-dto.ts +43 -0
- package/models/create-document-request-dto.ts +105 -0
- package/models/create-estimated-invoice-request-dto.ts +50 -0
- package/models/create-lead-request-dto.ts +86 -0
- package/models/index.ts +14 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +30 -0
- package/models/initiate-payment-setup-request-dto.ts +38 -0
- package/models/initiate-stripe-payment-setup-request-dto.ts +30 -0
- package/models/policy-object-request-dto.ts +36 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/package.json +27 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 CreateAccountRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateAccountRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Customer first name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateAccountRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'firstName': string;
|
|
24
|
+
/**
|
|
25
|
+
* Customer last name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateAccountRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'lastName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Customer email
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateAccountRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'email': string;
|
|
36
|
+
/**
|
|
37
|
+
* Customer gender
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateAccountRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'gender': CreateAccountRequestDtoGenderEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Customer street
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateAccountRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'street': string;
|
|
48
|
+
/**
|
|
49
|
+
* Customer zip code
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateAccountRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'zipCode': string;
|
|
54
|
+
/**
|
|
55
|
+
* Customer city
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateAccountRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'city': string;
|
|
60
|
+
/**
|
|
61
|
+
* Customer house number
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateAccountRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'houseNumber': string;
|
|
66
|
+
/**
|
|
67
|
+
* Customer birth date
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateAccountRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'birthDate': string;
|
|
72
|
+
/**
|
|
73
|
+
* Customer phone number
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateAccountRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'phone': string;
|
|
78
|
+
/**
|
|
79
|
+
* Account number
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateAccountRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'accountNumber': string;
|
|
84
|
+
}
|
|
85
|
+
export declare const CreateAccountRequestDtoGenderEnum: {
|
|
86
|
+
readonly Male: "male";
|
|
87
|
+
readonly Female: "female";
|
|
88
|
+
readonly Unspecified: "unspecified";
|
|
89
|
+
};
|
|
90
|
+
export declare type CreateAccountRequestDtoGenderEnum = typeof CreateAccountRequestDtoGenderEnum[keyof typeof CreateAccountRequestDtoGenderEnum];
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
*
|
|
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.CreateAccountRequestDtoGenderEnum = void 0;
|
|
17
|
+
exports.CreateAccountRequestDtoGenderEnum = {
|
|
18
|
+
Male: 'male',
|
|
19
|
+
Female: 'female',
|
|
20
|
+
Unspecified: 'unspecified'
|
|
21
|
+
};
|
|
@@ -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
|
+
*
|
|
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 CreateBankAccountRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateBankAccountRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof CreateBankAccountRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'accountCode': object;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateBankAccountRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'iban': 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
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 CreateCustomApplicationRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateCustomApplicationRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Customer data to create application
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof CreateCustomApplicationRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'data': object;
|
|
24
|
+
/**
|
|
25
|
+
* Custom provider name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateCustomApplicationRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'provider': CreateCustomApplicationRequestDtoProviderEnum;
|
|
30
|
+
}
|
|
31
|
+
export declare const CreateCustomApplicationRequestDtoProviderEnum: {
|
|
32
|
+
readonly Squarelife: "squarelife";
|
|
33
|
+
};
|
|
34
|
+
export declare type CreateCustomApplicationRequestDtoProviderEnum = typeof CreateCustomApplicationRequestDtoProviderEnum[keyof typeof CreateCustomApplicationRequestDtoProviderEnum];
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
*
|
|
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.CreateCustomApplicationRequestDtoProviderEnum = void 0;
|
|
17
|
+
exports.CreateCustomApplicationRequestDtoProviderEnum = {
|
|
18
|
+
Squarelife: 'squarelife'
|
|
19
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 CreateDocumentRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateDocumentRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Template slug
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateDocumentRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'templateSlug': string;
|
|
24
|
+
/**
|
|
25
|
+
* Document payload
|
|
26
|
+
* @type {object}
|
|
27
|
+
* @memberof CreateDocumentRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'payload': object;
|
|
30
|
+
/**
|
|
31
|
+
* Document entity type
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateDocumentRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'entityType': string;
|
|
36
|
+
/**
|
|
37
|
+
* Document description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateDocumentRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'description': string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateDocumentRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'policyCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateDocumentRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'accountCode'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Entity id
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof CreateDocumentRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'entityId'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Document requester
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateDocumentRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'requester': CreateDocumentRequestDtoRequesterEnum;
|
|
66
|
+
/**
|
|
67
|
+
* Metadata
|
|
68
|
+
* @type {object}
|
|
69
|
+
* @memberof CreateDocumentRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'metadata'?: object;
|
|
72
|
+
/**
|
|
73
|
+
* Document type
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateDocumentRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'contentType': CreateDocumentRequestDtoContentTypeEnum;
|
|
78
|
+
}
|
|
79
|
+
export declare const CreateDocumentRequestDtoRequesterEnum: {
|
|
80
|
+
readonly Publicapi: "publicapi";
|
|
81
|
+
};
|
|
82
|
+
export declare type CreateDocumentRequestDtoRequesterEnum = typeof CreateDocumentRequestDtoRequesterEnum[keyof typeof CreateDocumentRequestDtoRequesterEnum];
|
|
83
|
+
export declare const CreateDocumentRequestDtoContentTypeEnum: {
|
|
84
|
+
readonly Pdf: "pdf";
|
|
85
|
+
readonly Jpg: "jpg";
|
|
86
|
+
readonly Png: "png";
|
|
87
|
+
readonly Gz: "gz";
|
|
88
|
+
readonly Csv: "csv";
|
|
89
|
+
readonly Doc: "doc";
|
|
90
|
+
readonly Docx: "docx";
|
|
91
|
+
readonly Html: "html";
|
|
92
|
+
readonly Json: "json";
|
|
93
|
+
readonly Xml: "xml";
|
|
94
|
+
};
|
|
95
|
+
export declare type CreateDocumentRequestDtoContentTypeEnum = typeof CreateDocumentRequestDtoContentTypeEnum[keyof typeof CreateDocumentRequestDtoContentTypeEnum];
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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.CreateDocumentRequestDtoContentTypeEnum = exports.CreateDocumentRequestDtoRequesterEnum = void 0;
|
|
17
|
+
exports.CreateDocumentRequestDtoRequesterEnum = {
|
|
18
|
+
Publicapi: 'publicapi'
|
|
19
|
+
};
|
|
20
|
+
exports.CreateDocumentRequestDtoContentTypeEnum = {
|
|
21
|
+
Pdf: 'pdf',
|
|
22
|
+
Jpg: 'jpg',
|
|
23
|
+
Png: 'png',
|
|
24
|
+
Gz: 'gz',
|
|
25
|
+
Csv: 'csv',
|
|
26
|
+
Doc: 'doc',
|
|
27
|
+
Docx: 'docx',
|
|
28
|
+
Html: 'html',
|
|
29
|
+
Json: 'json',
|
|
30
|
+
Xml: 'xml'
|
|
31
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateEstimatedInvoiceRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateEstimatedInvoiceRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<PolicyObjectRequestDto>}
|
|
22
|
+
* @memberof CreateEstimatedInvoiceRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'policyObjects': Array<PolicyObjectRequestDto>;
|
|
25
|
+
/**
|
|
26
|
+
* Customer data
|
|
27
|
+
* @type {object}
|
|
28
|
+
* @memberof CreateEstimatedInvoiceRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'data': object;
|
|
31
|
+
/**
|
|
32
|
+
* Custom provider name
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateEstimatedInvoiceRequestDto
|
|
35
|
+
*/
|
|
36
|
+
'provider': CreateEstimatedInvoiceRequestDtoProviderEnum;
|
|
37
|
+
}
|
|
38
|
+
export declare const CreateEstimatedInvoiceRequestDtoProviderEnum: {
|
|
39
|
+
readonly Squarelife: "squarelife";
|
|
40
|
+
};
|
|
41
|
+
export declare type CreateEstimatedInvoiceRequestDtoProviderEnum = typeof CreateEstimatedInvoiceRequestDtoProviderEnum[keyof typeof CreateEstimatedInvoiceRequestDtoProviderEnum];
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
*
|
|
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.CreateEstimatedInvoiceRequestDtoProviderEnum = void 0;
|
|
17
|
+
exports.CreateEstimatedInvoiceRequestDtoProviderEnum = {
|
|
18
|
+
Squarelife: 'squarelife'
|
|
19
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { CreateAccountRequestDto } from './create-account-request-dto';
|
|
13
|
+
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
14
|
+
import { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
15
|
+
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface CreateLeadRequestDto
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateLeadRequestDto {
|
|
22
|
+
/**
|
|
23
|
+
* Lead code
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof CreateLeadRequestDto
|
|
26
|
+
*/
|
|
27
|
+
'code': string;
|
|
28
|
+
/**
|
|
29
|
+
* Product code
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof CreateLeadRequestDto
|
|
32
|
+
*/
|
|
33
|
+
'productCode': string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {Array<PolicyObjectRequestDto>}
|
|
37
|
+
* @memberof CreateLeadRequestDto
|
|
38
|
+
*/
|
|
39
|
+
'policyObjects': Array<PolicyObjectRequestDto>;
|
|
40
|
+
/**
|
|
41
|
+
* Bank account details
|
|
42
|
+
* @type {CreateBankAccountRequestDto}
|
|
43
|
+
* @memberof CreateLeadRequestDto
|
|
44
|
+
*/
|
|
45
|
+
'bankAccount'?: CreateBankAccountRequestDto;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {CreateAccountRequestDto}
|
|
49
|
+
* @memberof CreateLeadRequestDto
|
|
50
|
+
*/
|
|
51
|
+
'account': CreateAccountRequestDto;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {object}
|
|
55
|
+
* @memberof CreateLeadRequestDto
|
|
56
|
+
*/
|
|
57
|
+
'customData'?: object;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {UploadedDocumentDto}
|
|
61
|
+
* @memberof CreateLeadRequestDto
|
|
62
|
+
*/
|
|
63
|
+
'uploadedDocument'?: UploadedDocumentDto;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof CreateLeadRequestDto
|
|
68
|
+
*/
|
|
69
|
+
'status'?: CreateLeadRequestDtoStatusEnum;
|
|
70
|
+
}
|
|
71
|
+
export declare const CreateLeadRequestDtoStatusEnum: {
|
|
72
|
+
readonly Created: "created";
|
|
73
|
+
readonly Approved: "approved";
|
|
74
|
+
readonly Activated: "activated";
|
|
75
|
+
readonly Declined: "declined";
|
|
76
|
+
};
|
|
77
|
+
export declare type CreateLeadRequestDtoStatusEnum = typeof CreateLeadRequestDtoStatusEnum[keyof typeof CreateLeadRequestDtoStatusEnum];
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
*
|
|
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.CreateLeadRequestDtoStatusEnum = void 0;
|
|
17
|
+
exports.CreateLeadRequestDtoStatusEnum = {
|
|
18
|
+
Created: 'created',
|
|
19
|
+
Approved: 'approved',
|
|
20
|
+
Activated: 'activated',
|
|
21
|
+
Declined: 'declined'
|
|
22
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './complete-braintree-payment-setup-request-dto';
|
|
2
|
+
export * from './complete-payment-setup-request-dto';
|
|
3
|
+
export * from './complete-stripe-payment-setup-request-dto';
|
|
4
|
+
export * from './create-account-request-dto';
|
|
5
|
+
export * from './create-bank-account-request-dto';
|
|
6
|
+
export * from './create-custom-application-request-dto';
|
|
7
|
+
export * from './create-document-request-dto';
|
|
8
|
+
export * from './create-estimated-invoice-request-dto';
|
|
9
|
+
export * from './create-lead-request-dto';
|
|
10
|
+
export * from './initiate-braintree-payment-setup-request-dto';
|
|
11
|
+
export * from './initiate-payment-setup-request-dto';
|
|
12
|
+
export * from './initiate-stripe-payment-setup-request-dto';
|
|
13
|
+
export * from './policy-object-request-dto';
|
|
14
|
+
export * from './uploaded-document-dto';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
18
|
+
__exportStar(require("./complete-payment-setup-request-dto"), exports);
|
|
19
|
+
__exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
|
|
20
|
+
__exportStar(require("./create-account-request-dto"), exports);
|
|
21
|
+
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
22
|
+
__exportStar(require("./create-custom-application-request-dto"), exports);
|
|
23
|
+
__exportStar(require("./create-document-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-estimated-invoice-request-dto"), exports);
|
|
25
|
+
__exportStar(require("./create-lead-request-dto"), exports);
|
|
26
|
+
__exportStar(require("./initiate-braintree-payment-setup-request-dto"), exports);
|
|
27
|
+
__exportStar(require("./initiate-payment-setup-request-dto"), exports);
|
|
28
|
+
__exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
|
|
29
|
+
__exportStar(require("./policy-object-request-dto"), exports);
|
|
30
|
+
__exportStar(require("./uploaded-document-dto"), exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 InitiateBraintreePaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateBraintreePaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Lead code
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateBraintreePaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode': string;
|
|
24
|
+
}
|
|
@@ -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
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
|
|
13
|
+
import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface InitiatePaymentSetupRequestDto
|
|
18
|
+
*/
|
|
19
|
+
export interface InitiatePaymentSetupRequestDto {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {InitiateStripePaymentSetupRequestDto}
|
|
23
|
+
* @memberof InitiatePaymentSetupRequestDto
|
|
24
|
+
*/
|
|
25
|
+
'stripe'?: InitiateStripePaymentSetupRequestDto;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {InitiateBraintreePaymentSetupRequestDto}
|
|
29
|
+
* @memberof InitiatePaymentSetupRequestDto
|
|
30
|
+
*/
|
|
31
|
+
'braintree'?: InitiateBraintreePaymentSetupRequestDto;
|
|
32
|
+
}
|
|
@@ -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
|
+
*
|
|
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 });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PublicAPI
|
|
3
|
+
* The EMIL Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 InitiateStripePaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateStripePaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Lead code
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateStripePaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode': string;
|
|
24
|
+
}
|
|
@@ -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
|
+
*
|
|
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 });
|