@emilgroup/payment-sdk 1.13.1-beta.8 → 1.13.1-beta.9
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 +3 -0
- package/README.md +2 -2
- package/api/bank-transaction-api.ts +131 -28
- package/base.ts +1 -1
- package/dist/api/bank-transaction-api.d.ts +84 -28
- package/dist/api/bank-transaction-api.js +114 -22
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +8 -2
- package/dist/models/bank-transaction-class.d.ts +22 -2
- 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/index.d.ts +3 -0
- package/dist/models/index.js +3 -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/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 +8 -2
- package/models/bank-transaction-class-without-expand-properties.ts +8 -2
- package/models/bank-transaction-class.ts +22 -2
- package/models/generate-invoice-match-suggestions-response-class.ts +31 -0
- package/models/index.ts +3 -0
- package/models/invoice-match-suggestion-class.ts +66 -0
- package/models/suggestion-generation-progress-class.ts +52 -0
- package/models/unlinked-bank-transaction-response-class.ts +8 -2
- package/package.json +1 -1
- package/tsconfig.json +1 -0
|
@@ -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 { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GenerateInvoiceMatchSuggestionsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GenerateInvoiceMatchSuggestionsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* List of invoice match suggestions
|
|
21
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
22
|
+
* @memberof GenerateInvoiceMatchSuggestionsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
25
25
|
export * from './deactivate-payment-reminder-request-dto';
|
|
26
26
|
export * from './deactivate-payment-reminder-response-class';
|
|
27
27
|
export * from './deactivated-payment-reminder-class';
|
|
28
|
+
export * from './generate-invoice-match-suggestions-response-class';
|
|
28
29
|
export * from './get-bank-account-response-class';
|
|
29
30
|
export * from './get-bank-transactions-response-class';
|
|
30
31
|
export * from './get-payment-method-response-class';
|
|
@@ -43,6 +44,7 @@ export * from './initiate-stripe-payment-setup-request-dto';
|
|
|
43
44
|
export * from './initiate-stripe-payment-setup-response-class';
|
|
44
45
|
export * from './inline-response200';
|
|
45
46
|
export * from './inline-response503';
|
|
47
|
+
export * from './invoice-match-suggestion-class';
|
|
46
48
|
export * from './link-bank-transaction-request-dto-rest';
|
|
47
49
|
export * from './link-bank-transactions-response-class';
|
|
48
50
|
export * from './list-bank-accounts-response-class';
|
|
@@ -62,6 +64,7 @@ export * from './refund-item-class';
|
|
|
62
64
|
export * from './sepa-direct-dto';
|
|
63
65
|
export * from './set-primary-bank-account-request-dto-rest';
|
|
64
66
|
export * from './shared-transaction-class';
|
|
67
|
+
export * from './suggestion-generation-progress-class';
|
|
65
68
|
export * from './symphony-profile-limited-response-dto';
|
|
66
69
|
export * from './tenant-bank-account-class';
|
|
67
70
|
export * from './tenant-bank-account-class-without-expand-properties';
|
package/dist/models/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __exportStar(require("./create-tenant-bank-account-response-class"), exports);
|
|
|
41
41
|
__exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
|
|
42
42
|
__exportStar(require("./deactivate-payment-reminder-response-class"), exports);
|
|
43
43
|
__exportStar(require("./deactivated-payment-reminder-class"), exports);
|
|
44
|
+
__exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
|
|
44
45
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
45
46
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
46
47
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
@@ -59,6 +60,7 @@ __exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
|
|
|
59
60
|
__exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
|
|
60
61
|
__exportStar(require("./inline-response200"), exports);
|
|
61
62
|
__exportStar(require("./inline-response503"), exports);
|
|
63
|
+
__exportStar(require("./invoice-match-suggestion-class"), exports);
|
|
62
64
|
__exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
|
|
63
65
|
__exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
64
66
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
@@ -78,6 +80,7 @@ __exportStar(require("./refund-item-class"), exports);
|
|
|
78
80
|
__exportStar(require("./sepa-direct-dto"), exports);
|
|
79
81
|
__exportStar(require("./set-primary-bank-account-request-dto-rest"), exports);
|
|
80
82
|
__exportStar(require("./shared-transaction-class"), exports);
|
|
83
|
+
__exportStar(require("./suggestion-generation-progress-class"), exports);
|
|
81
84
|
__exportStar(require("./symphony-profile-limited-response-dto"), exports);
|
|
82
85
|
__exportStar(require("./tenant-bank-account-class"), exports);
|
|
83
86
|
__exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
|
|
@@ -0,0 +1,60 @@
|
|
|
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 InvoiceMatchSuggestionClass
|
|
16
|
+
*/
|
|
17
|
+
export interface InvoiceMatchSuggestionClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Invoice code of the suggested match
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
34
|
+
*/
|
|
35
|
+
'invoiceCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Invoice number of the suggested match
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
40
|
+
*/
|
|
41
|
+
'invoiceNumber': string;
|
|
42
|
+
/**
|
|
43
|
+
* Confidence score (0-100) of the suggested match
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
46
|
+
*/
|
|
47
|
+
'confidenceScore': number;
|
|
48
|
+
/**
|
|
49
|
+
* Criteria used for the match
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
52
|
+
*/
|
|
53
|
+
'matchCriteria': object;
|
|
54
|
+
/**
|
|
55
|
+
* Time at which the object was created.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
58
|
+
*/
|
|
59
|
+
'createdAt': string;
|
|
60
|
+
}
|
|
@@ -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,43 @@
|
|
|
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 SuggestionGenerationProgressClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SuggestionGenerationProgressClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SuggestionGenerationProgressClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Status of the suggestion generation process
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SuggestionGenerationProgressClass
|
|
28
|
+
*/
|
|
29
|
+
'status': SuggestionGenerationProgressClassStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Error message if suggestion generation failed
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SuggestionGenerationProgressClass
|
|
34
|
+
*/
|
|
35
|
+
'errorMessage'?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare const SuggestionGenerationProgressClassStatusEnum: {
|
|
38
|
+
readonly Pending: "pending";
|
|
39
|
+
readonly Processing: "processing";
|
|
40
|
+
readonly Completed: "completed";
|
|
41
|
+
readonly Failed: "failed";
|
|
42
|
+
};
|
|
43
|
+
export type SuggestionGenerationProgressClassStatusEnum = typeof SuggestionGenerationProgressClassStatusEnum[keyof typeof SuggestionGenerationProgressClassStatusEnum];
|
|
@@ -0,0 +1,22 @@
|
|
|
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.SuggestionGenerationProgressClassStatusEnum = void 0;
|
|
17
|
+
exports.SuggestionGenerationProgressClassStatusEnum = {
|
|
18
|
+
Pending: 'pending',
|
|
19
|
+
Processing: 'processing',
|
|
20
|
+
Completed: 'completed',
|
|
21
|
+
Failed: 'failed'
|
|
22
|
+
};
|
|
@@ -40,11 +40,11 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
40
40
|
*/
|
|
41
41
|
'bankAccountNumber': string;
|
|
42
42
|
/**
|
|
43
|
-
* Reference number derived from the MT940
|
|
43
|
+
* Reference number derived from the MT940 or CAMT file
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'messageReference'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Currency of the transaction.
|
|
50
50
|
* @type {string}
|
|
@@ -87,6 +87,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
87
87
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
88
88
|
*/
|
|
89
89
|
'isLinked': boolean;
|
|
90
|
+
/**
|
|
91
|
+
* The file format of the bank transaction
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
94
|
+
*/
|
|
95
|
+
'importedFrom': string;
|
|
90
96
|
/**
|
|
91
97
|
* Time at which the object was created.
|
|
92
98
|
* @type {string}
|
|
@@ -45,11 +45,11 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
45
45
|
*/
|
|
46
46
|
'bankAccountNumber': string;
|
|
47
47
|
/**
|
|
48
|
-
* Reference number derived from the MT940
|
|
48
|
+
* Reference number derived from the MT940 or CAMT file
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'messageReference'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Currency of the transaction.
|
|
55
55
|
* @type {string}
|
|
@@ -110,6 +110,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
110
110
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
111
111
|
*/
|
|
112
112
|
'isLinked': boolean;
|
|
113
|
+
/**
|
|
114
|
+
* The file format of the bank transaction
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
117
|
+
*/
|
|
118
|
+
'importedFrom': string;
|
|
113
119
|
/**
|
|
114
120
|
* Time at which the object was created.
|
|
115
121
|
* @type {string}
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
16
17
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
18
|
+
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
17
19
|
import { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
18
20
|
|
|
19
21
|
/**
|
|
@@ -47,11 +49,11 @@ export interface BankTransactionClass {
|
|
|
47
49
|
*/
|
|
48
50
|
'bankAccountNumber': string;
|
|
49
51
|
/**
|
|
50
|
-
* Reference number derived from the MT940
|
|
52
|
+
* Reference number derived from the MT940 or CAMT file
|
|
51
53
|
* @type {string}
|
|
52
54
|
* @memberof BankTransactionClass
|
|
53
55
|
*/
|
|
54
|
-
'
|
|
56
|
+
'messageReference'?: string;
|
|
55
57
|
/**
|
|
56
58
|
* Currency of the transaction.
|
|
57
59
|
* @type {string}
|
|
@@ -124,6 +126,12 @@ export interface BankTransactionClass {
|
|
|
124
126
|
* @memberof BankTransactionClass
|
|
125
127
|
*/
|
|
126
128
|
'linkedTransaction'?: SharedTransactionClass;
|
|
129
|
+
/**
|
|
130
|
+
* The file format of the bank transaction
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof BankTransactionClass
|
|
133
|
+
*/
|
|
134
|
+
'importedFrom': string;
|
|
127
135
|
/**
|
|
128
136
|
* Time at which the object was created.
|
|
129
137
|
* @type {string}
|
|
@@ -142,5 +150,17 @@ export interface BankTransactionClass {
|
|
|
142
150
|
* @memberof BankTransactionClass
|
|
143
151
|
*/
|
|
144
152
|
'updatedBy': string;
|
|
153
|
+
/**
|
|
154
|
+
* The match suggestions for invoices
|
|
155
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
156
|
+
* @memberof BankTransactionClass
|
|
157
|
+
*/
|
|
158
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
159
|
+
/**
|
|
160
|
+
* The progress of the suggestion generation
|
|
161
|
+
* @type {SuggestionGenerationProgressClass}
|
|
162
|
+
* @memberof BankTransactionClass
|
|
163
|
+
*/
|
|
164
|
+
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
145
165
|
}
|
|
146
166
|
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GenerateInvoiceMatchSuggestionsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GenerateInvoiceMatchSuggestionsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* List of invoice match suggestions
|
|
26
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
27
|
+
* @memberof GenerateInvoiceMatchSuggestionsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
25
25
|
export * from './deactivate-payment-reminder-request-dto';
|
|
26
26
|
export * from './deactivate-payment-reminder-response-class';
|
|
27
27
|
export * from './deactivated-payment-reminder-class';
|
|
28
|
+
export * from './generate-invoice-match-suggestions-response-class';
|
|
28
29
|
export * from './get-bank-account-response-class';
|
|
29
30
|
export * from './get-bank-transactions-response-class';
|
|
30
31
|
export * from './get-payment-method-response-class';
|
|
@@ -43,6 +44,7 @@ export * from './initiate-stripe-payment-setup-request-dto';
|
|
|
43
44
|
export * from './initiate-stripe-payment-setup-response-class';
|
|
44
45
|
export * from './inline-response200';
|
|
45
46
|
export * from './inline-response503';
|
|
47
|
+
export * from './invoice-match-suggestion-class';
|
|
46
48
|
export * from './link-bank-transaction-request-dto-rest';
|
|
47
49
|
export * from './link-bank-transactions-response-class';
|
|
48
50
|
export * from './list-bank-accounts-response-class';
|
|
@@ -62,6 +64,7 @@ export * from './refund-item-class';
|
|
|
62
64
|
export * from './sepa-direct-dto';
|
|
63
65
|
export * from './set-primary-bank-account-request-dto-rest';
|
|
64
66
|
export * from './shared-transaction-class';
|
|
67
|
+
export * from './suggestion-generation-progress-class';
|
|
65
68
|
export * from './symphony-profile-limited-response-dto';
|
|
66
69
|
export * from './tenant-bank-account-class';
|
|
67
70
|
export * from './tenant-bank-account-class-without-expand-properties';
|
|
@@ -0,0 +1,66 @@
|
|
|
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 InvoiceMatchSuggestionClass
|
|
21
|
+
*/
|
|
22
|
+
export interface InvoiceMatchSuggestionClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Invoice code of the suggested match
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
39
|
+
*/
|
|
40
|
+
'invoiceCode': string;
|
|
41
|
+
/**
|
|
42
|
+
* Invoice number of the suggested match
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
45
|
+
*/
|
|
46
|
+
'invoiceNumber': string;
|
|
47
|
+
/**
|
|
48
|
+
* Confidence score (0-100) of the suggested match
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
51
|
+
*/
|
|
52
|
+
'confidenceScore': number;
|
|
53
|
+
/**
|
|
54
|
+
* Criteria used for the match
|
|
55
|
+
* @type {object}
|
|
56
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
57
|
+
*/
|
|
58
|
+
'matchCriteria': object;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was created.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof InvoiceMatchSuggestionClass
|
|
63
|
+
*/
|
|
64
|
+
'createdAt': string;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
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 SuggestionGenerationProgressClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SuggestionGenerationProgressClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof SuggestionGenerationProgressClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Status of the suggestion generation process
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SuggestionGenerationProgressClass
|
|
33
|
+
*/
|
|
34
|
+
'status': SuggestionGenerationProgressClassStatusEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Error message if suggestion generation failed
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SuggestionGenerationProgressClass
|
|
39
|
+
*/
|
|
40
|
+
'errorMessage'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export const SuggestionGenerationProgressClassStatusEnum = {
|
|
44
|
+
Pending: 'pending',
|
|
45
|
+
Processing: 'processing',
|
|
46
|
+
Completed: 'completed',
|
|
47
|
+
Failed: 'failed'
|
|
48
|
+
} as const;
|
|
49
|
+
|
|
50
|
+
export type SuggestionGenerationProgressClassStatusEnum = typeof SuggestionGenerationProgressClassStatusEnum[keyof typeof SuggestionGenerationProgressClassStatusEnum];
|
|
51
|
+
|
|
52
|
+
|
|
@@ -45,11 +45,11 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
45
45
|
*/
|
|
46
46
|
'bankAccountNumber': string;
|
|
47
47
|
/**
|
|
48
|
-
* Reference number derived from the MT940
|
|
48
|
+
* Reference number derived from the MT940 or CAMT file
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'messageReference'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Currency of the transaction.
|
|
55
55
|
* @type {string}
|
|
@@ -92,6 +92,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
92
92
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
93
93
|
*/
|
|
94
94
|
'isLinked': boolean;
|
|
95
|
+
/**
|
|
96
|
+
* The file format of the bank transaction
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
99
|
+
*/
|
|
100
|
+
'importedFrom': string;
|
|
95
101
|
/**
|
|
96
102
|
* Time at which the object was created.
|
|
97
103
|
* @type {string}
|
package/package.json
CHANGED