@teslemetry/tesla-protocol 0.1.2 → 0.3.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.
- package/dist/command/car_server.cjs +54 -2
- package/dist/command/car_server.d.cts +8 -1
- package/dist/command/car_server.d.mts +8 -1
- package/dist/command/car_server.mjs +54 -3
- package/dist/telemetry/vehicle_data.cjs +8 -1
- package/dist/telemetry/vehicle_data.d.cts +5 -1
- package/dist/telemetry/vehicle_data.d.mts +5 -1
- package/dist/telemetry/vehicle_data.mjs +8 -1
- package/package.json +1 -1
|
@@ -2940,7 +2940,8 @@ function createBaseResponse() {
|
|
|
2940
2940
|
vehicleData: void 0,
|
|
2941
2941
|
getSessionInfoResponse: void 0,
|
|
2942
2942
|
getNearbyChargingSites: void 0,
|
|
2943
|
-
ping: void 0
|
|
2943
|
+
ping: void 0,
|
|
2944
|
+
getChargeOnSolarFeatureResponse: void 0
|
|
2944
2945
|
};
|
|
2945
2946
|
}
|
|
2946
2947
|
const Response = {
|
|
@@ -2950,6 +2951,7 @@ const Response = {
|
|
|
2950
2951
|
if (message.getSessionInfoResponse !== void 0) require_command_signatures.SessionInfo.encode(message.getSessionInfoResponse, writer.uint32(26).fork()).join();
|
|
2951
2952
|
if (message.getNearbyChargingSites !== void 0) NearbyChargingSites.encode(message.getNearbyChargingSites, writer.uint32(42).fork()).join();
|
|
2952
2953
|
if (message.ping !== void 0) Ping.encode(message.ping, writer.uint32(74).fork()).join();
|
|
2954
|
+
if (message.getChargeOnSolarFeatureResponse !== void 0) GetChargeOnSolarFeatureResponse.encode(message.getChargeOnSolarFeatureResponse, writer.uint32(122).fork()).join();
|
|
2953
2955
|
return writer;
|
|
2954
2956
|
},
|
|
2955
2957
|
decode(input, length) {
|
|
@@ -2979,6 +2981,10 @@ const Response = {
|
|
|
2979
2981
|
if (tag !== 74) break;
|
|
2980
2982
|
message.ping = Ping.decode(reader, reader.uint32());
|
|
2981
2983
|
continue;
|
|
2984
|
+
case 15:
|
|
2985
|
+
if (tag !== 122) break;
|
|
2986
|
+
message.getChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse.decode(reader, reader.uint32());
|
|
2987
|
+
continue;
|
|
2982
2988
|
}
|
|
2983
2989
|
if ((tag & 7) === 4 || tag === 0) break;
|
|
2984
2990
|
reader.skip(tag & 7);
|
|
@@ -2991,7 +2997,8 @@ const Response = {
|
|
|
2991
2997
|
vehicleData: isSet(object.vehicleData) ? require_command_vehicle.VehicleData.fromJSON(object.vehicleData) : void 0,
|
|
2992
2998
|
getSessionInfoResponse: isSet(object.getSessionInfoResponse) ? require_command_signatures.SessionInfo.fromJSON(object.getSessionInfoResponse) : void 0,
|
|
2993
2999
|
getNearbyChargingSites: isSet(object.getNearbyChargingSites) ? NearbyChargingSites.fromJSON(object.getNearbyChargingSites) : void 0,
|
|
2994
|
-
ping: isSet(object.ping) ? Ping.fromJSON(object.ping) : void 0
|
|
3000
|
+
ping: isSet(object.ping) ? Ping.fromJSON(object.ping) : void 0,
|
|
3001
|
+
getChargeOnSolarFeatureResponse: isSet(object.getChargeOnSolarFeatureResponse) ? GetChargeOnSolarFeatureResponse.fromJSON(object.getChargeOnSolarFeatureResponse) : void 0
|
|
2995
3002
|
};
|
|
2996
3003
|
},
|
|
2997
3004
|
toJSON(message) {
|
|
@@ -3001,6 +3008,7 @@ const Response = {
|
|
|
3001
3008
|
if (message.getSessionInfoResponse !== void 0) obj.getSessionInfoResponse = require_command_signatures.SessionInfo.toJSON(message.getSessionInfoResponse);
|
|
3002
3009
|
if (message.getNearbyChargingSites !== void 0) obj.getNearbyChargingSites = NearbyChargingSites.toJSON(message.getNearbyChargingSites);
|
|
3003
3010
|
if (message.ping !== void 0) obj.ping = Ping.toJSON(message.ping);
|
|
3011
|
+
if (message.getChargeOnSolarFeatureResponse !== void 0) obj.getChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse.toJSON(message.getChargeOnSolarFeatureResponse);
|
|
3004
3012
|
return obj;
|
|
3005
3013
|
},
|
|
3006
3014
|
create(base) {
|
|
@@ -3013,6 +3021,7 @@ const Response = {
|
|
|
3013
3021
|
message.getSessionInfoResponse = object.getSessionInfoResponse !== void 0 && object.getSessionInfoResponse !== null ? require_command_signatures.SessionInfo.fromPartial(object.getSessionInfoResponse) : void 0;
|
|
3014
3022
|
message.getNearbyChargingSites = object.getNearbyChargingSites !== void 0 && object.getNearbyChargingSites !== null ? NearbyChargingSites.fromPartial(object.getNearbyChargingSites) : void 0;
|
|
3015
3023
|
message.ping = object.ping !== void 0 && object.ping !== null ? Ping.fromPartial(object.ping) : void 0;
|
|
3024
|
+
message.getChargeOnSolarFeatureResponse = object.getChargeOnSolarFeatureResponse !== void 0 && object.getChargeOnSolarFeatureResponse !== null ? GetChargeOnSolarFeatureResponse.fromPartial(object.getChargeOnSolarFeatureResponse) : void 0;
|
|
3016
3025
|
return message;
|
|
3017
3026
|
}
|
|
3018
3027
|
};
|
|
@@ -8529,6 +8538,48 @@ const GetChargeOnSolarFeatureRequest = {
|
|
|
8529
8538
|
return createBaseGetChargeOnSolarFeatureRequest();
|
|
8530
8539
|
}
|
|
8531
8540
|
};
|
|
8541
|
+
function createBaseGetChargeOnSolarFeatureResponse() {
|
|
8542
|
+
return { chargeOnSolar: void 0 };
|
|
8543
|
+
}
|
|
8544
|
+
const GetChargeOnSolarFeatureResponse = {
|
|
8545
|
+
encode(message, writer = new _bufbuild_protobuf_wire.BinaryWriter()) {
|
|
8546
|
+
if (message.chargeOnSolar !== void 0) ChargeOnSolarFeature.encode(message.chargeOnSolar, writer.uint32(10).fork()).join();
|
|
8547
|
+
return writer;
|
|
8548
|
+
},
|
|
8549
|
+
decode(input, length) {
|
|
8550
|
+
const reader = input instanceof _bufbuild_protobuf_wire.BinaryReader ? input : new _bufbuild_protobuf_wire.BinaryReader(input);
|
|
8551
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
8552
|
+
const message = createBaseGetChargeOnSolarFeatureResponse();
|
|
8553
|
+
while (reader.pos < end) {
|
|
8554
|
+
const tag = reader.uint32();
|
|
8555
|
+
switch (tag >>> 3) {
|
|
8556
|
+
case 1:
|
|
8557
|
+
if (tag !== 10) break;
|
|
8558
|
+
message.chargeOnSolar = ChargeOnSolarFeature.decode(reader, reader.uint32());
|
|
8559
|
+
continue;
|
|
8560
|
+
}
|
|
8561
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
8562
|
+
reader.skip(tag & 7);
|
|
8563
|
+
}
|
|
8564
|
+
return message;
|
|
8565
|
+
},
|
|
8566
|
+
fromJSON(object) {
|
|
8567
|
+
return { chargeOnSolar: isSet(object.chargeOnSolar) ? ChargeOnSolarFeature.fromJSON(object.chargeOnSolar) : void 0 };
|
|
8568
|
+
},
|
|
8569
|
+
toJSON(message) {
|
|
8570
|
+
const obj = {};
|
|
8571
|
+
if (message.chargeOnSolar !== void 0) obj.chargeOnSolar = ChargeOnSolarFeature.toJSON(message.chargeOnSolar);
|
|
8572
|
+
return obj;
|
|
8573
|
+
},
|
|
8574
|
+
create(base) {
|
|
8575
|
+
return GetChargeOnSolarFeatureResponse.fromPartial(base ?? {});
|
|
8576
|
+
},
|
|
8577
|
+
fromPartial(object) {
|
|
8578
|
+
const message = createBaseGetChargeOnSolarFeatureResponse();
|
|
8579
|
+
message.chargeOnSolar = object.chargeOnSolar !== void 0 && object.chargeOnSolar !== null ? ChargeOnSolarFeature.fromPartial(object.chargeOnSolar) : void 0;
|
|
8580
|
+
return message;
|
|
8581
|
+
}
|
|
8582
|
+
};
|
|
8532
8583
|
function createBaseChargeOnSolarFeature() {
|
|
8533
8584
|
return {
|
|
8534
8585
|
enabled: false,
|
|
@@ -10911,6 +10962,7 @@ exports.FetchKeysInfoAction = FetchKeysInfoAction;
|
|
|
10911
10962
|
exports.FormatUSBAction = FormatUSBAction;
|
|
10912
10963
|
exports.GetAlertState = GetAlertState;
|
|
10913
10964
|
exports.GetChargeOnSolarFeatureRequest = GetChargeOnSolarFeatureRequest;
|
|
10965
|
+
exports.GetChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse;
|
|
10914
10966
|
exports.GetChargeScheduleState = GetChargeScheduleState;
|
|
10915
10967
|
exports.GetChargeState = GetChargeState;
|
|
10916
10968
|
exports.GetChildPresenceDetectionState = GetChildPresenceDetectionState;
|
|
@@ -301,6 +301,8 @@ interface Response {
|
|
|
301
301
|
getSessionInfoResponse?: SessionInfo | undefined;
|
|
302
302
|
getNearbyChargingSites?: NearbyChargingSites | undefined;
|
|
303
303
|
ping?: Ping | undefined;
|
|
304
|
+
/** TESLEMETRY-EXT */
|
|
305
|
+
getChargeOnSolarFeatureResponse?: GetChargeOnSolarFeatureResponse | undefined;
|
|
304
306
|
}
|
|
305
307
|
interface ActionStatus {
|
|
306
308
|
result: OperationStatusE;
|
|
@@ -799,6 +801,10 @@ interface UpdateChargeOnSolarFeatureRequest {
|
|
|
799
801
|
chargeOnSolar: ChargeOnSolarFeature | undefined;
|
|
800
802
|
}
|
|
801
803
|
interface GetChargeOnSolarFeatureRequest {}
|
|
804
|
+
interface GetChargeOnSolarFeatureResponse {
|
|
805
|
+
/** Field with JSON name "chargeOnSolar" */
|
|
806
|
+
chargeOnSolar: ChargeOnSolarFeature | undefined;
|
|
807
|
+
}
|
|
802
808
|
interface ChargeOnSolarFeature {
|
|
803
809
|
enabled: boolean;
|
|
804
810
|
/** Field with JSON name "lowerChargeLimit" */
|
|
@@ -1214,6 +1220,7 @@ declare const StwHeatLevelAction: MessageFns<StwHeatLevelAction>;
|
|
|
1214
1220
|
declare const GetManagedChargingSitesRequest: MessageFns<GetManagedChargingSitesRequest>;
|
|
1215
1221
|
declare const UpdateChargeOnSolarFeatureRequest: MessageFns<UpdateChargeOnSolarFeatureRequest>;
|
|
1216
1222
|
declare const GetChargeOnSolarFeatureRequest: MessageFns<GetChargeOnSolarFeatureRequest>;
|
|
1223
|
+
declare const GetChargeOnSolarFeatureResponse: MessageFns<GetChargeOnSolarFeatureResponse>;
|
|
1217
1224
|
declare const ChargeOnSolarFeature: MessageFns<ChargeOnSolarFeature>;
|
|
1218
1225
|
declare const DrivingClearSpeedLimitPinAdminAction: MessageFns<DrivingClearSpeedLimitPinAdminAction>;
|
|
1219
1226
|
declare const SetOutletsOnOffAction: MessageFns<SetOutletsOnOffAction>;
|
|
@@ -1278,4 +1285,4 @@ interface MessageFns<T> {
|
|
|
1278
1285
|
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
1279
1286
|
}
|
|
1280
1287
|
//#endregion
|
|
1281
|
-
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
1288
|
+
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
@@ -301,6 +301,8 @@ interface Response {
|
|
|
301
301
|
getSessionInfoResponse?: SessionInfo | undefined;
|
|
302
302
|
getNearbyChargingSites?: NearbyChargingSites | undefined;
|
|
303
303
|
ping?: Ping | undefined;
|
|
304
|
+
/** TESLEMETRY-EXT */
|
|
305
|
+
getChargeOnSolarFeatureResponse?: GetChargeOnSolarFeatureResponse | undefined;
|
|
304
306
|
}
|
|
305
307
|
interface ActionStatus {
|
|
306
308
|
result: OperationStatusE;
|
|
@@ -799,6 +801,10 @@ interface UpdateChargeOnSolarFeatureRequest {
|
|
|
799
801
|
chargeOnSolar: ChargeOnSolarFeature | undefined;
|
|
800
802
|
}
|
|
801
803
|
interface GetChargeOnSolarFeatureRequest {}
|
|
804
|
+
interface GetChargeOnSolarFeatureResponse {
|
|
805
|
+
/** Field with JSON name "chargeOnSolar" */
|
|
806
|
+
chargeOnSolar: ChargeOnSolarFeature | undefined;
|
|
807
|
+
}
|
|
802
808
|
interface ChargeOnSolarFeature {
|
|
803
809
|
enabled: boolean;
|
|
804
810
|
/** Field with JSON name "lowerChargeLimit" */
|
|
@@ -1214,6 +1220,7 @@ declare const StwHeatLevelAction: MessageFns<StwHeatLevelAction>;
|
|
|
1214
1220
|
declare const GetManagedChargingSitesRequest: MessageFns<GetManagedChargingSitesRequest>;
|
|
1215
1221
|
declare const UpdateChargeOnSolarFeatureRequest: MessageFns<UpdateChargeOnSolarFeatureRequest>;
|
|
1216
1222
|
declare const GetChargeOnSolarFeatureRequest: MessageFns<GetChargeOnSolarFeatureRequest>;
|
|
1223
|
+
declare const GetChargeOnSolarFeatureResponse: MessageFns<GetChargeOnSolarFeatureResponse>;
|
|
1217
1224
|
declare const ChargeOnSolarFeature: MessageFns<ChargeOnSolarFeature>;
|
|
1218
1225
|
declare const DrivingClearSpeedLimitPinAdminAction: MessageFns<DrivingClearSpeedLimitPinAdminAction>;
|
|
1219
1226
|
declare const SetOutletsOnOffAction: MessageFns<SetOutletsOnOffAction>;
|
|
@@ -1278,4 +1285,4 @@ interface MessageFns<T> {
|
|
|
1278
1285
|
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
1279
1286
|
}
|
|
1280
1287
|
//#endregion
|
|
1281
|
-
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
1288
|
+
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeepPartial, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, Exact, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, MessageFns, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
@@ -2939,7 +2939,8 @@ function createBaseResponse() {
|
|
|
2939
2939
|
vehicleData: void 0,
|
|
2940
2940
|
getSessionInfoResponse: void 0,
|
|
2941
2941
|
getNearbyChargingSites: void 0,
|
|
2942
|
-
ping: void 0
|
|
2942
|
+
ping: void 0,
|
|
2943
|
+
getChargeOnSolarFeatureResponse: void 0
|
|
2943
2944
|
};
|
|
2944
2945
|
}
|
|
2945
2946
|
const Response = {
|
|
@@ -2949,6 +2950,7 @@ const Response = {
|
|
|
2949
2950
|
if (message.getSessionInfoResponse !== void 0) SessionInfo.encode(message.getSessionInfoResponse, writer.uint32(26).fork()).join();
|
|
2950
2951
|
if (message.getNearbyChargingSites !== void 0) NearbyChargingSites.encode(message.getNearbyChargingSites, writer.uint32(42).fork()).join();
|
|
2951
2952
|
if (message.ping !== void 0) Ping.encode(message.ping, writer.uint32(74).fork()).join();
|
|
2953
|
+
if (message.getChargeOnSolarFeatureResponse !== void 0) GetChargeOnSolarFeatureResponse.encode(message.getChargeOnSolarFeatureResponse, writer.uint32(122).fork()).join();
|
|
2952
2954
|
return writer;
|
|
2953
2955
|
},
|
|
2954
2956
|
decode(input, length) {
|
|
@@ -2978,6 +2980,10 @@ const Response = {
|
|
|
2978
2980
|
if (tag !== 74) break;
|
|
2979
2981
|
message.ping = Ping.decode(reader, reader.uint32());
|
|
2980
2982
|
continue;
|
|
2983
|
+
case 15:
|
|
2984
|
+
if (tag !== 122) break;
|
|
2985
|
+
message.getChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse.decode(reader, reader.uint32());
|
|
2986
|
+
continue;
|
|
2981
2987
|
}
|
|
2982
2988
|
if ((tag & 7) === 4 || tag === 0) break;
|
|
2983
2989
|
reader.skip(tag & 7);
|
|
@@ -2990,7 +2996,8 @@ const Response = {
|
|
|
2990
2996
|
vehicleData: isSet(object.vehicleData) ? VehicleData.fromJSON(object.vehicleData) : void 0,
|
|
2991
2997
|
getSessionInfoResponse: isSet(object.getSessionInfoResponse) ? SessionInfo.fromJSON(object.getSessionInfoResponse) : void 0,
|
|
2992
2998
|
getNearbyChargingSites: isSet(object.getNearbyChargingSites) ? NearbyChargingSites.fromJSON(object.getNearbyChargingSites) : void 0,
|
|
2993
|
-
ping: isSet(object.ping) ? Ping.fromJSON(object.ping) : void 0
|
|
2999
|
+
ping: isSet(object.ping) ? Ping.fromJSON(object.ping) : void 0,
|
|
3000
|
+
getChargeOnSolarFeatureResponse: isSet(object.getChargeOnSolarFeatureResponse) ? GetChargeOnSolarFeatureResponse.fromJSON(object.getChargeOnSolarFeatureResponse) : void 0
|
|
2994
3001
|
};
|
|
2995
3002
|
},
|
|
2996
3003
|
toJSON(message) {
|
|
@@ -3000,6 +3007,7 @@ const Response = {
|
|
|
3000
3007
|
if (message.getSessionInfoResponse !== void 0) obj.getSessionInfoResponse = SessionInfo.toJSON(message.getSessionInfoResponse);
|
|
3001
3008
|
if (message.getNearbyChargingSites !== void 0) obj.getNearbyChargingSites = NearbyChargingSites.toJSON(message.getNearbyChargingSites);
|
|
3002
3009
|
if (message.ping !== void 0) obj.ping = Ping.toJSON(message.ping);
|
|
3010
|
+
if (message.getChargeOnSolarFeatureResponse !== void 0) obj.getChargeOnSolarFeatureResponse = GetChargeOnSolarFeatureResponse.toJSON(message.getChargeOnSolarFeatureResponse);
|
|
3003
3011
|
return obj;
|
|
3004
3012
|
},
|
|
3005
3013
|
create(base) {
|
|
@@ -3012,6 +3020,7 @@ const Response = {
|
|
|
3012
3020
|
message.getSessionInfoResponse = object.getSessionInfoResponse !== void 0 && object.getSessionInfoResponse !== null ? SessionInfo.fromPartial(object.getSessionInfoResponse) : void 0;
|
|
3013
3021
|
message.getNearbyChargingSites = object.getNearbyChargingSites !== void 0 && object.getNearbyChargingSites !== null ? NearbyChargingSites.fromPartial(object.getNearbyChargingSites) : void 0;
|
|
3014
3022
|
message.ping = object.ping !== void 0 && object.ping !== null ? Ping.fromPartial(object.ping) : void 0;
|
|
3023
|
+
message.getChargeOnSolarFeatureResponse = object.getChargeOnSolarFeatureResponse !== void 0 && object.getChargeOnSolarFeatureResponse !== null ? GetChargeOnSolarFeatureResponse.fromPartial(object.getChargeOnSolarFeatureResponse) : void 0;
|
|
3015
3024
|
return message;
|
|
3016
3025
|
}
|
|
3017
3026
|
};
|
|
@@ -8528,6 +8537,48 @@ const GetChargeOnSolarFeatureRequest = {
|
|
|
8528
8537
|
return createBaseGetChargeOnSolarFeatureRequest();
|
|
8529
8538
|
}
|
|
8530
8539
|
};
|
|
8540
|
+
function createBaseGetChargeOnSolarFeatureResponse() {
|
|
8541
|
+
return { chargeOnSolar: void 0 };
|
|
8542
|
+
}
|
|
8543
|
+
const GetChargeOnSolarFeatureResponse = {
|
|
8544
|
+
encode(message, writer = new BinaryWriter()) {
|
|
8545
|
+
if (message.chargeOnSolar !== void 0) ChargeOnSolarFeature.encode(message.chargeOnSolar, writer.uint32(10).fork()).join();
|
|
8546
|
+
return writer;
|
|
8547
|
+
},
|
|
8548
|
+
decode(input, length) {
|
|
8549
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
8550
|
+
const end = length === void 0 ? reader.len : reader.pos + length;
|
|
8551
|
+
const message = createBaseGetChargeOnSolarFeatureResponse();
|
|
8552
|
+
while (reader.pos < end) {
|
|
8553
|
+
const tag = reader.uint32();
|
|
8554
|
+
switch (tag >>> 3) {
|
|
8555
|
+
case 1:
|
|
8556
|
+
if (tag !== 10) break;
|
|
8557
|
+
message.chargeOnSolar = ChargeOnSolarFeature.decode(reader, reader.uint32());
|
|
8558
|
+
continue;
|
|
8559
|
+
}
|
|
8560
|
+
if ((tag & 7) === 4 || tag === 0) break;
|
|
8561
|
+
reader.skip(tag & 7);
|
|
8562
|
+
}
|
|
8563
|
+
return message;
|
|
8564
|
+
},
|
|
8565
|
+
fromJSON(object) {
|
|
8566
|
+
return { chargeOnSolar: isSet(object.chargeOnSolar) ? ChargeOnSolarFeature.fromJSON(object.chargeOnSolar) : void 0 };
|
|
8567
|
+
},
|
|
8568
|
+
toJSON(message) {
|
|
8569
|
+
const obj = {};
|
|
8570
|
+
if (message.chargeOnSolar !== void 0) obj.chargeOnSolar = ChargeOnSolarFeature.toJSON(message.chargeOnSolar);
|
|
8571
|
+
return obj;
|
|
8572
|
+
},
|
|
8573
|
+
create(base) {
|
|
8574
|
+
return GetChargeOnSolarFeatureResponse.fromPartial(base ?? {});
|
|
8575
|
+
},
|
|
8576
|
+
fromPartial(object) {
|
|
8577
|
+
const message = createBaseGetChargeOnSolarFeatureResponse();
|
|
8578
|
+
message.chargeOnSolar = object.chargeOnSolar !== void 0 && object.chargeOnSolar !== null ? ChargeOnSolarFeature.fromPartial(object.chargeOnSolar) : void 0;
|
|
8579
|
+
return message;
|
|
8580
|
+
}
|
|
8581
|
+
};
|
|
8531
8582
|
function createBaseChargeOnSolarFeature() {
|
|
8532
8583
|
return {
|
|
8533
8584
|
enabled: false,
|
|
@@ -10877,4 +10928,4 @@ function isSet(value) {
|
|
|
10877
10928
|
return value !== null && value !== void 0;
|
|
10878
10929
|
}
|
|
10879
10930
|
//#endregion
|
|
10880
|
-
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
10931
|
+
export { Action, ActionStatus, AddManagedChargingSiteRequest, AutoSeatClimateAction, AutoSeatClimateAction_AutoSeatPositionE, AutoSeatClimateAction_CarSeat, AutoStwHeatAction, BandwidthTest, BatchRemoveChargeSchedulesAction, BatchRemovePreconditionSchedulesAction, BluetoothClassicPairingRequest, BoomboxAction, CancelSohTestAction, CancelVehicleDataSubscription, ChargeOnSolarFeature, ChargePortDoorClose, ChargePortDoorOpen, ChargingSetLimitAction, ChargingStartStopAction, CreateStreamSession, DashcamSaveClipAction, DeleteDashcamClipsAction, DestinationCharging, DrivingClearSpeedLimitPinAction, DrivingClearSpeedLimitPinAdminAction, DrivingSetSpeedLimitAction, DrivingSpeedLimitAction, EncryptedData, EraseUserDataAction, FetchKeysInfoAction, FormatUSBAction, GetAlertState, GetChargeOnSolarFeatureRequest, GetChargeOnSolarFeatureResponse, GetChargeScheduleState, GetChargeState, GetChildPresenceDetectionState, GetClimateState, GetClosuresState, GetDriveState, GetGuiSettings, GetLightShowState, GetLocalProfilesForVaultUuidAction, GetLocationState, GetManagedChargingSitesRequest, GetMediaDetailState, GetMediaState, GetMessagesAction, 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, ManagedChargingSite, ManagerType, MediaNextFavorite, MediaNextTrack, MediaPlayAction, MediaPreviousFavorite, MediaPreviousTrack, MediaUpdateVolume, NavigationGpsDestinationRequest, NavigationGpsDestinationRequest_RemoteNavTripOrder, NavigationGpsRequest, NavigationGpsRequest_RemoteNavTripOrder, NavigationRequest, NavigationRouteAction, NavigationSuperchargerRequest, NavigationWaypointsRequest, NavigationWaypointsRequest_TripPlanOptions, NearbyChargingSites, OperationStatusE, ParentalControlsAction, ParentalControlsClearPinAction, ParentalControlsClearPinAdminAction, ParentalControlsEnableSettingsAction, ParentalControlsEnableSettingsAction_ParentalControlsSettingE, ParentalControlsSetSpeedLimitAction, PhoneUnitPreferences, PiiKeyRequest, Ping, PseudonymSyncRequest, RemoteStartDrive, RemoveChargeScheduleAction, RemoveManagedChargingSiteRequest, RemovePreconditionScheduleAction, 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, VehicleDataSubscription_PiiKeyRequest, VehicleImageDataChunkRequest, VehicleImageRequest, VehicleImageRequest_Type, VideoRequestAction, VitalsAck, VitalsSubscription, 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, 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 };
|
|
@@ -7,7 +7,9 @@ const protobufPackage = "telemetry.vehicle_data";
|
|
|
7
7
|
* UPSTREAM-SOURCE: teslamotors/fleet-telemetry
|
|
8
8
|
* UPSTREAM-PATH: protos/vehicle_data.proto
|
|
9
9
|
* UPSTREAM-COMMIT: see upstream.json
|
|
10
|
-
* This file tracks upstream verbatim
|
|
10
|
+
* This file tracks upstream verbatim, plus marked Teslemetry extensions
|
|
11
|
+
* (TESLEMETRY-EXT); reserved numbers annotated "expected" are not-yet-
|
|
12
|
+
* confirmed candidates and are not active members.
|
|
11
13
|
*/
|
|
12
14
|
let Field = /* @__PURE__ */ function(Field) {
|
|
13
15
|
Field[Field["Unknown"] = 0] = "Unknown";
|
|
@@ -1133,6 +1135,8 @@ let DetailedChargeStateValue = /* @__PURE__ */ function(DetailedChargeStateValue
|
|
|
1133
1135
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateCharging"] = 4] = "DetailedChargeStateCharging";
|
|
1134
1136
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateComplete"] = 5] = "DetailedChargeStateComplete";
|
|
1135
1137
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateStopped"] = 6] = "DetailedChargeStateStopped";
|
|
1138
|
+
/** DetailedChargeStateCalibrating - TESLEMETRY-EXT (teslamotors/vehicle-command ChargeState.ChargingState.Calibrating=8, offset -1 to match this enum's established numbering) */
|
|
1139
|
+
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateCalibrating"] = 7] = "DetailedChargeStateCalibrating";
|
|
1136
1140
|
DetailedChargeStateValue[DetailedChargeStateValue["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1137
1141
|
return DetailedChargeStateValue;
|
|
1138
1142
|
}({});
|
|
@@ -1152,6 +1156,8 @@ function detailedChargeStateValueFromJSON(object) {
|
|
|
1152
1156
|
case "DetailedChargeStateComplete": return 5;
|
|
1153
1157
|
case 6:
|
|
1154
1158
|
case "DetailedChargeStateStopped": return 6;
|
|
1159
|
+
case 7:
|
|
1160
|
+
case "DetailedChargeStateCalibrating": return 7;
|
|
1155
1161
|
default: return -1;
|
|
1156
1162
|
}
|
|
1157
1163
|
}
|
|
@@ -1164,6 +1170,7 @@ function detailedChargeStateValueToJSON(object) {
|
|
|
1164
1170
|
case 4: return "DetailedChargeStateCharging";
|
|
1165
1171
|
case 5: return "DetailedChargeStateComplete";
|
|
1166
1172
|
case 6: return "DetailedChargeStateStopped";
|
|
1173
|
+
case 7: return "DetailedChargeStateCalibrating";
|
|
1167
1174
|
default: return "UNRECOGNIZED";
|
|
1168
1175
|
}
|
|
1169
1176
|
}
|
|
@@ -5,7 +5,9 @@ declare const protobufPackage = "telemetry.vehicle_data";
|
|
|
5
5
|
* UPSTREAM-SOURCE: teslamotors/fleet-telemetry
|
|
6
6
|
* UPSTREAM-PATH: protos/vehicle_data.proto
|
|
7
7
|
* UPSTREAM-COMMIT: see upstream.json
|
|
8
|
-
* This file tracks upstream verbatim
|
|
8
|
+
* This file tracks upstream verbatim, plus marked Teslemetry extensions
|
|
9
|
+
* (TESLEMETRY-EXT); reserved numbers annotated "expected" are not-yet-
|
|
10
|
+
* confirmed candidates and are not active members.
|
|
9
11
|
*/
|
|
10
12
|
declare enum Field {
|
|
11
13
|
Unknown = 0,
|
|
@@ -312,6 +314,8 @@ declare enum DetailedChargeStateValue {
|
|
|
312
314
|
DetailedChargeStateCharging = 4,
|
|
313
315
|
DetailedChargeStateComplete = 5,
|
|
314
316
|
DetailedChargeStateStopped = 6,
|
|
317
|
+
/** DetailedChargeStateCalibrating - TESLEMETRY-EXT (teslamotors/vehicle-command ChargeState.ChargingState.Calibrating=8, offset -1 to match this enum's established numbering) */
|
|
318
|
+
DetailedChargeStateCalibrating = 7,
|
|
315
319
|
UNRECOGNIZED = -1
|
|
316
320
|
}
|
|
317
321
|
declare function detailedChargeStateValueFromJSON(object: any): DetailedChargeStateValue;
|
|
@@ -5,7 +5,9 @@ declare const protobufPackage = "telemetry.vehicle_data";
|
|
|
5
5
|
* UPSTREAM-SOURCE: teslamotors/fleet-telemetry
|
|
6
6
|
* UPSTREAM-PATH: protos/vehicle_data.proto
|
|
7
7
|
* UPSTREAM-COMMIT: see upstream.json
|
|
8
|
-
* This file tracks upstream verbatim
|
|
8
|
+
* This file tracks upstream verbatim, plus marked Teslemetry extensions
|
|
9
|
+
* (TESLEMETRY-EXT); reserved numbers annotated "expected" are not-yet-
|
|
10
|
+
* confirmed candidates and are not active members.
|
|
9
11
|
*/
|
|
10
12
|
declare enum Field {
|
|
11
13
|
Unknown = 0,
|
|
@@ -312,6 +314,8 @@ declare enum DetailedChargeStateValue {
|
|
|
312
314
|
DetailedChargeStateCharging = 4,
|
|
313
315
|
DetailedChargeStateComplete = 5,
|
|
314
316
|
DetailedChargeStateStopped = 6,
|
|
317
|
+
/** DetailedChargeStateCalibrating - TESLEMETRY-EXT (teslamotors/vehicle-command ChargeState.ChargingState.Calibrating=8, offset -1 to match this enum's established numbering) */
|
|
318
|
+
DetailedChargeStateCalibrating = 7,
|
|
315
319
|
UNRECOGNIZED = -1
|
|
316
320
|
}
|
|
317
321
|
declare function detailedChargeStateValueFromJSON(object: any): DetailedChargeStateValue;
|
|
@@ -6,7 +6,9 @@ const protobufPackage = "telemetry.vehicle_data";
|
|
|
6
6
|
* UPSTREAM-SOURCE: teslamotors/fleet-telemetry
|
|
7
7
|
* UPSTREAM-PATH: protos/vehicle_data.proto
|
|
8
8
|
* UPSTREAM-COMMIT: see upstream.json
|
|
9
|
-
* This file tracks upstream verbatim
|
|
9
|
+
* This file tracks upstream verbatim, plus marked Teslemetry extensions
|
|
10
|
+
* (TESLEMETRY-EXT); reserved numbers annotated "expected" are not-yet-
|
|
11
|
+
* confirmed candidates and are not active members.
|
|
10
12
|
*/
|
|
11
13
|
let Field = /* @__PURE__ */ function(Field) {
|
|
12
14
|
Field[Field["Unknown"] = 0] = "Unknown";
|
|
@@ -1132,6 +1134,8 @@ let DetailedChargeStateValue = /* @__PURE__ */ function(DetailedChargeStateValue
|
|
|
1132
1134
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateCharging"] = 4] = "DetailedChargeStateCharging";
|
|
1133
1135
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateComplete"] = 5] = "DetailedChargeStateComplete";
|
|
1134
1136
|
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateStopped"] = 6] = "DetailedChargeStateStopped";
|
|
1137
|
+
/** DetailedChargeStateCalibrating - TESLEMETRY-EXT (teslamotors/vehicle-command ChargeState.ChargingState.Calibrating=8, offset -1 to match this enum's established numbering) */
|
|
1138
|
+
DetailedChargeStateValue[DetailedChargeStateValue["DetailedChargeStateCalibrating"] = 7] = "DetailedChargeStateCalibrating";
|
|
1135
1139
|
DetailedChargeStateValue[DetailedChargeStateValue["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
1136
1140
|
return DetailedChargeStateValue;
|
|
1137
1141
|
}({});
|
|
@@ -1151,6 +1155,8 @@ function detailedChargeStateValueFromJSON(object) {
|
|
|
1151
1155
|
case "DetailedChargeStateComplete": return 5;
|
|
1152
1156
|
case 6:
|
|
1153
1157
|
case "DetailedChargeStateStopped": return 6;
|
|
1158
|
+
case 7:
|
|
1159
|
+
case "DetailedChargeStateCalibrating": return 7;
|
|
1154
1160
|
default: return -1;
|
|
1155
1161
|
}
|
|
1156
1162
|
}
|
|
@@ -1163,6 +1169,7 @@ function detailedChargeStateValueToJSON(object) {
|
|
|
1163
1169
|
case 4: return "DetailedChargeStateCharging";
|
|
1164
1170
|
case 5: return "DetailedChargeStateComplete";
|
|
1165
1171
|
case 6: return "DetailedChargeStateStopped";
|
|
1172
|
+
case 7: return "DetailedChargeStateCalibrating";
|
|
1166
1173
|
default: return "UNRECOGNIZED";
|
|
1167
1174
|
}
|
|
1168
1175
|
}
|
package/package.json
CHANGED