@shipengine/js-api 0.33.0 → 0.35.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.
- package/errors/types.d.ts +1 -1
- package/index.js +1 -0
- package/index.mjs +1 -0
- package/package.json +1 -1
- package/rate-cards/types.d.ts +1 -0
package/errors/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @category Entities
|
|
3
3
|
*/
|
|
4
|
-
export type CodedErrorCode = "auto_fund_not_supported" | "batch_cannot_be_modified" | "carrier_conflict" | "carrier_disconnected" | "carrier_not_connected" | "carrier_not_supported" | "confirmation_not_supported" | "default_warehouse_cannot_be_deleted" | "duplicated_rate_card" | "empty_file" | "field_conflict" | "field_value_required" | "forbidden" | "identifier_conflict" | "identifiers_must_match" | "insufficient_funds" | "insufficient_rate_card_data" | "invalid_address" | "invalid_billing_plan" | "invalid_field_value" | "invalid_file_type" | "invalid_file_size" | "invalid_identifier" | "invalid_status" | "invalid_string_length" | "invalid_zones" | "invalid_packages" | "invalid_weight_bands" | "invalid_rates" | "label_images_not_supported" | "meter_failure" | "not_found" | "order_source_not_active" | "rate_limit_exceeded" | "refresh_not_supported" | "request_body_required" | "return_label_not_supported" | "settings_not_supported" | "subscription_inactive" | "terms_not_accepted" | "tracking_not_supported" | "trial_expired" | "unauthorized" | "unknown" | "unspecified" | "verification_failure" | "warehouse_conflict" | "webhook_event_type_conflict";
|
|
4
|
+
export type CodedErrorCode = "auto_fund_not_supported" | "batch_cannot_be_modified" | "carrier_conflict" | "carrier_disconnected" | "carrier_not_connected" | "carrier_not_supported" | "confirmation_not_supported" | "default_warehouse_cannot_be_deleted" | "duplicated_rate_card" | "empty_file" | "field_conflict" | "field_value_required" | "forbidden" | "identifier_conflict" | "identifiers_must_match" | "insufficient_funds" | "insufficient_rate_card_data" | "invalid_address" | "invalid_billing_plan" | "invalid_currency" | "invalid_field_value" | "invalid_file_type" | "invalid_file_size" | "invalid_identifier" | "invalid_status" | "invalid_string_length" | "invalid_zones" | "invalid_packages" | "invalid_weight_bands" | "invalid_rates" | "label_images_not_supported" | "meter_failure" | "not_found" | "order_source_not_active" | "rate_limit_exceeded" | "refresh_not_supported" | "request_body_required" | "return_label_not_supported" | "settings_not_supported" | "subscription_inactive" | "terms_not_accepted" | "tracking_not_supported" | "trial_expired" | "unauthorized" | "unknown" | "unspecified" | "verification_failure" | "warehouse_conflict" | "webhook_event_type_conflict";
|
|
5
5
|
/**
|
|
6
6
|
* @category Entities
|
|
7
7
|
*/
|
package/index.js
CHANGED
|
@@ -52,6 +52,7 @@ var Currency = /* @__PURE__ */ ((Currency2) => {
|
|
|
52
52
|
|
|
53
53
|
var RateCardStatus = /* @__PURE__ */ ((RateCardStatus2) => {
|
|
54
54
|
RateCardStatus2["DRAFT"] = "Draft";
|
|
55
|
+
RateCardStatus2["DELETED"] = "Deleted";
|
|
55
56
|
RateCardStatus2["PUBLISHED"] = "Published";
|
|
56
57
|
return RateCardStatus2;
|
|
57
58
|
})(RateCardStatus || {});
|
package/index.mjs
CHANGED
|
@@ -48,6 +48,7 @@ var Currency = /* @__PURE__ */ ((Currency2) => {
|
|
|
48
48
|
|
|
49
49
|
var RateCardStatus = /* @__PURE__ */ ((RateCardStatus2) => {
|
|
50
50
|
RateCardStatus2["DRAFT"] = "Draft";
|
|
51
|
+
RateCardStatus2["DELETED"] = "Deleted";
|
|
51
52
|
RateCardStatus2["PUBLISHED"] = "Published";
|
|
52
53
|
return RateCardStatus2;
|
|
53
54
|
})(RateCardStatus || {});
|
package/package.json
CHANGED