@emilgroup/payment-sdk 1.13.1-beta.6 → 1.13.1-beta.61

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 (111) hide show
  1. package/.openapi-generator/FILES +11 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +55 -13
  4. package/api/bank-orders-api.ts +691 -0
  5. package/api/bank-transaction-api.ts +57 -29
  6. package/api/payment-methods-api.ts +59 -17
  7. package/api/payment-reminders-api.ts +55 -13
  8. package/api/payments-api.ts +59 -17
  9. package/api/refunds-api.ts +45 -17
  10. package/api/tenant-bank-account-api.ts +45 -17
  11. package/api.ts +2 -0
  12. package/base.ts +52 -3
  13. package/dist/api/bank-accounts-api.d.ts +35 -8
  14. package/dist/api/bank-accounts-api.js +29 -11
  15. package/dist/api/bank-orders-api.d.ts +393 -0
  16. package/dist/api/bank-orders-api.js +642 -0
  17. package/dist/api/bank-transaction-api.d.ts +40 -22
  18. package/dist/api/bank-transaction-api.js +33 -21
  19. package/dist/api/payment-methods-api.d.ts +39 -12
  20. package/dist/api/payment-methods-api.js +32 -14
  21. package/dist/api/payment-reminders-api.d.ts +35 -8
  22. package/dist/api/payment-reminders-api.js +29 -11
  23. package/dist/api/payments-api.d.ts +39 -12
  24. package/dist/api/payments-api.js +32 -14
  25. package/dist/api/refunds-api.d.ts +28 -10
  26. package/dist/api/refunds-api.js +24 -12
  27. package/dist/api/tenant-bank-account-api.d.ts +28 -10
  28. package/dist/api/tenant-bank-account-api.js +24 -12
  29. package/dist/api.d.ts +1 -0
  30. package/dist/api.js +1 -0
  31. package/dist/base.d.ts +10 -1
  32. package/dist/base.js +46 -2
  33. package/dist/models/bank-order-class.d.ts +115 -0
  34. package/dist/models/bank-order-class.js +15 -0
  35. package/dist/models/bank-transaction-class-without-expand-properties.d.ts +18 -14
  36. package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
  37. package/dist/models/bank-transaction-class.d.ts +18 -0
  38. package/dist/models/bank-transaction-class.js +5 -0
  39. package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +1 -0
  40. package/dist/models/complete-adyen-payment-setup-request-dto.js +2 -1
  41. package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
  42. package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
  43. package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
  44. package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +1 -0
  45. package/dist/models/complete-stripe-payment-setup-request-dto.js +2 -1
  46. package/dist/models/create-bank-order-request-dto.d.ts +74 -0
  47. package/dist/models/create-bank-order-request-dto.js +28 -0
  48. package/dist/models/create-bank-order-response-class.d.ts +25 -0
  49. package/dist/models/create-bank-order-response-class.js +15 -0
  50. package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
  51. package/dist/models/create-payment-request-dto.d.ts +7 -1
  52. package/dist/models/create-psp-payment-method-request-dto.d.ts +14 -1
  53. package/dist/models/create-psp-payment-method-request-dto.js +2 -1
  54. package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
  55. package/dist/models/financial-account-class.d.ts +111 -0
  56. package/dist/models/financial-account-class.js +24 -0
  57. package/dist/models/get-bank-order-response-class.d.ts +25 -0
  58. package/dist/models/get-bank-order-response-class.js +15 -0
  59. package/dist/models/index.d.ts +10 -0
  60. package/dist/models/index.js +10 -0
  61. package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
  62. package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
  63. package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
  64. package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
  65. package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
  66. package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
  67. package/dist/models/list-bank-orders-response-class.d.ts +31 -0
  68. package/dist/models/list-bank-orders-response-class.js +15 -0
  69. package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
  70. package/dist/models/payment-class.d.ts +7 -1
  71. package/dist/models/payment-method-class.d.ts +6 -0
  72. package/dist/models/payment-reminder-class.d.ts +7 -1
  73. package/dist/models/refund-class.d.ts +7 -1
  74. package/dist/models/unlinked-bank-transaction-response-class.d.ts +18 -14
  75. package/dist/models/unlinked-bank-transaction-response-class.js +5 -0
  76. package/dist/models/update-bank-order-request-dto.d.ts +56 -0
  77. package/dist/models/update-bank-order-request-dto.js +23 -0
  78. package/dist/models/update-bank-order-response-class.d.ts +25 -0
  79. package/dist/models/update-bank-order-response-class.js +15 -0
  80. package/models/bank-order-class.ts +121 -0
  81. package/models/bank-transaction-class-without-expand-properties.ts +21 -14
  82. package/models/bank-transaction-class.ts +21 -0
  83. package/models/complete-adyen-payment-setup-request-dto.ts +2 -1
  84. package/models/complete-eis-payment-setup-request-dto.ts +42 -0
  85. package/models/complete-payment-setup-request-dto.ts +7 -0
  86. package/models/complete-stripe-payment-setup-request-dto.ts +2 -1
  87. package/models/create-bank-order-request-dto.ts +84 -0
  88. package/models/create-bank-order-response-class.ts +31 -0
  89. package/models/create-payment-reminder-request-dto.ts +7 -1
  90. package/models/create-payment-request-dto.ts +7 -1
  91. package/models/create-psp-payment-method-request-dto.ts +15 -2
  92. package/models/deactivated-payment-reminder-class.ts +7 -1
  93. package/models/financial-account-class.ts +120 -0
  94. package/models/get-bank-order-response-class.ts +31 -0
  95. package/models/index.ts +10 -0
  96. package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
  97. package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
  98. package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
  99. package/models/initiate-payment-setup-request-dto.ts +3 -2
  100. package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
  101. package/models/list-bank-orders-response-class.ts +37 -0
  102. package/models/payment-class-without-expand-properties.ts +7 -1
  103. package/models/payment-class.ts +7 -1
  104. package/models/payment-method-class.ts +6 -0
  105. package/models/payment-reminder-class.ts +7 -1
  106. package/models/refund-class.ts +7 -1
  107. package/models/unlinked-bank-transaction-response-class.ts +21 -14
  108. package/models/update-bank-order-request-dto.ts +65 -0
  109. package/models/update-bank-order-response-class.ts +31 -0
  110. package/package.json +1 -1
  111. package/tsconfig.json +1 -0
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.d.ts CHANGED
@@ -26,6 +26,14 @@ export interface LoginClass {
26
26
  accessToken: string;
27
27
  permissions: string;
28
28
  }
29
+ export interface SwitchWorkspaceRequest {
30
+ username: string;
31
+ targetWorkspace: string;
32
+ }
33
+ export interface SwitchWorkspaceResponseClass {
34
+ accessToken: string;
35
+ permissions: string;
36
+ }
29
37
  export declare enum Environment {
30
38
  Production = "https://apiv2.emil.de",
31
39
  Test = "https://apiv2-test.emil.de",
@@ -57,7 +65,8 @@ export declare class BaseAPI {
57
65
  selectEnvironment(env: Environment): void;
58
66
  selectBasePath(path: string): void;
59
67
  getPermissions(): Array<string>;
60
- authorize(username: string, password: string): Promise<void>;
68
+ authorize(username: string, password: string, targetWorkspace?: string): Promise<void>;
69
+ switchWorkspace(targetWorkspace: string): Promise<void>;
61
70
  refreshTokenInternal(): Promise<LoginClass>;
62
71
  private storeTokenData;
63
72
  loadTokenData(): void;
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;
@@ -151,7 +155,7 @@ var BaseAPI = /** @class */ (function () {
151
155
  }
152
156
  return this.tokenData.permissions.split(',');
153
157
  };
154
- BaseAPI.prototype.authorize = function (username, password) {
158
+ BaseAPI.prototype.authorize = function (username, password, targetWorkspace) {
155
159
  return __awaiter(this, void 0, void 0, function () {
156
160
  var options, response, _a, accessToken, permissions;
157
161
  return __generator(this, function (_b) {
@@ -176,6 +180,46 @@ var BaseAPI = /** @class */ (function () {
176
180
  this.tokenData.username = username;
177
181
  this.tokenData.accessToken = accessToken;
178
182
  this.tokenData.permissions = permissions;
183
+ if (!targetWorkspace) return [3 /*break*/, 3];
184
+ return [4 /*yield*/, this.switchWorkspace(targetWorkspace)];
185
+ case 2:
186
+ _b.sent();
187
+ return [3 /*break*/, 4];
188
+ case 3:
189
+ // Only store if no workspace switch (since switchWorkspace will store after switching)
190
+ this.storeTokenData(__assign({}, this.tokenData));
191
+ _b.label = 4;
192
+ case 4: return [2 /*return*/];
193
+ }
194
+ });
195
+ });
196
+ };
197
+ BaseAPI.prototype.switchWorkspace = function (targetWorkspace) {
198
+ return __awaiter(this, void 0, void 0, function () {
199
+ var options, response, _a, accessToken, permissions;
200
+ return __generator(this, function (_b) {
201
+ switch (_b.label) {
202
+ case 0:
203
+ options = {
204
+ method: 'POST',
205
+ url: "".concat(this.configuration.basePath, "/authservice/v1/workspaces/switch"),
206
+ headers: {
207
+ 'Content-Type': 'application/json',
208
+ 'Authorization': "Bearer ".concat(this.configuration.accessToken),
209
+ },
210
+ data: {
211
+ username: this.configuration.username,
212
+ targetWorkspace: targetWorkspace,
213
+ },
214
+ withCredentials: true,
215
+ };
216
+ return [4 /*yield*/, axios_1.default.request(options)];
217
+ case 1:
218
+ response = _b.sent();
219
+ _a = response.data, accessToken = _a.accessToken, permissions = _a.permissions;
220
+ this.configuration.accessToken = "Bearer ".concat(accessToken);
221
+ this.tokenData.accessToken = accessToken;
222
+ this.tokenData.permissions = permissions;
179
223
  this.storeTokenData(__assign({}, this.tokenData));
180
224
  return [2 /*return*/];
181
225
  }
@@ -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 });
@@ -9,8 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
13
- import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
12
+ import { BankOrderClass } from './bank-order-class';
14
13
  /**
15
14
  *
16
15
  * @export
@@ -47,6 +46,12 @@ export interface BankTransactionClassWithoutExpandProperties {
47
46
  * @memberof BankTransactionClassWithoutExpandProperties
48
47
  */
49
48
  'messageReference'?: string;
49
+ /**
50
+ * Label of the transaction
51
+ * @type {string}
52
+ * @memberof BankTransactionClassWithoutExpandProperties
53
+ */
54
+ 'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
50
55
  /**
51
56
  * Currency of the transaction.
52
57
  * @type {string}
@@ -107,6 +112,12 @@ export interface BankTransactionClassWithoutExpandProperties {
107
112
  * @memberof BankTransactionClassWithoutExpandProperties
108
113
  */
109
114
  'isLinked': boolean;
115
+ /**
116
+ * The linked bank order object
117
+ * @type {BankOrderClass}
118
+ * @memberof BankTransactionClassWithoutExpandProperties
119
+ */
120
+ 'linkedBankOrder'?: BankOrderClass;
110
121
  /**
111
122
  * The file format of the bank transaction
112
123
  * @type {string}
@@ -131,16 +142,9 @@ export interface BankTransactionClassWithoutExpandProperties {
131
142
  * @memberof BankTransactionClassWithoutExpandProperties
132
143
  */
133
144
  'updatedBy': string;
134
- /**
135
- * The match suggestions for invoices
136
- * @type {Array<InvoiceMatchSuggestionClass>}
137
- * @memberof BankTransactionClassWithoutExpandProperties
138
- */
139
- 'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
140
- /**
141
- * The progress of the suggestion generation
142
- * @type {SuggestionGenerationProgressClass}
143
- * @memberof BankTransactionClassWithoutExpandProperties
144
- */
145
- 'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
146
145
  }
146
+ export declare const BankTransactionClassWithoutExpandPropertiesLabelEnum: {
147
+ readonly Automated: "automated";
148
+ readonly Manual: "manual";
149
+ };
150
+ export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
@@ -13,3 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = void 0;
17
+ exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = {
18
+ Automated: 'automated',
19
+ Manual: 'manual'
20
+ };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { BankOrderClass } from './bank-order-class';
12
13
  import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
13
14
  import { SharedTransactionClass } from './shared-transaction-class';
14
15
  import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
@@ -49,6 +50,12 @@ export interface BankTransactionClass {
49
50
  * @memberof BankTransactionClass
50
51
  */
51
52
  'messageReference'?: string;
53
+ /**
54
+ * Label of the transaction
55
+ * @type {string}
56
+ * @memberof BankTransactionClass
57
+ */
58
+ 'label'?: BankTransactionClassLabelEnum;
52
59
  /**
53
60
  * Currency of the transaction.
54
61
  * @type {string}
@@ -121,6 +128,12 @@ export interface BankTransactionClass {
121
128
  * @memberof BankTransactionClass
122
129
  */
123
130
  'linkedTransaction'?: SharedTransactionClass;
131
+ /**
132
+ * The linked bank order object
133
+ * @type {BankOrderClass}
134
+ * @memberof BankTransactionClass
135
+ */
136
+ 'linkedBankOrder'?: BankOrderClass;
124
137
  /**
125
138
  * The file format of the bank transaction
126
139
  * @type {string}
@@ -158,3 +171,8 @@ export interface BankTransactionClass {
158
171
  */
159
172
  'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
160
173
  }
174
+ export declare const BankTransactionClassLabelEnum: {
175
+ readonly Automated: "automated";
176
+ readonly Manual: "manual";
177
+ };
178
+ export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
@@ -13,3 +13,8 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.BankTransactionClassLabelEnum = void 0;
17
+ exports.BankTransactionClassLabelEnum = {
18
+ Automated: 'automated',
19
+ Manual: 'manual'
20
+ };
@@ -93,5 +93,6 @@ export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
93
93
  readonly Venmo: "venmo";
94
94
  readonly Masterpass: "masterpass";
95
95
  readonly B4u: "b4u";
96
+ readonly Invoice: "invoice";
96
97
  };
97
98
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -0,0 +1,36 @@
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 CompleteEisPaymentSetupRequestDto
16
+ */
17
+ export interface CompleteEisPaymentSetupRequestDto {
18
+ /**
19
+ * Unique identifier of the account that this object belongs to.
20
+ * @type {string}
21
+ * @memberof CompleteEisPaymentSetupRequestDto
22
+ */
23
+ 'accountCode'?: string;
24
+ /**
25
+ * Unique identifier of the partner that this object belongs to.
26
+ * @type {string}
27
+ * @memberof CompleteEisPaymentSetupRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ /**
31
+ * Unique identifier of the lead that this object belongs to.
32
+ * @type {string}
33
+ * @memberof CompleteEisPaymentSetupRequestDto
34
+ */
35
+ 'leadCode'?: string;
36
+ }
@@ -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 });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
13
13
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
14
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
14
15
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
15
16
  /**
16
17
  *
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
42
43
  * @memberof CompletePaymentSetupRequestDto
43
44
  */
44
45
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
46
+ /**
47
+ *
48
+ * @type {CompleteEisPaymentSetupRequestDto}
49
+ * @memberof CompletePaymentSetupRequestDto
50
+ */
51
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
45
52
  }
@@ -92,5 +92,6 @@ export declare const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum:
92
92
  readonly Venmo: "venmo";
93
93
  readonly Masterpass: "masterpass";
94
94
  readonly B4u: "b4u";
95
+ readonly Invoice: "invoice";
95
96
  };
96
97
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -0,0 +1,74 @@
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 CreateBankOrderRequestDto
16
+ */
17
+ export interface CreateBankOrderRequestDto {
18
+ /**
19
+ * Bank order type.
20
+ * @type {string}
21
+ * @memberof CreateBankOrderRequestDto
22
+ */
23
+ 'type': CreateBankOrderRequestDtoTypeEnum;
24
+ /**
25
+ * Status associated with bank order.
26
+ * @type {string}
27
+ * @memberof CreateBankOrderRequestDto
28
+ */
29
+ 'status': CreateBankOrderRequestDtoStatusEnum;
30
+ /**
31
+ * Bank order description.
32
+ * @type {string}
33
+ * @memberof CreateBankOrderRequestDto
34
+ */
35
+ 'description'?: string;
36
+ /**
37
+ * Financial account code associated with the bank order.
38
+ * @type {string}
39
+ * @memberof CreateBankOrderRequestDto
40
+ */
41
+ 'financialAccountCode': string;
42
+ /**
43
+ * List of invoice IDs associated with bank order.
44
+ * @type {Array<number>}
45
+ * @memberof CreateBankOrderRequestDto
46
+ */
47
+ 'invoiceIds': Array<number>;
48
+ /**
49
+ * Day of execution of bank order.
50
+ * @type {string}
51
+ * @memberof CreateBankOrderRequestDto
52
+ */
53
+ 'executionDate': string;
54
+ /**
55
+ * Latest due date.
56
+ * @type {string}
57
+ * @memberof CreateBankOrderRequestDto
58
+ */
59
+ 'dueDate': string;
60
+ }
61
+ export declare const CreateBankOrderRequestDtoTypeEnum: {
62
+ readonly DirectDebit: "direct_debit";
63
+ readonly PremiumPayment: "premium_payment";
64
+ readonly ClaimPayment: "claim_payment";
65
+ };
66
+ export type CreateBankOrderRequestDtoTypeEnum = typeof CreateBankOrderRequestDtoTypeEnum[keyof typeof CreateBankOrderRequestDtoTypeEnum];
67
+ export declare const CreateBankOrderRequestDtoStatusEnum: {
68
+ readonly Open: "open";
69
+ readonly Draft: "draft";
70
+ readonly Closed: "closed";
71
+ readonly Accepted: "accepted";
72
+ readonly Processing: "processing";
73
+ };
74
+ export type CreateBankOrderRequestDtoStatusEnum = typeof CreateBankOrderRequestDtoStatusEnum[keyof typeof CreateBankOrderRequestDtoStatusEnum];
@@ -0,0 +1,28 @@
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.CreateBankOrderRequestDtoStatusEnum = exports.CreateBankOrderRequestDtoTypeEnum = void 0;
17
+ exports.CreateBankOrderRequestDtoTypeEnum = {
18
+ DirectDebit: 'direct_debit',
19
+ PremiumPayment: 'premium_payment',
20
+ ClaimPayment: 'claim_payment'
21
+ };
22
+ exports.CreateBankOrderRequestDtoStatusEnum = {
23
+ Open: 'open',
24
+ Draft: 'draft',
25
+ Closed: 'closed',
26
+ Accepted: 'accepted',
27
+ Processing: 'processing'
28
+ };
@@ -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 });
@@ -32,7 +32,13 @@ export interface CreatePaymentReminderRequestDto {
32
32
  * @type {string}
33
33
  * @memberof CreatePaymentReminderRequestDto
34
34
  */
35
- 'accountCode': string;
35
+ 'accountCode'?: string;
36
+ /**
37
+ * Code referencing the partner for which this reminder is created.
38
+ * @type {string}
39
+ * @memberof CreatePaymentReminderRequestDto
40
+ */
41
+ 'partnerCode'?: string;
36
42
  /**
37
43
  * The type of invoice is used to determine the proper workflow.
38
44
  * @type {string}
@@ -20,7 +20,13 @@ export interface CreatePaymentRequestDto {
20
20
  * @type {string}
21
21
  * @memberof CreatePaymentRequestDto
22
22
  */
23
- 'accountCode': string;
23
+ 'accountCode'?: string;
24
+ /**
25
+ * Partner code associated to that payment.
26
+ * @type {string}
27
+ * @memberof CreatePaymentRequestDto
28
+ */
29
+ 'partnerCode'?: string;
24
30
  /**
25
31
  * Amount to be paid in cents. 100 to charge 1€.
26
32
  * @type {number}