Skip to content

Commit

Permalink
Add additional fields
Browse files Browse the repository at this point in the history
  • Loading branch information
natekspencer committed Feb 19, 2024
1 parent a278889 commit 8d6f4f0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/rivian/schemas/gateway.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,14 @@ type VehicleLocation implements TimeStamped {
longitude: Float!
}

type VehicleLocationError implements TimeStamped {
timeStamp: String!
bearing: Float!
positionHorizontal: Float!
positionVertical: Float!
speed: Float!
}

type VehicleMobileConfiguration {
trimOption: VehicleMobileConfigurationOption!
driveSystemOption: VehicleMobileConfigurationOption!
Expand Down Expand Up @@ -422,9 +430,11 @@ type VehicleState {

carWashMode: TimeStampedString

chargePortState: TimeStampedString
chargerDerateStatus: TimeStampedString
chargerState: TimeStampedString
chargerStatus: TimeStampedString
chargingTimeEstimationValidity: TimeStampedString

closureFrunkClosed: TimeStampedString
closureFrunkLocked: TimeStampedString
Expand Down Expand Up @@ -470,6 +480,7 @@ type VehicleState {

gnssAltitude: TimeStampedNullableFloat
gnssBearing: TimeStampedFloat
gnssError: VehicleLocationError
gnssLocation: VehicleLocation
gnssSpeed: TimeStampedFloat

Expand Down Expand Up @@ -502,6 +513,8 @@ type VehicleState {

rangeThreshold: TimeStampedString

rearHitchStatus: TimeStampedString

remoteChargingAvailable: TimeStampedInt

seatFrontLeftHeat: TimeStampedString
Expand All @@ -519,6 +532,10 @@ type VehicleState {

timeToEndOfCharge: TimeStampedFloat

tirePressureFrontLeft: TimeStampedNullableFloat # only available via subscription
tirePressureFrontRight: TimeStampedNullableFloat # only available via subscription
tirePressureRearLeft: TimeStampedNullableFloat # only available via subscription
tirePressureRearRight: TimeStampedNullableFloat # only available via subscription
tirePressureStatusFrontLeft: TimeStampedString
tirePressureStatusFrontRight: TimeStampedString
tirePressureStatusRearLeft: TimeStampedString
Expand Down

0 comments on commit 8d6f4f0

Please sign in to comment.