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