import { ApiResponse } from "../../apiResponse"; import { ParcelSenderDomainShipment } from "../../parcelsenders"; export interface IParcelSenderShipmentApiService { GetAllShipmentsAsync(): Promise>; GetShipmentAsync(id: string): Promise>; GetShipmentsByOrderPublicIdAsync(orderPublicId: string): Promise>; RegisterShipmentAsync(shipment: ParcelSenderDomainShipment): Promise>; RegisterLastShipmentAsync(orderPublicIds: string[]): Promise>; DeleteShipmentAsync(publicId: string): Promise>; }