@emilgroup/payment-sdk 1.13.1-beta.82 → 1.13.1-beta.84
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 +8 -0
- package/README.md +2 -2
- package/api/exceeding-credits-api.ts +349 -0
- package/api/policy-payment-methods-api.ts +165 -0
- package/api.ts +4 -0
- package/dist/api/exceeding-credits-api.d.ts +206 -0
- package/dist/api/exceeding-credits-api.js +352 -0
- package/dist/api/policy-payment-methods-api.d.ts +97 -0
- package/dist/api/policy-payment-methods-api.js +224 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/billing-address-dto.d.ts +8 -2
- package/dist/models/create-policy-payment-method-request-dto.d.ts +30 -0
- package/dist/models/create-policy-payment-method-request-dto.js +15 -0
- package/dist/models/create-policy-payment-method-response-class.d.ts +25 -0
- package/dist/models/create-policy-payment-method-response-class.js +15 -0
- package/dist/models/exceeding-credit-class.d.ts +116 -0
- package/dist/models/exceeding-credit-class.js +29 -0
- package/dist/models/get-exceeding-credit-response-class.d.ts +25 -0
- package/dist/models/get-exceeding-credit-response-class.js +15 -0
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/dist/models/list-exceeding-credits-response-class.d.ts +31 -0
- package/dist/models/list-exceeding-credits-response-class.js +15 -0
- package/dist/models/policy-payment-method-class.d.ts +73 -0
- package/dist/models/policy-payment-method-class.js +15 -0
- package/models/billing-address-dto.ts +8 -2
- package/models/create-policy-payment-method-request-dto.ts +36 -0
- package/models/create-policy-payment-method-response-class.ts +31 -0
- package/models/exceeding-credit-class.ts +125 -0
- package/models/get-exceeding-credit-response-class.ts +31 -0
- package/models/index.ts +6 -0
- package/models/list-exceeding-credits-response-class.ts +37 -0
- package/models/policy-payment-method-class.ts +79 -0
- package/package.json +1 -1
package/dist/models/index.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './create-payment-reminder-request-dto';
|
|
|
26
26
|
export * from './create-payment-reminder-response-class';
|
|
27
27
|
export * from './create-payment-request-dto';
|
|
28
28
|
export * from './create-payment-response-class';
|
|
29
|
+
export * from './create-policy-payment-method-request-dto';
|
|
30
|
+
export * from './create-policy-payment-method-response-class';
|
|
29
31
|
export * from './create-psp-payment-method-request-dto';
|
|
30
32
|
export * from './create-refund-request-dto';
|
|
31
33
|
export * from './create-refund-response-class';
|
|
@@ -34,11 +36,13 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
34
36
|
export * from './deactivate-payment-reminder-request-dto';
|
|
35
37
|
export * from './deactivate-payment-reminder-response-class';
|
|
36
38
|
export * from './deactivated-payment-reminder-class';
|
|
39
|
+
export * from './exceeding-credit-class';
|
|
37
40
|
export * from './financial-account-class';
|
|
38
41
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
39
42
|
export * from './get-bank-account-response-class';
|
|
40
43
|
export * from './get-bank-order-response-class';
|
|
41
44
|
export * from './get-bank-transactions-response-class';
|
|
45
|
+
export * from './get-exceeding-credit-response-class';
|
|
42
46
|
export * from './get-payment-method-response-class';
|
|
43
47
|
export * from './get-payment-reminder-response-class';
|
|
44
48
|
export * from './get-payment-response-class';
|
|
@@ -63,6 +67,7 @@ export * from './link-bank-transactions-response-class';
|
|
|
63
67
|
export * from './list-bank-accounts-response-class';
|
|
64
68
|
export * from './list-bank-orders-response-class';
|
|
65
69
|
export * from './list-bank-transactions-response-class';
|
|
70
|
+
export * from './list-exceeding-credits-response-class';
|
|
66
71
|
export * from './list-payment-methods-response-class';
|
|
67
72
|
export * from './list-payment-reminders-response-class';
|
|
68
73
|
export * from './list-payments-response-class';
|
|
@@ -72,6 +77,7 @@ export * from './payment-class';
|
|
|
72
77
|
export * from './payment-class-without-expand-properties';
|
|
73
78
|
export * from './payment-method-class';
|
|
74
79
|
export * from './payment-reminder-class';
|
|
80
|
+
export * from './policy-payment-method-class';
|
|
75
81
|
export * from './primary-bank-account-response-class';
|
|
76
82
|
export * from './refund-class';
|
|
77
83
|
export * from './refund-item-class';
|
package/dist/models/index.js
CHANGED
|
@@ -42,6 +42,8 @@ __exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
|
42
42
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
43
43
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
44
44
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
45
|
+
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
46
|
+
__exportStar(require("./create-policy-payment-method-response-class"), exports);
|
|
45
47
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
46
48
|
__exportStar(require("./create-refund-request-dto"), exports);
|
|
47
49
|
__exportStar(require("./create-refund-response-class"), exports);
|
|
@@ -50,11 +52,13 @@ __exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
|
50
52
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
51
53
|
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
52
54
|
__exportStar(require("./deactivated-payment-reminder-class"), exports);
|
|
55
|
+
__exportStar(require("./exceeding-credit-class"), exports);
|
|
53
56
|
__exportStar(require("./financial-account-class"), exports);
|
|
54
57
|
__exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
|
|
55
58
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
56
59
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
57
60
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
61
|
+
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
58
62
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
59
63
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
60
64
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
@@ -79,6 +83,7 @@ __exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
|
79
83
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
80
84
|
__exportStar(require("./list-bank-orders-response-class"), exports);
|
|
81
85
|
__exportStar(require("./list-bank-transactions-response-class"), exports);
|
|
86
|
+
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
82
87
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
83
88
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
84
89
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
@@ -88,6 +93,7 @@ __exportStar(require("./payment-class"), exports);
|
|
|
88
93
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
89
94
|
__exportStar(require("./payment-method-class"), exports);
|
|
90
95
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
96
|
+
__exportStar(require("./policy-payment-method-class"), exports);
|
|
91
97
|
__exportStar(require("./primary-bank-account-response-class"), exports);
|
|
92
98
|
__exportStar(require("./refund-class"), exports);
|
|
93
99
|
__exportStar(require("./refund-item-class"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { ExceedingCreditClass } from './exceeding-credit-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListExceedingCreditsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListExceedingCreditsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of exceeding credits.
|
|
21
|
+
* @type {Array<ExceedingCreditClass>}
|
|
22
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ExceedingCreditClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { PaymentMethodClass } from './payment-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PolicyPaymentMethodClass
|
|
17
|
+
*/
|
|
18
|
+
export interface PolicyPaymentMethodClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof PolicyPaymentMethodClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PolicyPaymentMethodClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* The unique identifier of the policy.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PolicyPaymentMethodClass
|
|
35
|
+
*/
|
|
36
|
+
'policyCode': string;
|
|
37
|
+
/**
|
|
38
|
+
* The active status of the policy payment method.
|
|
39
|
+
* @type {boolean}
|
|
40
|
+
* @memberof PolicyPaymentMethodClass
|
|
41
|
+
*/
|
|
42
|
+
'isActive': boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Time at which the object was created.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PolicyPaymentMethodClass
|
|
47
|
+
*/
|
|
48
|
+
'createdAt': string;
|
|
49
|
+
/**
|
|
50
|
+
* Time at which the object was updated.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PolicyPaymentMethodClass
|
|
53
|
+
*/
|
|
54
|
+
'updatedAt': string;
|
|
55
|
+
/**
|
|
56
|
+
* Identifier of the user who created the record.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PolicyPaymentMethodClass
|
|
59
|
+
*/
|
|
60
|
+
'createdBy': string;
|
|
61
|
+
/**
|
|
62
|
+
* Identifier of the user who last updated the record.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof PolicyPaymentMethodClass
|
|
65
|
+
*/
|
|
66
|
+
'updatedBy': string;
|
|
67
|
+
/**
|
|
68
|
+
* The payment method associated with the policy payment method.
|
|
69
|
+
* @type {PaymentMethodClass}
|
|
70
|
+
* @memberof PolicyPaymentMethodClass
|
|
71
|
+
*/
|
|
72
|
+
'paymentMethod': PaymentMethodClass;
|
|
73
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 });
|
|
@@ -21,11 +21,17 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface BillingAddressDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* First name for billing address
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof BillingAddressDto
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'firstName': string;
|
|
29
|
+
/**
|
|
30
|
+
* Last name for billing address
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillingAddressDto
|
|
33
|
+
*/
|
|
34
|
+
'lastName': string;
|
|
29
35
|
/**
|
|
30
36
|
* Street name for billing address
|
|
31
37
|
* @type {string}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 CreatePolicyPaymentMethodRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePolicyPaymentMethodRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* The policy code.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreatePolicyPaymentMethodRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'policyCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* The payment method code.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePolicyPaymentMethodRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'paymentMethodCode': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { PolicyPaymentMethodClass } from './policy-payment-method-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreatePolicyPaymentMethodResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreatePolicyPaymentMethodResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The policy payment method.
|
|
26
|
+
* @type {PolicyPaymentMethodClass}
|
|
27
|
+
* @memberof CreatePolicyPaymentMethodResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'policyPaymentMethod': PolicyPaymentMethodClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 ExceedingCreditClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ExceedingCreditClass {
|
|
23
|
+
/**
|
|
24
|
+
* The amount of the credit
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ExceedingCreditClass
|
|
27
|
+
*/
|
|
28
|
+
'amount': number;
|
|
29
|
+
/**
|
|
30
|
+
* The currency of the credit
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ExceedingCreditClass
|
|
33
|
+
*/
|
|
34
|
+
'currency'?: ExceedingCreditClassCurrencyEnum;
|
|
35
|
+
/**
|
|
36
|
+
* The bank transaction code of the credit
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ExceedingCreditClass
|
|
39
|
+
*/
|
|
40
|
+
'bankTransactionCode': string;
|
|
41
|
+
/**
|
|
42
|
+
* The description of the credit
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ExceedingCreditClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* The invoice code of the credit
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ExceedingCreditClass
|
|
51
|
+
*/
|
|
52
|
+
'invoiceCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* The invoice number of the credit
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ExceedingCreditClass
|
|
57
|
+
*/
|
|
58
|
+
'invoiceNumber': string;
|
|
59
|
+
/**
|
|
60
|
+
* The policy number of the credit
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ExceedingCreditClass
|
|
63
|
+
*/
|
|
64
|
+
'policyNumber': string;
|
|
65
|
+
/**
|
|
66
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof ExceedingCreditClass
|
|
69
|
+
*/
|
|
70
|
+
'id': number;
|
|
71
|
+
/**
|
|
72
|
+
* The code of the credit
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ExceedingCreditClass
|
|
75
|
+
*/
|
|
76
|
+
'code': string;
|
|
77
|
+
/**
|
|
78
|
+
* The policy code of the credit
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ExceedingCreditClass
|
|
81
|
+
*/
|
|
82
|
+
'policyCode': string;
|
|
83
|
+
/**
|
|
84
|
+
* Time at which the object was created.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ExceedingCreditClass
|
|
87
|
+
*/
|
|
88
|
+
'createdAt': string;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was updated.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ExceedingCreditClass
|
|
93
|
+
*/
|
|
94
|
+
'updatedAt': string;
|
|
95
|
+
/**
|
|
96
|
+
* Identifier of the user who created the record.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ExceedingCreditClass
|
|
99
|
+
*/
|
|
100
|
+
'createdBy': string;
|
|
101
|
+
/**
|
|
102
|
+
* Identifier of the user who last updated the record.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof ExceedingCreditClass
|
|
105
|
+
*/
|
|
106
|
+
'updatedBy': string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export const ExceedingCreditClassCurrencyEnum = {
|
|
110
|
+
Eur: 'EUR',
|
|
111
|
+
Usd: 'USD',
|
|
112
|
+
Gbp: 'GBP',
|
|
113
|
+
Chf: 'CHF',
|
|
114
|
+
Pln: 'PLN',
|
|
115
|
+
Aud: 'AUD',
|
|
116
|
+
Cad: 'CAD',
|
|
117
|
+
Ddk: 'DDK',
|
|
118
|
+
Huf: 'HUF',
|
|
119
|
+
Nok: 'NOK',
|
|
120
|
+
Sek: 'SEK'
|
|
121
|
+
} as const;
|
|
122
|
+
|
|
123
|
+
export type ExceedingCreditClassCurrencyEnum = typeof ExceedingCreditClassCurrencyEnum[keyof typeof ExceedingCreditClassCurrencyEnum];
|
|
124
|
+
|
|
125
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { ExceedingCreditClass } from './exceeding-credit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetExceedingCreditResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetExceedingCreditResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Exceeding credit
|
|
26
|
+
* @type {ExceedingCreditClass}
|
|
27
|
+
* @memberof GetExceedingCreditResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'exceedingCredit': ExceedingCreditClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './create-payment-reminder-request-dto';
|
|
|
26
26
|
export * from './create-payment-reminder-response-class';
|
|
27
27
|
export * from './create-payment-request-dto';
|
|
28
28
|
export * from './create-payment-response-class';
|
|
29
|
+
export * from './create-policy-payment-method-request-dto';
|
|
30
|
+
export * from './create-policy-payment-method-response-class';
|
|
29
31
|
export * from './create-psp-payment-method-request-dto';
|
|
30
32
|
export * from './create-refund-request-dto';
|
|
31
33
|
export * from './create-refund-response-class';
|
|
@@ -34,11 +36,13 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
34
36
|
export * from './deactivate-payment-reminder-request-dto';
|
|
35
37
|
export * from './deactivate-payment-reminder-response-class';
|
|
36
38
|
export * from './deactivated-payment-reminder-class';
|
|
39
|
+
export * from './exceeding-credit-class';
|
|
37
40
|
export * from './financial-account-class';
|
|
38
41
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
39
42
|
export * from './get-bank-account-response-class';
|
|
40
43
|
export * from './get-bank-order-response-class';
|
|
41
44
|
export * from './get-bank-transactions-response-class';
|
|
45
|
+
export * from './get-exceeding-credit-response-class';
|
|
42
46
|
export * from './get-payment-method-response-class';
|
|
43
47
|
export * from './get-payment-reminder-response-class';
|
|
44
48
|
export * from './get-payment-response-class';
|
|
@@ -63,6 +67,7 @@ export * from './link-bank-transactions-response-class';
|
|
|
63
67
|
export * from './list-bank-accounts-response-class';
|
|
64
68
|
export * from './list-bank-orders-response-class';
|
|
65
69
|
export * from './list-bank-transactions-response-class';
|
|
70
|
+
export * from './list-exceeding-credits-response-class';
|
|
66
71
|
export * from './list-payment-methods-response-class';
|
|
67
72
|
export * from './list-payment-reminders-response-class';
|
|
68
73
|
export * from './list-payments-response-class';
|
|
@@ -72,6 +77,7 @@ export * from './payment-class';
|
|
|
72
77
|
export * from './payment-class-without-expand-properties';
|
|
73
78
|
export * from './payment-method-class';
|
|
74
79
|
export * from './payment-reminder-class';
|
|
80
|
+
export * from './policy-payment-method-class';
|
|
75
81
|
export * from './primary-bank-account-response-class';
|
|
76
82
|
export * from './refund-class';
|
|
77
83
|
export * from './refund-item-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { ExceedingCreditClass } from './exceeding-credit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListExceedingCreditsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListExceedingCreditsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of exceeding credits.
|
|
26
|
+
* @type {Array<ExceedingCreditClass>}
|
|
27
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ExceedingCreditClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { PaymentMethodClass } from './payment-method-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PolicyPaymentMethodClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PolicyPaymentMethodClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PolicyPaymentMethodClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PolicyPaymentMethodClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* The unique identifier of the policy.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PolicyPaymentMethodClass
|
|
40
|
+
*/
|
|
41
|
+
'policyCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* The active status of the policy payment method.
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof PolicyPaymentMethodClass
|
|
46
|
+
*/
|
|
47
|
+
'isActive': boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was created.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PolicyPaymentMethodClass
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Time at which the object was updated.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PolicyPaymentMethodClass
|
|
58
|
+
*/
|
|
59
|
+
'updatedAt': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who created the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyPaymentMethodClass
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who last updated the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PolicyPaymentMethodClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* The payment method associated with the policy payment method.
|
|
74
|
+
* @type {PaymentMethodClass}
|
|
75
|
+
* @memberof PolicyPaymentMethodClass
|
|
76
|
+
*/
|
|
77
|
+
'paymentMethod': PaymentMethodClass;
|
|
78
|
+
}
|
|
79
|
+
|