@emilgroup/claim-sdk 1.43.1-beta.0 → 1.43.1-beta.1
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
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.43.1-beta.
|
|
20
|
+
npm install @emilgroup/claim-sdk@1.43.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk@1.43.1-beta.
|
|
24
|
+
yarn add @emilgroup/claim-sdk@1.43.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
|
@@ -38,10 +38,10 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
39
|
* @throws {RequiredError}
|
|
40
40
|
*/
|
|
41
|
-
|
|
41
|
+
getClaimLimitUsage: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42
42
|
// verify required parameter 'code' is not null or undefined
|
|
43
|
-
assertParamExists('
|
|
44
|
-
const localVarPath = `/v1/claim-limit-usages/{code}`
|
|
43
|
+
assertParamExists('getClaimLimitUsage', 'code', code)
|
|
44
|
+
const localVarPath = `/claimservice/v1/claim-limit-usages/{code}`
|
|
45
45
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
46
46
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47
47
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -76,17 +76,18 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
76
76
|
};
|
|
77
77
|
},
|
|
78
78
|
/**
|
|
79
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
79
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
80
80
|
* @summary Retrieve the claim limit usage
|
|
81
81
|
* @param {string} code
|
|
82
82
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
83
83
|
* @param {*} [options] Override http request option.
|
|
84
|
+
* @deprecated
|
|
84
85
|
* @throws {RequiredError}
|
|
85
86
|
*/
|
|
86
87
|
getClaimLimitUsage1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
87
88
|
// verify required parameter 'code' is not null or undefined
|
|
88
89
|
assertParamExists('getClaimLimitUsage1', 'code', code)
|
|
89
|
-
const localVarPath = `/
|
|
90
|
+
const localVarPath = `/v1/claim-limit-usages/{code}`
|
|
90
91
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
91
92
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
92
93
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -134,8 +135,8 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
134
135
|
* @param {*} [options] Override http request option.
|
|
135
136
|
* @throws {RequiredError}
|
|
136
137
|
*/
|
|
137
|
-
|
|
138
|
-
const localVarPath = `/v1/claim-limit-usages`;
|
|
138
|
+
listClaimLimitUsages: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
139
|
+
const localVarPath = `/claimservice/v1/claim-limit-usages`;
|
|
139
140
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
140
141
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
141
142
|
let baseOptions;
|
|
@@ -197,7 +198,7 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
197
198
|
};
|
|
198
199
|
},
|
|
199
200
|
/**
|
|
200
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
201
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
201
202
|
* @summary List claim limit usages
|
|
202
203
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
203
204
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -208,10 +209,11 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
208
209
|
* @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/>
|
|
209
210
|
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
210
211
|
* @param {*} [options] Override http request option.
|
|
212
|
+
* @deprecated
|
|
211
213
|
* @throws {RequiredError}
|
|
212
214
|
*/
|
|
213
215
|
listClaimLimitUsages1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
214
|
-
const localVarPath = `/
|
|
216
|
+
const localVarPath = `/v1/claim-limit-usages`;
|
|
215
217
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
216
218
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
217
219
|
let baseOptions;
|
|
@@ -290,16 +292,17 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
290
292
|
* @param {*} [options] Override http request option.
|
|
291
293
|
* @throws {RequiredError}
|
|
292
294
|
*/
|
|
293
|
-
async
|
|
294
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
295
|
+
async getClaimLimitUsage(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
|
|
296
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimLimitUsage(code, authorization, options);
|
|
295
297
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
296
298
|
},
|
|
297
299
|
/**
|
|
298
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
300
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
299
301
|
* @summary Retrieve the claim limit usage
|
|
300
302
|
* @param {string} code
|
|
301
303
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
302
304
|
* @param {*} [options] Override http request option.
|
|
305
|
+
* @deprecated
|
|
303
306
|
* @throws {RequiredError}
|
|
304
307
|
*/
|
|
305
308
|
async getClaimLimitUsage1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
|
|
@@ -320,12 +323,12 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
320
323
|
* @param {*} [options] Override http request option.
|
|
321
324
|
* @throws {RequiredError}
|
|
322
325
|
*/
|
|
323
|
-
async
|
|
324
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
326
|
+
async listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>> {
|
|
327
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
325
328
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
326
329
|
},
|
|
327
330
|
/**
|
|
328
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
331
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
329
332
|
* @summary List claim limit usages
|
|
330
333
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
331
334
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -336,6 +339,7 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
336
339
|
* @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/>
|
|
337
340
|
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
338
341
|
* @param {*} [options] Override http request option.
|
|
342
|
+
* @deprecated
|
|
339
343
|
* @throws {RequiredError}
|
|
340
344
|
*/
|
|
341
345
|
async listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>> {
|
|
@@ -360,15 +364,16 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
360
364
|
* @param {*} [options] Override http request option.
|
|
361
365
|
* @throws {RequiredError}
|
|
362
366
|
*/
|
|
363
|
-
|
|
364
|
-
return localVarFp.
|
|
367
|
+
getClaimLimitUsage(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
|
|
368
|
+
return localVarFp.getClaimLimitUsage(code, authorization, options).then((request) => request(axios, basePath));
|
|
365
369
|
},
|
|
366
370
|
/**
|
|
367
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
371
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
368
372
|
* @summary Retrieve the claim limit usage
|
|
369
373
|
* @param {string} code
|
|
370
374
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
371
375
|
* @param {*} [options] Override http request option.
|
|
376
|
+
* @deprecated
|
|
372
377
|
* @throws {RequiredError}
|
|
373
378
|
*/
|
|
374
379
|
getClaimLimitUsage1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
|
|
@@ -388,11 +393,11 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
388
393
|
* @param {*} [options] Override http request option.
|
|
389
394
|
* @throws {RequiredError}
|
|
390
395
|
*/
|
|
391
|
-
|
|
392
|
-
return localVarFp.
|
|
396
|
+
listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
|
|
397
|
+
return localVarFp.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
393
398
|
},
|
|
394
399
|
/**
|
|
395
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
400
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
396
401
|
* @summary List claim limit usages
|
|
397
402
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
398
403
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -403,6 +408,7 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
403
408
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
404
409
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
405
410
|
* @param {*} [options] Override http request option.
|
|
411
|
+
* @deprecated
|
|
406
412
|
* @throws {RequiredError}
|
|
407
413
|
*/
|
|
408
414
|
listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
|
|
@@ -412,22 +418,22 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
412
418
|
};
|
|
413
419
|
|
|
414
420
|
/**
|
|
415
|
-
* Request parameters for
|
|
421
|
+
* Request parameters for getClaimLimitUsage operation in ClaimLimitUsagesApi.
|
|
416
422
|
* @export
|
|
417
|
-
* @interface
|
|
423
|
+
* @interface ClaimLimitUsagesApiGetClaimLimitUsageRequest
|
|
418
424
|
*/
|
|
419
|
-
export interface
|
|
425
|
+
export interface ClaimLimitUsagesApiGetClaimLimitUsageRequest {
|
|
420
426
|
/**
|
|
421
427
|
*
|
|
422
428
|
* @type {string}
|
|
423
|
-
* @memberof
|
|
429
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage
|
|
424
430
|
*/
|
|
425
431
|
readonly code: string
|
|
426
432
|
|
|
427
433
|
/**
|
|
428
434
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
429
435
|
* @type {string}
|
|
430
|
-
* @memberof
|
|
436
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage
|
|
431
437
|
*/
|
|
432
438
|
readonly authorization?: string
|
|
433
439
|
}
|
|
@@ -454,64 +460,64 @@ export interface ClaimLimitUsagesApiGetClaimLimitUsage1Request {
|
|
|
454
460
|
}
|
|
455
461
|
|
|
456
462
|
/**
|
|
457
|
-
* Request parameters for
|
|
463
|
+
* Request parameters for listClaimLimitUsages operation in ClaimLimitUsagesApi.
|
|
458
464
|
* @export
|
|
459
|
-
* @interface
|
|
465
|
+
* @interface ClaimLimitUsagesApiListClaimLimitUsagesRequest
|
|
460
466
|
*/
|
|
461
|
-
export interface
|
|
467
|
+
export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
|
|
462
468
|
/**
|
|
463
469
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
464
470
|
* @type {string}
|
|
465
|
-
* @memberof
|
|
471
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
466
472
|
*/
|
|
467
473
|
readonly authorization?: string
|
|
468
474
|
|
|
469
475
|
/**
|
|
470
476
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
471
477
|
* @type {number}
|
|
472
|
-
* @memberof
|
|
478
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
473
479
|
*/
|
|
474
480
|
readonly pageSize?: number
|
|
475
481
|
|
|
476
482
|
/**
|
|
477
483
|
* 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.
|
|
478
484
|
* @type {string}
|
|
479
|
-
* @memberof
|
|
485
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
480
486
|
*/
|
|
481
487
|
readonly pageToken?: string
|
|
482
488
|
|
|
483
489
|
/**
|
|
484
490
|
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
485
491
|
* @type {string}
|
|
486
|
-
* @memberof
|
|
492
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
487
493
|
*/
|
|
488
494
|
readonly filter?: string
|
|
489
495
|
|
|
490
496
|
/**
|
|
491
497
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
492
498
|
* @type {string}
|
|
493
|
-
* @memberof
|
|
499
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
494
500
|
*/
|
|
495
501
|
readonly search?: string
|
|
496
502
|
|
|
497
503
|
/**
|
|
498
504
|
* 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
|
|
499
505
|
* @type {string}
|
|
500
|
-
* @memberof
|
|
506
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
501
507
|
*/
|
|
502
508
|
readonly order?: string
|
|
503
509
|
|
|
504
510
|
/**
|
|
505
511
|
* 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/>
|
|
506
512
|
* @type {string}
|
|
507
|
-
* @memberof
|
|
513
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
508
514
|
*/
|
|
509
515
|
readonly expand?: string
|
|
510
516
|
|
|
511
517
|
/**
|
|
512
518
|
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
513
519
|
* @type {string}
|
|
514
|
-
* @memberof
|
|
520
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
515
521
|
*/
|
|
516
522
|
readonly filters?: string
|
|
517
523
|
}
|
|
@@ -589,20 +595,21 @@ export class ClaimLimitUsagesApi extends BaseAPI {
|
|
|
589
595
|
/**
|
|
590
596
|
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
591
597
|
* @summary Retrieve the claim limit usage
|
|
592
|
-
* @param {
|
|
598
|
+
* @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
|
|
593
599
|
* @param {*} [options] Override http request option.
|
|
594
600
|
* @throws {RequiredError}
|
|
595
601
|
* @memberof ClaimLimitUsagesApi
|
|
596
602
|
*/
|
|
597
|
-
public
|
|
598
|
-
return ClaimLimitUsagesApiFp(this.configuration).
|
|
603
|
+
public getClaimLimitUsage(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsageRequest, options?: AxiosRequestConfig) {
|
|
604
|
+
return ClaimLimitUsagesApiFp(this.configuration).getClaimLimitUsage(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
599
605
|
}
|
|
600
606
|
|
|
601
607
|
/**
|
|
602
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
608
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
603
609
|
* @summary Retrieve the claim limit usage
|
|
604
610
|
* @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
|
|
605
611
|
* @param {*} [options] Override http request option.
|
|
612
|
+
* @deprecated
|
|
606
613
|
* @throws {RequiredError}
|
|
607
614
|
* @memberof ClaimLimitUsagesApi
|
|
608
615
|
*/
|
|
@@ -613,20 +620,21 @@ export class ClaimLimitUsagesApi extends BaseAPI {
|
|
|
613
620
|
/**
|
|
614
621
|
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
615
622
|
* @summary List claim limit usages
|
|
616
|
-
* @param {
|
|
623
|
+
* @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
|
|
617
624
|
* @param {*} [options] Override http request option.
|
|
618
625
|
* @throws {RequiredError}
|
|
619
626
|
* @memberof ClaimLimitUsagesApi
|
|
620
627
|
*/
|
|
621
|
-
public
|
|
622
|
-
return ClaimLimitUsagesApiFp(this.configuration).
|
|
628
|
+
public listClaimLimitUsages(requestParameters: ClaimLimitUsagesApiListClaimLimitUsagesRequest = {}, options?: AxiosRequestConfig) {
|
|
629
|
+
return ClaimLimitUsagesApiFp(this.configuration).listClaimLimitUsages(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
623
630
|
}
|
|
624
631
|
|
|
625
632
|
/**
|
|
626
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
633
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
627
634
|
* @summary List claim limit usages
|
|
628
635
|
* @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
|
|
629
636
|
* @param {*} [options] Override http request option.
|
|
637
|
+
* @deprecated
|
|
630
638
|
* @throws {RequiredError}
|
|
631
639
|
* @memberof ClaimLimitUsagesApi
|
|
632
640
|
*/
|