Interface UnleashedSoftwareNodeParameters
Sourceinterface UnleashedSoftwareNodeParameters {
filters?:
| {
customerCode?: string;
customerId?: string;
endDate?: string;
modifiedSince?: string;
orderNumber?: string;
orderStatus?: (
| "Completed"
| "Deleted"
| "Backordered"
| "Parked"
| "Placed"
)[];
startDate?: string;
}
| {
asAtDate?: string;
IsAssembled?: boolean;
modifiedSince?: string;
orderBy?: string;
productId?: string;
warehouseCode?: string;
warehouseName?: string;
};
limit?: number;
operation?: "get"
| "getAll";
productId?: string;
resource?: "salesOrder" | "stockOnHand";
returnAll?: boolean;
}
Default: {}