@emilgroup/payment-sdk 1.13.1-beta.8 → 1.13.1-beta.81
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 +20 -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 +177 -63
- package/api/payment-methods-api.ts +59 -17
- package/api/payment-reminders-api.ts +55 -13
- package/api/payments-api.ts +188 -21
- package/api/refunds-api.ts +45 -17
- package/api/tenant-bank-account-api.ts +45 -17
- package/api.ts +2 -0
- package/base.ts +52 -3
- package/dist/api/bank-accounts-api.d.ts +35 -8
- package/dist/api/bank-accounts-api.js +29 -11
- 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 +110 -46
- package/dist/api/bank-transaction-api.js +141 -44
- package/dist/api/payment-methods-api.d.ts +39 -12
- package/dist/api/payment-methods-api.js +32 -14
- package/dist/api/payment-reminders-api.d.ts +35 -8
- package/dist/api/payment-reminders-api.js +29 -11
- package/dist/api/payments-api.d.ts +112 -16
- package/dist/api/payments-api.js +141 -18
- package/dist/api/refunds-api.d.ts +28 -10
- package/dist/api/refunds-api.js +24 -12
- package/dist/api/tenant-bank-account-api.d.ts +28 -10
- package/dist/api/tenant-bank-account-api.js +24 -12
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +10 -1
- package/dist/base.js +46 -2
- package/dist/models/bank-order-class.d.ts +115 -0
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +30 -11
- package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
- package/dist/models/bank-transaction-class.d.ts +47 -14
- package/dist/models/bank-transaction-class.js +5 -0
- package/dist/models/bank-transaction-invoice-class.d.ts +54 -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 +48 -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-psp-payment-method-request-dto.d.ts +22 -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/financial-account-class.d.ts +111 -0
- package/dist/models/financial-account-class.js +24 -0
- package/dist/models/generate-invoice-match-suggestions-response-class.d.ts +25 -0
- package/dist/models/generate-invoice-match-suggestions-response-class.js +15 -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/index.d.ts +19 -1
- package/dist/models/index.js +19 -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/invoice-match-suggestion-class.d.ts +60 -0
- package/dist/models/invoice-match-suggestion-class.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/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/refund-class.d.ts +7 -1
- package/dist/models/suggestion-generation-progress-class.d.ts +43 -0
- package/dist/models/suggestion-generation-progress-class.js +22 -0
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +33 -2
- 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 +121 -0
- package/models/bank-transaction-class-without-expand-properties.ts +33 -11
- package/models/bank-transaction-class.ts +50 -14
- package/models/bank-transaction-invoice-class.ts +60 -0
- package/models/bank-transfer-dto.ts +31 -0
- package/models/billing-address-dto.ts +54 -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-psp-payment-method-request-dto.ts +23 -2
- package/models/deactivated-payment-reminder-class.ts +7 -1
- package/models/financial-account-class.ts +120 -0
- package/models/generate-invoice-match-suggestions-response-class.ts +31 -0
- package/models/get-bank-order-response-class.ts +31 -0
- package/models/index.ts +19 -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/invoice-match-suggestion-class.ts +66 -0
- package/models/link-bank-transaction-request-dto-rest.ts +4 -3
- package/models/list-bank-orders-response-class.ts +37 -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/refund-class.ts +7 -1
- package/models/suggestion-generation-progress-class.ts +52 -0
- package/models/unlinked-bank-transaction-response-class.ts +36 -2
- package/models/update-bank-order-request-dto.ts +71 -0
- package/models/update-bank-order-response-class.ts +31 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -0
- /package/dist/models/{unlink-bank-transaction-request-dto-rest.js → bank-order-class.js} +0 -0
|
@@ -0,0 +1,115 @@
|
|
|
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 { FinancialAccountClass } from './financial-account-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BankOrderClass
|
|
17
|
+
*/
|
|
18
|
+
export interface BankOrderClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof BankOrderClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof BankOrderClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* Bank order type.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof BankOrderClass
|
|
35
|
+
*/
|
|
36
|
+
'type': string;
|
|
37
|
+
/**
|
|
38
|
+
* Amount associated with bank order.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof BankOrderClass
|
|
41
|
+
*/
|
|
42
|
+
'amount': number;
|
|
43
|
+
/**
|
|
44
|
+
* Status associated with bank order.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof BankOrderClass
|
|
47
|
+
*/
|
|
48
|
+
'status': string;
|
|
49
|
+
/**
|
|
50
|
+
* Number associated with bank order.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BankOrderClass
|
|
53
|
+
*/
|
|
54
|
+
'orderNumber': string;
|
|
55
|
+
/**
|
|
56
|
+
* Bank order description.
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof BankOrderClass
|
|
59
|
+
*/
|
|
60
|
+
'description'?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Financial account code associated with the bank order.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof BankOrderClass
|
|
65
|
+
*/
|
|
66
|
+
'financialAccountCode': string;
|
|
67
|
+
/**
|
|
68
|
+
* List of invoice IDs associated with bank order.
|
|
69
|
+
* @type {Array<number>}
|
|
70
|
+
* @memberof BankOrderClass
|
|
71
|
+
*/
|
|
72
|
+
'invoiceIds': Array<number>;
|
|
73
|
+
/**
|
|
74
|
+
* Day of execution of bank order.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof BankOrderClass
|
|
77
|
+
*/
|
|
78
|
+
'executionDate': string;
|
|
79
|
+
/**
|
|
80
|
+
* Latest due date.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof BankOrderClass
|
|
83
|
+
*/
|
|
84
|
+
'dueDate': string;
|
|
85
|
+
/**
|
|
86
|
+
* Time at which the object was created.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof BankOrderClass
|
|
89
|
+
*/
|
|
90
|
+
'createdAt': string;
|
|
91
|
+
/**
|
|
92
|
+
* Time at which the object was updated.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof BankOrderClass
|
|
95
|
+
*/
|
|
96
|
+
'updatedAt': string;
|
|
97
|
+
/**
|
|
98
|
+
* Identifier of the user who created the record.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof BankOrderClass
|
|
101
|
+
*/
|
|
102
|
+
'createdBy': string;
|
|
103
|
+
/**
|
|
104
|
+
* Identifier of the user who last updated the record.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof BankOrderClass
|
|
107
|
+
*/
|
|
108
|
+
'updatedBy': string;
|
|
109
|
+
/**
|
|
110
|
+
* The financial account object that this bank order is belongs to
|
|
111
|
+
* @type {FinancialAccountClass}
|
|
112
|
+
* @memberof BankOrderClass
|
|
113
|
+
*/
|
|
114
|
+
'financialAccount'?: FinancialAccountClass;
|
|
115
|
+
}
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
13
|
+
import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
|
|
12
14
|
/**
|
|
13
15
|
*
|
|
14
16
|
* @export
|
|
@@ -40,11 +42,17 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
40
42
|
*/
|
|
41
43
|
'bankAccountNumber': string;
|
|
42
44
|
/**
|
|
43
|
-
* Reference number derived from the MT940
|
|
45
|
+
* Reference number derived from the MT940 or CAMT file
|
|
44
46
|
* @type {string}
|
|
45
47
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
46
48
|
*/
|
|
47
|
-
'
|
|
49
|
+
'messageReference'?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Label of the transaction
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
54
|
+
*/
|
|
55
|
+
'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
|
|
48
56
|
/**
|
|
49
57
|
* Currency of the transaction.
|
|
50
58
|
* @type {string}
|
|
@@ -88,23 +96,29 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
88
96
|
*/
|
|
89
97
|
'linkedTransactionId'?: number;
|
|
90
98
|
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {
|
|
99
|
+
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
100
|
+
* @type {boolean}
|
|
101
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
102
|
+
*/
|
|
103
|
+
'isLinked': boolean;
|
|
104
|
+
/**
|
|
105
|
+
* The bank transaction invoices that this bank transaction is linked to
|
|
106
|
+
* @type {Array<BankTransactionInvoiceClass>}
|
|
93
107
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
94
108
|
*/
|
|
95
|
-
'
|
|
109
|
+
'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
|
|
96
110
|
/**
|
|
97
|
-
* The
|
|
98
|
-
* @type {
|
|
111
|
+
* The linked bank order object
|
|
112
|
+
* @type {BankOrderClass}
|
|
99
113
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
100
114
|
*/
|
|
101
|
-
'
|
|
115
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
102
116
|
/**
|
|
103
|
-
*
|
|
104
|
-
* @type {
|
|
117
|
+
* The file format of the bank transaction
|
|
118
|
+
* @type {string}
|
|
105
119
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
106
120
|
*/
|
|
107
|
-
'
|
|
121
|
+
'importedFrom': string;
|
|
108
122
|
/**
|
|
109
123
|
* Time at which the object was created.
|
|
110
124
|
* @type {string}
|
|
@@ -124,3 +138,8 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
124
138
|
*/
|
|
125
139
|
'updatedBy': string;
|
|
126
140
|
}
|
|
141
|
+
export declare const BankTransactionClassWithoutExpandPropertiesLabelEnum: {
|
|
142
|
+
readonly Automated: "automated";
|
|
143
|
+
readonly Manual: "manual";
|
|
144
|
+
};
|
|
145
|
+
export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = void 0;
|
|
17
|
+
exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = {
|
|
18
|
+
Automated: 'automated',
|
|
19
|
+
Manual: 'manual'
|
|
20
|
+
};
|
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
13
|
+
import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
|
|
14
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
12
15
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
16
|
+
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
13
17
|
import { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
14
18
|
/**
|
|
15
19
|
*
|
|
@@ -42,11 +46,17 @@ export interface BankTransactionClass {
|
|
|
42
46
|
*/
|
|
43
47
|
'bankAccountNumber': string;
|
|
44
48
|
/**
|
|
45
|
-
* Reference number derived from the MT940
|
|
49
|
+
* Reference number derived from the MT940 or CAMT file
|
|
46
50
|
* @type {string}
|
|
47
51
|
* @memberof BankTransactionClass
|
|
48
52
|
*/
|
|
49
|
-
'
|
|
53
|
+
'messageReference'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Label of the transaction
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BankTransactionClass
|
|
58
|
+
*/
|
|
59
|
+
'label'?: BankTransactionClassLabelEnum;
|
|
50
60
|
/**
|
|
51
61
|
* Currency of the transaction.
|
|
52
62
|
* @type {string}
|
|
@@ -89,24 +99,18 @@ export interface BankTransactionClass {
|
|
|
89
99
|
* @memberof BankTransactionClass
|
|
90
100
|
*/
|
|
91
101
|
'linkedTransactionId'?: number;
|
|
92
|
-
/**
|
|
93
|
-
* The code of the invoice that this bank transaction is linked to
|
|
94
|
-
* @type {string}
|
|
95
|
-
* @memberof BankTransactionClass
|
|
96
|
-
*/
|
|
97
|
-
'linkedInvoiceCode'?: string;
|
|
98
|
-
/**
|
|
99
|
-
* The identifying invoice number that this bank transaction is linked to
|
|
100
|
-
* @type {string}
|
|
101
|
-
* @memberof BankTransactionClass
|
|
102
|
-
*/
|
|
103
|
-
'linkedInvoiceNumber'?: string;
|
|
104
102
|
/**
|
|
105
103
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
106
104
|
* @type {boolean}
|
|
107
105
|
* @memberof BankTransactionClass
|
|
108
106
|
*/
|
|
109
107
|
'isLinked': boolean;
|
|
108
|
+
/**
|
|
109
|
+
* The bank transaction invoices that this bank transaction is linked to
|
|
110
|
+
* @type {Array<BankTransactionInvoiceClass>}
|
|
111
|
+
* @memberof BankTransactionClass
|
|
112
|
+
*/
|
|
113
|
+
'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
|
|
110
114
|
/**
|
|
111
115
|
* The bank account object that this transaction is belongs to
|
|
112
116
|
* @type {TenantBankAccountClassWithoutExpandProperties}
|
|
@@ -119,6 +123,18 @@ export interface BankTransactionClass {
|
|
|
119
123
|
* @memberof BankTransactionClass
|
|
120
124
|
*/
|
|
121
125
|
'linkedTransaction'?: SharedTransactionClass;
|
|
126
|
+
/**
|
|
127
|
+
* The linked bank order object
|
|
128
|
+
* @type {BankOrderClass}
|
|
129
|
+
* @memberof BankTransactionClass
|
|
130
|
+
*/
|
|
131
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
132
|
+
/**
|
|
133
|
+
* The file format of the bank transaction
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof BankTransactionClass
|
|
136
|
+
*/
|
|
137
|
+
'importedFrom': string;
|
|
122
138
|
/**
|
|
123
139
|
* Time at which the object was created.
|
|
124
140
|
* @type {string}
|
|
@@ -137,4 +153,21 @@ export interface BankTransactionClass {
|
|
|
137
153
|
* @memberof BankTransactionClass
|
|
138
154
|
*/
|
|
139
155
|
'updatedBy': string;
|
|
156
|
+
/**
|
|
157
|
+
* The match suggestions for invoices
|
|
158
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
159
|
+
* @memberof BankTransactionClass
|
|
160
|
+
*/
|
|
161
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
162
|
+
/**
|
|
163
|
+
* The progress of the suggestion generation
|
|
164
|
+
* @type {SuggestionGenerationProgressClass}
|
|
165
|
+
* @memberof BankTransactionClass
|
|
166
|
+
*/
|
|
167
|
+
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
140
168
|
}
|
|
169
|
+
export declare const BankTransactionClassLabelEnum: {
|
|
170
|
+
readonly Automated: "automated";
|
|
171
|
+
readonly Manual: "manual";
|
|
172
|
+
};
|
|
173
|
+
export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
|
|
@@ -0,0 +1,54 @@
|
|
|
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 BankTransactionInvoiceClass
|
|
16
|
+
*/
|
|
17
|
+
export interface BankTransactionInvoiceClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof BankTransactionInvoiceClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BankTransactionInvoiceClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Bank transaction id
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof BankTransactionInvoiceClass
|
|
34
|
+
*/
|
|
35
|
+
'bankTransactionId': number;
|
|
36
|
+
/**
|
|
37
|
+
* Invoice code of the bank transaction invoice
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof BankTransactionInvoiceClass
|
|
40
|
+
*/
|
|
41
|
+
'invoiceCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* Invoice number of the bank transaction invoice
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof BankTransactionInvoiceClass
|
|
46
|
+
*/
|
|
47
|
+
'invoiceNumber': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was created.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BankTransactionInvoiceClass
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
}
|
|
@@ -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,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 { BillingAddressDto } from './billing-address-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BankTransferDto
|
|
17
|
+
*/
|
|
18
|
+
export interface BankTransferDto {
|
|
19
|
+
/**
|
|
20
|
+
* Billing address for the bank transfer payment method
|
|
21
|
+
* @type {BillingAddressDto}
|
|
22
|
+
* @memberof BankTransferDto
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress': BillingAddressDto;
|
|
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,48 @@
|
|
|
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 BillingAddressDto
|
|
16
|
+
*/
|
|
17
|
+
export interface BillingAddressDto {
|
|
18
|
+
/**
|
|
19
|
+
* Full name for billing address
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof BillingAddressDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* Street name for billing address
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BillingAddressDto
|
|
28
|
+
*/
|
|
29
|
+
'street': string;
|
|
30
|
+
/**
|
|
31
|
+
* House number for billing address
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof BillingAddressDto
|
|
34
|
+
*/
|
|
35
|
+
'houseNumber': string;
|
|
36
|
+
/**
|
|
37
|
+
* ZIP/Postal code for billing address
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof BillingAddressDto
|
|
40
|
+
*/
|
|
41
|
+
'zipCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* City name for billing address
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof BillingAddressDto
|
|
46
|
+
*/
|
|
47
|
+
'city': string;
|
|
48
|
+
}
|
|
@@ -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 });
|
|
@@ -93,5 +93,7 @@ export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
|
|
|
93
93
|
readonly Venmo: "venmo";
|
|
94
94
|
readonly Masterpass: "masterpass";
|
|
95
95
|
readonly B4u: "b4u";
|
|
96
|
+
readonly Invoice: "invoice";
|
|
97
|
+
readonly BankTransfer: "bank_transfer";
|
|
96
98
|
};
|
|
97
99
|
export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CompleteEisPaymentSetupRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CompleteEisPaymentSetupRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the account that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'accountCode'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the partner that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'partnerCode'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the lead that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CompleteEisPaymentSetupRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'leadCode'?: string;
|
|
36
|
+
}
|
|
@@ -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 });
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
|
|
13
13
|
import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
|
|
14
|
+
import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
|
|
14
15
|
import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
|
|
|
42
43
|
* @memberof CompletePaymentSetupRequestDto
|
|
43
44
|
*/
|
|
44
45
|
'adyen'?: CompleteAdyenPaymentSetupRequestDto;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {CompleteEisPaymentSetupRequestDto}
|
|
49
|
+
* @memberof CompletePaymentSetupRequestDto
|
|
50
|
+
*/
|
|
51
|
+
'eis'?: CompleteEisPaymentSetupRequestDto;
|
|
45
52
|
}
|
|
@@ -92,5 +92,7 @@ export declare const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum:
|
|
|
92
92
|
readonly Venmo: "venmo";
|
|
93
93
|
readonly Masterpass: "masterpass";
|
|
94
94
|
readonly B4u: "b4u";
|
|
95
|
+
readonly Invoice: "invoice";
|
|
96
|
+
readonly BankTransfer: "bank_transfer";
|
|
95
97
|
};
|
|
96
98
|
export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
|