@emilgroup/payment-sdk-node 1.8.0 → 1.8.2

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 (104) hide show
  1. package/README.md +2 -2
  2. package/dist/api/bank-accounts-api.d.ts +197 -0
  3. package/dist/api/bank-accounts-api.js +351 -0
  4. package/dist/api/default-api.d.ts +66 -0
  5. package/dist/api/default-api.js +200 -0
  6. package/dist/api/payment-methods-api.d.ts +327 -0
  7. package/dist/api/payment-methods-api.js +551 -0
  8. package/dist/api/payment-reminders-api.d.ts +317 -0
  9. package/dist/api/payment-reminders-api.js +542 -0
  10. package/dist/api/payment-service-providers-api.d.ts +93 -0
  11. package/dist/api/payment-service-providers-api.js +224 -0
  12. package/dist/api/payment-setup-api.d.ts +146 -0
  13. package/dist/api/payment-setup-api.js +313 -0
  14. package/dist/api/payments-api.d.ts +281 -0
  15. package/dist/api/payments-api.js +465 -0
  16. package/dist/api/webhooks-api.d.ts +91 -0
  17. package/dist/api/webhooks-api.js +213 -0
  18. package/dist/api.d.ts +19 -0
  19. package/dist/api.js +37 -0
  20. package/dist/base.d.ts +78 -0
  21. package/dist/base.js +394 -0
  22. package/dist/common.d.ts +92 -0
  23. package/dist/common.js +277 -0
  24. package/dist/configuration.d.ts +90 -0
  25. package/dist/configuration.js +44 -0
  26. package/dist/index.d.ts +15 -0
  27. package/dist/index.js +36 -0
  28. package/dist/models/bank-account-class.d.ts +54 -0
  29. package/dist/models/bank-account-class.js +15 -0
  30. package/dist/models/billing-profile-dto.d.ts +38 -0
  31. package/dist/models/billing-profile-dto.js +15 -0
  32. package/dist/models/billing-profile-limited-response-dto.d.ts +54 -0
  33. package/dist/models/billing-profile-limited-response-dto.js +15 -0
  34. package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +48 -0
  35. package/dist/models/complete-braintree-payment-setup-request-dto.js +15 -0
  36. package/dist/models/complete-payment-setup-request-dto.d.ts +32 -0
  37. package/dist/models/complete-payment-setup-request-dto.js +15 -0
  38. package/dist/models/complete-payment-setup-response-class.d.ts +25 -0
  39. package/dist/models/complete-payment-setup-response-class.js +15 -0
  40. package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +60 -0
  41. package/dist/models/complete-stripe-payment-setup-request-dto.js +15 -0
  42. package/dist/models/create-bank-account-request-dto.d.ts +30 -0
  43. package/dist/models/create-bank-account-request-dto.js +15 -0
  44. package/dist/models/create-payment-method-response-class.d.ts +25 -0
  45. package/dist/models/create-payment-method-response-class.js +15 -0
  46. package/dist/models/create-payment-reminder-request-dto.d.ts +63 -0
  47. package/dist/models/create-payment-reminder-request-dto.js +24 -0
  48. package/dist/models/create-payment-request-dto.d.ts +72 -0
  49. package/dist/models/create-payment-request-dto.js +15 -0
  50. package/dist/models/create-payment-response-class.d.ts +25 -0
  51. package/dist/models/create-payment-response-class.js +15 -0
  52. package/dist/models/create-psp-payment-method-request-dto.d.ts +61 -0
  53. package/dist/models/create-psp-payment-method-request-dto.js +32 -0
  54. package/dist/models/deactivate-payment-reminder-request-dto.d.ts +30 -0
  55. package/dist/models/deactivate-payment-reminder-request-dto.js +21 -0
  56. package/dist/models/get-payment-method-response-class.d.ts +25 -0
  57. package/dist/models/get-payment-method-response-class.js +15 -0
  58. package/dist/models/get-payment-response-class.d.ts +25 -0
  59. package/dist/models/get-payment-response-class.js +15 -0
  60. package/dist/models/get-request-dto.d.ts +30 -0
  61. package/dist/models/get-request-dto.js +15 -0
  62. package/dist/models/index.d.ts +37 -0
  63. package/dist/models/index.js +53 -0
  64. package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +30 -0
  65. package/dist/models/initiate-braintree-payment-setup-request-dto.js +15 -0
  66. package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +24 -0
  67. package/dist/models/initiate-braintree-payment-setup-response-class.js +15 -0
  68. package/dist/models/initiate-payment-setup-request-dto.d.ts +44 -0
  69. package/dist/models/initiate-payment-setup-request-dto.js +15 -0
  70. package/dist/models/initiate-payment-setup-response-class.d.ts +32 -0
  71. package/dist/models/initiate-payment-setup-response-class.js +15 -0
  72. package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +30 -0
  73. package/dist/models/initiate-stripe-payment-setup-request-dto.js +15 -0
  74. package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +30 -0
  75. package/dist/models/initiate-stripe-payment-setup-response-class.js +15 -0
  76. package/dist/models/inline-response200.d.ts +54 -0
  77. package/dist/models/inline-response200.js +15 -0
  78. package/dist/models/inline-response503.d.ts +54 -0
  79. package/dist/models/inline-response503.js +15 -0
  80. package/dist/models/list-bank-accounts-response-class.d.ts +31 -0
  81. package/dist/models/list-bank-accounts-response-class.js +15 -0
  82. package/dist/models/list-payment-methods-response-class.d.ts +31 -0
  83. package/dist/models/list-payment-methods-response-class.js +15 -0
  84. package/dist/models/list-payment-reminders-response-class.d.ts +31 -0
  85. package/dist/models/list-payment-reminders-response-class.js +15 -0
  86. package/dist/models/list-payments-response-class.d.ts +31 -0
  87. package/dist/models/list-payments-response-class.js +15 -0
  88. package/dist/models/payment-class.d.ts +103 -0
  89. package/dist/models/payment-class.js +15 -0
  90. package/dist/models/payment-method-class.d.ts +60 -0
  91. package/dist/models/payment-method-class.js +15 -0
  92. package/dist/models/payment-reminder-class.d.ts +108 -0
  93. package/dist/models/payment-reminder-class.js +32 -0
  94. package/dist/models/sepa-direct-dto.d.ts +24 -0
  95. package/dist/models/sepa-direct-dto.js +15 -0
  96. package/dist/models/symphony-profile-limited-response-dto.d.ts +42 -0
  97. package/dist/models/symphony-profile-limited-response-dto.js +15 -0
  98. package/dist/models/transaction-class.d.ts +54 -0
  99. package/dist/models/transaction-class.js +15 -0
  100. package/dist/models/validate-pspconfig-request-dto.d.ts +43 -0
  101. package/dist/models/validate-pspconfig-request-dto.js +22 -0
  102. package/dist/models/validate-pspconfig-response-class.d.ts +24 -0
  103. package/dist/models/validate-pspconfig-response-class.js +15 -0
  104. package/package.json +1 -1
@@ -0,0 +1,465 @@
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
+ var __extends = (this && this.__extends) || (function () {
16
+ var extendStatics = function (d, b) {
17
+ extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
+ return extendStatics(d, b);
21
+ };
22
+ return function (d, b) {
23
+ if (typeof b !== "function" && b !== null)
24
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
+ extendStatics(d, b);
26
+ function __() { this.constructor = d; }
27
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
+ };
29
+ })();
30
+ var __assign = (this && this.__assign) || function () {
31
+ __assign = Object.assign || function(t) {
32
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
33
+ s = arguments[i];
34
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
35
+ t[p] = s[p];
36
+ }
37
+ return t;
38
+ };
39
+ return __assign.apply(this, arguments);
40
+ };
41
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
42
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
43
+ return new (P || (P = Promise))(function (resolve, reject) {
44
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
45
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
46
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
47
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
48
+ });
49
+ };
50
+ var __generator = (this && this.__generator) || function (thisArg, body) {
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
52
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
+ function verb(n) { return function (v) { return step([n, v]); }; }
54
+ function step(op) {
55
+ if (f) throw new TypeError("Generator is already executing.");
56
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
57
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
58
+ if (y = 0, t) op = [op[0] & 2, t.value];
59
+ switch (op[0]) {
60
+ case 0: case 1: t = op; break;
61
+ case 4: _.label++; return { value: op[1], done: false };
62
+ case 5: _.label++; y = op[1]; op = [0]; continue;
63
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
64
+ default:
65
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
66
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
67
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
68
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
69
+ if (t[2]) _.ops.pop();
70
+ _.trys.pop(); continue;
71
+ }
72
+ op = body.call(thisArg, _);
73
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
74
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
+ }
76
+ };
77
+ var __importDefault = (this && this.__importDefault) || function (mod) {
78
+ return (mod && mod.__esModule) ? mod : { "default": mod };
79
+ };
80
+ Object.defineProperty(exports, "__esModule", { value: true });
81
+ exports.PaymentsApi = exports.PaymentsApiFactory = exports.PaymentsApiFp = exports.PaymentsApiAxiosParamCreator = void 0;
82
+ var axios_1 = __importDefault(require("axios"));
83
+ // Some imports not used depending on template conditions
84
+ // @ts-ignore
85
+ var common_1 = require("../common");
86
+ // @ts-ignore
87
+ var base_1 = require("../base");
88
+ // URLSearchParams not necessarily used
89
+ // @ts-ignore
90
+ var url_1 = require("url");
91
+ var FormData = require('form-data');
92
+ /**
93
+ * PaymentsApi - axios parameter creator
94
+ * @export
95
+ */
96
+ var PaymentsApiAxiosParamCreator = function (configuration) {
97
+ var _this = this;
98
+ return {
99
+ /**
100
+ * Creates a payment for a specified account. This function is idempotent.
101
+ * @summary Create a payment
102
+ * @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
103
+ * @param {CreatePaymentRequestDto} createPaymentRequestDto
104
+ * @param {string} [authorization] Bearer Token
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ createPayment: function (idempotencyKey, createPaymentRequestDto, authorization, options) {
109
+ if (options === void 0) { options = {}; }
110
+ return __awaiter(_this, void 0, void 0, function () {
111
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
112
+ return __generator(this, function (_a) {
113
+ switch (_a.label) {
114
+ case 0:
115
+ // verify required parameter 'idempotencyKey' is not null or undefined
116
+ (0, common_1.assertParamExists)('createPayment', 'idempotencyKey', idempotencyKey);
117
+ // verify required parameter 'createPaymentRequestDto' is not null or undefined
118
+ (0, common_1.assertParamExists)('createPayment', 'createPaymentRequestDto', createPaymentRequestDto);
119
+ localVarPath = "/paymentservice/v1/payments";
120
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
121
+ if (configuration) {
122
+ baseOptions = configuration.baseOptions;
123
+ baseAccessToken = configuration.accessToken;
124
+ }
125
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
126
+ localVarHeaderParameter = {};
127
+ localVarQueryParameter = {};
128
+ // authentication bearer required
129
+ // http bearer authentication required
130
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
131
+ case 1:
132
+ // authentication bearer required
133
+ // http bearer authentication required
134
+ _a.sent();
135
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
136
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
137
+ }
138
+ if (idempotencyKey !== undefined && idempotencyKey !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
139
+ localVarHeaderParameter['Idempotency-Key'] = String(idempotencyKey ? idempotencyKey : baseAccessToken);
140
+ }
141
+ localVarHeaderParameter['Content-Type'] = 'application/json';
142
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
143
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
144
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
145
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPaymentRequestDto, localVarRequestOptions, configuration);
146
+ return [2 /*return*/, {
147
+ url: (0, common_1.toPathString)(localVarUrlObj),
148
+ options: localVarRequestOptions,
149
+ }];
150
+ }
151
+ });
152
+ });
153
+ },
154
+ /**
155
+ * Retrieves the details of a payment that was previously created. Supply the unique payment code that was returned when you created the payment and Emil Api will return the corresponding payment information.
156
+ * @summary Retrieve a payment
157
+ * @param {string} code Unique identifier for the object.
158
+ * @param {string} [authorization] Bearer Token
159
+ * @param {string} [expand] Fields to expand response by
160
+ * @param {string} [expand2] Fields to expand response by
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ getPayment: function (code, authorization, expand, expand2, options) {
165
+ if (options === void 0) { options = {}; }
166
+ return __awaiter(_this, void 0, void 0, function () {
167
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
168
+ return __generator(this, function (_a) {
169
+ switch (_a.label) {
170
+ case 0:
171
+ // verify required parameter 'code' is not null or undefined
172
+ (0, common_1.assertParamExists)('getPayment', 'code', code);
173
+ localVarPath = "/paymentservice/v1/payments/{code}";
174
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
175
+ if (configuration) {
176
+ baseOptions = configuration.baseOptions;
177
+ baseAccessToken = configuration.accessToken;
178
+ }
179
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
180
+ localVarHeaderParameter = {};
181
+ localVarQueryParameter = {};
182
+ // authentication bearer required
183
+ // http bearer authentication required
184
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
185
+ case 1:
186
+ // authentication bearer required
187
+ // http bearer authentication required
188
+ _a.sent();
189
+ if (code !== undefined) {
190
+ localVarQueryParameter['code'] = code;
191
+ }
192
+ if (expand !== undefined) {
193
+ localVarQueryParameter['expand'] = expand;
194
+ }
195
+ if (expand2 !== undefined) {
196
+ localVarQueryParameter['expand'] = expand2;
197
+ }
198
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
199
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
200
+ }
201
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
202
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
203
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
204
+ return [2 /*return*/, {
205
+ url: (0, common_1.toPathString)(localVarUrlObj),
206
+ options: localVarRequestOptions,
207
+ }];
208
+ }
209
+ });
210
+ });
211
+ },
212
+ /**
213
+ * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
214
+ * @summary List payments
215
+ * @param {string} [authorization] Bearer Token
216
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
217
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
218
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
219
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
220
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
221
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
222
+ * @param {*} [options] Override http request option.
223
+ * @throws {RequiredError}
224
+ */
225
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
226
+ if (options === void 0) { options = {}; }
227
+ return __awaiter(_this, void 0, void 0, function () {
228
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
229
+ return __generator(this, function (_a) {
230
+ switch (_a.label) {
231
+ case 0:
232
+ localVarPath = "/paymentservice/v1/payments";
233
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
234
+ if (configuration) {
235
+ baseOptions = configuration.baseOptions;
236
+ baseAccessToken = configuration.accessToken;
237
+ }
238
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
239
+ localVarHeaderParameter = {};
240
+ localVarQueryParameter = {};
241
+ // authentication bearer required
242
+ // http bearer authentication required
243
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
244
+ case 1:
245
+ // authentication bearer required
246
+ // http bearer authentication required
247
+ _a.sent();
248
+ if (pageSize !== undefined) {
249
+ localVarQueryParameter['pageSize'] = pageSize;
250
+ }
251
+ if (pageToken !== undefined) {
252
+ localVarQueryParameter['pageToken'] = pageToken;
253
+ }
254
+ if (filter !== undefined) {
255
+ localVarQueryParameter['filter'] = filter;
256
+ }
257
+ if (search !== undefined) {
258
+ localVarQueryParameter['search'] = search;
259
+ }
260
+ if (order !== undefined) {
261
+ localVarQueryParameter['order'] = order;
262
+ }
263
+ if (expand !== undefined) {
264
+ localVarQueryParameter['expand'] = expand;
265
+ }
266
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
267
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
268
+ }
269
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
270
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
271
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
272
+ return [2 /*return*/, {
273
+ url: (0, common_1.toPathString)(localVarUrlObj),
274
+ options: localVarRequestOptions,
275
+ }];
276
+ }
277
+ });
278
+ });
279
+ },
280
+ };
281
+ };
282
+ exports.PaymentsApiAxiosParamCreator = PaymentsApiAxiosParamCreator;
283
+ /**
284
+ * PaymentsApi - functional programming interface
285
+ * @export
286
+ */
287
+ var PaymentsApiFp = function (configuration) {
288
+ var localVarAxiosParamCreator = (0, exports.PaymentsApiAxiosParamCreator)(configuration);
289
+ return {
290
+ /**
291
+ * Creates a payment for a specified account. This function is idempotent.
292
+ * @summary Create a payment
293
+ * @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
294
+ * @param {CreatePaymentRequestDto} createPaymentRequestDto
295
+ * @param {string} [authorization] Bearer Token
296
+ * @param {*} [options] Override http request option.
297
+ * @throws {RequiredError}
298
+ */
299
+ createPayment: function (idempotencyKey, createPaymentRequestDto, authorization, options) {
300
+ return __awaiter(this, void 0, void 0, function () {
301
+ var localVarAxiosArgs;
302
+ return __generator(this, function (_a) {
303
+ switch (_a.label) {
304
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.createPayment(idempotencyKey, createPaymentRequestDto, authorization, options)];
305
+ case 1:
306
+ localVarAxiosArgs = _a.sent();
307
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
308
+ }
309
+ });
310
+ });
311
+ },
312
+ /**
313
+ * Retrieves the details of a payment that was previously created. Supply the unique payment code that was returned when you created the payment and Emil Api will return the corresponding payment information.
314
+ * @summary Retrieve a payment
315
+ * @param {string} code Unique identifier for the object.
316
+ * @param {string} [authorization] Bearer Token
317
+ * @param {string} [expand] Fields to expand response by
318
+ * @param {string} [expand2] Fields to expand response by
319
+ * @param {*} [options] Override http request option.
320
+ * @throws {RequiredError}
321
+ */
322
+ getPayment: function (code, authorization, expand, expand2, options) {
323
+ return __awaiter(this, void 0, void 0, function () {
324
+ var localVarAxiosArgs;
325
+ return __generator(this, function (_a) {
326
+ switch (_a.label) {
327
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPayment(code, authorization, expand, expand2, options)];
328
+ case 1:
329
+ localVarAxiosArgs = _a.sent();
330
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
331
+ }
332
+ });
333
+ });
334
+ },
335
+ /**
336
+ * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
337
+ * @summary List payments
338
+ * @param {string} [authorization] Bearer Token
339
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
340
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
341
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
342
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
343
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
344
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
345
+ * @param {*} [options] Override http request option.
346
+ * @throws {RequiredError}
347
+ */
348
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
349
+ return __awaiter(this, void 0, void 0, function () {
350
+ var localVarAxiosArgs;
351
+ return __generator(this, function (_a) {
352
+ switch (_a.label) {
353
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, options)];
354
+ case 1:
355
+ localVarAxiosArgs = _a.sent();
356
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
357
+ }
358
+ });
359
+ });
360
+ },
361
+ };
362
+ };
363
+ exports.PaymentsApiFp = PaymentsApiFp;
364
+ /**
365
+ * PaymentsApi - factory interface
366
+ * @export
367
+ */
368
+ var PaymentsApiFactory = function (configuration, basePath, axios) {
369
+ var localVarFp = (0, exports.PaymentsApiFp)(configuration);
370
+ return {
371
+ /**
372
+ * Creates a payment for a specified account. This function is idempotent.
373
+ * @summary Create a payment
374
+ * @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
375
+ * @param {CreatePaymentRequestDto} createPaymentRequestDto
376
+ * @param {string} [authorization] Bearer Token
377
+ * @param {*} [options] Override http request option.
378
+ * @throws {RequiredError}
379
+ */
380
+ createPayment: function (idempotencyKey, createPaymentRequestDto, authorization, options) {
381
+ return localVarFp.createPayment(idempotencyKey, createPaymentRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
382
+ },
383
+ /**
384
+ * Retrieves the details of a payment that was previously created. Supply the unique payment code that was returned when you created the payment and Emil Api will return the corresponding payment information.
385
+ * @summary Retrieve a payment
386
+ * @param {string} code Unique identifier for the object.
387
+ * @param {string} [authorization] Bearer Token
388
+ * @param {string} [expand] Fields to expand response by
389
+ * @param {string} [expand2] Fields to expand response by
390
+ * @param {*} [options] Override http request option.
391
+ * @throws {RequiredError}
392
+ */
393
+ getPayment: function (code, authorization, expand, expand2, options) {
394
+ return localVarFp.getPayment(code, authorization, expand, expand2, options).then(function (request) { return request(axios, basePath); });
395
+ },
396
+ /**
397
+ * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
398
+ * @summary List payments
399
+ * @param {string} [authorization] Bearer Token
400
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
401
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
402
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
403
+ * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
404
+ * @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
405
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
406
+ * @param {*} [options] Override http request option.
407
+ * @throws {RequiredError}
408
+ */
409
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
410
+ return localVarFp.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
411
+ },
412
+ };
413
+ };
414
+ exports.PaymentsApiFactory = PaymentsApiFactory;
415
+ /**
416
+ * PaymentsApi - object-oriented interface
417
+ * @export
418
+ * @class PaymentsApi
419
+ * @extends {BaseAPI}
420
+ */
421
+ var PaymentsApi = /** @class */ (function (_super) {
422
+ __extends(PaymentsApi, _super);
423
+ function PaymentsApi() {
424
+ return _super !== null && _super.apply(this, arguments) || this;
425
+ }
426
+ /**
427
+ * Creates a payment for a specified account. This function is idempotent.
428
+ * @summary Create a payment
429
+ * @param {PaymentsApiCreatePaymentRequest} requestParameters Request parameters.
430
+ * @param {*} [options] Override http request option.
431
+ * @throws {RequiredError}
432
+ * @memberof PaymentsApi
433
+ */
434
+ PaymentsApi.prototype.createPayment = function (requestParameters, options) {
435
+ var _this = this;
436
+ return (0, exports.PaymentsApiFp)(this.configuration).createPayment(requestParameters.idempotencyKey, requestParameters.createPaymentRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
437
+ };
438
+ /**
439
+ * Retrieves the details of a payment that was previously created. Supply the unique payment code that was returned when you created the payment and Emil Api will return the corresponding payment information.
440
+ * @summary Retrieve a payment
441
+ * @param {PaymentsApiGetPaymentRequest} requestParameters Request parameters.
442
+ * @param {*} [options] Override http request option.
443
+ * @throws {RequiredError}
444
+ * @memberof PaymentsApi
445
+ */
446
+ PaymentsApi.prototype.getPayment = function (requestParameters, options) {
447
+ var _this = this;
448
+ return (0, exports.PaymentsApiFp)(this.configuration).getPayment(requestParameters.code, requestParameters.authorization, requestParameters.expand, requestParameters.expand2, options).then(function (request) { return request(_this.axios, _this.basePath); });
449
+ };
450
+ /**
451
+ * Returns a list of payments you’ve previously created. The payments are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
452
+ * @summary List payments
453
+ * @param {PaymentsApiListPaymentsRequest} requestParameters Request parameters.
454
+ * @param {*} [options] Override http request option.
455
+ * @throws {RequiredError}
456
+ * @memberof PaymentsApi
457
+ */
458
+ PaymentsApi.prototype.listPayments = function (requestParameters, options) {
459
+ var _this = this;
460
+ if (requestParameters === void 0) { requestParameters = {}; }
461
+ return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
462
+ };
463
+ return PaymentsApi;
464
+ }(base_1.BaseAPI));
465
+ exports.PaymentsApi = PaymentsApi;
@@ -0,0 +1,91 @@
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ /**
16
+ * WebhooksApi - axios parameter creator
17
+ * @export
18
+ */
19
+ export declare const WebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
20
+ /**
21
+ *
22
+ * @param {string} pspType
23
+ * @param {string} tenantSlug
24
+ * @param {*} [options] Override http request option.
25
+ * @throws {RequiredError}
26
+ */
27
+ postWebhook: (pspType: string, tenantSlug: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
28
+ };
29
+ /**
30
+ * WebhooksApi - functional programming interface
31
+ * @export
32
+ */
33
+ export declare const WebhooksApiFp: (configuration?: Configuration) => {
34
+ /**
35
+ *
36
+ * @param {string} pspType
37
+ * @param {string} tenantSlug
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ postWebhook(pspType: string, tenantSlug: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
42
+ };
43
+ /**
44
+ * WebhooksApi - factory interface
45
+ * @export
46
+ */
47
+ export declare const WebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
48
+ /**
49
+ *
50
+ * @param {string} pspType
51
+ * @param {string} tenantSlug
52
+ * @param {*} [options] Override http request option.
53
+ * @throws {RequiredError}
54
+ */
55
+ postWebhook(pspType: string, tenantSlug: string, options?: any): AxiosPromise<void>;
56
+ };
57
+ /**
58
+ * Request parameters for postWebhook operation in WebhooksApi.
59
+ * @export
60
+ * @interface WebhooksApiPostWebhookRequest
61
+ */
62
+ export interface WebhooksApiPostWebhookRequest {
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof WebhooksApiPostWebhook
67
+ */
68
+ readonly pspType: string;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof WebhooksApiPostWebhook
73
+ */
74
+ readonly tenantSlug: string;
75
+ }
76
+ /**
77
+ * WebhooksApi - object-oriented interface
78
+ * @export
79
+ * @class WebhooksApi
80
+ * @extends {BaseAPI}
81
+ */
82
+ export declare class WebhooksApi extends BaseAPI {
83
+ /**
84
+ *
85
+ * @param {WebhooksApiPostWebhookRequest} requestParameters Request parameters.
86
+ * @param {*} [options] Override http request option.
87
+ * @throws {RequiredError}
88
+ * @memberof WebhooksApi
89
+ */
90
+ postWebhook(requestParameters: WebhooksApiPostWebhookRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
91
+ }