Skip to content

Commit

Permalink
[chore] Remove beta carrier metadata (#296)
Browse files Browse the repository at this point in the history
- Pull in updated examples submodule
- Remove beta carrier metadata service, unit tests, cassettes
  • Loading branch information
nwithan8 authored Dec 4, 2023
1 parent 1a14a7a commit 208efd2
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 323 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Removes `withCarbonOffset` parameter from `create`, `buy`, and `regenerateRates` functions of the Shipment service as EasyPost now offers Carbon Neutral shipments by default for free
- Removes the undocumented `createAndBuy` function from the Batch service. The proper usage is to create a batch first and buy it separately
- Changes return type of `all()` in webhook service from `WebhookCollection` to `a list of webhooks`
- `BetaCarrierMetadata` service has been removed. Please use `CarrierMetadata` instead.

## v6.9.1 (2023-11-16)

Expand Down
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 515 files
69 changes: 0 additions & 69 deletions src/main/java/com/easypost/service/BetaCarrierMetadataService.java

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/java/com/easypost/service/EasyPostClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class EasyPostClient {
public final AddressService address;
public final ApiKeyService apiKey;
public final BatchService batch;
public final BetaCarrierMetadataService betaCarrierMetadata;
public final BetaReferralCustomerService betaReferralCustomer;
public final BetaRateService betaRate;
public final BillingService billing;
Expand Down Expand Up @@ -130,7 +129,6 @@ public EasyPostClient(String apiKey, int connectTimeoutMilliseconds, int readTim
this.address = new AddressService(this);
this.apiKey = new ApiKeyService(this);
this.batch = new BatchService(this);
this.betaCarrierMetadata = new BetaCarrierMetadataService(this);
this.betaReferralCustomer = new BetaReferralCustomerService(this);
this.betaRate = new BetaRateService(this);
this.billing = new BillingService(this);
Expand Down

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions src/test/java/com/easypost/BetaCarrierMetadataTest.java

This file was deleted.

0 comments on commit 208efd2

Please sign in to comment.