File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ export function androidAPIToPublicAPITransform(
5555 customerVehicle : CustomerVehicle
5656 ) : Promise < void > => {
5757 if ( customerVehicle . id == null ) {
58- console . info ( "Arrive at waypoint with customer vehicle (empty vehicle id)" ) ;
58+ console . info (
59+ 'Arrive at waypoint with customer vehicle (empty vehicle id)'
60+ ) ;
5961 return arriveAtWaypointWithCustomerVehicle (
6062 customerVehicle . save_vehicle ,
6163 customerVehicle . license_plate ,
@@ -64,7 +66,7 @@ export function androidAPIToPublicAPITransform(
6466 customerVehicle . parking_spot
6567 ) ;
6668 } else {
67- console . info ( " Arrive at waypoint with customer vehicle" ) ;
69+ console . info ( ' Arrive at waypoint with customer vehicle' ) ;
6870 return arriveAtWaypointWithCustomerVehicleAndVehicleId (
6971 customerVehicle . id ,
7072 customerVehicle . save_vehicle ,
Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ export type ActiveCustomerManagerType = {
3030 // task related
3131 startTask ( taskId : number ) : Promise < void > ;
3232 arriveAtWaypoint ( ) : Promise < void > ;
33- arriveAtWaypointWithCustomerVehicle ( customerVehicle : CustomerVehicle ) : Promise < void > ;
33+ arriveAtWaypointWithCustomerVehicle (
34+ customerVehicle : CustomerVehicle
35+ ) : Promise < void > ;
3436 leaveWaypoint ( ) : Promise < void > ;
3537 updateWaypointETA ( eta : Date ) : Promise < void > ;
3638
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ export function iosAPIToPublicAPITransform(
6868 customerVehicle : CustomerVehicle
6969 ) : Promise < void > => {
7070 if ( customerVehicle . id == null ) {
71- console . info ( "Arrive at waypoint with customer vehicle (empty vehicle id)" ) ;
71+ console . info (
72+ 'Arrive at waypoint with customer vehicle (empty vehicle id)'
73+ ) ;
7274 return bringgDriverSdkIosType . activeCustomerManager . arriveAtWaypointWithCustomerVehicle (
7375 customerVehicle . save_vehicle ,
7476 customerVehicle . license_plate ,
@@ -77,7 +79,7 @@ export function iosAPIToPublicAPITransform(
7779 customerVehicle . parking_spot
7880 ) ;
7981 } else {
80- console . info ( " Arrive at waypoint with customer vehicle" ) ;
82+ console . info ( ' Arrive at waypoint with customer vehicle' ) ;
8183 return bringgDriverSdkIosType . activeCustomerManager . arriveAtWaypointWithCustomerVehicleAndVehicleId (
8284 customerVehicle . id ,
8385 customerVehicle . save_vehicle ,
You can’t perform that action at this time.
0 commit comments