From a4501f8fb3c828172cce5b335e570d5c46057cca Mon Sep 17 00:00:00 2001 From: Benson Trent Date: Sat, 16 Mar 2024 14:48:19 -0600 Subject: [PATCH] Update ShipmentCreateParameters.d.ts Add missing options for ICreateShipmentParameters --- types/Shipment/ShipmentCreateParameters.d.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/types/Shipment/ShipmentCreateParameters.d.ts b/types/Shipment/ShipmentCreateParameters.d.ts index 8665c34e0..2457f20a0 100644 --- a/types/Shipment/ShipmentCreateParameters.d.ts +++ b/types/Shipment/ShipmentCreateParameters.d.ts @@ -15,6 +15,19 @@ export declare interface IShipmentCreateParameters { */ carrier_accounts?: string[] | null; + /** + * Optional service name to create one-call-buy shipment + */ + service?: string | null; + + tax_identifiers?: TaxIdentifier[] | null customs_info?: DeepPartial | null; options?: DeepPartial | null; } + +type TaxIdentifier = { + entity: "SENDER" | "RECIPIENT" + tax_id: string, + tax_id_type: string; + issuing_country: string +}