@emilgroup/payment-sdk 1.4.1-beta.1 → 1.4.1-beta.10
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 +2 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +1 -1
- package/api/bank-transaction-api.ts +60 -26
- package/api/default-api.ts +1 -1
- package/api/payment-methods-api.ts +1 -1
- package/api/payment-reminders-api.ts +1 -1
- package/api/payment-setup-api.ts +1 -1
- package/api/payments-api.ts +1 -1
- package/api/refunds-api.ts +1 -1
- package/api/tenant-bank-account-api.ts +49 -29
- package/api/webhooks-api.ts +1 -1
- package/api.ts +1 -1
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +1 -1
- package/dist/api/bank-accounts-api.js +1 -1
- package/dist/api/bank-transaction-api.d.ts +39 -19
- package/dist/api/bank-transaction-api.js +33 -20
- package/dist/api/default-api.d.ts +1 -1
- package/dist/api/default-api.js +1 -1
- package/dist/api/payment-methods-api.d.ts +1 -1
- package/dist/api/payment-methods-api.js +1 -1
- package/dist/api/payment-reminders-api.d.ts +1 -1
- package/dist/api/payment-reminders-api.js +1 -1
- package/dist/api/payment-setup-api.d.ts +1 -1
- package/dist/api/payment-setup-api.js +1 -1
- package/dist/api/payments-api.d.ts +1 -1
- package/dist/api/payments-api.js +1 -1
- package/dist/api/refunds-api.d.ts +1 -1
- package/dist/api/refunds-api.js +1 -1
- package/dist/api/tenant-bank-account-api.d.ts +49 -29
- package/dist/api/tenant-bank-account-api.js +44 -24
- package/dist/api/webhooks-api.d.ts +1 -1
- package/dist/api/webhooks-api.js +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/bank-transaction-response-class.d.ts +7 -1
- package/dist/models/bank-transaction-response-class.js +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/create-payment-reminder-request-dto.js +1 -1
- package/dist/models/create-payment-request-dto.d.ts +1 -1
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-refund-request-dto.d.ts +1 -1
- package/dist/models/create-refund-request-dto.js +1 -1
- package/dist/models/create-refund-response-class.d.ts +1 -1
- package/dist/models/create-refund-response-class.js +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/get-bank-transactions-response-class.js +1 -1
- package/dist/models/get-refund-response-class.d.ts +1 -1
- package/dist/models/get-refund-response-class.js +1 -1
- package/dist/models/get-request-dto.d.ts +1 -1
- package/dist/models/get-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/inline-response200.d.ts +1 -1
- package/dist/models/inline-response200.js +1 -1
- package/dist/models/inline-response503.d.ts +1 -1
- package/dist/models/inline-response503.js +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/link-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/list-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/list-bank-transactions-response-class.js +1 -1
- package/dist/models/list-refunds-response-class.d.ts +1 -1
- package/dist/models/list-refunds-response-class.js +1 -1
- package/dist/models/refund-class.d.ts +1 -1
- package/dist/models/refund-class.js +1 -1
- package/dist/models/tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/tenant-bank-account-response-class.js +1 -1
- package/dist/models/transaction-class.d.ts +1 -1
- package/dist/models/transaction-class.js +1 -1
- package/dist/models/unlink-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +1 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +1 -1
- package/dist/models/validate-pspconfig-request-dto.js +1 -1
- package/index.ts +1 -1
- package/models/bank-transaction-response-class.ts +7 -1
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +1 -1
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-refund-response-class.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-bank-transactions-response-class.ts +1 -1
- package/models/get-refund-response-class.ts +1 -1
- package/models/get-request-dto.ts +1 -1
- package/models/get-tenant-bank-account-response-class.ts +1 -1
- package/models/index.ts +2 -0
- package/models/inline-response200.ts +1 -1
- package/models/inline-response503.ts +1 -1
- package/models/link-bank-transaction-request-dto-rest.ts +30 -0
- package/models/list-bank-transactions-response-class.ts +1 -1
- package/models/list-refunds-response-class.ts +1 -1
- package/models/refund-class.ts +1 -1
- package/models/tenant-bank-account-response-class.ts +1 -1
- package/models/transaction-class.ts +1 -1
- package/models/unlink-bank-transaction-request-dto-rest.ts +30 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -21,7 +21,8 @@ import { UpdateTenantBankAccountRestRequestDto } from '../models';
|
|
|
21
21
|
*/
|
|
22
22
|
export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Create a new tenant bank account
|
|
25
|
+
* @summary Create the Create Tenant Bank Account
|
|
25
26
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
26
27
|
* @param {string} [authorization] Bearer Token
|
|
27
28
|
* @param {*} [options] Override http request option.
|
|
@@ -29,7 +30,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
29
30
|
*/
|
|
30
31
|
createTenantBankAccount: (createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
+
* Deletes a tenant bank account by code
|
|
34
|
+
* @summary Deletes a tenant bank account
|
|
33
35
|
* @param {string} code Unique identifier for the object.
|
|
34
36
|
* @param {string} [authorization] Bearer Token
|
|
35
37
|
* @param {*} [options] Override http request option.
|
|
@@ -37,16 +39,18 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
37
39
|
*/
|
|
38
40
|
deleteTenantBankAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
41
|
/**
|
|
40
|
-
*
|
|
42
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
43
|
+
* @summary Retrieve the Bank Transaction
|
|
41
44
|
* @param {string} code Unique identifier for the object.
|
|
42
45
|
* @param {string} [authorization] Bearer Token
|
|
43
|
-
* @param {
|
|
46
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
44
47
|
* @param {*} [options] Override http request option.
|
|
45
48
|
* @throws {RequiredError}
|
|
46
49
|
*/
|
|
47
|
-
getTenantBankAccount: (code: string, authorization?: string, expand?:
|
|
50
|
+
getTenantBankAccount: (code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
51
|
/**
|
|
49
|
-
*
|
|
52
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* @summary List Tenant Bank Accounts
|
|
50
54
|
* @param {string} [authorization] Bearer Token
|
|
51
55
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
52
56
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -60,7 +64,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
60
64
|
*/
|
|
61
65
|
listTenantBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
66
|
/**
|
|
63
|
-
*
|
|
67
|
+
* Update a tenant bank account by code
|
|
68
|
+
* @summary Update a tenant bank account
|
|
64
69
|
* @param {string} code Unique identifier for the object.
|
|
65
70
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
66
71
|
* @param {string} [authorization] Bearer Token
|
|
@@ -75,7 +80,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
75
80
|
*/
|
|
76
81
|
export declare const TenantBankAccountApiFp: (configuration?: Configuration) => {
|
|
77
82
|
/**
|
|
78
|
-
*
|
|
83
|
+
* Create a new tenant bank account
|
|
84
|
+
* @summary Create the Create Tenant Bank Account
|
|
79
85
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
80
86
|
* @param {string} [authorization] Bearer Token
|
|
81
87
|
* @param {*} [options] Override http request option.
|
|
@@ -83,7 +89,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
83
89
|
*/
|
|
84
90
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
85
91
|
/**
|
|
86
|
-
*
|
|
92
|
+
* Deletes a tenant bank account by code
|
|
93
|
+
* @summary Deletes a tenant bank account
|
|
87
94
|
* @param {string} code Unique identifier for the object.
|
|
88
95
|
* @param {string} [authorization] Bearer Token
|
|
89
96
|
* @param {*} [options] Override http request option.
|
|
@@ -91,16 +98,18 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
91
98
|
*/
|
|
92
99
|
deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
93
100
|
/**
|
|
94
|
-
*
|
|
101
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
102
|
+
* @summary Retrieve the Bank Transaction
|
|
95
103
|
* @param {string} code Unique identifier for the object.
|
|
96
104
|
* @param {string} [authorization] Bearer Token
|
|
97
|
-
* @param {
|
|
105
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
98
106
|
* @param {*} [options] Override http request option.
|
|
99
107
|
* @throws {RequiredError}
|
|
100
108
|
*/
|
|
101
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
109
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
|
|
102
110
|
/**
|
|
103
|
-
*
|
|
111
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* @summary List Tenant Bank Accounts
|
|
104
113
|
* @param {string} [authorization] Bearer Token
|
|
105
114
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
106
115
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -114,7 +123,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
114
123
|
*/
|
|
115
124
|
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
116
125
|
/**
|
|
117
|
-
*
|
|
126
|
+
* Update a tenant bank account by code
|
|
127
|
+
* @summary Update a tenant bank account
|
|
118
128
|
* @param {string} code Unique identifier for the object.
|
|
119
129
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
120
130
|
* @param {string} [authorization] Bearer Token
|
|
@@ -129,7 +139,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
129
139
|
*/
|
|
130
140
|
export declare const TenantBankAccountApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
131
141
|
/**
|
|
132
|
-
*
|
|
142
|
+
* Create a new tenant bank account
|
|
143
|
+
* @summary Create the Create Tenant Bank Account
|
|
133
144
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
134
145
|
* @param {string} [authorization] Bearer Token
|
|
135
146
|
* @param {*} [options] Override http request option.
|
|
@@ -137,7 +148,8 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
137
148
|
*/
|
|
138
149
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
139
150
|
/**
|
|
140
|
-
*
|
|
151
|
+
* Deletes a tenant bank account by code
|
|
152
|
+
* @summary Deletes a tenant bank account
|
|
141
153
|
* @param {string} code Unique identifier for the object.
|
|
142
154
|
* @param {string} [authorization] Bearer Token
|
|
143
155
|
* @param {*} [options] Override http request option.
|
|
@@ -145,16 +157,18 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
145
157
|
*/
|
|
146
158
|
deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
147
159
|
/**
|
|
148
|
-
*
|
|
160
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
161
|
+
* @summary Retrieve the Bank Transaction
|
|
149
162
|
* @param {string} code Unique identifier for the object.
|
|
150
163
|
* @param {string} [authorization] Bearer Token
|
|
151
|
-
* @param {
|
|
164
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
152
165
|
* @param {*} [options] Override http request option.
|
|
153
166
|
* @throws {RequiredError}
|
|
154
167
|
*/
|
|
155
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
168
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
|
|
156
169
|
/**
|
|
157
|
-
*
|
|
170
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
171
|
+
* @summary List Tenant Bank Accounts
|
|
158
172
|
* @param {string} [authorization] Bearer Token
|
|
159
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
160
174
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -168,7 +182,8 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
168
182
|
*/
|
|
169
183
|
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<void>;
|
|
170
184
|
/**
|
|
171
|
-
*
|
|
185
|
+
* Update a tenant bank account by code
|
|
186
|
+
* @summary Update a tenant bank account
|
|
172
187
|
* @param {string} code Unique identifier for the object.
|
|
173
188
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
174
189
|
* @param {string} [authorization] Bearer Token
|
|
@@ -235,10 +250,10 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
|
|
|
235
250
|
readonly authorization?: string;
|
|
236
251
|
/**
|
|
237
252
|
* Expand the response with additional entities
|
|
238
|
-
* @type {
|
|
253
|
+
* @type {'bankTransactions'}
|
|
239
254
|
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
240
255
|
*/
|
|
241
|
-
readonly expand?:
|
|
256
|
+
readonly expand?: 'bankTransactions';
|
|
242
257
|
}
|
|
243
258
|
/**
|
|
244
259
|
* Request parameters for listTenantBankAccounts operation in TenantBankAccountApi.
|
|
@@ -328,7 +343,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
|
|
|
328
343
|
*/
|
|
329
344
|
export declare class TenantBankAccountApi extends BaseAPI {
|
|
330
345
|
/**
|
|
331
|
-
*
|
|
346
|
+
* Create a new tenant bank account
|
|
347
|
+
* @summary Create the Create Tenant Bank Account
|
|
332
348
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
333
349
|
* @param {*} [options] Override http request option.
|
|
334
350
|
* @throws {RequiredError}
|
|
@@ -336,7 +352,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
336
352
|
*/
|
|
337
353
|
createTenantBankAccount(requestParameters: TenantBankAccountApiCreateTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
338
354
|
/**
|
|
339
|
-
*
|
|
355
|
+
* Deletes a tenant bank account by code
|
|
356
|
+
* @summary Deletes a tenant bank account
|
|
340
357
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
341
358
|
* @param {*} [options] Override http request option.
|
|
342
359
|
* @throws {RequiredError}
|
|
@@ -344,7 +361,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
344
361
|
*/
|
|
345
362
|
deleteTenantBankAccount(requestParameters: TenantBankAccountApiDeleteTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
346
363
|
/**
|
|
347
|
-
*
|
|
364
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
365
|
+
* @summary Retrieve the Bank Transaction
|
|
348
366
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
349
367
|
* @param {*} [options] Override http request option.
|
|
350
368
|
* @throws {RequiredError}
|
|
@@ -352,7 +370,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
352
370
|
*/
|
|
353
371
|
getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantBankAccountResponseClass, any>>;
|
|
354
372
|
/**
|
|
355
|
-
*
|
|
373
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
374
|
+
* @summary List Tenant Bank Accounts
|
|
356
375
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
357
376
|
* @param {*} [options] Override http request option.
|
|
358
377
|
* @throws {RequiredError}
|
|
@@ -360,7 +379,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
360
379
|
*/
|
|
361
380
|
listTenantBankAccounts(requestParameters?: TenantBankAccountApiListTenantBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
362
381
|
/**
|
|
363
|
-
*
|
|
382
|
+
* Update a tenant bank account by code
|
|
383
|
+
* @summary Update a tenant bank account
|
|
364
384
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
365
385
|
* @param {*} [options] Override http request option.
|
|
366
386
|
* @throws {RequiredError}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -93,7 +93,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Create a new tenant bank account
|
|
97
|
+
* @summary Create the Create Tenant Bank Account
|
|
97
98
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
98
99
|
* @param {string} [authorization] Bearer Token
|
|
99
100
|
* @param {*} [options] Override http request option.
|
|
@@ -141,7 +142,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
141
142
|
});
|
|
142
143
|
},
|
|
143
144
|
/**
|
|
144
|
-
*
|
|
145
|
+
* Deletes a tenant bank account by code
|
|
146
|
+
* @summary Deletes a tenant bank account
|
|
145
147
|
* @param {string} code Unique identifier for the object.
|
|
146
148
|
* @param {string} [authorization] Bearer Token
|
|
147
149
|
* @param {*} [options] Override http request option.
|
|
@@ -188,10 +190,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
188
190
|
});
|
|
189
191
|
},
|
|
190
192
|
/**
|
|
191
|
-
*
|
|
193
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
194
|
+
* @summary Retrieve the Bank Transaction
|
|
192
195
|
* @param {string} code Unique identifier for the object.
|
|
193
196
|
* @param {string} [authorization] Bearer Token
|
|
194
|
-
* @param {
|
|
197
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
195
198
|
* @param {*} [options] Override http request option.
|
|
196
199
|
* @throws {RequiredError}
|
|
197
200
|
*/
|
|
@@ -239,7 +242,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
239
242
|
});
|
|
240
243
|
},
|
|
241
244
|
/**
|
|
242
|
-
*
|
|
245
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
246
|
+
* @summary List Tenant Bank Accounts
|
|
243
247
|
* @param {string} [authorization] Bearer Token
|
|
244
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
245
249
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -310,7 +314,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
310
314
|
});
|
|
311
315
|
},
|
|
312
316
|
/**
|
|
313
|
-
*
|
|
317
|
+
* Update a tenant bank account by code
|
|
318
|
+
* @summary Update a tenant bank account
|
|
314
319
|
* @param {string} code Unique identifier for the object.
|
|
315
320
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
316
321
|
* @param {string} [authorization] Bearer Token
|
|
@@ -372,7 +377,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
372
377
|
var localVarAxiosParamCreator = (0, exports.TenantBankAccountApiAxiosParamCreator)(configuration);
|
|
373
378
|
return {
|
|
374
379
|
/**
|
|
375
|
-
*
|
|
380
|
+
* Create a new tenant bank account
|
|
381
|
+
* @summary Create the Create Tenant Bank Account
|
|
376
382
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
377
383
|
* @param {string} [authorization] Bearer Token
|
|
378
384
|
* @param {*} [options] Override http request option.
|
|
@@ -392,7 +398,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
392
398
|
});
|
|
393
399
|
},
|
|
394
400
|
/**
|
|
395
|
-
*
|
|
401
|
+
* Deletes a tenant bank account by code
|
|
402
|
+
* @summary Deletes a tenant bank account
|
|
396
403
|
* @param {string} code Unique identifier for the object.
|
|
397
404
|
* @param {string} [authorization] Bearer Token
|
|
398
405
|
* @param {*} [options] Override http request option.
|
|
@@ -412,10 +419,11 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
412
419
|
});
|
|
413
420
|
},
|
|
414
421
|
/**
|
|
415
|
-
*
|
|
422
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
423
|
+
* @summary Retrieve the Bank Transaction
|
|
416
424
|
* @param {string} code Unique identifier for the object.
|
|
417
425
|
* @param {string} [authorization] Bearer Token
|
|
418
|
-
* @param {
|
|
426
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
419
427
|
* @param {*} [options] Override http request option.
|
|
420
428
|
* @throws {RequiredError}
|
|
421
429
|
*/
|
|
@@ -433,7 +441,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
433
441
|
});
|
|
434
442
|
},
|
|
435
443
|
/**
|
|
436
|
-
*
|
|
444
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
445
|
+
* @summary List Tenant Bank Accounts
|
|
437
446
|
* @param {string} [authorization] Bearer Token
|
|
438
447
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
439
448
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -459,7 +468,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
459
468
|
});
|
|
460
469
|
},
|
|
461
470
|
/**
|
|
462
|
-
*
|
|
471
|
+
* Update a tenant bank account by code
|
|
472
|
+
* @summary Update a tenant bank account
|
|
463
473
|
* @param {string} code Unique identifier for the object.
|
|
464
474
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
465
475
|
* @param {string} [authorization] Bearer Token
|
|
@@ -490,7 +500,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
490
500
|
var localVarFp = (0, exports.TenantBankAccountApiFp)(configuration);
|
|
491
501
|
return {
|
|
492
502
|
/**
|
|
493
|
-
*
|
|
503
|
+
* Create a new tenant bank account
|
|
504
|
+
* @summary Create the Create Tenant Bank Account
|
|
494
505
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
495
506
|
* @param {string} [authorization] Bearer Token
|
|
496
507
|
* @param {*} [options] Override http request option.
|
|
@@ -500,7 +511,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
500
511
|
return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
501
512
|
},
|
|
502
513
|
/**
|
|
503
|
-
*
|
|
514
|
+
* Deletes a tenant bank account by code
|
|
515
|
+
* @summary Deletes a tenant bank account
|
|
504
516
|
* @param {string} code Unique identifier for the object.
|
|
505
517
|
* @param {string} [authorization] Bearer Token
|
|
506
518
|
* @param {*} [options] Override http request option.
|
|
@@ -510,10 +522,11 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
510
522
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
511
523
|
},
|
|
512
524
|
/**
|
|
513
|
-
*
|
|
525
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
526
|
+
* @summary Retrieve the Bank Transaction
|
|
514
527
|
* @param {string} code Unique identifier for the object.
|
|
515
528
|
* @param {string} [authorization] Bearer Token
|
|
516
|
-
* @param {
|
|
529
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
517
530
|
* @param {*} [options] Override http request option.
|
|
518
531
|
* @throws {RequiredError}
|
|
519
532
|
*/
|
|
@@ -521,7 +534,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
521
534
|
return localVarFp.getTenantBankAccount(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
522
535
|
},
|
|
523
536
|
/**
|
|
524
|
-
*
|
|
537
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
538
|
+
* @summary List Tenant Bank Accounts
|
|
525
539
|
* @param {string} [authorization] Bearer Token
|
|
526
540
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
527
541
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -537,7 +551,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
537
551
|
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
538
552
|
},
|
|
539
553
|
/**
|
|
540
|
-
*
|
|
554
|
+
* Update a tenant bank account by code
|
|
555
|
+
* @summary Update a tenant bank account
|
|
541
556
|
* @param {string} code Unique identifier for the object.
|
|
542
557
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
543
558
|
* @param {string} [authorization] Bearer Token
|
|
@@ -562,7 +577,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
562
577
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
563
578
|
}
|
|
564
579
|
/**
|
|
565
|
-
*
|
|
580
|
+
* Create a new tenant bank account
|
|
581
|
+
* @summary Create the Create Tenant Bank Account
|
|
566
582
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
567
583
|
* @param {*} [options] Override http request option.
|
|
568
584
|
* @throws {RequiredError}
|
|
@@ -573,7 +589,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
573
589
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).createTenantBankAccount(requestParameters.createTenantBankAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
574
590
|
};
|
|
575
591
|
/**
|
|
576
|
-
*
|
|
592
|
+
* Deletes a tenant bank account by code
|
|
593
|
+
* @summary Deletes a tenant bank account
|
|
577
594
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
578
595
|
* @param {*} [options] Override http request option.
|
|
579
596
|
* @throws {RequiredError}
|
|
@@ -584,7 +601,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
584
601
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).deleteTenantBankAccount(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
585
602
|
};
|
|
586
603
|
/**
|
|
587
|
-
*
|
|
604
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
605
|
+
* @summary Retrieve the Bank Transaction
|
|
588
606
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
589
607
|
* @param {*} [options] Override http request option.
|
|
590
608
|
* @throws {RequiredError}
|
|
@@ -595,7 +613,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
595
613
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
596
614
|
};
|
|
597
615
|
/**
|
|
598
|
-
*
|
|
616
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
617
|
+
* @summary List Tenant Bank Accounts
|
|
599
618
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
600
619
|
* @param {*} [options] Override http request option.
|
|
601
620
|
* @throws {RequiredError}
|
|
@@ -607,7 +626,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
607
626
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
608
627
|
};
|
|
609
628
|
/**
|
|
610
|
-
*
|
|
629
|
+
* Update a tenant bank account by code
|
|
630
|
+
* @summary Update a tenant bank account
|
|
611
631
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
612
632
|
* @param {*} [options] Override http request option.
|
|
613
633
|
* @throws {RequiredError}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/api/webhooks-api.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/api.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/base.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/common.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -68,7 +68,7 @@ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios
|
|
|
68
68
|
* 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.
|
|
69
69
|
*
|
|
70
70
|
* The version of the OpenAPI document: 1.0
|
|
71
|
-
* Contact:
|
|
71
|
+
* Contact: kontakt@emil.de
|
|
72
72
|
*
|
|
73
73
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
74
74
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -95,6 +95,12 @@ export interface BankTransactionResponseClass {
|
|
|
95
95
|
* @memberof BankTransactionResponseClass
|
|
96
96
|
*/
|
|
97
97
|
'linkedInvoiceCode'?: string;
|
|
98
|
+
/**
|
|
99
|
+
* The identifying invoice number that this bank transaction is linked to
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof BankTransactionResponseClass
|
|
102
|
+
*/
|
|
103
|
+
'linkedInvoiceNumber'?: string;
|
|
98
104
|
/**
|
|
99
105
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
100
106
|
* @type {boolean}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|