@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.
@@ -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
-