@emilgroup/claim-sdk 1.35.1-beta.2 → 1.35.1-beta.4

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.
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/claim-sdk@1.35.1-beta.2 --save
20
+ npm install @emilgroup/claim-sdk@1.35.1-beta.4 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk@1.35.1-beta.2
24
+ yarn add @emilgroup/claim-sdk@1.35.1-beta.4
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
package/base.ts CHANGED
@@ -270,7 +270,7 @@ export class BaseAPI {
270
270
  * @extends {Error}
271
271
  */
272
272
  export class RequiredError extends Error {
273
- name: "RequiredError" = "RequiredError";
273
+ override name: "RequiredError" = "RequiredError";
274
274
  constructor(public field: string, msg?: string) {
275
275
  super(msg);
276
276
  }
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -100,10 +109,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
100
109
  * @param {*} [options] Override http request option.
101
110
  * @throws {RequiredError}
102
111
  */
103
- createClaimPartnerRole: function (createClaimPartnerRoleRequestDto, authorization, options) {
104
- if (options === void 0) { options = {}; }
105
- return __awaiter(_this, void 0, void 0, function () {
112
+ createClaimPartnerRole: function (createClaimPartnerRoleRequestDto_1, authorization_1) {
113
+ var args_1 = [];
114
+ for (var _i = 2; _i < arguments.length; _i++) {
115
+ args_1[_i - 2] = arguments[_i];
116
+ }
117
+ return __awaiter(_this, __spreadArray([createClaimPartnerRoleRequestDto_1, authorization_1], args_1, true), void 0, function (createClaimPartnerRoleRequestDto, authorization, options) {
106
118
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
119
+ if (options === void 0) { options = {}; }
107
120
  return __generator(this, function (_a) {
108
121
  switch (_a.label) {
109
122
  case 0:
@@ -149,10 +162,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
149
162
  * @param {*} [options] Override http request option.
150
163
  * @throws {RequiredError}
151
164
  */
152
- deleteClaimPartnerRole: function (code, authorization, options) {
153
- if (options === void 0) { options = {}; }
154
- return __awaiter(_this, void 0, void 0, function () {
165
+ deleteClaimPartnerRole: function (code_1, authorization_1) {
166
+ var args_1 = [];
167
+ for (var _i = 2; _i < arguments.length; _i++) {
168
+ args_1[_i - 2] = arguments[_i];
169
+ }
170
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
155
171
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
172
+ if (options === void 0) { options = {}; }
156
173
  return __generator(this, function (_a) {
157
174
  switch (_a.label) {
158
175
  case 0:
@@ -197,10 +214,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
197
214
  * @param {*} [options] Override http request option.
198
215
  * @throws {RequiredError}
199
216
  */
200
- getClaimPartnerRole: function (code, authorization, options) {
201
- if (options === void 0) { options = {}; }
202
- return __awaiter(_this, void 0, void 0, function () {
217
+ getClaimPartnerRole: function (code_1, authorization_1) {
218
+ var args_1 = [];
219
+ for (var _i = 2; _i < arguments.length; _i++) {
220
+ args_1[_i - 2] = arguments[_i];
221
+ }
222
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
203
223
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
224
+ if (options === void 0) { options = {}; }
204
225
  return __generator(this, function (_a) {
205
226
  switch (_a.label) {
206
227
  case 0:
@@ -251,10 +272,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
251
272
  * @param {*} [options] Override http request option.
252
273
  * @throws {RequiredError}
253
274
  */
254
- listClaimPartnerRole: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
255
- if (options === void 0) { options = {}; }
256
- return __awaiter(_this, void 0, void 0, function () {
275
+ listClaimPartnerRole: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
276
+ var args_1 = [];
277
+ for (var _i = 8; _i < arguments.length; _i++) {
278
+ args_1[_i - 8] = arguments[_i];
279
+ }
280
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
281
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
282
+ if (options === void 0) { options = {}; }
258
283
  return __generator(this, function (_a) {
259
284
  switch (_a.label) {
260
285
  case 0:
@@ -318,10 +343,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
318
343
  * @param {*} [options] Override http request option.
319
344
  * @throws {RequiredError}
320
345
  */
321
- updateClaimPartnerRole: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
322
- if (options === void 0) { options = {}; }
323
- return __awaiter(_this, void 0, void 0, function () {
346
+ updateClaimPartnerRole: function (code_1, updateClaimPartnerRoleRequestDto_1, authorization_1) {
347
+ var args_1 = [];
348
+ for (var _i = 3; _i < arguments.length; _i++) {
349
+ args_1[_i - 3] = arguments[_i];
350
+ }
351
+ return __awaiter(_this, __spreadArray([code_1, updateClaimPartnerRoleRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
324
352
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
353
+ if (options === void 0) { options = {}; }
325
354
  return __generator(this, function (_a) {
326
355
  switch (_a.label) {
327
356
  case 0:
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -101,10 +110,14 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
101
110
  * @param {*} [options] Override http request option.
102
111
  * @throws {RequiredError}
103
112
  */
104
- createClaimPartner: function (claimCode, createClaimPartnerRequestDto, authorization, options) {
105
- if (options === void 0) { options = {}; }
106
- return __awaiter(_this, void 0, void 0, function () {
113
+ createClaimPartner: function (claimCode_1, createClaimPartnerRequestDto_1, authorization_1) {
114
+ var args_1 = [];
115
+ for (var _i = 3; _i < arguments.length; _i++) {
116
+ args_1[_i - 3] = arguments[_i];
117
+ }
118
+ return __awaiter(_this, __spreadArray([claimCode_1, createClaimPartnerRequestDto_1, authorization_1], args_1, true), void 0, function (claimCode, createClaimPartnerRequestDto, authorization, options) {
107
119
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
120
+ if (options === void 0) { options = {}; }
108
121
  return __generator(this, function (_a) {
109
122
  switch (_a.label) {
110
123
  case 0:
@@ -153,10 +166,14 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
153
166
  * @param {*} [options] Override http request option.
154
167
  * @throws {RequiredError}
155
168
  */
156
- deleteClaimPartner: function (id, authorization, options) {
157
- if (options === void 0) { options = {}; }
158
- return __awaiter(_this, void 0, void 0, function () {
169
+ deleteClaimPartner: function (id_1, authorization_1) {
170
+ var args_1 = [];
171
+ for (var _i = 2; _i < arguments.length; _i++) {
172
+ args_1[_i - 2] = arguments[_i];
173
+ }
174
+ return __awaiter(_this, __spreadArray([id_1, authorization_1], args_1, true), void 0, function (id, authorization, options) {
159
175
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
176
+ if (options === void 0) { options = {}; }
160
177
  return __generator(this, function (_a) {
161
178
  switch (_a.label) {
162
179
  case 0:
@@ -201,10 +218,14 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
201
218
  * @param {*} [options] Override http request option.
202
219
  * @throws {RequiredError}
203
220
  */
204
- getClaimPartner: function (id, authorization, options) {
205
- if (options === void 0) { options = {}; }
206
- return __awaiter(_this, void 0, void 0, function () {
221
+ getClaimPartner: function (id_1, authorization_1) {
222
+ var args_1 = [];
223
+ for (var _i = 2; _i < arguments.length; _i++) {
224
+ args_1[_i - 2] = arguments[_i];
225
+ }
226
+ return __awaiter(_this, __spreadArray([id_1, authorization_1], args_1, true), void 0, function (id, authorization, options) {
207
227
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
228
+ if (options === void 0) { options = {}; }
208
229
  return __generator(this, function (_a) {
209
230
  switch (_a.label) {
210
231
  case 0:
@@ -255,10 +276,14 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
255
276
  * @param {*} [options] Override http request option.
256
277
  * @throws {RequiredError}
257
278
  */
258
- listClaimPartners: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
259
- if (options === void 0) { options = {}; }
260
- return __awaiter(_this, void 0, void 0, function () {
279
+ listClaimPartners: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
280
+ var args_1 = [];
281
+ for (var _i = 8; _i < arguments.length; _i++) {
282
+ args_1[_i - 8] = arguments[_i];
283
+ }
284
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
261
285
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
286
+ if (options === void 0) { options = {}; }
262
287
  return __generator(this, function (_a) {
263
288
  switch (_a.label) {
264
289
  case 0:
@@ -48,7 +48,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
48
48
  * @param {*} [options] Override http request option.
49
49
  * @throws {RequiredError}
50
50
  */
51
- getClaimRegulation: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
+ getClaimRegulation: (code: string, authorization?: string, expand?: "claim", options?: AxiosRequestConfig) => Promise<RequestArgs>;
52
52
  /**
53
53
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
54
54
  * @summary List claim regulation items
@@ -107,7 +107,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
107
107
  * @param {*} [options] Override http request option.
108
108
  * @throws {RequiredError}
109
109
  */
110
- getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
110
+ getClaimRegulation(code: string, authorization?: string, expand?: "claim", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
111
111
  /**
112
112
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
113
113
  * @summary List claim regulation items
@@ -166,7 +166,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
166
166
  * @param {*} [options] Override http request option.
167
167
  * @throws {RequiredError}
168
168
  */
169
- getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
169
+ getClaimRegulation(code: string, authorization?: string, expand?: "claim", options?: any): AxiosPromise<RegulationItemResponseClass>;
170
170
  /**
171
171
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
172
172
  * @summary List claim regulation items
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -100,10 +109,14 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
100
109
  * @param {*} [options] Override http request option.
101
110
  * @throws {RequiredError}
102
111
  */
103
- createClaimRegulation: function (createRegulationItemRequestDto, authorization, options) {
104
- if (options === void 0) { options = {}; }
105
- return __awaiter(_this, void 0, void 0, function () {
112
+ createClaimRegulation: function (createRegulationItemRequestDto_1, authorization_1) {
113
+ var args_1 = [];
114
+ for (var _i = 2; _i < arguments.length; _i++) {
115
+ args_1[_i - 2] = arguments[_i];
116
+ }
117
+ return __awaiter(_this, __spreadArray([createRegulationItemRequestDto_1, authorization_1], args_1, true), void 0, function (createRegulationItemRequestDto, authorization, options) {
106
118
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
119
+ if (options === void 0) { options = {}; }
107
120
  return __generator(this, function (_a) {
108
121
  switch (_a.label) {
109
122
  case 0:
@@ -149,10 +162,14 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
149
162
  * @param {*} [options] Override http request option.
150
163
  * @throws {RequiredError}
151
164
  */
152
- deleteClaimRegulations: function (code, authorization, options) {
153
- if (options === void 0) { options = {}; }
154
- return __awaiter(_this, void 0, void 0, function () {
165
+ deleteClaimRegulations: function (code_1, authorization_1) {
166
+ var args_1 = [];
167
+ for (var _i = 2; _i < arguments.length; _i++) {
168
+ args_1[_i - 2] = arguments[_i];
169
+ }
170
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
155
171
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
172
+ if (options === void 0) { options = {}; }
156
173
  return __generator(this, function (_a) {
157
174
  switch (_a.label) {
158
175
  case 0:
@@ -198,10 +215,14 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
198
215
  * @param {*} [options] Override http request option.
199
216
  * @throws {RequiredError}
200
217
  */
201
- getClaimRegulation: function (code, authorization, expand, options) {
202
- if (options === void 0) { options = {}; }
203
- return __awaiter(_this, void 0, void 0, function () {
218
+ getClaimRegulation: function (code_1, authorization_1, expand_1) {
219
+ var args_1 = [];
220
+ for (var _i = 3; _i < arguments.length; _i++) {
221
+ args_1[_i - 3] = arguments[_i];
222
+ }
223
+ return __awaiter(_this, __spreadArray([code_1, authorization_1, expand_1], args_1, true), void 0, function (code, authorization, expand, options) {
204
224
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
225
+ if (options === void 0) { options = {}; }
205
226
  return __generator(this, function (_a) {
206
227
  switch (_a.label) {
207
228
  case 0:
@@ -255,10 +276,14 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
255
276
  * @param {*} [options] Override http request option.
256
277
  * @throws {RequiredError}
257
278
  */
258
- listClaimRegulations: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
259
- if (options === void 0) { options = {}; }
260
- return __awaiter(_this, void 0, void 0, function () {
279
+ listClaimRegulations: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
280
+ var args_1 = [];
281
+ for (var _i = 8; _i < arguments.length; _i++) {
282
+ args_1[_i - 8] = arguments[_i];
283
+ }
284
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
261
285
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
286
+ if (options === void 0) { options = {}; }
262
287
  return __generator(this, function (_a) {
263
288
  switch (_a.label) {
264
289
  case 0:
@@ -322,10 +347,14 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
322
347
  * @param {*} [options] Override http request option.
323
348
  * @throws {RequiredError}
324
349
  */
325
- updateClaimRegulation: function (code, updateRegulationItemRequestDto, authorization, options) {
326
- if (options === void 0) { options = {}; }
327
- return __awaiter(_this, void 0, void 0, function () {
350
+ updateClaimRegulation: function (code_1, updateRegulationItemRequestDto_1, authorization_1) {
351
+ var args_1 = [];
352
+ for (var _i = 3; _i < arguments.length; _i++) {
353
+ args_1[_i - 3] = arguments[_i];
354
+ }
355
+ return __awaiter(_this, __spreadArray([code_1, updateRegulationItemRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateRegulationItemRequestDto, authorization, options) {
328
356
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
357
+ if (options === void 0) { options = {}; }
329
358
  return __generator(this, function (_a) {
330
359
  switch (_a.label) {
331
360
  case 0:
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -100,10 +109,14 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
100
109
  * @param {*} [options] Override http request option.
101
110
  * @throws {RequiredError}
102
111
  */
103
- createClaimStatus: function (createClaimStatusRequestDto, authorization, options) {
104
- if (options === void 0) { options = {}; }
105
- return __awaiter(_this, void 0, void 0, function () {
112
+ createClaimStatus: function (createClaimStatusRequestDto_1, authorization_1) {
113
+ var args_1 = [];
114
+ for (var _i = 2; _i < arguments.length; _i++) {
115
+ args_1[_i - 2] = arguments[_i];
116
+ }
117
+ return __awaiter(_this, __spreadArray([createClaimStatusRequestDto_1, authorization_1], args_1, true), void 0, function (createClaimStatusRequestDto, authorization, options) {
106
118
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
119
+ if (options === void 0) { options = {}; }
107
120
  return __generator(this, function (_a) {
108
121
  switch (_a.label) {
109
122
  case 0:
@@ -149,10 +162,14 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
149
162
  * @param {*} [options] Override http request option.
150
163
  * @throws {RequiredError}
151
164
  */
152
- deleteClaimStatus: function (id, authorization, options) {
153
- if (options === void 0) { options = {}; }
154
- return __awaiter(_this, void 0, void 0, function () {
165
+ deleteClaimStatus: function (id_1, authorization_1) {
166
+ var args_1 = [];
167
+ for (var _i = 2; _i < arguments.length; _i++) {
168
+ args_1[_i - 2] = arguments[_i];
169
+ }
170
+ return __awaiter(_this, __spreadArray([id_1, authorization_1], args_1, true), void 0, function (id, authorization, options) {
155
171
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
172
+ if (options === void 0) { options = {}; }
156
173
  return __generator(this, function (_a) {
157
174
  switch (_a.label) {
158
175
  case 0:
@@ -197,10 +214,14 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
197
214
  * @param {*} [options] Override http request option.
198
215
  * @throws {RequiredError}
199
216
  */
200
- getClaimStatus: function (id, authorization, options) {
201
- if (options === void 0) { options = {}; }
202
- return __awaiter(_this, void 0, void 0, function () {
217
+ getClaimStatus: function (id_1, authorization_1) {
218
+ var args_1 = [];
219
+ for (var _i = 2; _i < arguments.length; _i++) {
220
+ args_1[_i - 2] = arguments[_i];
221
+ }
222
+ return __awaiter(_this, __spreadArray([id_1, authorization_1], args_1, true), void 0, function (id, authorization, options) {
203
223
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
224
+ if (options === void 0) { options = {}; }
204
225
  return __generator(this, function (_a) {
205
226
  switch (_a.label) {
206
227
  case 0:
@@ -251,10 +272,14 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
251
272
  * @param {*} [options] Override http request option.
252
273
  * @throws {RequiredError}
253
274
  */
254
- listClaimStatuses: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
255
- if (options === void 0) { options = {}; }
256
- return __awaiter(_this, void 0, void 0, function () {
275
+ listClaimStatuses: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
276
+ var args_1 = [];
277
+ for (var _i = 8; _i < arguments.length; _i++) {
278
+ args_1[_i - 8] = arguments[_i];
279
+ }
280
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
281
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
282
+ if (options === void 0) { options = {}; }
258
283
  return __generator(this, function (_a) {
259
284
  switch (_a.label) {
260
285
  case 0:
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -100,10 +109,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
100
109
  * @param {*} [options] Override http request option.
101
110
  * @throws {RequiredError}
102
111
  */
103
- createClaim: function (createClaimRequestDto, authorization, options) {
104
- if (options === void 0) { options = {}; }
105
- return __awaiter(_this, void 0, void 0, function () {
112
+ createClaim: function (createClaimRequestDto_1, authorization_1) {
113
+ var args_1 = [];
114
+ for (var _i = 2; _i < arguments.length; _i++) {
115
+ args_1[_i - 2] = arguments[_i];
116
+ }
117
+ return __awaiter(_this, __spreadArray([createClaimRequestDto_1, authorization_1], args_1, true), void 0, function (createClaimRequestDto, authorization, options) {
106
118
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
119
+ if (options === void 0) { options = {}; }
107
120
  return __generator(this, function (_a) {
108
121
  switch (_a.label) {
109
122
  case 0:
@@ -149,10 +162,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
149
162
  * @param {*} [options] Override http request option.
150
163
  * @throws {RequiredError}
151
164
  */
152
- deleteClaim: function (code, authorization, options) {
153
- if (options === void 0) { options = {}; }
154
- return __awaiter(_this, void 0, void 0, function () {
165
+ deleteClaim: function (code_1, authorization_1) {
166
+ var args_1 = [];
167
+ for (var _i = 2; _i < arguments.length; _i++) {
168
+ args_1[_i - 2] = arguments[_i];
169
+ }
170
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
155
171
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
172
+ if (options === void 0) { options = {}; }
156
173
  return __generator(this, function (_a) {
157
174
  switch (_a.label) {
158
175
  case 0:
@@ -197,10 +214,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
197
214
  * @param {*} [options] Override http request option.
198
215
  * @throws {RequiredError}
199
216
  */
200
- getClaim: function (code, authorization, options) {
201
- if (options === void 0) { options = {}; }
202
- return __awaiter(_this, void 0, void 0, function () {
217
+ getClaim: function (code_1, authorization_1) {
218
+ var args_1 = [];
219
+ for (var _i = 2; _i < arguments.length; _i++) {
220
+ args_1[_i - 2] = arguments[_i];
221
+ }
222
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
203
223
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
224
+ if (options === void 0) { options = {}; }
204
225
  return __generator(this, function (_a) {
205
226
  switch (_a.label) {
206
227
  case 0:
@@ -245,10 +266,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
245
266
  * @param {*} [options] Override http request option.
246
267
  * @throws {RequiredError}
247
268
  */
248
- getClaimRegulationSummary: function (code, authorization, options) {
249
- if (options === void 0) { options = {}; }
250
- return __awaiter(_this, void 0, void 0, function () {
269
+ getClaimRegulationSummary: function (code_1, authorization_1) {
270
+ var args_1 = [];
271
+ for (var _i = 2; _i < arguments.length; _i++) {
272
+ args_1[_i - 2] = arguments[_i];
273
+ }
274
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
251
275
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
276
+ if (options === void 0) { options = {}; }
252
277
  return __generator(this, function (_a) {
253
278
  switch (_a.label) {
254
279
  case 0:
@@ -299,10 +324,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
299
324
  * @param {*} [options] Override http request option.
300
325
  * @throws {RequiredError}
301
326
  */
302
- listClaims: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
303
- if (options === void 0) { options = {}; }
304
- return __awaiter(_this, void 0, void 0, function () {
327
+ listClaims: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
328
+ var args_1 = [];
329
+ for (var _i = 8; _i < arguments.length; _i++) {
330
+ args_1[_i - 8] = arguments[_i];
331
+ }
332
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
305
333
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
334
+ if (options === void 0) { options = {}; }
306
335
  return __generator(this, function (_a) {
307
336
  switch (_a.label) {
308
337
  case 0:
@@ -366,10 +395,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
366
395
  * @param {*} [options] Override http request option.
367
396
  * @throws {RequiredError}
368
397
  */
369
- patchClaim: function (code, patchClaimRequestDto, authorization, options) {
370
- if (options === void 0) { options = {}; }
371
- return __awaiter(_this, void 0, void 0, function () {
398
+ patchClaim: function (code_1, patchClaimRequestDto_1, authorization_1) {
399
+ var args_1 = [];
400
+ for (var _i = 3; _i < arguments.length; _i++) {
401
+ args_1[_i - 3] = arguments[_i];
402
+ }
403
+ return __awaiter(_this, __spreadArray([code_1, patchClaimRequestDto_1, authorization_1], args_1, true), void 0, function (code, patchClaimRequestDto, authorization, options) {
372
404
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
405
+ if (options === void 0) { options = {}; }
373
406
  return __generator(this, function (_a) {
374
407
  switch (_a.label) {
375
408
  case 0:
@@ -419,10 +452,14 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
419
452
  * @param {*} [options] Override http request option.
420
453
  * @throws {RequiredError}
421
454
  */
422
- updateClaim: function (code, updateClaimRequestDto, authorization, options) {
423
- if (options === void 0) { options = {}; }
424
- return __awaiter(_this, void 0, void 0, function () {
455
+ updateClaim: function (code_1, updateClaimRequestDto_1, authorization_1) {
456
+ var args_1 = [];
457
+ for (var _i = 3; _i < arguments.length; _i++) {
458
+ args_1[_i - 3] = arguments[_i];
459
+ }
460
+ return __awaiter(_this, __spreadArray([code_1, updateClaimRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateClaimRequestDto, authorization, options) {
425
461
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
462
+ if (options === void 0) { options = {}; }
426
463
  return __generator(this, function (_a) {
427
464
  switch (_a.label) {
428
465
  case 0:
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -98,10 +107,14 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
98
107
  * @param {*} [options] Override http request option.
99
108
  * @throws {RequiredError}
100
109
  */
101
- check: function (options) {
102
- if (options === void 0) { options = {}; }
103
- return __awaiter(_this, void 0, void 0, function () {
110
+ check: function () {
111
+ var args_1 = [];
112
+ for (var _i = 0; _i < arguments.length; _i++) {
113
+ args_1[_i] = arguments[_i];
114
+ }
115
+ return __awaiter(_this, __spreadArray([], args_1, true), void 0, function (options) {
104
116
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
117
+ if (options === void 0) { options = {}; }
105
118
  return __generator(this, function (_a) {
106
119
  localVarPath = "/v1/claims/health";
107
120
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -74,6 +74,15 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
74
74
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
75
  }
76
76
  };
77
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
78
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
79
+ if (ar || !(i in from)) {
80
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
81
+ ar[i] = from[i];
82
+ }
83
+ }
84
+ return to.concat(ar || Array.prototype.slice.call(from));
85
+ };
77
86
  var __importDefault = (this && this.__importDefault) || function (mod) {
78
87
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
88
  };
@@ -100,10 +109,14 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
100
109
  * @param {*} [options] Override http request option.
101
110
  * @throws {RequiredError}
102
111
  */
103
- createSettlement: function (createSettlementRequestDto, authorization, options) {
104
- if (options === void 0) { options = {}; }
105
- return __awaiter(_this, void 0, void 0, function () {
112
+ createSettlement: function (createSettlementRequestDto_1, authorization_1) {
113
+ var args_1 = [];
114
+ for (var _i = 2; _i < arguments.length; _i++) {
115
+ args_1[_i - 2] = arguments[_i];
116
+ }
117
+ return __awaiter(_this, __spreadArray([createSettlementRequestDto_1, authorization_1], args_1, true), void 0, function (createSettlementRequestDto, authorization, options) {
106
118
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
119
+ if (options === void 0) { options = {}; }
107
120
  return __generator(this, function (_a) {
108
121
  switch (_a.label) {
109
122
  case 0:
@@ -149,10 +162,14 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
149
162
  * @param {*} [options] Override http request option.
150
163
  * @throws {RequiredError}
151
164
  */
152
- deleteSettlement: function (code, authorization, options) {
153
- if (options === void 0) { options = {}; }
154
- return __awaiter(_this, void 0, void 0, function () {
165
+ deleteSettlement: function (code_1, authorization_1) {
166
+ var args_1 = [];
167
+ for (var _i = 2; _i < arguments.length; _i++) {
168
+ args_1[_i - 2] = arguments[_i];
169
+ }
170
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
155
171
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
172
+ if (options === void 0) { options = {}; }
156
173
  return __generator(this, function (_a) {
157
174
  switch (_a.label) {
158
175
  case 0:
@@ -197,10 +214,14 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
197
214
  * @param {*} [options] Override http request option.
198
215
  * @throws {RequiredError}
199
216
  */
200
- getSettlement: function (code, authorization, options) {
201
- if (options === void 0) { options = {}; }
202
- return __awaiter(_this, void 0, void 0, function () {
217
+ getSettlement: function (code_1, authorization_1) {
218
+ var args_1 = [];
219
+ for (var _i = 2; _i < arguments.length; _i++) {
220
+ args_1[_i - 2] = arguments[_i];
221
+ }
222
+ return __awaiter(_this, __spreadArray([code_1, authorization_1], args_1, true), void 0, function (code, authorization, options) {
203
223
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
224
+ if (options === void 0) { options = {}; }
204
225
  return __generator(this, function (_a) {
205
226
  switch (_a.label) {
206
227
  case 0:
@@ -251,10 +272,14 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
251
272
  * @param {*} [options] Override http request option.
252
273
  * @throws {RequiredError}
253
274
  */
254
- listSettlements: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
255
- if (options === void 0) { options = {}; }
256
- return __awaiter(_this, void 0, void 0, function () {
275
+ listSettlements: function (authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1) {
276
+ var args_1 = [];
277
+ for (var _i = 8; _i < arguments.length; _i++) {
278
+ args_1[_i - 8] = arguments[_i];
279
+ }
280
+ return __awaiter(_this, __spreadArray([authorization_1, pageSize_1, pageToken_1, filter_1, search_1, order_1, expand_1, filters_1], args_1, true), void 0, function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
281
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
282
+ if (options === void 0) { options = {}; }
258
283
  return __generator(this, function (_a) {
259
284
  switch (_a.label) {
260
285
  case 0:
@@ -318,10 +343,14 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
318
343
  * @param {*} [options] Override http request option.
319
344
  * @throws {RequiredError}
320
345
  */
321
- updateSettlement: function (code, updateSettlementRequestDto, authorization, options) {
322
- if (options === void 0) { options = {}; }
323
- return __awaiter(_this, void 0, void 0, function () {
346
+ updateSettlement: function (code_1, updateSettlementRequestDto_1, authorization_1) {
347
+ var args_1 = [];
348
+ for (var _i = 3; _i < arguments.length; _i++) {
349
+ args_1[_i - 3] = arguments[_i];
350
+ }
351
+ return __awaiter(_this, __spreadArray([code_1, updateSettlementRequestDto_1, authorization_1], args_1, true), void 0, function (code, updateSettlementRequestDto, authorization, options) {
324
352
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
353
+ if (options === void 0) { options = {}; }
325
354
  return __generator(this, function (_a) {
326
355
  switch (_a.label) {
327
356
  case 0:
package/dist/base.js CHANGED
@@ -48,8 +48,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
48
48
  });
49
49
  };
50
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;
51
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
52
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
@@ -78,7 +78,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
78
78
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
79
  };
80
80
  Object.defineProperty(exports, "__esModule", { value: true });
81
- exports.RequiredError = exports.BaseAPI = exports.resetRetry = exports.Environment = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
81
+ exports.RequiredError = exports.BaseAPI = exports.Environment = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
82
+ exports.resetRetry = resetRetry;
82
83
  var configuration_1 = require("./configuration");
83
84
  var common_1 = require("./common");
84
85
  // Some imports not used depending on template conditions
@@ -102,13 +103,12 @@ var Environment;
102
103
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
104
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
105
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
- })(Environment = exports.Environment || (exports.Environment = {}));
106
+ })(Environment || (exports.Environment = Environment = {}));
106
107
  var _retry_count = 0;
107
108
  var _retry = null;
108
109
  function resetRetry() {
109
110
  _retry_count = 0;
110
111
  }
111
- exports.resetRetry = resetRetry;
112
112
  var NETWORK_ERROR_MESSAGE = "Network Error";
113
113
  var TOKEN_DATA = 'APP_TOKEN';
114
114
  /**
package/dist/common.d.ts CHANGED
@@ -62,7 +62,7 @@ export declare const toPathString: (url: URL) => string;
62
62
  *
63
63
  * @export
64
64
  */
65
- export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
65
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
66
66
  /**
67
67
  * EMIL ClaimService
68
68
  * The EMIL ClaimService API description
package/dist/common.js CHANGED
@@ -33,8 +33,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
33
33
  });
34
34
  };
35
35
  var __generator = (this && this.__generator) || function (thisArg, body) {
36
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
37
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
36
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
37
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
38
38
  function verb(n) { return function (v) { return step([n, v]); }; }
39
39
  function step(op) {
40
40
  if (f) throw new TypeError("Generator is already executing.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/claim-sdk",
3
- "version": "1.35.1-beta.2",
3
+ "version": "1.35.1-beta.4",
4
4
  "description": "OpenAPI client for @emilgroup/claim-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -18,9 +18,9 @@
18
18
  "prepare": "npm run build"
19
19
  },
20
20
  "dependencies": {
21
- "axios": "^0.27.2"
21
+ "axios": "^1.9.0"
22
22
  },
23
23
  "devDependencies": {
24
- "typescript": "^4.0"
24
+ "typescript": "^5.8"
25
25
  }
26
26
  }
package/tsconfig.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "module": "CommonJS",
6
6
  "noImplicitAny": true,
7
7
  "esModuleInterop": true,
8
+ "noImplicitOverride": true,
8
9
  "outDir": "dist",
9
10
  "rootDir": ".",
10
11
  "lib": [