@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.1-beta.2
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 +53 -45
- package/api/claim-partner-roles-api.ts +127 -107
- package/api/claim-partners-api.ts +103 -87
- package/api/claim-positions-api.ts +181 -153
- package/api/claim-regulations-api.ts +128 -108
- package/api/claim-statuses-api.ts +153 -129
- package/api/claims-api.ts +177 -149
- package/api/health-check-api.ts +46 -38
- package/api/settlements-api.ts +127 -107
- package/dist/api/claim-limit-usages-api.d.ts +42 -34
- package/dist/api/claim-limit-usages-api.js +37 -29
- package/dist/api/claim-partner-roles-api.d.ts +97 -77
- package/dist/api/claim-partner-roles-api.js +95 -75
- package/dist/api/claim-partners-api.d.ts +79 -63
- package/dist/api/claim-partners-api.js +76 -60
- package/dist/api/claim-positions-api.d.ts +136 -108
- package/dist/api/claim-positions-api.js +136 -108
- package/dist/api/claim-regulations-api.d.ts +98 -78
- package/dist/api/claim-regulations-api.js +95 -75
- package/dist/api/claim-statuses-api.d.ts +116 -92
- package/dist/api/claim-statuses-api.js +115 -91
- package/dist/api/claims-api.d.ts +134 -106
- package/dist/api/claims-api.js +134 -106
- package/dist/api/health-check-api.d.ts +32 -24
- package/dist/api/health-check-api.js +46 -38
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- 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
|
+
createClaimPartner: 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('createClaimPartner', 'claimCode', claimCode)
|
|
53
53
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
54
|
-
assertParamExists('
|
|
55
|
-
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
54
|
+
assertParamExists('createClaimPartner', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
55
|
+
const localVarPath = `/claimservice/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,12 +90,13 @@ 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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
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
|
|
99
100
|
* @throws {RequiredError}
|
|
100
101
|
*/
|
|
101
102
|
createClaimPartner1: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -103,7 +104,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
103
104
|
assertParamExists('createClaimPartner1', 'claimCode', claimCode)
|
|
104
105
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
105
106
|
assertParamExists('createClaimPartner1', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
106
|
-
const localVarPath = `/
|
|
107
|
+
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
107
108
|
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
108
109
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
109
110
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -148,10 +149,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
148
149
|
* @param {*} [options] Override http request option.
|
|
149
150
|
* @throws {RequiredError}
|
|
150
151
|
*/
|
|
151
|
-
|
|
152
|
+
deleteClaimPartner: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
152
153
|
// verify required parameter 'id' is not null or undefined
|
|
153
|
-
assertParamExists('
|
|
154
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
154
|
+
assertParamExists('deleteClaimPartner', 'id', id)
|
|
155
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
155
156
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
156
157
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
157
158
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -186,17 +187,18 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
186
187
|
};
|
|
187
188
|
},
|
|
188
189
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
190
191
|
* @summary Delete the claim partner
|
|
191
192
|
* @param {number} id
|
|
192
193
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
193
194
|
* @param {*} [options] Override http request option.
|
|
195
|
+
* @deprecated
|
|
194
196
|
* @throws {RequiredError}
|
|
195
197
|
*/
|
|
196
198
|
deleteClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
197
199
|
// verify required parameter 'id' is not null or undefined
|
|
198
200
|
assertParamExists('deleteClaimPartner1', 'id', id)
|
|
199
|
-
const localVarPath = `/
|
|
201
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
200
202
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
201
203
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
202
204
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -238,10 +240,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
238
240
|
* @param {*} [options] Override http request option.
|
|
239
241
|
* @throws {RequiredError}
|
|
240
242
|
*/
|
|
241
|
-
|
|
243
|
+
getClaimPartner: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
242
244
|
// verify required parameter 'id' is not null or undefined
|
|
243
|
-
assertParamExists('
|
|
244
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
245
|
+
assertParamExists('getClaimPartner', 'id', id)
|
|
246
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
245
247
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
246
248
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
247
249
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -276,17 +278,18 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
276
278
|
};
|
|
277
279
|
},
|
|
278
280
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
280
282
|
* @summary Retrieve the claim partner
|
|
281
283
|
* @param {number} id
|
|
282
284
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
283
285
|
* @param {*} [options] Override http request option.
|
|
286
|
+
* @deprecated
|
|
284
287
|
* @throws {RequiredError}
|
|
285
288
|
*/
|
|
286
289
|
getClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
287
290
|
// verify required parameter 'id' is not null or undefined
|
|
288
291
|
assertParamExists('getClaimPartner1', 'id', id)
|
|
289
|
-
const localVarPath = `/
|
|
292
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
290
293
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
291
294
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
292
295
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -334,8 +337,8 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
334
337
|
* @param {*} [options] Override http request option.
|
|
335
338
|
* @throws {RequiredError}
|
|
336
339
|
*/
|
|
337
|
-
|
|
338
|
-
const localVarPath = `/v1/claim-partners`;
|
|
340
|
+
listClaimPartners: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
341
|
+
const localVarPath = `/claimservice/v1/claim-partners`;
|
|
339
342
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
340
343
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
341
344
|
let baseOptions;
|
|
@@ -397,7 +400,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
397
400
|
};
|
|
398
401
|
},
|
|
399
402
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
401
404
|
* @summary List claim partners
|
|
402
405
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
406
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -408,10 +411,11 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
408
411
|
* @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>
|
|
409
412
|
* @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>
|
|
410
413
|
* @param {*} [options] Override http request option.
|
|
414
|
+
* @deprecated
|
|
411
415
|
* @throws {RequiredError}
|
|
412
416
|
*/
|
|
413
417
|
listClaimPartners1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
414
|
-
const localVarPath = `/
|
|
418
|
+
const localVarPath = `/v1/claim-partners`;
|
|
415
419
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
416
420
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
417
421
|
let baseOptions;
|
|
@@ -491,17 +495,18 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
491
495
|
* @param {*} [options] Override http request option.
|
|
492
496
|
* @throws {RequiredError}
|
|
493
497
|
*/
|
|
494
|
-
async
|
|
495
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
498
|
+
async createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
499
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options);
|
|
496
500
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
497
501
|
},
|
|
498
502
|
/**
|
|
499
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
503
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
500
504
|
* @summary Create the claim partner
|
|
501
505
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
502
506
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
503
507
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
504
508
|
* @param {*} [options] Override http request option.
|
|
509
|
+
* @deprecated
|
|
505
510
|
* @throws {RequiredError}
|
|
506
511
|
*/
|
|
507
512
|
async createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
@@ -516,16 +521,17 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
516
521
|
* @param {*} [options] Override http request option.
|
|
517
522
|
* @throws {RequiredError}
|
|
518
523
|
*/
|
|
519
|
-
async
|
|
520
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
524
|
+
async deleteClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
525
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartner(id, authorization, options);
|
|
521
526
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
522
527
|
},
|
|
523
528
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
525
530
|
* @summary Delete the claim partner
|
|
526
531
|
* @param {number} id
|
|
527
532
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
528
533
|
* @param {*} [options] Override http request option.
|
|
534
|
+
* @deprecated
|
|
529
535
|
* @throws {RequiredError}
|
|
530
536
|
*/
|
|
531
537
|
async deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -540,16 +546,17 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
540
546
|
* @param {*} [options] Override http request option.
|
|
541
547
|
* @throws {RequiredError}
|
|
542
548
|
*/
|
|
543
|
-
async
|
|
544
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
549
|
+
async getClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
550
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartner(id, authorization, options);
|
|
545
551
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
546
552
|
},
|
|
547
553
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
549
555
|
* @summary Retrieve the claim partner
|
|
550
556
|
* @param {number} id
|
|
551
557
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
552
558
|
* @param {*} [options] Override http request option.
|
|
559
|
+
* @deprecated
|
|
553
560
|
* @throws {RequiredError}
|
|
554
561
|
*/
|
|
555
562
|
async getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
@@ -570,12 +577,12 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
570
577
|
* @param {*} [options] Override http request option.
|
|
571
578
|
* @throws {RequiredError}
|
|
572
579
|
*/
|
|
573
|
-
async
|
|
574
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
580
|
+
async listClaimPartners(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>> {
|
|
581
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
575
582
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
576
583
|
},
|
|
577
584
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
579
586
|
* @summary List claim partners
|
|
580
587
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
581
588
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -586,6 +593,7 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
586
593
|
* @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>
|
|
587
594
|
* @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>
|
|
588
595
|
* @param {*} [options] Override http request option.
|
|
596
|
+
* @deprecated
|
|
589
597
|
* @throws {RequiredError}
|
|
590
598
|
*/
|
|
591
599
|
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>> {
|
|
@@ -611,16 +619,17 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
611
619
|
* @param {*} [options] Override http request option.
|
|
612
620
|
* @throws {RequiredError}
|
|
613
621
|
*/
|
|
614
|
-
|
|
615
|
-
return localVarFp.
|
|
622
|
+
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
623
|
+
return localVarFp.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
616
624
|
},
|
|
617
625
|
/**
|
|
618
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
626
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
619
627
|
* @summary Create the claim partner
|
|
620
628
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
621
629
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
622
630
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
623
631
|
* @param {*} [options] Override http request option.
|
|
632
|
+
* @deprecated
|
|
624
633
|
* @throws {RequiredError}
|
|
625
634
|
*/
|
|
626
635
|
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
@@ -634,15 +643,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
634
643
|
* @param {*} [options] Override http request option.
|
|
635
644
|
* @throws {RequiredError}
|
|
636
645
|
*/
|
|
637
|
-
|
|
638
|
-
return localVarFp.
|
|
646
|
+
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
647
|
+
return localVarFp.deleteClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
|
|
639
648
|
},
|
|
640
649
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
642
651
|
* @summary Delete the claim partner
|
|
643
652
|
* @param {number} id
|
|
644
653
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
645
654
|
* @param {*} [options] Override http request option.
|
|
655
|
+
* @deprecated
|
|
646
656
|
* @throws {RequiredError}
|
|
647
657
|
*/
|
|
648
658
|
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
@@ -656,15 +666,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
656
666
|
* @param {*} [options] Override http request option.
|
|
657
667
|
* @throws {RequiredError}
|
|
658
668
|
*/
|
|
659
|
-
|
|
660
|
-
return localVarFp.
|
|
669
|
+
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
670
|
+
return localVarFp.getClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
|
|
661
671
|
},
|
|
662
672
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
664
674
|
* @summary Retrieve the claim partner
|
|
665
675
|
* @param {number} id
|
|
666
676
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
667
677
|
* @param {*} [options] Override http request option.
|
|
678
|
+
* @deprecated
|
|
668
679
|
* @throws {RequiredError}
|
|
669
680
|
*/
|
|
670
681
|
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
@@ -684,11 +695,11 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
684
695
|
* @param {*} [options] Override http request option.
|
|
685
696
|
* @throws {RequiredError}
|
|
686
697
|
*/
|
|
687
|
-
|
|
688
|
-
return localVarFp.
|
|
698
|
+
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
699
|
+
return localVarFp.listClaimPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
689
700
|
},
|
|
690
701
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
692
703
|
* @summary List claim partners
|
|
693
704
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
694
705
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -699,6 +710,7 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
699
710
|
* @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>
|
|
700
711
|
* @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>
|
|
701
712
|
* @param {*} [options] Override http request option.
|
|
713
|
+
* @deprecated
|
|
702
714
|
* @throws {RequiredError}
|
|
703
715
|
*/
|
|
704
716
|
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
@@ -708,29 +720,29 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
708
720
|
};
|
|
709
721
|
|
|
710
722
|
/**
|
|
711
|
-
* Request parameters for
|
|
723
|
+
* Request parameters for createClaimPartner operation in ClaimPartnersApi.
|
|
712
724
|
* @export
|
|
713
|
-
* @interface
|
|
725
|
+
* @interface ClaimPartnersApiCreateClaimPartnerRequest
|
|
714
726
|
*/
|
|
715
|
-
export interface
|
|
727
|
+
export interface ClaimPartnersApiCreateClaimPartnerRequest {
|
|
716
728
|
/**
|
|
717
729
|
* Unique identifier for the claim object.
|
|
718
730
|
* @type {string}
|
|
719
|
-
* @memberof
|
|
731
|
+
* @memberof ClaimPartnersApiCreateClaimPartner
|
|
720
732
|
*/
|
|
721
733
|
readonly claimCode: string
|
|
722
734
|
|
|
723
735
|
/**
|
|
724
736
|
*
|
|
725
737
|
* @type {CreateClaimPartnerRequestDto}
|
|
726
|
-
* @memberof
|
|
738
|
+
* @memberof ClaimPartnersApiCreateClaimPartner
|
|
727
739
|
*/
|
|
728
740
|
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto
|
|
729
741
|
|
|
730
742
|
/**
|
|
731
743
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
732
744
|
* @type {string}
|
|
733
|
-
* @memberof
|
|
745
|
+
* @memberof ClaimPartnersApiCreateClaimPartner
|
|
734
746
|
*/
|
|
735
747
|
readonly authorization?: string
|
|
736
748
|
}
|
|
@@ -764,22 +776,22 @@ export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
|
764
776
|
}
|
|
765
777
|
|
|
766
778
|
/**
|
|
767
|
-
* Request parameters for
|
|
779
|
+
* Request parameters for deleteClaimPartner operation in ClaimPartnersApi.
|
|
768
780
|
* @export
|
|
769
|
-
* @interface
|
|
781
|
+
* @interface ClaimPartnersApiDeleteClaimPartnerRequest
|
|
770
782
|
*/
|
|
771
|
-
export interface
|
|
783
|
+
export interface ClaimPartnersApiDeleteClaimPartnerRequest {
|
|
772
784
|
/**
|
|
773
785
|
*
|
|
774
786
|
* @type {number}
|
|
775
|
-
* @memberof
|
|
787
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner
|
|
776
788
|
*/
|
|
777
789
|
readonly id: number
|
|
778
790
|
|
|
779
791
|
/**
|
|
780
792
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
781
793
|
* @type {string}
|
|
782
|
-
* @memberof
|
|
794
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner
|
|
783
795
|
*/
|
|
784
796
|
readonly authorization?: string
|
|
785
797
|
}
|
|
@@ -806,22 +818,22 @@ export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
|
806
818
|
}
|
|
807
819
|
|
|
808
820
|
/**
|
|
809
|
-
* Request parameters for
|
|
821
|
+
* Request parameters for getClaimPartner operation in ClaimPartnersApi.
|
|
810
822
|
* @export
|
|
811
|
-
* @interface
|
|
823
|
+
* @interface ClaimPartnersApiGetClaimPartnerRequest
|
|
812
824
|
*/
|
|
813
|
-
export interface
|
|
825
|
+
export interface ClaimPartnersApiGetClaimPartnerRequest {
|
|
814
826
|
/**
|
|
815
827
|
*
|
|
816
828
|
* @type {number}
|
|
817
|
-
* @memberof
|
|
829
|
+
* @memberof ClaimPartnersApiGetClaimPartner
|
|
818
830
|
*/
|
|
819
831
|
readonly id: number
|
|
820
832
|
|
|
821
833
|
/**
|
|
822
834
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
823
835
|
* @type {string}
|
|
824
|
-
* @memberof
|
|
836
|
+
* @memberof ClaimPartnersApiGetClaimPartner
|
|
825
837
|
*/
|
|
826
838
|
readonly authorization?: string
|
|
827
839
|
}
|
|
@@ -848,64 +860,64 @@ export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
|
848
860
|
}
|
|
849
861
|
|
|
850
862
|
/**
|
|
851
|
-
* Request parameters for
|
|
863
|
+
* Request parameters for listClaimPartners operation in ClaimPartnersApi.
|
|
852
864
|
* @export
|
|
853
|
-
* @interface
|
|
865
|
+
* @interface ClaimPartnersApiListClaimPartnersRequest
|
|
854
866
|
*/
|
|
855
|
-
export interface
|
|
867
|
+
export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
856
868
|
/**
|
|
857
869
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
858
870
|
* @type {string}
|
|
859
|
-
* @memberof
|
|
871
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
860
872
|
*/
|
|
861
873
|
readonly authorization?: string
|
|
862
874
|
|
|
863
875
|
/**
|
|
864
876
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
865
877
|
* @type {number}
|
|
866
|
-
* @memberof
|
|
878
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
867
879
|
*/
|
|
868
880
|
readonly pageSize?: number
|
|
869
881
|
|
|
870
882
|
/**
|
|
871
883
|
* 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.
|
|
872
884
|
* @type {string}
|
|
873
|
-
* @memberof
|
|
885
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
874
886
|
*/
|
|
875
887
|
readonly pageToken?: string
|
|
876
888
|
|
|
877
889
|
/**
|
|
878
890
|
* 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>
|
|
879
891
|
* @type {string}
|
|
880
|
-
* @memberof
|
|
892
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
881
893
|
*/
|
|
882
894
|
readonly filter?: string
|
|
883
895
|
|
|
884
896
|
/**
|
|
885
897
|
* 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>
|
|
886
898
|
* @type {string}
|
|
887
|
-
* @memberof
|
|
899
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
888
900
|
*/
|
|
889
901
|
readonly search?: string
|
|
890
902
|
|
|
891
903
|
/**
|
|
892
904
|
* 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>
|
|
893
905
|
* @type {string}
|
|
894
|
-
* @memberof
|
|
906
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
895
907
|
*/
|
|
896
908
|
readonly order?: string
|
|
897
909
|
|
|
898
910
|
/**
|
|
899
911
|
* 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>
|
|
900
912
|
* @type {string}
|
|
901
|
-
* @memberof
|
|
913
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
902
914
|
*/
|
|
903
915
|
readonly expand?: string
|
|
904
916
|
|
|
905
917
|
/**
|
|
906
918
|
* 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>
|
|
907
919
|
* @type {string}
|
|
908
|
-
* @memberof
|
|
920
|
+
* @memberof ClaimPartnersApiListClaimPartners
|
|
909
921
|
*/
|
|
910
922
|
readonly filters?: string
|
|
911
923
|
}
|
|
@@ -983,20 +995,21 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
983
995
|
/**
|
|
984
996
|
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
985
997
|
* @summary Create the claim partner
|
|
986
|
-
* @param {
|
|
998
|
+
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
987
999
|
* @param {*} [options] Override http request option.
|
|
988
1000
|
* @throws {RequiredError}
|
|
989
1001
|
* @memberof ClaimPartnersApi
|
|
990
1002
|
*/
|
|
991
|
-
public
|
|
992
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1003
|
+
public createClaimPartner(requestParameters: ClaimPartnersApiCreateClaimPartnerRequest, options?: AxiosRequestConfig) {
|
|
1004
|
+
return ClaimPartnersApiFp(this.configuration).createClaimPartner(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
993
1005
|
}
|
|
994
1006
|
|
|
995
1007
|
/**
|
|
996
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
1008
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
997
1009
|
* @summary Create the claim partner
|
|
998
1010
|
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
999
1011
|
* @param {*} [options] Override http request option.
|
|
1012
|
+
* @deprecated
|
|
1000
1013
|
* @throws {RequiredError}
|
|
1001
1014
|
* @memberof ClaimPartnersApi
|
|
1002
1015
|
*/
|
|
@@ -1007,20 +1020,21 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1007
1020
|
/**
|
|
1008
1021
|
* 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\"
|
|
1009
1022
|
* @summary Delete the claim partner
|
|
1010
|
-
* @param {
|
|
1023
|
+
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
1011
1024
|
* @param {*} [options] Override http request option.
|
|
1012
1025
|
* @throws {RequiredError}
|
|
1013
1026
|
* @memberof ClaimPartnersApi
|
|
1014
1027
|
*/
|
|
1015
|
-
public
|
|
1016
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1028
|
+
public deleteClaimPartner(requestParameters: ClaimPartnersApiDeleteClaimPartnerRequest, options?: AxiosRequestConfig) {
|
|
1029
|
+
return ClaimPartnersApiFp(this.configuration).deleteClaimPartner(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1017
1030
|
}
|
|
1018
1031
|
|
|
1019
1032
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1021
1034
|
* @summary Delete the claim partner
|
|
1022
1035
|
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
1023
1036
|
* @param {*} [options] Override http request option.
|
|
1037
|
+
* @deprecated
|
|
1024
1038
|
* @throws {RequiredError}
|
|
1025
1039
|
* @memberof ClaimPartnersApi
|
|
1026
1040
|
*/
|
|
@@ -1031,20 +1045,21 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1031
1045
|
/**
|
|
1032
1046
|
* 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\"
|
|
1033
1047
|
* @summary Retrieve the claim partner
|
|
1034
|
-
* @param {
|
|
1048
|
+
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
1035
1049
|
* @param {*} [options] Override http request option.
|
|
1036
1050
|
* @throws {RequiredError}
|
|
1037
1051
|
* @memberof ClaimPartnersApi
|
|
1038
1052
|
*/
|
|
1039
|
-
public
|
|
1040
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1053
|
+
public getClaimPartner(requestParameters: ClaimPartnersApiGetClaimPartnerRequest, options?: AxiosRequestConfig) {
|
|
1054
|
+
return ClaimPartnersApiFp(this.configuration).getClaimPartner(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1041
1055
|
}
|
|
1042
1056
|
|
|
1043
1057
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1045
1059
|
* @summary Retrieve the claim partner
|
|
1046
1060
|
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
1047
1061
|
* @param {*} [options] Override http request option.
|
|
1062
|
+
* @deprecated
|
|
1048
1063
|
* @throws {RequiredError}
|
|
1049
1064
|
* @memberof ClaimPartnersApi
|
|
1050
1065
|
*/
|
|
@@ -1055,20 +1070,21 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1055
1070
|
/**
|
|
1056
1071
|
* 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\"
|
|
1057
1072
|
* @summary List claim partners
|
|
1058
|
-
* @param {
|
|
1073
|
+
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
1059
1074
|
* @param {*} [options] Override http request option.
|
|
1060
1075
|
* @throws {RequiredError}
|
|
1061
1076
|
* @memberof ClaimPartnersApi
|
|
1062
1077
|
*/
|
|
1063
|
-
public
|
|
1064
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1078
|
+
public listClaimPartners(requestParameters: ClaimPartnersApiListClaimPartnersRequest = {}, options?: AxiosRequestConfig) {
|
|
1079
|
+
return ClaimPartnersApiFp(this.configuration).listClaimPartners(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1065
1080
|
}
|
|
1066
1081
|
|
|
1067
1082
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1069
1084
|
* @summary List claim partners
|
|
1070
1085
|
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
1071
1086
|
* @param {*} [options] Override http request option.
|
|
1087
|
+
* @deprecated
|
|
1072
1088
|
* @throws {RequiredError}
|
|
1073
1089
|
* @memberof ClaimPartnersApi
|
|
1074
1090
|
*/
|