@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,551 @@
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.PaymentMethodsApi = exports.PaymentMethodsApiFactory = exports.PaymentMethodsApiFp = exports.PaymentMethodsApiAxiosParamCreator = 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
+ * PaymentMethodsApi - axios parameter creator
94
+ * @export
95
+ */
96
+ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
97
+ var _this = this;
98
+ return {
99
+ /**
100
+ * This will create payment method in the database as well as in the PSP. The newly created payment method will be set as default payment method will be used by the customer to pay or receive a refund.
101
+ * @summary Create the payment-method
102
+ * @param {CreatePspPaymentMethodRequestDto} createPspPaymentMethodRequestDto
103
+ * @param {string} [authorization] Bearer Token
104
+ * @param {*} [options] Override http request option.
105
+ * @throws {RequiredError}
106
+ */
107
+ createPaymentMethod: function (createPspPaymentMethodRequestDto, authorization, options) {
108
+ if (options === void 0) { options = {}; }
109
+ return __awaiter(_this, void 0, void 0, function () {
110
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
111
+ return __generator(this, function (_a) {
112
+ switch (_a.label) {
113
+ case 0:
114
+ // verify required parameter 'createPspPaymentMethodRequestDto' is not null or undefined
115
+ (0, common_1.assertParamExists)('createPaymentMethod', 'createPspPaymentMethodRequestDto', createPspPaymentMethodRequestDto);
116
+ localVarPath = "/paymentservice/v1/payment-methods";
117
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
118
+ if (configuration) {
119
+ baseOptions = configuration.baseOptions;
120
+ baseAccessToken = configuration.accessToken;
121
+ }
122
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
123
+ localVarHeaderParameter = {};
124
+ localVarQueryParameter = {};
125
+ // authentication bearer required
126
+ // http bearer authentication required
127
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
128
+ case 1:
129
+ // authentication bearer required
130
+ // http bearer authentication required
131
+ _a.sent();
132
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
133
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
134
+ }
135
+ localVarHeaderParameter['Content-Type'] = 'application/json';
136
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
137
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
138
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
139
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPspPaymentMethodRequestDto, localVarRequestOptions, configuration);
140
+ return [2 /*return*/, {
141
+ url: (0, common_1.toPathString)(localVarUrlObj),
142
+ options: localVarRequestOptions,
143
+ }];
144
+ }
145
+ });
146
+ });
147
+ },
148
+ /**
149
+ * Permanently deletes a payment method. Supply the unique payment method id that was returned when you created the payment method and this will delete it. It will also delete it on the corresponding payment service provider.
150
+ * @summary Delete a payment method
151
+ * @param {number} id Unique identifier for payment method
152
+ * @param {string} [authorization] Bearer Token
153
+ * @param {*} [options] Override http request option.
154
+ * @throws {RequiredError}
155
+ */
156
+ deletePaymentMethod: function (id, authorization, options) {
157
+ if (options === void 0) { options = {}; }
158
+ return __awaiter(_this, void 0, void 0, function () {
159
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
160
+ return __generator(this, function (_a) {
161
+ switch (_a.label) {
162
+ case 0:
163
+ // verify required parameter 'id' is not null or undefined
164
+ (0, common_1.assertParamExists)('deletePaymentMethod', 'id', id);
165
+ localVarPath = "/paymentservice/v1/payment-methods/{id}";
166
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
167
+ if (configuration) {
168
+ baseOptions = configuration.baseOptions;
169
+ baseAccessToken = configuration.accessToken;
170
+ }
171
+ localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
172
+ localVarHeaderParameter = {};
173
+ localVarQueryParameter = {};
174
+ // authentication bearer required
175
+ // http bearer authentication required
176
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
177
+ case 1:
178
+ // authentication bearer required
179
+ // http bearer authentication required
180
+ _a.sent();
181
+ if (id !== undefined) {
182
+ localVarQueryParameter['id'] = id;
183
+ }
184
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
185
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
186
+ }
187
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
188
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
189
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
190
+ return [2 /*return*/, {
191
+ url: (0, common_1.toPathString)(localVarUrlObj),
192
+ options: localVarRequestOptions,
193
+ }];
194
+ }
195
+ });
196
+ });
197
+ },
198
+ /**
199
+ * Retrieves the details of a payment method that was previously created. Supply the unique payment method code that was returned when you created the payment method and Emil Api will return the corresponding payment method information.
200
+ * @summary Retrieve a payment method
201
+ * @param {string} code Unique identifier for the object.
202
+ * @param {string} [authorization] Bearer Token
203
+ * @param {string} [expand] Fields to expand response by
204
+ * @param {string} [expand2] Fields to expand response by
205
+ * @param {*} [options] Override http request option.
206
+ * @throws {RequiredError}
207
+ */
208
+ getPaymentMethod: function (code, authorization, expand, expand2, options) {
209
+ if (options === void 0) { options = {}; }
210
+ return __awaiter(_this, void 0, void 0, function () {
211
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
212
+ return __generator(this, function (_a) {
213
+ switch (_a.label) {
214
+ case 0:
215
+ // verify required parameter 'code' is not null or undefined
216
+ (0, common_1.assertParamExists)('getPaymentMethod', 'code', code);
217
+ localVarPath = "/paymentservice/v1/payment-methods/{code}";
218
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
219
+ if (configuration) {
220
+ baseOptions = configuration.baseOptions;
221
+ baseAccessToken = configuration.accessToken;
222
+ }
223
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
224
+ localVarHeaderParameter = {};
225
+ localVarQueryParameter = {};
226
+ // authentication bearer required
227
+ // http bearer authentication required
228
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
229
+ case 1:
230
+ // authentication bearer required
231
+ // http bearer authentication required
232
+ _a.sent();
233
+ if (code !== undefined) {
234
+ localVarQueryParameter['code'] = code;
235
+ }
236
+ if (expand !== undefined) {
237
+ localVarQueryParameter['expand'] = expand;
238
+ }
239
+ if (expand2 !== undefined) {
240
+ localVarQueryParameter['expand'] = expand2;
241
+ }
242
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
243
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
244
+ }
245
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
246
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
247
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
248
+ return [2 /*return*/, {
249
+ url: (0, common_1.toPathString)(localVarUrlObj),
250
+ options: localVarRequestOptions,
251
+ }];
252
+ }
253
+ });
254
+ });
255
+ },
256
+ /**
257
+ * Returns a list of payment methods you’ve previously created. The payment methods are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
258
+ * @summary List payment methods
259
+ * @param {string} [authorization] Bearer Token
260
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
261
+ * @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.
262
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
263
+ * @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.
264
+ * @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.
265
+ * @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.
266
+ * @param {*} [options] Override http request option.
267
+ * @throws {RequiredError}
268
+ */
269
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
270
+ if (options === void 0) { options = {}; }
271
+ return __awaiter(_this, void 0, void 0, function () {
272
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
273
+ return __generator(this, function (_a) {
274
+ switch (_a.label) {
275
+ case 0:
276
+ localVarPath = "/paymentservice/v1/payment-methods";
277
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
278
+ if (configuration) {
279
+ baseOptions = configuration.baseOptions;
280
+ baseAccessToken = configuration.accessToken;
281
+ }
282
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
283
+ localVarHeaderParameter = {};
284
+ localVarQueryParameter = {};
285
+ // authentication bearer required
286
+ // http bearer authentication required
287
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
288
+ case 1:
289
+ // authentication bearer required
290
+ // http bearer authentication required
291
+ _a.sent();
292
+ if (pageSize !== undefined) {
293
+ localVarQueryParameter['pageSize'] = pageSize;
294
+ }
295
+ if (pageToken !== undefined) {
296
+ localVarQueryParameter['pageToken'] = pageToken;
297
+ }
298
+ if (filter !== undefined) {
299
+ localVarQueryParameter['filter'] = filter;
300
+ }
301
+ if (search !== undefined) {
302
+ localVarQueryParameter['search'] = search;
303
+ }
304
+ if (order !== undefined) {
305
+ localVarQueryParameter['order'] = order;
306
+ }
307
+ if (expand !== undefined) {
308
+ localVarQueryParameter['expand'] = expand;
309
+ }
310
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
311
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
312
+ }
313
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
314
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
315
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
316
+ return [2 /*return*/, {
317
+ url: (0, common_1.toPathString)(localVarUrlObj),
318
+ options: localVarRequestOptions,
319
+ }];
320
+ }
321
+ });
322
+ });
323
+ },
324
+ };
325
+ };
326
+ exports.PaymentMethodsApiAxiosParamCreator = PaymentMethodsApiAxiosParamCreator;
327
+ /**
328
+ * PaymentMethodsApi - functional programming interface
329
+ * @export
330
+ */
331
+ var PaymentMethodsApiFp = function (configuration) {
332
+ var localVarAxiosParamCreator = (0, exports.PaymentMethodsApiAxiosParamCreator)(configuration);
333
+ return {
334
+ /**
335
+ * This will create payment method in the database as well as in the PSP. The newly created payment method will be set as default payment method will be used by the customer to pay or receive a refund.
336
+ * @summary Create the payment-method
337
+ * @param {CreatePspPaymentMethodRequestDto} createPspPaymentMethodRequestDto
338
+ * @param {string} [authorization] Bearer Token
339
+ * @param {*} [options] Override http request option.
340
+ * @throws {RequiredError}
341
+ */
342
+ createPaymentMethod: function (createPspPaymentMethodRequestDto, authorization, options) {
343
+ return __awaiter(this, void 0, void 0, function () {
344
+ var localVarAxiosArgs;
345
+ return __generator(this, function (_a) {
346
+ switch (_a.label) {
347
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.createPaymentMethod(createPspPaymentMethodRequestDto, authorization, options)];
348
+ case 1:
349
+ localVarAxiosArgs = _a.sent();
350
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
351
+ }
352
+ });
353
+ });
354
+ },
355
+ /**
356
+ * Permanently deletes a payment method. Supply the unique payment method id that was returned when you created the payment method and this will delete it. It will also delete it on the corresponding payment service provider.
357
+ * @summary Delete a payment method
358
+ * @param {number} id Unique identifier for payment method
359
+ * @param {string} [authorization] Bearer Token
360
+ * @param {*} [options] Override http request option.
361
+ * @throws {RequiredError}
362
+ */
363
+ deletePaymentMethod: function (id, authorization, options) {
364
+ return __awaiter(this, void 0, void 0, function () {
365
+ var localVarAxiosArgs;
366
+ return __generator(this, function (_a) {
367
+ switch (_a.label) {
368
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.deletePaymentMethod(id, authorization, options)];
369
+ case 1:
370
+ localVarAxiosArgs = _a.sent();
371
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
372
+ }
373
+ });
374
+ });
375
+ },
376
+ /**
377
+ * Retrieves the details of a payment method that was previously created. Supply the unique payment method code that was returned when you created the payment method and Emil Api will return the corresponding payment method information.
378
+ * @summary Retrieve a payment method
379
+ * @param {string} code Unique identifier for the object.
380
+ * @param {string} [authorization] Bearer Token
381
+ * @param {string} [expand] Fields to expand response by
382
+ * @param {string} [expand2] Fields to expand response by
383
+ * @param {*} [options] Override http request option.
384
+ * @throws {RequiredError}
385
+ */
386
+ getPaymentMethod: function (code, authorization, expand, expand2, options) {
387
+ return __awaiter(this, void 0, void 0, function () {
388
+ var localVarAxiosArgs;
389
+ return __generator(this, function (_a) {
390
+ switch (_a.label) {
391
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getPaymentMethod(code, authorization, expand, expand2, options)];
392
+ case 1:
393
+ localVarAxiosArgs = _a.sent();
394
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
395
+ }
396
+ });
397
+ });
398
+ },
399
+ /**
400
+ * Returns a list of payment methods you’ve previously created. The payment methods are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
401
+ * @summary List payment methods
402
+ * @param {string} [authorization] Bearer Token
403
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
404
+ * @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.
405
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
406
+ * @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.
407
+ * @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.
408
+ * @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.
409
+ * @param {*} [options] Override http request option.
410
+ * @throws {RequiredError}
411
+ */
412
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
413
+ return __awaiter(this, void 0, void 0, function () {
414
+ var localVarAxiosArgs;
415
+ return __generator(this, function (_a) {
416
+ switch (_a.label) {
417
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options)];
418
+ case 1:
419
+ localVarAxiosArgs = _a.sent();
420
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
421
+ }
422
+ });
423
+ });
424
+ },
425
+ };
426
+ };
427
+ exports.PaymentMethodsApiFp = PaymentMethodsApiFp;
428
+ /**
429
+ * PaymentMethodsApi - factory interface
430
+ * @export
431
+ */
432
+ var PaymentMethodsApiFactory = function (configuration, basePath, axios) {
433
+ var localVarFp = (0, exports.PaymentMethodsApiFp)(configuration);
434
+ return {
435
+ /**
436
+ * This will create payment method in the database as well as in the PSP. The newly created payment method will be set as default payment method will be used by the customer to pay or receive a refund.
437
+ * @summary Create the payment-method
438
+ * @param {CreatePspPaymentMethodRequestDto} createPspPaymentMethodRequestDto
439
+ * @param {string} [authorization] Bearer Token
440
+ * @param {*} [options] Override http request option.
441
+ * @throws {RequiredError}
442
+ */
443
+ createPaymentMethod: function (createPspPaymentMethodRequestDto, authorization, options) {
444
+ return localVarFp.createPaymentMethod(createPspPaymentMethodRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
445
+ },
446
+ /**
447
+ * Permanently deletes a payment method. Supply the unique payment method id that was returned when you created the payment method and this will delete it. It will also delete it on the corresponding payment service provider.
448
+ * @summary Delete a payment method
449
+ * @param {number} id Unique identifier for payment method
450
+ * @param {string} [authorization] Bearer Token
451
+ * @param {*} [options] Override http request option.
452
+ * @throws {RequiredError}
453
+ */
454
+ deletePaymentMethod: function (id, authorization, options) {
455
+ return localVarFp.deletePaymentMethod(id, authorization, options).then(function (request) { return request(axios, basePath); });
456
+ },
457
+ /**
458
+ * Retrieves the details of a payment method that was previously created. Supply the unique payment method code that was returned when you created the payment method and Emil Api will return the corresponding payment method information.
459
+ * @summary Retrieve a payment method
460
+ * @param {string} code Unique identifier for the object.
461
+ * @param {string} [authorization] Bearer Token
462
+ * @param {string} [expand] Fields to expand response by
463
+ * @param {string} [expand2] Fields to expand response by
464
+ * @param {*} [options] Override http request option.
465
+ * @throws {RequiredError}
466
+ */
467
+ getPaymentMethod: function (code, authorization, expand, expand2, options) {
468
+ return localVarFp.getPaymentMethod(code, authorization, expand, expand2, options).then(function (request) { return request(axios, basePath); });
469
+ },
470
+ /**
471
+ * Returns a list of payment methods you’ve previously created. The payment methods are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
472
+ * @summary List payment methods
473
+ * @param {string} [authorization] Bearer Token
474
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
475
+ * @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.
476
+ * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
477
+ * @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.
478
+ * @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.
479
+ * @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.
480
+ * @param {*} [options] Override http request option.
481
+ * @throws {RequiredError}
482
+ */
483
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
484
+ return localVarFp.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
485
+ },
486
+ };
487
+ };
488
+ exports.PaymentMethodsApiFactory = PaymentMethodsApiFactory;
489
+ /**
490
+ * PaymentMethodsApi - object-oriented interface
491
+ * @export
492
+ * @class PaymentMethodsApi
493
+ * @extends {BaseAPI}
494
+ */
495
+ var PaymentMethodsApi = /** @class */ (function (_super) {
496
+ __extends(PaymentMethodsApi, _super);
497
+ function PaymentMethodsApi() {
498
+ return _super !== null && _super.apply(this, arguments) || this;
499
+ }
500
+ /**
501
+ * This will create payment method in the database as well as in the PSP. The newly created payment method will be set as default payment method will be used by the customer to pay or receive a refund.
502
+ * @summary Create the payment-method
503
+ * @param {PaymentMethodsApiCreatePaymentMethodRequest} requestParameters Request parameters.
504
+ * @param {*} [options] Override http request option.
505
+ * @throws {RequiredError}
506
+ * @memberof PaymentMethodsApi
507
+ */
508
+ PaymentMethodsApi.prototype.createPaymentMethod = function (requestParameters, options) {
509
+ var _this = this;
510
+ return (0, exports.PaymentMethodsApiFp)(this.configuration).createPaymentMethod(requestParameters.createPspPaymentMethodRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
511
+ };
512
+ /**
513
+ * Permanently deletes a payment method. Supply the unique payment method id that was returned when you created the payment method and this will delete it. It will also delete it on the corresponding payment service provider.
514
+ * @summary Delete a payment method
515
+ * @param {PaymentMethodsApiDeletePaymentMethodRequest} requestParameters Request parameters.
516
+ * @param {*} [options] Override http request option.
517
+ * @throws {RequiredError}
518
+ * @memberof PaymentMethodsApi
519
+ */
520
+ PaymentMethodsApi.prototype.deletePaymentMethod = function (requestParameters, options) {
521
+ var _this = this;
522
+ return (0, exports.PaymentMethodsApiFp)(this.configuration).deletePaymentMethod(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
523
+ };
524
+ /**
525
+ * Retrieves the details of a payment method that was previously created. Supply the unique payment method code that was returned when you created the payment method and Emil Api will return the corresponding payment method information.
526
+ * @summary Retrieve a payment method
527
+ * @param {PaymentMethodsApiGetPaymentMethodRequest} requestParameters Request parameters.
528
+ * @param {*} [options] Override http request option.
529
+ * @throws {RequiredError}
530
+ * @memberof PaymentMethodsApi
531
+ */
532
+ PaymentMethodsApi.prototype.getPaymentMethod = function (requestParameters, options) {
533
+ var _this = this;
534
+ return (0, exports.PaymentMethodsApiFp)(this.configuration).getPaymentMethod(requestParameters.code, requestParameters.authorization, requestParameters.expand, requestParameters.expand2, options).then(function (request) { return request(_this.axios, _this.basePath); });
535
+ };
536
+ /**
537
+ * Returns a list of payment methods you’ve previously created. The payment methods are returned in sorted order, with the oldest payment appearing first. For more information about pagination, read the Pagination documentation.
538
+ * @summary List payment methods
539
+ * @param {PaymentMethodsApiListPaymentMethodsRequest} requestParameters Request parameters.
540
+ * @param {*} [options] Override http request option.
541
+ * @throws {RequiredError}
542
+ * @memberof PaymentMethodsApi
543
+ */
544
+ PaymentMethodsApi.prototype.listPaymentMethods = function (requestParameters, options) {
545
+ var _this = this;
546
+ if (requestParameters === void 0) { requestParameters = {}; }
547
+ return (0, exports.PaymentMethodsApiFp)(this.configuration).listPaymentMethods(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
548
+ };
549
+ return PaymentMethodsApi;
550
+ }(base_1.BaseAPI));
551
+ exports.PaymentMethodsApi = PaymentMethodsApi;