@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.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 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.1-beta.0 --save
20
+ npm install @emilgroup/claim-sdk-node@1.41.1-beta.1 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk-node@1.41.1-beta.0
24
+ yarn add @emilgroup/claim-sdk-node@1.41.1-beta.1
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
- getClaimLimitUsage0: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
45
+ getClaimLimitUsage: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
46
46
  // verify required parameter 'code' is not null or undefined
47
- assertParamExists('getClaimLimitUsage0', 'code', code)
48
- const localVarPath = `/v1/claim-limit-usages/{code}`
47
+ assertParamExists('getClaimLimitUsage', 'code', code)
48
+ const localVarPath = `/claimservice/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,17 +80,18 @@ 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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
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
88
89
  * @throws {RequiredError}
89
90
  */
90
91
  getClaimLimitUsage1: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
91
92
  // verify required parameter 'code' is not null or undefined
92
93
  assertParamExists('getClaimLimitUsage1', 'code', code)
93
- const localVarPath = `/claimservice/v1/claim-limit-usages/{code}`
94
+ const localVarPath = `/v1/claim-limit-usages/{code}`
94
95
  .replace(`{${"code"}}`, encodeURIComponent(String(code)));
95
96
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
96
97
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -138,8 +139,8 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
138
139
  * @param {*} [options] Override http request option.
139
140
  * @throws {RequiredError}
140
141
  */
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`;
142
+ listClaimLimitUsages: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
143
+ const localVarPath = `/claimservice/v1/claim-limit-usages`;
143
144
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
144
145
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
145
146
  let baseOptions;
@@ -201,7 +202,7 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
201
202
  };
202
203
  },
203
204
  /**
204
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
205
+ * 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.
205
206
  * @summary List claim limit usages
206
207
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
207
208
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -212,10 +213,11 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
212
213
  * @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.&lt;br/&gt; &lt;br/&gt;
213
214
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
214
215
  * @param {*} [options] Override http request option.
216
+ * @deprecated
215
217
  * @throws {RequiredError}
216
218
  */
217
219
  listClaimLimitUsages1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
218
- const localVarPath = `/claimservice/v1/claim-limit-usages`;
220
+ const localVarPath = `/v1/claim-limit-usages`;
219
221
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
220
222
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
221
223
  let baseOptions;
@@ -294,16 +296,17 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
294
296
  * @param {*} [options] Override http request option.
295
297
  * @throws {RequiredError}
296
298
  */
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);
299
+ async getClaimLimitUsage(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
300
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimLimitUsage(code, authorization, options);
299
301
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
300
302
  },
301
303
  /**
302
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
304
+ * 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.
303
305
  * @summary Retrieve the claim limit usage
304
306
  * @param {string} code
305
307
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
306
308
  * @param {*} [options] Override http request option.
309
+ * @deprecated
307
310
  * @throws {RequiredError}
308
311
  */
309
312
  async getClaimLimitUsage1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>> {
@@ -324,12 +327,12 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
324
327
  * @param {*} [options] Override http request option.
325
328
  * @throws {RequiredError}
326
329
  */
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);
330
+ 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>> {
331
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
329
332
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
330
333
  },
331
334
  /**
332
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
335
+ * 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.
333
336
  * @summary List claim limit usages
334
337
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
335
338
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -340,6 +343,7 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
340
343
  * @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.&lt;br/&gt; &lt;br/&gt;
341
344
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
342
345
  * @param {*} [options] Override http request option.
346
+ * @deprecated
343
347
  * @throws {RequiredError}
344
348
  */
345
349
  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,15 +368,16 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
364
368
  * @param {*} [options] Override http request option.
365
369
  * @throws {RequiredError}
366
370
  */
367
- getClaimLimitUsage0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
368
- return localVarFp.getClaimLimitUsage0(code, authorization, options).then((request) => request(axios, basePath));
371
+ getClaimLimitUsage(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
372
+ return localVarFp.getClaimLimitUsage(code, authorization, options).then((request) => request(axios, basePath));
369
373
  },
370
374
  /**
371
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
375
+ * 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.
372
376
  * @summary Retrieve the claim limit usage
373
377
  * @param {string} code
374
378
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
375
379
  * @param {*} [options] Override http request option.
380
+ * @deprecated
376
381
  * @throws {RequiredError}
377
382
  */
378
383
  getClaimLimitUsage1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass> {
@@ -392,11 +397,11 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
392
397
  * @param {*} [options] Override http request option.
393
398
  * @throws {RequiredError}
394
399
  */
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));
400
+ listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
401
+ return localVarFp.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
397
402
  },
398
403
  /**
399
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
404
+ * 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.
400
405
  * @summary List claim limit usages
401
406
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
402
407
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -407,6 +412,7 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
407
412
  * @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.&lt;br/&gt; &lt;br/&gt;
408
413
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
409
414
  * @param {*} [options] Override http request option.
415
+ * @deprecated
410
416
  * @throws {RequiredError}
411
417
  */
412
418
  listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass> {
@@ -416,22 +422,22 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
416
422
  };
417
423
 
418
424
  /**
419
- * Request parameters for getClaimLimitUsage0 operation in ClaimLimitUsagesApi.
425
+ * Request parameters for getClaimLimitUsage operation in ClaimLimitUsagesApi.
420
426
  * @export
421
- * @interface ClaimLimitUsagesApiGetClaimLimitUsage0Request
427
+ * @interface ClaimLimitUsagesApiGetClaimLimitUsageRequest
422
428
  */
423
- export interface ClaimLimitUsagesApiGetClaimLimitUsage0Request {
429
+ export interface ClaimLimitUsagesApiGetClaimLimitUsageRequest {
424
430
  /**
425
431
  *
426
432
  * @type {string}
427
- * @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
433
+ * @memberof ClaimLimitUsagesApiGetClaimLimitUsage
428
434
  */
429
435
  readonly code: string
430
436
 
431
437
  /**
432
438
  * Bearer Token: provided by the login endpoint under the name accessToken.
433
439
  * @type {string}
434
- * @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
440
+ * @memberof ClaimLimitUsagesApiGetClaimLimitUsage
435
441
  */
436
442
  readonly authorization?: string
437
443
  }
@@ -458,64 +464,64 @@ export interface ClaimLimitUsagesApiGetClaimLimitUsage1Request {
458
464
  }
459
465
 
460
466
  /**
461
- * Request parameters for listClaimLimitUsages0 operation in ClaimLimitUsagesApi.
467
+ * Request parameters for listClaimLimitUsages operation in ClaimLimitUsagesApi.
462
468
  * @export
463
- * @interface ClaimLimitUsagesApiListClaimLimitUsages0Request
469
+ * @interface ClaimLimitUsagesApiListClaimLimitUsagesRequest
464
470
  */
465
- export interface ClaimLimitUsagesApiListClaimLimitUsages0Request {
471
+ export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
466
472
  /**
467
473
  * Bearer Token: provided by the login endpoint under the name accessToken.
468
474
  * @type {string}
469
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
475
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
470
476
  */
471
477
  readonly authorization?: string
472
478
 
473
479
  /**
474
480
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
475
481
  * @type {number}
476
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
482
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
477
483
  */
478
484
  readonly pageSize?: number
479
485
 
480
486
  /**
481
487
  * 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
482
488
  * @type {string}
483
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
489
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
484
490
  */
485
491
  readonly pageToken?: string
486
492
 
487
493
  /**
488
494
  * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
489
495
  * @type {string}
490
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
496
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
491
497
  */
492
498
  readonly filter?: string
493
499
 
494
500
  /**
495
501
  * To search the list by any field, pass search&#x3D;xxx to fetch the result.
496
502
  * @type {string}
497
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
503
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
498
504
  */
499
505
  readonly search?: string
500
506
 
501
507
  /**
502
508
  * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount&lt;/i&gt;
503
509
  * @type {string}
504
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
510
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
505
511
  */
506
512
  readonly order?: string
507
513
 
508
514
  /**
509
515
  * 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.&lt;br/&gt; &lt;br/&gt;
510
516
  * @type {string}
511
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
517
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
512
518
  */
513
519
  readonly expand?: string
514
520
 
515
521
  /**
516
522
  * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
517
523
  * @type {string}
518
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
524
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages
519
525
  */
520
526
  readonly filters?: string
521
527
  }
@@ -593,20 +599,21 @@ export class ClaimLimitUsagesApi extends BaseAPI {
593
599
  /**
594
600
  * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
595
601
  * @summary Retrieve the claim limit usage
596
- * @param {ClaimLimitUsagesApiGetClaimLimitUsage0Request} requestParameters Request parameters.
602
+ * @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
597
603
  * @param {*} [options] Override http request option.
598
604
  * @throws {RequiredError}
599
605
  * @memberof ClaimLimitUsagesApi
600
606
  */
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));
607
+ public getClaimLimitUsage(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsageRequest, options?: AxiosRequestConfig) {
608
+ return ClaimLimitUsagesApiFp(this.configuration).getClaimLimitUsage(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
603
609
  }
604
610
 
605
611
  /**
606
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
612
+ * 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.
607
613
  * @summary Retrieve the claim limit usage
608
614
  * @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
609
615
  * @param {*} [options] Override http request option.
616
+ * @deprecated
610
617
  * @throws {RequiredError}
611
618
  * @memberof ClaimLimitUsagesApi
612
619
  */
@@ -617,20 +624,21 @@ export class ClaimLimitUsagesApi extends BaseAPI {
617
624
  /**
618
625
  * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
619
626
  * @summary List claim limit usages
620
- * @param {ClaimLimitUsagesApiListClaimLimitUsages0Request} requestParameters Request parameters.
627
+ * @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
621
628
  * @param {*} [options] Override http request option.
622
629
  * @throws {RequiredError}
623
630
  * @memberof ClaimLimitUsagesApi
624
631
  */
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));
632
+ public listClaimLimitUsages(requestParameters: ClaimLimitUsagesApiListClaimLimitUsagesRequest = {}, options?: AxiosRequestConfig) {
633
+ 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));
627
634
  }
628
635
 
629
636
  /**
630
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
637
+ * 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.
631
638
  * @summary List claim limit usages
632
639
  * @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
633
640
  * @param {*} [options] Override http request option.
641
+ * @deprecated
634
642
  * @throws {RequiredError}
635
643
  * @memberof ClaimLimitUsagesApi
636
644
  */