From d4a9df8659e50a53974e40fd37c9e4dc4de788fc Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 30 Oct 2025 11:22:39 -0600 Subject: [PATCH 1/2] feat: adds support for UspsShipAccount --- CHANGELOG.md | 4 ++++ src/main/java/com/easypost/Constants.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c2f1371b..531483458 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Next Release + +- Adds support for `UspsShipAccount` + ## v8.2.0 (2025-06-18) - Adds the following functions diff --git a/src/main/java/com/easypost/Constants.java b/src/main/java/com/easypost/Constants.java index 2a4bef91f..cd675c9fd 100644 --- a/src/main/java/com/easypost/Constants.java +++ b/src/main/java/com/easypost/Constants.java @@ -66,7 +66,7 @@ public abstract static class CarrierAccountTypes { ); public static final List CARRIER_ACCOUNT_TYPES_WITH_CUSTOM_OAUTH = ImmutableList.of( - "AmazonShippingAccount", "UpsAccount", "UpsMailInnovationsAccount", "UpsSurepostAccount" + "AmazonShippingAccount", "UpsAccount", "UpsMailInnovationsAccount", "UpsSurepostAccount", "UspsShipAccount", ); } From 5215522131d0257a87f4ce1f154f6cc4d57e52ef Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 30 Oct 2025 11:30:24 -0600 Subject: [PATCH 2/2] fix: comma --- src/main/java/com/easypost/Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/easypost/Constants.java b/src/main/java/com/easypost/Constants.java index cd675c9fd..68478a871 100644 --- a/src/main/java/com/easypost/Constants.java +++ b/src/main/java/com/easypost/Constants.java @@ -66,7 +66,7 @@ public abstract static class CarrierAccountTypes { ); public static final List CARRIER_ACCOUNT_TYPES_WITH_CUSTOM_OAUTH = ImmutableList.of( - "AmazonShippingAccount", "UpsAccount", "UpsMailInnovationsAccount", "UpsSurepostAccount", "UspsShipAccount", + "AmazonShippingAccount", "UpsAccount", "UpsMailInnovationsAccount", "UpsSurepostAccount", "UspsShipAccount" ); }