@emilgroup/billing-sdk-node 1.3.0 → 1.4.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 +53 -20
- package/README.md +2 -2
- package/api/documents-api.ts +442 -0
- package/api/leads-api.ts +482 -0
- package/api/{recurring-invoices-api.ts → notifications-api.ts} +47 -43
- package/api/payments-setup-api.ts +408 -0
- package/api/products-api.ts +891 -0
- package/api.ts +13 -18
- package/base.ts +8 -7
- package/common.ts +6 -6
- package/configuration.ts +3 -3
- package/dist/api/documents-api.d.ts +252 -0
- package/dist/api/documents-api.js +443 -0
- package/dist/api/leads-api.d.ts +266 -0
- package/dist/api/leads-api.js +506 -0
- package/dist/api/notifications-api.d.ts +97 -0
- package/dist/api/{recurring-invoices-api.js → notifications-api.js} +46 -42
- package/dist/api/payments-setup-api.d.ts +228 -0
- package/dist/api/payments-setup-api.js +426 -0
- package/dist/api/products-api.d.ts +497 -0
- package/dist/api/products-api.js +827 -0
- package/dist/api.d.ts +8 -12
- package/dist/api.js +8 -14
- package/dist/base.d.ts +6 -5
- package/dist/base.js +8 -7
- package/dist/common.d.ts +6 -6
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +3 -3
- package/dist/index.d.ts +4 -4
- package/dist/index.js +5 -4
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +48 -0
- package/dist/models/{create-custom-estimated-invoice-response-class.js → complete-braintree-payment-setup-request-dto.js} +3 -3
- package/dist/models/complete-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/{create-correction-invoices-response-class.js → complete-payment-setup-request-dto.js} +3 -3
- package/dist/models/complete-payment-setup-response-class.d.ts +25 -0
- package/dist/models/{list-invoices-response-class.js → complete-payment-setup-response-class.js} +3 -3
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +60 -0
- package/dist/models/{create-invoice-response-class.js → complete-stripe-payment-setup-request-dto.js} +3 -3
- package/dist/models/create-account-request-dto.d.ts +132 -0
- package/dist/models/create-account-request-dto.js +31 -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 +35 -0
- package/dist/models/{create-custom-estimated-invoice-request-dto.js → create-custom-application-request-dto.js} +5 -5
- package/dist/models/create-custom-application-response-class.d.ts +24 -0
- package/dist/models/create-custom-application-response-class.js +15 -0
- package/dist/models/create-document-request-dto.d.ts +101 -0
- package/dist/models/create-document-request-dto.js +31 -0
- package/dist/models/create-estimated-invoice-request-dto.d.ts +33 -9
- package/dist/models/create-estimated-invoice-request-dto.js +8 -3
- package/dist/models/create-estimated-invoice-response-class.d.ts +7 -7
- package/dist/models/create-estimated-invoice-response-class.js +3 -3
- package/dist/models/create-lead-request-dto.d.ts +83 -0
- package/dist/models/create-lead-request-dto.js +15 -0
- package/dist/models/create-lead-response-class.d.ts +25 -0
- package/dist/models/create-lead-response-class.js +15 -0
- package/dist/models/document-class.d.ts +130 -0
- package/dist/models/document-class.js +41 -0
- package/dist/models/get-custom-css-response-class.d.ts +24 -0
- package/dist/models/get-custom-css-response-class.js +15 -0
- package/dist/models/get-lead-response-class.d.ts +25 -0
- package/dist/models/get-lead-response-class.js +15 -0
- package/dist/models/get-public-psp-settings-response-class.d.ts +30 -0
- package/dist/models/get-public-psp-settings-response-class.js +15 -0
- package/dist/models/index.d.ts +48 -15
- package/dist/models/index.js +48 -15
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +30 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +24 -0
- package/dist/models/initiate-braintree-payment-setup-response-class.js +15 -0
- package/dist/models/initiate-lead-response-class.d.ts +24 -0
- package/dist/models/initiate-lead-response-class.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-payment-setup-response-class.d.ts +32 -0
- package/dist/models/initiate-payment-setup-response-class.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +30 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +30 -0
- package/dist/models/initiate-stripe-payment-setup-response-class.js +15 -0
- package/dist/models/insured-object-class.d.ts +67 -0
- package/dist/models/insured-object-class.js +15 -0
- package/dist/models/insured-object-type-class.d.ts +48 -0
- package/dist/models/insured-object-type-class.js +15 -0
- package/dist/models/invoice-class.d.ts +22 -15
- package/dist/models/invoice-class.js +3 -3
- package/dist/models/invoice-item-class.d.ts +17 -17
- package/dist/models/invoice-item-class.js +3 -3
- package/dist/models/invoice-status-class.d.ts +42 -0
- package/dist/models/invoice-status-class.js +15 -0
- package/dist/models/lead-account-class.d.ts +109 -0
- package/dist/models/lead-account-class.js +22 -0
- package/dist/models/lead-bank-account-class.d.ts +30 -0
- package/dist/models/lead-bank-account-class.js +15 -0
- package/dist/models/lead-class.d.ts +96 -0
- package/dist/models/lead-class.js +15 -0
- package/dist/models/lead-policy-class.d.ts +43 -0
- package/dist/models/lead-policy-class.js +15 -0
- package/dist/models/lead-policy-object-class.d.ts +30 -0
- package/dist/models/lead-policy-object-class.js +15 -0
- package/dist/models/list-documents-response-class.d.ts +31 -0
- package/dist/models/list-documents-response-class.js +15 -0
- package/dist/models/list-products-response-class.d.ts +31 -0
- package/dist/models/list-products-response-class.js +15 -0
- package/dist/models/payment-method-class.d.ts +60 -0
- package/dist/models/payment-method-class.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/policy-premium-class.d.ts +55 -0
- package/dist/models/policy-premium-class.js +15 -0
- package/dist/models/policy-premium-item-class.d.ts +73 -0
- package/dist/models/policy-premium-item-class.js +15 -0
- package/dist/models/premium-formula-class.d.ts +72 -0
- package/dist/models/premium-formula-class.js +15 -0
- package/dist/models/premium-override-dto.d.ts +54 -0
- package/dist/models/premium-override-dto.js +26 -0
- package/dist/models/premium-override-request-dto.d.ts +25 -0
- package/dist/models/premium-override-request-dto.js +15 -0
- package/dist/models/product-class.d.ts +74 -0
- package/dist/models/product-class.js +15 -0
- package/dist/models/product-factor-class.d.ts +60 -0
- package/dist/models/product-factor-class.js +15 -0
- package/dist/models/product-field-class.d.ts +132 -0
- package/dist/models/product-field-class.js +15 -0
- package/dist/models/product-version-class.d.ts +61 -0
- package/dist/models/product-version-class.js +22 -0
- package/dist/models/send-notification-request-dto.d.ts +36 -0
- package/dist/models/send-notification-request-dto.js +15 -0
- package/dist/models/send-notification-response-class.d.ts +24 -0
- package/dist/models/send-notification-response-class.js +15 -0
- package/dist/models/update-lead-request-dto.d.ts +83 -0
- package/dist/models/update-lead-request-dto.js +15 -0
- package/dist/models/update-lead-response-class.d.ts +25 -0
- package/dist/models/update-lead-response-class.js +15 -0
- package/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/index.ts +4 -4
- package/models/complete-braintree-payment-setup-request-dto.ts +54 -0
- package/models/complete-payment-setup-request-dto.ts +38 -0
- package/models/complete-payment-setup-response-class.ts +31 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +66 -0
- package/models/create-account-request-dto.ts +143 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-custom-application-request-dto.ts +44 -0
- package/models/create-custom-application-response-class.ts +30 -0
- package/models/create-document-request-dto.ts +111 -0
- package/models/create-estimated-invoice-request-dto.ts +36 -9
- package/models/create-estimated-invoice-response-class.ts +7 -7
- package/models/create-lead-request-dto.ts +89 -0
- package/models/create-lead-response-class.ts +31 -0
- package/models/document-class.ts +141 -0
- package/models/get-custom-css-response-class.ts +30 -0
- package/models/get-lead-response-class.ts +31 -0
- package/models/get-public-psp-settings-response-class.ts +36 -0
- package/models/index.ts +48 -15
- package/models/initiate-braintree-payment-setup-request-dto.ts +36 -0
- package/models/initiate-braintree-payment-setup-response-class.ts +30 -0
- package/models/initiate-lead-response-class.ts +30 -0
- package/models/initiate-payment-setup-request-dto.ts +38 -0
- package/models/initiate-payment-setup-response-class.ts +38 -0
- package/models/initiate-stripe-payment-setup-request-dto.ts +36 -0
- package/models/initiate-stripe-payment-setup-response-class.ts +36 -0
- package/models/insured-object-class.ts +73 -0
- package/models/insured-object-type-class.ts +54 -0
- package/models/invoice-class.ts +22 -15
- package/models/invoice-item-class.ts +17 -17
- package/models/invoice-status-class.ts +48 -0
- package/models/lead-account-class.ts +118 -0
- package/models/lead-bank-account-class.ts +36 -0
- package/models/lead-class.ts +102 -0
- package/models/lead-policy-class.ts +49 -0
- package/models/lead-policy-object-class.ts +36 -0
- package/models/list-documents-response-class.ts +37 -0
- package/models/list-products-response-class.ts +37 -0
- package/models/payment-method-class.ts +66 -0
- package/models/policy-object-request-dto.ts +36 -0
- package/models/policy-premium-class.ts +61 -0
- package/models/policy-premium-item-class.ts +79 -0
- package/models/premium-formula-class.ts +78 -0
- package/models/premium-override-dto.ts +64 -0
- package/models/premium-override-request-dto.ts +31 -0
- package/models/product-class.ts +80 -0
- package/models/product-factor-class.ts +66 -0
- package/models/product-field-class.ts +138 -0
- package/models/product-version-class.ts +70 -0
- package/models/send-notification-request-dto.ts +42 -0
- package/models/send-notification-response-class.ts +30 -0
- package/models/update-lead-request-dto.ts +89 -0
- package/models/update-lead-response-class.ts +31 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/package.json +1 -1
- package/api/correction-invoices-api.ts +0 -165
- package/api/estimated-invoices-api.ts +0 -268
- package/api/initial-invoices-api.ts +0 -165
- package/api/invoices-api.ts +0 -402
- package/dist/api/correction-invoices-api.d.ts +0 -93
- package/dist/api/correction-invoices-api.js +0 -224
- package/dist/api/estimated-invoices-api.d.ts +0 -146
- package/dist/api/estimated-invoices-api.js +0 -313
- package/dist/api/initial-invoices-api.d.ts +0 -93
- package/dist/api/initial-invoices-api.js +0 -224
- package/dist/api/invoices-api.d.ts +0 -234
- package/dist/api/invoices-api.js +0 -373
- package/dist/api/recurring-invoices-api.d.ts +0 -93
- package/dist/models/create-correction-invoices-response-class.d.ts +0 -25
- package/dist/models/create-custom-estimated-invoice-request-dto.d.ts +0 -35
- package/dist/models/create-custom-estimated-invoice-response-class.d.ts +0 -24
- package/dist/models/create-invoice-request-dto.d.ts +0 -75
- package/dist/models/create-invoice-request-dto.js +0 -24
- package/dist/models/create-invoice-response-class.d.ts +0 -25
- package/dist/models/list-invoices-response-class.d.ts +0 -31
- package/dist/models/list-policies-billing-dates-response-class.d.ts +0 -30
- package/dist/models/list-policies-billing-dates-response-class.js +0 -15
- package/dist/models/list-request-dto.d.ts +0 -54
- package/dist/models/list-request-dto.js +0 -15
- package/dist/models/policy-dto.d.ts +0 -85
- package/dist/models/policy-dto.js +0 -15
- package/dist/models/policy-object-dto.d.ts +0 -42
- package/dist/models/policy-object-dto.js +0 -15
- package/dist/models/policy-premium-dto.d.ts +0 -43
- package/dist/models/policy-premium-dto.js +0 -15
- package/dist/models/policy-premium-item-dto.d.ts +0 -49
- package/dist/models/policy-premium-item-dto.js +0 -15
- package/dist/models/policy-version-dto.d.ts +0 -55
- package/dist/models/policy-version-dto.js +0 -15
- package/dist/models/premium-formula-dto.d.ts +0 -72
- package/dist/models/premium-formula-dto.js +0 -15
- package/dist/models/timeslice-dto.d.ts +0 -62
- package/dist/models/timeslice-dto.js +0 -15
- package/models/create-correction-invoices-response-class.ts +0 -31
- package/models/create-custom-estimated-invoice-request-dto.ts +0 -44
- package/models/create-custom-estimated-invoice-response-class.ts +0 -30
- package/models/create-invoice-request-dto.ts +0 -84
- package/models/create-invoice-response-class.ts +0 -31
- package/models/list-invoices-response-class.ts +0 -37
- package/models/list-policies-billing-dates-response-class.ts +0 -36
- package/models/list-request-dto.ts +0 -60
- package/models/policy-dto.ts +0 -91
- package/models/policy-object-dto.ts +0 -48
- package/models/policy-premium-dto.ts +0 -49
- package/models/policy-premium-item-dto.ts +0 -55
- package/models/policy-version-dto.ts +0 -61
- package/models/premium-formula-dto.ts +0 -78
- package/models/timeslice-dto.ts +0 -68
|
@@ -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 });
|
|
@@ -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 InitiateStripePaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateStripePaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the lead that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateStripePaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'leadCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the account that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InitiateStripePaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'accountCode'?: 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 });
|
|
@@ -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 InitiateStripePaymentSetupResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InitiateStripePaymentSetupResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Identifier used by the payment service provider to create a payment method.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitiateStripePaymentSetupResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'pspSecretToken': string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the customer on Stripe.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InitiateStripePaymentSetupResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'pspCustomerId': 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 });
|
|
@@ -0,0 +1,67 @@
|
|
|
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
|
+
import { ProductFieldClass } from './product-field-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface InsuredObjectClass
|
|
17
|
+
*/
|
|
18
|
+
export interface InsuredObjectClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof InsuredObjectClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier referencing the product version.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof InsuredObjectClass
|
|
29
|
+
*/
|
|
30
|
+
'productVersionId': number;
|
|
31
|
+
/**
|
|
32
|
+
* Insured object name
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof InsuredObjectClass
|
|
35
|
+
*/
|
|
36
|
+
'name': string;
|
|
37
|
+
/**
|
|
38
|
+
* Insured object label
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof InsuredObjectClass
|
|
41
|
+
*/
|
|
42
|
+
'label': string;
|
|
43
|
+
/**
|
|
44
|
+
* Unique identifier referencing the insured object type.
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof InsuredObjectClass
|
|
47
|
+
*/
|
|
48
|
+
'insuredObjectTypeId': number;
|
|
49
|
+
/**
|
|
50
|
+
* Product fields of insured object. Product fields are also called Variables on the Admin website. They are automatically created according to the product factors. Those can then be used in the formula for the premium calculation. It is possible to add new ones.
|
|
51
|
+
* @type {Array<ProductFieldClass>}
|
|
52
|
+
* @memberof InsuredObjectClass
|
|
53
|
+
*/
|
|
54
|
+
'productFields': Array<ProductFieldClass>;
|
|
55
|
+
/**
|
|
56
|
+
* Time at which the object was created.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof InsuredObjectClass
|
|
59
|
+
*/
|
|
60
|
+
'createdAt': string;
|
|
61
|
+
/**
|
|
62
|
+
* Time at which the object was updated.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof InsuredObjectClass
|
|
65
|
+
*/
|
|
66
|
+
'updatedAt': string;
|
|
67
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,48 @@
|
|
|
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 InsuredObjectTypeClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InsuredObjectTypeClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof InsuredObjectTypeClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Insured object type name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InsuredObjectTypeClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InsuredObjectTypeClass
|
|
34
|
+
*/
|
|
35
|
+
'slug': string;
|
|
36
|
+
/**
|
|
37
|
+
* Time at which the object was created.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InsuredObjectTypeClass
|
|
40
|
+
*/
|
|
41
|
+
'createdAt': string;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was updated.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof InsuredObjectTypeClass
|
|
46
|
+
*/
|
|
47
|
+
'updatedAt': string;
|
|
48
|
+
}
|
|
@@ -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 });
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* The
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { InvoiceItemClass } from './invoice-item-class';
|
|
13
|
+
import { InvoiceStatusClass } from './invoice-status-class';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
@@ -17,13 +18,13 @@ import { InvoiceItemClass } from './invoice-item-class';
|
|
|
17
18
|
*/
|
|
18
19
|
export interface InvoiceClass {
|
|
19
20
|
/**
|
|
20
|
-
*
|
|
21
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
22
|
* @type {number}
|
|
22
23
|
* @memberof InvoiceClass
|
|
23
24
|
*/
|
|
24
25
|
'id': number;
|
|
25
26
|
/**
|
|
26
|
-
* policy
|
|
27
|
+
* Unique identifier of the policy that this object belongs to.
|
|
27
28
|
* @type {string}
|
|
28
29
|
* @memberof InvoiceClass
|
|
29
30
|
*/
|
|
@@ -35,31 +36,31 @@ export interface InvoiceClass {
|
|
|
35
36
|
*/
|
|
36
37
|
'accountNumber': string;
|
|
37
38
|
/**
|
|
38
|
-
*
|
|
39
|
+
* Unique identifier for the object.
|
|
39
40
|
* @type {string}
|
|
40
41
|
* @memberof InvoiceClass
|
|
41
42
|
*/
|
|
42
43
|
'code': string;
|
|
43
44
|
/**
|
|
44
|
-
* Invoice type
|
|
45
|
+
* Invoice type.
|
|
45
46
|
* @type {string}
|
|
46
47
|
* @memberof InvoiceClass
|
|
47
48
|
*/
|
|
48
49
|
'type': string;
|
|
49
50
|
/**
|
|
50
|
-
* Invoice number
|
|
51
|
+
* Invoice number.
|
|
51
52
|
* @type {string}
|
|
52
53
|
* @memberof InvoiceClass
|
|
53
54
|
*/
|
|
54
55
|
'invoiceNumber': string;
|
|
55
56
|
/**
|
|
56
|
-
* Net amount
|
|
57
|
+
* Net amount.
|
|
57
58
|
* @type {number}
|
|
58
59
|
* @memberof InvoiceClass
|
|
59
60
|
*/
|
|
60
61
|
'netAmount': number;
|
|
61
62
|
/**
|
|
62
|
-
* Tax amount
|
|
63
|
+
* Tax amount.
|
|
63
64
|
* @type {number}
|
|
64
65
|
* @memberof InvoiceClass
|
|
65
66
|
*/
|
|
@@ -71,25 +72,25 @@ export interface InvoiceClass {
|
|
|
71
72
|
*/
|
|
72
73
|
'creditAmount': number;
|
|
73
74
|
/**
|
|
74
|
-
* Gross amount
|
|
75
|
+
* Gross amount.
|
|
75
76
|
* @type {number}
|
|
76
77
|
* @memberof InvoiceClass
|
|
77
78
|
*/
|
|
78
79
|
'grossAmount': number;
|
|
79
80
|
/**
|
|
80
|
-
*
|
|
81
|
+
* It shows the status of the invoice that is paid or open.
|
|
81
82
|
* @type {string}
|
|
82
83
|
* @memberof InvoiceClass
|
|
83
84
|
*/
|
|
84
85
|
'status': string;
|
|
85
86
|
/**
|
|
86
|
-
* Invoice due date
|
|
87
|
+
* Invoice due date.
|
|
87
88
|
* @type {string}
|
|
88
89
|
* @memberof InvoiceClass
|
|
89
90
|
*/
|
|
90
91
|
'dueDate': string;
|
|
91
92
|
/**
|
|
92
|
-
*
|
|
93
|
+
* Metadata contains extra information that the invoice would need for specific cases.
|
|
93
94
|
* @type {object}
|
|
94
95
|
* @memberof InvoiceClass
|
|
95
96
|
*/
|
|
@@ -107,7 +108,7 @@ export interface InvoiceClass {
|
|
|
107
108
|
*/
|
|
108
109
|
'billingIntervalTo': string;
|
|
109
110
|
/**
|
|
110
|
-
*
|
|
111
|
+
* Time at which the object was created.
|
|
111
112
|
* @type {string}
|
|
112
113
|
* @memberof InvoiceClass
|
|
113
114
|
*/
|
|
@@ -118,4 +119,10 @@ export interface InvoiceClass {
|
|
|
118
119
|
* @memberof InvoiceClass
|
|
119
120
|
*/
|
|
120
121
|
'invoiceItems': Array<InvoiceItemClass>;
|
|
122
|
+
/**
|
|
123
|
+
* Invoice statuses
|
|
124
|
+
* @type {Array<InvoiceStatusClass>}
|
|
125
|
+
* @memberof InvoiceClass
|
|
126
|
+
*/
|
|
127
|
+
'statuses': Array<InvoiceStatusClass>;
|
|
121
128
|
}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* The
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* The
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -16,31 +16,31 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface InvoiceItemClass {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
20
|
* @type {number}
|
|
21
21
|
* @memberof InvoiceItemClass
|
|
22
22
|
*/
|
|
23
23
|
'id': number;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Unique identifier referencing the premium formula.
|
|
26
26
|
* @type {number}
|
|
27
27
|
* @memberof InvoiceItemClass
|
|
28
28
|
*/
|
|
29
29
|
'premiumFormulaId': number;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Product name.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof InvoiceItemClass
|
|
34
34
|
*/
|
|
35
35
|
'name': string;
|
|
36
36
|
/**
|
|
37
|
-
* tax
|
|
37
|
+
* Unique identifier of the tax that this object belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof InvoiceItemClass
|
|
40
40
|
*/
|
|
41
41
|
'taxCode': string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* This is unit of Premium. Premium units are determined based on day, week, month and year.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof InvoiceItemClass
|
|
46
46
|
*/
|
|
@@ -52,55 +52,55 @@ export interface InvoiceItemClass {
|
|
|
52
52
|
*/
|
|
53
53
|
'group': string;
|
|
54
54
|
/**
|
|
55
|
-
* Item quantity
|
|
55
|
+
* Item quantity.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof InvoiceItemClass
|
|
58
58
|
*/
|
|
59
59
|
'quantity': number;
|
|
60
60
|
/**
|
|
61
|
-
* Item price per unit
|
|
61
|
+
* Item price per unit.
|
|
62
62
|
* @type {number}
|
|
63
63
|
* @memberof InvoiceItemClass
|
|
64
64
|
*/
|
|
65
65
|
'pricePerUnit': number;
|
|
66
66
|
/**
|
|
67
|
-
* Item tax rate
|
|
67
|
+
* Item tax rate.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof InvoiceItemClass
|
|
70
70
|
*/
|
|
71
71
|
'taxRate': number;
|
|
72
72
|
/**
|
|
73
|
-
* Net amount
|
|
73
|
+
* Net amount.
|
|
74
74
|
* @type {number}
|
|
75
75
|
* @memberof InvoiceItemClass
|
|
76
76
|
*/
|
|
77
77
|
'netAmount': number;
|
|
78
78
|
/**
|
|
79
|
-
* Net tax amount
|
|
79
|
+
* Net tax amount.
|
|
80
80
|
* @type {number}
|
|
81
81
|
* @memberof InvoiceItemClass
|
|
82
82
|
*/
|
|
83
83
|
'taxAmount': number;
|
|
84
84
|
/**
|
|
85
|
-
* Gross amount
|
|
85
|
+
* Gross amount.
|
|
86
86
|
* @type {number}
|
|
87
87
|
* @memberof InvoiceItemClass
|
|
88
88
|
*/
|
|
89
89
|
'grossAmount': number;
|
|
90
90
|
/**
|
|
91
|
-
* Credit amount
|
|
91
|
+
* Credit amount.
|
|
92
92
|
* @type {number}
|
|
93
93
|
* @memberof InvoiceItemClass
|
|
94
94
|
*/
|
|
95
95
|
'creditAmount': number;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* This is the date from which the invoice item interval starts.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof InvoiceItemClass
|
|
100
100
|
*/
|
|
101
101
|
'billingIntervalFrom': string;
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
103
|
+
* This is the date that the invoice item interval ends.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof InvoiceItemClass
|
|
106
106
|
*/
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* The
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -0,0 +1,42 @@
|
|
|
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 InvoiceStatusClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InvoiceStatusClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof InvoiceStatusClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier referencing the invoice.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof InvoiceStatusClass
|
|
28
|
+
*/
|
|
29
|
+
'invoiceId': number;
|
|
30
|
+
/**
|
|
31
|
+
* Invoice type
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InvoiceStatusClass
|
|
34
|
+
*/
|
|
35
|
+
'status': string;
|
|
36
|
+
/**
|
|
37
|
+
* Time at which the object was created.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InvoiceStatusClass
|
|
40
|
+
*/
|
|
41
|
+
'createdAt': string;
|
|
42
|
+
}
|
|
@@ -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 });
|