@shipengine/js-api 3.0.0 → 3.1.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.
@@ -42,8 +42,10 @@ export type ConnectCarrierAccountResponse = {
42
42
  export type ServicesListSupportedCountries = {
43
43
  fromCountry: string;
44
44
  };
45
+ export type CarrierServiceStatus = "active" | "inactive" | "deleted";
45
46
  export type CarrierProviderService = Pick<CarrierService, "name" | "serviceCode" | "international"> & {
46
47
  description: string;
48
+ status?: CarrierServiceStatus;
47
49
  supportedCountries: ServicesListSupportedCountries[];
48
50
  };
49
51
  export type CarrierServicesListResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/js-api",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {