Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions addon/models/waypoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,13 @@ export default class WaypointModel extends PlaceModel {
@attr('string') status_code;
@attr('string') type;
@attr('number') order;
// Orchestrator time windows
@attr('date') time_window_start;
@attr('date') time_window_end;
@attr('number') service_time;
// Per-stop POD and notes (mirrors order-level fields;
// used as fallback until per-waypoint POD is implemented in driver app)
@attr('string') notes;
@attr('string') pod_method;
@attr('boolean') pod_required;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/fleetops-data",
"version": "0.1.26",
"version": "0.1.27",
"description": "Fleetbase Fleet-Ops based models, serializers, transforms, adapters and GeoJson utility functions.",
"keywords": [
"fleetbase-data",
Expand Down
Loading