@emilgroup/claim-sdk-node 1.39.1-beta.8 → 1.40.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.
Files changed (87) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/README.md +2 -2
  3. package/api/claim-limit-usages-api.ts +24 -24
  4. package/api/claim-partner-roles-api.ts +24 -24
  5. package/api/claim-partners-api.ts +24 -24
  6. package/api/claim-positions-api.ts +496 -16
  7. package/api/claim-regulations-api.ts +24 -24
  8. package/api/claim-statuses-api.ts +24 -24
  9. package/api/claims-api.ts +48 -48
  10. package/api/settlements-api.ts +24 -24
  11. package/dist/api/claim-limit-usages-api.d.ts +24 -24
  12. package/dist/api/claim-limit-usages-api.js +18 -18
  13. package/dist/api/claim-partner-roles-api.d.ts +24 -24
  14. package/dist/api/claim-partner-roles-api.js +20 -20
  15. package/dist/api/claim-partners-api.d.ts +24 -24
  16. package/dist/api/claim-partners-api.js +20 -20
  17. package/dist/api/claim-positions-api.d.ts +284 -16
  18. package/dist/api/claim-positions-api.js +416 -12
  19. package/dist/api/claim-regulations-api.d.ts +24 -24
  20. package/dist/api/claim-regulations-api.js +20 -20
  21. package/dist/api/claim-statuses-api.d.ts +24 -24
  22. package/dist/api/claim-statuses-api.js +20 -20
  23. package/dist/api/claims-api.d.ts +48 -48
  24. package/dist/api/claims-api.js +38 -38
  25. package/dist/api/settlements-api.d.ts +24 -24
  26. package/dist/api/settlements-api.js +20 -20
  27. package/dist/models/batch-upsert-claim-position-input-dto.d.ts +72 -0
  28. package/dist/models/batch-upsert-claim-position-input-dto.js +15 -0
  29. package/dist/models/batch-upsert-claim-positions-request-dto.d.ts +31 -0
  30. package/dist/models/batch-upsert-claim-positions-request-dto.js +15 -0
  31. package/dist/models/batch-upsert-claim-positions-response-class.d.ts +32 -0
  32. package/dist/models/batch-upsert-claim-positions-response-class.js +15 -0
  33. package/dist/models/calculate-claim-positions-request-dto.d.ts +31 -0
  34. package/dist/models/calculate-claim-positions-request-dto.js +15 -0
  35. package/dist/models/calculate-claim-positions-response-class.d.ts +32 -0
  36. package/dist/models/calculate-claim-positions-response-class.js +15 -0
  37. package/dist/models/calculated-claim-position-class.d.ts +74 -0
  38. package/dist/models/calculated-claim-position-class.js +15 -0
  39. package/dist/models/calculation-totals-class.d.ts +30 -0
  40. package/dist/models/calculation-totals-class.js +15 -0
  41. package/dist/models/claim-applied-deductible-class.d.ts +1 -1
  42. package/dist/models/claim-class.d.ts +24 -0
  43. package/dist/models/claim-limit-usage-class.d.ts +8 -0
  44. package/dist/models/claim-limit-usage-class.js +2 -0
  45. package/dist/models/claim-position-calculation-input-dto.d.ts +48 -0
  46. package/dist/models/claim-position-calculation-input-dto.js +15 -0
  47. package/dist/models/claim-position-class.d.ts +8 -1
  48. package/dist/models/claim-position-class.js +3 -2
  49. package/dist/models/create-claim-position-response-class.d.ts +1 -1
  50. package/dist/models/create-claim-request-dto.d.ts +12 -0
  51. package/dist/models/create-regulation-item-request-dto.d.ts +4 -3
  52. package/dist/models/get-claim-position-response-class.d.ts +1 -1
  53. package/dist/models/index.d.ts +8 -0
  54. package/dist/models/index.js +8 -0
  55. package/dist/models/list-claim-positions-response-class.d.ts +1 -1
  56. package/dist/models/patch-claim-request-dto.d.ts +12 -0
  57. package/dist/models/regulation-item-class.d.ts +6 -0
  58. package/dist/models/update-claim-position-request-dto.d.ts +6 -0
  59. package/dist/models/update-claim-position-response-class.d.ts +1 -1
  60. package/dist/models/update-claim-request-dto.d.ts +12 -0
  61. package/dist/models/update-regulation-item-request-dto.d.ts +24 -0
  62. package/dist/models/update-regulation-item-request-dto.js +5 -1
  63. package/models/batch-upsert-claim-position-input-dto.ts +78 -0
  64. package/models/batch-upsert-claim-positions-request-dto.ts +37 -0
  65. package/models/batch-upsert-claim-positions-response-class.ts +38 -0
  66. package/models/calculate-claim-positions-request-dto.ts +37 -0
  67. package/models/calculate-claim-positions-response-class.ts +38 -0
  68. package/models/calculated-claim-position-class.ts +80 -0
  69. package/models/calculation-totals-class.ts +36 -0
  70. package/models/claim-applied-deductible-class.ts +1 -1
  71. package/models/claim-class.ts +24 -0
  72. package/models/claim-limit-usage-class.ts +8 -0
  73. package/models/claim-position-calculation-input-dto.ts +54 -0
  74. package/models/claim-position-class.ts +9 -2
  75. package/models/create-claim-position-response-class.ts +1 -1
  76. package/models/create-claim-request-dto.ts +12 -0
  77. package/models/create-regulation-item-request-dto.ts +4 -3
  78. package/models/get-claim-position-response-class.ts +1 -1
  79. package/models/index.ts +8 -0
  80. package/models/list-claim-positions-response-class.ts +1 -1
  81. package/models/patch-claim-request-dto.ts +12 -0
  82. package/models/regulation-item-class.ts +6 -0
  83. package/models/update-claim-position-request-dto.ts +6 -0
  84. package/models/update-claim-position-response-class.ts +1 -1
  85. package/models/update-claim-request-dto.ts +12 -0
  86. package/models/update-regulation-item-request-dto.ts +25 -0
  87. package/package.json +1 -1
@@ -324,16 +324,16 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
324
324
  };
325
325
  },
326
326
  /**
327
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
327
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
328
328
  * @summary List claim partners
329
329
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
330
330
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
331
331
  * @param {string} [pageToken] 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.
332
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
332
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
333
333
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
334
334
  * @param {string} [order] 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, createdAt, updatedAt</i>
335
335
  * @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/> <i>Allowed values: role, partner<i>
336
- * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
336
+ * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
337
337
  * @param {*} [options] Override http request option.
338
338
  * @throws {RequiredError}
339
339
  */
@@ -400,16 +400,16 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
400
400
  };
401
401
  },
402
402
  /**
403
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
403
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
404
404
  * @summary List claim partners
405
405
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
406
406
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
407
407
  * @param {string} [pageToken] 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.
408
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
408
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
409
409
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
410
410
  * @param {string} [order] 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, createdAt, updatedAt</i>
411
411
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: role, partner<i>
412
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
412
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
413
413
  * @param {*} [options] Override http request option.
414
414
  * @deprecated
415
415
  * @throws {RequiredError}
@@ -564,16 +564,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
564
564
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
565
565
  },
566
566
  /**
567
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
567
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
568
568
  * @summary List claim partners
569
569
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
570
570
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
571
571
  * @param {string} [pageToken] 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.
572
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
572
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
573
573
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
574
574
  * @param {string} [order] 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, createdAt, updatedAt</i>
575
575
  * @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/> <i>Allowed values: role, partner<i>
576
- * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
576
+ * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
577
577
  * @param {*} [options] Override http request option.
578
578
  * @throws {RequiredError}
579
579
  */
@@ -582,16 +582,16 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
582
582
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
583
583
  },
584
584
  /**
585
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
585
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
586
586
  * @summary List claim partners
587
587
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
588
588
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
589
589
  * @param {string} [pageToken] 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.
590
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
590
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
591
591
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
592
592
  * @param {string} [order] 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, createdAt, updatedAt</i>
593
593
  * @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/> <i>Allowed values: role, partner<i>
594
- * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
594
+ * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
595
595
  * @param {*} [options] Override http request option.
596
596
  * @deprecated
597
597
  * @throws {RequiredError}
@@ -682,16 +682,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
682
682
  return localVarFp.getClaimPartner1(id, authorization, options).then((request) => request(axios, basePath));
683
683
  },
684
684
  /**
685
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
685
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
686
686
  * @summary List claim partners
687
687
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
688
688
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
689
689
  * @param {string} [pageToken] 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.
690
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
690
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
691
691
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
692
692
  * @param {string} [order] 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, createdAt, updatedAt</i>
693
693
  * @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/> <i>Allowed values: role, partner<i>
694
- * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
694
+ * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
695
695
  * @param {*} [options] Override http request option.
696
696
  * @throws {RequiredError}
697
697
  */
@@ -699,16 +699,16 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
699
699
  return localVarFp.listClaimPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
700
700
  },
701
701
  /**
702
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
702
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
703
703
  * @summary List claim partners
704
704
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
705
705
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
706
706
  * @param {string} [pageToken] 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.
707
- * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
707
+ * @param {string} [filter] 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: partnerCode, claimPartnerRoleCode, claimCode</i>
708
708
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
709
709
  * @param {string} [order] 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, createdAt, updatedAt</i>
710
710
  * @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/> <i>Allowed values: role, partner<i>
711
- * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
711
+ * @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: partnerCode, claimPartnerRoleCode, claimCode</i>
712
712
  * @param {*} [options] Override http request option.
713
713
  * @deprecated
714
714
  * @throws {RequiredError}
@@ -887,7 +887,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
887
887
  readonly pageToken?: string
888
888
 
889
889
  /**
890
- * 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: partnerCode, claimPartnerRoleCode, claimCode</i>
890
+ * 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: partnerCode, claimPartnerRoleCode, claimCode</i>
891
891
  * @type {string}
892
892
  * @memberof ClaimPartnersApiListClaimPartners
893
893
  */
@@ -915,7 +915,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
915
915
  readonly expand?: string
916
916
 
917
917
  /**
918
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
918
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
919
919
  * @type {string}
920
920
  * @memberof ClaimPartnersApiListClaimPartners
921
921
  */
@@ -950,7 +950,7 @@ export interface ClaimPartnersApiListClaimPartners1Request {
950
950
  readonly pageToken?: string
951
951
 
952
952
  /**
953
- * 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: partnerCode, claimPartnerRoleCode, claimCode</i>
953
+ * 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: partnerCode, claimPartnerRoleCode, claimCode</i>
954
954
  * @type {string}
955
955
  * @memberof ClaimPartnersApiListClaimPartners1
956
956
  */
@@ -978,7 +978,7 @@ export interface ClaimPartnersApiListClaimPartners1Request {
978
978
  readonly expand?: string
979
979
 
980
980
  /**
981
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
981
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
982
982
  * @type {string}
983
983
  * @memberof ClaimPartnersApiListClaimPartners1
984
984
  */
@@ -1068,7 +1068,7 @@ export class ClaimPartnersApi extends BaseAPI {
1068
1068
  }
1069
1069
 
1070
1070
  /**
1071
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
1071
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
1072
1072
  * @summary List claim partners
1073
1073
  * @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
1074
1074
  * @param {*} [options] Override http request option.
@@ -1080,7 +1080,7 @@ export class ClaimPartnersApi extends BaseAPI {
1080
1080
  }
1081
1081
 
1082
1082
  /**
1083
- * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1083
+ * Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1084
1084
  * @summary List claim partners
1085
1085
  * @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
1086
1086
  * @param {*} [options] Override http request option.