@emilgroup/claim-sdk 1.43.1-beta.1 → 1.43.1-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +45 -53
- package/api/claim-partner-roles-api.ts +107 -127
- package/api/claim-partners-api.ts +87 -103
- package/api/claim-positions-api.ts +153 -181
- package/api/claim-regulations-api.ts +108 -128
- package/api/claim-statuses-api.ts +129 -153
- package/api/claims-api.ts +149 -177
- package/api/health-check-api.ts +38 -46
- package/api/settlements-api.ts +107 -127
- package/base.ts +1 -0
- package/dist/api/claim-limit-usages-api.d.ts +34 -42
- package/dist/api/claim-limit-usages-api.js +29 -37
- package/dist/api/claim-partner-roles-api.d.ts +77 -97
- package/dist/api/claim-partner-roles-api.js +75 -95
- package/dist/api/claim-partners-api.d.ts +63 -79
- package/dist/api/claim-partners-api.js +60 -76
- package/dist/api/claim-positions-api.d.ts +108 -136
- package/dist/api/claim-positions-api.js +108 -136
- package/dist/api/claim-regulations-api.d.ts +78 -98
- package/dist/api/claim-regulations-api.js +75 -95
- package/dist/api/claim-statuses-api.d.ts +92 -116
- package/dist/api/claim-statuses-api.js +91 -115
- package/dist/api/claims-api.d.ts +106 -134
- package/dist/api/claims-api.js +106 -134
- package/dist/api/health-check-api.d.ts +24 -32
- package/dist/api/health-check-api.js +38 -46
- package/dist/api/settlements-api.d.ts +77 -97
- package/dist/api/settlements-api.js +75 -95
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- 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.10 --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.10
|
|
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
|
+
getClaimLimitUsage0: 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 = `/
|
|
43
|
+
assertParamExists('getClaimLimitUsage0', 'code', code)
|
|
44
|
+
const localVarPath = `/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,18 +76,17 @@ 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\"
|
|
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
|
|
85
84
|
* @throws {RequiredError}
|
|
86
85
|
*/
|
|
87
86
|
getClaimLimitUsage1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
88
87
|
// verify required parameter 'code' is not null or undefined
|
|
89
88
|
assertParamExists('getClaimLimitUsage1', 'code', code)
|
|
90
|
-
const localVarPath = `/v1/claim-limit-usages/{code}`
|
|
89
|
+
const localVarPath = `/claimservice/v1/claim-limit-usages/{code}`
|
|
91
90
|
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
92
91
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
93
92
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -135,8 +134,8 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
135
134
|
* @param {*} [options] Override http request option.
|
|
136
135
|
* @throws {RequiredError}
|
|
137
136
|
*/
|
|
138
|
-
|
|
139
|
-
const localVarPath = `/
|
|
137
|
+
listClaimLimitUsages0: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
138
|
+
const localVarPath = `/v1/claim-limit-usages`;
|
|
140
139
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
141
140
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
142
141
|
let baseOptions;
|
|
@@ -198,7 +197,7 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
198
197
|
};
|
|
199
198
|
},
|
|
200
199
|
/**
|
|
201
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
200
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
202
201
|
* @summary List claim limit usages
|
|
203
202
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
204
203
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -209,11 +208,10 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
|
|
|
209
208
|
* @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/>
|
|
210
209
|
* @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>
|
|
211
210
|
* @param {*} [options] Override http request option.
|
|
212
|
-
* @deprecated
|
|
213
211
|
* @throws {RequiredError}
|
|
214
212
|
*/
|
|
215
213
|
listClaimLimitUsages1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
216
|
-
const localVarPath = `/v1/claim-limit-usages`;
|
|
214
|
+
const localVarPath = `/claimservice/v1/claim-limit-usages`;
|
|
217
215
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
218
216
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
219
217
|
let baseOptions;
|
|
@@ -292,17 +290,16 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
292
290
|
* @param {*} [options] Override http request option.
|
|
293
291
|
* @throws {RequiredError}
|
|
294
292
|
*/
|
|
295
|
-
async
|
|
296
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
293
|
+
async getClaimLimitUsage0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
|
|
294
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimLimitUsage0(code, authorization, options);
|
|
297
295
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
298
296
|
},
|
|
299
297
|
/**
|
|
300
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
298
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
301
299
|
* @summary Retrieve the claim limit usage
|
|
302
300
|
* @param {string} code
|
|
303
301
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
304
302
|
* @param {*} [options] Override http request option.
|
|
305
|
-
* @deprecated
|
|
306
303
|
* @throws {RequiredError}
|
|
307
304
|
*/
|
|
308
305
|
async getClaimLimitUsage1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
|
|
@@ -323,12 +320,12 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
323
320
|
* @param {*} [options] Override http request option.
|
|
324
321
|
* @throws {RequiredError}
|
|
325
322
|
*/
|
|
326
|
-
async
|
|
327
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
323
|
+
async listClaimLimitUsages0(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>> {
|
|
324
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
328
325
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
329
326
|
},
|
|
330
327
|
/**
|
|
331
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
328
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
332
329
|
* @summary List claim limit usages
|
|
333
330
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
334
331
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -339,7 +336,6 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
|
|
|
339
336
|
* @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/>
|
|
340
337
|
* @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>
|
|
341
338
|
* @param {*} [options] Override http request option.
|
|
342
|
-
* @deprecated
|
|
343
339
|
* @throws {RequiredError}
|
|
344
340
|
*/
|
|
345
341
|
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>> {
|
|
@@ -364,16 +360,15 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
364
360
|
* @param {*} [options] Override http request option.
|
|
365
361
|
* @throws {RequiredError}
|
|
366
362
|
*/
|
|
367
|
-
|
|
368
|
-
return localVarFp.
|
|
363
|
+
getClaimLimitUsage0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
|
|
364
|
+
return localVarFp.getClaimLimitUsage0(code, authorization, options).then((request) => request(axios, basePath));
|
|
369
365
|
},
|
|
370
366
|
/**
|
|
371
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
367
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
372
368
|
* @summary Retrieve the claim limit usage
|
|
373
369
|
* @param {string} code
|
|
374
370
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
375
371
|
* @param {*} [options] Override http request option.
|
|
376
|
-
* @deprecated
|
|
377
372
|
* @throws {RequiredError}
|
|
378
373
|
*/
|
|
379
374
|
getClaimLimitUsage1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
|
|
@@ -393,11 +388,11 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
393
388
|
* @param {*} [options] Override http request option.
|
|
394
389
|
* @throws {RequiredError}
|
|
395
390
|
*/
|
|
396
|
-
|
|
397
|
-
return localVarFp.
|
|
391
|
+
listClaimLimitUsages0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
|
|
392
|
+
return localVarFp.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
398
393
|
},
|
|
399
394
|
/**
|
|
400
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
395
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
401
396
|
* @summary List claim limit usages
|
|
402
397
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
398
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -408,7 +403,6 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
408
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/>
|
|
409
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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
410
405
|
* @param {*} [options] Override http request option.
|
|
411
|
-
* @deprecated
|
|
412
406
|
* @throws {RequiredError}
|
|
413
407
|
*/
|
|
414
408
|
listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
|
|
@@ -418,22 +412,22 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
|
|
|
418
412
|
};
|
|
419
413
|
|
|
420
414
|
/**
|
|
421
|
-
* Request parameters for
|
|
415
|
+
* Request parameters for getClaimLimitUsage0 operation in ClaimLimitUsagesApi.
|
|
422
416
|
* @export
|
|
423
|
-
* @interface
|
|
417
|
+
* @interface ClaimLimitUsagesApiGetClaimLimitUsage0Request
|
|
424
418
|
*/
|
|
425
|
-
export interface
|
|
419
|
+
export interface ClaimLimitUsagesApiGetClaimLimitUsage0Request {
|
|
426
420
|
/**
|
|
427
421
|
*
|
|
428
422
|
* @type {string}
|
|
429
|
-
* @memberof
|
|
423
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
|
|
430
424
|
*/
|
|
431
425
|
readonly code: string
|
|
432
426
|
|
|
433
427
|
/**
|
|
434
428
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
435
429
|
* @type {string}
|
|
436
|
-
* @memberof
|
|
430
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
|
|
437
431
|
*/
|
|
438
432
|
readonly authorization?: string
|
|
439
433
|
}
|
|
@@ -460,64 +454,64 @@ export interface ClaimLimitUsagesApiGetClaimLimitUsage1Request {
|
|
|
460
454
|
}
|
|
461
455
|
|
|
462
456
|
/**
|
|
463
|
-
* Request parameters for
|
|
457
|
+
* Request parameters for listClaimLimitUsages0 operation in ClaimLimitUsagesApi.
|
|
464
458
|
* @export
|
|
465
|
-
* @interface
|
|
459
|
+
* @interface ClaimLimitUsagesApiListClaimLimitUsages0Request
|
|
466
460
|
*/
|
|
467
|
-
export interface
|
|
461
|
+
export interface ClaimLimitUsagesApiListClaimLimitUsages0Request {
|
|
468
462
|
/**
|
|
469
463
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
470
464
|
* @type {string}
|
|
471
|
-
* @memberof
|
|
465
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
472
466
|
*/
|
|
473
467
|
readonly authorization?: string
|
|
474
468
|
|
|
475
469
|
/**
|
|
476
470
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
477
471
|
* @type {number}
|
|
478
|
-
* @memberof
|
|
472
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
479
473
|
*/
|
|
480
474
|
readonly pageSize?: number
|
|
481
475
|
|
|
482
476
|
/**
|
|
483
477
|
* 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.
|
|
484
478
|
* @type {string}
|
|
485
|
-
* @memberof
|
|
479
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
486
480
|
*/
|
|
487
481
|
readonly pageToken?: string
|
|
488
482
|
|
|
489
483
|
/**
|
|
490
484
|
* 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>
|
|
491
485
|
* @type {string}
|
|
492
|
-
* @memberof
|
|
486
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
493
487
|
*/
|
|
494
488
|
readonly filter?: string
|
|
495
489
|
|
|
496
490
|
/**
|
|
497
491
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
498
492
|
* @type {string}
|
|
499
|
-
* @memberof
|
|
493
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
500
494
|
*/
|
|
501
495
|
readonly search?: string
|
|
502
496
|
|
|
503
497
|
/**
|
|
504
498
|
* 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>
|
|
505
499
|
* @type {string}
|
|
506
|
-
* @memberof
|
|
500
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
507
501
|
*/
|
|
508
502
|
readonly order?: string
|
|
509
503
|
|
|
510
504
|
/**
|
|
511
505
|
* 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/>
|
|
512
506
|
* @type {string}
|
|
513
|
-
* @memberof
|
|
507
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
514
508
|
*/
|
|
515
509
|
readonly expand?: string
|
|
516
510
|
|
|
517
511
|
/**
|
|
518
512
|
* 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>
|
|
519
513
|
* @type {string}
|
|
520
|
-
* @memberof
|
|
514
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages0
|
|
521
515
|
*/
|
|
522
516
|
readonly filters?: string
|
|
523
517
|
}
|
|
@@ -595,21 +589,20 @@ export class ClaimLimitUsagesApi extends BaseAPI {
|
|
|
595
589
|
/**
|
|
596
590
|
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
597
591
|
* @summary Retrieve the claim limit usage
|
|
598
|
-
* @param {
|
|
592
|
+
* @param {ClaimLimitUsagesApiGetClaimLimitUsage0Request} requestParameters Request parameters.
|
|
599
593
|
* @param {*} [options] Override http request option.
|
|
600
594
|
* @throws {RequiredError}
|
|
601
595
|
* @memberof ClaimLimitUsagesApi
|
|
602
596
|
*/
|
|
603
|
-
public
|
|
604
|
-
return ClaimLimitUsagesApiFp(this.configuration).
|
|
597
|
+
public getClaimLimitUsage0(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsage0Request, options?: AxiosRequestConfig) {
|
|
598
|
+
return ClaimLimitUsagesApiFp(this.configuration).getClaimLimitUsage0(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
605
599
|
}
|
|
606
600
|
|
|
607
601
|
/**
|
|
608
|
-
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
602
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
609
603
|
* @summary Retrieve the claim limit usage
|
|
610
604
|
* @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
|
|
611
605
|
* @param {*} [options] Override http request option.
|
|
612
|
-
* @deprecated
|
|
613
606
|
* @throws {RequiredError}
|
|
614
607
|
* @memberof ClaimLimitUsagesApi
|
|
615
608
|
*/
|
|
@@ -620,21 +613,20 @@ export class ClaimLimitUsagesApi extends BaseAPI {
|
|
|
620
613
|
/**
|
|
621
614
|
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
622
615
|
* @summary List claim limit usages
|
|
623
|
-
* @param {
|
|
616
|
+
* @param {ClaimLimitUsagesApiListClaimLimitUsages0Request} requestParameters Request parameters.
|
|
624
617
|
* @param {*} [options] Override http request option.
|
|
625
618
|
* @throws {RequiredError}
|
|
626
619
|
* @memberof ClaimLimitUsagesApi
|
|
627
620
|
*/
|
|
628
|
-
public
|
|
629
|
-
return ClaimLimitUsagesApiFp(this.configuration).
|
|
621
|
+
public listClaimLimitUsages0(requestParameters: ClaimLimitUsagesApiListClaimLimitUsages0Request = {}, options?: AxiosRequestConfig) {
|
|
622
|
+
return ClaimLimitUsagesApiFp(this.configuration).listClaimLimitUsages0(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
630
623
|
}
|
|
631
624
|
|
|
632
625
|
/**
|
|
633
|
-
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
626
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
634
627
|
* @summary List claim limit usages
|
|
635
628
|
* @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
|
|
636
629
|
* @param {*} [options] Override http request option.
|
|
637
|
-
* @deprecated
|
|
638
630
|
* @throws {RequiredError}
|
|
639
631
|
* @memberof ClaimLimitUsagesApi
|
|
640
632
|
*/
|