tesla-fleet-api 1.1.2__py3-none-any.whl → 1.2.0__py3-none-any.whl
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.
- tesla_fleet_api/__init__.py +1 -1
- tesla_fleet_api/tesla/tesla.py +20 -0
- tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi +7 -5
- tesla_fleet_api/tesla/vehicle/proto/common_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py +1 -1
- tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi +15 -13
- {tesla_fleet_api-1.1.2.dist-info → tesla_fleet_api-1.2.0.dist-info}/METADATA +1 -1
- {tesla_fleet_api-1.1.2.dist-info → tesla_fleet_api-1.2.0.dist-info}/RECORD +22 -22
- {tesla_fleet_api-1.1.2.dist-info → tesla_fleet_api-1.2.0.dist-info}/WHEEL +0 -0
- {tesla_fleet_api-1.1.2.dist-info → tesla_fleet_api-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {tesla_fleet_api-1.1.2.dist-info → tesla_fleet_api-1.2.0.dist-info}/top_level.txt +0 -0
tesla_fleet_api/__init__.py
CHANGED
tesla_fleet_api/tesla/tesla.py
CHANGED
@@ -62,3 +62,23 @@ class Tesla:
|
|
62
62
|
def has_private_key(self) -> bool:
|
63
63
|
"""Check if the private key has been set."""
|
64
64
|
return self.private_key is not None
|
65
|
+
|
66
|
+
@property
|
67
|
+
def public_pem(self) -> str:
|
68
|
+
"""Get the public key in PEM format."""
|
69
|
+
if self.private_key is None:
|
70
|
+
raise ValueError("Private key is not set")
|
71
|
+
return self.private_key.public_key().public_bytes(
|
72
|
+
encoding=serialization.Encoding.PEM,
|
73
|
+
format=serialization.PublicFormat.SubjectPublicKeyInfo,
|
74
|
+
).decode('utf-8')
|
75
|
+
|
76
|
+
@property
|
77
|
+
def public_uncompressed_point(self) -> str:
|
78
|
+
"""Get the public key in uncompressed point format."""
|
79
|
+
if self.private_key is None:
|
80
|
+
raise ValueError("Private key is not set")
|
81
|
+
return self.private_key.public_key().public_bytes(
|
82
|
+
encoding=serialization.Encoding.X962,
|
83
|
+
format=serialization.PublicFormat.UncompressedPoint,
|
84
|
+
).hex()
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'car_server.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
from . import common_pb2 as common__pb2
|
10
10
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import datetime
|
1
2
|
import common_pb2 as _common_pb2
|
2
3
|
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
3
4
|
import signatures_pb2 as _signatures_pb2
|
@@ -6,7 +7,8 @@ from google.protobuf.internal import containers as _containers
|
|
6
7
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
7
8
|
from google.protobuf import descriptor as _descriptor
|
8
9
|
from google.protobuf import message as _message
|
9
|
-
from
|
10
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
11
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
10
12
|
DESCRIPTOR: _descriptor.FileDescriptor
|
11
13
|
|
12
14
|
class OperationStatus_E(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -652,7 +654,7 @@ class NearbyChargingSites(_message.Message):
|
|
652
654
|
superchargers: _containers.RepeatedCompositeFieldContainer[Superchargers]
|
653
655
|
congestion_sync_time_utc_secs: int
|
654
656
|
|
655
|
-
def __init__(self, timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., superchargers: _Optional[_Iterable[_Union[Superchargers, _Mapping]]]=..., congestion_sync_time_utc_secs: _Optional[int]=...) -> None:
|
657
|
+
def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., superchargers: _Optional[_Iterable[_Union[Superchargers, _Mapping]]]=..., congestion_sync_time_utc_secs: _Optional[int]=...) -> None:
|
656
658
|
...
|
657
659
|
|
658
660
|
class Superchargers(_message.Message):
|
@@ -875,7 +877,7 @@ class Ping(_message.Message):
|
|
875
877
|
local_timestamp: _timestamp_pb2.Timestamp
|
876
878
|
last_remote_timestamp: _timestamp_pb2.Timestamp
|
877
879
|
|
878
|
-
def __init__(self, ping_id: _Optional[int]=..., local_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., last_remote_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
880
|
+
def __init__(self, ping_id: _Optional[int]=..., local_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., last_remote_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
879
881
|
...
|
880
882
|
|
881
883
|
class ScheduledChargingAction(_message.Message):
|
@@ -1170,7 +1172,7 @@ class VehicleDataAck(_message.Message):
|
|
1170
1172
|
suspension_state_timestamp: _timestamp_pb2.Timestamp
|
1171
1173
|
decryption_error_field: _containers.RepeatedScalarFieldContainer[int]
|
1172
1174
|
|
1173
|
-
def __init__(self, charge_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., climate_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., closures_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., drive_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., gui_settings_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., location_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., vehicle_config_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., vehicle_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., parked_accessory_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., charge_schedule_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., preconditioning_schedule_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., alert_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., suspension_state_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., decryption_error_field: _Optional[_Iterable[int]]=...) -> None:
|
1175
|
+
def __init__(self, charge_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., climate_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., closures_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., drive_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., gui_settings_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., location_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., vehicle_config_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., vehicle_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., parked_accessory_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., charge_schedule_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., preconditioning_schedule_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., alert_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., suspension_state_timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., decryption_error_field: _Optional[_Iterable[int]]=...) -> None:
|
1174
1176
|
...
|
1175
1177
|
|
1176
1178
|
class VitalsSubscription(_message.Message):
|
@@ -1200,7 +1202,7 @@ class PiiKeyRequest(_message.Message):
|
|
1200
1202
|
subscriber_public_key: str
|
1201
1203
|
pii_key_expiration: _timestamp_pb2.Timestamp
|
1202
1204
|
|
1203
|
-
def __init__(self, subscriber_public_key: _Optional[str]=..., pii_key_expiration: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
1205
|
+
def __init__(self, subscriber_public_key: _Optional[str]=..., pii_key_expiration: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
1204
1206
|
...
|
1205
1207
|
|
1206
1208
|
class PseudonymSyncRequest(_message.Message):
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'common.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0ccommon.proto\x12\tCarServer"\x06\n\x04Void".\n\x07LatLong\x12\x10\n\x08latitude\x18\x01 \x01(\x02\x12\x11\n\tlongitude\x18\x02 \x01(\x02"\xae\x01\n\x14ChargePortLatchState\x12\x1e\n\x03SNA\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12%\n\nDisengaged\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12"\n\x07Engaged\x18\x03 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12#\n\x08Blocking\x18\x04 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x06\n\x04type"i\n\x14PreconditioningTimes\x12#\n\x08all_week\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12#\n\x08weekdays\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x07\n\x05times"i\n\x14OffPeakChargingTimes\x12#\n\x08all_week\x18\x01 \x01(\x0b2\x0f.CarServer.VoidH\x00\x12#\n\x08weekdays\x18\x02 \x01(\x0b2\x0f.CarServer.VoidH\x00B\x07\n\x05times"\xda\x01\n\x0eChargeSchedule\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x14\n\x0cdays_of_week\x18\x03 \x01(\x05\x12\x15\n\rstart_enabled\x18\x04 \x01(\x08\x12\x12\n\nstart_time\x18\x05 \x01(\x05\x12\x13\n\x0bend_enabled\x18\x06 \x01(\x08\x12\x10\n\x08end_time\x18\x07 \x01(\x05\x12\x10\n\x08one_time\x18\x08 \x01(\x08\x12\x0f\n\x07enabled\x18\t \x01(\x08\x12\x10\n\x08latitude\x18\n \x01(\x02\x12\x11\n\tlongitude\x18\x0b \x01(\x02"\xa9\x01\n\x14PreconditionSchedule\x12\n\n\x02id\x18\x01 \x01(\x04\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x14\n\x0cdays_of_week\x18\x03 \x01(\x05\x12\x19\n\x11precondition_time\x18\x04 \x01(\x05\x12\x10\n\x08one_time\x18\x05 \x01(\x08\x12\x0f\n\x07enabled\x18\x06 \x01(\x08\x12\x10\n\x08latitude\x18\x07 \x01(\x02\x12\x11\n\tlongitude\x18\x08 \x01(\x02*\x16\n\x07Invalid\x12\x0b\n\x07INVALID\x10\x00*;\n\x13MediaPlaybackStatus\x12\x0b\n\x07Stopped\x10\x00\x12\x0b\n\x07Playing\x10\x01\x12\n\n\x06Paused\x10\x02*k\n\x0cStwHeatLevel\x12\x18\n\x14StwHeatLevel_Unknown\x10\x00\x12\x14\n\x10StwHeatLevel_Off\x10\x01\x12\x14\n\x10StwHeatLevel_Low\x10\x02\x12\x15\n\x11StwHeatLevel_High\x10\x03Bn\n$com.tesla.generated.carserver.commonZFgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/carserverb\x06proto3')
|
10
10
|
_globals = globals()
|
@@ -1,7 +1,8 @@
|
|
1
1
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
2
2
|
from google.protobuf import descriptor as _descriptor
|
3
3
|
from google.protobuf import message as _message
|
4
|
-
from
|
4
|
+
from collections.abc import Mapping as _Mapping
|
5
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
5
6
|
DESCRIPTOR: _descriptor.FileDescriptor
|
6
7
|
|
7
8
|
class Invalid(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'errors.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0cerrors.proto\x12\x06Errors"<\n\x0cNominalError\x12,\n\x0cgenericError\x18\x01 \x01(\x0e2\x16.Errors.GenericError_E*\x9c\x02\n\x0eGenericError_E\x12\x15\n\x11GENERICERROR_NONE\x10\x00\x12\x18\n\x14GENERICERROR_UNKNOWN\x10\x01\x12\x1e\n\x1aGENERICERROR_CLOSURES_OPEN\x10\x02\x12\x1b\n\x17GENERICERROR_ALREADY_ON\x10\x03\x12*\n&GENERICERROR_DISABLED_FOR_USER_COMMAND\x10\x04\x12$\n GENERICERROR_VEHICLE_NOT_IN_PARK\x10\x05\x12\x1d\n\x19GENERICERROR_UNAUTHORIZED\x10\x06\x12+\n\'GENERICERROR_NOT_ALLOWED_OVER_TRANSPORT\x10\x07Ba\n\x1acom.tesla.generated.errorsZCgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/errorsb\x06proto3')
|
10
10
|
_globals = globals()
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'keys.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\nkeys.proto\x12\x04Keys*\x8a\x01\n\x04Role\x12\r\n\tROLE_NONE\x10\x00\x12\x10\n\x0cROLE_SERVICE\x10\x01\x12\x0e\n\nROLE_OWNER\x10\x02\x12\x0f\n\x0bROLE_DRIVER\x10\x03\x12\x0b\n\x07ROLE_FM\x10\x04\x12\x18\n\x14ROLE_VEHICLE_MONITOR\x10\x05\x12\x19\n\x15ROLE_CHARGING_MANAGER\x10\x06B]\n\x18com.tesla.generated.keysZAgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/keysb\x06proto3')
|
10
10
|
_globals = globals()
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'managed_charging.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16managed_charging.proto\x12\x0fManagedCharging*\xc7\x02\n\x1bChargeOnSolarNoChargeReason\x12,\n(CHARGE_ON_SOLAR_NO_CHARGE_REASON_INVALID\x10\x00\x12>\n:CHARGE_ON_SOLAR_NO_CHARGE_REASON_POWERWALL_CHARGE_PRIORITY\x10\x01\x127\n3CHARGE_ON_SOLAR_NO_CHARGE_REASON_INSUFFICIENT_SOLAR\x10\x02\x129\n5CHARGE_ON_SOLAR_NO_CHARGE_REASON_GRID_EXPORT_PRIORITY\x10\x03\x12F\nBCHARGE_ON_SOLAR_NO_CHARGE_REASON_ALTERNATE_VEHICLE_CHARGE_PRIORITY\x10\x04BNZLgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/managedchargingb\x06proto3')
|
10
10
|
_globals = globals()
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'signatures.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10signatures.proto\x12\nSignatures"L\n\x0bKeyIdentity\x12\x14\n\npublic_key\x18\x01 \x01(\x0cH\x00\x12\x10\n\x06handle\x18\x03 \x01(\rH\x00B\x0f\n\ridentity_typeJ\x04\x08\x02\x10\x03"u\n#AES_GCM_Personalized_Signature_Data\x12\r\n\x05epoch\x18\x01 \x01(\x0c\x12\r\n\x05nonce\x18\x02 \x01(\x0c\x12\x0f\n\x07counter\x18\x03 \x01(\r\x12\x12\n\nexpires_at\x18\x04 \x01(\x07\x12\x0b\n\x03tag\x18\x05 \x01(\x0c"N\n\x1fAES_GCM_Response_Signature_Data\x12\r\n\x05nonce\x18\x01 \x01(\x0c\x12\x0f\n\x07counter\x18\x02 \x01(\r\x12\x0b\n\x03tag\x18\x03 \x01(\x0c""\n\x13HMAC_Signature_Data\x12\x0b\n\x03tag\x18\x01 \x01(\x0c"c\n HMAC_Personalized_Signature_Data\x12\r\n\x05epoch\x18\x01 \x01(\x0c\x12\x0f\n\x07counter\x18\x02 \x01(\r\x12\x12\n\nexpires_at\x18\x03 \x01(\x07\x12\x0b\n\x03tag\x18\x04 \x01(\x0c"\x84\x03\n\rSignatureData\x120\n\x0fsigner_identity\x18\x01 \x01(\x0b2\x17.Signatures.KeyIdentity\x12T\n\x19AES_GCM_Personalized_data\x18\x05 \x01(\x0b2/.Signatures.AES_GCM_Personalized_Signature_DataH\x00\x12;\n\x10session_info_tag\x18\x06 \x01(\x0b2\x1f.Signatures.HMAC_Signature_DataH\x00\x12N\n\x16HMAC_Personalized_data\x18\x08 \x01(\x0b2,.Signatures.HMAC_Personalized_Signature_DataH\x00\x12L\n\x15AES_GCM_Response_data\x18\t \x01(\x0b2+.Signatures.AES_GCM_Response_Signature_DataH\x00B\n\n\x08sig_typeJ\x04\x08\x07\x10\x08"F\n\x15GetSessionInfoRequest\x12-\n\x0ckey_identity\x18\x01 \x01(\x0b2\x17.Signatures.KeyIdentity"\x95\x01\n\x0bSessionInfo\x12\x0f\n\x07counter\x18\x01 \x01(\r\x12\x11\n\tpublicKey\x18\x02 \x01(\x0c\x12\r\n\x05epoch\x18\x03 \x01(\x0c\x12\x12\n\nclock_time\x18\x04 \x01(\x07\x12/\n\x06status\x18\x05 \x01(\x0e2\x1f.Signatures.Session_Info_Status\x12\x0e\n\x06handle\x18\x06 \x01(\r*\xcf\x01\n\x03Tag\x12\x16\n\x12TAG_SIGNATURE_TYPE\x10\x00\x12\x0e\n\nTAG_DOMAIN\x10\x01\x12\x17\n\x13TAG_PERSONALIZATION\x10\x02\x12\r\n\tTAG_EPOCH\x10\x03\x12\x12\n\x0eTAG_EXPIRES_AT\x10\x04\x12\x0f\n\x0bTAG_COUNTER\x10\x05\x12\x11\n\rTAG_CHALLENGE\x10\x06\x12\r\n\tTAG_FLAGS\x10\x07\x12\x14\n\x10TAG_REQUEST_HASH\x10\x08\x12\r\n\tTAG_FAULT\x10\t\x12\x0c\n\x07TAG_END\x10\xff\x01*\xbe\x01\n\rSignatureType\x12\x1a\n\x16SIGNATURE_TYPE_AES_GCM\x10\x00\x12\'\n#SIGNATURE_TYPE_AES_GCM_PERSONALIZED\x10\x05\x12\x17\n\x13SIGNATURE_TYPE_HMAC\x10\x06\x12$\n SIGNATURE_TYPE_HMAC_PERSONALIZED\x10\x08\x12#\n\x1fSIGNATURE_TYPE_AES_GCM_RESPONSE\x10\t"\x04\x08\x07\x10\x07*_\n\x13Session_Info_Status\x12\x1a\n\x16SESSION_INFO_STATUS_OK\x10\x00\x12,\n(SESSION_INFO_STATUS_KEY_NOT_ON_WHITELIST\x10\x01Bi\n\x1ecom.tesla.generated.signaturesZGgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/signaturesb\x06proto3')
|
10
10
|
_globals = globals()
|
@@ -1,7 +1,8 @@
|
|
1
1
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
2
2
|
from google.protobuf import descriptor as _descriptor
|
3
3
|
from google.protobuf import message as _message
|
4
|
-
from
|
4
|
+
from collections.abc import Mapping as _Mapping
|
5
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
5
6
|
DESCRIPTOR: _descriptor.FileDescriptor
|
6
7
|
|
7
8
|
class Tag(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'universal_message.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
from . import signatures_pb2 as signatures__pb2
|
10
10
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17universal_message.proto\x12\x10UniversalMessage\x1a\x10signatures.proto"g\n\x0bDestination\x12*\n\x06domain\x18\x01 \x01(\x0e2\x18.UniversalMessage.DomainH\x00\x12\x19\n\x0frouting_address\x18\x02 \x01(\x0cH\x00B\x11\n\x0fsub_destination"\x8e\x01\n\rMessageStatus\x12=\n\x10operation_status\x18\x01 \x01(\x0e2#.UniversalMessage.OperationStatus_E\x12>\n\x14signed_message_fault\x18\x02 \x01(\x0e2 .UniversalMessage.MessageFault_E";\n\x12SessionInfoRequest\x12\x12\n\npublic_key\x18\x01 \x01(\x0c\x12\x11\n\tchallenge\x18\x02 \x01(\x0c"\xd6\x03\n\x0fRoutableMessage\x125\n\x0eto_destination\x18\x06 \x01(\x0b2\x1d.UniversalMessage.Destination\x127\n\x10from_destination\x18\x07 \x01(\x0b2\x1d.UniversalMessage.Destination\x12#\n\x19protobuf_message_as_bytes\x18\n \x01(\x0cH\x00\x12D\n\x14session_info_request\x18\x0e \x01(\x0b2$.UniversalMessage.SessionInfoRequestH\x00\x12\x16\n\x0csession_info\x18\x0f \x01(\x0cH\x00\x123\n\x0esignature_data\x18\r \x01(\x0b2\x19.Signatures.SignatureDataH\x01\x12<\n\x13signedMessageStatus\x18\x0c \x01(\x0b2\x1f.UniversalMessage.MessageStatus\x12\x14\n\x0crequest_uuid\x182 \x01(\x0c\x12\x0c\n\x04uuid\x183 \x01(\x0c\x12\r\n\x05flags\x184 \x01(\rB\t\n\x07payloadB\r\n\x0bsub_sigDataJ\x04\x08\x01\x10\x06J\x04\x08\x10\x10)J\x04\x08\x0b\x10\x0c*T\n\x06Domain\x12\x14\n\x10DOMAIN_BROADCAST\x10\x00\x12\x1b\n\x17DOMAIN_VEHICLE_SECURITY\x10\x02\x12\x17\n\x13DOMAIN_INFOTAINMENT\x10\x03*`\n\x11OperationStatus_E\x12\x16\n\x12OPERATIONSTATUS_OK\x10\x00\x12\x18\n\x14OPERATIONSTATUS_WAIT\x10\x01\x12\x19\n\x15OPERATIONSTATUS_ERROR\x10\x02*\xe4\t\n\x0eMessageFault_E\x12\x1b\n\x17MESSAGEFAULT_ERROR_NONE\x10\x00\x12\x1b\n\x17MESSAGEFAULT_ERROR_BUSY\x10\x01\x12\x1e\n\x1aMESSAGEFAULT_ERROR_TIMEOUT\x10\x02\x12%\n!MESSAGEFAULT_ERROR_UNKNOWN_KEY_ID\x10\x03\x12#\n\x1fMESSAGEFAULT_ERROR_INACTIVE_KEY\x10\x04\x12(\n$MESSAGEFAULT_ERROR_INVALID_SIGNATURE\x10\x05\x12/\n+MESSAGEFAULT_ERROR_INVALID_TOKEN_OR_COUNTER\x10\x06\x12.\n*MESSAGEFAULT_ERROR_INSUFFICIENT_PRIVILEGES\x10\x07\x12&\n"MESSAGEFAULT_ERROR_INVALID_DOMAINS\x10\x08\x12&\n"MESSAGEFAULT_ERROR_INVALID_COMMAND\x10\t\x12\x1f\n\x1bMESSAGEFAULT_ERROR_DECODING\x10\n\x12\x1f\n\x1bMESSAGEFAULT_ERROR_INTERNAL\x10\x0b\x12,\n(MESSAGEFAULT_ERROR_WRONG_PERSONALIZATION\x10\x0c\x12$\n MESSAGEFAULT_ERROR_BAD_PARAMETER\x10\r\x12\'\n#MESSAGEFAULT_ERROR_KEYCHAIN_IS_FULL\x10\x0e\x12&\n"MESSAGEFAULT_ERROR_INCORRECT_EPOCH\x10\x0f\x12*\n&MESSAGEFAULT_ERROR_IV_INCORRECT_LENGTH\x10\x10\x12#\n\x1fMESSAGEFAULT_ERROR_TIME_EXPIRED\x10\x11\x124\n0MESSAGEFAULT_ERROR_NOT_PROVISIONED_WITH_IDENTITY\x10\x12\x12.\n*MESSAGEFAULT_ERROR_COULD_NOT_HASH_METADATA\x10\x13\x12,\n(MESSAGEFAULT_ERROR_TIME_TO_LIVE_TOO_LONG\x10\x14\x12-\n)MESSAGEFAULT_ERROR_REMOTE_ACCESS_DISABLED\x10\x15\x125\n1MESSAGEFAULT_ERROR_REMOTE_SERVICE_ACCESS_DISABLED\x10\x16\x12;\n7MESSAGEFAULT_ERROR_COMMAND_REQUIRES_ACCOUNT_CREDENTIALS\x10\x17\x12+\n\'MESSAGEFAULT_ERROR_REQUEST_MTU_EXCEEDED\x10\x18\x12,\n(MESSAGEFAULT_ERROR_RESPONSE_MTU_EXCEEDED\x10\x19\x12\'\n#MESSAGEFAULT_ERROR_REPEATED_COUNTER\x10\x1a\x12)\n%MESSAGEFAULT_ERROR_INVALID_KEY_HANDLE\x10\x1b\x123\n/MESSAGEFAULT_ERROR_REQUIRES_RESPONSE_ENCRYPTION\x10\x1c*9\n\x05Flags\x12\x15\n\x11FLAG_USER_COMMAND\x10\x00\x12\x19\n\x15FLAG_ENCRYPT_RESPONSE\x10\x01Bu\n$com.tesla.generated.universalmessageZMgithub.com/teslamotors/vehicle-command/pkg/protocol/protobuf/universalmessageb\x06proto3')
|
@@ -2,7 +2,8 @@ import signatures_pb2 as _signatures_pb2
|
|
2
2
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
3
3
|
from google.protobuf import descriptor as _descriptor
|
4
4
|
from google.protobuf import message as _message
|
5
|
-
from
|
5
|
+
from collections.abc import Mapping as _Mapping
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
6
7
|
DESCRIPTOR: _descriptor.FileDescriptor
|
7
8
|
|
8
9
|
class Domain(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'vcsec.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
from . import errors_pb2 as errors__pb2
|
10
10
|
from . import keys_pb2 as keys__pb2
|
@@ -4,7 +4,8 @@ from google.protobuf.internal import containers as _containers
|
|
4
4
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
5
5
|
from google.protobuf import descriptor as _descriptor
|
6
6
|
from google.protobuf import message as _message
|
7
|
-
from
|
7
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
8
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
8
9
|
DESCRIPTOR: _descriptor.FileDescriptor
|
9
10
|
|
10
11
|
class SignatureType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -4,7 +4,7 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
4
4
|
from google.protobuf import runtime_version as _runtime_version
|
5
5
|
from google.protobuf import symbol_database as _symbol_database
|
6
6
|
from google.protobuf.internal import builder as _builder
|
7
|
-
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC,
|
7
|
+
_runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 6, 31, 1, '', 'vehicle.proto')
|
8
8
|
_sym_db = _symbol_database.Default()
|
9
9
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
10
10
|
from . import vcsec_pb2 as vcsec__pb2
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import datetime
|
1
2
|
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
2
3
|
import vcsec_pb2 as _vcsec_pb2
|
3
4
|
import common_pb2 as _common_pb2
|
@@ -6,7 +7,8 @@ from google.protobuf.internal import containers as _containers
|
|
6
7
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
7
8
|
from google.protobuf import descriptor as _descriptor
|
8
9
|
from google.protobuf import message as _message
|
9
|
-
from
|
10
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
11
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
10
12
|
DESCRIPTOR: _descriptor.FileDescriptor
|
11
13
|
|
12
14
|
class MediaSourceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
@@ -223,7 +225,7 @@ class ClosuresState(_message.Message):
|
|
223
225
|
tonneau_in_motion: bool
|
224
226
|
timestamp: _timestamp_pb2.Timestamp
|
225
227
|
|
226
|
-
def __init__(self, door_open_driver_front: bool=..., door_open_driver_rear: bool=..., door_open_passenger_front: bool=..., door_open_passenger_rear: bool=..., door_open_trunk_front: bool=..., door_open_trunk_rear: bool=..., window_open_driver_front: bool=..., window_open_passenger_front: bool=..., window_open_driver_rear: bool=..., window_open_passenger_rear: bool=..., sun_roof_state: _Optional[_Union[ClosuresState.SunRoofState, _Mapping]]=..., sun_roof_percent_open: _Optional[int]=..., locked: bool=..., is_user_present: bool=..., center_display_state: _Optional[_Union[ClosuresState.DisplayState, _Mapping]]=..., remote_start: bool=..., valet_mode: bool=..., valet_pin_needed: bool=..., sentry_mode_state: _Optional[_Union[ClosuresState.SentryModeState, _Mapping]]=..., sentry_mode_available: bool=..., speed_limit_mode: _Optional[_Union[SpeedLimitMode, _Mapping]]=..., tonneau_state: _Optional[_Union[_vcsec_pb2.ClosureState_E, str]]=..., tonneau_percent_open: _Optional[int]=..., tonneau_in_motion: bool=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
228
|
+
def __init__(self, door_open_driver_front: bool=..., door_open_driver_rear: bool=..., door_open_passenger_front: bool=..., door_open_passenger_rear: bool=..., door_open_trunk_front: bool=..., door_open_trunk_rear: bool=..., window_open_driver_front: bool=..., window_open_passenger_front: bool=..., window_open_driver_rear: bool=..., window_open_passenger_rear: bool=..., sun_roof_state: _Optional[_Union[ClosuresState.SunRoofState, _Mapping]]=..., sun_roof_percent_open: _Optional[int]=..., locked: bool=..., is_user_present: bool=..., center_display_state: _Optional[_Union[ClosuresState.DisplayState, _Mapping]]=..., remote_start: bool=..., valet_mode: bool=..., valet_pin_needed: bool=..., sentry_mode_state: _Optional[_Union[ClosuresState.SentryModeState, _Mapping]]=..., sentry_mode_available: bool=..., speed_limit_mode: _Optional[_Union[SpeedLimitMode, _Mapping]]=..., tonneau_state: _Optional[_Union[_vcsec_pb2.ClosureState_E, str]]=..., tonneau_percent_open: _Optional[int]=..., tonneau_in_motion: bool=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
227
229
|
...
|
228
230
|
|
229
231
|
class ChargeScheduleState(_message.Message):
|
@@ -243,7 +245,7 @@ class ChargeScheduleState(_message.Message):
|
|
243
245
|
show_schedule_complete_state: bool
|
244
246
|
timestamp: _timestamp_pb2.Timestamp
|
245
247
|
|
246
|
-
def __init__(self, charge_schedules: _Optional[_Iterable[_Union[_common_pb2.ChargeSchedule, _Mapping]]]=..., charge_schedule_window: _Optional[_Union[_common_pb2.ChargeSchedule, _Mapping]]=..., charge_buffer: _Optional[int]=..., max_num_charge_schedules: _Optional[int]=..., next_schedule: bool=..., show_schedule_complete_state: bool=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
248
|
+
def __init__(self, charge_schedules: _Optional[_Iterable[_Union[_common_pb2.ChargeSchedule, _Mapping]]]=..., charge_schedule_window: _Optional[_Union[_common_pb2.ChargeSchedule, _Mapping]]=..., charge_buffer: _Optional[int]=..., max_num_charge_schedules: _Optional[int]=..., next_schedule: bool=..., show_schedule_complete_state: bool=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
247
249
|
...
|
248
250
|
|
249
251
|
class PreconditioningScheduleState(_message.Message):
|
@@ -259,7 +261,7 @@ class PreconditioningScheduleState(_message.Message):
|
|
259
261
|
next_schedule: bool
|
260
262
|
timestamp: _timestamp_pb2.Timestamp
|
261
263
|
|
262
|
-
def __init__(self, precondition_schedules: _Optional[_Iterable[_Union[_common_pb2.PreconditionSchedule, _Mapping]]]=..., preconditioning_schedule_window: _Optional[_Union[_common_pb2.PreconditionSchedule, _Mapping]]=..., max_num_precondition_schedules: _Optional[int]=..., next_schedule: bool=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
264
|
+
def __init__(self, precondition_schedules: _Optional[_Iterable[_Union[_common_pb2.PreconditionSchedule, _Mapping]]]=..., preconditioning_schedule_window: _Optional[_Union[_common_pb2.PreconditionSchedule, _Mapping]]=..., max_num_precondition_schedules: _Optional[int]=..., next_schedule: bool=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
263
265
|
...
|
264
266
|
|
265
267
|
class SpeedLimitMode(_message.Message):
|
@@ -313,7 +315,7 @@ class ParentalControlsState(_message.Message):
|
|
313
315
|
parental_controls_pin_set: bool
|
314
316
|
parental_controls_settings: ParentalControlsSettings
|
315
317
|
|
316
|
-
def __init__(self, timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., parental_controls_active: bool=..., parental_controls_pin_set: bool=..., parental_controls_settings: _Optional[_Union[ParentalControlsSettings, _Mapping]]=...) -> None:
|
318
|
+
def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., parental_controls_active: bool=..., parental_controls_pin_set: bool=..., parental_controls_settings: _Optional[_Union[ParentalControlsSettings, _Mapping]]=...) -> None:
|
317
319
|
...
|
318
320
|
|
319
321
|
class SoftwareUpdateState(_message.Message):
|
@@ -353,7 +355,7 @@ class SoftwareUpdateState(_message.Message):
|
|
353
355
|
version: str
|
354
356
|
timestamp: _timestamp_pb2.Timestamp
|
355
357
|
|
356
|
-
def __init__(self, status: _Optional[_Union[SoftwareUpdateState.SoftwareUpdateStatus, _Mapping]]=..., scheduled_time_ms: _Optional[int]=..., warning_time_remaining_ms: _Optional[int]=..., expected_duration_sec: _Optional[int]=..., download_perc: _Optional[int]=..., install_perc: _Optional[int]=..., version: _Optional[str]=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
358
|
+
def __init__(self, status: _Optional[_Union[SoftwareUpdateState.SoftwareUpdateStatus, _Mapping]]=..., scheduled_time_ms: _Optional[int]=..., warning_time_remaining_ms: _Optional[int]=..., expected_duration_sec: _Optional[int]=..., download_perc: _Optional[int]=..., install_perc: _Optional[int]=..., version: _Optional[str]=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=...) -> None:
|
357
359
|
...
|
358
360
|
|
359
361
|
class DriveState(_message.Message):
|
@@ -387,7 +389,7 @@ class DriveState(_message.Message):
|
|
387
389
|
last_traffic_update: _timestamp_pb2.Timestamp
|
388
390
|
active_route_coordinates: _common_pb2.LatLong
|
389
391
|
|
390
|
-
def __init__(self, shift_state: _Optional[_Union[ShiftState, _Mapping]]=..., speed: _Optional[int]=..., power: _Optional[int]=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., odometer_in_hundredths_of_a_mile: _Optional[int]=..., speed_float: _Optional[float]=..., active_route_destination: _Optional[str]=..., active_route_minutes_to_arrival: _Optional[float]=..., active_route_miles_to_arrival: _Optional[float]=..., active_route_traffic_minutes_delay: _Optional[float]=..., active_route_energy_at_arrival: _Optional[float]=..., last_route_update: _Optional[int]=..., last_traffic_update: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., active_route_coordinates: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=...) -> None:
|
392
|
+
def __init__(self, shift_state: _Optional[_Union[ShiftState, _Mapping]]=..., speed: _Optional[int]=..., power: _Optional[int]=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., odometer_in_hundredths_of_a_mile: _Optional[int]=..., speed_float: _Optional[float]=..., active_route_destination: _Optional[str]=..., active_route_minutes_to_arrival: _Optional[float]=..., active_route_miles_to_arrival: _Optional[float]=..., active_route_traffic_minutes_delay: _Optional[float]=..., active_route_energy_at_arrival: _Optional[float]=..., last_route_update: _Optional[int]=..., last_traffic_update: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., active_route_coordinates: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=...) -> None:
|
391
393
|
...
|
392
394
|
|
393
395
|
class ChargeState(_message.Message):
|
@@ -723,7 +725,7 @@ class ChargeState(_message.Message):
|
|
723
725
|
work_location: _common_pb2.LatLong
|
724
726
|
outlet_max_timer_minutes: int
|
725
727
|
|
726
|
-
def __init__(self, charging_state: _Optional[_Union[ChargeState.ChargingState, _Mapping]]=..., fast_charger_type: _Optional[_Union[ChargeState.ChargerType, _Mapping]]=..., fast_charger_brand: _Optional[_Union[ChargeState.ChargerBrand, _Mapping]]=..., charge_limit_soc: _Optional[int]=..., charge_limit_soc_std: _Optional[int]=..., charge_limit_soc_min: _Optional[int]=..., charge_limit_soc_max: _Optional[int]=..., max_range_charge_counter: _Optional[int]=..., fast_charger_present: bool=..., battery_range: _Optional[float]=..., est_battery_range: _Optional[float]=..., ideal_battery_range: _Optional[float]=..., battery_level: _Optional[int]=..., usable_battery_level: _Optional[int]=..., charge_energy_added: _Optional[float]=..., charge_miles_added_rated: _Optional[float]=..., charge_miles_added_ideal: _Optional[float]=..., charger_voltage: _Optional[int]=..., charger_pilot_current: _Optional[int]=..., charger_actual_current: _Optional[int]=..., charger_power: _Optional[int]=..., minutes_to_full_charge: _Optional[int]=..., minutes_to_charge_limit: _Optional[int]=..., trip_charging: bool=..., charge_rate_mph: _Optional[int]=..., charge_port_door_open: bool=..., conn_charge_cable: _Optional[_Union[ChargeState.CableType, _Mapping]]=..., scheduled_charging_start_time: _Optional[int]=..., scheduled_charging_pending: bool=..., scheduled_departure_time: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., user_charge_enable_request: bool=..., charge_enable_request: bool=..., charger_phases: _Optional[int]=..., charge_port_latch: _Optional[_Union[_common_pb2.ChargePortLatchState, _Mapping]]=..., charge_port_cold_weather_mode: bool=..., charge_current_request: _Optional[int]=..., charge_current_request_max: _Optional[int]=..., managed_charging_active: bool=..., managed_charging_user_canceled: bool=..., managed_charging_start_time: _Optional[int]=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., preconditioning_times: _Optional[_Union[_common_pb2.PreconditioningTimes, _Mapping]]=..., off_peak_charging_times: _Optional[_Union[_common_pb2.OffPeakChargingTimes, _Mapping]]=..., off_peak_hours_end_time: _Optional[int]=..., scheduled_charging_mode: _Optional[_Union[ChargeState.ScheduledChargingMode, str]]=..., charging_amps: _Optional[int]=..., scheduled_charging_start_time_minutes: _Optional[int]=..., scheduled_departure_time_minutes: _Optional[int]=..., preconditioning_enabled: bool=..., scheduled_charging_start_time_app: _Optional[int]=..., supercharger_session_trip_planner: bool=..., charge_port_color: _Optional[_Union[ChargeState.ChargePortColor_E, str]]=..., charge_rate_mph_float: _Optional[float]=..., charge_limit_reason: _Optional[_Union[ChargeState.ChargeLimitReason, str]]=..., managed_charging_state: _Optional[_Union[ManagedChargingState, _Mapping]]=..., charge_cable_unlatched: bool=..., outlet_state: _Optional[_Union[ChargeState.OutletState, str]]=..., power_feed_state: _Optional[_Union[ChargeState.PowerFeedState, str]]=..., outlet_soc_limit: _Optional[int]=..., power_feed_soc_limit: _Optional[int]=..., outlet_time_remaining: _Optional[int]=..., power_feed_time_remaining: _Optional[int]=..., powershare_feature_allowed: bool=..., powershare_feature_enabled: bool=..., powershare_request: bool=..., powershare_type: _Optional[_Union[ChargeState.PowershareType, str]]=..., powershare_status: _Optional[_Union[ChargeState.PowershareStatus, str]]=..., powershare_stop_reason: _Optional[_Union[ChargeState.PowershareStopReason, str]]=..., powershare_instantaneous_load_kw: _Optional[float]=..., powershare_vehicle_energy_left_hr: _Optional[int]=..., powershare_soc_limit: _Optional[int]=..., one_time_soc_limit: _Optional[int]=..., home_location: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=..., work_location: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=..., outlet_max_timer_minutes: _Optional[int]=...) -> None:
|
728
|
+
def __init__(self, charging_state: _Optional[_Union[ChargeState.ChargingState, _Mapping]]=..., fast_charger_type: _Optional[_Union[ChargeState.ChargerType, _Mapping]]=..., fast_charger_brand: _Optional[_Union[ChargeState.ChargerBrand, _Mapping]]=..., charge_limit_soc: _Optional[int]=..., charge_limit_soc_std: _Optional[int]=..., charge_limit_soc_min: _Optional[int]=..., charge_limit_soc_max: _Optional[int]=..., max_range_charge_counter: _Optional[int]=..., fast_charger_present: bool=..., battery_range: _Optional[float]=..., est_battery_range: _Optional[float]=..., ideal_battery_range: _Optional[float]=..., battery_level: _Optional[int]=..., usable_battery_level: _Optional[int]=..., charge_energy_added: _Optional[float]=..., charge_miles_added_rated: _Optional[float]=..., charge_miles_added_ideal: _Optional[float]=..., charger_voltage: _Optional[int]=..., charger_pilot_current: _Optional[int]=..., charger_actual_current: _Optional[int]=..., charger_power: _Optional[int]=..., minutes_to_full_charge: _Optional[int]=..., minutes_to_charge_limit: _Optional[int]=..., trip_charging: bool=..., charge_rate_mph: _Optional[int]=..., charge_port_door_open: bool=..., conn_charge_cable: _Optional[_Union[ChargeState.CableType, _Mapping]]=..., scheduled_charging_start_time: _Optional[int]=..., scheduled_charging_pending: bool=..., scheduled_departure_time: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., user_charge_enable_request: bool=..., charge_enable_request: bool=..., charger_phases: _Optional[int]=..., charge_port_latch: _Optional[_Union[_common_pb2.ChargePortLatchState, _Mapping]]=..., charge_port_cold_weather_mode: bool=..., charge_current_request: _Optional[int]=..., charge_current_request_max: _Optional[int]=..., managed_charging_active: bool=..., managed_charging_user_canceled: bool=..., managed_charging_start_time: _Optional[int]=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., preconditioning_times: _Optional[_Union[_common_pb2.PreconditioningTimes, _Mapping]]=..., off_peak_charging_times: _Optional[_Union[_common_pb2.OffPeakChargingTimes, _Mapping]]=..., off_peak_hours_end_time: _Optional[int]=..., scheduled_charging_mode: _Optional[_Union[ChargeState.ScheduledChargingMode, str]]=..., charging_amps: _Optional[int]=..., scheduled_charging_start_time_minutes: _Optional[int]=..., scheduled_departure_time_minutes: _Optional[int]=..., preconditioning_enabled: bool=..., scheduled_charging_start_time_app: _Optional[int]=..., supercharger_session_trip_planner: bool=..., charge_port_color: _Optional[_Union[ChargeState.ChargePortColor_E, str]]=..., charge_rate_mph_float: _Optional[float]=..., charge_limit_reason: _Optional[_Union[ChargeState.ChargeLimitReason, str]]=..., managed_charging_state: _Optional[_Union[ManagedChargingState, _Mapping]]=..., charge_cable_unlatched: bool=..., outlet_state: _Optional[_Union[ChargeState.OutletState, str]]=..., power_feed_state: _Optional[_Union[ChargeState.PowerFeedState, str]]=..., outlet_soc_limit: _Optional[int]=..., power_feed_soc_limit: _Optional[int]=..., outlet_time_remaining: _Optional[int]=..., power_feed_time_remaining: _Optional[int]=..., powershare_feature_allowed: bool=..., powershare_feature_enabled: bool=..., powershare_request: bool=..., powershare_type: _Optional[_Union[ChargeState.PowershareType, str]]=..., powershare_status: _Optional[_Union[ChargeState.PowershareStatus, str]]=..., powershare_stop_reason: _Optional[_Union[ChargeState.PowershareStopReason, str]]=..., powershare_instantaneous_load_kw: _Optional[float]=..., powershare_vehicle_energy_left_hr: _Optional[int]=..., powershare_soc_limit: _Optional[int]=..., one_time_soc_limit: _Optional[int]=..., home_location: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=..., work_location: _Optional[_Union[_common_pb2.LatLong, _Mapping]]=..., outlet_max_timer_minutes: _Optional[int]=...) -> None:
|
727
729
|
...
|
728
730
|
|
729
731
|
class ManagedChargingState(_message.Message):
|
@@ -865,7 +867,7 @@ class LocationState(_message.Message):
|
|
865
867
|
estimated_gps_valid: bool
|
866
868
|
estimated_to_raw_distance: float
|
867
869
|
|
868
|
-
def __init__(self, latitude: _Optional[float]=..., longitude: _Optional[float]=..., heading: _Optional[int]=..., gps_as_of: _Optional[int]=..., native_location_supported: bool=..., native_latitude: _Optional[float]=..., native_longitude: _Optional[float]=..., native_type: _Optional[_Union[LocationState.GPSCoordinateType, _Mapping]]=..., corrected_latitude: _Optional[float]=..., corrected_longitude: _Optional[float]=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., homelink_nearby: bool=..., location_name: _Optional[str]=..., geo_latitude: _Optional[float]=..., geo_longitude: _Optional[float]=..., geo_heading: _Optional[float]=..., geo_elevation: _Optional[float]=..., geo_accuracy: _Optional[float]=..., estimated_gps_valid: bool=..., estimated_to_raw_distance: _Optional[float]=...) -> None:
|
870
|
+
def __init__(self, latitude: _Optional[float]=..., longitude: _Optional[float]=..., heading: _Optional[int]=..., gps_as_of: _Optional[int]=..., native_location_supported: bool=..., native_latitude: _Optional[float]=..., native_longitude: _Optional[float]=..., native_type: _Optional[_Union[LocationState.GPSCoordinateType, _Mapping]]=..., corrected_latitude: _Optional[float]=..., corrected_longitude: _Optional[float]=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., homelink_nearby: bool=..., location_name: _Optional[str]=..., geo_latitude: _Optional[float]=..., geo_longitude: _Optional[float]=..., geo_heading: _Optional[float]=..., geo_elevation: _Optional[float]=..., geo_accuracy: _Optional[float]=..., estimated_gps_valid: bool=..., estimated_to_raw_distance: _Optional[float]=...) -> None:
|
869
871
|
...
|
870
872
|
|
871
873
|
class VehicleState(_message.Message):
|
@@ -1073,7 +1075,7 @@ class ClimateState(_message.Message):
|
|
1073
1075
|
hvac_auto_request: ClimateState.HvacAutoRequest
|
1074
1076
|
cop_not_running_reason: ClimateState.COPNotRunningReason
|
1075
1077
|
|
1076
|
-
def __init__(self, inside_temp_celsius: _Optional[float]=..., outside_temp_celsius: _Optional[float]=..., driver_temp_setting: _Optional[float]=..., passenger_temp_setting: _Optional[float]=..., left_temp_direction: _Optional[int]=..., right_temp_direction: _Optional[int]=..., is_front_defroster_on: bool=..., is_rear_defroster_on: bool=..., fan_status: _Optional[int]=..., is_climate_on: bool=..., min_avail_temp_celsius: _Optional[float]=..., max_avail_temp_celsius: _Optional[float]=..., seat_heater_left: _Optional[int]=..., seat_heater_right: _Optional[int]=..., seat_heater_rear_left: _Optional[int]=..., seat_heater_rear_right: _Optional[int]=..., seat_heater_rear_center: _Optional[int]=..., seat_heater_rear_right_back: _Optional[int]=..., seat_heater_rear_left_back: _Optional[int]=..., seat_heater_third_row_right: _Optional[int]=..., seat_heater_third_row_left: _Optional[int]=..., battery_heater: bool=..., battery_heater_no_power: bool=..., steering_wheel_heater: bool=..., wiper_blade_heater: bool=..., side_mirror_heaters: bool=..., is_preconditioning: bool=..., remote_heater_control_enabled: bool=..., climate_keeper_mode: _Optional[_Union[ClimateState.ClimateKeeperMode, _Mapping]]=..., timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., bioweapon_mode_on: bool=..., defrost_mode: _Optional[_Union[ClimateState.DefrostMode, _Mapping]]=..., is_auto_conditioning_on: bool=..., auto_seat_climate_left: bool=..., auto_seat_climate_right: bool=..., seat_fan_front_left: _Optional[int]=..., seat_fan_front_right: _Optional[int]=..., allow_cabin_overheat_protection: bool=..., supports_fan_only_cabin_overheat_protection: bool=..., cabin_overheat_protection: _Optional[_Union[ClimateState.CabinOverheatProtection_E, str]]=..., cabin_overheat_protection_actively_cooling: bool=..., cop_activation_temperature: _Optional[_Union[ClimateState.CopActivationTemp, str]]=..., auto_steering_wheel_heat: bool=..., steering_wheel_heat_level: _Optional[_Union[_common_pb2.StwHeatLevel, str]]=..., hvac_auto_request: _Optional[_Union[ClimateState.HvacAutoRequest, str]]=..., cop_not_running_reason: _Optional[_Union[ClimateState.COPNotRunningReason, str]]=...) -> None:
|
1078
|
+
def __init__(self, inside_temp_celsius: _Optional[float]=..., outside_temp_celsius: _Optional[float]=..., driver_temp_setting: _Optional[float]=..., passenger_temp_setting: _Optional[float]=..., left_temp_direction: _Optional[int]=..., right_temp_direction: _Optional[int]=..., is_front_defroster_on: bool=..., is_rear_defroster_on: bool=..., fan_status: _Optional[int]=..., is_climate_on: bool=..., min_avail_temp_celsius: _Optional[float]=..., max_avail_temp_celsius: _Optional[float]=..., seat_heater_left: _Optional[int]=..., seat_heater_right: _Optional[int]=..., seat_heater_rear_left: _Optional[int]=..., seat_heater_rear_right: _Optional[int]=..., seat_heater_rear_center: _Optional[int]=..., seat_heater_rear_right_back: _Optional[int]=..., seat_heater_rear_left_back: _Optional[int]=..., seat_heater_third_row_right: _Optional[int]=..., seat_heater_third_row_left: _Optional[int]=..., battery_heater: bool=..., battery_heater_no_power: bool=..., steering_wheel_heater: bool=..., wiper_blade_heater: bool=..., side_mirror_heaters: bool=..., is_preconditioning: bool=..., remote_heater_control_enabled: bool=..., climate_keeper_mode: _Optional[_Union[ClimateState.ClimateKeeperMode, _Mapping]]=..., timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., bioweapon_mode_on: bool=..., defrost_mode: _Optional[_Union[ClimateState.DefrostMode, _Mapping]]=..., is_auto_conditioning_on: bool=..., auto_seat_climate_left: bool=..., auto_seat_climate_right: bool=..., seat_fan_front_left: _Optional[int]=..., seat_fan_front_right: _Optional[int]=..., allow_cabin_overheat_protection: bool=..., supports_fan_only_cabin_overheat_protection: bool=..., cabin_overheat_protection: _Optional[_Union[ClimateState.CabinOverheatProtection_E, str]]=..., cabin_overheat_protection_actively_cooling: bool=..., cop_activation_temperature: _Optional[_Union[ClimateState.CopActivationTemp, str]]=..., auto_steering_wheel_heat: bool=..., steering_wheel_heat_level: _Optional[_Union[_common_pb2.StwHeatLevel, str]]=..., hvac_auto_request: _Optional[_Union[ClimateState.HvacAutoRequest, str]]=..., cop_not_running_reason: _Optional[_Union[ClimateState.COPNotRunningReason, str]]=...) -> None:
|
1077
1079
|
...
|
1078
1080
|
|
1079
1081
|
class TirePressureState(_message.Message):
|
@@ -1117,7 +1119,7 @@ class TirePressureState(_message.Message):
|
|
1117
1119
|
tpms_rcp_front_value: float
|
1118
1120
|
tpms_rcp_rear_value: float
|
1119
1121
|
|
1120
|
-
def __init__(self, timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., tpms_pressure_fl: _Optional[float]=..., tpms_pressure_fr: _Optional[float]=..., tpms_pressure_rl: _Optional[float]=..., tpms_pressure_rr: _Optional[float]=..., tpms_last_seen_pressure_time_fl: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_fr: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_rl: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_rr: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., tpms_hard_warning_fl: bool=..., tpms_hard_warning_fr: bool=..., tpms_hard_warning_rl: bool=..., tpms_hard_warning_rr: bool=..., tpms_soft_warning_fl: bool=..., tpms_soft_warning_fr: bool=..., tpms_soft_warning_rl: bool=..., tpms_soft_warning_rr: bool=..., tpms_rcp_front_value: _Optional[float]=..., tpms_rcp_rear_value: _Optional[float]=...) -> None:
|
1122
|
+
def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., tpms_pressure_fl: _Optional[float]=..., tpms_pressure_fr: _Optional[float]=..., tpms_pressure_rl: _Optional[float]=..., tpms_pressure_rr: _Optional[float]=..., tpms_last_seen_pressure_time_fl: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_fr: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_rl: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., tpms_last_seen_pressure_time_rr: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., tpms_hard_warning_fl: bool=..., tpms_hard_warning_fr: bool=..., tpms_hard_warning_rl: bool=..., tpms_hard_warning_rr: bool=..., tpms_soft_warning_fl: bool=..., tpms_soft_warning_fr: bool=..., tpms_soft_warning_rl: bool=..., tpms_soft_warning_rr: bool=..., tpms_rcp_front_value: _Optional[float]=..., tpms_rcp_rear_value: _Optional[float]=...) -> None:
|
1121
1123
|
...
|
1122
1124
|
|
1123
1125
|
class MediaState(_message.Message):
|
@@ -1141,7 +1143,7 @@ class MediaState(_message.Message):
|
|
1141
1143
|
now_playing_source: MediaSourceType
|
1142
1144
|
media_playback_status: _common_pb2.MediaPlaybackStatus
|
1143
1145
|
|
1144
|
-
def __init__(self, timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., remote_control_enabled: bool=..., now_playing_artist: _Optional[str]=..., now_playing_title: _Optional[str]=..., audio_volume: _Optional[float]=..., audio_volume_increment: _Optional[float]=..., audio_volume_max: _Optional[float]=..., now_playing_source: _Optional[_Union[MediaSourceType, str]]=..., media_playback_status: _Optional[_Union[_common_pb2.MediaPlaybackStatus, str]]=...) -> None:
|
1146
|
+
def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., remote_control_enabled: bool=..., now_playing_artist: _Optional[str]=..., now_playing_title: _Optional[str]=..., audio_volume: _Optional[float]=..., audio_volume_increment: _Optional[float]=..., audio_volume_max: _Optional[float]=..., now_playing_source: _Optional[_Union[MediaSourceType, str]]=..., media_playback_status: _Optional[_Union[_common_pb2.MediaPlaybackStatus, str]]=...) -> None:
|
1145
1147
|
...
|
1146
1148
|
|
1147
1149
|
class MediaDetailState(_message.Message):
|
@@ -1161,7 +1163,7 @@ class MediaDetailState(_message.Message):
|
|
1161
1163
|
now_playing_station: str
|
1162
1164
|
a2dp_source_name: str
|
1163
1165
|
|
1164
|
-
def __init__(self, timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]]=..., now_playing_duration: _Optional[int]=..., now_playing_elapsed: _Optional[int]=..., now_playing_source_string: _Optional[str]=..., now_playing_album: _Optional[str]=..., now_playing_station: _Optional[str]=..., a2dp_source_name: _Optional[str]=...) -> None:
|
1166
|
+
def __init__(self, timestamp: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]]=..., now_playing_duration: _Optional[int]=..., now_playing_elapsed: _Optional[int]=..., now_playing_source_string: _Optional[str]=..., now_playing_album: _Optional[str]=..., now_playing_station: _Optional[str]=..., a2dp_source_name: _Optional[str]=...) -> None:
|
1165
1167
|
...
|
1166
1168
|
|
1167
1169
|
class ShiftState(_message.Message):
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tesla_fleet_api/__init__.py,sha256=
|
1
|
+
tesla_fleet_api/__init__.py,sha256=w5SY0c-XBicMbZ0mA7wzhaGTpi6n3tPwyVLOvEKWs6E,474
|
2
2
|
tesla_fleet_api/const.py,sha256=cu9jvvFTLOw56bL78lIPWJKlb35T9CYACI5pBT6DBQI,3881
|
3
3
|
tesla_fleet_api/exceptions.py,sha256=39O76jiybiAQSjfVnp4KMJz7z9TP1WYBZ1zovN_Aock,36435
|
4
4
|
tesla_fleet_api/tesla/__init__.py,sha256=ahqqQigZbXfysOpo28qUudUfWrQfKRpD_1az368Sjr0,823
|
@@ -8,7 +8,7 @@ tesla_fleet_api/tesla/energysite.py,sha256=vStffklBQfQNAO_1wrHLFu7BlBCTVVbLh7_Ir
|
|
8
8
|
tesla_fleet_api/tesla/fleet.py,sha256=nFTatXH-X3ikRQDh0BKjPST3Wb6qEDC_dGBz_WZ8wm8,7022
|
9
9
|
tesla_fleet_api/tesla/oauth.py,sha256=aWBsWmnM-QxzaU8W9TXVNxGsYn_LraXnpexwdE8wOqo,4104
|
10
10
|
tesla_fleet_api/tesla/partner.py,sha256=e-l6sEP6-IupjFEQieSUjhhvRXF3aL4ebPNahcGFRCE,1238
|
11
|
-
tesla_fleet_api/tesla/tesla.py,sha256=
|
11
|
+
tesla_fleet_api/tesla/tesla.py,sha256=JVDHDh-D_8JAp74ji2p2d1EfrWEO9hCo6kjjh6qa2EY,3189
|
12
12
|
tesla_fleet_api/tesla/user.py,sha256=w8rwiAOIFjuDus8M0RpZ0wucJtw8kYFKtJfYVk7Ekr0,1194
|
13
13
|
tesla_fleet_api/tesla/vehicle/__init__.py,sha256=DKQA9lIAGcya5cHj4AsNc04pcQSVHn18htTrsvN_fRs,498
|
14
14
|
tesla_fleet_api/tesla/vehicle/bluetooth.py,sha256=CSUOx2rTYHM1iCShtZ3vu7kR-_m8E2dvNSLEksFqe6g,21034
|
@@ -19,32 +19,32 @@ tesla_fleet_api/tesla/vehicle/vehicle.py,sha256=IBvRO6qGkUf4bi-pFongA9fIe9iScvz_
|
|
19
19
|
tesla_fleet_api/tesla/vehicle/vehicles.py,sha256=c1KFTAYDvuTVNjM5O23KvT54UbNwo3ofFVpfkY-Mq5Y,2640
|
20
20
|
tesla_fleet_api/tesla/vehicle/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
21
|
tesla_fleet_api/tesla/vehicle/proto/__init__.pyi,sha256=qFXWNIgl71wB260u-XPzaAwWAHL6krw21q-aXnBtop0,252
|
22
|
-
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py,sha256=
|
23
|
-
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi,sha256=
|
24
|
-
tesla_fleet_api/tesla/vehicle/proto/common_pb2.py,sha256=
|
25
|
-
tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi,sha256=
|
26
|
-
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py,sha256=
|
22
|
+
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py,sha256=aOHoAxtmKzIjIvaFRE4fN6uvXhRIZagyccMzn2g9LBE,55607
|
23
|
+
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi,sha256=_Op0oJOHzRwUHYH5FN-EMi1rTcQ-WkPfj1BH73XCeDE,91355
|
24
|
+
tesla_fleet_api/tesla/vehicle/proto/common_pb2.py,sha256=TqFUs5_z_8MROnTStesbf8DgN6iGnd1llXEUeSCYdV8,4107
|
25
|
+
tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi,sha256=EM417mcDXWWMrsfLUt2ZIvsjq7HPiNU4HTEu2JKT-oE,5039
|
26
|
+
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py,sha256=aI_2LizNbPvxBtI_bYkPaOOSAHjbPVWbqUhF1zLkGb4,1807
|
27
27
|
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.pyi,sha256=CNsAR7Oe6wavnqjzhInEyAFxMio6TtXfaNT0DUztn6o,1478
|
28
|
-
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py,sha256=
|
28
|
+
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py,sha256=yVjIljg3wmdbA_2cFLmWGRCicHfg6dPk9MR2JSFlieU,1426
|
29
29
|
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.pyi,sha256=HH-TfhE5ihwmoPCGdiVnZ5B7KkaMJglEpusgLc1J02M,676
|
30
|
-
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py,sha256=
|
30
|
+
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py,sha256=FcYkjYwksrfYNUvKz2IS5M7ae9ZPuV9-uZWCx_I-4I0,1616
|
31
31
|
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.pyi,sha256=SqEmrfknTfzYTUYHtsoCpt1Fw2YpU3OyQllX247UfyQ,1227
|
32
|
-
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py,sha256=
|
33
|
-
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi,sha256
|
34
|
-
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py,sha256=
|
35
|
-
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi,sha256=
|
36
|
-
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py,sha256=
|
37
|
-
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi,sha256=
|
38
|
-
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py,sha256=
|
39
|
-
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi,sha256=
|
32
|
+
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py,sha256=F8tm2cON-w6vtIG4YZzmJEGLeqeDBG4XL8tJ_hejuRA,4914
|
33
|
+
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi,sha256=2od4WSv804hXPlZo_ncx2WmYp9QizyMQq60s7rLeBeM,6128
|
34
|
+
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py,sha256=XnoXNBBgqi7pvKxQ15U9VHo-plBRdZOL1dBYrA84VME,5280
|
35
|
+
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi,sha256=GbniOqyBaaOZF-fqButitZgCCy_6MsB_SNjN8PzzPaE,7674
|
36
|
+
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py,sha256=DR7D1Lpuh1u1qLoUCK9S-usex9pqfTNBTYiUQuUyqes,17597
|
37
|
+
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi,sha256=tXsoZtCtKjxu7WayydmFBipJymElWrfN2N-ekMfU0So,32042
|
38
|
+
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py,sha256=psmlpmURBaVO45hMbtmfVvIAhEdWEnrkVYk2H5kOZoI,44888
|
39
|
+
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi,sha256=HKiB-RdmRH80PGq8EII3KKPEknMhmKOF9xQqD5sf5aE,74636
|
40
40
|
tesla_fleet_api/teslemetry/__init__.py,sha256=BFi16_y-1wRF8XhtgHsYM22eT8T1hTAGJ10S3Q9rWHI,464
|
41
41
|
tesla_fleet_api/teslemetry/teslemetry.py,sha256=r26kS1JqYj2KzRQpK_Kn_v2xz42yho2eFs4FSGIo79Y,2980
|
42
42
|
tesla_fleet_api/teslemetry/vehicles.py,sha256=IJMRKb3jrW9ZSdJrCQ5wOYYZGVbFvSVza24Zpdh4d_0,2067
|
43
43
|
tesla_fleet_api/tessie/__init__.py,sha256=8HiaMLz1RueRoT5PSF1Y7iRr0-RV6ujgOH2RBSSUFk4,436
|
44
44
|
tesla_fleet_api/tessie/tessie.py,sha256=UByX0BmDcqLPiW8ofNuGmMcjXvaWRn3taC68Ji80Yf8,2666
|
45
45
|
tesla_fleet_api/tessie/vehicles.py,sha256=Cdp0pt2Z8bzK5T9wQ8_KubGSZ3Gevx1Q18kqJqEUxfs,1011
|
46
|
-
tesla_fleet_api-1.
|
47
|
-
tesla_fleet_api-1.
|
48
|
-
tesla_fleet_api-1.
|
49
|
-
tesla_fleet_api-1.
|
50
|
-
tesla_fleet_api-1.
|
46
|
+
tesla_fleet_api-1.2.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
47
|
+
tesla_fleet_api-1.2.0.dist-info/METADATA,sha256=VzhPyQbIwQ6k22bUhBqJH1eeo5OBVSfivI8zDlNkLbo,6720
|
48
|
+
tesla_fleet_api-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
49
|
+
tesla_fleet_api-1.2.0.dist-info/top_level.txt,sha256=jeNbog_1saXBFrGpom9WyPWmilxsyP3szL_G7JLWQfM,16
|
50
|
+
tesla_fleet_api-1.2.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|