@emilgroup/claim-sdk-node 1.40.1-beta.4 → 1.41.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
|
@@ -104,7 +104,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
104
104
|
* @param {*} [options] Override http request option.
|
|
105
105
|
* @throws {RequiredError}
|
|
106
106
|
*/
|
|
107
|
-
|
|
107
|
+
createClaimPartnerRole0: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
108
108
|
if (options === void 0) { options = {}; }
|
|
109
109
|
return __awaiter(_this, void 0, void 0, function () {
|
|
110
110
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -112,8 +112,8 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
112
112
|
switch (_a.label) {
|
|
113
113
|
case 0:
|
|
114
114
|
// verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
|
|
115
|
-
(0, common_1.assertParamExists)('
|
|
116
|
-
localVarPath = "/
|
|
115
|
+
(0, common_1.assertParamExists)('createClaimPartnerRole0', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto);
|
|
116
|
+
localVarPath = "/v1/claim-partner-roles";
|
|
117
117
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
118
118
|
if (configuration) {
|
|
119
119
|
baseOptions = configuration.baseOptions;
|
|
@@ -146,12 +146,11 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
149
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
150
150
|
* @summary Create the claim partner role
|
|
151
151
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
153
153
|
* @param {*} [options] Override http request option.
|
|
154
|
-
* @deprecated
|
|
155
154
|
* @throws {RequiredError}
|
|
156
155
|
*/
|
|
157
156
|
createClaimPartnerRole1: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -163,7 +162,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
163
162
|
case 0:
|
|
164
163
|
// verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
|
|
165
164
|
(0, common_1.assertParamExists)('createClaimPartnerRole1', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto);
|
|
166
|
-
localVarPath = "/v1/claim-partner-roles";
|
|
165
|
+
localVarPath = "/claimservice/v1/claim-partner-roles";
|
|
167
166
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
168
167
|
if (configuration) {
|
|
169
168
|
baseOptions = configuration.baseOptions;
|
|
@@ -203,7 +202,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
203
202
|
* @param {*} [options] Override http request option.
|
|
204
203
|
* @throws {RequiredError}
|
|
205
204
|
*/
|
|
206
|
-
|
|
205
|
+
deleteClaimPartnerRole0: function (code, authorization, options) {
|
|
207
206
|
if (options === void 0) { options = {}; }
|
|
208
207
|
return __awaiter(_this, void 0, void 0, function () {
|
|
209
208
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -211,8 +210,8 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
211
210
|
switch (_a.label) {
|
|
212
211
|
case 0:
|
|
213
212
|
// verify required parameter 'code' is not null or undefined
|
|
214
|
-
(0, common_1.assertParamExists)('
|
|
215
|
-
localVarPath = "/
|
|
213
|
+
(0, common_1.assertParamExists)('deleteClaimPartnerRole0', 'code', code);
|
|
214
|
+
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
216
215
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
217
216
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
218
217
|
if (configuration) {
|
|
@@ -244,12 +243,11 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
244
243
|
});
|
|
245
244
|
},
|
|
246
245
|
/**
|
|
247
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
246
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
248
247
|
* @summary Delete the claim partner role
|
|
249
248
|
* @param {string} code Unique identifier for the object.
|
|
250
249
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
251
250
|
* @param {*} [options] Override http request option.
|
|
252
|
-
* @deprecated
|
|
253
251
|
* @throws {RequiredError}
|
|
254
252
|
*/
|
|
255
253
|
deleteClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -261,7 +259,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
261
259
|
case 0:
|
|
262
260
|
// verify required parameter 'code' is not null or undefined
|
|
263
261
|
(0, common_1.assertParamExists)('deleteClaimPartnerRole1', 'code', code);
|
|
264
|
-
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
262
|
+
localVarPath = "/claimservice/v1/claim-partner-roles/{code}"
|
|
265
263
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
266
264
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
267
265
|
if (configuration) {
|
|
@@ -300,7 +298,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
300
298
|
* @param {*} [options] Override http request option.
|
|
301
299
|
* @throws {RequiredError}
|
|
302
300
|
*/
|
|
303
|
-
|
|
301
|
+
getClaimPartnerRole0: function (code, authorization, options) {
|
|
304
302
|
if (options === void 0) { options = {}; }
|
|
305
303
|
return __awaiter(_this, void 0, void 0, function () {
|
|
306
304
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -308,8 +306,8 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
308
306
|
switch (_a.label) {
|
|
309
307
|
case 0:
|
|
310
308
|
// verify required parameter 'code' is not null or undefined
|
|
311
|
-
(0, common_1.assertParamExists)('
|
|
312
|
-
localVarPath = "/
|
|
309
|
+
(0, common_1.assertParamExists)('getClaimPartnerRole0', 'code', code);
|
|
310
|
+
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
313
311
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
314
312
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
315
313
|
if (configuration) {
|
|
@@ -341,12 +339,11 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
341
339
|
});
|
|
342
340
|
},
|
|
343
341
|
/**
|
|
344
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
342
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
345
343
|
* @summary Retrieve the claim partner role
|
|
346
344
|
* @param {string} code Unique identifier for the object.
|
|
347
345
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
348
346
|
* @param {*} [options] Override http request option.
|
|
349
|
-
* @deprecated
|
|
350
347
|
* @throws {RequiredError}
|
|
351
348
|
*/
|
|
352
349
|
getClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -358,7 +355,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
358
355
|
case 0:
|
|
359
356
|
// verify required parameter 'code' is not null or undefined
|
|
360
357
|
(0, common_1.assertParamExists)('getClaimPartnerRole1', 'code', code);
|
|
361
|
-
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
358
|
+
localVarPath = "/claimservice/v1/claim-partner-roles/{code}"
|
|
362
359
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
363
360
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
364
361
|
if (configuration) {
|
|
@@ -403,14 +400,14 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
403
400
|
* @param {*} [options] Override http request option.
|
|
404
401
|
* @throws {RequiredError}
|
|
405
402
|
*/
|
|
406
|
-
|
|
403
|
+
listClaimPartnerRole0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
407
404
|
if (options === void 0) { options = {}; }
|
|
408
405
|
return __awaiter(_this, void 0, void 0, function () {
|
|
409
406
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
410
407
|
return __generator(this, function (_a) {
|
|
411
408
|
switch (_a.label) {
|
|
412
409
|
case 0:
|
|
413
|
-
localVarPath = "/
|
|
410
|
+
localVarPath = "/v1/claim-partner-roles";
|
|
414
411
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
415
412
|
if (configuration) {
|
|
416
413
|
baseOptions = configuration.baseOptions;
|
|
@@ -462,7 +459,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
462
459
|
});
|
|
463
460
|
},
|
|
464
461
|
/**
|
|
465
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
462
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
466
463
|
* @summary List claim partner roles
|
|
467
464
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
468
465
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -473,7 +470,6 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
473
470
|
* @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/>
|
|
474
471
|
* @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: name, productSlug</i>
|
|
475
472
|
* @param {*} [options] Override http request option.
|
|
476
|
-
* @deprecated
|
|
477
473
|
* @throws {RequiredError}
|
|
478
474
|
*/
|
|
479
475
|
listClaimPartnerRole1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -483,7 +479,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
483
479
|
return __generator(this, function (_a) {
|
|
484
480
|
switch (_a.label) {
|
|
485
481
|
case 0:
|
|
486
|
-
localVarPath = "/v1/claim-partner-roles";
|
|
482
|
+
localVarPath = "/claimservice/v1/claim-partner-roles";
|
|
487
483
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
488
484
|
if (configuration) {
|
|
489
485
|
baseOptions = configuration.baseOptions;
|
|
@@ -543,7 +539,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
543
539
|
* @param {*} [options] Override http request option.
|
|
544
540
|
* @throws {RequiredError}
|
|
545
541
|
*/
|
|
546
|
-
|
|
542
|
+
updateClaimPartnerRole0: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
547
543
|
if (options === void 0) { options = {}; }
|
|
548
544
|
return __awaiter(_this, void 0, void 0, function () {
|
|
549
545
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -551,10 +547,10 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
551
547
|
switch (_a.label) {
|
|
552
548
|
case 0:
|
|
553
549
|
// verify required parameter 'code' is not null or undefined
|
|
554
|
-
(0, common_1.assertParamExists)('
|
|
550
|
+
(0, common_1.assertParamExists)('updateClaimPartnerRole0', 'code', code);
|
|
555
551
|
// verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
|
|
556
|
-
(0, common_1.assertParamExists)('
|
|
557
|
-
localVarPath = "/
|
|
552
|
+
(0, common_1.assertParamExists)('updateClaimPartnerRole0', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto);
|
|
553
|
+
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
558
554
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
559
555
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
560
556
|
if (configuration) {
|
|
@@ -588,13 +584,12 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
588
584
|
});
|
|
589
585
|
},
|
|
590
586
|
/**
|
|
591
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
587
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
592
588
|
* @summary Update the claim partner role
|
|
593
589
|
* @param {string} code Unique identifier for the object.
|
|
594
590
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
595
591
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
596
592
|
* @param {*} [options] Override http request option.
|
|
597
|
-
* @deprecated
|
|
598
593
|
* @throws {RequiredError}
|
|
599
594
|
*/
|
|
600
595
|
updateClaimPartnerRole1: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -608,7 +603,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
608
603
|
(0, common_1.assertParamExists)('updateClaimPartnerRole1', 'code', code);
|
|
609
604
|
// verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
|
|
610
605
|
(0, common_1.assertParamExists)('updateClaimPartnerRole1', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto);
|
|
611
|
-
localVarPath = "/v1/claim-partner-roles/{code}"
|
|
606
|
+
localVarPath = "/claimservice/v1/claim-partner-roles/{code}"
|
|
612
607
|
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
613
608
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
614
609
|
if (configuration) {
|
|
@@ -659,12 +654,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
659
654
|
* @param {*} [options] Override http request option.
|
|
660
655
|
* @throws {RequiredError}
|
|
661
656
|
*/
|
|
662
|
-
|
|
657
|
+
createClaimPartnerRole0: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
663
658
|
return __awaiter(this, void 0, void 0, function () {
|
|
664
659
|
var localVarAxiosArgs;
|
|
665
660
|
return __generator(this, function (_a) {
|
|
666
661
|
switch (_a.label) {
|
|
667
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
662
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createClaimPartnerRole0(createClaimPartnerRoleRequestDto, authorization, options)];
|
|
668
663
|
case 1:
|
|
669
664
|
localVarAxiosArgs = _a.sent();
|
|
670
665
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -673,12 +668,11 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
673
668
|
});
|
|
674
669
|
},
|
|
675
670
|
/**
|
|
676
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
671
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
677
672
|
* @summary Create the claim partner role
|
|
678
673
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
679
674
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
680
675
|
* @param {*} [options] Override http request option.
|
|
681
|
-
* @deprecated
|
|
682
676
|
* @throws {RequiredError}
|
|
683
677
|
*/
|
|
684
678
|
createClaimPartnerRole1: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -702,12 +696,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
702
696
|
* @param {*} [options] Override http request option.
|
|
703
697
|
* @throws {RequiredError}
|
|
704
698
|
*/
|
|
705
|
-
|
|
699
|
+
deleteClaimPartnerRole0: function (code, authorization, options) {
|
|
706
700
|
return __awaiter(this, void 0, void 0, function () {
|
|
707
701
|
var localVarAxiosArgs;
|
|
708
702
|
return __generator(this, function (_a) {
|
|
709
703
|
switch (_a.label) {
|
|
710
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
704
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteClaimPartnerRole0(code, authorization, options)];
|
|
711
705
|
case 1:
|
|
712
706
|
localVarAxiosArgs = _a.sent();
|
|
713
707
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -716,12 +710,11 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
716
710
|
});
|
|
717
711
|
},
|
|
718
712
|
/**
|
|
719
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
713
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
720
714
|
* @summary Delete the claim partner role
|
|
721
715
|
* @param {string} code Unique identifier for the object.
|
|
722
716
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
723
717
|
* @param {*} [options] Override http request option.
|
|
724
|
-
* @deprecated
|
|
725
718
|
* @throws {RequiredError}
|
|
726
719
|
*/
|
|
727
720
|
deleteClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -745,12 +738,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
745
738
|
* @param {*} [options] Override http request option.
|
|
746
739
|
* @throws {RequiredError}
|
|
747
740
|
*/
|
|
748
|
-
|
|
741
|
+
getClaimPartnerRole0: function (code, authorization, options) {
|
|
749
742
|
return __awaiter(this, void 0, void 0, function () {
|
|
750
743
|
var localVarAxiosArgs;
|
|
751
744
|
return __generator(this, function (_a) {
|
|
752
745
|
switch (_a.label) {
|
|
753
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
746
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimPartnerRole0(code, authorization, options)];
|
|
754
747
|
case 1:
|
|
755
748
|
localVarAxiosArgs = _a.sent();
|
|
756
749
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -759,12 +752,11 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
759
752
|
});
|
|
760
753
|
},
|
|
761
754
|
/**
|
|
762
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
755
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
763
756
|
* @summary Retrieve the claim partner role
|
|
764
757
|
* @param {string} code Unique identifier for the object.
|
|
765
758
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
766
759
|
* @param {*} [options] Override http request option.
|
|
767
|
-
* @deprecated
|
|
768
760
|
* @throws {RequiredError}
|
|
769
761
|
*/
|
|
770
762
|
getClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -794,12 +786,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
794
786
|
* @param {*} [options] Override http request option.
|
|
795
787
|
* @throws {RequiredError}
|
|
796
788
|
*/
|
|
797
|
-
|
|
789
|
+
listClaimPartnerRole0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
798
790
|
return __awaiter(this, void 0, void 0, function () {
|
|
799
791
|
var localVarAxiosArgs;
|
|
800
792
|
return __generator(this, function (_a) {
|
|
801
793
|
switch (_a.label) {
|
|
802
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
794
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimPartnerRole0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
803
795
|
case 1:
|
|
804
796
|
localVarAxiosArgs = _a.sent();
|
|
805
797
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -808,7 +800,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
808
800
|
});
|
|
809
801
|
},
|
|
810
802
|
/**
|
|
811
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
803
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
812
804
|
* @summary List claim partner roles
|
|
813
805
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
814
806
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -819,7 +811,6 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
819
811
|
* @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/>
|
|
820
812
|
* @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: name, productSlug</i>
|
|
821
813
|
* @param {*} [options] Override http request option.
|
|
822
|
-
* @deprecated
|
|
823
814
|
* @throws {RequiredError}
|
|
824
815
|
*/
|
|
825
816
|
listClaimPartnerRole1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -844,12 +835,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
844
835
|
* @param {*} [options] Override http request option.
|
|
845
836
|
* @throws {RequiredError}
|
|
846
837
|
*/
|
|
847
|
-
|
|
838
|
+
updateClaimPartnerRole0: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
848
839
|
return __awaiter(this, void 0, void 0, function () {
|
|
849
840
|
var localVarAxiosArgs;
|
|
850
841
|
return __generator(this, function (_a) {
|
|
851
842
|
switch (_a.label) {
|
|
852
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
843
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateClaimPartnerRole0(code, updateClaimPartnerRoleRequestDto, authorization, options)];
|
|
853
844
|
case 1:
|
|
854
845
|
localVarAxiosArgs = _a.sent();
|
|
855
846
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -858,13 +849,12 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
858
849
|
});
|
|
859
850
|
},
|
|
860
851
|
/**
|
|
861
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
852
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
862
853
|
* @summary Update the claim partner role
|
|
863
854
|
* @param {string} code Unique identifier for the object.
|
|
864
855
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
865
856
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
866
857
|
* @param {*} [options] Override http request option.
|
|
867
|
-
* @deprecated
|
|
868
858
|
* @throws {RequiredError}
|
|
869
859
|
*/
|
|
870
860
|
updateClaimPartnerRole1: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -898,16 +888,15 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
898
888
|
* @param {*} [options] Override http request option.
|
|
899
889
|
* @throws {RequiredError}
|
|
900
890
|
*/
|
|
901
|
-
|
|
902
|
-
return localVarFp.
|
|
891
|
+
createClaimPartnerRole0: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
892
|
+
return localVarFp.createClaimPartnerRole0(createClaimPartnerRoleRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
903
893
|
},
|
|
904
894
|
/**
|
|
905
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
895
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
906
896
|
* @summary Create the claim partner role
|
|
907
897
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
908
898
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
909
899
|
* @param {*} [options] Override http request option.
|
|
910
|
-
* @deprecated
|
|
911
900
|
* @throws {RequiredError}
|
|
912
901
|
*/
|
|
913
902
|
createClaimPartnerRole1: function (createClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -921,16 +910,15 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
921
910
|
* @param {*} [options] Override http request option.
|
|
922
911
|
* @throws {RequiredError}
|
|
923
912
|
*/
|
|
924
|
-
|
|
925
|
-
return localVarFp.
|
|
913
|
+
deleteClaimPartnerRole0: function (code, authorization, options) {
|
|
914
|
+
return localVarFp.deleteClaimPartnerRole0(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
926
915
|
},
|
|
927
916
|
/**
|
|
928
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
917
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
929
918
|
* @summary Delete the claim partner role
|
|
930
919
|
* @param {string} code Unique identifier for the object.
|
|
931
920
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
932
921
|
* @param {*} [options] Override http request option.
|
|
933
|
-
* @deprecated
|
|
934
922
|
* @throws {RequiredError}
|
|
935
923
|
*/
|
|
936
924
|
deleteClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -944,16 +932,15 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
944
932
|
* @param {*} [options] Override http request option.
|
|
945
933
|
* @throws {RequiredError}
|
|
946
934
|
*/
|
|
947
|
-
|
|
948
|
-
return localVarFp.
|
|
935
|
+
getClaimPartnerRole0: function (code, authorization, options) {
|
|
936
|
+
return localVarFp.getClaimPartnerRole0(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
949
937
|
},
|
|
950
938
|
/**
|
|
951
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
939
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
952
940
|
* @summary Retrieve the claim partner role
|
|
953
941
|
* @param {string} code Unique identifier for the object.
|
|
954
942
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
955
943
|
* @param {*} [options] Override http request option.
|
|
956
|
-
* @deprecated
|
|
957
944
|
* @throws {RequiredError}
|
|
958
945
|
*/
|
|
959
946
|
getClaimPartnerRole1: function (code, authorization, options) {
|
|
@@ -973,11 +960,11 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
973
960
|
* @param {*} [options] Override http request option.
|
|
974
961
|
* @throws {RequiredError}
|
|
975
962
|
*/
|
|
976
|
-
|
|
977
|
-
return localVarFp.
|
|
963
|
+
listClaimPartnerRole0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
964
|
+
return localVarFp.listClaimPartnerRole0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
978
965
|
},
|
|
979
966
|
/**
|
|
980
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
967
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
981
968
|
* @summary List claim partner roles
|
|
982
969
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
983
970
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -988,7 +975,6 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
988
975
|
* @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/>
|
|
989
976
|
* @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: name, productSlug</i>
|
|
990
977
|
* @param {*} [options] Override http request option.
|
|
991
|
-
* @deprecated
|
|
992
978
|
* @throws {RequiredError}
|
|
993
979
|
*/
|
|
994
980
|
listClaimPartnerRole1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
@@ -1003,17 +989,16 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
1003
989
|
* @param {*} [options] Override http request option.
|
|
1004
990
|
* @throws {RequiredError}
|
|
1005
991
|
*/
|
|
1006
|
-
|
|
1007
|
-
return localVarFp.
|
|
992
|
+
updateClaimPartnerRole0: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
993
|
+
return localVarFp.updateClaimPartnerRole0(code, updateClaimPartnerRoleRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
1008
994
|
},
|
|
1009
995
|
/**
|
|
1010
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
996
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
1011
997
|
* @summary Update the claim partner role
|
|
1012
998
|
* @param {string} code Unique identifier for the object.
|
|
1013
999
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
1014
1000
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1015
1001
|
* @param {*} [options] Override http request option.
|
|
1016
|
-
* @deprecated
|
|
1017
1002
|
* @throws {RequiredError}
|
|
1018
1003
|
*/
|
|
1019
1004
|
updateClaimPartnerRole1: function (code, updateClaimPartnerRoleRequestDto, authorization, options) {
|
|
@@ -1036,21 +1021,20 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
1036
1021
|
/**
|
|
1037
1022
|
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
1038
1023
|
* @summary Create the claim partner role
|
|
1039
|
-
* @param {
|
|
1024
|
+
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole0Request} requestParameters Request parameters.
|
|
1040
1025
|
* @param {*} [options] Override http request option.
|
|
1041
1026
|
* @throws {RequiredError}
|
|
1042
1027
|
* @memberof ClaimPartnerRolesApi
|
|
1043
1028
|
*/
|
|
1044
|
-
ClaimPartnerRolesApi.prototype.
|
|
1029
|
+
ClaimPartnerRolesApi.prototype.createClaimPartnerRole0 = function (requestParameters, options) {
|
|
1045
1030
|
var _this = this;
|
|
1046
|
-
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).
|
|
1031
|
+
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).createClaimPartnerRole0(requestParameters.createClaimPartnerRoleRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1047
1032
|
};
|
|
1048
1033
|
/**
|
|
1049
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
1034
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
1050
1035
|
* @summary Create the claim partner role
|
|
1051
1036
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1052
1037
|
* @param {*} [options] Override http request option.
|
|
1053
|
-
* @deprecated
|
|
1054
1038
|
* @throws {RequiredError}
|
|
1055
1039
|
* @memberof ClaimPartnerRolesApi
|
|
1056
1040
|
*/
|
|
@@ -1061,21 +1045,20 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
1061
1045
|
/**
|
|
1062
1046
|
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
1063
1047
|
* @summary Delete the claim partner role
|
|
1064
|
-
* @param {
|
|
1048
|
+
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole0Request} requestParameters Request parameters.
|
|
1065
1049
|
* @param {*} [options] Override http request option.
|
|
1066
1050
|
* @throws {RequiredError}
|
|
1067
1051
|
* @memberof ClaimPartnerRolesApi
|
|
1068
1052
|
*/
|
|
1069
|
-
ClaimPartnerRolesApi.prototype.
|
|
1053
|
+
ClaimPartnerRolesApi.prototype.deleteClaimPartnerRole0 = function (requestParameters, options) {
|
|
1070
1054
|
var _this = this;
|
|
1071
|
-
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).
|
|
1055
|
+
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).deleteClaimPartnerRole0(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1072
1056
|
};
|
|
1073
1057
|
/**
|
|
1074
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
1058
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
1075
1059
|
* @summary Delete the claim partner role
|
|
1076
1060
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1077
1061
|
* @param {*} [options] Override http request option.
|
|
1078
|
-
* @deprecated
|
|
1079
1062
|
* @throws {RequiredError}
|
|
1080
1063
|
* @memberof ClaimPartnerRolesApi
|
|
1081
1064
|
*/
|
|
@@ -1086,21 +1069,20 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
1086
1069
|
/**
|
|
1087
1070
|
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1088
1071
|
* @summary Retrieve the claim partner role
|
|
1089
|
-
* @param {
|
|
1072
|
+
* @param {ClaimPartnerRolesApiGetClaimPartnerRole0Request} requestParameters Request parameters.
|
|
1090
1073
|
* @param {*} [options] Override http request option.
|
|
1091
1074
|
* @throws {RequiredError}
|
|
1092
1075
|
* @memberof ClaimPartnerRolesApi
|
|
1093
1076
|
*/
|
|
1094
|
-
ClaimPartnerRolesApi.prototype.
|
|
1077
|
+
ClaimPartnerRolesApi.prototype.getClaimPartnerRole0 = function (requestParameters, options) {
|
|
1095
1078
|
var _this = this;
|
|
1096
|
-
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).
|
|
1079
|
+
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).getClaimPartnerRole0(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1097
1080
|
};
|
|
1098
1081
|
/**
|
|
1099
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1082
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1100
1083
|
* @summary Retrieve the claim partner role
|
|
1101
1084
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1102
1085
|
* @param {*} [options] Override http request option.
|
|
1103
|
-
* @deprecated
|
|
1104
1086
|
* @throws {RequiredError}
|
|
1105
1087
|
* @memberof ClaimPartnerRolesApi
|
|
1106
1088
|
*/
|
|
@@ -1111,22 +1093,21 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
1111
1093
|
/**
|
|
1112
1094
|
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1113
1095
|
* @summary List claim partner roles
|
|
1114
|
-
* @param {
|
|
1096
|
+
* @param {ClaimPartnerRolesApiListClaimPartnerRole0Request} requestParameters Request parameters.
|
|
1115
1097
|
* @param {*} [options] Override http request option.
|
|
1116
1098
|
* @throws {RequiredError}
|
|
1117
1099
|
* @memberof ClaimPartnerRolesApi
|
|
1118
1100
|
*/
|
|
1119
|
-
ClaimPartnerRolesApi.prototype.
|
|
1101
|
+
ClaimPartnerRolesApi.prototype.listClaimPartnerRole0 = function (requestParameters, options) {
|
|
1120
1102
|
var _this = this;
|
|
1121
1103
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1122
|
-
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).
|
|
1104
|
+
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).listClaimPartnerRole0(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); });
|
|
1123
1105
|
};
|
|
1124
1106
|
/**
|
|
1125
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1107
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1126
1108
|
* @summary List claim partner roles
|
|
1127
1109
|
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1128
1110
|
* @param {*} [options] Override http request option.
|
|
1129
|
-
* @deprecated
|
|
1130
1111
|
* @throws {RequiredError}
|
|
1131
1112
|
* @memberof ClaimPartnerRolesApi
|
|
1132
1113
|
*/
|
|
@@ -1138,21 +1119,20 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
1138
1119
|
/**
|
|
1139
1120
|
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
1140
1121
|
* @summary Update the claim partner role
|
|
1141
|
-
* @param {
|
|
1122
|
+
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole0Request} requestParameters Request parameters.
|
|
1142
1123
|
* @param {*} [options] Override http request option.
|
|
1143
1124
|
* @throws {RequiredError}
|
|
1144
1125
|
* @memberof ClaimPartnerRolesApi
|
|
1145
1126
|
*/
|
|
1146
|
-
ClaimPartnerRolesApi.prototype.
|
|
1127
|
+
ClaimPartnerRolesApi.prototype.updateClaimPartnerRole0 = function (requestParameters, options) {
|
|
1147
1128
|
var _this = this;
|
|
1148
|
-
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).
|
|
1129
|
+
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).updateClaimPartnerRole0(requestParameters.code, requestParameters.updateClaimPartnerRoleRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1149
1130
|
};
|
|
1150
1131
|
/**
|
|
1151
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
1132
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
1152
1133
|
* @summary Update the claim partner role
|
|
1153
1134
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1154
1135
|
* @param {*} [options] Override http request option.
|
|
1155
|
-
* @deprecated
|
|
1156
1136
|
* @throws {RequiredError}
|
|
1157
1137
|
* @memberof ClaimPartnerRolesApi
|
|
1158
1138
|
*/
|