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

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.
Files changed (32) hide show
  1. package/.openapi-generator/FILES +7 -0
  2. package/README.md +2 -2
  3. package/api/bank-orders-api.ts +691 -0
  4. package/api.ts +2 -0
  5. package/base.ts +6 -1
  6. package/dist/api/bank-orders-api.d.ts +393 -0
  7. package/dist/api/bank-orders-api.js +642 -0
  8. package/dist/api.d.ts +1 -0
  9. package/dist/api.js +1 -0
  10. package/dist/base.js +5 -1
  11. package/dist/models/bank-order-class.d.ts +115 -0
  12. package/dist/models/bank-order-class.js +15 -0
  13. package/dist/models/create-bank-order-response-class.d.ts +25 -0
  14. package/dist/models/create-bank-order-response-class.js +15 -0
  15. package/dist/models/financial-account-class.d.ts +111 -0
  16. package/dist/models/financial-account-class.js +24 -0
  17. package/dist/models/get-bank-order-response-class.d.ts +25 -0
  18. package/dist/models/get-bank-order-response-class.js +15 -0
  19. package/dist/models/index.d.ts +6 -0
  20. package/dist/models/index.js +6 -0
  21. package/dist/models/list-bank-orders-response-class.d.ts +31 -0
  22. package/dist/models/list-bank-orders-response-class.js +15 -0
  23. package/dist/models/update-bank-order-response-class.d.ts +25 -0
  24. package/dist/models/update-bank-order-response-class.js +15 -0
  25. package/models/bank-order-class.ts +121 -0
  26. package/models/create-bank-order-response-class.ts +31 -0
  27. package/models/financial-account-class.ts +120 -0
  28. package/models/get-bank-order-response-class.ts +31 -0
  29. package/models/index.ts +6 -0
  30. package/models/list-bank-orders-response-class.ts +37 -0
  31. package/models/update-bank-order-response-class.ts +31 -0
  32. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  export * from './api/bank-accounts-api';
13
+ export * from './api/bank-orders-api';
13
14
  export * from './api/bank-transaction-api';
14
15
  export * from './api/health-check-api';
15
16
  export * from './api/payment-methods-api';
package/dist/api.js CHANGED
@@ -28,6 +28,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
30
  __exportStar(require("./api/bank-accounts-api"), exports);
31
+ __exportStar(require("./api/bank-orders-api"), exports);
31
32
  __exportStar(require("./api/bank-transaction-api"), exports);
32
33
  __exportStar(require("./api/health-check-api"), exports);
33
34
  __exportStar(require("./api/payment-methods-api"), exports);
package/dist/base.js CHANGED
@@ -124,9 +124,13 @@ var BaseAPI = /** @class */ (function () {
124
124
  this.axios = axios;
125
125
  this.loadTokenData();
126
126
  if (configuration) {
127
+ var accessToken = this.tokenData.accessToken;
127
128
  this.configuration = configuration;
128
129
  this.basePath = configuration.basePath || this.basePath;
129
- this.configuration.accessToken = this.tokenData.accessToken ? "Bearer ".concat(this.tokenData.accessToken) : '';
130
+ // Use config token if provided, otherwise use tokenData token
131
+ var configToken = this.configuration.accessToken;
132
+ var storedToken = accessToken ? "Bearer ".concat(accessToken) : '';
133
+ this.configuration.accessToken = configToken || storedToken;
130
134
  }
131
135
  else {
132
136
  var _a = this.tokenData, accessToken = _a.accessToken, username = _a.username;
@@ -0,0 +1,115 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { FinancialAccountClass } from './financial-account-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface BankOrderClass
17
+ */
18
+ export interface BankOrderClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof BankOrderClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier for the object.
27
+ * @type {string}
28
+ * @memberof BankOrderClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Bank order type.
33
+ * @type {string}
34
+ * @memberof BankOrderClass
35
+ */
36
+ 'type': string;
37
+ /**
38
+ * Amount associated with bank order.
39
+ * @type {number}
40
+ * @memberof BankOrderClass
41
+ */
42
+ 'amount': number;
43
+ /**
44
+ * Status associated with bank order.
45
+ * @type {string}
46
+ * @memberof BankOrderClass
47
+ */
48
+ 'status': string;
49
+ /**
50
+ * Number associated with bank order.
51
+ * @type {string}
52
+ * @memberof BankOrderClass
53
+ */
54
+ 'orderNumber': string;
55
+ /**
56
+ * Bank order description.
57
+ * @type {string}
58
+ * @memberof BankOrderClass
59
+ */
60
+ 'description'?: string;
61
+ /**
62
+ * Financial account code associated with the bank order.
63
+ * @type {string}
64
+ * @memberof BankOrderClass
65
+ */
66
+ 'financialAccountCode': string;
67
+ /**
68
+ * List of invoice IDs associated with bank order.
69
+ * @type {Array<number>}
70
+ * @memberof BankOrderClass
71
+ */
72
+ 'invoiceIds': Array<number>;
73
+ /**
74
+ * Day of execution of bank order.
75
+ * @type {string}
76
+ * @memberof BankOrderClass
77
+ */
78
+ 'executionDate': string;
79
+ /**
80
+ * Latest due date.
81
+ * @type {string}
82
+ * @memberof BankOrderClass
83
+ */
84
+ 'dueDate': string;
85
+ /**
86
+ * Time at which the object was created.
87
+ * @type {string}
88
+ * @memberof BankOrderClass
89
+ */
90
+ 'createdAt': string;
91
+ /**
92
+ * Time at which the object was updated.
93
+ * @type {string}
94
+ * @memberof BankOrderClass
95
+ */
96
+ 'updatedAt': string;
97
+ /**
98
+ * Identifier of the user who created the record.
99
+ * @type {string}
100
+ * @memberof BankOrderClass
101
+ */
102
+ 'createdBy': string;
103
+ /**
104
+ * Identifier of the user who last updated the record.
105
+ * @type {string}
106
+ * @memberof BankOrderClass
107
+ */
108
+ 'updatedBy': string;
109
+ /**
110
+ * The financial account object that this bank order is belongs to
111
+ * @type {FinancialAccountClass}
112
+ * @memberof BankOrderClass
113
+ */
114
+ 'financialAccount'?: FinancialAccountClass;
115
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BankOrderClass } from './bank-order-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBankOrderResponseClass
17
+ */
18
+ export interface CreateBankOrderResponseClass {
19
+ /**
20
+ * Bank order
21
+ * @type {BankOrderClass}
22
+ * @memberof CreateBankOrderResponseClass
23
+ */
24
+ 'bankOrder': BankOrderClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,111 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface FinancialAccountClass
16
+ */
17
+ export interface FinancialAccountClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof FinancialAccountClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof FinancialAccountClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * The name of the account.
32
+ * @type {string}
33
+ * @memberof FinancialAccountClass
34
+ */
35
+ 'name': string;
36
+ /**
37
+ * The financial account number.
38
+ * @type {string}
39
+ * @memberof FinancialAccountClass
40
+ */
41
+ 'financialAccountNumber': string;
42
+ /**
43
+ * The ID of the parent account, if any.
44
+ * @type {number}
45
+ * @memberof FinancialAccountClass
46
+ */
47
+ 'parentId': number;
48
+ /**
49
+ * The partner number of the account.
50
+ * @type {string}
51
+ * @memberof FinancialAccountClass
52
+ */
53
+ 'partnerNumber': string;
54
+ /**
55
+ * The type of account, e.g. \"Asset\", \"Liability\", \"Equity\", \"Revenue\", \"Expense\".
56
+ * @type {string}
57
+ * @memberof FinancialAccountClass
58
+ */
59
+ 'type': FinancialAccountClassTypeEnum;
60
+ /**
61
+ * Metadata about the object.
62
+ * @type {object}
63
+ * @memberof FinancialAccountClass
64
+ */
65
+ 'customFields': object;
66
+ /**
67
+ * The description of the account.
68
+ * @type {string}
69
+ * @memberof FinancialAccountClass
70
+ */
71
+ 'description': string;
72
+ /**
73
+ * Whether the account is clearable.
74
+ * @type {boolean}
75
+ * @memberof FinancialAccountClass
76
+ */
77
+ 'clearable': boolean;
78
+ /**
79
+ * Time at which the object was created.
80
+ * @type {string}
81
+ * @memberof FinancialAccountClass
82
+ */
83
+ 'createdAt': string;
84
+ /**
85
+ * Time at which the object was updated.
86
+ * @type {string}
87
+ * @memberof FinancialAccountClass
88
+ */
89
+ 'updatedAt': string;
90
+ /**
91
+ * Identifier of the user who created the record.
92
+ * @type {string}
93
+ * @memberof FinancialAccountClass
94
+ */
95
+ 'createdBy': string;
96
+ /**
97
+ * Identifier of the user who last updated the record.
98
+ * @type {string}
99
+ * @memberof FinancialAccountClass
100
+ */
101
+ 'updatedBy': string;
102
+ }
103
+ export declare const FinancialAccountClassTypeEnum: {
104
+ readonly Asset: "asset";
105
+ readonly Liability: "liability";
106
+ readonly Equity: "equity";
107
+ readonly Revenue: "revenue";
108
+ readonly Expense: "expense";
109
+ readonly OpeningBalance: "opening_balance";
110
+ };
111
+ export type FinancialAccountClassTypeEnum = typeof FinancialAccountClassTypeEnum[keyof typeof FinancialAccountClassTypeEnum];
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.FinancialAccountClassTypeEnum = void 0;
17
+ exports.FinancialAccountClassTypeEnum = {
18
+ Asset: 'asset',
19
+ Liability: 'liability',
20
+ Equity: 'equity',
21
+ Revenue: 'revenue',
22
+ Expense: 'expense',
23
+ OpeningBalance: 'opening_balance'
24
+ };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BankOrderClass } from './bank-order-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetBankOrderResponseClass
17
+ */
18
+ export interface GetBankOrderResponseClass {
19
+ /**
20
+ * Bank order
21
+ * @type {BankOrderClass}
22
+ * @memberof GetBankOrderResponseClass
23
+ */
24
+ 'bankOrder': BankOrderClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,6 @@
1
1
  export * from './bank-account-class';
2
2
  export * from './bank-account-class-without-expand-properties';
3
+ export * from './bank-order-class';
3
4
  export * from './bank-transaction-class';
4
5
  export * from './bank-transaction-class-without-expand-properties';
5
6
  export * from './billing-profile-dto';
@@ -14,6 +15,7 @@ export * from './complete-stripe-payment-setup-request-dto';
14
15
  export * from './create-bank-account-request-dto';
15
16
  export * from './create-bank-account-response-class';
16
17
  export * from './create-bank-order-request-dto';
18
+ export * from './create-bank-order-response-class';
17
19
  export * from './create-payment-method-response-class';
18
20
  export * from './create-payment-reminder-request-dto';
19
21
  export * from './create-payment-reminder-response-class';
@@ -27,8 +29,10 @@ export * from './create-tenant-bank-account-response-class';
27
29
  export * from './deactivate-payment-reminder-request-dto';
28
30
  export * from './deactivate-payment-reminder-response-class';
29
31
  export * from './deactivated-payment-reminder-class';
32
+ export * from './financial-account-class';
30
33
  export * from './generate-invoice-match-suggestions-response-class';
31
34
  export * from './get-bank-account-response-class';
35
+ export * from './get-bank-order-response-class';
32
36
  export * from './get-bank-transactions-response-class';
33
37
  export * from './get-payment-method-response-class';
34
38
  export * from './get-payment-reminder-response-class';
@@ -51,6 +55,7 @@ export * from './invoice-match-suggestion-class';
51
55
  export * from './link-bank-transaction-request-dto-rest';
52
56
  export * from './link-bank-transactions-response-class';
53
57
  export * from './list-bank-accounts-response-class';
58
+ export * from './list-bank-orders-response-class';
54
59
  export * from './list-bank-transactions-response-class';
55
60
  export * from './list-payment-methods-response-class';
56
61
  export * from './list-payment-reminders-response-class';
@@ -78,6 +83,7 @@ export * from './update-bank-account-request-dto';
78
83
  export * from './update-bank-account-request-dto-rest';
79
84
  export * from './update-bank-account-response-class';
80
85
  export * from './update-bank-order-request-dto';
86
+ export * from './update-bank-order-response-class';
81
87
  export * from './update-tenant-bank-account-response-class';
82
88
  export * from './update-tenant-bank-account-rest-request-dto';
83
89
  export * from './validate-pspconfig-request-dto';
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./bank-account-class"), exports);
18
18
  __exportStar(require("./bank-account-class-without-expand-properties"), exports);
19
+ __exportStar(require("./bank-order-class"), exports);
19
20
  __exportStar(require("./bank-transaction-class"), exports);
20
21
  __exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
21
22
  __exportStar(require("./billing-profile-dto"), exports);
@@ -30,6 +31,7 @@ __exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
30
31
  __exportStar(require("./create-bank-account-request-dto"), exports);
31
32
  __exportStar(require("./create-bank-account-response-class"), exports);
32
33
  __exportStar(require("./create-bank-order-request-dto"), exports);
34
+ __exportStar(require("./create-bank-order-response-class"), exports);
33
35
  __exportStar(require("./create-payment-method-response-class"), exports);
34
36
  __exportStar(require("./create-payment-reminder-request-dto"), exports);
35
37
  __exportStar(require("./create-payment-reminder-response-class"), exports);
@@ -43,8 +45,10 @@ __exportStar(require("./create-tenant-bank-account-response-class"), exports);
43
45
  __exportStar(require("./deactivate-payment-reminder-request-dto"), exports);
44
46
  __exportStar(require("./deactivate-payment-reminder-response-class"), exports);
45
47
  __exportStar(require("./deactivated-payment-reminder-class"), exports);
48
+ __exportStar(require("./financial-account-class"), exports);
46
49
  __exportStar(require("./generate-invoice-match-suggestions-response-class"), exports);
47
50
  __exportStar(require("./get-bank-account-response-class"), exports);
51
+ __exportStar(require("./get-bank-order-response-class"), exports);
48
52
  __exportStar(require("./get-bank-transactions-response-class"), exports);
49
53
  __exportStar(require("./get-payment-method-response-class"), exports);
50
54
  __exportStar(require("./get-payment-reminder-response-class"), exports);
@@ -67,6 +71,7 @@ __exportStar(require("./invoice-match-suggestion-class"), exports);
67
71
  __exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
68
72
  __exportStar(require("./link-bank-transactions-response-class"), exports);
69
73
  __exportStar(require("./list-bank-accounts-response-class"), exports);
74
+ __exportStar(require("./list-bank-orders-response-class"), exports);
70
75
  __exportStar(require("./list-bank-transactions-response-class"), exports);
71
76
  __exportStar(require("./list-payment-methods-response-class"), exports);
72
77
  __exportStar(require("./list-payment-reminders-response-class"), exports);
@@ -94,6 +99,7 @@ __exportStar(require("./update-bank-account-request-dto"), exports);
94
99
  __exportStar(require("./update-bank-account-request-dto-rest"), exports);
95
100
  __exportStar(require("./update-bank-account-response-class"), exports);
96
101
  __exportStar(require("./update-bank-order-request-dto"), exports);
102
+ __exportStar(require("./update-bank-order-response-class"), exports);
97
103
  __exportStar(require("./update-tenant-bank-account-response-class"), exports);
98
104
  __exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
99
105
  __exportStar(require("./validate-pspconfig-request-dto"), exports);
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BankOrderClass } from './bank-order-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListBankOrdersResponseClass
17
+ */
18
+ export interface ListBankOrdersResponseClass {
19
+ /**
20
+ * The list of bank orders.
21
+ * @type {Array<BankOrderClass>}
22
+ * @memberof ListBankOrdersResponseClass
23
+ */
24
+ 'items': Array<BankOrderClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBankOrdersResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Emil Payment Service
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
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { BankOrderClass } from './bank-order-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateBankOrderResponseClass
17
+ */
18
+ export interface UpdateBankOrderResponseClass {
19
+ /**
20
+ * Bank order
21
+ * @type {BankOrderClass}
22
+ * @memberof UpdateBankOrderResponseClass
23
+ */
24
+ 'bankOrder': BankOrderClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });