1.1.3 • Published 6 years ago

@plasma-platform/tm-service-delivery v1.1.3

Weekly downloads
1
License
CC-BY-4.0
Repository
gitlab
Last release
6 years ago

Documentation

Table of Contents

DeliveryService

messages

object with class service messages

getDeliveriesByOrderId

Get deliveries by order id

Parameters

Examples

(async () => {
  const service = new DeliveryService(url, token);
  const request = await service.getDeliveriesByOrderId(params);
})();

Returns Promise<any>

getDeliveryByProductId

DeliveryService - Get delivery by order and product ID

Parameters

Examples

(async () => {
  const service = new DeliveryService(url, token);
  const request = await service.getDeliveryByProductId(params);
})();

Returns Promise<any>