@moxi.gmbh/moxi-typescriptmodels 0.1.741-test-server → 0.1.751-test-server
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 +15 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -702,6 +702,19 @@ export interface RequestUserReset {
|
|
|
702
702
|
email?: string;
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
+
export interface Review {
|
|
706
|
+
comment?: string;
|
|
707
|
+
stars?: number;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
export interface ReviewRideAsDriver extends FleetModifyCommand {
|
|
711
|
+
review?: Review;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
export interface ReviewRideAsRider extends RidePlannerCommand {
|
|
715
|
+
review?: Review;
|
|
716
|
+
}
|
|
717
|
+
|
|
705
718
|
export interface RevokeAccountPermission extends AccountPermissionCommand {
|
|
706
719
|
}
|
|
707
720
|
|
|
@@ -743,6 +756,7 @@ export interface Ride {
|
|
|
743
756
|
destinationPta?: string;
|
|
744
757
|
driveOwner?: AccountOrTeamRef;
|
|
745
758
|
driveStatus?: DriveStatus;
|
|
759
|
+
driverReview?: Review;
|
|
746
760
|
driverSyncStatus?: SyncStatus;
|
|
747
761
|
info?: RideInfo;
|
|
748
762
|
/**
|
|
@@ -755,6 +769,7 @@ export interface Ride {
|
|
|
755
769
|
originPta?: string;
|
|
756
770
|
rideId?: string;
|
|
757
771
|
rideOwner?: AccountOrTeamRef;
|
|
772
|
+
riderReview?: Review;
|
|
758
773
|
/**
|
|
759
774
|
* Derived from driveStatus != null
|
|
760
775
|
*/
|
package/package.json
CHANGED