Skip to content

Releases: EasyPost/easypost-node

v7.2.0

22 Jan 21:53
91f3e5a

Choose a tag to compare

  • Adds missing exports to Typescript definitions (ApiKey, Billing, Brand, EndShipper, Fee, PaymentMethod, Rate, Refund) - closes #433

v7.1.0

08 Jan 22:53
9d2e86d

Choose a tag to compare

  • Adds allChildren function in User service to get a paginated list of children
  • Adds getNextPage function in User service to get next paginated list of children

v7.0.0

06 Dec 18:05
7e5526a

Choose a tag to compare

  • Removes withCarbonOffset parameter from shipment create and buy functions
  • Removes carbon_offset property of Rate object
  • Fixes a pagination issue by passing along additional params used when fetching first page
  • Removes createAndBuy function from Batch service (deprecated endpoint server-side)
  • Removes the beta_carrier_metadata service as it is deprecated, please use the carrier_metadata GA service instead

v6.8.2

20 Oct 19:02
891e4a5

Choose a tag to compare

  • Bump all dependencies to address security vulnerabilities in Babel

v6.8.1

13 Oct 19:10
1f22b49

Choose a tag to compare

  • Fixes a bug causing ScanForm creation to fail

v6.8.0

11 Oct 17:40
20e122d

Choose a tag to compare

  • Adds apiKeys method to User service allowing you to retrieve parent or child API keys by user ID
  • Adds all possible ITrackerStatusDetail values to the Typescript definitions

v6.7.3

05 Sep 21:52
301150a

Choose a tag to compare

  • Fix endpoint for creating a FedEx Smartpost carrier account

v6.7.2

09 Aug 18:12
9b82196

Choose a tag to compare

  • Corrects the Typescript definition for lowestRate of Shipment, Order, and Pickup objects

v6.7.1

07 Aug 21:47
d624886

Choose a tag to compare

  • Checks for X-Hmac-Signature header during webhook validation regardless of casing (closes #399)

v6.7.0

28 Jul 16:07
9a05fdc

Choose a tag to compare

  • Adds methods to the easypost client for subscribing and unsubscribing from requests and responses being sent to the API
    • addRequestHook: Adds a request hook to the EasyPost client. Useful for logging or debugging.
    • removeRequestHook: Removes a request hook from the EasyPost client.
    • clearRequestHooks: Clears all request hooks from the EasyPost client.
    • addResponseHook: Adds a response hook to the EasyPost client. Useful for logging or debugging.
    • removeResponseHook: Removes a response hook from the EasyPost client.
    • clearResponseHooks: Clears all response hooks from the EasyPost client.
  • Maps 400 status codes to new BadRequestError class