@enable-tech/shared-types
Version:
This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.
13 lines • 457 B
TypeScript
import { T_PaginationKeys } from 'src/common/backend/parameters';
import { E_ShipmentStatus } from '../enums';
export type T_GetShipmentsQueryParams = {
salesOrderId?: string;
trackingNumber?: string;
status?: E_ShipmentStatus;
externalId?: string;
companyId?: string;
brandId?: string;
searchQuery?: string;
} & T_PaginationKeys;
export type T_GetDeliveryOrdersQueryParams = T_PaginationKeys;
//# sourceMappingURL=index.d.ts.map