@emilgroup/payment-sdk 1.13.1-beta.59 → 1.13.1-beta.60
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 +0 -7
- package/README.md +2 -2
- package/api/bank-transaction-api.ts +8 -8
- package/api.ts +0 -2
- package/dist/api/bank-transaction-api.d.ts +8 -8
- package/dist/api/bank-transaction-api.js +6 -6
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +0 -18
- package/dist/models/bank-transaction-class-without-expand-properties.js +0 -5
- package/dist/models/bank-transaction-class.d.ts +0 -18
- package/dist/models/bank-transaction-class.js +0 -5
- package/dist/models/index.d.ts +0 -6
- package/dist/models/index.js +0 -6
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +0 -18
- package/dist/models/unlinked-bank-transaction-response-class.js +0 -5
- package/models/bank-transaction-class-without-expand-properties.ts +0 -21
- package/models/bank-transaction-class.ts +0 -21
- package/models/index.ts +0 -6
- package/models/unlinked-bank-transaction-response-class.ts +0 -21
- package/package.json +1 -1
- package/api/bank-orders-api.ts +0 -691
- package/dist/api/bank-orders-api.d.ts +0 -393
- package/dist/api/bank-orders-api.js +0 -642
- package/dist/models/bank-order-class.d.ts +0 -115
- package/dist/models/bank-order-class.js +0 -15
- package/dist/models/create-bank-order-response-class.d.ts +0 -25
- package/dist/models/create-bank-order-response-class.js +0 -15
- package/dist/models/financial-account-class.d.ts +0 -111
- package/dist/models/financial-account-class.js +0 -24
- package/dist/models/get-bank-order-response-class.d.ts +0 -25
- package/dist/models/get-bank-order-response-class.js +0 -15
- package/dist/models/list-bank-orders-response-class.d.ts +0 -31
- package/dist/models/list-bank-orders-response-class.js +0 -15
- package/dist/models/update-bank-order-response-class.d.ts +0 -25
- package/dist/models/update-bank-order-response-class.js +0 -15
- package/models/bank-order-class.ts +0 -121
- package/models/create-bank-order-response-class.ts +0 -31
- package/models/financial-account-class.ts +0 -120
- package/models/get-bank-order-response-class.ts +0 -31
- package/models/list-bank-orders-response-class.ts +0 -37
- package/models/update-bank-order-response-class.ts +0 -31
|
@@ -1,115 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,25 +0,0 @@
|
|
|
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 CreateBankOrderResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface CreateBankOrderResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* Bank order
|
|
21
|
-
* @type {BankOrderClass}
|
|
22
|
-
* @memberof CreateBankOrderResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'bankOrder': BankOrderClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,111 +0,0 @@
|
|
|
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 FinancialAccountClass
|
|
16
|
-
*/
|
|
17
|
-
export interface FinancialAccountClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof FinancialAccountClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier for the object.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof FinancialAccountClass
|
|
28
|
-
*/
|
|
29
|
-
'code': string;
|
|
30
|
-
/**
|
|
31
|
-
* The name of the account.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof FinancialAccountClass
|
|
34
|
-
*/
|
|
35
|
-
'name': string;
|
|
36
|
-
/**
|
|
37
|
-
* The financial account number.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof FinancialAccountClass
|
|
40
|
-
*/
|
|
41
|
-
'financialAccountNumber': string;
|
|
42
|
-
/**
|
|
43
|
-
* The ID of the parent account, if any.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof FinancialAccountClass
|
|
46
|
-
*/
|
|
47
|
-
'parentId': number;
|
|
48
|
-
/**
|
|
49
|
-
* The partner number of the account.
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof FinancialAccountClass
|
|
52
|
-
*/
|
|
53
|
-
'partnerNumber': string;
|
|
54
|
-
/**
|
|
55
|
-
* The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof FinancialAccountClass
|
|
58
|
-
*/
|
|
59
|
-
'type': FinancialAccountClassTypeEnum;
|
|
60
|
-
/**
|
|
61
|
-
* Metadata about the object.
|
|
62
|
-
* @type {object}
|
|
63
|
-
* @memberof FinancialAccountClass
|
|
64
|
-
*/
|
|
65
|
-
'customFields': object;
|
|
66
|
-
/**
|
|
67
|
-
* The description of the account.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof FinancialAccountClass
|
|
70
|
-
*/
|
|
71
|
-
'description': string;
|
|
72
|
-
/**
|
|
73
|
-
* Whether the account is clearable.
|
|
74
|
-
* @type {boolean}
|
|
75
|
-
* @memberof FinancialAccountClass
|
|
76
|
-
*/
|
|
77
|
-
'clearable': boolean;
|
|
78
|
-
/**
|
|
79
|
-
* Time at which the object was created.
|
|
80
|
-
* @type {string}
|
|
81
|
-
* @memberof FinancialAccountClass
|
|
82
|
-
*/
|
|
83
|
-
'createdAt': string;
|
|
84
|
-
/**
|
|
85
|
-
* Time at which the object was updated.
|
|
86
|
-
* @type {string}
|
|
87
|
-
* @memberof FinancialAccountClass
|
|
88
|
-
*/
|
|
89
|
-
'updatedAt': string;
|
|
90
|
-
/**
|
|
91
|
-
* Identifier of the user who created the record.
|
|
92
|
-
* @type {string}
|
|
93
|
-
* @memberof FinancialAccountClass
|
|
94
|
-
*/
|
|
95
|
-
'createdBy': string;
|
|
96
|
-
/**
|
|
97
|
-
* Identifier of the user who last updated the record.
|
|
98
|
-
* @type {string}
|
|
99
|
-
* @memberof FinancialAccountClass
|
|
100
|
-
*/
|
|
101
|
-
'updatedBy': string;
|
|
102
|
-
}
|
|
103
|
-
export declare const FinancialAccountClassTypeEnum: {
|
|
104
|
-
readonly Asset: "asset";
|
|
105
|
-
readonly Liability: "liability";
|
|
106
|
-
readonly Equity: "equity";
|
|
107
|
-
readonly Revenue: "revenue";
|
|
108
|
-
readonly Expense: "expense";
|
|
109
|
-
readonly OpeningBalance: "opening_balance";
|
|
110
|
-
};
|
|
111
|
-
export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
|
|
@@ -1,24 +0,0 @@
|
|
|
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.FinancialAccountClassTypeEnum = void 0;
|
|
17
|
-
exports.FinancialAccountClassTypeEnum = {
|
|
18
|
-
Asset: 'asset',
|
|
19
|
-
Liability: 'liability',
|
|
20
|
-
Equity: 'equity',
|
|
21
|
-
Revenue: 'revenue',
|
|
22
|
-
Expense: 'expense',
|
|
23
|
-
OpeningBalance: 'opening_balance'
|
|
24
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
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 GetBankOrderResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface GetBankOrderResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* Bank order
|
|
21
|
-
* @type {BankOrderClass}
|
|
22
|
-
* @memberof GetBankOrderResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'bankOrder': BankOrderClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,31 +0,0 @@
|
|
|
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 ListBankOrdersResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface ListBankOrdersResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The list of bank orders.
|
|
21
|
-
* @type {Array<BankOrderClass>}
|
|
22
|
-
* @memberof ListBankOrdersResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'items': Array<BankOrderClass>;
|
|
25
|
-
/**
|
|
26
|
-
* Next page token.
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof ListBankOrdersResponseClass
|
|
29
|
-
*/
|
|
30
|
-
'nextPageToken': string;
|
|
31
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,25 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,121 +0,0 @@
|
|
|
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 { FinancialAccountClass } from './financial-account-class';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface BankOrderClass
|
|
22
|
-
*/
|
|
23
|
-
export interface BankOrderClass {
|
|
24
|
-
/**
|
|
25
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof BankOrderClass
|
|
28
|
-
*/
|
|
29
|
-
'id': number;
|
|
30
|
-
/**
|
|
31
|
-
* Unique identifier for the object.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof BankOrderClass
|
|
34
|
-
*/
|
|
35
|
-
'code': string;
|
|
36
|
-
/**
|
|
37
|
-
* Bank order type.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof BankOrderClass
|
|
40
|
-
*/
|
|
41
|
-
'type': string;
|
|
42
|
-
/**
|
|
43
|
-
* Amount associated with bank order.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof BankOrderClass
|
|
46
|
-
*/
|
|
47
|
-
'amount': number;
|
|
48
|
-
/**
|
|
49
|
-
* Status associated with bank order.
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof BankOrderClass
|
|
52
|
-
*/
|
|
53
|
-
'status': string;
|
|
54
|
-
/**
|
|
55
|
-
* Number associated with bank order.
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof BankOrderClass
|
|
58
|
-
*/
|
|
59
|
-
'orderNumber': string;
|
|
60
|
-
/**
|
|
61
|
-
* Bank order description.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof BankOrderClass
|
|
64
|
-
*/
|
|
65
|
-
'description'?: string;
|
|
66
|
-
/**
|
|
67
|
-
* Financial account code associated with the bank order.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof BankOrderClass
|
|
70
|
-
*/
|
|
71
|
-
'financialAccountCode': string;
|
|
72
|
-
/**
|
|
73
|
-
* List of invoice IDs associated with bank order.
|
|
74
|
-
* @type {Array<number>}
|
|
75
|
-
* @memberof BankOrderClass
|
|
76
|
-
*/
|
|
77
|
-
'invoiceIds': Array<number>;
|
|
78
|
-
/**
|
|
79
|
-
* Day of execution of bank order.
|
|
80
|
-
* @type {string}
|
|
81
|
-
* @memberof BankOrderClass
|
|
82
|
-
*/
|
|
83
|
-
'executionDate': string;
|
|
84
|
-
/**
|
|
85
|
-
* Latest due date.
|
|
86
|
-
* @type {string}
|
|
87
|
-
* @memberof BankOrderClass
|
|
88
|
-
*/
|
|
89
|
-
'dueDate': string;
|
|
90
|
-
/**
|
|
91
|
-
* Time at which the object was created.
|
|
92
|
-
* @type {string}
|
|
93
|
-
* @memberof BankOrderClass
|
|
94
|
-
*/
|
|
95
|
-
'createdAt': string;
|
|
96
|
-
/**
|
|
97
|
-
* Time at which the object was updated.
|
|
98
|
-
* @type {string}
|
|
99
|
-
* @memberof BankOrderClass
|
|
100
|
-
*/
|
|
101
|
-
'updatedAt': string;
|
|
102
|
-
/**
|
|
103
|
-
* Identifier of the user who created the record.
|
|
104
|
-
* @type {string}
|
|
105
|
-
* @memberof BankOrderClass
|
|
106
|
-
*/
|
|
107
|
-
'createdBy': string;
|
|
108
|
-
/**
|
|
109
|
-
* Identifier of the user who last updated the record.
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof BankOrderClass
|
|
112
|
-
*/
|
|
113
|
-
'updatedBy': string;
|
|
114
|
-
/**
|
|
115
|
-
* The financial account object that this bank order is belongs to
|
|
116
|
-
* @type {FinancialAccountClass}
|
|
117
|
-
* @memberof BankOrderClass
|
|
118
|
-
*/
|
|
119
|
-
'financialAccount'?: FinancialAccountClass;
|
|
120
|
-
}
|
|
121
|
-
|
|
@@ -1,31 +0,0 @@
|
|
|
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 { BankOrderClass } from './bank-order-class';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @interface CreateBankOrderResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface CreateBankOrderResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* Bank order
|
|
26
|
-
* @type {BankOrderClass}
|
|
27
|
-
* @memberof CreateBankOrderResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'bankOrder': BankOrderClass;
|
|
30
|
-
}
|
|
31
|
-
|