@emilgroup/payment-sdk 1.13.1-beta.12 → 1.13.1-beta.120
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 +31 -1
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +55 -13
- package/api/bank-orders-api.ts +691 -0
- package/api/bank-transaction-api.ts +59 -48
- package/api/exceeding-credits-api.ts +349 -0
- package/api/payment-methods-api.ts +59 -17
- package/api/payment-reminders-api.ts +55 -13
- package/api/payments-api.ts +180 -17
- package/api/policy-payment-methods-api.ts +353 -0
- package/api/refunds-api.ts +45 -17
- package/api/tenant-bank-account-api.ts +45 -17
- package/api.ts +6 -0
- package/base.ts +51 -2
- package/dist/api/bank-accounts-api.d.ts +35 -8
- package/dist/api/bank-accounts-api.js +48 -63
- package/dist/api/bank-orders-api.d.ts +393 -0
- package/dist/api/bank-orders-api.js +642 -0
- package/dist/api/bank-transaction-api.d.ts +39 -31
- package/dist/api/bank-transaction-api.js +54 -82
- package/dist/api/exceeding-credits-api.d.ts +206 -0
- package/dist/api/exceeding-credits-api.js +352 -0
- package/dist/api/health-check-api.js +5 -18
- package/dist/api/payment-methods-api.d.ts +39 -12
- package/dist/api/payment-methods-api.js +42 -45
- package/dist/api/payment-reminders-api.d.ts +35 -8
- package/dist/api/payment-reminders-api.js +42 -49
- package/dist/api/payment-setup-api.js +8 -25
- package/dist/api/payments-api.d.ts +104 -12
- package/dist/api/payments-api.js +143 -45
- package/dist/api/policy-payment-methods-api.d.ts +207 -0
- package/dist/api/policy-payment-methods-api.js +353 -0
- package/dist/api/refunds-api.d.ts +28 -10
- package/dist/api/refunds-api.js +34 -43
- package/dist/api/tenant-bank-account-api.d.ts +28 -10
- package/dist/api/tenant-bank-account-api.js +40 -57
- package/dist/api/webhooks-api.js +5 -18
- package/dist/api.d.ts +3 -0
- package/dist/api.js +3 -0
- package/dist/base.d.ts +10 -1
- package/dist/base.js +51 -7
- package/dist/common.d.ts +1 -1
- package/dist/common.js +2 -2
- package/dist/models/bank-order-class.d.ts +122 -0
- package/dist/models/bank-order-xml-file-class.d.ts +72 -0
- package/dist/models/bank-order-xml-file-class.js +15 -0
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +18 -18
- package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
- package/dist/models/bank-transaction-class.d.ts +22 -22
- package/dist/models/bank-transaction-class.js +5 -0
- package/dist/models/bank-transaction-invoice-class.d.ts +60 -0
- package/dist/models/bank-transaction-invoice-class.js +15 -0
- package/dist/models/bank-transfer-dto.d.ts +25 -0
- package/dist/models/bank-transfer-dto.js +15 -0
- package/dist/models/billing-address-dto.d.ts +54 -0
- package/dist/models/billing-address-dto.js +15 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +2 -0
- package/dist/models/complete-adyen-payment-setup-request-dto.js +3 -1
- package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +2 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +3 -1
- package/dist/models/create-bank-order-request-dto.d.ts +74 -0
- package/dist/models/create-bank-order-request-dto.js +28 -0
- package/dist/models/create-bank-order-response-class.d.ts +25 -0
- package/dist/models/create-bank-order-response-class.js +15 -0
- package/dist/models/create-payment-order-dto.d.ts +48 -0
- package/dist/models/create-payment-order-dto.js +15 -0
- package/dist/models/create-payment-order-request-dto.d.ts +48 -0
- package/dist/models/create-payment-order-request-dto.js +15 -0
- package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
- package/dist/models/create-payment-request-dto.d.ts +7 -1
- 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/create-psp-payment-method-request-dto.d.ts +29 -1
- package/dist/models/create-psp-payment-method-request-dto.js +3 -1
- package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
- package/dist/models/eis-sepa-debit-dto.d.ts +55 -0
- package/dist/models/eis-sepa-debit-dto.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/financial-account-class.d.ts +111 -0
- package/dist/models/financial-account-class.js +24 -0
- package/dist/models/get-bank-order-response-class.d.ts +25 -0
- package/dist/models/get-bank-order-response-class.js +15 -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 +28 -1
- package/dist/models/index.js +28 -1
- package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
- package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
- package/dist/models/{unlink-bank-transaction-request-dto-rest.d.ts → invoice-allocation-dto.d.ts} +10 -4
- package/dist/models/invoice-allocation-dto.js +15 -0
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +4 -3
- package/dist/models/list-bank-orders-response-class.d.ts +31 -0
- package/dist/models/list-bank-orders-response-class.js +15 -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/list-policy-payment-methods-response-class.d.ts +31 -0
- package/dist/models/list-policy-payment-methods-response-class.js +15 -0
- package/dist/models/mandate-dto.d.ts +43 -0
- package/dist/models/mandate-dto.js +15 -0
- package/dist/models/mandate-hash-data-dto.d.ts +42 -0
- package/dist/models/mandate-hash-data-dto.js +15 -0
- package/dist/models/mandate-reference-class.d.ts +90 -0
- package/dist/models/mandate-reference-class.js +15 -0
- package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
- package/dist/models/payment-class.d.ts +7 -1
- package/dist/models/payment-method-class.d.ts +6 -0
- package/dist/models/payment-reminder-class.d.ts +7 -1
- package/dist/models/policy-payment-method-class.d.ts +86 -0
- package/dist/models/policy-payment-method-class.js +15 -0
- package/dist/models/refund-class.d.ts +7 -1
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +18 -0
- package/dist/models/unlinked-bank-transaction-response-class.js +5 -0
- package/dist/models/update-bank-order-request-dto.d.ts +62 -0
- package/dist/models/update-bank-order-request-dto.js +23 -0
- package/dist/models/update-bank-order-response-class.d.ts +25 -0
- package/dist/models/update-bank-order-response-class.js +15 -0
- package/models/bank-order-class.ts +128 -0
- package/models/bank-order-xml-file-class.ts +78 -0
- package/models/bank-transaction-class-without-expand-properties.ts +21 -18
- package/models/bank-transaction-class.ts +25 -22
- package/models/bank-transaction-invoice-class.ts +66 -0
- package/models/bank-transfer-dto.ts +31 -0
- package/models/billing-address-dto.ts +60 -0
- package/models/complete-adyen-payment-setup-request-dto.ts +3 -1
- package/models/complete-eis-payment-setup-request-dto.ts +42 -0
- package/models/complete-payment-setup-request-dto.ts +7 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +3 -1
- package/models/create-bank-order-request-dto.ts +84 -0
- package/models/create-bank-order-response-class.ts +31 -0
- package/models/create-payment-order-dto.ts +54 -0
- package/models/create-payment-order-request-dto.ts +54 -0
- package/models/create-payment-reminder-request-dto.ts +7 -1
- package/models/create-payment-request-dto.ts +7 -1
- package/models/create-policy-payment-method-request-dto.ts +36 -0
- package/models/create-policy-payment-method-response-class.ts +31 -0
- package/models/create-psp-payment-method-request-dto.ts +30 -2
- package/models/deactivated-payment-reminder-class.ts +7 -1
- package/models/eis-sepa-debit-dto.ts +61 -0
- package/models/exceeding-credit-class.ts +125 -0
- package/models/financial-account-class.ts +120 -0
- package/models/get-bank-order-response-class.ts +31 -0
- package/models/get-exceeding-credit-response-class.ts +31 -0
- package/models/index.ts +28 -1
- package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
- package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
- package/models/initiate-payment-setup-request-dto.ts +3 -2
- package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
- package/models/{unlink-bank-transaction-request-dto-rest.ts → invoice-allocation-dto.ts} +10 -4
- package/models/link-bank-transaction-request-dto-rest.ts +4 -3
- package/models/list-bank-orders-response-class.ts +37 -0
- package/models/list-exceeding-credits-response-class.ts +37 -0
- package/models/list-policy-payment-methods-response-class.ts +37 -0
- package/models/mandate-dto.ts +49 -0
- package/models/mandate-hash-data-dto.ts +48 -0
- package/models/mandate-reference-class.ts +96 -0
- package/models/payment-class-without-expand-properties.ts +7 -1
- package/models/payment-class.ts +7 -1
- package/models/payment-method-class.ts +6 -0
- package/models/payment-reminder-class.ts +7 -1
- package/models/policy-payment-method-class.ts +92 -0
- package/models/refund-class.ts +7 -1
- package/models/unlinked-bank-transaction-response-class.ts +21 -0
- package/models/update-bank-order-request-dto.ts +71 -0
- package/models/update-bank-order-response-class.ts +31 -0
- package/package.json +3 -3
- /package/dist/models/{unlink-bank-transaction-request-dto-rest.js → bank-order-class.js} +0 -0
|
@@ -0,0 +1,86 @@
|
|
|
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 { MandateReferenceClass } from './mandate-reference-class';
|
|
13
|
+
import { PaymentMethodClass } from './payment-method-class';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface PolicyPaymentMethodClass
|
|
18
|
+
*/
|
|
19
|
+
export interface PolicyPaymentMethodClass {
|
|
20
|
+
/**
|
|
21
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof PolicyPaymentMethodClass
|
|
24
|
+
*/
|
|
25
|
+
'id': number;
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier for the object.
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PolicyPaymentMethodClass
|
|
30
|
+
*/
|
|
31
|
+
'code': string;
|
|
32
|
+
/**
|
|
33
|
+
* The unique identifier of the policy.
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PolicyPaymentMethodClass
|
|
36
|
+
*/
|
|
37
|
+
'policyCode': string;
|
|
38
|
+
/**
|
|
39
|
+
* The active status of the policy payment method.
|
|
40
|
+
* @type {boolean}
|
|
41
|
+
* @memberof PolicyPaymentMethodClass
|
|
42
|
+
*/
|
|
43
|
+
'isActive': boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Time at which the object was created.
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PolicyPaymentMethodClass
|
|
48
|
+
*/
|
|
49
|
+
'createdAt': string;
|
|
50
|
+
/**
|
|
51
|
+
* Time at which the object was updated.
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PolicyPaymentMethodClass
|
|
54
|
+
*/
|
|
55
|
+
'updatedAt': string;
|
|
56
|
+
/**
|
|
57
|
+
* Identifier of the user who created the record.
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof PolicyPaymentMethodClass
|
|
60
|
+
*/
|
|
61
|
+
'createdBy': string;
|
|
62
|
+
/**
|
|
63
|
+
* Identifier of the user who last updated the record.
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof PolicyPaymentMethodClass
|
|
66
|
+
*/
|
|
67
|
+
'updatedBy': string;
|
|
68
|
+
/**
|
|
69
|
+
* The payment method associated with the policy payment method.
|
|
70
|
+
* @type {PaymentMethodClass}
|
|
71
|
+
* @memberof PolicyPaymentMethodClass
|
|
72
|
+
*/
|
|
73
|
+
'paymentMethod': PaymentMethodClass;
|
|
74
|
+
/**
|
|
75
|
+
* Mandate reference ID for sepa debit payment methods
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof PolicyPaymentMethodClass
|
|
78
|
+
*/
|
|
79
|
+
'mandateReferenceId'?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Mandate reference details for sepa debit payment methods
|
|
82
|
+
* @type {MandateReferenceClass}
|
|
83
|
+
* @memberof PolicyPaymentMethodClass
|
|
84
|
+
*/
|
|
85
|
+
'mandateReference'?: MandateReferenceClass;
|
|
86
|
+
}
|
|
@@ -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 });
|
|
@@ -39,7 +39,13 @@ export interface RefundClass {
|
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof RefundClass
|
|
41
41
|
*/
|
|
42
|
-
'accountCode'
|
|
42
|
+
'accountCode'?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Partner code associated with the payment.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof RefundClass
|
|
47
|
+
*/
|
|
48
|
+
'partnerCode'?: string;
|
|
43
49
|
/**
|
|
44
50
|
* Amount that was refunded in cents. 100 to refund 1€.
|
|
45
51
|
* @type {number}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -45,6 +46,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
45
46
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
46
47
|
*/
|
|
47
48
|
'messageReference'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Label of the transaction
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
53
|
+
*/
|
|
54
|
+
'label'?: UnlinkedBankTransactionResponseClassLabelEnum;
|
|
48
55
|
/**
|
|
49
56
|
* Currency of the transaction.
|
|
50
57
|
* @type {string}
|
|
@@ -87,6 +94,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
87
94
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
88
95
|
*/
|
|
89
96
|
'isLinked': boolean;
|
|
97
|
+
/**
|
|
98
|
+
* The linked bank order object
|
|
99
|
+
* @type {BankOrderClass}
|
|
100
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
101
|
+
*/
|
|
102
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
90
103
|
/**
|
|
91
104
|
* The file format of the bank transaction
|
|
92
105
|
* @type {string}
|
|
@@ -112,3 +125,8 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
112
125
|
*/
|
|
113
126
|
'updatedBy': string;
|
|
114
127
|
}
|
|
128
|
+
export declare const UnlinkedBankTransactionResponseClassLabelEnum: {
|
|
129
|
+
readonly Automated: "automated";
|
|
130
|
+
readonly Manual: "manual";
|
|
131
|
+
};
|
|
132
|
+
export type UnlinkedBankTransactionResponseClassLabelEnum = typeof UnlinkedBankTransactionResponseClassLabelEnum[keyof typeof UnlinkedBankTransactionResponseClassLabelEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UnlinkedBankTransactionResponseClassLabelEnum = void 0;
|
|
17
|
+
exports.UnlinkedBankTransactionResponseClassLabelEnum = {
|
|
18
|
+
Automated: 'automated',
|
|
19
|
+
Manual: 'manual'
|
|
20
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UpdateBankOrderRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateBankOrderRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Bank order status
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateBankOrderRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'status': UpdateBankOrderRequestDtoStatusEnum;
|
|
24
|
+
/**
|
|
25
|
+
* Bank order description.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateBankOrderRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'description'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Financial account code associated with the bank order.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateBankOrderRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'financialAccountCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* List of invoice IDs associated with bank order.
|
|
38
|
+
* @type {Array<number>}
|
|
39
|
+
* @memberof UpdateBankOrderRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'invoiceIds': Array<number>;
|
|
42
|
+
/**
|
|
43
|
+
* Day of execution of bank order.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdateBankOrderRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'executionDate': string;
|
|
48
|
+
/**
|
|
49
|
+
* Latest due date.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof UpdateBankOrderRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'dueDate': string;
|
|
54
|
+
}
|
|
55
|
+
export declare const UpdateBankOrderRequestDtoStatusEnum: {
|
|
56
|
+
readonly Open: "open";
|
|
57
|
+
readonly Draft: "draft";
|
|
58
|
+
readonly Closed: "closed";
|
|
59
|
+
readonly Accepted: "accepted";
|
|
60
|
+
readonly Processing: "processing";
|
|
61
|
+
};
|
|
62
|
+
export type UpdateBankOrderRequestDtoStatusEnum = typeof UpdateBankOrderRequestDtoStatusEnum[keyof typeof UpdateBankOrderRequestDtoStatusEnum];
|
|
@@ -0,0 +1,23 @@
|
|
|
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.UpdateBankOrderRequestDtoStatusEnum = void 0;
|
|
17
|
+
exports.UpdateBankOrderRequestDtoStatusEnum = {
|
|
18
|
+
Open: 'open',
|
|
19
|
+
Draft: 'draft',
|
|
20
|
+
Closed: 'closed',
|
|
21
|
+
Accepted: 'accepted',
|
|
22
|
+
Processing: 'processing'
|
|
23
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { BankOrderClass } from './bank-order-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateBankOrderResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateBankOrderResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Bank order
|
|
21
|
+
* @type {BankOrderClass}
|
|
22
|
+
* @memberof UpdateBankOrderResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'bankOrder': BankOrderClass;
|
|
25
|
+
}
|
|
@@ -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,128 @@
|
|
|
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 { BankOrderXmlFileClass } from './bank-order-xml-file-class';
|
|
17
|
+
import { FinancialAccountClass } from './financial-account-class';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface BankOrderClass
|
|
23
|
+
*/
|
|
24
|
+
export interface BankOrderClass {
|
|
25
|
+
/**
|
|
26
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof BankOrderClass
|
|
29
|
+
*/
|
|
30
|
+
'id': number;
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier for the object.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof BankOrderClass
|
|
35
|
+
*/
|
|
36
|
+
'code': string;
|
|
37
|
+
/**
|
|
38
|
+
* Bank order type.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof BankOrderClass
|
|
41
|
+
*/
|
|
42
|
+
'type': string;
|
|
43
|
+
/**
|
|
44
|
+
* Amount associated with bank order.
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof BankOrderClass
|
|
47
|
+
*/
|
|
48
|
+
'amount': number;
|
|
49
|
+
/**
|
|
50
|
+
* Status associated with bank order.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BankOrderClass
|
|
53
|
+
*/
|
|
54
|
+
'status': string;
|
|
55
|
+
/**
|
|
56
|
+
* Number associated with bank order.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof BankOrderClass
|
|
59
|
+
*/
|
|
60
|
+
'orderNumber': string;
|
|
61
|
+
/**
|
|
62
|
+
* Bank order description.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof BankOrderClass
|
|
65
|
+
*/
|
|
66
|
+
'description'?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Financial account code associated with the bank order.
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof BankOrderClass
|
|
71
|
+
*/
|
|
72
|
+
'financialAccountCode': string;
|
|
73
|
+
/**
|
|
74
|
+
* List of invoice IDs associated with bank order.
|
|
75
|
+
* @type {Array<number>}
|
|
76
|
+
* @memberof BankOrderClass
|
|
77
|
+
*/
|
|
78
|
+
'invoiceIds': Array<number>;
|
|
79
|
+
/**
|
|
80
|
+
* Day of execution of bank order.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof BankOrderClass
|
|
83
|
+
*/
|
|
84
|
+
'executionDate': string;
|
|
85
|
+
/**
|
|
86
|
+
* Latest due date.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof BankOrderClass
|
|
89
|
+
*/
|
|
90
|
+
'dueDate': string;
|
|
91
|
+
/**
|
|
92
|
+
* Time at which the object was created.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof BankOrderClass
|
|
95
|
+
*/
|
|
96
|
+
'createdAt': string;
|
|
97
|
+
/**
|
|
98
|
+
* Time at which the object was updated.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof BankOrderClass
|
|
101
|
+
*/
|
|
102
|
+
'updatedAt': string;
|
|
103
|
+
/**
|
|
104
|
+
* Identifier of the user who created the record.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof BankOrderClass
|
|
107
|
+
*/
|
|
108
|
+
'createdBy': string;
|
|
109
|
+
/**
|
|
110
|
+
* Identifier of the user who last updated the record.
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof BankOrderClass
|
|
113
|
+
*/
|
|
114
|
+
'updatedBy': string;
|
|
115
|
+
/**
|
|
116
|
+
* The financial account object that this bank order is belongs to
|
|
117
|
+
* @type {FinancialAccountClass}
|
|
118
|
+
* @memberof BankOrderClass
|
|
119
|
+
*/
|
|
120
|
+
'financialAccount'?: FinancialAccountClass;
|
|
121
|
+
/**
|
|
122
|
+
* The XML file associated with this bank order
|
|
123
|
+
* @type {BankOrderXmlFileClass}
|
|
124
|
+
* @memberof BankOrderClass
|
|
125
|
+
*/
|
|
126
|
+
'xmlFile'?: BankOrderXmlFileClass;
|
|
127
|
+
}
|
|
128
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 BankOrderXmlFileClass
|
|
21
|
+
*/
|
|
22
|
+
export interface BankOrderXmlFileClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the bank order XML file
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof BankOrderXmlFileClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* XML content of the bank order file
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BankOrderXmlFileClass
|
|
33
|
+
*/
|
|
34
|
+
'xmlContent': string;
|
|
35
|
+
/**
|
|
36
|
+
* Original filename of the XML file
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BankOrderXmlFileClass
|
|
39
|
+
*/
|
|
40
|
+
'fileName'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* MIME type of the file
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BankOrderXmlFileClass
|
|
45
|
+
*/
|
|
46
|
+
'mimeType'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Size of the file in bytes
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof BankOrderXmlFileClass
|
|
51
|
+
*/
|
|
52
|
+
'fileSize'?: number;
|
|
53
|
+
/**
|
|
54
|
+
* Timestamp when the record was created
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BankOrderXmlFileClass
|
|
57
|
+
*/
|
|
58
|
+
'createdAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Timestamp when the record was last updated
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BankOrderXmlFileClass
|
|
63
|
+
*/
|
|
64
|
+
'updatedAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* User ID who created the record
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof BankOrderXmlFileClass
|
|
69
|
+
*/
|
|
70
|
+
'createdBy': string;
|
|
71
|
+
/**
|
|
72
|
+
* User ID who last updated the record
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof BankOrderXmlFileClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedBy': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankOrderClass } from './bank-order-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -50,6 +51,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
50
51
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
51
52
|
*/
|
|
52
53
|
'messageReference'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Label of the transaction
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
58
|
+
*/
|
|
59
|
+
'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
|
|
53
60
|
/**
|
|
54
61
|
* Currency of the transaction.
|
|
55
62
|
* @type {string}
|
|
@@ -86,30 +93,18 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
86
93
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
87
94
|
*/
|
|
88
95
|
'metadata'?: object;
|
|
89
|
-
/**
|
|
90
|
-
* The id of the PSP transaction that this bank transaction is linked to
|
|
91
|
-
* @type {number}
|
|
92
|
-
* @memberof BankTransactionClassWithoutExpandProperties
|
|
93
|
-
*/
|
|
94
|
-
'linkedTransactionId'?: number;
|
|
95
|
-
/**
|
|
96
|
-
* The code of the invoice that this bank transaction is linked to
|
|
97
|
-
* @type {string}
|
|
98
|
-
* @memberof BankTransactionClassWithoutExpandProperties
|
|
99
|
-
*/
|
|
100
|
-
'linkedInvoiceCode'?: string;
|
|
101
|
-
/**
|
|
102
|
-
* The identifying invoice number that this bank transaction is linked to
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof BankTransactionClassWithoutExpandProperties
|
|
105
|
-
*/
|
|
106
|
-
'linkedInvoiceNumber'?: string;
|
|
107
96
|
/**
|
|
108
97
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
109
98
|
* @type {boolean}
|
|
110
99
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
111
100
|
*/
|
|
112
101
|
'isLinked': boolean;
|
|
102
|
+
/**
|
|
103
|
+
* The linked bank order object
|
|
104
|
+
* @type {BankOrderClass}
|
|
105
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
106
|
+
*/
|
|
107
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
113
108
|
/**
|
|
114
109
|
* The file format of the bank transaction
|
|
115
110
|
* @type {string}
|
|
@@ -136,3 +131,11 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
136
131
|
'updatedBy': string;
|
|
137
132
|
}
|
|
138
133
|
|
|
134
|
+
export const BankTransactionClassWithoutExpandPropertiesLabelEnum = {
|
|
135
|
+
Automated: 'automated',
|
|
136
|
+
Manual: 'manual'
|
|
137
|
+
} as const;
|
|
138
|
+
|
|
139
|
+
export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
|
|
140
|
+
|
|
141
|
+
|
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankOrderClass } from './bank-order-class';
|
|
17
|
+
import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
|
|
16
18
|
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
17
|
-
import { SharedTransactionClass } from './shared-transaction-class';
|
|
18
19
|
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
19
20
|
import { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
20
21
|
|
|
@@ -54,6 +55,12 @@ export interface BankTransactionClass {
|
|
|
54
55
|
* @memberof BankTransactionClass
|
|
55
56
|
*/
|
|
56
57
|
'messageReference'?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Label of the transaction
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof BankTransactionClass
|
|
62
|
+
*/
|
|
63
|
+
'label'?: BankTransactionClassLabelEnum;
|
|
57
64
|
/**
|
|
58
65
|
* Currency of the transaction.
|
|
59
66
|
* @type {string}
|
|
@@ -90,30 +97,18 @@ export interface BankTransactionClass {
|
|
|
90
97
|
* @memberof BankTransactionClass
|
|
91
98
|
*/
|
|
92
99
|
'metadata'?: object;
|
|
93
|
-
/**
|
|
94
|
-
* The id of the PSP transaction that this bank transaction is linked to
|
|
95
|
-
* @type {number}
|
|
96
|
-
* @memberof BankTransactionClass
|
|
97
|
-
*/
|
|
98
|
-
'linkedTransactionId'?: number;
|
|
99
|
-
/**
|
|
100
|
-
* The code of the invoice that this bank transaction is linked to
|
|
101
|
-
* @type {string}
|
|
102
|
-
* @memberof BankTransactionClass
|
|
103
|
-
*/
|
|
104
|
-
'linkedInvoiceCode'?: string;
|
|
105
|
-
/**
|
|
106
|
-
* The identifying invoice number that this bank transaction is linked to
|
|
107
|
-
* @type {string}
|
|
108
|
-
* @memberof BankTransactionClass
|
|
109
|
-
*/
|
|
110
|
-
'linkedInvoiceNumber'?: string;
|
|
111
100
|
/**
|
|
112
101
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
113
102
|
* @type {boolean}
|
|
114
103
|
* @memberof BankTransactionClass
|
|
115
104
|
*/
|
|
116
105
|
'isLinked': boolean;
|
|
106
|
+
/**
|
|
107
|
+
* The bank transaction invoices that this bank transaction is linked to
|
|
108
|
+
* @type {Array<BankTransactionInvoiceClass>}
|
|
109
|
+
* @memberof BankTransactionClass
|
|
110
|
+
*/
|
|
111
|
+
'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
|
|
117
112
|
/**
|
|
118
113
|
* The bank account object that this transaction is belongs to
|
|
119
114
|
* @type {TenantBankAccountClassWithoutExpandProperties}
|
|
@@ -121,11 +116,11 @@ export interface BankTransactionClass {
|
|
|
121
116
|
*/
|
|
122
117
|
'bankAccount'?: TenantBankAccountClassWithoutExpandProperties;
|
|
123
118
|
/**
|
|
124
|
-
* The linked
|
|
125
|
-
* @type {
|
|
119
|
+
* The linked bank order object
|
|
120
|
+
* @type {BankOrderClass}
|
|
126
121
|
* @memberof BankTransactionClass
|
|
127
122
|
*/
|
|
128
|
-
'
|
|
123
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
129
124
|
/**
|
|
130
125
|
* The file format of the bank transaction
|
|
131
126
|
* @type {string}
|
|
@@ -164,3 +159,11 @@ export interface BankTransactionClass {
|
|
|
164
159
|
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
165
160
|
}
|
|
166
161
|
|
|
162
|
+
export const BankTransactionClassLabelEnum = {
|
|
163
|
+
Automated: 'automated',
|
|
164
|
+
Manual: 'manual'
|
|
165
|
+
} as const;
|
|
166
|
+
|
|
167
|
+
export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
|
|
168
|
+
|
|
169
|
+
|