Skip to content

Commit

Permalink
prep release v7.5.0 (#462)
Browse files Browse the repository at this point in the history
* prep release v7.5.0

* remove claim links
  • Loading branch information
jchen293 committed Jul 24, 2024
1 parent d1b9404 commit 899f856
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v7.5.0 (2024-07-24)

- Adds new `Claim` service for filing claims on EasyPost shipments and insurances

## v7.4.0 (2024-07-12)

- Adds new `Shipment.recommendShipDate`, `SmartRate.recommendShipDate`, and `SmartRate.estimateDeliveryDate` functions
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@easypost/api",
"description": "EasyPost Node Client Library",
"version": "7.4.0",
"version": "7.5.0",
"author": "Easypost Engineering <[email protected]>",
"homepage": "https://easypost.com",
"bin": {
Expand Down
4 changes: 0 additions & 4 deletions src/services/claim_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export default (easypostClient) =>
class ClaimService extends baseService(easypostClient) {
/**
* Create a {@link Claim claim} record.
* See {@link https://www.easypost.com/docs/api/node#create-a-claim EasyPost API Documentation} for more information.
* @param {Object} params - Parameters for the claim to be created.
* @returns {Claim} - The created claim.
*/
Expand All @@ -20,7 +19,6 @@ export default (easypostClient) =>

/**
* Retrieve all {@link Claim} records associated with the current authenticated user.
* See {@link https://www.easypost.com/docs/api/node#retrieve-a-list-of-claims EasyPost API Documentation} for more information.
* @param {Object} [params] - Parameters to filter the claim records.
* @returns {Object} - An object containing the list of {@link Claim claim} records and pagination information.
*/
Expand All @@ -43,7 +41,6 @@ export default (easypostClient) =>

/**
* Retrieve a {@link Claim claim} record by its ID.
* See {@link https://www.easypost.com/docs/api/node#retrieve-a-claim EasyPost API Documentation} for more information.
* @param {string} id - The ID of the claim to retrieve.
* @returns {Claim} - The retrieved claim.
*/
Expand All @@ -55,7 +52,6 @@ export default (easypostClient) =>

/**
* Cancel a {@link Claim claim} record by its ID.
* See {@link https://www.easypost.com/docs/api/node#refund-a-claim EasyPost API Documentation} for more information.
* @param {string} id - The ID of the claim to be canceled.
* @returns {Claim} - The canceled claim.
*/
Expand Down
1 change: 0 additions & 1 deletion types/Claim/Claim.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { TClaimType } from './ClaimType';
/**
* Class representing an EasyPost claim object.
*
* @see https://www.easypost.com/docs/api/node#claim-object
*/
export declare interface IClaim extends IObjectWithId<'Claim'>, IDatedObject {
/** The amount that has been approved for reimbursement */
Expand Down

0 comments on commit 899f856

Please sign in to comment.