@emilgroup/claim-sdk 1.43.0 → 1.43.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +45 -53
- package/api/claim-partner-roles-api.ts +107 -127
- package/api/claim-partners-api.ts +87 -103
- package/api/claim-positions-api.ts +153 -181
- package/api/claim-regulations-api.ts +108 -128
- package/api/claim-statuses-api.ts +129 -153
- package/api/claims-api.ts +149 -177
- package/api/health-check-api.ts +137 -17
- package/api/settlements-api.ts +107 -127
- package/dist/api/claim-limit-usages-api.d.ts +34 -42
- package/dist/api/claim-limit-usages-api.js +29 -37
- package/dist/api/claim-partner-roles-api.d.ts +77 -97
- package/dist/api/claim-partner-roles-api.js +75 -95
- package/dist/api/claim-partners-api.d.ts +63 -79
- package/dist/api/claim-partners-api.js +60 -76
- package/dist/api/claim-positions-api.d.ts +108 -136
- package/dist/api/claim-positions-api.js +108 -136
- package/dist/api/claim-regulations-api.d.ts +78 -98
- package/dist/api/claim-regulations-api.js +75 -95
- package/dist/api/claim-statuses-api.d.ts +92 -116
- package/dist/api/claim-statuses-api.js +91 -115
- package/dist/api/claims-api.d.ts +106 -134
- package/dist/api/claims-api.js +106 -134
- package/dist/api/health-check-api.d.ts +66 -12
- package/dist/api/health-check-api.js +151 -17
- package/dist/api/settlements-api.d.ts +77 -97
- package/dist/api/settlements-api.js +75 -95
- package/dist/models/calculation-step-result-class.d.ts +3 -3
- package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
- package/dist/models/list-claim-partners-response-class.d.ts +6 -6
- package/dist/models/list-claim-positions-response-class.d.ts +6 -6
- package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
- package/dist/models/list-claims-response-class.d.ts +6 -6
- package/dist/models/list-regulations-response-class.d.ts +6 -6
- package/dist/models/list-settlements-response-class.d.ts +18 -6
- package/dist/models/payout-details-class.d.ts +4 -2
- package/models/calculation-step-result-class.ts +3 -3
- package/models/list-claim-limit-usages-response-class.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +6 -6
- package/models/list-claim-partners-response-class.ts +6 -6
- package/models/list-claim-positions-response-class.ts +6 -6
- package/models/list-claim-statuses-response-class.ts +6 -6
- package/models/list-claims-response-class.ts +6 -6
- package/models/list-regulations-response-class.ts +6 -6
- package/models/list-settlements-response-class.ts +18 -6
- package/models/payout-details-class.ts +2 -2
- package/package.json +1 -1
|
@@ -43,12 +43,12 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
43
43
|
* @param {*} [options] Override http request option.
|
|
44
44
|
* @throws {RequiredError}
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
createClaimPartner0: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
47
|
// verify required parameter 'claimCode' is not null or undefined
|
|
48
|
-
assertParamExists('
|
|
48
|
+
assertParamExists('createClaimPartner0', 'claimCode', claimCode)
|
|
49
49
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
50
|
-
assertParamExists('
|
|
51
|
-
const localVarPath = `/
|
|
50
|
+
assertParamExists('createClaimPartner0', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
51
|
+
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
52
52
|
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
53
53
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
54
54
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -86,13 +86,12 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
89
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
90
90
|
* @summary Create the claim partner
|
|
91
91
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
92
92
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
93
93
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
94
94
|
* @param {*} [options] Override http request option.
|
|
95
|
-
* @deprecated
|
|
96
95
|
* @throws {RequiredError}
|
|
97
96
|
*/
|
|
98
97
|
createClaimPartner1: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -100,7 +99,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
100
99
|
assertParamExists('createClaimPartner1', 'claimCode', claimCode)
|
|
101
100
|
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
102
101
|
assertParamExists('createClaimPartner1', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
103
|
-
const localVarPath = `/v1/claims/{claimCode}/partner`
|
|
102
|
+
const localVarPath = `/claimservice/v1/claims/{claimCode}/partner`
|
|
104
103
|
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
105
104
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106
105
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -145,10 +144,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
145
144
|
* @param {*} [options] Override http request option.
|
|
146
145
|
* @throws {RequiredError}
|
|
147
146
|
*/
|
|
148
|
-
|
|
147
|
+
deleteClaimPartner0: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
149
148
|
// verify required parameter 'id' is not null or undefined
|
|
150
|
-
assertParamExists('
|
|
151
|
-
const localVarPath = `/
|
|
149
|
+
assertParamExists('deleteClaimPartner0', 'id', id)
|
|
150
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
152
151
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
153
152
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
154
153
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -183,18 +182,17 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
183
182
|
};
|
|
184
183
|
},
|
|
185
184
|
/**
|
|
186
|
-
* 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\"
|
|
185
|
+
* 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\"
|
|
187
186
|
* @summary Delete the claim partner
|
|
188
187
|
* @param {number} id
|
|
189
188
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
190
189
|
* @param {*} [options] Override http request option.
|
|
191
|
-
* @deprecated
|
|
192
190
|
* @throws {RequiredError}
|
|
193
191
|
*/
|
|
194
192
|
deleteClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
195
193
|
// verify required parameter 'id' is not null or undefined
|
|
196
194
|
assertParamExists('deleteClaimPartner1', 'id', id)
|
|
197
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
195
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
198
196
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
199
197
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
200
198
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -236,10 +234,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
236
234
|
* @param {*} [options] Override http request option.
|
|
237
235
|
* @throws {RequiredError}
|
|
238
236
|
*/
|
|
239
|
-
|
|
237
|
+
getClaimPartner0: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
240
238
|
// verify required parameter 'id' is not null or undefined
|
|
241
|
-
assertParamExists('
|
|
242
|
-
const localVarPath = `/
|
|
239
|
+
assertParamExists('getClaimPartner0', 'id', id)
|
|
240
|
+
const localVarPath = `/v1/claim-partners/{id}`
|
|
243
241
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
244
242
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
245
243
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -274,18 +272,17 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
274
272
|
};
|
|
275
273
|
},
|
|
276
274
|
/**
|
|
277
|
-
* 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\"
|
|
275
|
+
* 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\"
|
|
278
276
|
* @summary Retrieve the claim partner
|
|
279
277
|
* @param {number} id
|
|
280
278
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
281
279
|
* @param {*} [options] Override http request option.
|
|
282
|
-
* @deprecated
|
|
283
280
|
* @throws {RequiredError}
|
|
284
281
|
*/
|
|
285
282
|
getClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
286
283
|
// verify required parameter 'id' is not null or undefined
|
|
287
284
|
assertParamExists('getClaimPartner1', 'id', id)
|
|
288
|
-
const localVarPath = `/v1/claim-partners/{id}`
|
|
285
|
+
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
289
286
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
290
287
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
291
288
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -333,8 +330,8 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
333
330
|
* @param {*} [options] Override http request option.
|
|
334
331
|
* @throws {RequiredError}
|
|
335
332
|
*/
|
|
336
|
-
|
|
337
|
-
const localVarPath = `/
|
|
333
|
+
listClaimPartners0: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
334
|
+
const localVarPath = `/v1/claim-partners`;
|
|
338
335
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
339
336
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
340
337
|
let baseOptions;
|
|
@@ -396,7 +393,7 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
396
393
|
};
|
|
397
394
|
},
|
|
398
395
|
/**
|
|
399
|
-
* 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\"
|
|
396
|
+
* 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
397
|
* @summary List claim partners
|
|
401
398
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
402
399
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -407,11 +404,10 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
407
404
|
* @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>
|
|
408
405
|
* @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>
|
|
409
406
|
* @param {*} [options] Override http request option.
|
|
410
|
-
* @deprecated
|
|
411
407
|
* @throws {RequiredError}
|
|
412
408
|
*/
|
|
413
409
|
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 = `/v1/claim-partners`;
|
|
410
|
+
const localVarPath = `/claimservice/v1/claim-partners`;
|
|
415
411
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
416
412
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
417
413
|
let baseOptions;
|
|
@@ -491,18 +487,17 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
491
487
|
* @param {*} [options] Override http request option.
|
|
492
488
|
* @throws {RequiredError}
|
|
493
489
|
*/
|
|
494
|
-
async
|
|
495
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
490
|
+
async createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
491
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartner0(claimCode, createClaimPartnerRequestDto, authorization, options);
|
|
496
492
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
497
493
|
},
|
|
498
494
|
/**
|
|
499
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
495
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
500
496
|
* @summary Create the claim partner
|
|
501
497
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
502
498
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
503
499
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
504
500
|
* @param {*} [options] Override http request option.
|
|
505
|
-
* @deprecated
|
|
506
501
|
* @throws {RequiredError}
|
|
507
502
|
*/
|
|
508
503
|
async createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
@@ -517,17 +512,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
517
512
|
* @param {*} [options] Override http request option.
|
|
518
513
|
* @throws {RequiredError}
|
|
519
514
|
*/
|
|
520
|
-
async
|
|
521
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
515
|
+
async deleteClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
516
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartner0(id, authorization, options);
|
|
522
517
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
523
518
|
},
|
|
524
519
|
/**
|
|
525
|
-
* 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\"
|
|
520
|
+
* 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\"
|
|
526
521
|
* @summary Delete the claim partner
|
|
527
522
|
* @param {number} id
|
|
528
523
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
529
524
|
* @param {*} [options] Override http request option.
|
|
530
|
-
* @deprecated
|
|
531
525
|
* @throws {RequiredError}
|
|
532
526
|
*/
|
|
533
527
|
async deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -542,17 +536,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
542
536
|
* @param {*} [options] Override http request option.
|
|
543
537
|
* @throws {RequiredError}
|
|
544
538
|
*/
|
|
545
|
-
async
|
|
546
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
539
|
+
async getClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
540
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartner0(id, authorization, options);
|
|
547
541
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
548
542
|
},
|
|
549
543
|
/**
|
|
550
|
-
* 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\"
|
|
544
|
+
* 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\"
|
|
551
545
|
* @summary Retrieve the claim partner
|
|
552
546
|
* @param {number} id
|
|
553
547
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
554
548
|
* @param {*} [options] Override http request option.
|
|
555
|
-
* @deprecated
|
|
556
549
|
* @throws {RequiredError}
|
|
557
550
|
*/
|
|
558
551
|
async getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
@@ -573,12 +566,12 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
573
566
|
* @param {*} [options] Override http request option.
|
|
574
567
|
* @throws {RequiredError}
|
|
575
568
|
*/
|
|
576
|
-
async
|
|
577
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
569
|
+
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>> {
|
|
570
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartners0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
578
571
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
579
572
|
},
|
|
580
573
|
/**
|
|
581
|
-
* 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\"
|
|
574
|
+
* 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\"
|
|
582
575
|
* @summary List claim partners
|
|
583
576
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
584
577
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -589,7 +582,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
589
582
|
* @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>
|
|
590
583
|
* @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>
|
|
591
584
|
* @param {*} [options] Override http request option.
|
|
592
|
-
* @deprecated
|
|
593
585
|
* @throws {RequiredError}
|
|
594
586
|
*/
|
|
595
587
|
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>> {
|
|
@@ -615,17 +607,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
615
607
|
* @param {*} [options] Override http request option.
|
|
616
608
|
* @throws {RequiredError}
|
|
617
609
|
*/
|
|
618
|
-
|
|
619
|
-
return localVarFp.
|
|
610
|
+
createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
611
|
+
return localVarFp.createClaimPartner0(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
620
612
|
},
|
|
621
613
|
/**
|
|
622
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
614
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
623
615
|
* @summary Create the claim partner
|
|
624
616
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
625
617
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
626
618
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
627
619
|
* @param {*} [options] Override http request option.
|
|
628
|
-
* @deprecated
|
|
629
620
|
* @throws {RequiredError}
|
|
630
621
|
*/
|
|
631
622
|
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
@@ -639,16 +630,15 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
639
630
|
* @param {*} [options] Override http request option.
|
|
640
631
|
* @throws {RequiredError}
|
|
641
632
|
*/
|
|
642
|
-
|
|
643
|
-
return localVarFp.
|
|
633
|
+
deleteClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
634
|
+
return localVarFp.deleteClaimPartner0(id, authorization, options).then((request) => request(axios, basePath));
|
|
644
635
|
},
|
|
645
636
|
/**
|
|
646
|
-
* 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\"
|
|
637
|
+
* 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\"
|
|
647
638
|
* @summary Delete the claim partner
|
|
648
639
|
* @param {number} id
|
|
649
640
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
650
641
|
* @param {*} [options] Override http request option.
|
|
651
|
-
* @deprecated
|
|
652
642
|
* @throws {RequiredError}
|
|
653
643
|
*/
|
|
654
644
|
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
@@ -662,16 +652,15 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
662
652
|
* @param {*} [options] Override http request option.
|
|
663
653
|
* @throws {RequiredError}
|
|
664
654
|
*/
|
|
665
|
-
|
|
666
|
-
return localVarFp.
|
|
655
|
+
getClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
656
|
+
return localVarFp.getClaimPartner0(id, authorization, options).then((request) => request(axios, basePath));
|
|
667
657
|
},
|
|
668
658
|
/**
|
|
669
|
-
* 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\"
|
|
659
|
+
* 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\"
|
|
670
660
|
* @summary Retrieve the claim partner
|
|
671
661
|
* @param {number} id
|
|
672
662
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
673
663
|
* @param {*} [options] Override http request option.
|
|
674
|
-
* @deprecated
|
|
675
664
|
* @throws {RequiredError}
|
|
676
665
|
*/
|
|
677
666
|
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
@@ -691,11 +680,11 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
691
680
|
* @param {*} [options] Override http request option.
|
|
692
681
|
* @throws {RequiredError}
|
|
693
682
|
*/
|
|
694
|
-
|
|
695
|
-
return localVarFp.
|
|
683
|
+
listClaimPartners0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
684
|
+
return localVarFp.listClaimPartners0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
696
685
|
},
|
|
697
686
|
/**
|
|
698
|
-
* 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\"
|
|
687
|
+
* 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\"
|
|
699
688
|
* @summary List claim partners
|
|
700
689
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
701
690
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -706,7 +695,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
706
695
|
* @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>
|
|
707
696
|
* @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>
|
|
708
697
|
* @param {*} [options] Override http request option.
|
|
709
|
-
* @deprecated
|
|
710
698
|
* @throws {RequiredError}
|
|
711
699
|
*/
|
|
712
700
|
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
@@ -716,29 +704,29 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
716
704
|
};
|
|
717
705
|
|
|
718
706
|
/**
|
|
719
|
-
* Request parameters for
|
|
707
|
+
* Request parameters for createClaimPartner0 operation in ClaimPartnersApi.
|
|
720
708
|
* @export
|
|
721
|
-
* @interface
|
|
709
|
+
* @interface ClaimPartnersApiCreateClaimPartner0Request
|
|
722
710
|
*/
|
|
723
|
-
export interface
|
|
711
|
+
export interface ClaimPartnersApiCreateClaimPartner0Request {
|
|
724
712
|
/**
|
|
725
713
|
* Unique identifier for the claim object.
|
|
726
714
|
* @type {string}
|
|
727
|
-
* @memberof
|
|
715
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
728
716
|
*/
|
|
729
717
|
readonly claimCode: string
|
|
730
718
|
|
|
731
719
|
/**
|
|
732
720
|
*
|
|
733
721
|
* @type {CreateClaimPartnerRequestDto}
|
|
734
|
-
* @memberof
|
|
722
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
735
723
|
*/
|
|
736
724
|
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto
|
|
737
725
|
|
|
738
726
|
/**
|
|
739
727
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
740
728
|
* @type {string}
|
|
741
|
-
* @memberof
|
|
729
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
742
730
|
*/
|
|
743
731
|
readonly authorization?: string
|
|
744
732
|
}
|
|
@@ -772,22 +760,22 @@ export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
|
772
760
|
}
|
|
773
761
|
|
|
774
762
|
/**
|
|
775
|
-
* Request parameters for
|
|
763
|
+
* Request parameters for deleteClaimPartner0 operation in ClaimPartnersApi.
|
|
776
764
|
* @export
|
|
777
|
-
* @interface
|
|
765
|
+
* @interface ClaimPartnersApiDeleteClaimPartner0Request
|
|
778
766
|
*/
|
|
779
|
-
export interface
|
|
767
|
+
export interface ClaimPartnersApiDeleteClaimPartner0Request {
|
|
780
768
|
/**
|
|
781
769
|
*
|
|
782
770
|
* @type {number}
|
|
783
|
-
* @memberof
|
|
771
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
784
772
|
*/
|
|
785
773
|
readonly id: number
|
|
786
774
|
|
|
787
775
|
/**
|
|
788
776
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
789
777
|
* @type {string}
|
|
790
|
-
* @memberof
|
|
778
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
791
779
|
*/
|
|
792
780
|
readonly authorization?: string
|
|
793
781
|
}
|
|
@@ -814,22 +802,22 @@ export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
|
814
802
|
}
|
|
815
803
|
|
|
816
804
|
/**
|
|
817
|
-
* Request parameters for
|
|
805
|
+
* Request parameters for getClaimPartner0 operation in ClaimPartnersApi.
|
|
818
806
|
* @export
|
|
819
|
-
* @interface
|
|
807
|
+
* @interface ClaimPartnersApiGetClaimPartner0Request
|
|
820
808
|
*/
|
|
821
|
-
export interface
|
|
809
|
+
export interface ClaimPartnersApiGetClaimPartner0Request {
|
|
822
810
|
/**
|
|
823
811
|
*
|
|
824
812
|
* @type {number}
|
|
825
|
-
* @memberof
|
|
813
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
826
814
|
*/
|
|
827
815
|
readonly id: number
|
|
828
816
|
|
|
829
817
|
/**
|
|
830
818
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
831
819
|
* @type {string}
|
|
832
|
-
* @memberof
|
|
820
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
833
821
|
*/
|
|
834
822
|
readonly authorization?: string
|
|
835
823
|
}
|
|
@@ -856,64 +844,64 @@ export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
|
856
844
|
}
|
|
857
845
|
|
|
858
846
|
/**
|
|
859
|
-
* Request parameters for
|
|
847
|
+
* Request parameters for listClaimPartners0 operation in ClaimPartnersApi.
|
|
860
848
|
* @export
|
|
861
|
-
* @interface
|
|
849
|
+
* @interface ClaimPartnersApiListClaimPartners0Request
|
|
862
850
|
*/
|
|
863
|
-
export interface
|
|
851
|
+
export interface ClaimPartnersApiListClaimPartners0Request {
|
|
864
852
|
/**
|
|
865
853
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
866
854
|
* @type {string}
|
|
867
|
-
* @memberof
|
|
855
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
868
856
|
*/
|
|
869
857
|
readonly authorization?: string
|
|
870
858
|
|
|
871
859
|
/**
|
|
872
860
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
873
861
|
* @type {number}
|
|
874
|
-
* @memberof
|
|
862
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
875
863
|
*/
|
|
876
864
|
readonly pageSize?: number
|
|
877
865
|
|
|
878
866
|
/**
|
|
879
867
|
* 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.
|
|
880
868
|
* @type {string}
|
|
881
|
-
* @memberof
|
|
869
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
882
870
|
*/
|
|
883
871
|
readonly pageToken?: string
|
|
884
872
|
|
|
885
873
|
/**
|
|
886
874
|
* 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>
|
|
887
875
|
* @type {string}
|
|
888
|
-
* @memberof
|
|
876
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
889
877
|
*/
|
|
890
878
|
readonly filter?: string
|
|
891
879
|
|
|
892
880
|
/**
|
|
893
881
|
* 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>
|
|
894
882
|
* @type {string}
|
|
895
|
-
* @memberof
|
|
883
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
896
884
|
*/
|
|
897
885
|
readonly search?: string
|
|
898
886
|
|
|
899
887
|
/**
|
|
900
888
|
* 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>
|
|
901
889
|
* @type {string}
|
|
902
|
-
* @memberof
|
|
890
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
903
891
|
*/
|
|
904
892
|
readonly order?: string
|
|
905
893
|
|
|
906
894
|
/**
|
|
907
895
|
* 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>
|
|
908
896
|
* @type {string}
|
|
909
|
-
* @memberof
|
|
897
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
910
898
|
*/
|
|
911
899
|
readonly expand?: string
|
|
912
900
|
|
|
913
901
|
/**
|
|
914
902
|
* 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>
|
|
915
903
|
* @type {string}
|
|
916
|
-
* @memberof
|
|
904
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
917
905
|
*/
|
|
918
906
|
readonly filters?: string
|
|
919
907
|
}
|
|
@@ -991,21 +979,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
991
979
|
/**
|
|
992
980
|
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
993
981
|
* @summary Create the claim partner
|
|
994
|
-
* @param {
|
|
982
|
+
* @param {ClaimPartnersApiCreateClaimPartner0Request} requestParameters Request parameters.
|
|
995
983
|
* @param {*} [options] Override http request option.
|
|
996
984
|
* @throws {RequiredError}
|
|
997
985
|
* @memberof ClaimPartnersApi
|
|
998
986
|
*/
|
|
999
|
-
public
|
|
1000
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
987
|
+
public createClaimPartner0(requestParameters: ClaimPartnersApiCreateClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
988
|
+
return ClaimPartnersApiFp(this.configuration).createClaimPartner0(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1001
989
|
}
|
|
1002
990
|
|
|
1003
991
|
/**
|
|
1004
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
992
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
1005
993
|
* @summary Create the claim partner
|
|
1006
994
|
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
1007
995
|
* @param {*} [options] Override http request option.
|
|
1008
|
-
* @deprecated
|
|
1009
996
|
* @throws {RequiredError}
|
|
1010
997
|
* @memberof ClaimPartnersApi
|
|
1011
998
|
*/
|
|
@@ -1016,21 +1003,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1016
1003
|
/**
|
|
1017
1004
|
* 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\"
|
|
1018
1005
|
* @summary Delete the claim partner
|
|
1019
|
-
* @param {
|
|
1006
|
+
* @param {ClaimPartnersApiDeleteClaimPartner0Request} requestParameters Request parameters.
|
|
1020
1007
|
* @param {*} [options] Override http request option.
|
|
1021
1008
|
* @throws {RequiredError}
|
|
1022
1009
|
* @memberof ClaimPartnersApi
|
|
1023
1010
|
*/
|
|
1024
|
-
public
|
|
1025
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1011
|
+
public deleteClaimPartner0(requestParameters: ClaimPartnersApiDeleteClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
1012
|
+
return ClaimPartnersApiFp(this.configuration).deleteClaimPartner0(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1026
1013
|
}
|
|
1027
1014
|
|
|
1028
1015
|
/**
|
|
1029
|
-
* 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\"
|
|
1016
|
+
* 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\"
|
|
1030
1017
|
* @summary Delete the claim partner
|
|
1031
1018
|
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
1032
1019
|
* @param {*} [options] Override http request option.
|
|
1033
|
-
* @deprecated
|
|
1034
1020
|
* @throws {RequiredError}
|
|
1035
1021
|
* @memberof ClaimPartnersApi
|
|
1036
1022
|
*/
|
|
@@ -1041,21 +1027,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1041
1027
|
/**
|
|
1042
1028
|
* 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\"
|
|
1043
1029
|
* @summary Retrieve the claim partner
|
|
1044
|
-
* @param {
|
|
1030
|
+
* @param {ClaimPartnersApiGetClaimPartner0Request} requestParameters Request parameters.
|
|
1045
1031
|
* @param {*} [options] Override http request option.
|
|
1046
1032
|
* @throws {RequiredError}
|
|
1047
1033
|
* @memberof ClaimPartnersApi
|
|
1048
1034
|
*/
|
|
1049
|
-
public
|
|
1050
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1035
|
+
public getClaimPartner0(requestParameters: ClaimPartnersApiGetClaimPartner0Request, options?: AxiosRequestConfig) {
|
|
1036
|
+
return ClaimPartnersApiFp(this.configuration).getClaimPartner0(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1051
1037
|
}
|
|
1052
1038
|
|
|
1053
1039
|
/**
|
|
1054
|
-
* 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\"
|
|
1040
|
+
* 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\"
|
|
1055
1041
|
* @summary Retrieve the claim partner
|
|
1056
1042
|
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
1057
1043
|
* @param {*} [options] Override http request option.
|
|
1058
|
-
* @deprecated
|
|
1059
1044
|
* @throws {RequiredError}
|
|
1060
1045
|
* @memberof ClaimPartnersApi
|
|
1061
1046
|
*/
|
|
@@ -1066,21 +1051,20 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1066
1051
|
/**
|
|
1067
1052
|
* 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
1053
|
* @summary List claim partners
|
|
1069
|
-
* @param {
|
|
1054
|
+
* @param {ClaimPartnersApiListClaimPartners0Request} requestParameters Request parameters.
|
|
1070
1055
|
* @param {*} [options] Override http request option.
|
|
1071
1056
|
* @throws {RequiredError}
|
|
1072
1057
|
* @memberof ClaimPartnersApi
|
|
1073
1058
|
*/
|
|
1074
|
-
public
|
|
1075
|
-
return ClaimPartnersApiFp(this.configuration).
|
|
1059
|
+
public listClaimPartners0(requestParameters: ClaimPartnersApiListClaimPartners0Request = {}, options?: AxiosRequestConfig) {
|
|
1060
|
+
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));
|
|
1076
1061
|
}
|
|
1077
1062
|
|
|
1078
1063
|
/**
|
|
1079
|
-
* 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\"
|
|
1064
|
+
* 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\"
|
|
1080
1065
|
* @summary List claim partners
|
|
1081
1066
|
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
1082
1067
|
* @param {*} [options] Override http request option.
|
|
1083
|
-
* @deprecated
|
|
1084
1068
|
* @throws {RequiredError}
|
|
1085
1069
|
* @memberof ClaimPartnersApi
|
|
1086
1070
|
*/
|