@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
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { BankOrderClass } from './bank-order-class';
|
|
17
16
|
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
18
17
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
19
18
|
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
@@ -55,12 +54,6 @@ export interface BankTransactionClass {
|
|
|
55
54
|
* @memberof BankTransactionClass
|
|
56
55
|
*/
|
|
57
56
|
'messageReference'?: string;
|
|
58
|
-
/**
|
|
59
|
-
* Label of the transaction
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof BankTransactionClass
|
|
62
|
-
*/
|
|
63
|
-
'label'?: BankTransactionClassLabelEnum;
|
|
64
57
|
/**
|
|
65
58
|
* Currency of the transaction.
|
|
66
59
|
* @type {string}
|
|
@@ -133,12 +126,6 @@ export interface BankTransactionClass {
|
|
|
133
126
|
* @memberof BankTransactionClass
|
|
134
127
|
*/
|
|
135
128
|
'linkedTransaction'?: SharedTransactionClass;
|
|
136
|
-
/**
|
|
137
|
-
* The linked bank order object
|
|
138
|
-
* @type {BankOrderClass}
|
|
139
|
-
* @memberof BankTransactionClass
|
|
140
|
-
*/
|
|
141
|
-
'linkedBankOrder'?: BankOrderClass;
|
|
142
129
|
/**
|
|
143
130
|
* The file format of the bank transaction
|
|
144
131
|
* @type {string}
|
|
@@ -177,11 +164,3 @@ export interface BankTransactionClass {
|
|
|
177
164
|
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
178
165
|
}
|
|
179
166
|
|
|
180
|
-
export const BankTransactionClassLabelEnum = {
|
|
181
|
-
Automated: 'automated',
|
|
182
|
-
Manual: 'manual'
|
|
183
|
-
} as const;
|
|
184
|
-
|
|
185
|
-
export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
|
|
186
|
-
|
|
187
|
-
|
package/models/index.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * from './bank-account-class';
|
|
2
2
|
export * from './bank-account-class-without-expand-properties';
|
|
3
|
-
export * from './bank-order-class';
|
|
4
3
|
export * from './bank-transaction-class';
|
|
5
4
|
export * from './bank-transaction-class-without-expand-properties';
|
|
6
5
|
export * from './billing-profile-dto';
|
|
@@ -15,7 +14,6 @@ export * from './complete-stripe-payment-setup-request-dto';
|
|
|
15
14
|
export * from './create-bank-account-request-dto';
|
|
16
15
|
export * from './create-bank-account-response-class';
|
|
17
16
|
export * from './create-bank-order-request-dto';
|
|
18
|
-
export * from './create-bank-order-response-class';
|
|
19
17
|
export * from './create-payment-method-response-class';
|
|
20
18
|
export * from './create-payment-reminder-request-dto';
|
|
21
19
|
export * from './create-payment-reminder-response-class';
|
|
@@ -29,10 +27,8 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
29
27
|
export * from './deactivate-payment-reminder-request-dto';
|
|
30
28
|
export * from './deactivate-payment-reminder-response-class';
|
|
31
29
|
export * from './deactivated-payment-reminder-class';
|
|
32
|
-
export * from './financial-account-class';
|
|
33
30
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
34
31
|
export * from './get-bank-account-response-class';
|
|
35
|
-
export * from './get-bank-order-response-class';
|
|
36
32
|
export * from './get-bank-transactions-response-class';
|
|
37
33
|
export * from './get-payment-method-response-class';
|
|
38
34
|
export * from './get-payment-reminder-response-class';
|
|
@@ -55,7 +51,6 @@ export * from './invoice-match-suggestion-class';
|
|
|
55
51
|
export * from './link-bank-transaction-request-dto-rest';
|
|
56
52
|
export * from './link-bank-transactions-response-class';
|
|
57
53
|
export * from './list-bank-accounts-response-class';
|
|
58
|
-
export * from './list-bank-orders-response-class';
|
|
59
54
|
export * from './list-bank-transactions-response-class';
|
|
60
55
|
export * from './list-payment-methods-response-class';
|
|
61
56
|
export * from './list-payment-reminders-response-class';
|
|
@@ -83,7 +78,6 @@ export * from './update-bank-account-request-dto';
|
|
|
83
78
|
export * from './update-bank-account-request-dto-rest';
|
|
84
79
|
export * from './update-bank-account-response-class';
|
|
85
80
|
export * from './update-bank-order-request-dto';
|
|
86
|
-
export * from './update-bank-order-response-class';
|
|
87
81
|
export * from './update-tenant-bank-account-response-class';
|
|
88
82
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
89
83
|
export * from './validate-pspconfig-request-dto';
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { BankOrderClass } from './bank-order-class';
|
|
17
16
|
|
|
18
17
|
/**
|
|
19
18
|
*
|
|
@@ -51,12 +50,6 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
51
50
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
52
51
|
*/
|
|
53
52
|
'messageReference'?: string;
|
|
54
|
-
/**
|
|
55
|
-
* Label of the transaction
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
58
|
-
*/
|
|
59
|
-
'label'?: UnlinkedBankTransactionResponseClassLabelEnum;
|
|
60
53
|
/**
|
|
61
54
|
* Currency of the transaction.
|
|
62
55
|
* @type {string}
|
|
@@ -99,12 +92,6 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
99
92
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
100
93
|
*/
|
|
101
94
|
'isLinked': boolean;
|
|
102
|
-
/**
|
|
103
|
-
* The linked bank order object
|
|
104
|
-
* @type {BankOrderClass}
|
|
105
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
106
|
-
*/
|
|
107
|
-
'linkedBankOrder'?: BankOrderClass;
|
|
108
95
|
/**
|
|
109
96
|
* The file format of the bank transaction
|
|
110
97
|
* @type {string}
|
|
@@ -131,11 +118,3 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
131
118
|
'updatedBy': string;
|
|
132
119
|
}
|
|
133
120
|
|
|
134
|
-
export const UnlinkedBankTransactionResponseClassLabelEnum = {
|
|
135
|
-
Automated: 'automated',
|
|
136
|
-
Manual: 'manual'
|
|
137
|
-
} as const;
|
|
138
|
-
|
|
139
|
-
export type UnlinkedBankTransactionResponseClassLabelEnum = typeof UnlinkedBankTransactionResponseClassLabelEnum[keyof typeof UnlinkedBankTransactionResponseClassLabelEnum];
|
|
140
|
-
|
|
141
|
-
|