@emilgroup/claim-sdk-node 1.41.0 → 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
|
@@ -47,12 +47,12 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
47
47
|
* @param {*} [options] Override http request option.
|
|
48
48
|
* @throws {RequiredError}
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
createClaimPartner0: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51
51
|
// verify required parameter 'claimCode' is not null or undefined
|
|
52
|
-
assertParamExists('
|
|
52
|
+
assertParamExists('createClaimPartner0', 'claimCode', claimCode)
|
|
53
53
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
54
|
-
assertParamExists('
|
|
55
|
-
const localVarPath = `/
|
|
54
|
+
assertParamExists('createClaimPartner0', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
55
|
+
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
56
56
|
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
57
57
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58
58
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -90,13 +90,12 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
90
90
|
};
|
|
91
91
|
},
|
|
92
92
|
/**
|
|
93
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
93
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
94
94
|
* @summary Create the claim partner
|
|
95
95
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
96
96
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
99
|
-
* @deprecated
|
|
100
99
|
* @throws {RequiredError}
|
|
101
100
|
*/
|
|
102
101
|
createClaimPartner1: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -104,7 +103,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
104
103
|
assertParamExists('createClaimPartner1', 'claimCode', claimCode)
|
|
105
104
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
106
105
|
assertParamExists('createClaimPartner1', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
107
|
-
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
106
|
+
const localVarPath = `/claimservice/v1/claims/{claimCode}/partner`
|
|
108
107
|
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
109
108
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
110
109
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -149,10 +148,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
149
148
|
* @param {*} [options] Override http request option.
|
|
150
149
|
* @throws {RequiredError}
|
|
151
150
|
*/
|
|
152
|
-
|
|
151
|
+
deleteClaimPartner0: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
153
152
|
// verify required parameter 'id' is not null or undefined
|
|
154
|
-
assertParamExists('
|
|
155
|
-
const localVarPath = `/
|
|
153
|
+
assertParamExists('deleteClaimPartner0', 'id', id)
|
|
154
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
156
155
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
157
156
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
158
157
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -187,18 +186,17 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
187
186
|
};
|
|
188
187
|
},
|
|
189
188
|
/**
|
|
190
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
189
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
191
190
|
* @summary Delete the claim partner
|
|
192
191
|
* @param {number} id
|
|
193
192
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
194
193
|
* @param {*} [options] Override http request option.
|
|
195
|
-
* @deprecated
|
|
196
194
|
* @throws {RequiredError}
|
|
197
195
|
*/
|
|
198
196
|
deleteClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
199
197
|
// verify required parameter 'id' is not null or undefined
|
|
200
198
|
assertParamExists('deleteClaimPartner1', 'id', id)
|
|
201
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
199
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
202
200
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
203
201
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
204
202
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -240,10 +238,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
240
238
|
* @param {*} [options] Override http request option.
|
|
241
239
|
* @throws {RequiredError}
|
|
242
240
|
*/
|
|
243
|
-
|
|
241
|
+
getClaimPartner0: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
244
242
|
// verify required parameter 'id' is not null or undefined
|
|
245
|
-
assertParamExists('
|
|
246
|
-
const localVarPath = `/
|
|
243
|
+
assertParamExists('getClaimPartner0', 'id', id)
|
|
244
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
247
245
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
248
246
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
249
247
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -278,18 +276,17 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
278
276
|
};
|
|
279
277
|
},
|
|
280
278
|
/**
|
|
281
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
279
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
282
280
|
* @summary Retrieve the claim partner
|
|
283
281
|
* @param {number} id
|
|
284
282
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
285
283
|
* @param {*} [options] Override http request option.
|
|
286
|
-
* @deprecated
|
|
287
284
|
* @throws {RequiredError}
|
|
288
285
|
*/
|
|
289
286
|
getClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
290
287
|
// verify required parameter 'id' is not null or undefined
|
|
291
288
|
assertParamExists('getClaimPartner1', 'id', id)
|
|
292
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
289
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
293
290
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
294
291
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
295
292
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -337,8 +334,8 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
337
334
|
* @param {*} [options] Override http request option.
|
|
338
335
|
* @throws {RequiredError}
|
|
339
336
|
*/
|
|
340
|
-
|
|
341
|
-
const localVarPath = `/
|
|
337
|
+
listClaimPartners0: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
338
|
+
const localVarPath = `/v1/claim-partners`;
|
|
342
339
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
343
340
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
344
341
|
let baseOptions;
|
|
@@ -400,7 +397,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
400
397
|
};
|
|
401
398
|
},
|
|
402
399
|
/**
|
|
403
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
400
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
404
401
|
* @summary List claim partners
|
|
405
402
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
406
403
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -411,11 +408,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
411
408
|
* @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/> <i>Allowed values: role, partner<i>
|
|
412
409
|
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
413
410
|
* @param {*} [options] Override http request option.
|
|
414
|
-
* @deprecated
|
|
415
411
|
* @throws {RequiredError}
|
|
416
412
|
*/
|
|
417
413
|
listClaimPartners1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
418
|
-
const localVarPath = `/v1/claim-partners`;
|
|
414
|
+
const localVarPath = `/claimservice/v1/claim-partners`;
|
|
419
415
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
420
416
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
421
417
|
let baseOptions;
|
|
@@ -495,18 +491,17 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
495
491
|
* @param {*} [options] Override http request option.
|
|
496
492
|
* @throws {RequiredError}
|
|
497
493
|
*/
|
|
498
|
-
async
|
|
499
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
494
|
+
async createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartner0(claimCode, createClaimPartnerRequestDto, authorization, options);
|
|
500
496
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
501
497
|
},
|
|
502
498
|
/**
|
|
503
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
499
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
504
500
|
* @summary Create the claim partner
|
|
505
501
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
506
502
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
507
503
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
508
504
|
* @param {*} [options] Override http request option.
|
|
509
|
-
* @deprecated
|
|
510
505
|
* @throws {RequiredError}
|
|
511
506
|
*/
|
|
512
507
|
async createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
@@ -521,17 +516,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
521
516
|
* @param {*} [options] Override http request option.
|
|
522
517
|
* @throws {RequiredError}
|
|
523
518
|
*/
|
|
524
|
-
async
|
|
525
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
519
|
+
async deleteClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
520
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartner0(id, authorization, options);
|
|
526
521
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
527
522
|
},
|
|
528
523
|
/**
|
|
529
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
524
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
530
525
|
* @summary Delete the claim partner
|
|
531
526
|
* @param {number} id
|
|
532
527
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
533
528
|
* @param {*} [options] Override http request option.
|
|
534
|
-
* @deprecated
|
|
535
529
|
* @throws {RequiredError}
|
|
536
530
|
*/
|
|
537
531
|
async deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -546,17 +540,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
546
540
|
* @param {*} [options] Override http request option.
|
|
547
541
|
* @throws {RequiredError}
|
|
548
542
|
*/
|
|
549
|
-
async
|
|
550
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
543
|
+
async getClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
544
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartner0(id, authorization, options);
|
|
551
545
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
552
546
|
},
|
|
553
547
|
/**
|
|
554
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
548
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
555
549
|
* @summary Retrieve the claim partner
|
|
556
550
|
* @param {number} id
|
|
557
551
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
558
552
|
* @param {*} [options] Override http request option.
|
|
559
|
-
* @deprecated
|
|
560
553
|
* @throws {RequiredError}
|
|
561
554
|
*/
|
|
562
555
|
async getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
@@ -577,12 +570,12 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
577
570
|
* @param {*} [options] Override http request option.
|
|
578
571
|
* @throws {RequiredError}
|
|
579
572
|
*/
|
|
580
|
-
async
|
|
581
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
573
|
+
async listClaimPartners0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>> {
|
|
574
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartners0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
582
575
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
583
576
|
},
|
|
584
577
|
/**
|
|
585
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
578
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
586
579
|
* @summary List claim partners
|
|
587
580
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
588
581
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -593,7 +586,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
593
586
|
* @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/> <i>Allowed values: role, partner<i>
|
|
594
587
|
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
595
588
|
* @param {*} [options] Override http request option.
|
|
596
|
-
* @deprecated
|
|
597
589
|
* @throws {RequiredError}
|
|
598
590
|
*/
|
|
599
591
|
async listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>> {
|
|
@@ -619,17 +611,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
619
611
|
* @param {*} [options] Override http request option.
|
|
620
612
|
* @throws {RequiredError}
|
|
621
613
|
*/
|
|
622
|
-
|
|
623
|
-
return localVarFp.
|
|
614
|
+
createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
615
|
+
return localVarFp.createClaimPartner0(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
624
616
|
},
|
|
625
617
|
/**
|
|
626
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
618
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
627
619
|
* @summary Create the claim partner
|
|
628
620
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
629
621
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
630
622
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
631
623
|
* @param {*} [options] Override http request option.
|
|
632
|
-
* @deprecated
|
|
633
624
|
* @throws {RequiredError}
|
|
634
625
|
*/
|
|
635
626
|
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
@@ -643,16 +634,15 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
643
634
|
* @param {*} [options] Override http request option.
|
|
644
635
|
* @throws {RequiredError}
|
|
645
636
|
*/
|
|
646
|
-
|
|
647
|
-
return localVarFp.
|
|
637
|
+
deleteClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
638
|
+
return localVarFp.deleteClaimPartner0(id, authorization, options).then((request) => request(axios, basePath));
|
|
648
639
|
},
|
|
649
640
|
/**
|
|
650
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
641
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
651
642
|
* @summary Delete the claim partner
|
|
652
643
|
* @param {number} id
|
|
653
644
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
654
645
|
* @param {*} [options] Override http request option.
|
|
655
|
-
* @deprecated
|
|
656
646
|
* @throws {RequiredError}
|
|
657
647
|
*/
|
|
658
648
|
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
@@ -666,16 +656,15 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
666
656
|
* @param {*} [options] Override http request option.
|
|
667
657
|
* @throws {RequiredError}
|
|
668
658
|
*/
|
|
669
|
-
|
|
670
|
-
return localVarFp.
|
|
659
|
+
getClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
660
|
+
return localVarFp.getClaimPartner0(id, authorization, options).then((request) => request(axios, basePath));
|
|
671
661
|
},
|
|
672
662
|
/**
|
|
673
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
663
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
674
664
|
* @summary Retrieve the claim partner
|
|
675
665
|
* @param {number} id
|
|
676
666
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
677
667
|
* @param {*} [options] Override http request option.
|
|
678
|
-
* @deprecated
|
|
679
668
|
* @throws {RequiredError}
|
|
680
669
|
*/
|
|
681
670
|
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
@@ -695,11 +684,11 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
695
684
|
* @param {*} [options] Override http request option.
|
|
696
685
|
* @throws {RequiredError}
|
|
697
686
|
*/
|
|
698
|
-
|
|
699
|
-
return localVarFp.
|
|
687
|
+
listClaimPartners0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
688
|
+
return localVarFp.listClaimPartners0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
700
689
|
},
|
|
701
690
|
/**
|
|
702
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
691
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
703
692
|
* @summary List claim partners
|
|
704
693
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
705
694
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -710,7 +699,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
710
699
|
* @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/> <i>Allowed values: role, partner<i>
|
|
711
700
|
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
712
701
|
* @param {*} [options] Override http request option.
|
|
713
|
-
* @deprecated
|
|
714
702
|
* @throws {RequiredError}
|
|
715
703
|
*/
|
|
716
704
|
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
@@ -720,29 +708,29 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
720
708
|
};
|
|
721
709
|
|
|
722
710
|
/**
|
|
723
|
-
* Request parameters for
|
|
711
|
+
* Request parameters for createClaimPartner0 operation in ClaimPartnersApi.
|
|
724
712
|
* @export
|
|
725
|
-
* @interface
|
|
713
|
+
* @interface ClaimPartnersApiCreateClaimPartner0Request
|
|
726
714
|
*/
|
|
727
|
-
export interface
|
|
715
|
+
export interface ClaimPartnersApiCreateClaimPartner0Request {
|
|
728
716
|
/**
|
|
729
717
|
* Unique identifier for the claim object.
|
|
730
718
|
* @type {string}
|
|
731
|
-
* @memberof
|
|
719
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
732
720
|
*/
|
|
733
721
|
readonly claimCode: string
|
|
734
722
|
|
|
735
723
|
/**
|
|
736
724
|
*
|
|
737
725
|
* @type {CreateClaimPartnerRequestDto}
|
|
738
|
-
* @memberof
|
|
726
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
739
727
|
*/
|
|
740
728
|
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto
|
|
741
729
|
|
|
742
730
|
/**
|
|
743
731
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
744
732
|
* @type {string}
|
|
745
|
-
* @memberof
|
|
733
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
746
734
|
*/
|
|
747
735
|
readonly authorization?: string
|
|
748
736
|
}
|
|
@@ -776,22 +764,22 @@ export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
|
776
764
|
}
|
|
777
765
|
|
|
778
766
|
/**
|
|
779
|
-
* Request parameters for
|
|
767
|
+
* Request parameters for deleteClaimPartner0 operation in ClaimPartnersApi.
|
|
780
768
|
* @export
|
|
781
|
-
* @interface
|
|
769
|
+
* @interface ClaimPartnersApiDeleteClaimPartner0Request
|
|
782
770
|
*/
|
|
783
|
-
export interface
|
|
771
|
+
export interface ClaimPartnersApiDeleteClaimPartner0Request {
|
|
784
772
|
/**
|
|
785
773
|
*
|
|
786
774
|
* @type {number}
|
|
787
|
-
* @memberof
|
|
775
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
788
776
|
*/
|
|
789
777
|
readonly id: number
|
|
790
778
|
|
|
791
779
|
/**
|
|
792
780
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
793
781
|
* @type {string}
|
|
794
|
-
* @memberof
|
|
782
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
795
783
|
*/
|
|
796
784
|
readonly authorization?: string
|
|
797
785
|
}
|
|
@@ -818,22 +806,22 @@ export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
|
818
806
|
}
|
|
819
807
|
|
|
820
808
|
/**
|
|
821
|
-
* Request parameters for
|
|
809
|
+
* Request parameters for getClaimPartner0 operation in ClaimPartnersApi.
|
|
822
810
|
* @export
|
|
823
|
-
* @interface
|
|
811
|
+
* @interface ClaimPartnersApiGetClaimPartner0Request
|
|
824
812
|
*/
|
|
825
|
-
export interface
|
|
813
|
+
export interface ClaimPartnersApiGetClaimPartner0Request {
|
|
826
814
|
/**
|
|
827
815
|
*
|
|
828
816
|
* @type {number}
|
|
829
|
-
* @memberof
|
|
817
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
830
818
|
*/
|
|
831
819
|
readonly id: number
|
|
832
820
|
|
|
833
821
|
/**
|
|
834
822
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
835
823
|
* @type {string}
|
|
836
|
-
* @memberof
|
|
824
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
837
825
|
*/
|
|
838
826
|
readonly authorization?: string
|
|
839
827
|
}
|
|
@@ -860,64 +848,64 @@ export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
|
860
848
|
}
|
|
861
849
|
|
|
862
850
|
/**
|
|
863
|
-
* Request parameters for
|
|
851
|
+
* Request parameters for listClaimPartners0 operation in ClaimPartnersApi.
|
|
864
852
|
* @export
|
|
865
|
-
* @interface
|
|
853
|
+
* @interface ClaimPartnersApiListClaimPartners0Request
|
|
866
854
|
*/
|
|
867
|
-
export interface
|
|
855
|
+
export interface ClaimPartnersApiListClaimPartners0Request {
|
|
868
856
|
/**
|
|
869
857
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
870
858
|
* @type {string}
|
|
871
|
-
* @memberof
|
|
859
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
872
860
|
*/
|
|
873
861
|
readonly authorization?: string
|
|
874
862
|
|
|
875
863
|
/**
|
|
876
864
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
877
865
|
* @type {number}
|
|
878
|
-
* @memberof
|
|
866
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
879
867
|
*/
|
|
880
868
|
readonly pageSize?: number
|
|
881
869
|
|
|
882
870
|
/**
|
|
883
871
|
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
884
872
|
* @type {string}
|
|
885
|
-
* @memberof
|
|
873
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
886
874
|
*/
|
|
887
875
|
readonly pageToken?: string
|
|
888
876
|
|
|
889
877
|
/**
|
|
890
878
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
891
879
|
* @type {string}
|
|
892
|
-
* @memberof
|
|
880
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
893
881
|
*/
|
|
894
882
|
readonly filter?: string
|
|
895
883
|
|
|
896
884
|
/**
|
|
897
885
|
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
898
886
|
* @type {string}
|
|
899
|
-
* @memberof
|
|
887
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
900
888
|
*/
|
|
901
889
|
readonly search?: string
|
|
902
890
|
|
|
903
891
|
/**
|
|
904
892
|
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
905
893
|
* @type {string}
|
|
906
|
-
* @memberof
|
|
894
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
907
895
|
*/
|
|
908
896
|
readonly order?: string
|
|
909
897
|
|
|
910
898
|
/**
|
|
911
899
|
* 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/> <i>Allowed values: role, partner<i>
|
|
912
900
|
* @type {string}
|
|
913
|
-
* @memberof
|
|
901
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
914
902
|
*/
|
|
915
903
|
readonly expand?: string
|
|
916
904
|
|
|
917
905
|
/**
|
|
918
906
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
919
907
|
* @type {string}
|
|
920
|
-
* @memberof
|
|
908
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
921
909
|
*/
|
|
922
910
|
readonly filters?: string
|
|
923
911
|
}
|
|
@@ -995,21 +983,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
995
983
|
/**
|
|
996
984
|
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
997
985
|
* @summary Create the claim partner
|
|
998
|
-
* @param {
|
|
986
|
+
* @param {ClaimPartnersApiCreateClaimPartner0Request} requestParameters Request parameters.
|
|
999
987
|
* @param {*} [options] Override http request option.
|
|
1000
988
|
* @throws {RequiredError}
|
|
1001
989
|
* @memberof ClaimPartnersApi
|
|
1002
990
|
*/
|
|
1003
|
-
public
|
|
1004
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
991
|
+
public createClaimPartner0(requestParameters: ClaimPartnersApiCreateClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
992
|
+
return ClaimPartnersApiFp(this.configuration).createClaimPartner0(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1005
993
|
}
|
|
1006
994
|
|
|
1007
995
|
/**
|
|
1008
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
996
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
1009
997
|
* @summary Create the claim partner
|
|
1010
998
|
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
1011
999
|
* @param {*} [options] Override http request option.
|
|
1012
|
-
* @deprecated
|
|
1013
1000
|
* @throws {RequiredError}
|
|
1014
1001
|
* @memberof ClaimPartnersApi
|
|
1015
1002
|
*/
|
|
@@ -1020,21 +1007,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1020
1007
|
/**
|
|
1021
1008
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
1022
1009
|
* @summary Delete the claim partner
|
|
1023
|
-
* @param {
|
|
1010
|
+
* @param {ClaimPartnersApiDeleteClaimPartner0Request} requestParameters Request parameters.
|
|
1024
1011
|
* @param {*} [options] Override http request option.
|
|
1025
1012
|
* @throws {RequiredError}
|
|
1026
1013
|
* @memberof ClaimPartnersApi
|
|
1027
1014
|
*/
|
|
1028
|
-
public
|
|
1029
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1015
|
+
public deleteClaimPartner0(requestParameters: ClaimPartnersApiDeleteClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
1016
|
+
return ClaimPartnersApiFp(this.configuration).deleteClaimPartner0(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1030
1017
|
}
|
|
1031
1018
|
|
|
1032
1019
|
/**
|
|
1033
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
1020
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
1034
1021
|
* @summary Delete the claim partner
|
|
1035
1022
|
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
1036
1023
|
* @param {*} [options] Override http request option.
|
|
1037
|
-
* @deprecated
|
|
1038
1024
|
* @throws {RequiredError}
|
|
1039
1025
|
* @memberof ClaimPartnersApi
|
|
1040
1026
|
*/
|
|
@@ -1045,21 +1031,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1045
1031
|
/**
|
|
1046
1032
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
1047
1033
|
* @summary Retrieve the claim partner
|
|
1048
|
-
* @param {
|
|
1034
|
+
* @param {ClaimPartnersApiGetClaimPartner0Request} requestParameters Request parameters.
|
|
1049
1035
|
* @param {*} [options] Override http request option.
|
|
1050
1036
|
* @throws {RequiredError}
|
|
1051
1037
|
* @memberof ClaimPartnersApi
|
|
1052
1038
|
*/
|
|
1053
|
-
public
|
|
1054
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1039
|
+
public getClaimPartner0(requestParameters: ClaimPartnersApiGetClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
1040
|
+
return ClaimPartnersApiFp(this.configuration).getClaimPartner0(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1055
1041
|
}
|
|
1056
1042
|
|
|
1057
1043
|
/**
|
|
1058
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
1044
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
1059
1045
|
* @summary Retrieve the claim partner
|
|
1060
1046
|
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
1061
1047
|
* @param {*} [options] Override http request option.
|
|
1062
|
-
* @deprecated
|
|
1063
1048
|
* @throws {RequiredError}
|
|
1064
1049
|
* @memberof ClaimPartnersApi
|
|
1065
1050
|
*/
|
|
@@ -1070,21 +1055,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1070
1055
|
/**
|
|
1071
1056
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
1072
1057
|
* @summary List claim partners
|
|
1073
|
-
* @param {
|
|
1058
|
+
* @param {ClaimPartnersApiListClaimPartners0Request} requestParameters Request parameters.
|
|
1074
1059
|
* @param {*} [options] Override http request option.
|
|
1075
1060
|
* @throws {RequiredError}
|
|
1076
1061
|
* @memberof ClaimPartnersApi
|
|
1077
1062
|
*/
|
|
1078
|
-
public
|
|
1079
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1063
|
+
public listClaimPartners0(requestParameters: ClaimPartnersApiListClaimPartners0Request = {}, options?: AxiosRequestConfig) {
|
|
1064
|
+
return ClaimPartnersApiFp(this.configuration).listClaimPartners0(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1080
1065
|
}
|
|
1081
1066
|
|
|
1082
1067
|
/**
|
|
1083
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
1068
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
1084
1069
|
* @summary List claim partners
|
|
1085
1070
|
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
1086
1071
|
* @param {*} [options] Override http request option.
|
|
1087
|
-
* @deprecated
|
|
1088
1072
|
* @throws {RequiredError}
|
|
1089
1073
|
* @memberof ClaimPartnersApi
|
|
1090
1074
|
*/
|