@emilgroup/payment-sdk 1.16.1-beta.87 → 1.16.1-beta.89

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 (37) hide show
  1. package/README.md +2 -2
  2. package/api/payment-requests-api.ts +12 -12
  3. package/api/webhooks-api.ts +54 -41
  4. package/base.ts +0 -1
  5. package/dist/api/payment-requests-api.d.ts +12 -12
  6. package/dist/api/payment-requests-api.js +9 -9
  7. package/dist/api/webhooks-api.d.ts +36 -27
  8. package/dist/api/webhooks-api.js +33 -27
  9. package/dist/base.d.ts +1 -2
  10. package/dist/base.js +0 -1
  11. package/dist/models/create-payment-request-request-dto.d.ts +0 -6
  12. package/dist/models/credit-allocation-class.d.ts +0 -6
  13. package/dist/models/credit-allocation-entity.d.ts +0 -6
  14. package/dist/models/list-billing-addresses-response-class.d.ts +9 -9
  15. package/dist/models/list-exceeding-credits-response-class.d.ts +18 -6
  16. package/dist/models/list-payment-receipts-response-class.d.ts +9 -9
  17. package/dist/models/list-payment-requests-response-class.d.ts +18 -6
  18. package/dist/models/list-payout-methods-response-class.d.ts +9 -9
  19. package/dist/models/list-refunds-response-class.d.ts +18 -6
  20. package/dist/models/payment-class-without-expand-properties.d.ts +1 -1
  21. package/dist/models/payment-class.d.ts +1 -1
  22. package/dist/models/payment-entity.d.ts +1 -1
  23. package/dist/models/payment-request-class.d.ts +0 -12
  24. package/models/create-payment-request-request-dto.ts +0 -6
  25. package/models/credit-allocation-class.ts +0 -6
  26. package/models/credit-allocation-entity.ts +0 -6
  27. package/models/list-billing-addresses-response-class.ts +9 -9
  28. package/models/list-exceeding-credits-response-class.ts +18 -6
  29. package/models/list-payment-receipts-response-class.ts +9 -9
  30. package/models/list-payment-requests-response-class.ts +18 -6
  31. package/models/list-payout-methods-response-class.ts +9 -9
  32. package/models/list-refunds-response-class.ts +18 -6
  33. package/models/payment-class-without-expand-properties.ts +1 -1
  34. package/models/payment-class.ts +1 -1
  35. package/models/payment-entity.ts +1 -1
  36. package/models/payment-request-class.ts +0 -12
  37. package/package.json +2 -2
@@ -22,22 +22,23 @@ export declare const WebhooksApiAxiosParamCreator: (configuration?: Configuratio
22
22
  * @summary Handle the webhook from PSP
23
23
  * @param {string} pspType The type of the payment service provider (PSP).<br/> <br/> <i>Supported PSP: braintree, stripe, b4u, eis, adyen</i>
24
24
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
25
+ * @param {string} productSlug
25
26
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
26
27
  * @param {*} [options] Override http request option.
27
28
  * @throws {RequiredError}
28
29
  */
29
- postWebhook: (pspType: string, tenantSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
+ postWebhook0: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
31
  /**
31
32
  * This will processes the webhook from external payment service provider. **Required Permissions** none
32
33
  * @summary Handle the webhook from PSP
33
34
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
34
35
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
35
- * @param {string} productSlug Optional product slug associated with the webhook.
36
+ * @param {string} productSlug
36
37
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
37
38
  * @param {*} [options] Override http request option.
38
39
  * @throws {RequiredError}
39
40
  */
40
- postWebhookWithProductSlug: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
41
+ postWebhook1: (pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
41
42
  };
42
43
  /**
43
44
  * WebhooksApi - functional programming interface
@@ -49,22 +50,23 @@ export declare const WebhooksApiFp: (configuration?: Configuration) => {
49
50
  * @summary Handle the webhook from PSP
50
51
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
51
52
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
53
+ * @param {string} productSlug
52
54
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
53
55
  * @param {*} [options] Override http request option.
54
56
  * @throws {RequiredError}
55
57
  */
56
- postWebhook(pspType: string, tenantSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
58
+ postWebhook0(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
57
59
  /**
58
60
  * This will processes the webhook from external payment service provider. **Required Permissions** none
59
61
  * @summary Handle the webhook from PSP
60
62
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
61
63
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
62
- * @param {string} productSlug Optional product slug associated with the webhook.
64
+ * @param {string} productSlug
63
65
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
64
66
  * @param {*} [options] Override http request option.
65
67
  * @throws {RequiredError}
66
68
  */
67
- postWebhookWithProductSlug(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
69
+ postWebhook1(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
68
70
  };
69
71
  /**
70
72
  * WebhooksApi - factory interface
@@ -76,76 +78,83 @@ export declare const WebhooksApiFactory: (configuration?: Configuration, basePat
76
78
  * @summary Handle the webhook from PSP
77
79
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
78
80
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
81
+ * @param {string} productSlug
79
82
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
80
83
  * @param {*} [options] Override http request option.
81
84
  * @throws {RequiredError}
82
85
  */
83
- postWebhook(pspType: string, tenantSlug: string, body: object, options?: any): AxiosPromise<void>;
86
+ postWebhook0(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
84
87
  /**
85
88
  * This will processes the webhook from external payment service provider. **Required Permissions** none
86
89
  * @summary Handle the webhook from PSP
87
90
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
88
91
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
89
- * @param {string} productSlug Optional product slug associated with the webhook.
92
+ * @param {string} productSlug
90
93
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
91
94
  * @param {*} [options] Override http request option.
92
95
  * @throws {RequiredError}
93
96
  */
94
- postWebhookWithProductSlug(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
97
+ postWebhook1(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void>;
95
98
  };
96
99
  /**
97
- * Request parameters for postWebhook operation in WebhooksApi.
100
+ * Request parameters for postWebhook0 operation in WebhooksApi.
98
101
  * @export
99
- * @interface WebhooksApiPostWebhookRequest
102
+ * @interface WebhooksApiPostWebhook0Request
100
103
  */
101
- export interface WebhooksApiPostWebhookRequest {
104
+ export interface WebhooksApiPostWebhook0Request {
102
105
  /**
103
106
  * The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
104
107
  * @type {string}
105
- * @memberof WebhooksApiPostWebhook
108
+ * @memberof WebhooksApiPostWebhook0
106
109
  */
107
110
  readonly pspType: string;
108
111
  /**
109
112
  * Unique slug identifier representing a tenant.
110
113
  * @type {string}
111
- * @memberof WebhooksApiPostWebhook
114
+ * @memberof WebhooksApiPostWebhook0
112
115
  */
113
116
  readonly tenantSlug: string;
117
+ /**
118
+ *
119
+ * @type {string}
120
+ * @memberof WebhooksApiPostWebhook0
121
+ */
122
+ readonly productSlug: string;
114
123
  /**
115
124
  * Accepts a webhook payload. The structure may vary depending on the payment service provider.
116
125
  * @type {object}
117
- * @memberof WebhooksApiPostWebhook
126
+ * @memberof WebhooksApiPostWebhook0
118
127
  */
119
128
  readonly body: object;
120
129
  }
121
130
  /**
122
- * Request parameters for postWebhookWithProductSlug operation in WebhooksApi.
131
+ * Request parameters for postWebhook1 operation in WebhooksApi.
123
132
  * @export
124
- * @interface WebhooksApiPostWebhookWithProductSlugRequest
133
+ * @interface WebhooksApiPostWebhook1Request
125
134
  */
126
- export interface WebhooksApiPostWebhookWithProductSlugRequest {
135
+ export interface WebhooksApiPostWebhook1Request {
127
136
  /**
128
137
  * The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
129
138
  * @type {string}
130
- * @memberof WebhooksApiPostWebhookWithProductSlug
139
+ * @memberof WebhooksApiPostWebhook1
131
140
  */
132
141
  readonly pspType: string;
133
142
  /**
134
143
  * Unique slug identifier representing a tenant.
135
144
  * @type {string}
136
- * @memberof WebhooksApiPostWebhookWithProductSlug
145
+ * @memberof WebhooksApiPostWebhook1
137
146
  */
138
147
  readonly tenantSlug: string;
139
148
  /**
140
- * Optional product slug associated with the webhook.
149
+ *
141
150
  * @type {string}
142
- * @memberof WebhooksApiPostWebhookWithProductSlug
151
+ * @memberof WebhooksApiPostWebhook1
143
152
  */
144
153
  readonly productSlug: string;
145
154
  /**
146
155
  * Accepts a webhook payload. The structure may vary depending on the payment service provider.
147
156
  * @type {object}
148
- * @memberof WebhooksApiPostWebhookWithProductSlug
157
+ * @memberof WebhooksApiPostWebhook1
149
158
  */
150
159
  readonly body: object;
151
160
  }
@@ -159,19 +168,19 @@ export declare class WebhooksApi extends BaseAPI {
159
168
  /**
160
169
  * This will processes the webhook from external payment service provider. **Required Permissions** none
161
170
  * @summary Handle the webhook from PSP
162
- * @param {WebhooksApiPostWebhookRequest} requestParameters Request parameters.
171
+ * @param {WebhooksApiPostWebhook0Request} requestParameters Request parameters.
163
172
  * @param {*} [options] Override http request option.
164
173
  * @throws {RequiredError}
165
174
  * @memberof WebhooksApi
166
175
  */
167
- postWebhook(requestParameters: WebhooksApiPostWebhookRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
176
+ postWebhook0(requestParameters: WebhooksApiPostWebhook0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
168
177
  /**
169
178
  * This will processes the webhook from external payment service provider. **Required Permissions** none
170
179
  * @summary Handle the webhook from PSP
171
- * @param {WebhooksApiPostWebhookWithProductSlugRequest} requestParameters Request parameters.
180
+ * @param {WebhooksApiPostWebhook1Request} requestParameters Request parameters.
172
181
  * @param {*} [options] Override http request option.
173
182
  * @throws {RequiredError}
174
183
  * @memberof WebhooksApi
175
184
  */
176
- postWebhookWithProductSlug(requestParameters: WebhooksApiPostWebhookWithProductSlugRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
185
+ postWebhook1(requestParameters: WebhooksApiPostWebhook1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
177
186
  }
@@ -97,24 +97,28 @@ var WebhooksApiAxiosParamCreator = function (configuration) {
97
97
  * @summary Handle the webhook from PSP
98
98
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
99
99
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
100
+ * @param {string} productSlug
100
101
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
101
102
  * @param {*} [options] Override http request option.
102
103
  * @throws {RequiredError}
103
104
  */
104
- postWebhook: function (pspType, tenantSlug, body, options) {
105
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
105
106
  if (options === void 0) { options = {}; }
106
107
  return __awaiter(_this, void 0, void 0, function () {
107
108
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
108
109
  return __generator(this, function (_a) {
109
110
  // verify required parameter 'pspType' is not null or undefined
110
- (0, common_1.assertParamExists)('postWebhook', 'pspType', pspType);
111
+ (0, common_1.assertParamExists)('postWebhook0', 'pspType', pspType);
111
112
  // verify required parameter 'tenantSlug' is not null or undefined
112
- (0, common_1.assertParamExists)('postWebhook', 'tenantSlug', tenantSlug);
113
+ (0, common_1.assertParamExists)('postWebhook0', 'tenantSlug', tenantSlug);
114
+ // verify required parameter 'productSlug' is not null or undefined
115
+ (0, common_1.assertParamExists)('postWebhook0', 'productSlug', productSlug);
113
116
  // verify required parameter 'body' is not null or undefined
114
- (0, common_1.assertParamExists)('postWebhook', 'body', body);
117
+ (0, common_1.assertParamExists)('postWebhook0', 'body', body);
115
118
  localVarPath = "/paymentservice/v1/webhooks/{pspType}/{tenantSlug}"
116
119
  .replace("{".concat("pspType", "}"), encodeURIComponent(String(pspType)))
117
- .replace("{".concat("tenantSlug", "}"), encodeURIComponent(String(tenantSlug)));
120
+ .replace("{".concat("tenantSlug", "}"), encodeURIComponent(String(tenantSlug)))
121
+ .replace("{".concat("productSlug", "}"), encodeURIComponent(String(productSlug)));
118
122
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
119
123
  if (configuration) {
120
124
  baseOptions = configuration.baseOptions;
@@ -140,24 +144,24 @@ var WebhooksApiAxiosParamCreator = function (configuration) {
140
144
  * @summary Handle the webhook from PSP
141
145
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
142
146
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
143
- * @param {string} productSlug Optional product slug associated with the webhook.
147
+ * @param {string} productSlug
144
148
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
145
149
  * @param {*} [options] Override http request option.
146
150
  * @throws {RequiredError}
147
151
  */
148
- postWebhookWithProductSlug: function (pspType, tenantSlug, productSlug, body, options) {
152
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
149
153
  if (options === void 0) { options = {}; }
150
154
  return __awaiter(_this, void 0, void 0, function () {
151
155
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
152
156
  return __generator(this, function (_a) {
153
157
  // verify required parameter 'pspType' is not null or undefined
154
- (0, common_1.assertParamExists)('postWebhookWithProductSlug', 'pspType', pspType);
158
+ (0, common_1.assertParamExists)('postWebhook1', 'pspType', pspType);
155
159
  // verify required parameter 'tenantSlug' is not null or undefined
156
- (0, common_1.assertParamExists)('postWebhookWithProductSlug', 'tenantSlug', tenantSlug);
160
+ (0, common_1.assertParamExists)('postWebhook1', 'tenantSlug', tenantSlug);
157
161
  // verify required parameter 'productSlug' is not null or undefined
158
- (0, common_1.assertParamExists)('postWebhookWithProductSlug', 'productSlug', productSlug);
162
+ (0, common_1.assertParamExists)('postWebhook1', 'productSlug', productSlug);
159
163
  // verify required parameter 'body' is not null or undefined
160
- (0, common_1.assertParamExists)('postWebhookWithProductSlug', 'body', body);
164
+ (0, common_1.assertParamExists)('postWebhook1', 'body', body);
161
165
  localVarPath = "/paymentservice/v1/webhooks/{pspType}/{tenantSlug}/{productSlug}"
162
166
  .replace("{".concat("pspType", "}"), encodeURIComponent(String(pspType)))
163
167
  .replace("{".concat("tenantSlug", "}"), encodeURIComponent(String(tenantSlug)))
@@ -197,16 +201,17 @@ var WebhooksApiFp = function (configuration) {
197
201
  * @summary Handle the webhook from PSP
198
202
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
199
203
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
204
+ * @param {string} productSlug
200
205
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
201
206
  * @param {*} [options] Override http request option.
202
207
  * @throws {RequiredError}
203
208
  */
204
- postWebhook: function (pspType, tenantSlug, body, options) {
209
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
205
210
  return __awaiter(this, void 0, void 0, function () {
206
211
  var localVarAxiosArgs;
207
212
  return __generator(this, function (_a) {
208
213
  switch (_a.label) {
209
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook(pspType, tenantSlug, body, options)];
214
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook0(pspType, tenantSlug, productSlug, body, options)];
210
215
  case 1:
211
216
  localVarAxiosArgs = _a.sent();
212
217
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -219,17 +224,17 @@ var WebhooksApiFp = function (configuration) {
219
224
  * @summary Handle the webhook from PSP
220
225
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
221
226
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
222
- * @param {string} productSlug Optional product slug associated with the webhook.
227
+ * @param {string} productSlug
223
228
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
224
229
  * @param {*} [options] Override http request option.
225
230
  * @throws {RequiredError}
226
231
  */
227
- postWebhookWithProductSlug: function (pspType, tenantSlug, productSlug, body, options) {
232
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
228
233
  return __awaiter(this, void 0, void 0, function () {
229
234
  var localVarAxiosArgs;
230
235
  return __generator(this, function (_a) {
231
236
  switch (_a.label) {
232
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhookWithProductSlug(pspType, tenantSlug, productSlug, body, options)];
237
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postWebhook1(pspType, tenantSlug, productSlug, body, options)];
233
238
  case 1:
234
239
  localVarAxiosArgs = _a.sent();
235
240
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -252,25 +257,26 @@ var WebhooksApiFactory = function (configuration, basePath, axios) {
252
257
  * @summary Handle the webhook from PSP
253
258
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
254
259
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
260
+ * @param {string} productSlug
255
261
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
256
262
  * @param {*} [options] Override http request option.
257
263
  * @throws {RequiredError}
258
264
  */
259
- postWebhook: function (pspType, tenantSlug, body, options) {
260
- return localVarFp.postWebhook(pspType, tenantSlug, body, options).then(function (request) { return request(axios, basePath); });
265
+ postWebhook0: function (pspType, tenantSlug, productSlug, body, options) {
266
+ return localVarFp.postWebhook0(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
261
267
  },
262
268
  /**
263
269
  * This will processes the webhook from external payment service provider. **Required Permissions** none
264
270
  * @summary Handle the webhook from PSP
265
271
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
266
272
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
267
- * @param {string} productSlug Optional product slug associated with the webhook.
273
+ * @param {string} productSlug
268
274
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
269
275
  * @param {*} [options] Override http request option.
270
276
  * @throws {RequiredError}
271
277
  */
272
- postWebhookWithProductSlug: function (pspType, tenantSlug, productSlug, body, options) {
273
- return localVarFp.postWebhookWithProductSlug(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
278
+ postWebhook1: function (pspType, tenantSlug, productSlug, body, options) {
279
+ return localVarFp.postWebhook1(pspType, tenantSlug, productSlug, body, options).then(function (request) { return request(axios, basePath); });
274
280
  },
275
281
  };
276
282
  };
@@ -289,26 +295,26 @@ var WebhooksApi = /** @class */ (function (_super) {
289
295
  /**
290
296
  * This will processes the webhook from external payment service provider. **Required Permissions** none
291
297
  * @summary Handle the webhook from PSP
292
- * @param {WebhooksApiPostWebhookRequest} requestParameters Request parameters.
298
+ * @param {WebhooksApiPostWebhook0Request} requestParameters Request parameters.
293
299
  * @param {*} [options] Override http request option.
294
300
  * @throws {RequiredError}
295
301
  * @memberof WebhooksApi
296
302
  */
297
- WebhooksApi.prototype.postWebhook = function (requestParameters, options) {
303
+ WebhooksApi.prototype.postWebhook0 = function (requestParameters, options) {
298
304
  var _this = this;
299
- return (0, exports.WebhooksApiFp)(this.configuration).postWebhook(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
305
+ return (0, exports.WebhooksApiFp)(this.configuration).postWebhook0(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
300
306
  };
301
307
  /**
302
308
  * This will processes the webhook from external payment service provider. **Required Permissions** none
303
309
  * @summary Handle the webhook from PSP
304
- * @param {WebhooksApiPostWebhookWithProductSlugRequest} requestParameters Request parameters.
310
+ * @param {WebhooksApiPostWebhook1Request} requestParameters Request parameters.
305
311
  * @param {*} [options] Override http request option.
306
312
  * @throws {RequiredError}
307
313
  * @memberof WebhooksApi
308
314
  */
309
- WebhooksApi.prototype.postWebhookWithProductSlug = function (requestParameters, options) {
315
+ WebhooksApi.prototype.postWebhook1 = function (requestParameters, options) {
310
316
  var _this = this;
311
- return (0, exports.WebhooksApiFp)(this.configuration).postWebhookWithProductSlug(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
317
+ return (0, exports.WebhooksApiFp)(this.configuration).postWebhook1(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then(function (request) { return request(_this.axios, _this.basePath); });
312
318
  };
313
319
  return WebhooksApi;
314
320
  }(base_1.BaseAPI));
package/dist/base.d.ts CHANGED
@@ -39,8 +39,7 @@ export declare enum Environment {
39
39
  Test = "https://apiv2-test.emil.de",
40
40
  Staging = "https://apiv2-staging.emil.de",
41
41
  Development = "https://apiv2-dev.emil.de",
42
- ProductionZurich = "https://eu-central-2.apiv2.emil.de",
43
- StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
42
+ ProductionZurich = "https://eu-central-2.apiv2.emil.de"
44
43
  }
45
44
  export declare function resetRetry(): void;
46
45
  /**
package/dist/base.js CHANGED
@@ -102,7 +102,6 @@ var Environment;
102
102
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
103
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
104
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
- Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
106
105
  })(Environment = exports.Environment || (exports.Environment = {}));
107
106
  var _retry_count = 0;
108
107
  var _retry = null;
@@ -75,12 +75,6 @@ export interface CreatePaymentRequestRequestDto {
75
75
  * @memberof CreatePaymentRequestRequestDto
76
76
  */
77
77
  'settlementCode'?: string;
78
- /**
79
- * Code of the partner the payment request was created for.
80
- * @type {string}
81
- * @memberof CreatePaymentRequestRequestDto
82
- */
83
- 'partnerCode': string;
84
78
  /**
85
79
  * Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
86
80
  * @type {string}
@@ -34,12 +34,6 @@ export interface CreditAllocationClass {
34
34
  * @memberof CreditAllocationClass
35
35
  */
36
36
  'exceedingCreditCodes': Array<string>;
37
- /**
38
- * Partner code derived from the policy related to the exceeding credits.
39
- * @type {string}
40
- * @memberof CreditAllocationClass
41
- */
42
- 'partnerCode': string;
43
37
  /**
44
38
  * Policy code associated with the credit.
45
39
  * @type {string}
@@ -28,12 +28,6 @@ export interface CreditAllocationEntity {
28
28
  * @memberof CreditAllocationEntity
29
29
  */
30
30
  'code': string;
31
- /**
32
- *
33
- * @type {string}
34
- * @memberof CreditAllocationEntity
35
- */
36
- 'partnerCode': string;
37
31
  /**
38
32
  *
39
33
  * @type {string}
@@ -16,18 +16,18 @@ import { BillingAddressClass } from './billing-address-class';
16
16
  * @interface ListBillingAddressesResponseClass
17
17
  */
18
18
  export interface ListBillingAddressesResponseClass {
19
- /**
20
- * The billing addresses
21
- * @type {Array<BillingAddressClass>}
22
- * @memberof ListBillingAddressesResponseClass
23
- */
24
- 'items': Array<BillingAddressClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListBillingAddressesResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListBillingAddressesResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListBillingAddressesResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The billing addresses
39
+ * @type {Array<BillingAddressClass>}
40
40
  * @memberof ListBillingAddressesResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<BillingAddressClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { ExceedingCreditClass } from './exceeding-credit-class';
16
16
  * @interface ListExceedingCreditsResponseClass
17
17
  */
18
18
  export interface ListExceedingCreditsResponseClass {
19
- /**
20
- * The list of exceeding credits.
21
- * @type {Array<ExceedingCreditClass>}
22
- * @memberof ListExceedingCreditsResponseClass
23
- */
24
- 'items': Array<ExceedingCreditClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListExceedingCreditsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListExceedingCreditsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListExceedingCreditsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of exceeding credits.
39
+ * @type {Array<ExceedingCreditClass>}
40
+ * @memberof ListExceedingCreditsResponseClass
41
+ */
42
+ 'items': Array<ExceedingCreditClass>;
31
43
  }
@@ -16,18 +16,18 @@ import { PaymentReceiptClass } from './payment-receipt-class';
16
16
  * @interface ListPaymentReceiptsResponseClass
17
17
  */
18
18
  export interface ListPaymentReceiptsResponseClass {
19
- /**
20
- * The list of payment receipts.
21
- * @type {Array<PaymentReceiptClass>}
22
- * @memberof ListPaymentReceiptsResponseClass
23
- */
24
- 'items': Array<PaymentReceiptClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPaymentReceiptsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPaymentReceiptsResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListPaymentReceiptsResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The list of payment receipts.
39
+ * @type {Array<PaymentReceiptClass>}
40
40
  * @memberof ListPaymentReceiptsResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<PaymentReceiptClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { PaymentRequestClass } from './payment-request-class';
16
16
  * @interface ListPaymentRequestsResponseClass
17
17
  */
18
18
  export interface ListPaymentRequestsResponseClass {
19
- /**
20
- * The list of payment requests.
21
- * @type {Array<PaymentRequestClass>}
22
- * @memberof ListPaymentRequestsResponseClass
23
- */
24
- 'items': Array<PaymentRequestClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPaymentRequestsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPaymentRequestsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPaymentRequestsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of payment requests.
39
+ * @type {Array<PaymentRequestClass>}
40
+ * @memberof ListPaymentRequestsResponseClass
41
+ */
42
+ 'items': Array<PaymentRequestClass>;
31
43
  }
@@ -16,18 +16,18 @@ import { PayoutMethodClass } from './payout-method-class';
16
16
  * @interface ListPayoutMethodsResponseClass
17
17
  */
18
18
  export interface ListPayoutMethodsResponseClass {
19
- /**
20
- * The payout methods
21
- * @type {Array<PayoutMethodClass>}
22
- * @memberof ListPayoutMethodsResponseClass
23
- */
24
- 'items': Array<PayoutMethodClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPayoutMethodsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPayoutMethodsResponseClass
29
+ */
30
+ 'totalItems': number;
31
31
  /**
32
32
  * Items per page.
33
33
  * @type {number}
@@ -35,9 +35,9 @@ export interface ListPayoutMethodsResponseClass {
35
35
  */
36
36
  'itemsPerPage': number;
37
37
  /**
38
- * Total amount of items.
39
- * @type {number}
38
+ * The payout methods
39
+ * @type {Array<PayoutMethodClass>}
40
40
  * @memberof ListPayoutMethodsResponseClass
41
41
  */
42
- 'totalItems': number;
42
+ 'items': Array<PayoutMethodClass>;
43
43
  }
@@ -16,16 +16,28 @@ import { RefundClass } from './refund-class';
16
16
  * @interface ListRefundsResponseClass
17
17
  */
18
18
  export interface ListRefundsResponseClass {
19
- /**
20
- * The list of refunds.
21
- * @type {Array<RefundClass>}
22
- * @memberof ListRefundsResponseClass
23
- */
24
- 'items': Array<RefundClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListRefundsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListRefundsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListRefundsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of refunds.
39
+ * @type {Array<RefundClass>}
40
+ * @memberof ListRefundsResponseClass
41
+ */
42
+ 'items': Array<RefundClass>;
31
43
  }
@@ -44,7 +44,7 @@ export interface PaymentClassWithoutExpandProperties {
44
44
  * @type {string}
45
45
  * @memberof PaymentClassWithoutExpandProperties
46
46
  */
47
- 'partnerCode': string;
47
+ 'partnerCode'?: string;
48
48
  /**
49
49
  * Amount to be paid in cents. 100 to charge 1€.
50
50
  * @type {number}