@teslemetry/tesla-protocol 0.4.0 → 0.6.0

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.
Files changed (85) hide show
  1. package/dist/charging/charging.cjs +550 -0
  2. package/dist/charging/charging.d.cts +75 -0
  3. package/dist/charging/charging.d.mts +75 -0
  4. package/dist/charging/charging.mjs +543 -0
  5. package/dist/command/car_server.cjs +65 -0
  6. package/dist/command/car_server.d.cts +13 -1
  7. package/dist/command/car_server.d.mts +13 -1
  8. package/dist/command/car_server.mjs +65 -1
  9. package/dist/command/universal_message.cjs +5 -0
  10. package/dist/command/universal_message.d.cts +2 -0
  11. package/dist/command/universal_message.d.mts +2 -0
  12. package/dist/command/universal_message.mjs +5 -0
  13. package/dist/command/vcsec.cjs +87 -2
  14. package/dist/command/vcsec.d.cts +11 -1
  15. package/dist/command/vcsec.d.mts +11 -1
  16. package/dist/command/vcsec.mjs +86 -3
  17. package/dist/command/vehicle.cjs +27 -0
  18. package/dist/command/vehicle.d.cts +4 -0
  19. package/dist/command/vehicle.d.mts +4 -0
  20. package/dist/command/vehicle.mjs +27 -0
  21. package/dist/dashcam/dashcam_sei.cjs +263 -0
  22. package/dist/dashcam/dashcam_sei.d.cts +60 -0
  23. package/dist/dashcam/dashcam_sei.d.mts +60 -0
  24. package/dist/dashcam/dashcam_sei.mjs +255 -0
  25. package/dist/energy_device/common_api.cjs +604 -11
  26. package/dist/energy_device/common_api.d.cts +60 -3
  27. package/dist/energy_device/common_api.d.mts +60 -3
  28. package/dist/energy_device/common_api.mjs +596 -12
  29. package/dist/energy_device/device.cjs +129 -0
  30. package/dist/energy_device/device.d.cts +13 -1
  31. package/dist/energy_device/device.d.mts +13 -1
  32. package/dist/energy_device/device.mjs +127 -1
  33. package/dist/energy_device/energy_site_net.cjs +747 -0
  34. package/dist/energy_device/energy_site_net.d.cts +84 -1
  35. package/dist/energy_device/energy_site_net.d.mts +84 -1
  36. package/dist/energy_device/energy_site_net.mjs +736 -1
  37. package/dist/energy_device/filestore_api.cjs +575 -0
  38. package/dist/energy_device/filestore_api.d.cts +81 -0
  39. package/dist/energy_device/filestore_api.d.mts +81 -0
  40. package/dist/energy_device/filestore_api.mjs +563 -0
  41. package/dist/energy_device/google/protobuf/duration.cjs +71 -0
  42. package/dist/energy_device/google/protobuf/duration.d.cts +95 -0
  43. package/dist/energy_device/google/protobuf/duration.d.mts +95 -0
  44. package/dist/energy_device/google/protobuf/duration.mjs +69 -0
  45. package/dist/energy_device/graphql_api.cjs +449 -0
  46. package/dist/energy_device/graphql_api.d.cts +78 -0
  47. package/dist/energy_device/graphql_api.d.mts +78 -0
  48. package/dist/energy_device/graphql_api.mjs +434 -0
  49. package/dist/energy_device/intra_site_api.cjs +1698 -0
  50. package/dist/energy_device/intra_site_api.d.cts +227 -0
  51. package/dist/energy_device/intra_site_api.d.mts +227 -0
  52. package/dist/energy_device/intra_site_api.mjs +1644 -0
  53. package/dist/energy_device/local_auth_api.cjs +505 -0
  54. package/dist/energy_device/local_auth_api.d.cts +73 -0
  55. package/dist/energy_device/local_auth_api.d.mts +73 -0
  56. package/dist/energy_device/local_auth_api.mjs +492 -0
  57. package/dist/energy_device/networking.cjs +20 -2
  58. package/dist/energy_device/networking.d.cts +2 -0
  59. package/dist/energy_device/networking.d.mts +2 -0
  60. package/dist/energy_device/networking.mjs +20 -2
  61. package/dist/energy_device/neurio_meter_api.cjs +1442 -0
  62. package/dist/energy_device/neurio_meter_api.d.cts +202 -0
  63. package/dist/energy_device/neurio_meter_api.d.mts +202 -0
  64. package/dist/energy_device/neurio_meter_api.mjs +1401 -0
  65. package/dist/energy_device/pvi_api.cjs +2954 -0
  66. package/dist/energy_device/pvi_api.d.cts +319 -0
  67. package/dist/energy_device/pvi_api.d.mts +319 -0
  68. package/dist/energy_device/pvi_api.mjs +2892 -0
  69. package/dist/energy_device/teg_api.cjs +5184 -147
  70. package/dist/energy_device/teg_api.d.cts +492 -77
  71. package/dist/energy_device/teg_api.d.mts +492 -77
  72. package/dist/energy_device/teg_api.mjs +5064 -148
  73. package/dist/energy_device/transport.cjs +82 -2
  74. package/dist/energy_device/transport.d.cts +16 -5
  75. package/dist/energy_device/transport.d.mts +16 -5
  76. package/dist/energy_device/transport.mjs +82 -2
  77. package/dist/energy_device/update.cjs +33 -6
  78. package/dist/energy_device/update.d.cts +3 -0
  79. package/dist/energy_device/update.d.mts +3 -0
  80. package/dist/energy_device/update.mjs +33 -6
  81. package/dist/energy_device/wall_connector.cjs +6729 -5
  82. package/dist/energy_device/wall_connector.d.cts +696 -2
  83. package/dist/energy_device/wall_connector.d.mts +696 -2
  84. package/dist/energy_device/wall_connector.mjs +6591 -6
  85. package/package.json +1 -1
@@ -314,6 +314,8 @@ interface Response {
314
314
  /** TESLEMETRY-EXT */
315
315
  pseudonymSyncResponse?: PseudonymSyncResponse | undefined;
316
316
  /** TESLEMETRY-EXT */
317
+ getRateTariffResponse?: GetRateTariffResponse | undefined;
318
+ /** TESLEMETRY-EXT */
317
319
  navigationRouteResponse?: NavigationRouteResponse | undefined;
318
320
  /** TESLEMETRY-EXT */
319
321
  getManagedChargingSitesResponse?: GetManagedChargingSitesResponse | undefined;
@@ -407,6 +409,15 @@ interface BandwidthTestResponse {
407
409
  data: Uint8Array;
408
410
  requestedSize: number;
409
411
  }
412
+ /**
413
+ * Answers GetRateTariffRequest with the same tariff document SetRateTariffRequest
414
+ * writes (VehicleAction tag 55); only the parts of that document we have observed
415
+ * and documented are declared here.
416
+ */
417
+ interface GetRateTariffResponse {
418
+ seasons: SetRateTariffRequest_Seasons | undefined;
419
+ tariff: SetRateTariffRequest_Tariff | undefined;
420
+ }
410
421
  interface ActionStatus {
411
422
  result: OperationStatusE;
412
423
  resultReason: ResultReason | undefined;
@@ -1243,6 +1254,7 @@ declare const GetLocalProfilesResponse: MessageFns<GetLocalProfilesResponse>;
1243
1254
  declare const KeyInfo: MessageFns<KeyInfo>;
1244
1255
  declare const KeysInfoResponse: MessageFns<KeysInfoResponse>;
1245
1256
  declare const BandwidthTestResponse: MessageFns<BandwidthTestResponse>;
1257
+ declare const GetRateTariffResponse: MessageFns<GetRateTariffResponse>;
1246
1258
  declare const ActionStatus: MessageFns<ActionStatus>;
1247
1259
  declare const ResultReason: MessageFns<ResultReason>;
1248
1260
  declare const EncryptedData: MessageFns<EncryptedData>;
@@ -1406,4 +1418,4 @@ interface MessageFns<T> {
1406
1418
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
1407
1419
  }
1408
1420
  //#endregion
1409
- export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
1421
+ export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetRateTariffResponse, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
@@ -314,6 +314,8 @@ interface Response {
314
314
  /** TESLEMETRY-EXT */
315
315
  pseudonymSyncResponse?: PseudonymSyncResponse | undefined;
316
316
  /** TESLEMETRY-EXT */
317
+ getRateTariffResponse?: GetRateTariffResponse | undefined;
318
+ /** TESLEMETRY-EXT */
317
319
  navigationRouteResponse?: NavigationRouteResponse | undefined;
318
320
  /** TESLEMETRY-EXT */
319
321
  getManagedChargingSitesResponse?: GetManagedChargingSitesResponse | undefined;
@@ -407,6 +409,15 @@ interface BandwidthTestResponse {
407
409
  data: Uint8Array;
408
410
  requestedSize: number;
409
411
  }
412
+ /**
413
+ * Answers GetRateTariffRequest with the same tariff document SetRateTariffRequest
414
+ * writes (VehicleAction tag 55); only the parts of that document we have observed
415
+ * and documented are declared here.
416
+ */
417
+ interface GetRateTariffResponse {
418
+ seasons: SetRateTariffRequest_Seasons | undefined;
419
+ tariff: SetRateTariffRequest_Tariff | undefined;
420
+ }
410
421
  interface ActionStatus {
411
422
  result: OperationStatusE;
412
423
  resultReason: ResultReason | undefined;
@@ -1243,6 +1254,7 @@ declare const GetLocalProfilesResponse: MessageFns<GetLocalProfilesResponse>;
1243
1254
  declare const KeyInfo: MessageFns<KeyInfo>;
1244
1255
  declare const KeysInfoResponse: MessageFns<KeysInfoResponse>;
1245
1256
  declare const BandwidthTestResponse: MessageFns<BandwidthTestResponse>;
1257
+ declare const GetRateTariffResponse: MessageFns<GetRateTariffResponse>;
1246
1258
  declare const ActionStatus: MessageFns<ActionStatus>;
1247
1259
  declare const ResultReason: MessageFns<ResultReason>;
1248
1260
  declare const EncryptedData: MessageFns<EncryptedData>;
@@ -1406,4 +1418,4 @@ interface MessageFns<T> {
1406
1418
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
1407
1419
  }
1408
1420
  //#endregion
1409
- export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
1421
+ export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetRateTariffResponse, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
@@ -2981,6 +2981,7 @@ function createBaseResponse() {
2981
2981
  ping: void 0,
2982
2982
  piiKeyResponse: void 0,
2983
2983
  pseudonymSyncResponse: void 0,
2984
+ getRateTariffResponse: void 0,
2984
2985
  navigationRouteResponse: void 0,
2985
2986
  getManagedChargingSitesResponse: void 0,
2986
2987
  getChargeOnSolarFeatureResponse: void 0,
@@ -3003,6 +3004,7 @@ const Response = {
3003
3004
  if (message.ping !== void 0) Ping.encode(message.ping, writer.uint32(74).fork()).join();
3004
3005
  if (message.piiKeyResponse !== void 0) PiiKeyResponse.encode(message.piiKeyResponse, writer.uint32(82).fork()).join();
3005
3006
  if (message.pseudonymSyncResponse !== void 0) PseudonymSyncResponse.encode(message.pseudonymSyncResponse, writer.uint32(90).fork()).join();
3007
+ if (message.getRateTariffResponse !== void 0) GetRateTariffResponse.encode(message.getRateTariffResponse, writer.uint32(98).fork()).join();
3006
3008
  if (message.navigationRouteResponse !== void 0) NavigationRouteResponse.encode(message.navigationRouteResponse, writer.uint32(106).fork()).join();
3007
3009
  if (message.getManagedChargingSitesResponse !== void 0) GetManagedChargingSitesResponse.encode(message.getManagedChargingSitesResponse, writer.uint32(114).fork()).join();
3008
3010
  if (message.getChargeOnSolarFeatureResponse !== void 0) GetChargeOnSolarFeatureResponse.encode(message.getChargeOnSolarFeatureResponse, writer.uint32(122).fork()).join();
@@ -3060,6 +3062,10 @@ const Response = {
3060
3062
  if (tag !== 90) break;
3061
3063
  message.pseudonymSyncResponse = PseudonymSyncResponse.decode(reader, reader.uint32());
3062
3064
  continue;
3065
+ case 12:
3066
+ if (tag !== 98) break;
3067
+ message.getRateTariffResponse = GetRateTariffResponse.decode(reader, reader.uint32());
3068
+ continue;
3063
3069
  case 13:
3064
3070
  if (tag !== 106) break;
3065
3071
  message.navigationRouteResponse = NavigationRouteResponse.decode(reader, reader.uint32());
@@ -3110,6 +3116,7 @@ const Response = {
3110
3116
  ping: isSet(object.ping) ? Ping.fromJSON(object.ping) : void 0,
3111
3117
  piiKeyResponse: isSet(object.piiKeyResponse) ? PiiKeyResponse.fromJSON(object.piiKeyResponse) : void 0,
3112
3118
  pseudonymSyncResponse: isSet(object.pseudonymSyncResponse) ? PseudonymSyncResponse.fromJSON(object.pseudonymSyncResponse) : void 0,
3119
+ getRateTariffResponse: isSet(object.getRateTariffResponse) ? GetRateTariffResponse.fromJSON(object.getRateTariffResponse) : void 0,
3113
3120
  navigationRouteResponse: isSet(object.navigationRouteResponse) ? NavigationRouteResponse.fromJSON(object.navigationRouteResponse) : void 0,
3114
3121
  getManagedChargingSitesResponse: isSet(object.getManagedChargingSitesResponse) ? GetManagedChargingSitesResponse.fromJSON(object.getManagedChargingSitesResponse) : void 0,
3115
3122
  getChargeOnSolarFeatureResponse: isSet(object.getChargeOnSolarFeatureResponse) ? GetChargeOnSolarFeatureResponse.fromJSON(object.getChargeOnSolarFeatureResponse) : void 0,
@@ -3132,6 +3139,7 @@ const Response = {
3132
3139
  if (message.ping !== void 0) obj.ping = Ping.toJSON(message.ping);
3133
3140
  if (message.piiKeyResponse !== void 0) obj.piiKeyResponse = PiiKeyResponse.toJSON(message.piiKeyResponse);
3134
3141
  if (message.pseudonymSyncResponse !== void 0) obj.pseudonymSyncResponse = PseudonymSyncResponse.toJSON(message.pseudonymSyncResponse);
3142
+ if (message.getRateTariffResponse !== void 0) obj.getRateTariffResponse = GetRateTariffResponse.toJSON(message.getRateTariffResponse);
3135
3143
  if (message.navigationRouteResponse !== void 0) obj.navigationRouteResponse = NavigationRouteResponse.toJSON(message.navigationRouteResponse);
3136
3144
  if (message.getManagedChargingSitesResponse !== void 0) obj.getManagedChargingSitesResponse = GetManagedChargingSitesResponse.toJSON(message.getManagedChargingSitesResponse);
3137
3145
  if (message.getChargeOnSolarFeatureResponse !== void 0) obj.getChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse.toJSON(message.getChargeOnSolarFeatureResponse);
@@ -3157,6 +3165,7 @@ const Response = {
3157
3165
  message.ping = object.ping !== void 0 && object.ping !== null ? Ping.fromPartial(object.ping) : void 0;
3158
3166
  message.piiKeyResponse = object.piiKeyResponse !== void 0 && object.piiKeyResponse !== null ? PiiKeyResponse.fromPartial(object.piiKeyResponse) : void 0;
3159
3167
  message.pseudonymSyncResponse = object.pseudonymSyncResponse !== void 0 && object.pseudonymSyncResponse !== null ? PseudonymSyncResponse.fromPartial(object.pseudonymSyncResponse) : void 0;
3168
+ message.getRateTariffResponse = object.getRateTariffResponse !== void 0 && object.getRateTariffResponse !== null ? GetRateTariffResponse.fromPartial(object.getRateTariffResponse) : void 0;
3160
3169
  message.navigationRouteResponse = object.navigationRouteResponse !== void 0 && object.navigationRouteResponse !== null ? NavigationRouteResponse.fromPartial(object.navigationRouteResponse) : void 0;
3161
3170
  message.getManagedChargingSitesResponse = object.getManagedChargingSitesResponse !== void 0 && object.getManagedChargingSitesResponse !== null ? GetManagedChargingSitesResponse.fromPartial(object.getManagedChargingSitesResponse) : void 0;
3162
3171
  message.getChargeOnSolarFeatureResponse = object.getChargeOnSolarFeatureResponse !== void 0 && object.getChargeOnSolarFeatureResponse !== null ? GetChargeOnSolarFeatureResponse.fromPartial(object.getChargeOnSolarFeatureResponse) : void 0;
@@ -4088,6 +4097,61 @@ const BandwidthTestResponse = {
4088
4097
  return message;
4089
4098
  }
4090
4099
  };
4100
+ function createBaseGetRateTariffResponse() {
4101
+ return {
4102
+ seasons: void 0,
4103
+ tariff: void 0
4104
+ };
4105
+ }
4106
+ const GetRateTariffResponse = {
4107
+ encode(message, writer = new BinaryWriter()) {
4108
+ if (message.seasons !== void 0) SetRateTariffRequest_Seasons.encode(message.seasons, writer.uint32(106).fork()).join();
4109
+ if (message.tariff !== void 0) SetRateTariffRequest_Tariff.encode(message.tariff, writer.uint32(114).fork()).join();
4110
+ return writer;
4111
+ },
4112
+ decode(input, length) {
4113
+ const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
4114
+ const end = length === void 0 ? reader.len : reader.pos + length;
4115
+ const message = createBaseGetRateTariffResponse();
4116
+ while (reader.pos < end) {
4117
+ const tag = reader.uint32();
4118
+ switch (tag >>> 3) {
4119
+ case 13:
4120
+ if (tag !== 106) break;
4121
+ message.seasons = SetRateTariffRequest_Seasons.decode(reader, reader.uint32());
4122
+ continue;
4123
+ case 14:
4124
+ if (tag !== 114) break;
4125
+ message.tariff = SetRateTariffRequest_Tariff.decode(reader, reader.uint32());
4126
+ continue;
4127
+ }
4128
+ if ((tag & 7) === 4 || tag === 0) break;
4129
+ reader.skip(tag & 7);
4130
+ }
4131
+ return message;
4132
+ },
4133
+ fromJSON(object) {
4134
+ return {
4135
+ seasons: isSet(object.seasons) ? SetRateTariffRequest_Seasons.fromJSON(object.seasons) : void 0,
4136
+ tariff: isSet(object.tariff) ? SetRateTariffRequest_Tariff.fromJSON(object.tariff) : void 0
4137
+ };
4138
+ },
4139
+ toJSON(message) {
4140
+ const obj = {};
4141
+ if (message.seasons !== void 0) obj.seasons = SetRateTariffRequest_Seasons.toJSON(message.seasons);
4142
+ if (message.tariff !== void 0) obj.tariff = SetRateTariffRequest_Tariff.toJSON(message.tariff);
4143
+ return obj;
4144
+ },
4145
+ create(base) {
4146
+ return GetRateTariffResponse.fromPartial(base ?? {});
4147
+ },
4148
+ fromPartial(object) {
4149
+ const message = createBaseGetRateTariffResponse();
4150
+ message.seasons = object.seasons !== void 0 && object.seasons !== null ? SetRateTariffRequest_Seasons.fromPartial(object.seasons) : void 0;
4151
+ message.tariff = object.tariff !== void 0 && object.tariff !== null ? SetRateTariffRequest_Tariff.fromPartial(object.tariff) : void 0;
4152
+ return message;
4153
+ }
4154
+ };
4091
4155
  function createBaseActionStatus() {
4092
4156
  return {
4093
4157
  result: 0,
@@ -11992,4 +12056,4 @@ function isSet(value) {
11992
12056
  return value !== null && value !== void 0;
11993
12057
  }
11994
12058
  //#endregion
11995
- export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
12059
+ export { Action, ActionStatus, AddManagedChargingSiteRequest, AddManagedChargingSiteResponse, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BandwidthTestResponse, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, ExistingManagedChargingSiteNearby, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocalProfilesResponse, GetLocationState, GetManagedChargingSitesRequest, GetManagedChargingSitesResponse, GetMediaDetailState, GetMediaState, GetMessagesAction, GetMessagesResponse, GetNearbyChargingSites, GetParentalControlsState, GetParkedAccessoryState, GetPreconditioningScheduleState, GetRateTariffRequest, GetRateTariffResponse, GetSoftwareUpdateState, GetSuspensionState, GetTirePressureState, GetVehicleData, GetVehicleImageState, GetVehicleState, HvacAutoAction, HvacBioweaponModeAction, HvacClimateKeeperAction, HvacClimateKeeperAction_ClimateKeeperActionE, HvacClimateKeeperAction_ManualOverrideModeE, HvacRecirculationAction, HvacSeatCoolerActions, HvacSeatCoolerActions_HvacSeatCoolerAction, HvacSeatCoolerActions_HvacSeatCoolerLevelE, HvacSeatCoolerActions_HvacSeatCoolerPositionE, HvacSeatHeaterActions, HvacSeatHeaterActions_HvacSeatHeaterAction, HvacSetPreconditioningMaxAction, HvacSetPreconditioningMaxAction_ManualOverrideModeE, HvacSteeringWheelHeaterAction, HvacTemperatureAdjustmentAction, HvacTemperatureAdjustmentAction_HvacTemperatureZone, HvacTemperatureAdjustmentAction_Temperature, KeyInfo, KeysInfoResponse, ManagedChargingSite, ManagedChargingSiteAddedOrUpdated, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MobileAppMessage, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationRouteResponse, NavigationRouteResponse_TrafficDetail, NavigationRouteResponse_TrafficStatus, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, PiiKeyResponse, Ping, Profile, PseudonymSyncRequest, PseudonymSyncResponse, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, RequestTeslaAuthCommand, Response, ResultReason, ScheduledChargingAction, ScheduledDepartureAction, SetCabinOverheatProtectionAction, SetChargingAmpsAction, SetCopTempAction, SetDischargeLimitAction, SetDistanceUnitAction, SetDistanceUnitAction_Unit, SetEnergyDisplayFormatAction, SetEnergyDisplayFormatAction_Format, SetKeepAccessoryPowerModeAction, SetLightbarBrightnessAction, SetLightbarDitchAction, SetLightbarMiddleAction, SetLowPowerModeAction, SetOutletSocLimitAction, SetOutletTimerAction, SetOutletsOnOffAction, SetOutletsOnOffAction_OutletRequest, SetPhoneSettingPreferencesAction, SetPhoneSettingPreferencesAction_FontSize, SetPowerFeedOnOffAction, SetPowerFeedOnOffAction_PowerFeedRequest, SetPowerFeedSocLimitAction, SetPowerFeedTimerAction, SetPowershareDischargeLimitAction, SetPowershareFeatureAction, SetPowershareFeatureAction_PowershareFeatureRequest, SetPowershareRequestAction, SetPowershareRequestAction_PowershareRequest, SetRateTariffRequest, SetRateTariffRequest_Charges, SetRateTariffRequest_FixedCharge, SetRateTariffRequest_RateBand, SetRateTariffRequest_Season, SetRateTariffRequest_Seasons, SetRateTariffRequest_TOUPeriod, SetRateTariffRequest_TOUPeriods, SetRateTariffRequest_Tariff, SetSuspensionLevelAction, SetSuspensionLevelAction_SuspensionLevel, SetTemperatureUnitAction, SetTemperatureUnitAction_Unit, SetTentModeRequestAction, SetTimeDisplayFormatAction, SetTimeDisplayFormatAction_Format, SetTirePressureUnitAction, SetTirePressureUnitAction_Unit, SetTrailerLightTestStartStopAction, SetTruckBedLightAutoStateAction, SetTruckBedLightBrightnessAction, SetVehicleNameAction, SetZoneLightRequestAction, SetZoneLightRequestAction_ZoneLightRequest, SetupCloudProfileWithLocalProfileUuidAction, SiteController, StartLightShowAction, StopLightShowAction, StreamMessage, StwHeatLevelAction, Superchargers, TakeDrivenoteAction, TeslaAuthResponseAction, UiSetUpcomingCalendarEntries, UpdateChargeOnSolarFeatureRequest, VehicleAction, VehicleControlCancelSoftwareUpdateAction, VehicleControlFlashLightsAction, VehicleControlHonkHornAction, VehicleControlResetPinToDriveAction, VehicleControlResetPinToDriveAdminAction, VehicleControlResetValetPinAction, VehicleControlScheduleSoftwareUpdateAction, VehicleControlSetPinToDriveAction, VehicleControlSetSentryModeAction, VehicleControlSetValetModeAction, VehicleControlSunroofOpenCloseAction, VehicleControlTriggerHomelinkAction, VehicleControlWindowAction, VehicleDataAck, VehicleDataSubscription, VehicleDataSubscriptionResponse, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, VitalsSubscriptionResponse, autoSeatClimateAction_AutoSeatPositionEFromJSON, autoSeatClimateAction_AutoSeatPositionEToJSON, hvacClimateKeeperAction_ClimateKeeperActionEFromJSON, hvacClimateKeeperAction_ClimateKeeperActionEToJSON, hvacClimateKeeperAction_ManualOverrideModeEFromJSON, hvacClimateKeeperAction_ManualOverrideModeEToJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerLevelEToJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEFromJSON, hvacSeatCoolerActions_HvacSeatCoolerPositionEToJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEFromJSON, hvacSetPreconditioningMaxAction_ManualOverrideModeEToJSON, navigationGpsDestinationRequest_RemoteNavTripOrderFromJSON, navigationGpsDestinationRequest_RemoteNavTripOrderToJSON, navigationGpsRequest_RemoteNavTripOrderFromJSON, navigationGpsRequest_RemoteNavTripOrderToJSON, navigationRouteResponse_TrafficStatusFromJSON, navigationRouteResponse_TrafficStatusToJSON, operationStatusEFromJSON, operationStatusEToJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEFromJSON, parentalControlsEnableSettingsAction_ParentalControlsSettingEToJSON, protobufPackage, setDistanceUnitAction_UnitFromJSON, setDistanceUnitAction_UnitToJSON, setEnergyDisplayFormatAction_FormatFromJSON, setEnergyDisplayFormatAction_FormatToJSON, setOutletsOnOffAction_OutletRequestFromJSON, setOutletsOnOffAction_OutletRequestToJSON, setPhoneSettingPreferencesAction_FontSizeFromJSON, setPhoneSettingPreferencesAction_FontSizeToJSON, setPowerFeedOnOffAction_PowerFeedRequestFromJSON, setPowerFeedOnOffAction_PowerFeedRequestToJSON, setPowershareFeatureAction_PowershareFeatureRequestFromJSON, setPowershareFeatureAction_PowershareFeatureRequestToJSON, setPowershareRequestAction_PowershareRequestFromJSON, setPowershareRequestAction_PowershareRequestToJSON, setSuspensionLevelAction_SuspensionLevelFromJSON, setSuspensionLevelAction_SuspensionLevelToJSON, setTemperatureUnitAction_UnitFromJSON, setTemperatureUnitAction_UnitToJSON, setTimeDisplayFormatAction_FormatFromJSON, setTimeDisplayFormatAction_FormatToJSON, setTirePressureUnitAction_UnitFromJSON, setTirePressureUnitAction_UnitToJSON, setZoneLightRequestAction_ZoneLightRequestFromJSON, setZoneLightRequestAction_ZoneLightRequestToJSON, vehicleImageRequest_TypeFromJSON, vehicleImageRequest_TypeToJSON };
@@ -13,6 +13,8 @@ let Domain = /* @__PURE__ */ function(Domain) {
13
13
  Domain[Domain["DOMAIN_BROADCAST"] = 0] = "DOMAIN_BROADCAST";
14
14
  Domain[Domain["DOMAIN_VEHICLE_SECURITY"] = 2] = "DOMAIN_VEHICLE_SECURITY";
15
15
  Domain[Domain["DOMAIN_INFOTAINMENT"] = 3] = "DOMAIN_INFOTAINMENT";
16
+ /** DOMAIN_AUTOPILOT - TESLEMETRY-EXT (app-4.58.6) */
17
+ Domain[Domain["DOMAIN_AUTOPILOT"] = 4] = "DOMAIN_AUTOPILOT";
16
18
  /** DOMAIN_AUTHD - TESLEMETRY-EXT (app-4.58.6) */
17
19
  Domain[Domain["DOMAIN_AUTHD"] = 5] = "DOMAIN_AUTHD";
18
20
  /** DOMAIN_ENERGY_DEVICE - TESLEMETRY-EXT (app-4.58.6) */
@@ -30,6 +32,8 @@ function domainFromJSON(object) {
30
32
  case "DOMAIN_VEHICLE_SECURITY": return 2;
31
33
  case 3:
32
34
  case "DOMAIN_INFOTAINMENT": return 3;
35
+ case 4:
36
+ case "DOMAIN_AUTOPILOT": return 4;
33
37
  case 5:
34
38
  case "DOMAIN_AUTHD": return 5;
35
39
  case 7:
@@ -44,6 +48,7 @@ function domainToJSON(object) {
44
48
  case 0: return "DOMAIN_BROADCAST";
45
49
  case 2: return "DOMAIN_VEHICLE_SECURITY";
46
50
  case 3: return "DOMAIN_INFOTAINMENT";
51
+ case 4: return "DOMAIN_AUTOPILOT";
47
52
  case 5: return "DOMAIN_AUTHD";
48
53
  case 7: return "DOMAIN_ENERGY_DEVICE";
49
54
  case 8: return "DOMAIN_ENERGY_DEVICE_AUTH";
@@ -12,6 +12,8 @@ declare enum Domain {
12
12
  DOMAIN_BROADCAST = 0,
13
13
  DOMAIN_VEHICLE_SECURITY = 2,
14
14
  DOMAIN_INFOTAINMENT = 3,
15
+ /** DOMAIN_AUTOPILOT - TESLEMETRY-EXT (app-4.58.6) */
16
+ DOMAIN_AUTOPILOT = 4,
15
17
  /** DOMAIN_AUTHD - TESLEMETRY-EXT (app-4.58.6) */
16
18
  DOMAIN_AUTHD = 5,
17
19
  /** DOMAIN_ENERGY_DEVICE - TESLEMETRY-EXT (app-4.58.6) */
@@ -12,6 +12,8 @@ declare enum Domain {
12
12
  DOMAIN_BROADCAST = 0,
13
13
  DOMAIN_VEHICLE_SECURITY = 2,
14
14
  DOMAIN_INFOTAINMENT = 3,
15
+ /** DOMAIN_AUTOPILOT - TESLEMETRY-EXT (app-4.58.6) */
16
+ DOMAIN_AUTOPILOT = 4,
15
17
  /** DOMAIN_AUTHD - TESLEMETRY-EXT (app-4.58.6) */
16
18
  DOMAIN_AUTHD = 5,
17
19
  /** DOMAIN_ENERGY_DEVICE - TESLEMETRY-EXT (app-4.58.6) */
@@ -12,6 +12,8 @@ let Domain = /* @__PURE__ */ function(Domain) {
12
12
  Domain[Domain["DOMAIN_BROADCAST"] = 0] = "DOMAIN_BROADCAST";
13
13
  Domain[Domain["DOMAIN_VEHICLE_SECURITY"] = 2] = "DOMAIN_VEHICLE_SECURITY";
14
14
  Domain[Domain["DOMAIN_INFOTAINMENT"] = 3] = "DOMAIN_INFOTAINMENT";
15
+ /** DOMAIN_AUTOPILOT - TESLEMETRY-EXT (app-4.58.6) */
16
+ Domain[Domain["DOMAIN_AUTOPILOT"] = 4] = "DOMAIN_AUTOPILOT";
15
17
  /** DOMAIN_AUTHD - TESLEMETRY-EXT (app-4.58.6) */
16
18
  Domain[Domain["DOMAIN_AUTHD"] = 5] = "DOMAIN_AUTHD";
17
19
  /** DOMAIN_ENERGY_DEVICE - TESLEMETRY-EXT (app-4.58.6) */
@@ -29,6 +31,8 @@ function domainFromJSON(object) {
29
31
  case "DOMAIN_VEHICLE_SECURITY": return 2;
30
32
  case 3:
31
33
  case "DOMAIN_INFOTAINMENT": return 3;
34
+ case 4:
35
+ case "DOMAIN_AUTOPILOT": return 4;
32
36
  case 5:
33
37
  case "DOMAIN_AUTHD": return 5;
34
38
  case 7:
@@ -43,6 +47,7 @@ function domainToJSON(object) {
43
47
  case 0: return "DOMAIN_BROADCAST";
44
48
  case 2: return "DOMAIN_VEHICLE_SECURITY";
45
49
  case 3: return "DOMAIN_INFOTAINMENT";
50
+ case 4: return "DOMAIN_AUTOPILOT";
46
51
  case 5: return "DOMAIN_AUTHD";
47
52
  case 7: return "DOMAIN_ENERGY_DEVICE";
48
53
  case 8: return "DOMAIN_ENERGY_DEVICE_AUTH";
@@ -1787,12 +1787,87 @@ const CommandStatus = {
1787
1787
  return message;
1788
1788
  }
1789
1789
  };
1790
+ function createBaseAutonomyCommand() {
1791
+ return { pullOverCommand: void 0 };
1792
+ }
1793
+ const AutonomyCommand = {
1794
+ encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
1795
+ if (message.pullOverCommand !== void 0) AutonomyCommand_PullOverCommand.encode(message.pullOverCommand, writer.uint32(10).fork()).join();
1796
+ return writer;
1797
+ },
1798
+ decode(input, length) {
1799
+ const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
1800
+ const end = length === void 0 ? reader.len : reader.pos + length;
1801
+ const message = createBaseAutonomyCommand();
1802
+ while (reader.pos < end) {
1803
+ const tag = reader.uint32();
1804
+ switch (tag >>> 3) {
1805
+ case 1:
1806
+ if (tag !== 10) break;
1807
+ message.pullOverCommand = AutonomyCommand_PullOverCommand.decode(reader, reader.uint32());
1808
+ continue;
1809
+ }
1810
+ if ((tag & 7) === 4 || tag === 0) break;
1811
+ reader.skip(tag & 7);
1812
+ }
1813
+ return message;
1814
+ },
1815
+ fromJSON(object) {
1816
+ return { pullOverCommand: isSet(object.pullOverCommand) ? AutonomyCommand_PullOverCommand.fromJSON(object.pullOverCommand) : void 0 };
1817
+ },
1818
+ toJSON(message) {
1819
+ const obj = {};
1820
+ if (message.pullOverCommand !== void 0) obj.pullOverCommand = AutonomyCommand_PullOverCommand.toJSON(message.pullOverCommand);
1821
+ return obj;
1822
+ },
1823
+ create(base) {
1824
+ return AutonomyCommand.fromPartial(base ?? {});
1825
+ },
1826
+ fromPartial(object) {
1827
+ const message = createBaseAutonomyCommand();
1828
+ message.pullOverCommand = object.pullOverCommand !== void 0 && object.pullOverCommand !== null ? AutonomyCommand_PullOverCommand.fromPartial(object.pullOverCommand) : void 0;
1829
+ return message;
1830
+ }
1831
+ };
1832
+ function createBaseAutonomyCommand_PullOverCommand() {
1833
+ return {};
1834
+ }
1835
+ const AutonomyCommand_PullOverCommand = {
1836
+ encode(_, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
1837
+ return writer;
1838
+ },
1839
+ decode(input, length) {
1840
+ const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
1841
+ const end = length === void 0 ? reader.len : reader.pos + length;
1842
+ const message = createBaseAutonomyCommand_PullOverCommand();
1843
+ while (reader.pos < end) {
1844
+ const tag = reader.uint32();
1845
+ switch (tag >>> 3) {}
1846
+ if ((tag & 7) === 4 || tag === 0) break;
1847
+ reader.skip(tag & 7);
1848
+ }
1849
+ return message;
1850
+ },
1851
+ fromJSON(_) {
1852
+ return {};
1853
+ },
1854
+ toJSON(_) {
1855
+ return {};
1856
+ },
1857
+ create(base) {
1858
+ return AutonomyCommand_PullOverCommand.fromPartial(base ?? {});
1859
+ },
1860
+ fromPartial(_) {
1861
+ return createBaseAutonomyCommand_PullOverCommand();
1862
+ }
1863
+ };
1790
1864
  function createBaseUnsignedMessage() {
1791
1865
  return {
1792
1866
  InformationRequest: void 0,
1793
1867
  RKEAction: void 0,
1794
1868
  closureMoveRequest: void 0,
1795
- WhitelistOperation: void 0
1869
+ WhitelistOperation: void 0,
1870
+ autonomyCommand: void 0
1796
1871
  };
1797
1872
  }
1798
1873
  const UnsignedMessage = {
@@ -1801,6 +1876,7 @@ const UnsignedMessage = {
1801
1876
  if (message.RKEAction !== void 0) writer.uint32(16).int32(message.RKEAction);
1802
1877
  if (message.closureMoveRequest !== void 0) ClosureMoveRequest.encode(message.closureMoveRequest, writer.uint32(34).fork()).join();
1803
1878
  if (message.WhitelistOperation !== void 0) WhitelistOperation.encode(message.WhitelistOperation, writer.uint32(130).fork()).join();
1879
+ if (message.autonomyCommand !== void 0) AutonomyCommand.encode(message.autonomyCommand, writer.uint32(530).fork()).join();
1804
1880
  return writer;
1805
1881
  },
1806
1882
  decode(input, length) {
@@ -1826,6 +1902,10 @@ const UnsignedMessage = {
1826
1902
  if (tag !== 130) break;
1827
1903
  message.WhitelistOperation = WhitelistOperation.decode(reader, reader.uint32());
1828
1904
  continue;
1905
+ case 66:
1906
+ if (tag !== 530) break;
1907
+ message.autonomyCommand = AutonomyCommand.decode(reader, reader.uint32());
1908
+ continue;
1829
1909
  }
1830
1910
  if ((tag & 7) === 4 || tag === 0) break;
1831
1911
  reader.skip(tag & 7);
@@ -1837,7 +1917,8 @@ const UnsignedMessage = {
1837
1917
  InformationRequest: isSet(object.InformationRequest) ? InformationRequest.fromJSON(object.InformationRequest) : void 0,
1838
1918
  RKEAction: isSet(object.RKEAction) ? rKEActionEFromJSON(object.RKEAction) : void 0,
1839
1919
  closureMoveRequest: isSet(object.closureMoveRequest) ? ClosureMoveRequest.fromJSON(object.closureMoveRequest) : void 0,
1840
- WhitelistOperation: isSet(object.WhitelistOperation) ? WhitelistOperation.fromJSON(object.WhitelistOperation) : void 0
1920
+ WhitelistOperation: isSet(object.WhitelistOperation) ? WhitelistOperation.fromJSON(object.WhitelistOperation) : void 0,
1921
+ autonomyCommand: isSet(object.autonomyCommand) ? AutonomyCommand.fromJSON(object.autonomyCommand) : void 0
1841
1922
  };
1842
1923
  },
1843
1924
  toJSON(message) {
@@ -1846,6 +1927,7 @@ const UnsignedMessage = {
1846
1927
  if (message.RKEAction !== void 0) obj.RKEAction = rKEActionEToJSON(message.RKEAction);
1847
1928
  if (message.closureMoveRequest !== void 0) obj.closureMoveRequest = ClosureMoveRequest.toJSON(message.closureMoveRequest);
1848
1929
  if (message.WhitelistOperation !== void 0) obj.WhitelistOperation = WhitelistOperation.toJSON(message.WhitelistOperation);
1930
+ if (message.autonomyCommand !== void 0) obj.autonomyCommand = AutonomyCommand.toJSON(message.autonomyCommand);
1849
1931
  return obj;
1850
1932
  },
1851
1933
  create(base) {
@@ -1857,6 +1939,7 @@ const UnsignedMessage = {
1857
1939
  message.RKEAction = object.RKEAction ?? void 0;
1858
1940
  message.closureMoveRequest = object.closureMoveRequest !== void 0 && object.closureMoveRequest !== null ? ClosureMoveRequest.fromPartial(object.closureMoveRequest) : void 0;
1859
1941
  message.WhitelistOperation = object.WhitelistOperation !== void 0 && object.WhitelistOperation !== null ? WhitelistOperation.fromPartial(object.WhitelistOperation) : void 0;
1942
+ message.autonomyCommand = object.autonomyCommand !== void 0 && object.autonomyCommand !== null ? AutonomyCommand.fromPartial(object.autonomyCommand) : void 0;
1860
1943
  return message;
1861
1944
  }
1862
1945
  };
@@ -2216,6 +2299,8 @@ function isSet(value) {
2216
2299
  return value !== null && value !== void 0;
2217
2300
  }
2218
2301
  //#endregion
2302
+ exports.AutonomyCommand = AutonomyCommand;
2303
+ exports.AutonomyCommand_PullOverCommand = AutonomyCommand_PullOverCommand;
2219
2304
  exports.ClosureMoveRequest = ClosureMoveRequest;
2220
2305
  exports.ClosureMoveTypeE = ClosureMoveTypeE;
2221
2306
  exports.ClosureStateE = ClosureStateE;
@@ -331,11 +331,19 @@ interface CommandStatus {
331
331
  signedMessageStatus?: SignedMessageStatus | undefined;
332
332
  whitelistOperationStatus?: WhitelistOperationStatus | undefined;
333
333
  }
334
+ /** ===== TESLEMETRY-EXT BEGIN (app-4.58.6) ===== */
335
+ interface AutonomyCommand {
336
+ pullOverCommand?: AutonomyCommand_PullOverCommand | undefined;
337
+ }
338
+ /** Remote "pull over" request for a vehicle driving under autonomy - a trigger, no parameters. */
339
+ interface AutonomyCommand_PullOverCommand {}
334
340
  interface UnsignedMessage {
335
341
  InformationRequest?: InformationRequest | undefined;
336
342
  RKEAction?: RKEActionE | undefined;
337
343
  closureMoveRequest?: ClosureMoveRequest | undefined;
338
344
  WhitelistOperation?: WhitelistOperation | undefined;
345
+ /** TESLEMETRY-EXT (app-4.58.6) */
346
+ autonomyCommand?: AutonomyCommand | undefined;
339
347
  }
340
348
  interface ClosureStatuses {
341
349
  frontDriverDoor: ClosureStateE;
@@ -383,6 +391,8 @@ declare const WhitelistOperation: MessageFns<WhitelistOperation>;
383
391
  declare const WhitelistOperationStatus: MessageFns<WhitelistOperationStatus>;
384
392
  declare const SignedMessageStatus: MessageFns<SignedMessageStatus>;
385
393
  declare const CommandStatus: MessageFns<CommandStatus>;
394
+ declare const AutonomyCommand: MessageFns<AutonomyCommand>;
395
+ declare const AutonomyCommand_PullOverCommand: MessageFns<AutonomyCommand_PullOverCommand>;
386
396
  declare const UnsignedMessage: MessageFns<UnsignedMessage>;
387
397
  declare const ClosureStatuses: MessageFns<ClosureStatuses>;
388
398
  declare const DetailedClosureStatus: MessageFns<DetailedClosureStatus>;
@@ -401,4 +411,4 @@ interface MessageFns<T> {
401
411
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
402
412
  }
403
413
  //#endregion
404
- export { ClosureMoveRequest, ClosureMoveTypeE, ClosureStateE, ClosureStatuses, CommandStatus, DeepPartial, DetailedClosureStatus, Exact, FromVCSECMessage, GearE, InformationRequest, InformationRequestType, KeyFormFactor, KeyIdentifier, KeyMetadata, MessageFns, OperationStatusE, PermissionChange, PublicKey, RKEActionE, ReplaceKey, SignatureType, SignedMessage, SignedMessageInformationE, SignedMessageStatus, ToVCSECMessage, UIDesireE, UnsignedMessage, UserPresenceE, VehicleLockStateE, VehicleSleepStatusE, VehicleStatus, WhitelistEntryInfo, WhitelistInfo, WhitelistOperation, WhitelistOperationInformationE, WhitelistOperationStatus, closureMoveTypeEFromJSON, closureMoveTypeEToJSON, closureStateEFromJSON, closureStateEToJSON, gearEFromJSON, gearEToJSON, informationRequestTypeFromJSON, informationRequestTypeToJSON, keyFormFactorFromJSON, keyFormFactorToJSON, operationStatusEFromJSON, operationStatusEToJSON, protobufPackage, rKEActionEFromJSON, rKEActionEToJSON, signatureTypeFromJSON, signatureTypeToJSON, signedMessageInformationEFromJSON, signedMessageInformationEToJSON, uIDesireEFromJSON, uIDesireEToJSON, userPresenceEFromJSON, userPresenceEToJSON, vehicleLockStateEFromJSON, vehicleLockStateEToJSON, vehicleSleepStatusEFromJSON, vehicleSleepStatusEToJSON, whitelistOperationInformationEFromJSON, whitelistOperationInformationEToJSON };
414
+ export { AutonomyCommand, AutonomyCommand_PullOverCommand, ClosureMoveRequest, ClosureMoveTypeE, ClosureStateE, ClosureStatuses, CommandStatus, DeepPartial, DetailedClosureStatus, Exact, FromVCSECMessage, GearE, InformationRequest, InformationRequestType, KeyFormFactor, KeyIdentifier, KeyMetadata, MessageFns, OperationStatusE, PermissionChange, PublicKey, RKEActionE, ReplaceKey, SignatureType, SignedMessage, SignedMessageInformationE, SignedMessageStatus, ToVCSECMessage, UIDesireE, UnsignedMessage, UserPresenceE, VehicleLockStateE, VehicleSleepStatusE, VehicleStatus, WhitelistEntryInfo, WhitelistInfo, WhitelistOperation, WhitelistOperationInformationE, WhitelistOperationStatus, closureMoveTypeEFromJSON, closureMoveTypeEToJSON, closureStateEFromJSON, closureStateEToJSON, gearEFromJSON, gearEToJSON, informationRequestTypeFromJSON, informationRequestTypeToJSON, keyFormFactorFromJSON, keyFormFactorToJSON, operationStatusEFromJSON, operationStatusEToJSON, protobufPackage, rKEActionEFromJSON, rKEActionEToJSON, signatureTypeFromJSON, signatureTypeToJSON, signedMessageInformationEFromJSON, signedMessageInformationEToJSON, uIDesireEFromJSON, uIDesireEToJSON, userPresenceEFromJSON, userPresenceEToJSON, vehicleLockStateEFromJSON, vehicleLockStateEToJSON, vehicleSleepStatusEFromJSON, vehicleSleepStatusEToJSON, whitelistOperationInformationEFromJSON, whitelistOperationInformationEToJSON };
@@ -331,11 +331,19 @@ interface CommandStatus {
331
331
  signedMessageStatus?: SignedMessageStatus | undefined;
332
332
  whitelistOperationStatus?: WhitelistOperationStatus | undefined;
333
333
  }
334
+ /** ===== TESLEMETRY-EXT BEGIN (app-4.58.6) ===== */
335
+ interface AutonomyCommand {
336
+ pullOverCommand?: AutonomyCommand_PullOverCommand | undefined;
337
+ }
338
+ /** Remote "pull over" request for a vehicle driving under autonomy - a trigger, no parameters. */
339
+ interface AutonomyCommand_PullOverCommand {}
334
340
  interface UnsignedMessage {
335
341
  InformationRequest?: InformationRequest | undefined;
336
342
  RKEAction?: RKEActionE | undefined;
337
343
  closureMoveRequest?: ClosureMoveRequest | undefined;
338
344
  WhitelistOperation?: WhitelistOperation | undefined;
345
+ /** TESLEMETRY-EXT (app-4.58.6) */
346
+ autonomyCommand?: AutonomyCommand | undefined;
339
347
  }
340
348
  interface ClosureStatuses {
341
349
  frontDriverDoor: ClosureStateE;
@@ -383,6 +391,8 @@ declare const WhitelistOperation: MessageFns<WhitelistOperation>;
383
391
  declare const WhitelistOperationStatus: MessageFns<WhitelistOperationStatus>;
384
392
  declare const SignedMessageStatus: MessageFns<SignedMessageStatus>;
385
393
  declare const CommandStatus: MessageFns<CommandStatus>;
394
+ declare const AutonomyCommand: MessageFns<AutonomyCommand>;
395
+ declare const AutonomyCommand_PullOverCommand: MessageFns<AutonomyCommand_PullOverCommand>;
386
396
  declare const UnsignedMessage: MessageFns<UnsignedMessage>;
387
397
  declare const ClosureStatuses: MessageFns<ClosureStatuses>;
388
398
  declare const DetailedClosureStatus: MessageFns<DetailedClosureStatus>;
@@ -401,4 +411,4 @@ interface MessageFns<T> {
401
411
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
402
412
  }
403
413
  //#endregion
404
- export { ClosureMoveRequest, ClosureMoveTypeE, ClosureStateE, ClosureStatuses, CommandStatus, DeepPartial, DetailedClosureStatus, Exact, FromVCSECMessage, GearE, InformationRequest, InformationRequestType, KeyFormFactor, KeyIdentifier, KeyMetadata, MessageFns, OperationStatusE, PermissionChange, PublicKey, RKEActionE, ReplaceKey, SignatureType, SignedMessage, SignedMessageInformationE, SignedMessageStatus, ToVCSECMessage, UIDesireE, UnsignedMessage, UserPresenceE, VehicleLockStateE, VehicleSleepStatusE, VehicleStatus, WhitelistEntryInfo, WhitelistInfo, WhitelistOperation, WhitelistOperationInformationE, WhitelistOperationStatus, closureMoveTypeEFromJSON, closureMoveTypeEToJSON, closureStateEFromJSON, closureStateEToJSON, gearEFromJSON, gearEToJSON, informationRequestTypeFromJSON, informationRequestTypeToJSON, keyFormFactorFromJSON, keyFormFactorToJSON, operationStatusEFromJSON, operationStatusEToJSON, protobufPackage, rKEActionEFromJSON, rKEActionEToJSON, signatureTypeFromJSON, signatureTypeToJSON, signedMessageInformationEFromJSON, signedMessageInformationEToJSON, uIDesireEFromJSON, uIDesireEToJSON, userPresenceEFromJSON, userPresenceEToJSON, vehicleLockStateEFromJSON, vehicleLockStateEToJSON, vehicleSleepStatusEFromJSON, vehicleSleepStatusEToJSON, whitelistOperationInformationEFromJSON, whitelistOperationInformationEToJSON };
414
+ export { AutonomyCommand, AutonomyCommand_PullOverCommand, ClosureMoveRequest, ClosureMoveTypeE, ClosureStateE, ClosureStatuses, CommandStatus, DeepPartial, DetailedClosureStatus, Exact, FromVCSECMessage, GearE, InformationRequest, InformationRequestType, KeyFormFactor, KeyIdentifier, KeyMetadata, MessageFns, OperationStatusE, PermissionChange, PublicKey, RKEActionE, ReplaceKey, SignatureType, SignedMessage, SignedMessageInformationE, SignedMessageStatus, ToVCSECMessage, UIDesireE, UnsignedMessage, UserPresenceE, VehicleLockStateE, VehicleSleepStatusE, VehicleStatus, WhitelistEntryInfo, WhitelistInfo, WhitelistOperation, WhitelistOperationInformationE, WhitelistOperationStatus, closureMoveTypeEFromJSON, closureMoveTypeEToJSON, closureStateEFromJSON, closureStateEToJSON, gearEFromJSON, gearEToJSON, informationRequestTypeFromJSON, informationRequestTypeToJSON, keyFormFactorFromJSON, keyFormFactorToJSON, operationStatusEFromJSON, operationStatusEToJSON, protobufPackage, rKEActionEFromJSON, rKEActionEToJSON, signatureTypeFromJSON, signatureTypeToJSON, signedMessageInformationEFromJSON, signedMessageInformationEToJSON, uIDesireEFromJSON, uIDesireEToJSON, userPresenceEFromJSON, userPresenceEToJSON, vehicleLockStateEFromJSON, vehicleLockStateEToJSON, vehicleSleepStatusEFromJSON, vehicleSleepStatusEToJSON, whitelistOperationInformationEFromJSON, whitelistOperationInformationEToJSON };