@moxi.gmbh/moxi-typescriptmodels 0.0.1341 → 0.0.1361
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common.d.ts +6 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -624,6 +624,9 @@ export interface RegisterDriveStatus extends FleetModifyCommand {
|
|
|
624
624
|
driveStatus?: DriveStatus;
|
|
625
625
|
}
|
|
626
626
|
|
|
627
|
+
export interface RegisterDriverSynced extends FleetModifyCommand {
|
|
628
|
+
}
|
|
629
|
+
|
|
627
630
|
export interface RejectInviteUser extends UserUpdate {
|
|
628
631
|
accountId?: string;
|
|
629
632
|
}
|
|
@@ -700,6 +703,7 @@ export interface Ride {
|
|
|
700
703
|
destinationPta?: string;
|
|
701
704
|
driveOwner?: AccountOrTeamRef;
|
|
702
705
|
driveStatus?: DriveStatus;
|
|
706
|
+
driverSyncStatus?: SyncStatus;
|
|
703
707
|
info?: RideInfo;
|
|
704
708
|
/**
|
|
705
709
|
* Estimated Time of Arrival at the Origin/Pick-up location. Will differ from originPta if the driver reported a delay
|
|
@@ -1047,6 +1051,8 @@ export type Service = "rideplanning" | "driveplanning";
|
|
|
1047
1051
|
|
|
1048
1052
|
export type SlackChannel = "admin_monitoring" | "admin_respond_immediately" | "admin_respond_within_hour" | "admin_reported_issues";
|
|
1049
1053
|
|
|
1054
|
+
export type SyncStatus = "not_synced" | "synced" | "update_not_synced";
|
|
1055
|
+
|
|
1050
1056
|
export type TeamRole = "driveplanner" | "rideplanner";
|
|
1051
1057
|
|
|
1052
1058
|
export type UserRole = "superadmin";
|
package/package.json
CHANGED