@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
|
@@ -54,10 +54,10 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
54
54
|
* @param {*} [options] Override http request option.
|
|
55
55
|
* @throws {RequiredError}
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
createClaimStatus: async (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
58
58
|
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
59
|
-
assertParamExists('
|
|
60
|
-
const localVarPath = `/v1/claim-statuses`;
|
|
59
|
+
assertParamExists('createClaimStatus', 'createClaimStatusRequestDto', createClaimStatusRequestDto)
|
|
60
|
+
const localVarPath = `/claimservice/v1/claim-statuses`;
|
|
61
61
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62
62
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
63
63
|
let baseOptions;
|
|
@@ -94,17 +94,18 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
94
94
|
};
|
|
95
95
|
},
|
|
96
96
|
/**
|
|
97
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
97
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
98
98
|
* @summary Create the claim status
|
|
99
99
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
100
100
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
101
101
|
* @param {*} [options] Override http request option.
|
|
102
|
+
* @deprecated
|
|
102
103
|
* @throws {RequiredError}
|
|
103
104
|
*/
|
|
104
105
|
createClaimStatus1: async (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
105
106
|
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
106
107
|
assertParamExists('createClaimStatus1', 'createClaimStatusRequestDto', createClaimStatusRequestDto)
|
|
107
|
-
const localVarPath = `/
|
|
108
|
+
const localVarPath = `/v1/claim-statuses`;
|
|
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);
|
|
110
111
|
let baseOptions;
|
|
@@ -148,10 +149,10 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
148
149
|
* @param {*} [options] Override http request option.
|
|
149
150
|
* @throws {RequiredError}
|
|
150
151
|
*/
|
|
151
|
-
|
|
152
|
+
deleteClaimStatus: 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-statuses/{id}`
|
|
154
|
+
assertParamExists('deleteClaimStatus', 'id', id)
|
|
155
|
+
const localVarPath = `/claimservice/v1/claim-statuses/{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 ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
186
187
|
};
|
|
187
188
|
},
|
|
188
189
|
/**
|
|
189
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
190
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.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 status
|
|
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
|
deleteClaimStatus1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
197
199
|
// verify required parameter 'id' is not null or undefined
|
|
198
200
|
assertParamExists('deleteClaimStatus1', 'id', id)
|
|
199
|
-
const localVarPath = `/
|
|
201
|
+
const localVarPath = `/v1/claim-statuses/{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 ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
238
240
|
* @param {*} [options] Override http request option.
|
|
239
241
|
* @throws {RequiredError}
|
|
240
242
|
*/
|
|
241
|
-
|
|
243
|
+
getClaimStatus: 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-statuses/{id}`
|
|
245
|
+
assertParamExists('getClaimStatus', 'id', id)
|
|
246
|
+
const localVarPath = `/claimservice/v1/claim-statuses/{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 ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
276
278
|
};
|
|
277
279
|
},
|
|
278
280
|
/**
|
|
279
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
281
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.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 status
|
|
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
|
getClaimStatus1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
287
290
|
// verify required parameter 'id' is not null or undefined
|
|
288
291
|
assertParamExists('getClaimStatus1', 'id', id)
|
|
289
|
-
const localVarPath = `/
|
|
292
|
+
const localVarPath = `/v1/claim-statuses/{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 ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
334
337
|
* @param {*} [options] Override http request option.
|
|
335
338
|
* @throws {RequiredError}
|
|
336
339
|
*/
|
|
337
|
-
|
|
338
|
-
const localVarPath = `/v1/claim-statuses`;
|
|
340
|
+
listClaimStatuses: 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-statuses`;
|
|
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 ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
397
400
|
};
|
|
398
401
|
},
|
|
399
402
|
/**
|
|
400
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
403
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.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 statuses
|
|
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 ClaimStatusesApiAxiosParamCreator = 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/>
|
|
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: id, name, productSlug</i>
|
|
410
413
|
* @param {*} [options] Override http request option.
|
|
414
|
+
* @deprecated
|
|
411
415
|
* @throws {RequiredError}
|
|
412
416
|
*/
|
|
413
417
|
listClaimStatuses1: 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-statuses`;
|
|
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;
|
|
@@ -481,12 +485,12 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
481
485
|
* @param {*} [options] Override http request option.
|
|
482
486
|
* @throws {RequiredError}
|
|
483
487
|
*/
|
|
484
|
-
|
|
488
|
+
patchClaimStatus: async (id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
485
489
|
// verify required parameter 'id' is not null or undefined
|
|
486
|
-
assertParamExists('
|
|
490
|
+
assertParamExists('patchClaimStatus', 'id', id)
|
|
487
491
|
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
488
|
-
assertParamExists('
|
|
489
|
-
const localVarPath = `/v1/claim-statuses/{id}`
|
|
492
|
+
assertParamExists('patchClaimStatus', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto)
|
|
493
|
+
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
490
494
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
491
495
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
492
496
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -524,12 +528,13 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
524
528
|
};
|
|
525
529
|
},
|
|
526
530
|
/**
|
|
527
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
531
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
528
532
|
* @summary Patch claim status
|
|
529
533
|
* @param {number} id
|
|
530
534
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
531
535
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
532
536
|
* @param {*} [options] Override http request option.
|
|
537
|
+
* @deprecated
|
|
533
538
|
* @throws {RequiredError}
|
|
534
539
|
*/
|
|
535
540
|
patchClaimStatus1: async (id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -537,7 +542,7 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
537
542
|
assertParamExists('patchClaimStatus1', 'id', id)
|
|
538
543
|
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
539
544
|
assertParamExists('patchClaimStatus1', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto)
|
|
540
|
-
const localVarPath = `/
|
|
545
|
+
const localVarPath = `/v1/claim-statuses/{id}`
|
|
541
546
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
542
547
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
543
548
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -583,12 +588,12 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
583
588
|
* @param {*} [options] Override http request option.
|
|
584
589
|
* @throws {RequiredError}
|
|
585
590
|
*/
|
|
586
|
-
|
|
591
|
+
updateClaimStatus: async (id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
587
592
|
// verify required parameter 'id' is not null or undefined
|
|
588
|
-
assertParamExists('
|
|
593
|
+
assertParamExists('updateClaimStatus', 'id', id)
|
|
589
594
|
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
590
|
-
assertParamExists('
|
|
591
|
-
const localVarPath = `/v1/claim-statuses/{id}`
|
|
595
|
+
assertParamExists('updateClaimStatus', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto)
|
|
596
|
+
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
592
597
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
593
598
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
594
599
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -626,12 +631,13 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
626
631
|
};
|
|
627
632
|
},
|
|
628
633
|
/**
|
|
629
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
634
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
630
635
|
* @summary Update the claim status
|
|
631
636
|
* @param {number} id
|
|
632
637
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
633
638
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
634
639
|
* @param {*} [options] Override http request option.
|
|
640
|
+
* @deprecated
|
|
635
641
|
* @throws {RequiredError}
|
|
636
642
|
*/
|
|
637
643
|
updateClaimStatus1: async (id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -639,7 +645,7 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
639
645
|
assertParamExists('updateClaimStatus1', 'id', id)
|
|
640
646
|
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
641
647
|
assertParamExists('updateClaimStatus1', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto)
|
|
642
|
-
const localVarPath = `/
|
|
648
|
+
const localVarPath = `/v1/claim-statuses/{id}`
|
|
643
649
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
644
650
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
645
651
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -694,16 +700,17 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
694
700
|
* @param {*} [options] Override http request option.
|
|
695
701
|
* @throws {RequiredError}
|
|
696
702
|
*/
|
|
697
|
-
async
|
|
698
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
703
|
+
async createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>> {
|
|
704
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimStatus(createClaimStatusRequestDto, authorization, options);
|
|
699
705
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
700
706
|
},
|
|
701
707
|
/**
|
|
702
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
708
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
703
709
|
* @summary Create the claim status
|
|
704
710
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
705
711
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
706
712
|
* @param {*} [options] Override http request option.
|
|
713
|
+
* @deprecated
|
|
707
714
|
* @throws {RequiredError}
|
|
708
715
|
*/
|
|
709
716
|
async createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>> {
|
|
@@ -718,16 +725,17 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
718
725
|
* @param {*} [options] Override http request option.
|
|
719
726
|
* @throws {RequiredError}
|
|
720
727
|
*/
|
|
721
|
-
async
|
|
722
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
728
|
+
async deleteClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
729
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimStatus(id, authorization, options);
|
|
723
730
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
724
731
|
},
|
|
725
732
|
/**
|
|
726
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
733
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
727
734
|
* @summary Delete the claim status
|
|
728
735
|
* @param {number} id
|
|
729
736
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
730
737
|
* @param {*} [options] Override http request option.
|
|
738
|
+
* @deprecated
|
|
731
739
|
* @throws {RequiredError}
|
|
732
740
|
*/
|
|
733
741
|
async deleteClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -742,16 +750,17 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
742
750
|
* @param {*} [options] Override http request option.
|
|
743
751
|
* @throws {RequiredError}
|
|
744
752
|
*/
|
|
745
|
-
async
|
|
746
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
753
|
+
async getClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>> {
|
|
754
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimStatus(id, authorization, options);
|
|
747
755
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
748
756
|
},
|
|
749
757
|
/**
|
|
750
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
758
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
751
759
|
* @summary Retrieve the claim status
|
|
752
760
|
* @param {number} id
|
|
753
761
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
754
762
|
* @param {*} [options] Override http request option.
|
|
763
|
+
* @deprecated
|
|
755
764
|
* @throws {RequiredError}
|
|
756
765
|
*/
|
|
757
766
|
async getClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>> {
|
|
@@ -772,12 +781,12 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
772
781
|
* @param {*} [options] Override http request option.
|
|
773
782
|
* @throws {RequiredError}
|
|
774
783
|
*/
|
|
775
|
-
async
|
|
776
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
784
|
+
async listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>> {
|
|
785
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimStatuses(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
777
786
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
778
787
|
},
|
|
779
788
|
/**
|
|
780
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
789
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
781
790
|
* @summary List claim statuses
|
|
782
791
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
783
792
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -788,6 +797,7 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
788
797
|
* @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/>
|
|
789
798
|
* @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: id, name, productSlug</i>
|
|
790
799
|
* @param {*} [options] Override http request option.
|
|
800
|
+
* @deprecated
|
|
791
801
|
* @throws {RequiredError}
|
|
792
802
|
*/
|
|
793
803
|
async listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>> {
|
|
@@ -803,17 +813,18 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
803
813
|
* @param {*} [options] Override http request option.
|
|
804
814
|
* @throws {RequiredError}
|
|
805
815
|
*/
|
|
806
|
-
async
|
|
807
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
816
|
+
async patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>> {
|
|
817
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchClaimStatus(id, patchClaimStatusRequestDto, authorization, options);
|
|
808
818
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
809
819
|
},
|
|
810
820
|
/**
|
|
811
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
821
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
812
822
|
* @summary Patch claim status
|
|
813
823
|
* @param {number} id
|
|
814
824
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
815
825
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
816
826
|
* @param {*} [options] Override http request option.
|
|
827
|
+
* @deprecated
|
|
817
828
|
* @throws {RequiredError}
|
|
818
829
|
*/
|
|
819
830
|
async patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>> {
|
|
@@ -829,17 +840,18 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
829
840
|
* @param {*} [options] Override http request option.
|
|
830
841
|
* @throws {RequiredError}
|
|
831
842
|
*/
|
|
832
|
-
async
|
|
833
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
843
|
+
async updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimStatusResponseClass>> {
|
|
844
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimStatus(id, updateClaimStatusRequestDto, authorization, options);
|
|
834
845
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
835
846
|
},
|
|
836
847
|
/**
|
|
837
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
848
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
838
849
|
* @summary Update the claim status
|
|
839
850
|
* @param {number} id
|
|
840
851
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
841
852
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
842
853
|
* @param {*} [options] Override http request option.
|
|
854
|
+
* @deprecated
|
|
843
855
|
* @throws {RequiredError}
|
|
844
856
|
*/
|
|
845
857
|
async updateClaimStatus1(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimStatusResponseClass>> {
|
|
@@ -864,15 +876,16 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
864
876
|
* @param {*} [options] Override http request option.
|
|
865
877
|
* @throws {RequiredError}
|
|
866
878
|
*/
|
|
867
|
-
|
|
868
|
-
return localVarFp.
|
|
879
|
+
createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass> {
|
|
880
|
+
return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
869
881
|
},
|
|
870
882
|
/**
|
|
871
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
883
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
872
884
|
* @summary Create the claim status
|
|
873
885
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
874
886
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
875
887
|
* @param {*} [options] Override http request option.
|
|
888
|
+
* @deprecated
|
|
876
889
|
* @throws {RequiredError}
|
|
877
890
|
*/
|
|
878
891
|
createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass> {
|
|
@@ -886,15 +899,16 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
886
899
|
* @param {*} [options] Override http request option.
|
|
887
900
|
* @throws {RequiredError}
|
|
888
901
|
*/
|
|
889
|
-
|
|
890
|
-
return localVarFp.
|
|
902
|
+
deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
903
|
+
return localVarFp.deleteClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
891
904
|
},
|
|
892
905
|
/**
|
|
893
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
906
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
894
907
|
* @summary Delete the claim status
|
|
895
908
|
* @param {number} id
|
|
896
909
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
897
910
|
* @param {*} [options] Override http request option.
|
|
911
|
+
* @deprecated
|
|
898
912
|
* @throws {RequiredError}
|
|
899
913
|
*/
|
|
900
914
|
deleteClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
@@ -908,15 +922,16 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
908
922
|
* @param {*} [options] Override http request option.
|
|
909
923
|
* @throws {RequiredError}
|
|
910
924
|
*/
|
|
911
|
-
|
|
912
|
-
return localVarFp.
|
|
925
|
+
getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass> {
|
|
926
|
+
return localVarFp.getClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
913
927
|
},
|
|
914
928
|
/**
|
|
915
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
929
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
916
930
|
* @summary Retrieve the claim status
|
|
917
931
|
* @param {number} id
|
|
918
932
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
919
933
|
* @param {*} [options] Override http request option.
|
|
934
|
+
* @deprecated
|
|
920
935
|
* @throws {RequiredError}
|
|
921
936
|
*/
|
|
922
937
|
getClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass> {
|
|
@@ -936,11 +951,11 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
936
951
|
* @param {*} [options] Override http request option.
|
|
937
952
|
* @throws {RequiredError}
|
|
938
953
|
*/
|
|
939
|
-
|
|
940
|
-
return localVarFp.
|
|
954
|
+
listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass> {
|
|
955
|
+
return localVarFp.listClaimStatuses(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
941
956
|
},
|
|
942
957
|
/**
|
|
943
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
958
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
944
959
|
* @summary List claim statuses
|
|
945
960
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
946
961
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -951,6 +966,7 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
951
966
|
* @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/>
|
|
952
967
|
* @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: id, name, productSlug</i>
|
|
953
968
|
* @param {*} [options] Override http request option.
|
|
969
|
+
* @deprecated
|
|
954
970
|
* @throws {RequiredError}
|
|
955
971
|
*/
|
|
956
972
|
listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass> {
|
|
@@ -965,16 +981,17 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
965
981
|
* @param {*} [options] Override http request option.
|
|
966
982
|
* @throws {RequiredError}
|
|
967
983
|
*/
|
|
968
|
-
|
|
969
|
-
return localVarFp.
|
|
984
|
+
patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass> {
|
|
985
|
+
return localVarFp.patchClaimStatus(id, patchClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
970
986
|
},
|
|
971
987
|
/**
|
|
972
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
988
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
973
989
|
* @summary Patch claim status
|
|
974
990
|
* @param {number} id
|
|
975
991
|
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
976
992
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
977
993
|
* @param {*} [options] Override http request option.
|
|
994
|
+
* @deprecated
|
|
978
995
|
* @throws {RequiredError}
|
|
979
996
|
*/
|
|
980
997
|
patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass> {
|
|
@@ -989,16 +1006,17 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
989
1006
|
* @param {*} [options] Override http request option.
|
|
990
1007
|
* @throws {RequiredError}
|
|
991
1008
|
*/
|
|
992
|
-
|
|
993
|
-
return localVarFp.
|
|
1009
|
+
updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass> {
|
|
1010
|
+
return localVarFp.updateClaimStatus(id, updateClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
994
1011
|
},
|
|
995
1012
|
/**
|
|
996
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1013
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
997
1014
|
* @summary Update the claim status
|
|
998
1015
|
* @param {number} id
|
|
999
1016
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
1000
1017
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1001
1018
|
* @param {*} [options] Override http request option.
|
|
1019
|
+
* @deprecated
|
|
1002
1020
|
* @throws {RequiredError}
|
|
1003
1021
|
*/
|
|
1004
1022
|
updateClaimStatus1(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass> {
|
|
@@ -1008,22 +1026,22 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
1008
1026
|
};
|
|
1009
1027
|
|
|
1010
1028
|
/**
|
|
1011
|
-
* Request parameters for
|
|
1029
|
+
* Request parameters for createClaimStatus operation in ClaimStatusesApi.
|
|
1012
1030
|
* @export
|
|
1013
|
-
* @interface
|
|
1031
|
+
* @interface ClaimStatusesApiCreateClaimStatusRequest
|
|
1014
1032
|
*/
|
|
1015
|
-
export interface
|
|
1033
|
+
export interface ClaimStatusesApiCreateClaimStatusRequest {
|
|
1016
1034
|
/**
|
|
1017
1035
|
*
|
|
1018
1036
|
* @type {CreateClaimStatusRequestDto}
|
|
1019
|
-
* @memberof
|
|
1037
|
+
* @memberof ClaimStatusesApiCreateClaimStatus
|
|
1020
1038
|
*/
|
|
1021
1039
|
readonly createClaimStatusRequestDto: CreateClaimStatusRequestDto
|
|
1022
1040
|
|
|
1023
1041
|
/**
|
|
1024
1042
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1025
1043
|
* @type {string}
|
|
1026
|
-
* @memberof
|
|
1044
|
+
* @memberof ClaimStatusesApiCreateClaimStatus
|
|
1027
1045
|
*/
|
|
1028
1046
|
readonly authorization?: string
|
|
1029
1047
|
}
|
|
@@ -1050,22 +1068,22 @@ export interface ClaimStatusesApiCreateClaimStatus1Request {
|
|
|
1050
1068
|
}
|
|
1051
1069
|
|
|
1052
1070
|
/**
|
|
1053
|
-
* Request parameters for
|
|
1071
|
+
* Request parameters for deleteClaimStatus operation in ClaimStatusesApi.
|
|
1054
1072
|
* @export
|
|
1055
|
-
* @interface
|
|
1073
|
+
* @interface ClaimStatusesApiDeleteClaimStatusRequest
|
|
1056
1074
|
*/
|
|
1057
|
-
export interface
|
|
1075
|
+
export interface ClaimStatusesApiDeleteClaimStatusRequest {
|
|
1058
1076
|
/**
|
|
1059
1077
|
*
|
|
1060
1078
|
* @type {number}
|
|
1061
|
-
* @memberof
|
|
1079
|
+
* @memberof ClaimStatusesApiDeleteClaimStatus
|
|
1062
1080
|
*/
|
|
1063
1081
|
readonly id: number
|
|
1064
1082
|
|
|
1065
1083
|
/**
|
|
1066
1084
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1067
1085
|
* @type {string}
|
|
1068
|
-
* @memberof
|
|
1086
|
+
* @memberof ClaimStatusesApiDeleteClaimStatus
|
|
1069
1087
|
*/
|
|
1070
1088
|
readonly authorization?: string
|
|
1071
1089
|
}
|
|
@@ -1092,22 +1110,22 @@ export interface ClaimStatusesApiDeleteClaimStatus1Request {
|
|
|
1092
1110
|
}
|
|
1093
1111
|
|
|
1094
1112
|
/**
|
|
1095
|
-
* Request parameters for
|
|
1113
|
+
* Request parameters for getClaimStatus operation in ClaimStatusesApi.
|
|
1096
1114
|
* @export
|
|
1097
|
-
* @interface
|
|
1115
|
+
* @interface ClaimStatusesApiGetClaimStatusRequest
|
|
1098
1116
|
*/
|
|
1099
|
-
export interface
|
|
1117
|
+
export interface ClaimStatusesApiGetClaimStatusRequest {
|
|
1100
1118
|
/**
|
|
1101
1119
|
*
|
|
1102
1120
|
* @type {number}
|
|
1103
|
-
* @memberof
|
|
1121
|
+
* @memberof ClaimStatusesApiGetClaimStatus
|
|
1104
1122
|
*/
|
|
1105
1123
|
readonly id: number
|
|
1106
1124
|
|
|
1107
1125
|
/**
|
|
1108
1126
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1109
1127
|
* @type {string}
|
|
1110
|
-
* @memberof
|
|
1128
|
+
* @memberof ClaimStatusesApiGetClaimStatus
|
|
1111
1129
|
*/
|
|
1112
1130
|
readonly authorization?: string
|
|
1113
1131
|
}
|
|
@@ -1134,64 +1152,64 @@ export interface ClaimStatusesApiGetClaimStatus1Request {
|
|
|
1134
1152
|
}
|
|
1135
1153
|
|
|
1136
1154
|
/**
|
|
1137
|
-
* Request parameters for
|
|
1155
|
+
* Request parameters for listClaimStatuses operation in ClaimStatusesApi.
|
|
1138
1156
|
* @export
|
|
1139
|
-
* @interface
|
|
1157
|
+
* @interface ClaimStatusesApiListClaimStatusesRequest
|
|
1140
1158
|
*/
|
|
1141
|
-
export interface
|
|
1159
|
+
export interface ClaimStatusesApiListClaimStatusesRequest {
|
|
1142
1160
|
/**
|
|
1143
1161
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1144
1162
|
* @type {string}
|
|
1145
|
-
* @memberof
|
|
1163
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1146
1164
|
*/
|
|
1147
1165
|
readonly authorization?: string
|
|
1148
1166
|
|
|
1149
1167
|
/**
|
|
1150
1168
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1151
1169
|
* @type {number}
|
|
1152
|
-
* @memberof
|
|
1170
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1153
1171
|
*/
|
|
1154
1172
|
readonly pageSize?: number
|
|
1155
1173
|
|
|
1156
1174
|
/**
|
|
1157
1175
|
* 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.
|
|
1158
1176
|
* @type {string}
|
|
1159
|
-
* @memberof
|
|
1177
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1160
1178
|
*/
|
|
1161
1179
|
readonly pageToken?: string
|
|
1162
1180
|
|
|
1163
1181
|
/**
|
|
1164
1182
|
* 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: id, name, productSlug</i>
|
|
1165
1183
|
* @type {string}
|
|
1166
|
-
* @memberof
|
|
1184
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1167
1185
|
*/
|
|
1168
1186
|
readonly filter?: string
|
|
1169
1187
|
|
|
1170
1188
|
/**
|
|
1171
1189
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
1172
1190
|
* @type {string}
|
|
1173
|
-
* @memberof
|
|
1191
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1174
1192
|
*/
|
|
1175
1193
|
readonly search?: string
|
|
1176
1194
|
|
|
1177
1195
|
/**
|
|
1178
1196
|
* 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</i>
|
|
1179
1197
|
* @type {string}
|
|
1180
|
-
* @memberof
|
|
1198
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1181
1199
|
*/
|
|
1182
1200
|
readonly order?: string
|
|
1183
1201
|
|
|
1184
1202
|
/**
|
|
1185
1203
|
* 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/>
|
|
1186
1204
|
* @type {string}
|
|
1187
|
-
* @memberof
|
|
1205
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1188
1206
|
*/
|
|
1189
1207
|
readonly expand?: string
|
|
1190
1208
|
|
|
1191
1209
|
/**
|
|
1192
1210
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, name, productSlug</i>
|
|
1193
1211
|
* @type {string}
|
|
1194
|
-
* @memberof
|
|
1212
|
+
* @memberof ClaimStatusesApiListClaimStatuses
|
|
1195
1213
|
*/
|
|
1196
1214
|
readonly filters?: string
|
|
1197
1215
|
}
|
|
@@ -1260,29 +1278,29 @@ export interface ClaimStatusesApiListClaimStatuses1Request {
|
|
|
1260
1278
|
}
|
|
1261
1279
|
|
|
1262
1280
|
/**
|
|
1263
|
-
* Request parameters for
|
|
1281
|
+
* Request parameters for patchClaimStatus operation in ClaimStatusesApi.
|
|
1264
1282
|
* @export
|
|
1265
|
-
* @interface
|
|
1283
|
+
* @interface ClaimStatusesApiPatchClaimStatusRequest
|
|
1266
1284
|
*/
|
|
1267
|
-
export interface
|
|
1285
|
+
export interface ClaimStatusesApiPatchClaimStatusRequest {
|
|
1268
1286
|
/**
|
|
1269
1287
|
*
|
|
1270
1288
|
* @type {number}
|
|
1271
|
-
* @memberof
|
|
1289
|
+
* @memberof ClaimStatusesApiPatchClaimStatus
|
|
1272
1290
|
*/
|
|
1273
1291
|
readonly id: number
|
|
1274
1292
|
|
|
1275
1293
|
/**
|
|
1276
1294
|
*
|
|
1277
1295
|
* @type {PatchClaimStatusRequestDto}
|
|
1278
|
-
* @memberof
|
|
1296
|
+
* @memberof ClaimStatusesApiPatchClaimStatus
|
|
1279
1297
|
*/
|
|
1280
1298
|
readonly patchClaimStatusRequestDto: PatchClaimStatusRequestDto
|
|
1281
1299
|
|
|
1282
1300
|
/**
|
|
1283
1301
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1284
1302
|
* @type {string}
|
|
1285
|
-
* @memberof
|
|
1303
|
+
* @memberof ClaimStatusesApiPatchClaimStatus
|
|
1286
1304
|
*/
|
|
1287
1305
|
readonly authorization?: string
|
|
1288
1306
|
}
|
|
@@ -1316,29 +1334,29 @@ export interface ClaimStatusesApiPatchClaimStatus1Request {
|
|
|
1316
1334
|
}
|
|
1317
1335
|
|
|
1318
1336
|
/**
|
|
1319
|
-
* Request parameters for
|
|
1337
|
+
* Request parameters for updateClaimStatus operation in ClaimStatusesApi.
|
|
1320
1338
|
* @export
|
|
1321
|
-
* @interface
|
|
1339
|
+
* @interface ClaimStatusesApiUpdateClaimStatusRequest
|
|
1322
1340
|
*/
|
|
1323
|
-
export interface
|
|
1341
|
+
export interface ClaimStatusesApiUpdateClaimStatusRequest {
|
|
1324
1342
|
/**
|
|
1325
1343
|
*
|
|
1326
1344
|
* @type {number}
|
|
1327
|
-
* @memberof
|
|
1345
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus
|
|
1328
1346
|
*/
|
|
1329
1347
|
readonly id: number
|
|
1330
1348
|
|
|
1331
1349
|
/**
|
|
1332
1350
|
*
|
|
1333
1351
|
* @type {UpdateClaimStatusRequestDto}
|
|
1334
|
-
* @memberof
|
|
1352
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus
|
|
1335
1353
|
*/
|
|
1336
1354
|
readonly updateClaimStatusRequestDto: UpdateClaimStatusRequestDto
|
|
1337
1355
|
|
|
1338
1356
|
/**
|
|
1339
1357
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1340
1358
|
* @type {string}
|
|
1341
|
-
* @memberof
|
|
1359
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus
|
|
1342
1360
|
*/
|
|
1343
1361
|
readonly authorization?: string
|
|
1344
1362
|
}
|
|
@@ -1381,20 +1399,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1381
1399
|
/**
|
|
1382
1400
|
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1383
1401
|
* @summary Create the claim status
|
|
1384
|
-
* @param {
|
|
1402
|
+
* @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
|
|
1385
1403
|
* @param {*} [options] Override http request option.
|
|
1386
1404
|
* @throws {RequiredError}
|
|
1387
1405
|
* @memberof ClaimStatusesApi
|
|
1388
1406
|
*/
|
|
1389
|
-
public
|
|
1390
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1407
|
+
public createClaimStatus(requestParameters: ClaimStatusesApiCreateClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1408
|
+
return ClaimStatusesApiFp(this.configuration).createClaimStatus(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1391
1409
|
}
|
|
1392
1410
|
|
|
1393
1411
|
/**
|
|
1394
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
1412
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1395
1413
|
* @summary Create the claim status
|
|
1396
1414
|
* @param {ClaimStatusesApiCreateClaimStatus1Request} requestParameters Request parameters.
|
|
1397
1415
|
* @param {*} [options] Override http request option.
|
|
1416
|
+
* @deprecated
|
|
1398
1417
|
* @throws {RequiredError}
|
|
1399
1418
|
* @memberof ClaimStatusesApi
|
|
1400
1419
|
*/
|
|
@@ -1405,20 +1424,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1405
1424
|
/**
|
|
1406
1425
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1407
1426
|
* @summary Delete the claim status
|
|
1408
|
-
* @param {
|
|
1427
|
+
* @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
|
|
1409
1428
|
* @param {*} [options] Override http request option.
|
|
1410
1429
|
* @throws {RequiredError}
|
|
1411
1430
|
* @memberof ClaimStatusesApi
|
|
1412
1431
|
*/
|
|
1413
|
-
public
|
|
1414
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1432
|
+
public deleteClaimStatus(requestParameters: ClaimStatusesApiDeleteClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1433
|
+
return ClaimStatusesApiFp(this.configuration).deleteClaimStatus(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1415
1434
|
}
|
|
1416
1435
|
|
|
1417
1436
|
/**
|
|
1418
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1437
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1419
1438
|
* @summary Delete the claim status
|
|
1420
1439
|
* @param {ClaimStatusesApiDeleteClaimStatus1Request} requestParameters Request parameters.
|
|
1421
1440
|
* @param {*} [options] Override http request option.
|
|
1441
|
+
* @deprecated
|
|
1422
1442
|
* @throws {RequiredError}
|
|
1423
1443
|
* @memberof ClaimStatusesApi
|
|
1424
1444
|
*/
|
|
@@ -1429,20 +1449,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1429
1449
|
/**
|
|
1430
1450
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1431
1451
|
* @summary Retrieve the claim status
|
|
1432
|
-
* @param {
|
|
1452
|
+
* @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
|
|
1433
1453
|
* @param {*} [options] Override http request option.
|
|
1434
1454
|
* @throws {RequiredError}
|
|
1435
1455
|
* @memberof ClaimStatusesApi
|
|
1436
1456
|
*/
|
|
1437
|
-
public
|
|
1438
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1457
|
+
public getClaimStatus(requestParameters: ClaimStatusesApiGetClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1458
|
+
return ClaimStatusesApiFp(this.configuration).getClaimStatus(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1439
1459
|
}
|
|
1440
1460
|
|
|
1441
1461
|
/**
|
|
1442
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1462
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1443
1463
|
* @summary Retrieve the claim status
|
|
1444
1464
|
* @param {ClaimStatusesApiGetClaimStatus1Request} requestParameters Request parameters.
|
|
1445
1465
|
* @param {*} [options] Override http request option.
|
|
1466
|
+
* @deprecated
|
|
1446
1467
|
* @throws {RequiredError}
|
|
1447
1468
|
* @memberof ClaimStatusesApi
|
|
1448
1469
|
*/
|
|
@@ -1453,20 +1474,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1453
1474
|
/**
|
|
1454
1475
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1455
1476
|
* @summary List claim statuses
|
|
1456
|
-
* @param {
|
|
1477
|
+
* @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
|
|
1457
1478
|
* @param {*} [options] Override http request option.
|
|
1458
1479
|
* @throws {RequiredError}
|
|
1459
1480
|
* @memberof ClaimStatusesApi
|
|
1460
1481
|
*/
|
|
1461
|
-
public
|
|
1462
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1482
|
+
public listClaimStatuses(requestParameters: ClaimStatusesApiListClaimStatusesRequest = {}, options?: AxiosRequestConfig) {
|
|
1483
|
+
return ClaimStatusesApiFp(this.configuration).listClaimStatuses(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1463
1484
|
}
|
|
1464
1485
|
|
|
1465
1486
|
/**
|
|
1466
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1487
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1467
1488
|
* @summary List claim statuses
|
|
1468
1489
|
* @param {ClaimStatusesApiListClaimStatuses1Request} requestParameters Request parameters.
|
|
1469
1490
|
* @param {*} [options] Override http request option.
|
|
1491
|
+
* @deprecated
|
|
1470
1492
|
* @throws {RequiredError}
|
|
1471
1493
|
* @memberof ClaimStatusesApi
|
|
1472
1494
|
*/
|
|
@@ -1477,20 +1499,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1477
1499
|
/**
|
|
1478
1500
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1479
1501
|
* @summary Patch claim status
|
|
1480
|
-
* @param {
|
|
1502
|
+
* @param {ClaimStatusesApiPatchClaimStatusRequest} requestParameters Request parameters.
|
|
1481
1503
|
* @param {*} [options] Override http request option.
|
|
1482
1504
|
* @throws {RequiredError}
|
|
1483
1505
|
* @memberof ClaimStatusesApi
|
|
1484
1506
|
*/
|
|
1485
|
-
public
|
|
1486
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1507
|
+
public patchClaimStatus(requestParameters: ClaimStatusesApiPatchClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1508
|
+
return ClaimStatusesApiFp(this.configuration).patchClaimStatus(requestParameters.id, requestParameters.patchClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1487
1509
|
}
|
|
1488
1510
|
|
|
1489
1511
|
/**
|
|
1490
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1512
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1491
1513
|
* @summary Patch claim status
|
|
1492
1514
|
* @param {ClaimStatusesApiPatchClaimStatus1Request} requestParameters Request parameters.
|
|
1493
1515
|
* @param {*} [options] Override http request option.
|
|
1516
|
+
* @deprecated
|
|
1494
1517
|
* @throws {RequiredError}
|
|
1495
1518
|
* @memberof ClaimStatusesApi
|
|
1496
1519
|
*/
|
|
@@ -1501,20 +1524,21 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1501
1524
|
/**
|
|
1502
1525
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1503
1526
|
* @summary Update the claim status
|
|
1504
|
-
* @param {
|
|
1527
|
+
* @param {ClaimStatusesApiUpdateClaimStatusRequest} requestParameters Request parameters.
|
|
1505
1528
|
* @param {*} [options] Override http request option.
|
|
1506
1529
|
* @throws {RequiredError}
|
|
1507
1530
|
* @memberof ClaimStatusesApi
|
|
1508
1531
|
*/
|
|
1509
|
-
public
|
|
1510
|
-
return ClaimStatusesApiFp(this.configuration).
|
|
1532
|
+
public updateClaimStatus(requestParameters: ClaimStatusesApiUpdateClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1533
|
+
return ClaimStatusesApiFp(this.configuration).updateClaimStatus(requestParameters.id, requestParameters.updateClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1511
1534
|
}
|
|
1512
1535
|
|
|
1513
1536
|
/**
|
|
1514
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1537
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1515
1538
|
* @summary Update the claim status
|
|
1516
1539
|
* @param {ClaimStatusesApiUpdateClaimStatus1Request} requestParameters Request parameters.
|
|
1517
1540
|
* @param {*} [options] Override http request option.
|
|
1541
|
+
* @deprecated
|
|
1518
1542
|
* @throws {RequiredError}
|
|
1519
1543
|
* @memberof ClaimStatusesApi
|
|
1520
1544
|
*/
|