@emilgroup/claim-sdk 1.43.0 → 1.43.1-beta.0
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 +2 -2
- package/api/claim-limit-usages-api.ts +45 -53
- package/api/claim-partner-roles-api.ts +107 -127
- package/api/claim-partners-api.ts +87 -103
- package/api/claim-positions-api.ts +153 -181
- package/api/claim-regulations-api.ts +108 -128
- package/api/claim-statuses-api.ts +129 -153
- package/api/claims-api.ts +149 -177
- package/api/health-check-api.ts +137 -17
- package/api/settlements-api.ts +107 -127
- package/dist/api/claim-limit-usages-api.d.ts +34 -42
- package/dist/api/claim-limit-usages-api.js +29 -37
- package/dist/api/claim-partner-roles-api.d.ts +77 -97
- package/dist/api/claim-partner-roles-api.js +75 -95
- package/dist/api/claim-partners-api.d.ts +63 -79
- package/dist/api/claim-partners-api.js +60 -76
- package/dist/api/claim-positions-api.d.ts +108 -136
- package/dist/api/claim-positions-api.js +108 -136
- package/dist/api/claim-regulations-api.d.ts +78 -98
- package/dist/api/claim-regulations-api.js +75 -95
- package/dist/api/claim-statuses-api.d.ts +92 -116
- package/dist/api/claim-statuses-api.js +91 -115
- package/dist/api/claims-api.d.ts +106 -134
- package/dist/api/claims-api.js +106 -134
- package/dist/api/health-check-api.d.ts +66 -12
- package/dist/api/health-check-api.js +151 -17
- package/dist/api/settlements-api.d.ts +77 -97
- package/dist/api/settlements-api.js +75 -95
- package/dist/models/calculation-step-result-class.d.ts +3 -3
- package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
- package/dist/models/list-claim-partners-response-class.d.ts +6 -6
- package/dist/models/list-claim-positions-response-class.d.ts +6 -6
- package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
- package/dist/models/list-claims-response-class.d.ts +6 -6
- package/dist/models/list-regulations-response-class.d.ts +6 -6
- package/dist/models/list-settlements-response-class.d.ts +18 -6
- package/dist/models/payout-details-class.d.ts +4 -2
- package/models/calculation-step-result-class.ts +3 -3
- package/models/list-claim-limit-usages-response-class.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +6 -6
- package/models/list-claim-partners-response-class.ts +6 -6
- package/models/list-claim-positions-response-class.ts +6 -6
- package/models/list-claim-statuses-response-class.ts +6 -6
- package/models/list-claims-response-class.ts +6 -6
- package/models/list-regulations-response-class.ts +6 -6
- package/models/list-settlements-response-class.ts +18 -6
- package/models/payout-details-class.ts +2 -2
- package/package.json +1 -1
|
@@ -100,7 +100,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
100
100
|
* @param {*} [options] Override http request option.
|
|
101
101
|
* @throws {RequiredError}
|
|
102
102
|
*/
|
|
103
|
-
|
|
103
|
+
createClaimStatus0: function (createClaimStatusRequestDto, authorization, options) {
|
|
104
104
|
if (options === void 0) { options = {}; }
|
|
105
105
|
return __awaiter(_this, void 0, void 0, function () {
|
|
106
106
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -108,8 +108,8 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
108
108
|
switch (_a.label) {
|
|
109
109
|
case 0:
|
|
110
110
|
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
111
|
-
(0, common_1.assertParamExists)('
|
|
112
|
-
localVarPath = "/
|
|
111
|
+
(0, common_1.assertParamExists)('createClaimStatus0', 'createClaimStatusRequestDto', createClaimStatusRequestDto);
|
|
112
|
+
localVarPath = "/v1/claim-statuses";
|
|
113
113
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
114
114
|
if (configuration) {
|
|
115
115
|
baseOptions = configuration.baseOptions;
|
|
@@ -142,12 +142,11 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
});
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
145
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
146
146
|
* @summary Create the claim status
|
|
147
147
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
148
148
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
149
149
|
* @param {*} [options] Override http request option.
|
|
150
|
-
* @deprecated
|
|
151
150
|
* @throws {RequiredError}
|
|
152
151
|
*/
|
|
153
152
|
createClaimStatus1: function (createClaimStatusRequestDto, authorization, options) {
|
|
@@ -159,7 +158,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
159
158
|
case 0:
|
|
160
159
|
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
161
160
|
(0, common_1.assertParamExists)('createClaimStatus1', 'createClaimStatusRequestDto', createClaimStatusRequestDto);
|
|
162
|
-
localVarPath = "/v1/claim-statuses";
|
|
161
|
+
localVarPath = "/claimservice/v1/claim-statuses";
|
|
163
162
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
164
163
|
if (configuration) {
|
|
165
164
|
baseOptions = configuration.baseOptions;
|
|
@@ -199,7 +198,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
199
198
|
* @param {*} [options] Override http request option.
|
|
200
199
|
* @throws {RequiredError}
|
|
201
200
|
*/
|
|
202
|
-
|
|
201
|
+
deleteClaimStatus0: function (id, authorization, options) {
|
|
203
202
|
if (options === void 0) { options = {}; }
|
|
204
203
|
return __awaiter(_this, void 0, void 0, function () {
|
|
205
204
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -207,8 +206,8 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
207
206
|
switch (_a.label) {
|
|
208
207
|
case 0:
|
|
209
208
|
// verify required parameter 'id' is not null or undefined
|
|
210
|
-
(0, common_1.assertParamExists)('
|
|
211
|
-
localVarPath = "/
|
|
209
|
+
(0, common_1.assertParamExists)('deleteClaimStatus0', 'id', id);
|
|
210
|
+
localVarPath = "/v1/claim-statuses/{id}"
|
|
212
211
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
213
212
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
214
213
|
if (configuration) {
|
|
@@ -240,12 +239,11 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
240
239
|
});
|
|
241
240
|
},
|
|
242
241
|
/**
|
|
243
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
242
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
244
243
|
* @summary Delete the claim status
|
|
245
244
|
* @param {number} id
|
|
246
245
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
247
246
|
* @param {*} [options] Override http request option.
|
|
248
|
-
* @deprecated
|
|
249
247
|
* @throws {RequiredError}
|
|
250
248
|
*/
|
|
251
249
|
deleteClaimStatus1: function (id, authorization, options) {
|
|
@@ -257,7 +255,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
257
255
|
case 0:
|
|
258
256
|
// verify required parameter 'id' is not null or undefined
|
|
259
257
|
(0, common_1.assertParamExists)('deleteClaimStatus1', 'id', id);
|
|
260
|
-
localVarPath = "/v1/claim-statuses/{id}"
|
|
258
|
+
localVarPath = "/claimservice/v1/claim-statuses/{id}"
|
|
261
259
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
262
260
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
263
261
|
if (configuration) {
|
|
@@ -296,7 +294,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
296
294
|
* @param {*} [options] Override http request option.
|
|
297
295
|
* @throws {RequiredError}
|
|
298
296
|
*/
|
|
299
|
-
|
|
297
|
+
getClaimStatus0: function (id, authorization, options) {
|
|
300
298
|
if (options === void 0) { options = {}; }
|
|
301
299
|
return __awaiter(_this, void 0, void 0, function () {
|
|
302
300
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -304,8 +302,8 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
304
302
|
switch (_a.label) {
|
|
305
303
|
case 0:
|
|
306
304
|
// verify required parameter 'id' is not null or undefined
|
|
307
|
-
(0, common_1.assertParamExists)('
|
|
308
|
-
localVarPath = "/
|
|
305
|
+
(0, common_1.assertParamExists)('getClaimStatus0', 'id', id);
|
|
306
|
+
localVarPath = "/v1/claim-statuses/{id}"
|
|
309
307
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
310
308
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
311
309
|
if (configuration) {
|
|
@@ -337,12 +335,11 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
337
335
|
});
|
|
338
336
|
},
|
|
339
337
|
/**
|
|
340
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
338
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
341
339
|
* @summary Retrieve the claim status
|
|
342
340
|
* @param {number} id
|
|
343
341
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
344
342
|
* @param {*} [options] Override http request option.
|
|
345
|
-
* @deprecated
|
|
346
343
|
* @throws {RequiredError}
|
|
347
344
|
*/
|
|
348
345
|
getClaimStatus1: function (id, authorization, options) {
|
|
@@ -354,7 +351,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
354
351
|
case 0:
|
|
355
352
|
// verify required parameter 'id' is not null or undefined
|
|
356
353
|
(0, common_1.assertParamExists)('getClaimStatus1', 'id', id);
|
|
357
|
-
localVarPath = "/v1/claim-statuses/{id}"
|
|
354
|
+
localVarPath = "/claimservice/v1/claim-statuses/{id}"
|
|
358
355
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
359
356
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
360
357
|
if (configuration) {
|
|
@@ -399,14 +396,14 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
399
396
|
* @param {*} [options] Override http request option.
|
|
400
397
|
* @throws {RequiredError}
|
|
401
398
|
*/
|
|
402
|
-
|
|
399
|
+
listClaimStatuses0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
403
400
|
if (options === void 0) { options = {}; }
|
|
404
401
|
return __awaiter(_this, void 0, void 0, function () {
|
|
405
402
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
406
403
|
return __generator(this, function (_a) {
|
|
407
404
|
switch (_a.label) {
|
|
408
405
|
case 0:
|
|
409
|
-
localVarPath = "/
|
|
406
|
+
localVarPath = "/v1/claim-statuses";
|
|
410
407
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
411
408
|
if (configuration) {
|
|
412
409
|
baseOptions = configuration.baseOptions;
|
|
@@ -458,7 +455,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
458
455
|
});
|
|
459
456
|
},
|
|
460
457
|
/**
|
|
461
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
458
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
462
459
|
* @summary List claim statuses
|
|
463
460
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
464
461
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -469,7 +466,6 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
469
466
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
470
467
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, name, productSlug</i>
|
|
471
468
|
* @param {*} [options] Override http request option.
|
|
472
|
-
* @deprecated
|
|
473
469
|
* @throws {RequiredError}
|
|
474
470
|
*/
|
|
475
471
|
listClaimStatuses1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -479,7 +475,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
479
475
|
return __generator(this, function (_a) {
|
|
480
476
|
switch (_a.label) {
|
|
481
477
|
case 0:
|
|
482
|
-
localVarPath = "/v1/claim-statuses";
|
|
478
|
+
localVarPath = "/claimservice/v1/claim-statuses";
|
|
483
479
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
484
480
|
if (configuration) {
|
|
485
481
|
baseOptions = configuration.baseOptions;
|
|
@@ -539,7 +535,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
539
535
|
* @param {*} [options] Override http request option.
|
|
540
536
|
* @throws {RequiredError}
|
|
541
537
|
*/
|
|
542
|
-
|
|
538
|
+
patchClaimStatus0: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
543
539
|
if (options === void 0) { options = {}; }
|
|
544
540
|
return __awaiter(_this, void 0, void 0, function () {
|
|
545
541
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -547,10 +543,10 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
547
543
|
switch (_a.label) {
|
|
548
544
|
case 0:
|
|
549
545
|
// verify required parameter 'id' is not null or undefined
|
|
550
|
-
(0, common_1.assertParamExists)('
|
|
546
|
+
(0, common_1.assertParamExists)('patchClaimStatus0', 'id', id);
|
|
551
547
|
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
552
|
-
(0, common_1.assertParamExists)('
|
|
553
|
-
localVarPath = "/
|
|
548
|
+
(0, common_1.assertParamExists)('patchClaimStatus0', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto);
|
|
549
|
+
localVarPath = "/v1/claim-statuses/{id}"
|
|
554
550
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
555
551
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
556
552
|
if (configuration) {
|
|
@@ -584,13 +580,12 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
584
580
|
});
|
|
585
581
|
},
|
|
586
582
|
/**
|
|
587
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
583
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
588
584
|
* @summary Patch claim status
|
|
589
585
|
* @param {number} id
|
|
590
586
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
591
587
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
592
588
|
* @param {*} [options] Override http request option.
|
|
593
|
-
* @deprecated
|
|
594
589
|
* @throws {RequiredError}
|
|
595
590
|
*/
|
|
596
591
|
patchClaimStatus1: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
@@ -604,7 +599,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
604
599
|
(0, common_1.assertParamExists)('patchClaimStatus1', 'id', id);
|
|
605
600
|
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
606
601
|
(0, common_1.assertParamExists)('patchClaimStatus1', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto);
|
|
607
|
-
localVarPath = "/v1/claim-statuses/{id}"
|
|
602
|
+
localVarPath = "/claimservice/v1/claim-statuses/{id}"
|
|
608
603
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
609
604
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
610
605
|
if (configuration) {
|
|
@@ -646,7 +641,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
646
641
|
* @param {*} [options] Override http request option.
|
|
647
642
|
* @throws {RequiredError}
|
|
648
643
|
*/
|
|
649
|
-
|
|
644
|
+
updateClaimStatus0: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
650
645
|
if (options === void 0) { options = {}; }
|
|
651
646
|
return __awaiter(_this, void 0, void 0, function () {
|
|
652
647
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -654,10 +649,10 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
654
649
|
switch (_a.label) {
|
|
655
650
|
case 0:
|
|
656
651
|
// verify required parameter 'id' is not null or undefined
|
|
657
|
-
(0, common_1.assertParamExists)('
|
|
652
|
+
(0, common_1.assertParamExists)('updateClaimStatus0', 'id', id);
|
|
658
653
|
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
659
|
-
(0, common_1.assertParamExists)('
|
|
660
|
-
localVarPath = "/
|
|
654
|
+
(0, common_1.assertParamExists)('updateClaimStatus0', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto);
|
|
655
|
+
localVarPath = "/v1/claim-statuses/{id}"
|
|
661
656
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
662
657
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
663
658
|
if (configuration) {
|
|
@@ -691,13 +686,12 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
691
686
|
});
|
|
692
687
|
},
|
|
693
688
|
/**
|
|
694
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
689
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
695
690
|
* @summary Update the claim status
|
|
696
691
|
* @param {number} id
|
|
697
692
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
698
693
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
699
694
|
* @param {*} [options] Override http request option.
|
|
700
|
-
* @deprecated
|
|
701
695
|
* @throws {RequiredError}
|
|
702
696
|
*/
|
|
703
697
|
updateClaimStatus1: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
@@ -711,7 +705,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
711
705
|
(0, common_1.assertParamExists)('updateClaimStatus1', 'id', id);
|
|
712
706
|
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
713
707
|
(0, common_1.assertParamExists)('updateClaimStatus1', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto);
|
|
714
|
-
localVarPath = "/v1/claim-statuses/{id}"
|
|
708
|
+
localVarPath = "/claimservice/v1/claim-statuses/{id}"
|
|
715
709
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
716
710
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
717
711
|
if (configuration) {
|
|
@@ -762,12 +756,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
762
756
|
* @param {*} [options] Override http request option.
|
|
763
757
|
* @throws {RequiredError}
|
|
764
758
|
*/
|
|
765
|
-
|
|
759
|
+
createClaimStatus0: function (createClaimStatusRequestDto, authorization, options) {
|
|
766
760
|
return __awaiter(this, void 0, void 0, function () {
|
|
767
761
|
var localVarAxiosArgs;
|
|
768
762
|
return __generator(this, function (_a) {
|
|
769
763
|
switch (_a.label) {
|
|
770
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
764
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createClaimStatus0(createClaimStatusRequestDto, authorization, options)];
|
|
771
765
|
case 1:
|
|
772
766
|
localVarAxiosArgs = _a.sent();
|
|
773
767
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -776,12 +770,11 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
776
770
|
});
|
|
777
771
|
},
|
|
778
772
|
/**
|
|
779
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
773
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
780
774
|
* @summary Create the claim status
|
|
781
775
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
782
776
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
783
777
|
* @param {*} [options] Override http request option.
|
|
784
|
-
* @deprecated
|
|
785
778
|
* @throws {RequiredError}
|
|
786
779
|
*/
|
|
787
780
|
createClaimStatus1: function (createClaimStatusRequestDto, authorization, options) {
|
|
@@ -805,12 +798,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
805
798
|
* @param {*} [options] Override http request option.
|
|
806
799
|
* @throws {RequiredError}
|
|
807
800
|
*/
|
|
808
|
-
|
|
801
|
+
deleteClaimStatus0: function (id, authorization, options) {
|
|
809
802
|
return __awaiter(this, void 0, void 0, function () {
|
|
810
803
|
var localVarAxiosArgs;
|
|
811
804
|
return __generator(this, function (_a) {
|
|
812
805
|
switch (_a.label) {
|
|
813
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
806
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteClaimStatus0(id, authorization, options)];
|
|
814
807
|
case 1:
|
|
815
808
|
localVarAxiosArgs = _a.sent();
|
|
816
809
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -819,12 +812,11 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
819
812
|
});
|
|
820
813
|
},
|
|
821
814
|
/**
|
|
822
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
815
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
823
816
|
* @summary Delete the claim status
|
|
824
817
|
* @param {number} id
|
|
825
818
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
826
819
|
* @param {*} [options] Override http request option.
|
|
827
|
-
* @deprecated
|
|
828
820
|
* @throws {RequiredError}
|
|
829
821
|
*/
|
|
830
822
|
deleteClaimStatus1: function (id, authorization, options) {
|
|
@@ -848,12 +840,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
848
840
|
* @param {*} [options] Override http request option.
|
|
849
841
|
* @throws {RequiredError}
|
|
850
842
|
*/
|
|
851
|
-
|
|
843
|
+
getClaimStatus0: function (id, authorization, options) {
|
|
852
844
|
return __awaiter(this, void 0, void 0, function () {
|
|
853
845
|
var localVarAxiosArgs;
|
|
854
846
|
return __generator(this, function (_a) {
|
|
855
847
|
switch (_a.label) {
|
|
856
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
848
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimStatus0(id, authorization, options)];
|
|
857
849
|
case 1:
|
|
858
850
|
localVarAxiosArgs = _a.sent();
|
|
859
851
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -862,12 +854,11 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
862
854
|
});
|
|
863
855
|
},
|
|
864
856
|
/**
|
|
865
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
857
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
866
858
|
* @summary Retrieve the claim status
|
|
867
859
|
* @param {number} id
|
|
868
860
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
869
861
|
* @param {*} [options] Override http request option.
|
|
870
|
-
* @deprecated
|
|
871
862
|
* @throws {RequiredError}
|
|
872
863
|
*/
|
|
873
864
|
getClaimStatus1: function (id, authorization, options) {
|
|
@@ -897,12 +888,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
897
888
|
* @param {*} [options] Override http request option.
|
|
898
889
|
* @throws {RequiredError}
|
|
899
890
|
*/
|
|
900
|
-
|
|
891
|
+
listClaimStatuses0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
901
892
|
return __awaiter(this, void 0, void 0, function () {
|
|
902
893
|
var localVarAxiosArgs;
|
|
903
894
|
return __generator(this, function (_a) {
|
|
904
895
|
switch (_a.label) {
|
|
905
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
896
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimStatuses0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
906
897
|
case 1:
|
|
907
898
|
localVarAxiosArgs = _a.sent();
|
|
908
899
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -911,7 +902,7 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
911
902
|
});
|
|
912
903
|
},
|
|
913
904
|
/**
|
|
914
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
905
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
915
906
|
* @summary List claim statuses
|
|
916
907
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
917
908
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -922,7 +913,6 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
922
913
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
923
914
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, name, productSlug</i>
|
|
924
915
|
* @param {*} [options] Override http request option.
|
|
925
|
-
* @deprecated
|
|
926
916
|
* @throws {RequiredError}
|
|
927
917
|
*/
|
|
928
918
|
listClaimStatuses1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -947,12 +937,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
947
937
|
* @param {*} [options] Override http request option.
|
|
948
938
|
* @throws {RequiredError}
|
|
949
939
|
*/
|
|
950
|
-
|
|
940
|
+
patchClaimStatus0: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
951
941
|
return __awaiter(this, void 0, void 0, function () {
|
|
952
942
|
var localVarAxiosArgs;
|
|
953
943
|
return __generator(this, function (_a) {
|
|
954
944
|
switch (_a.label) {
|
|
955
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
945
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.patchClaimStatus0(id, patchClaimStatusRequestDto, authorization, options)];
|
|
956
946
|
case 1:
|
|
957
947
|
localVarAxiosArgs = _a.sent();
|
|
958
948
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -961,13 +951,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
961
951
|
});
|
|
962
952
|
},
|
|
963
953
|
/**
|
|
964
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
954
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
965
955
|
* @summary Patch claim status
|
|
966
956
|
* @param {number} id
|
|
967
957
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
968
958
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
969
959
|
* @param {*} [options] Override http request option.
|
|
970
|
-
* @deprecated
|
|
971
960
|
* @throws {RequiredError}
|
|
972
961
|
*/
|
|
973
962
|
patchClaimStatus1: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
@@ -992,12 +981,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
992
981
|
* @param {*} [options] Override http request option.
|
|
993
982
|
* @throws {RequiredError}
|
|
994
983
|
*/
|
|
995
|
-
|
|
984
|
+
updateClaimStatus0: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
996
985
|
return __awaiter(this, void 0, void 0, function () {
|
|
997
986
|
var localVarAxiosArgs;
|
|
998
987
|
return __generator(this, function (_a) {
|
|
999
988
|
switch (_a.label) {
|
|
1000
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
989
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateClaimStatus0(id, updateClaimStatusRequestDto, authorization, options)];
|
|
1001
990
|
case 1:
|
|
1002
991
|
localVarAxiosArgs = _a.sent();
|
|
1003
992
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1006,13 +995,12 @@ var ClaimStatusesApiFp = function (configuration) {
|
|
|
1006
995
|
});
|
|
1007
996
|
},
|
|
1008
997
|
/**
|
|
1009
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
998
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1010
999
|
* @summary Update the claim status
|
|
1011
1000
|
* @param {number} id
|
|
1012
1001
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
1013
1002
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1014
1003
|
* @param {*} [options] Override http request option.
|
|
1015
|
-
* @deprecated
|
|
1016
1004
|
* @throws {RequiredError}
|
|
1017
1005
|
*/
|
|
1018
1006
|
updateClaimStatus1: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
@@ -1046,16 +1034,15 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1046
1034
|
* @param {*} [options] Override http request option.
|
|
1047
1035
|
* @throws {RequiredError}
|
|
1048
1036
|
*/
|
|
1049
|
-
|
|
1050
|
-
return localVarFp.
|
|
1037
|
+
createClaimStatus0: function (createClaimStatusRequestDto, authorization, options) {
|
|
1038
|
+
return localVarFp.createClaimStatus0(createClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1051
1039
|
},
|
|
1052
1040
|
/**
|
|
1053
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1041
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1054
1042
|
* @summary Create the claim status
|
|
1055
1043
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
1056
1044
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1057
1045
|
* @param {*} [options] Override http request option.
|
|
1058
|
-
* @deprecated
|
|
1059
1046
|
* @throws {RequiredError}
|
|
1060
1047
|
*/
|
|
1061
1048
|
createClaimStatus1: function (createClaimStatusRequestDto, authorization, options) {
|
|
@@ -1069,16 +1056,15 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1069
1056
|
* @param {*} [options] Override http request option.
|
|
1070
1057
|
* @throws {RequiredError}
|
|
1071
1058
|
*/
|
|
1072
|
-
|
|
1073
|
-
return localVarFp.
|
|
1059
|
+
deleteClaimStatus0: function (id, authorization, options) {
|
|
1060
|
+
return localVarFp.deleteClaimStatus0(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1074
1061
|
},
|
|
1075
1062
|
/**
|
|
1076
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1063
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1077
1064
|
* @summary Delete the claim status
|
|
1078
1065
|
* @param {number} id
|
|
1079
1066
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1080
1067
|
* @param {*} [options] Override http request option.
|
|
1081
|
-
* @deprecated
|
|
1082
1068
|
* @throws {RequiredError}
|
|
1083
1069
|
*/
|
|
1084
1070
|
deleteClaimStatus1: function (id, authorization, options) {
|
|
@@ -1092,16 +1078,15 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1092
1078
|
* @param {*} [options] Override http request option.
|
|
1093
1079
|
* @throws {RequiredError}
|
|
1094
1080
|
*/
|
|
1095
|
-
|
|
1096
|
-
return localVarFp.
|
|
1081
|
+
getClaimStatus0: function (id, authorization, options) {
|
|
1082
|
+
return localVarFp.getClaimStatus0(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1097
1083
|
},
|
|
1098
1084
|
/**
|
|
1099
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1085
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1100
1086
|
* @summary Retrieve the claim status
|
|
1101
1087
|
* @param {number} id
|
|
1102
1088
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1103
1089
|
* @param {*} [options] Override http request option.
|
|
1104
|
-
* @deprecated
|
|
1105
1090
|
* @throws {RequiredError}
|
|
1106
1091
|
*/
|
|
1107
1092
|
getClaimStatus1: function (id, authorization, options) {
|
|
@@ -1121,11 +1106,11 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1121
1106
|
* @param {*} [options] Override http request option.
|
|
1122
1107
|
* @throws {RequiredError}
|
|
1123
1108
|
*/
|
|
1124
|
-
|
|
1125
|
-
return localVarFp.
|
|
1109
|
+
listClaimStatuses0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
1110
|
+
return localVarFp.listClaimStatuses0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
1126
1111
|
},
|
|
1127
1112
|
/**
|
|
1128
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1113
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1129
1114
|
* @summary List claim statuses
|
|
1130
1115
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1131
1116
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -1136,7 +1121,6 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1136
1121
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
1137
1122
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, name, productSlug</i>
|
|
1138
1123
|
* @param {*} [options] Override http request option.
|
|
1139
|
-
* @deprecated
|
|
1140
1124
|
* @throws {RequiredError}
|
|
1141
1125
|
*/
|
|
1142
1126
|
listClaimStatuses1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -1151,17 +1135,16 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1151
1135
|
* @param {*} [options] Override http request option.
|
|
1152
1136
|
* @throws {RequiredError}
|
|
1153
1137
|
*/
|
|
1154
|
-
|
|
1155
|
-
return localVarFp.
|
|
1138
|
+
patchClaimStatus0: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
1139
|
+
return localVarFp.patchClaimStatus0(id, patchClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1156
1140
|
},
|
|
1157
1141
|
/**
|
|
1158
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1142
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1159
1143
|
* @summary Patch claim status
|
|
1160
1144
|
* @param {number} id
|
|
1161
1145
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
1162
1146
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1163
1147
|
* @param {*} [options] Override http request option.
|
|
1164
|
-
* @deprecated
|
|
1165
1148
|
* @throws {RequiredError}
|
|
1166
1149
|
*/
|
|
1167
1150
|
patchClaimStatus1: function (id, patchClaimStatusRequestDto, authorization, options) {
|
|
@@ -1176,17 +1159,16 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
1176
1159
|
* @param {*} [options] Override http request option.
|
|
1177
1160
|
* @throws {RequiredError}
|
|
1178
1161
|
*/
|
|
1179
|
-
|
|
1180
|
-
return localVarFp.
|
|
1162
|
+
updateClaimStatus0: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
1163
|
+
return localVarFp.updateClaimStatus0(id, updateClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1181
1164
|
},
|
|
1182
1165
|
/**
|
|
1183
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1166
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1184
1167
|
* @summary Update the claim status
|
|
1185
1168
|
* @param {number} id
|
|
1186
1169
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
1187
1170
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1188
1171
|
* @param {*} [options] Override http request option.
|
|
1189
|
-
* @deprecated
|
|
1190
1172
|
* @throws {RequiredError}
|
|
1191
1173
|
*/
|
|
1192
1174
|
updateClaimStatus1: function (id, updateClaimStatusRequestDto, authorization, options) {
|
|
@@ -1209,21 +1191,20 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1209
1191
|
/**
|
|
1210
1192
|
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1211
1193
|
* @summary Create the claim status
|
|
1212
|
-
* @param {
|
|
1194
|
+
* @param {ClaimStatusesApiCreateClaimStatus0Request} requestParameters Request parameters.
|
|
1213
1195
|
* @param {*} [options] Override http request option.
|
|
1214
1196
|
* @throws {RequiredError}
|
|
1215
1197
|
* @memberof ClaimStatusesApi
|
|
1216
1198
|
*/
|
|
1217
|
-
ClaimStatusesApi.prototype.
|
|
1199
|
+
ClaimStatusesApi.prototype.createClaimStatus0 = function (requestParameters, options) {
|
|
1218
1200
|
var _this = this;
|
|
1219
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1201
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).createClaimStatus0(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1220
1202
|
};
|
|
1221
1203
|
/**
|
|
1222
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1204
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1223
1205
|
* @summary Create the claim status
|
|
1224
1206
|
* @param {ClaimStatusesApiCreateClaimStatus1Request} requestParameters Request parameters.
|
|
1225
1207
|
* @param {*} [options] Override http request option.
|
|
1226
|
-
* @deprecated
|
|
1227
1208
|
* @throws {RequiredError}
|
|
1228
1209
|
* @memberof ClaimStatusesApi
|
|
1229
1210
|
*/
|
|
@@ -1234,21 +1215,20 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1234
1215
|
/**
|
|
1235
1216
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1236
1217
|
* @summary Delete the claim status
|
|
1237
|
-
* @param {
|
|
1218
|
+
* @param {ClaimStatusesApiDeleteClaimStatus0Request} requestParameters Request parameters.
|
|
1238
1219
|
* @param {*} [options] Override http request option.
|
|
1239
1220
|
* @throws {RequiredError}
|
|
1240
1221
|
* @memberof ClaimStatusesApi
|
|
1241
1222
|
*/
|
|
1242
|
-
ClaimStatusesApi.prototype.
|
|
1223
|
+
ClaimStatusesApi.prototype.deleteClaimStatus0 = function (requestParameters, options) {
|
|
1243
1224
|
var _this = this;
|
|
1244
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1225
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).deleteClaimStatus0(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1245
1226
|
};
|
|
1246
1227
|
/**
|
|
1247
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1228
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1248
1229
|
* @summary Delete the claim status
|
|
1249
1230
|
* @param {ClaimStatusesApiDeleteClaimStatus1Request} requestParameters Request parameters.
|
|
1250
1231
|
* @param {*} [options] Override http request option.
|
|
1251
|
-
* @deprecated
|
|
1252
1232
|
* @throws {RequiredError}
|
|
1253
1233
|
* @memberof ClaimStatusesApi
|
|
1254
1234
|
*/
|
|
@@ -1259,21 +1239,20 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1259
1239
|
/**
|
|
1260
1240
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1261
1241
|
* @summary Retrieve the claim status
|
|
1262
|
-
* @param {
|
|
1242
|
+
* @param {ClaimStatusesApiGetClaimStatus0Request} requestParameters Request parameters.
|
|
1263
1243
|
* @param {*} [options] Override http request option.
|
|
1264
1244
|
* @throws {RequiredError}
|
|
1265
1245
|
* @memberof ClaimStatusesApi
|
|
1266
1246
|
*/
|
|
1267
|
-
ClaimStatusesApi.prototype.
|
|
1247
|
+
ClaimStatusesApi.prototype.getClaimStatus0 = function (requestParameters, options) {
|
|
1268
1248
|
var _this = this;
|
|
1269
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1249
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).getClaimStatus0(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1270
1250
|
};
|
|
1271
1251
|
/**
|
|
1272
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1252
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1273
1253
|
* @summary Retrieve the claim status
|
|
1274
1254
|
* @param {ClaimStatusesApiGetClaimStatus1Request} requestParameters Request parameters.
|
|
1275
1255
|
* @param {*} [options] Override http request option.
|
|
1276
|
-
* @deprecated
|
|
1277
1256
|
* @throws {RequiredError}
|
|
1278
1257
|
* @memberof ClaimStatusesApi
|
|
1279
1258
|
*/
|
|
@@ -1284,22 +1263,21 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1284
1263
|
/**
|
|
1285
1264
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1286
1265
|
* @summary List claim statuses
|
|
1287
|
-
* @param {
|
|
1266
|
+
* @param {ClaimStatusesApiListClaimStatuses0Request} requestParameters Request parameters.
|
|
1288
1267
|
* @param {*} [options] Override http request option.
|
|
1289
1268
|
* @throws {RequiredError}
|
|
1290
1269
|
* @memberof ClaimStatusesApi
|
|
1291
1270
|
*/
|
|
1292
|
-
ClaimStatusesApi.prototype.
|
|
1271
|
+
ClaimStatusesApi.prototype.listClaimStatuses0 = function (requestParameters, options) {
|
|
1293
1272
|
var _this = this;
|
|
1294
1273
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1295
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1274
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).listClaimStatuses0(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1296
1275
|
};
|
|
1297
1276
|
/**
|
|
1298
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1277
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1299
1278
|
* @summary List claim statuses
|
|
1300
1279
|
* @param {ClaimStatusesApiListClaimStatuses1Request} requestParameters Request parameters.
|
|
1301
1280
|
* @param {*} [options] Override http request option.
|
|
1302
|
-
* @deprecated
|
|
1303
1281
|
* @throws {RequiredError}
|
|
1304
1282
|
* @memberof ClaimStatusesApi
|
|
1305
1283
|
*/
|
|
@@ -1311,21 +1289,20 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1311
1289
|
/**
|
|
1312
1290
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1313
1291
|
* @summary Patch claim status
|
|
1314
|
-
* @param {
|
|
1292
|
+
* @param {ClaimStatusesApiPatchClaimStatus0Request} requestParameters Request parameters.
|
|
1315
1293
|
* @param {*} [options] Override http request option.
|
|
1316
1294
|
* @throws {RequiredError}
|
|
1317
1295
|
* @memberof ClaimStatusesApi
|
|
1318
1296
|
*/
|
|
1319
|
-
ClaimStatusesApi.prototype.
|
|
1297
|
+
ClaimStatusesApi.prototype.patchClaimStatus0 = function (requestParameters, options) {
|
|
1320
1298
|
var _this = this;
|
|
1321
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1299
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).patchClaimStatus0(requestParameters.id, requestParameters.patchClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1322
1300
|
};
|
|
1323
1301
|
/**
|
|
1324
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1302
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1325
1303
|
* @summary Patch claim status
|
|
1326
1304
|
* @param {ClaimStatusesApiPatchClaimStatus1Request} requestParameters Request parameters.
|
|
1327
1305
|
* @param {*} [options] Override http request option.
|
|
1328
|
-
* @deprecated
|
|
1329
1306
|
* @throws {RequiredError}
|
|
1330
1307
|
* @memberof ClaimStatusesApi
|
|
1331
1308
|
*/
|
|
@@ -1336,21 +1313,20 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
|
|
|
1336
1313
|
/**
|
|
1337
1314
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1338
1315
|
* @summary Update the claim status
|
|
1339
|
-
* @param {
|
|
1316
|
+
* @param {ClaimStatusesApiUpdateClaimStatus0Request} requestParameters Request parameters.
|
|
1340
1317
|
* @param {*} [options] Override http request option.
|
|
1341
1318
|
* @throws {RequiredError}
|
|
1342
1319
|
* @memberof ClaimStatusesApi
|
|
1343
1320
|
*/
|
|
1344
|
-
ClaimStatusesApi.prototype.
|
|
1321
|
+
ClaimStatusesApi.prototype.updateClaimStatus0 = function (requestParameters, options) {
|
|
1345
1322
|
var _this = this;
|
|
1346
|
-
return (0, exports.ClaimStatusesApiFp)(this.configuration).
|
|
1323
|
+
return (0, exports.ClaimStatusesApiFp)(this.configuration).updateClaimStatus0(requestParameters.id, requestParameters.updateClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1347
1324
|
};
|
|
1348
1325
|
/**
|
|
1349
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1326
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1350
1327
|
* @summary Update the claim status
|
|
1351
1328
|
* @param {ClaimStatusesApiUpdateClaimStatus1Request} requestParameters Request parameters.
|
|
1352
1329
|
* @param {*} [options] Override http request option.
|
|
1353
|
-
* @deprecated
|
|
1354
1330
|
* @throws {RequiredError}
|
|
1355
1331
|
* @memberof ClaimStatusesApi
|
|
1356
1332
|
*/
|