@shipengine/js-api 4.27.1-next.0 → 4.28.1
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/order-sources/types.d.ts +1 -0
- package/package.json +1 -1
- package/rates/types.d.ts +2 -2
package/order-sources/types.d.ts
CHANGED
package/package.json
CHANGED
package/rates/types.d.ts
CHANGED
|
@@ -5,14 +5,14 @@ import { Currency, Money } from "../payments";
|
|
|
5
5
|
import { ConfirmationType } from "../shipments";
|
|
6
6
|
import { WeightWithUnit } from "../weight";
|
|
7
7
|
export type RateType = "check" | "shipment";
|
|
8
|
-
export type RateDetailType = "uncategorized" | "shipping" | "insurance" | "confirmation" | "discount" | "fuel_charge" | "additional_fees" | "tariff" | "tax" | "delivery" | "handling" | "special_goods" | "pickup" | "location_fee" | "oversize" | "returns" | "notifications" | "tip" | "duties_and_taxes" | "brokerage_fee" | "admin_fee" | "adjustment";
|
|
8
|
+
export type RateDetailType = "uncategorized" | "shipping" | "insurance" | "confirmation" | "discount" | "fuel_charge" | "additional_fees" | "tariff" | "tax" | "delivery" | "handling" | "special_goods" | "pickup" | "location_fee" | "oversize" | "returns" | "notifications" | "tip" | "duties_and_taxes" | "brokerage_fee" | "admin_fee" | "adjustment" | "prepaid_duties" | "prepaid_import_fees" | "prepaid_taxes" | "estimated_duties" | "estimated_import_fees" | "estimated_taxes";
|
|
9
9
|
export type TaxType = "VAT";
|
|
10
10
|
export type RateDetailAttributes = {
|
|
11
11
|
taxCode: string;
|
|
12
12
|
taxPercentage: number;
|
|
13
13
|
taxType: TaxType;
|
|
14
14
|
};
|
|
15
|
-
export type RateDetailBillingSource = "Carrier" | "Insurance" | "Product";
|
|
15
|
+
export type RateDetailBillingSource = "Carrier" | "Insurance" | "Product" | "DutiesTax";
|
|
16
16
|
export type RateDetail = {
|
|
17
17
|
amount: Money;
|
|
18
18
|
billingSource: RateDetailBillingSource;
|