@emilgroup/claim-sdk 1.40.1-beta.7 → 1.40.1-beta.8
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-partner-roles-api.ts +50 -30
- package/api/claim-partners-api.ts +40 -24
- package/api/claim-positions-api.ts +50 -30
- package/api/claim-regulations-api.ts +50 -30
- package/api/claim-statuses-api.ts +60 -36
- package/api/claims-api.ts +70 -42
- package/api/health-check-api.ts +10 -6
- package/api/settlements-api.ts +50 -30
- package/dist/api/claim-partner-roles-api.d.ts +40 -20
- package/dist/api/claim-partner-roles-api.js +50 -30
- package/dist/api/claim-partners-api.d.ts +32 -16
- package/dist/api/claim-partners-api.js +40 -24
- package/dist/api/claim-positions-api.d.ts +40 -20
- package/dist/api/claim-positions-api.js +50 -30
- package/dist/api/claim-regulations-api.d.ts +40 -20
- package/dist/api/claim-regulations-api.js +50 -30
- package/dist/api/claim-statuses-api.d.ts +48 -24
- package/dist/api/claim-statuses-api.js +60 -36
- package/dist/api/claims-api.d.ts +56 -28
- package/dist/api/claims-api.js +70 -42
- package/dist/api/health-check-api.d.ts +8 -4
- package/dist/api/health-check-api.js +10 -6
- package/dist/api/settlements-api.d.ts +40 -20
- package/dist/api/settlements-api.js +50 -30
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/claim-sdk@1.40.1-beta.
|
|
20
|
+
npm install @emilgroup/claim-sdk@1.40.1-beta.8 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk@1.40.1-beta.
|
|
24
|
+
yarn add @emilgroup/claim-sdk@1.40.1-beta.8
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
|
@@ -49,7 +49,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
49
49
|
createClaimPartnerRole: async (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
50
|
// verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
|
|
51
51
|
assertParamExists('createClaimPartnerRole', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto)
|
|
52
|
-
const localVarPath = `/v1/claim-partner-roles`;
|
|
52
|
+
const localVarPath = `/claimservice/v1/claim-partner-roles`;
|
|
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);
|
|
55
55
|
let baseOptions;
|
|
@@ -86,17 +86,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
89
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
90
90
|
* @summary Create the claim partner role
|
|
91
91
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
92
92
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
93
93
|
* @param {*} [options] Override http request option.
|
|
94
|
+
* @deprecated
|
|
94
95
|
* @throws {RequiredError}
|
|
95
96
|
*/
|
|
96
97
|
createClaimPartnerRole1: async (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
97
98
|
// verify required parameter 'createClaimPartnerRoleRequestDto' is not null or undefined
|
|
98
99
|
assertParamExists('createClaimPartnerRole1', 'createClaimPartnerRoleRequestDto', createClaimPartnerRoleRequestDto)
|
|
99
|
-
const localVarPath = `/
|
|
100
|
+
const localVarPath = `/v1/claim-partner-roles`;
|
|
100
101
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
101
102
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
102
103
|
let baseOptions;
|
|
@@ -143,7 +144,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
143
144
|
deleteClaimPartnerRole: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
144
145
|
// verify required parameter 'code' is not null or undefined
|
|
145
146
|
assertParamExists('deleteClaimPartnerRole', 'code', code)
|
|
146
|
-
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
147
|
+
const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
|
|
147
148
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
148
149
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
149
150
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -178,17 +179,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
178
179
|
};
|
|
179
180
|
},
|
|
180
181
|
/**
|
|
181
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
182
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
182
183
|
* @summary Delete the claim partner role
|
|
183
184
|
* @param {string} code Unique identifier for the object.
|
|
184
185
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
185
186
|
* @param {*} [options] Override http request option.
|
|
187
|
+
* @deprecated
|
|
186
188
|
* @throws {RequiredError}
|
|
187
189
|
*/
|
|
188
190
|
deleteClaimPartnerRole1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
189
191
|
// verify required parameter 'code' is not null or undefined
|
|
190
192
|
assertParamExists('deleteClaimPartnerRole1', 'code', code)
|
|
191
|
-
const localVarPath = `/
|
|
193
|
+
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
192
194
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
193
195
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
194
196
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -233,7 +235,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
233
235
|
getClaimPartnerRole: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
234
236
|
// verify required parameter 'code' is not null or undefined
|
|
235
237
|
assertParamExists('getClaimPartnerRole', 'code', code)
|
|
236
|
-
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
238
|
+
const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
|
|
237
239
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
238
240
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
239
241
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -268,17 +270,18 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
268
270
|
};
|
|
269
271
|
},
|
|
270
272
|
/**
|
|
271
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
273
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
272
274
|
* @summary Retrieve the claim partner role
|
|
273
275
|
* @param {string} code Unique identifier for the object.
|
|
274
276
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
275
277
|
* @param {*} [options] Override http request option.
|
|
278
|
+
* @deprecated
|
|
276
279
|
* @throws {RequiredError}
|
|
277
280
|
*/
|
|
278
281
|
getClaimPartnerRole1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
279
282
|
// verify required parameter 'code' is not null or undefined
|
|
280
283
|
assertParamExists('getClaimPartnerRole1', 'code', code)
|
|
281
|
-
const localVarPath = `/
|
|
284
|
+
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
282
285
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
283
286
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
284
287
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -327,7 +330,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
327
330
|
* @throws {RequiredError}
|
|
328
331
|
*/
|
|
329
332
|
listClaimPartnerRole: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
330
|
-
const localVarPath = `/v1/claim-partner-roles`;
|
|
333
|
+
const localVarPath = `/claimservice/v1/claim-partner-roles`;
|
|
331
334
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
332
335
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
333
336
|
let baseOptions;
|
|
@@ -389,7 +392,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
389
392
|
};
|
|
390
393
|
},
|
|
391
394
|
/**
|
|
392
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
395
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
393
396
|
* @summary List claim partner roles
|
|
394
397
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
395
398
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -400,10 +403,11 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
400
403
|
* @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/>
|
|
401
404
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
402
405
|
* @param {*} [options] Override http request option.
|
|
406
|
+
* @deprecated
|
|
403
407
|
* @throws {RequiredError}
|
|
404
408
|
*/
|
|
405
409
|
listClaimPartnerRole1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
406
|
-
const localVarPath = `/
|
|
410
|
+
const localVarPath = `/v1/claim-partner-roles`;
|
|
407
411
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
408
412
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
409
413
|
let baseOptions;
|
|
@@ -478,7 +482,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
478
482
|
assertParamExists('updateClaimPartnerRole', 'code', code)
|
|
479
483
|
// verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
|
|
480
484
|
assertParamExists('updateClaimPartnerRole', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto)
|
|
481
|
-
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
485
|
+
const localVarPath = `/claimservice/v1/claim-partner-roles/{code}`
|
|
482
486
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
483
487
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
484
488
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -516,12 +520,13 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
516
520
|
};
|
|
517
521
|
},
|
|
518
522
|
/**
|
|
519
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
523
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
520
524
|
* @summary Update the claim partner role
|
|
521
525
|
* @param {string} code Unique identifier for the object.
|
|
522
526
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
523
527
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
524
528
|
* @param {*} [options] Override http request option.
|
|
529
|
+
* @deprecated
|
|
525
530
|
* @throws {RequiredError}
|
|
526
531
|
*/
|
|
527
532
|
updateClaimPartnerRole1: async (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -529,7 +534,7 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
|
|
|
529
534
|
assertParamExists('updateClaimPartnerRole1', 'code', code)
|
|
530
535
|
// verify required parameter 'updateClaimPartnerRoleRequestDto' is not null or undefined
|
|
531
536
|
assertParamExists('updateClaimPartnerRole1', 'updateClaimPartnerRoleRequestDto', updateClaimPartnerRoleRequestDto)
|
|
532
|
-
const localVarPath = `/
|
|
537
|
+
const localVarPath = `/v1/claim-partner-roles/{code}`
|
|
533
538
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
534
539
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
535
540
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -589,11 +594,12 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
589
594
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
590
595
|
},
|
|
591
596
|
/**
|
|
592
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
597
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
593
598
|
* @summary Create the claim partner role
|
|
594
599
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
595
600
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
596
601
|
* @param {*} [options] Override http request option.
|
|
602
|
+
* @deprecated
|
|
597
603
|
* @throws {RequiredError}
|
|
598
604
|
*/
|
|
599
605
|
async createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>> {
|
|
@@ -613,11 +619,12 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
613
619
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
614
620
|
},
|
|
615
621
|
/**
|
|
616
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
622
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
617
623
|
* @summary Delete the claim partner role
|
|
618
624
|
* @param {string} code Unique identifier for the object.
|
|
619
625
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
620
626
|
* @param {*} [options] Override http request option.
|
|
627
|
+
* @deprecated
|
|
621
628
|
* @throws {RequiredError}
|
|
622
629
|
*/
|
|
623
630
|
async deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -637,11 +644,12 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
637
644
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
638
645
|
},
|
|
639
646
|
/**
|
|
640
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
647
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
641
648
|
* @summary Retrieve the claim partner role
|
|
642
649
|
* @param {string} code Unique identifier for the object.
|
|
643
650
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
644
651
|
* @param {*} [options] Override http request option.
|
|
652
|
+
* @deprecated
|
|
645
653
|
* @throws {RequiredError}
|
|
646
654
|
*/
|
|
647
655
|
async getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>> {
|
|
@@ -667,7 +675,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
667
675
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
668
676
|
},
|
|
669
677
|
/**
|
|
670
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
678
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
671
679
|
* @summary List claim partner roles
|
|
672
680
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
673
681
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -678,6 +686,7 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
678
686
|
* @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/>
|
|
679
687
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
680
688
|
* @param {*} [options] Override http request option.
|
|
689
|
+
* @deprecated
|
|
681
690
|
* @throws {RequiredError}
|
|
682
691
|
*/
|
|
683
692
|
async listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>> {
|
|
@@ -698,12 +707,13 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
|
|
|
698
707
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
699
708
|
},
|
|
700
709
|
/**
|
|
701
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
710
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
702
711
|
* @summary Update the claim partner role
|
|
703
712
|
* @param {string} code Unique identifier for the object.
|
|
704
713
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
705
714
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
706
715
|
* @param {*} [options] Override http request option.
|
|
716
|
+
* @deprecated
|
|
707
717
|
* @throws {RequiredError}
|
|
708
718
|
*/
|
|
709
719
|
async updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>> {
|
|
@@ -732,11 +742,12 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
732
742
|
return localVarFp.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
733
743
|
},
|
|
734
744
|
/**
|
|
735
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
745
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
736
746
|
* @summary Create the claim partner role
|
|
737
747
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
738
748
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
739
749
|
* @param {*} [options] Override http request option.
|
|
750
|
+
* @deprecated
|
|
740
751
|
* @throws {RequiredError}
|
|
741
752
|
*/
|
|
742
753
|
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass> {
|
|
@@ -754,11 +765,12 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
754
765
|
return localVarFp.deleteClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
|
|
755
766
|
},
|
|
756
767
|
/**
|
|
757
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
768
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
758
769
|
* @summary Delete the claim partner role
|
|
759
770
|
* @param {string} code Unique identifier for the object.
|
|
760
771
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
761
772
|
* @param {*} [options] Override http request option.
|
|
773
|
+
* @deprecated
|
|
762
774
|
* @throws {RequiredError}
|
|
763
775
|
*/
|
|
764
776
|
deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void> {
|
|
@@ -776,11 +788,12 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
776
788
|
return localVarFp.getClaimPartnerRole(code, authorization, options).then((request) => request(axios, basePath));
|
|
777
789
|
},
|
|
778
790
|
/**
|
|
779
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
791
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
780
792
|
* @summary Retrieve the claim partner role
|
|
781
793
|
* @param {string} code Unique identifier for the object.
|
|
782
794
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
783
795
|
* @param {*} [options] Override http request option.
|
|
796
|
+
* @deprecated
|
|
784
797
|
* @throws {RequiredError}
|
|
785
798
|
*/
|
|
786
799
|
getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass> {
|
|
@@ -804,7 +817,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
804
817
|
return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
805
818
|
},
|
|
806
819
|
/**
|
|
807
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
820
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
808
821
|
* @summary List claim partner roles
|
|
809
822
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
810
823
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -815,6 +828,7 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
815
828
|
* @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/>
|
|
816
829
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
817
830
|
* @param {*} [options] Override http request option.
|
|
831
|
+
* @deprecated
|
|
818
832
|
* @throws {RequiredError}
|
|
819
833
|
*/
|
|
820
834
|
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass> {
|
|
@@ -833,12 +847,13 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
|
|
|
833
847
|
return localVarFp.updateClaimPartnerRole(code, updateClaimPartnerRoleRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
834
848
|
},
|
|
835
849
|
/**
|
|
836
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
850
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
837
851
|
* @summary Update the claim partner role
|
|
838
852
|
* @param {string} code Unique identifier for the object.
|
|
839
853
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
840
854
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
841
855
|
* @param {*} [options] Override http request option.
|
|
856
|
+
* @deprecated
|
|
842
857
|
* @throws {RequiredError}
|
|
843
858
|
*/
|
|
844
859
|
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass> {
|
|
@@ -1175,10 +1190,11 @@ export class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
1175
1190
|
}
|
|
1176
1191
|
|
|
1177
1192
|
/**
|
|
1178
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
1193
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1179
1194
|
* @summary Create the claim partner role
|
|
1180
1195
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1181
1196
|
* @param {*} [options] Override http request option.
|
|
1197
|
+
* @deprecated
|
|
1182
1198
|
* @throws {RequiredError}
|
|
1183
1199
|
* @memberof ClaimPartnerRolesApi
|
|
1184
1200
|
*/
|
|
@@ -1199,10 +1215,11 @@ export class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
1199
1215
|
}
|
|
1200
1216
|
|
|
1201
1217
|
/**
|
|
1202
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
1218
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1203
1219
|
* @summary Delete the claim partner role
|
|
1204
1220
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1205
1221
|
* @param {*} [options] Override http request option.
|
|
1222
|
+
* @deprecated
|
|
1206
1223
|
* @throws {RequiredError}
|
|
1207
1224
|
* @memberof ClaimPartnerRolesApi
|
|
1208
1225
|
*/
|
|
@@ -1223,10 +1240,11 @@ export class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
1223
1240
|
}
|
|
1224
1241
|
|
|
1225
1242
|
/**
|
|
1226
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1243
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1227
1244
|
* @summary Retrieve the claim partner role
|
|
1228
1245
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1229
1246
|
* @param {*} [options] Override http request option.
|
|
1247
|
+
* @deprecated
|
|
1230
1248
|
* @throws {RequiredError}
|
|
1231
1249
|
* @memberof ClaimPartnerRolesApi
|
|
1232
1250
|
*/
|
|
@@ -1247,10 +1265,11 @@ export class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
1247
1265
|
}
|
|
1248
1266
|
|
|
1249
1267
|
/**
|
|
1250
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
1268
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1251
1269
|
* @summary List claim partner roles
|
|
1252
1270
|
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1253
1271
|
* @param {*} [options] Override http request option.
|
|
1272
|
+
* @deprecated
|
|
1254
1273
|
* @throws {RequiredError}
|
|
1255
1274
|
* @memberof ClaimPartnerRolesApi
|
|
1256
1275
|
*/
|
|
@@ -1271,10 +1290,11 @@ export class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
1271
1290
|
}
|
|
1272
1291
|
|
|
1273
1292
|
/**
|
|
1274
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
1293
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1275
1294
|
* @summary Update the claim partner role
|
|
1276
1295
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
1277
1296
|
* @param {*} [options] Override http request option.
|
|
1297
|
+
* @deprecated
|
|
1278
1298
|
* @throws {RequiredError}
|
|
1279
1299
|
* @memberof ClaimPartnerRolesApi
|
|
1280
1300
|
*/
|