@emilgroup/payment-sdk 1.14.1-beta.67 → 1.14.1-beta.69
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 +11 -1
- package/README.md +2 -2
- package/api/bank-orders-api.ts +24 -24
- package/api/tenant-bank-account-api.ts +8 -8
- package/dist/api/bank-orders-api.d.ts +24 -24
- package/dist/api/bank-orders-api.js +18 -18
- package/dist/api/tenant-bank-account-api.d.ts +8 -8
- package/dist/api/tenant-bank-account-api.js +6 -6
- package/dist/models/bank-order-class.d.ts +6 -6
- package/dist/models/bank-order-entity.d.ts +156 -0
- package/dist/models/bank-order-entity.js +29 -0
- package/dist/models/bank-order-xml-file-entity.d.ts +85 -0
- package/dist/models/bank-order-xml-file-entity.js +15 -0
- package/dist/models/bank-transaction-entity.d.ts +179 -0
- package/dist/models/{financial-account-class.js → bank-transaction-entity.js} +4 -8
- package/dist/models/bank-transaction-invoice-entity.d.ts +98 -0
- package/dist/models/bank-transaction-invoice-entity.js +15 -0
- package/dist/models/create-bank-order-request-dto.d.ts +2 -2
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +27 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +8 -0
- package/dist/models/credit-allocation-entity.d.ts +135 -0
- package/dist/models/credit-allocation-entity.js +34 -0
- package/dist/models/exceeding-credit-entity.d.ts +148 -0
- package/dist/models/exceeding-credit-entity.js +29 -0
- package/dist/models/index.d.ts +11 -1
- package/dist/models/index.js +11 -1
- package/dist/models/invoice-match-suggestion-entity.d.ts +103 -0
- package/dist/models/invoice-match-suggestion-entity.js +15 -0
- package/dist/models/payment-entity.d.ts +133 -0
- package/dist/models/payment-entity.js +15 -0
- package/dist/models/suggestion-generation-progress-entity.d.ts +86 -0
- package/dist/models/suggestion-generation-progress-entity.js +22 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +26 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +8 -0
- package/dist/models/tenant-bank-account-class.d.ts +26 -0
- package/dist/models/tenant-bank-account-class.js +8 -0
- package/dist/models/tenant-bank-account-entity.d.ts +153 -0
- package/dist/models/tenant-bank-account-entity.js +23 -0
- package/dist/models/transaction-entity.d.ts +112 -0
- package/dist/models/transaction-entity.js +23 -0
- package/dist/models/update-bank-order-request-dto.d.ts +2 -2
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +27 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +8 -0
- package/models/bank-order-class.ts +6 -6
- package/models/bank-order-entity.ts +166 -0
- package/models/bank-order-xml-file-entity.ts +91 -0
- package/models/bank-transaction-entity.ts +188 -0
- package/models/bank-transaction-invoice-entity.ts +104 -0
- package/models/create-bank-order-request-dto.ts +2 -2
- package/models/create-tenant-bank-account-request-dto.ts +30 -1
- package/models/credit-allocation-entity.ts +145 -0
- package/models/exceeding-credit-entity.ts +157 -0
- package/models/index.ts +11 -1
- package/models/invoice-match-suggestion-entity.ts +109 -0
- package/models/payment-entity.ts +139 -0
- package/models/suggestion-generation-progress-entity.ts +95 -0
- package/models/tenant-bank-account-class-without-expand-properties.ts +29 -0
- package/models/tenant-bank-account-class.ts +29 -0
- package/models/tenant-bank-account-entity.ts +162 -0
- package/models/transaction-entity.ts +121 -0
- package/models/update-bank-order-request-dto.ts +2 -2
- package/models/update-tenant-bank-account-rest-request-dto.ts +30 -1
- package/package.json +1 -1
- package/dist/models/financial-account-class.d.ts +0 -111
- package/models/financial-account-class.ts +0 -120
|
@@ -0,0 +1,98 @@
|
|
|
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 { BankTransactionEntity } from './bank-transaction-entity';
|
|
13
|
+
import { TransactionEntity } from './transaction-entity';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface BankTransactionInvoiceEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface BankTransactionInvoiceEntity {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof BankTransactionInvoiceEntity
|
|
24
|
+
*/
|
|
25
|
+
'id': number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof BankTransactionInvoiceEntity
|
|
30
|
+
*/
|
|
31
|
+
'code': string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof BankTransactionInvoiceEntity
|
|
36
|
+
*/
|
|
37
|
+
'bankTransactionId': number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof BankTransactionInvoiceEntity
|
|
42
|
+
*/
|
|
43
|
+
'invoiceCode': string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof BankTransactionInvoiceEntity
|
|
48
|
+
*/
|
|
49
|
+
'invoiceNumber': string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof BankTransactionInvoiceEntity
|
|
54
|
+
*/
|
|
55
|
+
'owner': string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof BankTransactionInvoiceEntity
|
|
60
|
+
*/
|
|
61
|
+
'tenantHierarchy': string;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof BankTransactionInvoiceEntity
|
|
66
|
+
*/
|
|
67
|
+
'linkedTransactionId'?: number;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {TransactionEntity}
|
|
71
|
+
* @memberof BankTransactionInvoiceEntity
|
|
72
|
+
*/
|
|
73
|
+
'linkedTransaction'?: TransactionEntity;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {BankTransactionEntity}
|
|
77
|
+
* @memberof BankTransactionInvoiceEntity
|
|
78
|
+
*/
|
|
79
|
+
'bankTransaction': BankTransactionEntity;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof BankTransactionInvoiceEntity
|
|
84
|
+
*/
|
|
85
|
+
'createdAt': string;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof BankTransactionInvoiceEntity
|
|
90
|
+
*/
|
|
91
|
+
'updatedAt': string;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof BankTransactionInvoiceEntity
|
|
96
|
+
*/
|
|
97
|
+
'deletedAt': string;
|
|
98
|
+
}
|
|
@@ -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 });
|
|
@@ -34,11 +34,11 @@ export interface CreateBankOrderRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'description'?: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Tenant bank account code associated with the bank order.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreateBankOrderRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
41
|
+
'tenantBankAccountCode': string;
|
|
42
42
|
/**
|
|
43
43
|
* List of entity codes associated with bank order.
|
|
44
44
|
* @type {Array<string>}
|
|
@@ -34,7 +34,7 @@ export interface CreateTenantBankAccountRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'iban': string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Number of the booking account this bank account belongs to
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreateTenantBankAccountRequestDto
|
|
40
40
|
*/
|
|
@@ -69,4 +69,30 @@ export interface CreateTenantBankAccountRequestDto {
|
|
|
69
69
|
* @memberof CreateTenantBankAccountRequestDto
|
|
70
70
|
*/
|
|
71
71
|
'country': string;
|
|
72
|
+
/**
|
|
73
|
+
* SEPA Pain version
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'sepaPainVersion': CreateTenantBankAccountRequestDtoSepaPainVersionEnum;
|
|
78
|
+
/**
|
|
79
|
+
* Creditor ID
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'creditorId': string;
|
|
84
|
+
/**
|
|
85
|
+
* Indicates whether this is the default bank account for the tenant
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'isDefault': boolean;
|
|
72
90
|
}
|
|
91
|
+
export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
|
|
92
|
+
readonly _00302: "pain.008.003.02";
|
|
93
|
+
readonly _00802: "pain.008.008.02";
|
|
94
|
+
readonly _00109: "pain.008.001.09";
|
|
95
|
+
readonly _00110: "pain.008.001.10";
|
|
96
|
+
readonly _00111: "pain.008.001.11";
|
|
97
|
+
};
|
|
98
|
+
export type CreateTenantBankAccountRequestDtoSepaPainVersionEnum = typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum];
|
|
@@ -13,3 +13,11 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
|
|
17
|
+
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
18
|
+
_00302: 'pain.008.003.02',
|
|
19
|
+
_00802: 'pain.008.008.02',
|
|
20
|
+
_00109: 'pain.008.001.09',
|
|
21
|
+
_00110: 'pain.008.001.10',
|
|
22
|
+
_00111: 'pain.008.001.11'
|
|
23
|
+
};
|
|
@@ -0,0 +1,135 @@
|
|
|
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 { ExceedingCreditEntity } from './exceeding-credit-entity';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreditAllocationEntity
|
|
17
|
+
*/
|
|
18
|
+
export interface CreditAllocationEntity {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof CreditAllocationEntity
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CreditAllocationEntity
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreditAllocationEntity
|
|
35
|
+
*/
|
|
36
|
+
'policyCode': string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreditAllocationEntity
|
|
41
|
+
*/
|
|
42
|
+
'policyNumber': string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof CreditAllocationEntity
|
|
47
|
+
*/
|
|
48
|
+
'allocationAmount': number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Array<string>}
|
|
52
|
+
* @memberof CreditAllocationEntity
|
|
53
|
+
*/
|
|
54
|
+
'exceedingCreditCodes': Array<string>;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {Array<ExceedingCreditEntity>}
|
|
58
|
+
* @memberof CreditAllocationEntity
|
|
59
|
+
*/
|
|
60
|
+
'exceedingCredits': Array<ExceedingCreditEntity>;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof CreditAllocationEntity
|
|
65
|
+
*/
|
|
66
|
+
'allocationCurrency': CreditAllocationEntityAllocationCurrencyEnum;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof CreditAllocationEntity
|
|
71
|
+
*/
|
|
72
|
+
'allocationType': CreditAllocationEntityAllocationTypeEnum;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof CreditAllocationEntity
|
|
77
|
+
*/
|
|
78
|
+
'financialAccountCode'?: string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CreditAllocationEntity
|
|
83
|
+
*/
|
|
84
|
+
'bookingDate': string;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof CreditAllocationEntity
|
|
89
|
+
*/
|
|
90
|
+
'createdAt': string;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof CreditAllocationEntity
|
|
95
|
+
*/
|
|
96
|
+
'updatedAt': string;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof CreditAllocationEntity
|
|
101
|
+
*/
|
|
102
|
+
'deletedAt'?: string;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof CreditAllocationEntity
|
|
107
|
+
*/
|
|
108
|
+
'owner': string;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof CreditAllocationEntity
|
|
113
|
+
*/
|
|
114
|
+
'tenantHierarchy': string;
|
|
115
|
+
}
|
|
116
|
+
export declare const CreditAllocationEntityAllocationCurrencyEnum: {
|
|
117
|
+
readonly Eur: "EUR";
|
|
118
|
+
readonly Usd: "USD";
|
|
119
|
+
readonly Gbp: "GBP";
|
|
120
|
+
readonly Chf: "CHF";
|
|
121
|
+
readonly Pln: "PLN";
|
|
122
|
+
readonly Aud: "AUD";
|
|
123
|
+
readonly Cad: "CAD";
|
|
124
|
+
readonly Ddk: "DDK";
|
|
125
|
+
readonly Huf: "HUF";
|
|
126
|
+
readonly Nok: "NOK";
|
|
127
|
+
readonly Sek: "SEK";
|
|
128
|
+
};
|
|
129
|
+
export type CreditAllocationEntityAllocationCurrencyEnum = typeof CreditAllocationEntityAllocationCurrencyEnum[keyof typeof CreditAllocationEntityAllocationCurrencyEnum];
|
|
130
|
+
export declare const CreditAllocationEntityAllocationTypeEnum: {
|
|
131
|
+
readonly NextInvoice: "next_invoice";
|
|
132
|
+
readonly LastInvoice: "last_invoice";
|
|
133
|
+
readonly SeparateRefund: "separate_refund";
|
|
134
|
+
};
|
|
135
|
+
export type CreditAllocationEntityAllocationTypeEnum = typeof CreditAllocationEntityAllocationTypeEnum[keyof typeof CreditAllocationEntityAllocationTypeEnum];
|
|
@@ -0,0 +1,34 @@
|
|
|
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 });
|
|
16
|
+
exports.CreditAllocationEntityAllocationTypeEnum = exports.CreditAllocationEntityAllocationCurrencyEnum = void 0;
|
|
17
|
+
exports.CreditAllocationEntityAllocationCurrencyEnum = {
|
|
18
|
+
Eur: 'EUR',
|
|
19
|
+
Usd: 'USD',
|
|
20
|
+
Gbp: 'GBP',
|
|
21
|
+
Chf: 'CHF',
|
|
22
|
+
Pln: 'PLN',
|
|
23
|
+
Aud: 'AUD',
|
|
24
|
+
Cad: 'CAD',
|
|
25
|
+
Ddk: 'DDK',
|
|
26
|
+
Huf: 'HUF',
|
|
27
|
+
Nok: 'NOK',
|
|
28
|
+
Sek: 'SEK'
|
|
29
|
+
};
|
|
30
|
+
exports.CreditAllocationEntityAllocationTypeEnum = {
|
|
31
|
+
NextInvoice: 'next_invoice',
|
|
32
|
+
LastInvoice: 'last_invoice',
|
|
33
|
+
SeparateRefund: 'separate_refund'
|
|
34
|
+
};
|
|
@@ -0,0 +1,148 @@
|
|
|
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 { BankTransactionEntity } from './bank-transaction-entity';
|
|
13
|
+
import { CreditAllocationEntity } from './credit-allocation-entity';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ExceedingCreditEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface ExceedingCreditEntity {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof ExceedingCreditEntity
|
|
24
|
+
*/
|
|
25
|
+
'id': number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof ExceedingCreditEntity
|
|
30
|
+
*/
|
|
31
|
+
'code': string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof ExceedingCreditEntity
|
|
36
|
+
*/
|
|
37
|
+
'description'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof ExceedingCreditEntity
|
|
42
|
+
*/
|
|
43
|
+
'currency': ExceedingCreditEntityCurrencyEnum;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof ExceedingCreditEntity
|
|
48
|
+
*/
|
|
49
|
+
'policyCode': string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof ExceedingCreditEntity
|
|
54
|
+
*/
|
|
55
|
+
'policyNumber': string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof ExceedingCreditEntity
|
|
60
|
+
*/
|
|
61
|
+
'bankTransactionId': number;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {BankTransactionEntity}
|
|
65
|
+
* @memberof ExceedingCreditEntity
|
|
66
|
+
*/
|
|
67
|
+
'bankTransaction': BankTransactionEntity;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof ExceedingCreditEntity
|
|
72
|
+
*/
|
|
73
|
+
'bankTransactionCode': string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof ExceedingCreditEntity
|
|
78
|
+
*/
|
|
79
|
+
'invoiceCode': string;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof ExceedingCreditEntity
|
|
84
|
+
*/
|
|
85
|
+
'invoiceNumber': string;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {number}
|
|
89
|
+
* @memberof ExceedingCreditEntity
|
|
90
|
+
*/
|
|
91
|
+
'amount': number;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {number}
|
|
95
|
+
* @memberof ExceedingCreditEntity
|
|
96
|
+
*/
|
|
97
|
+
'allocationId'?: number;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {CreditAllocationEntity}
|
|
101
|
+
* @memberof ExceedingCreditEntity
|
|
102
|
+
*/
|
|
103
|
+
'creditAllocation'?: CreditAllocationEntity;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof ExceedingCreditEntity
|
|
108
|
+
*/
|
|
109
|
+
'createdAt': string;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof ExceedingCreditEntity
|
|
114
|
+
*/
|
|
115
|
+
'updatedAt': string;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof ExceedingCreditEntity
|
|
120
|
+
*/
|
|
121
|
+
'deletedAt'?: string;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof ExceedingCreditEntity
|
|
126
|
+
*/
|
|
127
|
+
'owner': string;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {string}
|
|
131
|
+
* @memberof ExceedingCreditEntity
|
|
132
|
+
*/
|
|
133
|
+
'tenantHierarchy': string;
|
|
134
|
+
}
|
|
135
|
+
export declare const ExceedingCreditEntityCurrencyEnum: {
|
|
136
|
+
readonly Eur: "EUR";
|
|
137
|
+
readonly Usd: "USD";
|
|
138
|
+
readonly Gbp: "GBP";
|
|
139
|
+
readonly Chf: "CHF";
|
|
140
|
+
readonly Pln: "PLN";
|
|
141
|
+
readonly Aud: "AUD";
|
|
142
|
+
readonly Cad: "CAD";
|
|
143
|
+
readonly Ddk: "DDK";
|
|
144
|
+
readonly Huf: "HUF";
|
|
145
|
+
readonly Nok: "NOK";
|
|
146
|
+
readonly Sek: "SEK";
|
|
147
|
+
};
|
|
148
|
+
export type ExceedingCreditEntityCurrencyEnum = typeof ExceedingCreditEntityCurrencyEnum[keyof typeof ExceedingCreditEntityCurrencyEnum];
|
|
@@ -0,0 +1,29 @@
|
|
|
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 });
|
|
16
|
+
exports.ExceedingCreditEntityCurrencyEnum = void 0;
|
|
17
|
+
exports.ExceedingCreditEntityCurrencyEnum = {
|
|
18
|
+
Eur: 'EUR',
|
|
19
|
+
Usd: 'USD',
|
|
20
|
+
Gbp: 'GBP',
|
|
21
|
+
Chf: 'CHF',
|
|
22
|
+
Pln: 'PLN',
|
|
23
|
+
Aud: 'AUD',
|
|
24
|
+
Cad: 'CAD',
|
|
25
|
+
Ddk: 'DDK',
|
|
26
|
+
Huf: 'HUF',
|
|
27
|
+
Nok: 'NOK',
|
|
28
|
+
Sek: 'SEK'
|
|
29
|
+
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -2,10 +2,14 @@ export * from './activate-policy-payment-method-request-dto';
|
|
|
2
2
|
export * from './bank-account-class';
|
|
3
3
|
export * from './bank-account-class-without-expand-properties';
|
|
4
4
|
export * from './bank-order-class';
|
|
5
|
+
export * from './bank-order-entity';
|
|
5
6
|
export * from './bank-order-xml-file-class';
|
|
7
|
+
export * from './bank-order-xml-file-entity';
|
|
6
8
|
export * from './bank-transaction-class';
|
|
7
9
|
export * from './bank-transaction-class-without-expand-properties';
|
|
10
|
+
export * from './bank-transaction-entity';
|
|
8
11
|
export * from './bank-transaction-invoice-class';
|
|
12
|
+
export * from './bank-transaction-invoice-entity';
|
|
9
13
|
export * from './bank-transfer-dto';
|
|
10
14
|
export * from './billing-address-class';
|
|
11
15
|
export * from './billing-address-dto';
|
|
@@ -43,12 +47,13 @@ export * from './create-refund-response-class';
|
|
|
43
47
|
export * from './create-tenant-bank-account-request-dto';
|
|
44
48
|
export * from './create-tenant-bank-account-response-class';
|
|
45
49
|
export * from './credit-allocation-class';
|
|
50
|
+
export * from './credit-allocation-entity';
|
|
46
51
|
export * from './deactivate-payment-reminder-request-dto';
|
|
47
52
|
export * from './deactivate-payment-reminder-response-class';
|
|
48
53
|
export * from './deactivated-payment-reminder-class';
|
|
49
54
|
export * from './eis-sepa-debit-dto';
|
|
50
55
|
export * from './exceeding-credit-class';
|
|
51
|
-
export * from './
|
|
56
|
+
export * from './exceeding-credit-entity';
|
|
52
57
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
53
58
|
export * from './get-bank-account-response-class';
|
|
54
59
|
export * from './get-bank-order-response-class';
|
|
@@ -76,6 +81,7 @@ export * from './inline-response200';
|
|
|
76
81
|
export * from './inline-response503';
|
|
77
82
|
export * from './invoice-allocation-dto';
|
|
78
83
|
export * from './invoice-match-suggestion-class';
|
|
84
|
+
export * from './invoice-match-suggestion-entity';
|
|
79
85
|
export * from './link-bank-transaction-request-dto-rest';
|
|
80
86
|
export * from './link-bank-transactions-response-class';
|
|
81
87
|
export * from './list-bank-accounts-response-class';
|
|
@@ -96,6 +102,7 @@ export * from './mandate-hash-data-dto';
|
|
|
96
102
|
export * from './mandate-reference-class';
|
|
97
103
|
export * from './payment-class';
|
|
98
104
|
export * from './payment-class-without-expand-properties';
|
|
105
|
+
export * from './payment-entity';
|
|
99
106
|
export * from './payment-method-class';
|
|
100
107
|
export * from './payment-reminder-class';
|
|
101
108
|
export * from './payout-method-class';
|
|
@@ -107,9 +114,12 @@ export * from './sepa-direct-dto';
|
|
|
107
114
|
export * from './set-primary-bank-account-request-dto-rest';
|
|
108
115
|
export * from './shared-transaction-class';
|
|
109
116
|
export * from './suggestion-generation-progress-class';
|
|
117
|
+
export * from './suggestion-generation-progress-entity';
|
|
110
118
|
export * from './symphony-profile-limited-response-dto';
|
|
111
119
|
export * from './tenant-bank-account-class';
|
|
112
120
|
export * from './tenant-bank-account-class-without-expand-properties';
|
|
121
|
+
export * from './tenant-bank-account-entity';
|
|
122
|
+
export * from './transaction-entity';
|
|
113
123
|
export * from './unlink-bank-transactions-response-class';
|
|
114
124
|
export * from './unlinked-bank-transaction-response-class';
|
|
115
125
|
export * from './update-bank-account-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -18,10 +18,14 @@ __exportStar(require("./activate-policy-payment-method-request-dto"), exports);
|
|
|
18
18
|
__exportStar(require("./bank-account-class"), exports);
|
|
19
19
|
__exportStar(require("./bank-account-class-without-expand-properties"), exports);
|
|
20
20
|
__exportStar(require("./bank-order-class"), exports);
|
|
21
|
+
__exportStar(require("./bank-order-entity"), exports);
|
|
21
22
|
__exportStar(require("./bank-order-xml-file-class"), exports);
|
|
23
|
+
__exportStar(require("./bank-order-xml-file-entity"), exports);
|
|
22
24
|
__exportStar(require("./bank-transaction-class"), exports);
|
|
23
25
|
__exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
|
|
26
|
+
__exportStar(require("./bank-transaction-entity"), exports);
|
|
24
27
|
__exportStar(require("./bank-transaction-invoice-class"), exports);
|
|
28
|
+
__exportStar(require("./bank-transaction-invoice-entity"), exports);
|
|
25
29
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
26
30
|
__exportStar(require("./billing-address-class"), exports);
|
|
27
31
|
__exportStar(require("./billing-address-dto"), exports);
|
|
@@ -59,12 +63,13 @@ __exportStar(require("./create-refund-response-class"), exports);
|
|
|
59
63
|
__exportStar(require("./create-tenant-bank-account-request-dto"), exports);
|
|
60
64
|
__exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
61
65
|
__exportStar(require("./credit-allocation-class"), exports);
|
|
66
|
+
__exportStar(require("./credit-allocation-entity"), exports);
|
|
62
67
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
63
68
|
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
64
69
|
__exportStar(require("./deactivated-payment-reminder-class"), exports);
|
|
65
70
|
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
66
71
|
__exportStar(require("./exceeding-credit-class"), exports);
|
|
67
|
-
__exportStar(require("./
|
|
72
|
+
__exportStar(require("./exceeding-credit-entity"), exports);
|
|
68
73
|
__exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
|
|
69
74
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
70
75
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
@@ -92,6 +97,7 @@ __exportStar(require("./inline-response200"), exports);
|
|
|
92
97
|
__exportStar(require("./inline-response503"), exports);
|
|
93
98
|
__exportStar(require("./invoice-allocation-dto"), exports);
|
|
94
99
|
__exportStar(require("./invoice-match-suggestion-class"), exports);
|
|
100
|
+
__exportStar(require("./invoice-match-suggestion-entity"), exports);
|
|
95
101
|
__exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
|
|
96
102
|
__exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
97
103
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
@@ -112,6 +118,7 @@ __exportStar(require("./mandate-hash-data-dto"), exports);
|
|
|
112
118
|
__exportStar(require("./mandate-reference-class"), exports);
|
|
113
119
|
__exportStar(require("./payment-class"), exports);
|
|
114
120
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
121
|
+
__exportStar(require("./payment-entity"), exports);
|
|
115
122
|
__exportStar(require("./payment-method-class"), exports);
|
|
116
123
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
117
124
|
__exportStar(require("./payout-method-class"), exports);
|
|
@@ -123,9 +130,12 @@ __exportStar(require("./sepa-direct-dto"), exports);
|
|
|
123
130
|
__exportStar(require("./set-primary-bank-account-request-dto-rest"), exports);
|
|
124
131
|
__exportStar(require("./shared-transaction-class"), exports);
|
|
125
132
|
__exportStar(require("./suggestion-generation-progress-class"), exports);
|
|
133
|
+
__exportStar(require("./suggestion-generation-progress-entity"), exports);
|
|
126
134
|
__exportStar(require("./symphony-profile-limited-response-dto"), exports);
|
|
127
135
|
__exportStar(require("./tenant-bank-account-class"), exports);
|
|
128
136
|
__exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
|
|
137
|
+
__exportStar(require("./tenant-bank-account-entity"), exports);
|
|
138
|
+
__exportStar(require("./transaction-entity"), exports);
|
|
129
139
|
__exportStar(require("./unlink-bank-transactions-response-class"), exports);
|
|
130
140
|
__exportStar(require("./unlinked-bank-transaction-response-class"), exports);
|
|
131
141
|
__exportStar(require("./update-bank-account-request-dto"), exports);
|