@emilgroup/claim-sdk 1.41.1-beta.8 → 1.42.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/.openapi-generator/FILES +8 -0
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +24 -24
- package/api/claim-partner-roles-api.ts +24 -24
- package/api/claim-partners-api.ts +24 -24
- package/api/claim-positions-api.ts +496 -16
- package/api/claim-regulations-api.ts +24 -24
- package/api/claim-statuses-api.ts +24 -24
- package/api/claims-api.ts +48 -48
- package/api/settlements-api.ts +24 -24
- package/dist/api/claim-limit-usages-api.d.ts +24 -24
- package/dist/api/claim-limit-usages-api.js +18 -18
- package/dist/api/claim-partner-roles-api.d.ts +24 -24
- package/dist/api/claim-partner-roles-api.js +20 -20
- package/dist/api/claim-partners-api.d.ts +24 -24
- package/dist/api/claim-partners-api.js +20 -20
- package/dist/api/claim-positions-api.d.ts +284 -16
- package/dist/api/claim-positions-api.js +416 -12
- package/dist/api/claim-regulations-api.d.ts +24 -24
- package/dist/api/claim-regulations-api.js +20 -20
- package/dist/api/claim-statuses-api.d.ts +24 -24
- package/dist/api/claim-statuses-api.js +20 -20
- package/dist/api/claims-api.d.ts +48 -48
- package/dist/api/claims-api.js +38 -38
- package/dist/api/settlements-api.d.ts +24 -24
- package/dist/api/settlements-api.js +20 -20
- package/dist/models/batch-upsert-claim-position-input-dto.d.ts +72 -0
- package/dist/models/batch-upsert-claim-position-input-dto.js +15 -0
- package/dist/models/batch-upsert-claim-positions-request-dto.d.ts +31 -0
- package/dist/models/batch-upsert-claim-positions-request-dto.js +15 -0
- package/dist/models/batch-upsert-claim-positions-response-class.d.ts +32 -0
- package/dist/models/batch-upsert-claim-positions-response-class.js +15 -0
- package/dist/models/calculate-claim-positions-request-dto.d.ts +31 -0
- package/dist/models/calculate-claim-positions-request-dto.js +15 -0
- package/dist/models/calculate-claim-positions-response-class.d.ts +32 -0
- package/dist/models/calculate-claim-positions-response-class.js +15 -0
- package/dist/models/calculated-claim-position-class.d.ts +74 -0
- package/dist/models/calculated-claim-position-class.js +15 -0
- package/dist/models/calculation-totals-class.d.ts +30 -0
- package/dist/models/calculation-totals-class.js +15 -0
- package/dist/models/claim-applied-deductible-class.d.ts +1 -1
- package/dist/models/claim-class.d.ts +24 -0
- package/dist/models/claim-limit-usage-class.d.ts +8 -0
- package/dist/models/claim-limit-usage-class.js +2 -0
- package/dist/models/claim-position-calculation-input-dto.d.ts +48 -0
- package/dist/models/claim-position-calculation-input-dto.js +15 -0
- package/dist/models/claim-position-class.d.ts +8 -1
- package/dist/models/claim-position-class.js +3 -2
- package/dist/models/create-claim-position-response-class.d.ts +1 -1
- package/dist/models/create-claim-request-dto.d.ts +12 -0
- package/dist/models/create-regulation-item-request-dto.d.ts +4 -3
- package/dist/models/get-claim-position-response-class.d.ts +1 -1
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/dist/models/list-claim-positions-response-class.d.ts +1 -1
- package/dist/models/patch-claim-request-dto.d.ts +12 -0
- package/dist/models/regulation-item-class.d.ts +6 -0
- package/dist/models/update-claim-position-request-dto.d.ts +6 -0
- package/dist/models/update-claim-position-response-class.d.ts +1 -1
- package/dist/models/update-claim-request-dto.d.ts +12 -0
- package/dist/models/update-regulation-item-request-dto.d.ts +24 -0
- package/dist/models/update-regulation-item-request-dto.js +5 -1
- package/models/batch-upsert-claim-position-input-dto.ts +78 -0
- package/models/batch-upsert-claim-positions-request-dto.ts +37 -0
- package/models/batch-upsert-claim-positions-response-class.ts +38 -0
- package/models/calculate-claim-positions-request-dto.ts +37 -0
- package/models/calculate-claim-positions-response-class.ts +38 -0
- package/models/calculated-claim-position-class.ts +80 -0
- package/models/calculation-totals-class.ts +36 -0
- package/models/claim-applied-deductible-class.ts +1 -1
- package/models/claim-class.ts +24 -0
- package/models/claim-limit-usage-class.ts +8 -0
- package/models/claim-position-calculation-input-dto.ts +54 -0
- package/models/claim-position-class.ts +9 -2
- package/models/create-claim-position-response-class.ts +1 -1
- package/models/create-claim-request-dto.ts +12 -0
- package/models/create-regulation-item-request-dto.ts +4 -3
- package/models/get-claim-position-response-class.ts +1 -1
- package/models/index.ts +8 -0
- package/models/list-claim-positions-response-class.ts +1 -1
- package/models/patch-claim-request-dto.ts +12 -0
- package/models/regulation-item-class.ts +6 -0
- package/models/update-claim-position-request-dto.ts +6 -0
- package/models/update-claim-position-response-class.ts +1 -1
- package/models/update-claim-request-dto.ts +12 -0
- package/models/update-regulation-item-request-dto.ts +25 -0
- package/package.json +1 -1
package/api/claims-api.ts
CHANGED
|
@@ -413,16 +413,16 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
413
413
|
};
|
|
414
414
|
},
|
|
415
415
|
/**
|
|
416
|
-
* Returns a list of claims you have previously created.
|
|
416
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
417
417
|
* @summary List claims
|
|
418
418
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
419
419
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
420
420
|
* @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.
|
|
421
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
422
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
423
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
424
|
-
* @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: partners<i>
|
|
425
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
421
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
422
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
423
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
424
|
+
* @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: partners, appliedDeductibles<i>
|
|
425
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
426
426
|
* @param {*} [options] Override http request option.
|
|
427
427
|
* @throws {RequiredError}
|
|
428
428
|
*/
|
|
@@ -489,16 +489,16 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
489
489
|
};
|
|
490
490
|
},
|
|
491
491
|
/**
|
|
492
|
-
* Returns a list of claims you have previously created.
|
|
492
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
493
493
|
* @summary List claims
|
|
494
494
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
495
495
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
496
496
|
* @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.
|
|
497
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
498
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
499
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
500
|
-
* @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: partners<i>
|
|
501
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
497
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
498
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
499
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
500
|
+
* @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: partners, appliedDeductibles<i>
|
|
501
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
502
502
|
* @param {*} [options] Override http request option.
|
|
503
503
|
* @deprecated
|
|
504
504
|
* @throws {RequiredError}
|
|
@@ -882,16 +882,16 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
882
882
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
883
883
|
},
|
|
884
884
|
/**
|
|
885
|
-
* Returns a list of claims you have previously created.
|
|
885
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
886
886
|
* @summary List claims
|
|
887
887
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
888
888
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
889
889
|
* @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.
|
|
890
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
891
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
892
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
893
|
-
* @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: partners<i>
|
|
894
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
890
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
891
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
892
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
893
|
+
* @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: partners, appliedDeductibles<i>
|
|
894
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
895
895
|
* @param {*} [options] Override http request option.
|
|
896
896
|
* @throws {RequiredError}
|
|
897
897
|
*/
|
|
@@ -900,16 +900,16 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
900
900
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
901
901
|
},
|
|
902
902
|
/**
|
|
903
|
-
* Returns a list of claims you have previously created.
|
|
903
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
904
904
|
* @summary List claims
|
|
905
905
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
906
906
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
907
907
|
* @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.
|
|
908
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
909
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
910
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
911
|
-
* @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: partners<i>
|
|
912
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
908
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
909
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
910
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
911
|
+
* @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: partners, appliedDeductibles<i>
|
|
912
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
913
913
|
* @param {*} [options] Override http request option.
|
|
914
914
|
* @deprecated
|
|
915
915
|
* @throws {RequiredError}
|
|
@@ -1075,16 +1075,16 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
1075
1075
|
return localVarFp.getClaimRegulationSummary1(code, authorization, options).then((request) => request(axios, basePath));
|
|
1076
1076
|
},
|
|
1077
1077
|
/**
|
|
1078
|
-
* Returns a list of claims you have previously created.
|
|
1078
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
1079
1079
|
* @summary List claims
|
|
1080
1080
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1081
1081
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1082
1082
|
* @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.
|
|
1083
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1084
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
1085
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
1086
|
-
* @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: partners<i>
|
|
1087
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1083
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1084
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
1085
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
1086
|
+
* @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: partners, appliedDeductibles<i>
|
|
1087
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1088
1088
|
* @param {*} [options] Override http request option.
|
|
1089
1089
|
* @throws {RequiredError}
|
|
1090
1090
|
*/
|
|
@@ -1092,16 +1092,16 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
1092
1092
|
return localVarFp.listClaims(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
1093
1093
|
},
|
|
1094
1094
|
/**
|
|
1095
|
-
* Returns a list of claims you have previously created.
|
|
1095
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
1096
1096
|
* @summary List claims
|
|
1097
1097
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1098
1098
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1099
1099
|
* @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.
|
|
1100
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
1101
|
-
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
1102
|
-
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
1103
|
-
* @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: partners<i>
|
|
1104
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
1100
|
+
* @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: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1101
|
+
* @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: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
1102
|
+
* @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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
1103
|
+
* @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: partners, appliedDeductibles<i>
|
|
1104
|
+
* @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1105
1105
|
* @param {*} [options] Override http request option.
|
|
1106
1106
|
* @deprecated
|
|
1107
1107
|
* @throws {RequiredError}
|
|
@@ -1358,35 +1358,35 @@ export interface ClaimsApiListClaimsRequest {
|
|
|
1358
1358
|
readonly pageToken?: string
|
|
1359
1359
|
|
|
1360
1360
|
/**
|
|
1361
|
-
* Filter the response by one or multiple fields.
|
|
1361
|
+
* 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1362
1362
|
* @type {string}
|
|
1363
1363
|
* @memberof ClaimsApiListClaims
|
|
1364
1364
|
*/
|
|
1365
1365
|
readonly filter?: string
|
|
1366
1366
|
|
|
1367
1367
|
/**
|
|
1368
|
-
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
1368
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
1369
1369
|
* @type {string}
|
|
1370
1370
|
* @memberof ClaimsApiListClaims
|
|
1371
1371
|
*/
|
|
1372
1372
|
readonly search?: string
|
|
1373
1373
|
|
|
1374
1374
|
/**
|
|
1375
|
-
* 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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
1375
|
+
* 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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
1376
1376
|
* @type {string}
|
|
1377
1377
|
* @memberof ClaimsApiListClaims
|
|
1378
1378
|
*/
|
|
1379
1379
|
readonly order?: string
|
|
1380
1380
|
|
|
1381
1381
|
/**
|
|
1382
|
-
* 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: partners<i>
|
|
1382
|
+
* 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: partners, appliedDeductibles<i>
|
|
1383
1383
|
* @type {string}
|
|
1384
1384
|
* @memberof ClaimsApiListClaims
|
|
1385
1385
|
*/
|
|
1386
1386
|
readonly expand?: string
|
|
1387
1387
|
|
|
1388
1388
|
/**
|
|
1389
|
-
* Filters the response by one or multiple fields.
|
|
1389
|
+
* 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1390
1390
|
* @type {string}
|
|
1391
1391
|
* @memberof ClaimsApiListClaims
|
|
1392
1392
|
*/
|
|
@@ -1421,35 +1421,35 @@ export interface ClaimsApiListClaims1Request {
|
|
|
1421
1421
|
readonly pageToken?: string
|
|
1422
1422
|
|
|
1423
1423
|
/**
|
|
1424
|
-
* Filter the response by one or multiple fields.
|
|
1424
|
+
* 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1425
1425
|
* @type {string}
|
|
1426
1426
|
* @memberof ClaimsApiListClaims1
|
|
1427
1427
|
*/
|
|
1428
1428
|
readonly filter?: string
|
|
1429
1429
|
|
|
1430
1430
|
/**
|
|
1431
|
-
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
1431
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType</i>
|
|
1432
1432
|
* @type {string}
|
|
1433
1433
|
* @memberof ClaimsApiListClaims1
|
|
1434
1434
|
*/
|
|
1435
1435
|
readonly search?: string
|
|
1436
1436
|
|
|
1437
1437
|
/**
|
|
1438
|
-
* 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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
1438
|
+
* 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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount</i>
|
|
1439
1439
|
* @type {string}
|
|
1440
1440
|
* @memberof ClaimsApiListClaims1
|
|
1441
1441
|
*/
|
|
1442
1442
|
readonly order?: string
|
|
1443
1443
|
|
|
1444
1444
|
/**
|
|
1445
|
-
* 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: partners<i>
|
|
1445
|
+
* 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: partners, appliedDeductibles<i>
|
|
1446
1446
|
* @type {string}
|
|
1447
1447
|
* @memberof ClaimsApiListClaims1
|
|
1448
1448
|
*/
|
|
1449
1449
|
readonly expand?: string
|
|
1450
1450
|
|
|
1451
1451
|
/**
|
|
1452
|
-
* Filters the response by one or multiple fields.
|
|
1452
|
+
* 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType</i>
|
|
1453
1453
|
* @type {string}
|
|
1454
1454
|
* @memberof ClaimsApiListClaims1
|
|
1455
1455
|
*/
|
|
@@ -1676,7 +1676,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
1676
1676
|
}
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
* Returns a list of claims you have previously created.
|
|
1679
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
1680
1680
|
* @summary List claims
|
|
1681
1681
|
* @param {ClaimsApiListClaimsRequest} requestParameters Request parameters.
|
|
1682
1682
|
* @param {*} [options] Override http request option.
|
|
@@ -1688,7 +1688,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
1690
|
/**
|
|
1691
|
-
* Returns a list of claims you have previously created.
|
|
1691
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
1692
1692
|
* @summary List claims
|
|
1693
1693
|
* @param {ClaimsApiListClaims1Request} requestParameters Request parameters.
|
|
1694
1694
|
* @param {*} [options] Override http request option.
|
package/api/settlements-api.ts
CHANGED
|
@@ -316,16 +316,16 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
316
316
|
};
|
|
317
317
|
},
|
|
318
318
|
/**
|
|
319
|
-
* Returns a list of settlements you have previously created.
|
|
319
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
320
320
|
* @summary List settlements
|
|
321
321
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
322
322
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
323
323
|
* @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.
|
|
324
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
324
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
325
325
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
326
326
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
327
327
|
* @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: claims<i>
|
|
328
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
328
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
329
329
|
* @param {*} [options] Override http request option.
|
|
330
330
|
* @throws {RequiredError}
|
|
331
331
|
*/
|
|
@@ -392,16 +392,16 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
392
392
|
};
|
|
393
393
|
},
|
|
394
394
|
/**
|
|
395
|
-
* Returns a list of settlements you have previously created.
|
|
395
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
396
396
|
* @summary List settlements
|
|
397
397
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
398
398
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
399
399
|
* @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.
|
|
400
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
400
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
401
401
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
402
402
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
403
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/> <i>Allowed values: claims<i>
|
|
404
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
405
405
|
* @param {*} [options] Override http request option.
|
|
406
406
|
* @deprecated
|
|
407
407
|
* @throws {RequiredError}
|
|
@@ -657,16 +657,16 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
657
657
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
658
658
|
},
|
|
659
659
|
/**
|
|
660
|
-
* Returns a list of settlements you have previously created.
|
|
660
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
661
661
|
* @summary List settlements
|
|
662
662
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
663
663
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
664
664
|
* @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.
|
|
665
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
665
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
666
666
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
667
667
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
668
668
|
* @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: claims<i>
|
|
669
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
669
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
670
670
|
* @param {*} [options] Override http request option.
|
|
671
671
|
* @throws {RequiredError}
|
|
672
672
|
*/
|
|
@@ -675,16 +675,16 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
675
675
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
676
676
|
},
|
|
677
677
|
/**
|
|
678
|
-
* Returns a list of settlements you have previously created.
|
|
678
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
679
679
|
* @summary List settlements
|
|
680
680
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
681
681
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
682
682
|
* @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.
|
|
683
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
683
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
684
684
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
685
685
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
686
686
|
* @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: claims<i>
|
|
687
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
687
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
688
688
|
* @param {*} [options] Override http request option.
|
|
689
689
|
* @deprecated
|
|
690
690
|
* @throws {RequiredError}
|
|
@@ -800,16 +800,16 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
800
800
|
return localVarFp.getSettlement1(code, authorization, options).then((request) => request(axios, basePath));
|
|
801
801
|
},
|
|
802
802
|
/**
|
|
803
|
-
* Returns a list of settlements you have previously created.
|
|
803
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
804
804
|
* @summary List settlements
|
|
805
805
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
806
806
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
807
807
|
* @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.
|
|
808
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
808
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
809
809
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
810
810
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
811
811
|
* @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: claims<i>
|
|
812
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
812
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
813
813
|
* @param {*} [options] Override http request option.
|
|
814
814
|
* @throws {RequiredError}
|
|
815
815
|
*/
|
|
@@ -817,16 +817,16 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
817
817
|
return localVarFp.listSettlements(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
818
818
|
},
|
|
819
819
|
/**
|
|
820
|
-
* Returns a list of settlements you have previously created.
|
|
820
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
821
821
|
* @summary List settlements
|
|
822
822
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
823
823
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
824
824
|
* @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.
|
|
825
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
825
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
826
826
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
827
827
|
* @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: insuredObject, reserve, payment, recourse</i>
|
|
828
828
|
* @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: claims<i>
|
|
829
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
829
|
+
* @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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
830
830
|
* @param {*} [options] Override http request option.
|
|
831
831
|
* @deprecated
|
|
832
832
|
* @throws {RequiredError}
|
|
@@ -1016,7 +1016,7 @@ export interface SettlementsApiListSettlementsRequest {
|
|
|
1016
1016
|
readonly pageToken?: string
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
|
-
* Filter the response by one or multiple fields.
|
|
1019
|
+
* 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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
1020
1020
|
* @type {string}
|
|
1021
1021
|
* @memberof SettlementsApiListSettlements
|
|
1022
1022
|
*/
|
|
@@ -1044,7 +1044,7 @@ export interface SettlementsApiListSettlementsRequest {
|
|
|
1044
1044
|
readonly expand?: string
|
|
1045
1045
|
|
|
1046
1046
|
/**
|
|
1047
|
-
* Filters the response by one or multiple fields.
|
|
1047
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
1048
1048
|
* @type {string}
|
|
1049
1049
|
* @memberof SettlementsApiListSettlements
|
|
1050
1050
|
*/
|
|
@@ -1079,7 +1079,7 @@ export interface SettlementsApiListSettlements1Request {
|
|
|
1079
1079
|
readonly pageToken?: string
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
|
-
* Filter the response by one or multiple fields.
|
|
1082
|
+
* 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: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
1083
1083
|
* @type {string}
|
|
1084
1084
|
* @memberof SettlementsApiListSettlements1
|
|
1085
1085
|
*/
|
|
@@ -1107,7 +1107,7 @@ export interface SettlementsApiListSettlements1Request {
|
|
|
1107
1107
|
readonly expand?: string
|
|
1108
1108
|
|
|
1109
1109
|
/**
|
|
1110
|
-
* Filters the response by one or multiple fields.
|
|
1110
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, claimCode, InsuredObjectId</i>
|
|
1111
1111
|
* @type {string}
|
|
1112
1112
|
* @memberof SettlementsApiListSettlements1
|
|
1113
1113
|
*/
|
|
@@ -1253,7 +1253,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
1253
1253
|
}
|
|
1254
1254
|
|
|
1255
1255
|
/**
|
|
1256
|
-
* Returns a list of settlements you have previously created.
|
|
1256
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
1257
1257
|
* @summary List settlements
|
|
1258
1258
|
* @param {SettlementsApiListSettlementsRequest} requestParameters Request parameters.
|
|
1259
1259
|
* @param {*} [options] Override http request option.
|
|
@@ -1265,7 +1265,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
1265
1265
|
}
|
|
1266
1266
|
|
|
1267
1267
|
/**
|
|
1268
|
-
* Returns a list of settlements you have previously created.
|
|
1268
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
|
|
1269
1269
|
* @summary List settlements
|
|
1270
1270
|
* @param {SettlementsApiListSettlements1Request} requestParameters Request parameters.
|
|
1271
1271
|
* @param {*} [options] Override http request option.
|