@emilgroup/payment-sdk 1.13.1-beta.46 → 1.13.1-beta.47

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,120 +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 FinancialAccountClass
21
- */
22
- export interface FinancialAccountClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof FinancialAccountClass
27
- */
28
- 'id': number;
29
- /**
30
- * Unique identifier for the object.
31
- * @type {string}
32
- * @memberof FinancialAccountClass
33
- */
34
- 'code': string;
35
- /**
36
- * The name of the account.
37
- * @type {string}
38
- * @memberof FinancialAccountClass
39
- */
40
- 'name': string;
41
- /**
42
- * The financial account number.
43
- * @type {string}
44
- * @memberof FinancialAccountClass
45
- */
46
- 'financialAccountNumber': string;
47
- /**
48
- * The ID of the parent account, if any.
49
- * @type {number}
50
- * @memberof FinancialAccountClass
51
- */
52
- 'parentId': number;
53
- /**
54
- * The partner number of the account.
55
- * @type {string}
56
- * @memberof FinancialAccountClass
57
- */
58
- 'partnerNumber': string;
59
- /**
60
- * The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
61
- * @type {string}
62
- * @memberof FinancialAccountClass
63
- */
64
- 'type': FinancialAccountClassTypeEnum;
65
- /**
66
- * Metadata about the object.
67
- * @type {object}
68
- * @memberof FinancialAccountClass
69
- */
70
- 'customFields': object;
71
- /**
72
- * The description of the account.
73
- * @type {string}
74
- * @memberof FinancialAccountClass
75
- */
76
- 'description': string;
77
- /**
78
- * Whether the account is clearable.
79
- * @type {boolean}
80
- * @memberof FinancialAccountClass
81
- */
82
- 'clearable': boolean;
83
- /**
84
- * Time at which the object was created.
85
- * @type {string}
86
- * @memberof FinancialAccountClass
87
- */
88
- 'createdAt': string;
89
- /**
90
- * Time at which the object was updated.
91
- * @type {string}
92
- * @memberof FinancialAccountClass
93
- */
94
- 'updatedAt': string;
95
- /**
96
- * Identifier of the user who created the record.
97
- * @type {string}
98
- * @memberof FinancialAccountClass
99
- */
100
- 'createdBy': string;
101
- /**
102
- * Identifier of the user who last updated the record.
103
- * @type {string}
104
- * @memberof FinancialAccountClass
105
- */
106
- 'updatedBy': string;
107
- }
108
-
109
- export const FinancialAccountClassTypeEnum = {
110
- Asset: 'asset',
111
- Liability: 'liability',
112
- Equity: 'equity',
113
- Revenue: 'revenue',
114
- Expense: 'expense',
115
- OpeningBalance: 'opening_balance'
116
- } as const;
117
-
118
- export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
119
-
120
-
@@ -1,31 +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
- import { BankOrderClass } from './bank-order-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface GetBankOrderResponseClass
22
- */
23
- export interface GetBankOrderResponseClass {
24
- /**
25
- * Bank order
26
- * @type {BankOrderClass}
27
- * @memberof GetBankOrderResponseClass
28
- */
29
- 'bankOrder': BankOrderClass;
30
- }
31
-
@@ -1,37 +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
- import { BankOrderClass } from './bank-order-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface ListBankOrdersResponseClass
22
- */
23
- export interface ListBankOrdersResponseClass {
24
- /**
25
- * The list of bank orders.
26
- * @type {Array<BankOrderClass>}
27
- * @memberof ListBankOrdersResponseClass
28
- */
29
- 'items': Array<BankOrderClass>;
30
- /**
31
- * Next page token.
32
- * @type {string}
33
- * @memberof ListBankOrdersResponseClass
34
- */
35
- 'nextPageToken': string;
36
- }
37
-
@@ -1,31 +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
- import { BankOrderClass } from './bank-order-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface UpdateBankOrderResponseClass
22
- */
23
- export interface UpdateBankOrderResponseClass {
24
- /**
25
- * Bank order
26
- * @type {BankOrderClass}
27
- * @memberof UpdateBankOrderResponseClass
28
- */
29
- 'bankOrder': BankOrderClass;
30
- }
31
-