declare namespace WebCheckoutAPI {

  interface LoginTokenResponse {
    token: string
    expiration: number
  }

  interface ProductMapResponse {
    products: ProductMap[]
  }

  interface ProductMap {
    parent_sku?: string
    sku: string
    id: string
  }
}
