@emilgroup/payment-sdk 1.13.1-beta.6 → 1.13.1-beta.8
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 -3
- package/README.md +2 -2
- package/api/bank-transaction-api.ts +28 -131
- package/dist/api/bank-transaction-api.d.ts +28 -84
- package/dist/api/bank-transaction-api.js +22 -114
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +2 -22
- package/dist/models/bank-transaction-class.d.ts +2 -22
- package/dist/models/index.d.ts +0 -3
- package/dist/models/index.js +0 -3
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +2 -22
- package/models/bank-transaction-class-without-expand-properties.ts +2 -22
- package/models/bank-transaction-class.ts +2 -22
- package/models/index.ts +0 -3
- package/models/unlinked-bank-transaction-response-class.ts +2 -22
- package/package.json +1 -1
- package/dist/models/generate-invoice-match-suggestions-response-class.d.ts +0 -25
- package/dist/models/generate-invoice-match-suggestions-response-class.js +0 -15
- package/dist/models/invoice-match-suggestion-class.d.ts +0 -60
- package/dist/models/invoice-match-suggestion-class.js +0 -15
- package/dist/models/suggestion-generation-progress-class.d.ts +0 -43
- package/dist/models/suggestion-generation-progress-class.js +0 -22
- package/models/generate-invoice-match-suggestions-response-class.ts +0 -31
- package/models/invoice-match-suggestion-class.ts +0 -66
- package/models/suggestion-generation-progress-class.ts +0 -52
|
@@ -1,52 +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
|
-
|
|
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
|
-
|