UNPKG

@buun_group/interparcel-api-sdk

Version:

Interparcel API SDK for Node.js

19 lines (13 loc) 511 B
// Types for Interparcel Filters export interface InterparcelService { readonly name: string; readonly code: string; readonly type: InterparcelServiceType; } export interface InterparcelCountry { readonly name: string; readonly code: string; } export type InterparcelServiceType = 'Pallet' | 'Standard' | 'Express' | 'Same Day' | 'Timed'; export type InterparcelServiceLevel = 'standard' | 'express' | 'timed' | 'sameday' | 'pallet'; export type InterparcelPickupType = 'collection' | 'dropoff';