@teslemetry/tesla-protocol 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/dist/charging/charging.cjs +550 -0
  2. package/dist/charging/charging.d.cts +75 -0
  3. package/dist/charging/charging.d.mts +75 -0
  4. package/dist/charging/charging.mjs +543 -0
  5. package/dist/command/car_server.cjs +65 -0
  6. package/dist/command/car_server.d.cts +13 -1
  7. package/dist/command/car_server.d.mts +13 -1
  8. package/dist/command/car_server.mjs +65 -1
  9. package/dist/command/universal_message.cjs +5 -0
  10. package/dist/command/universal_message.d.cts +2 -0
  11. package/dist/command/universal_message.d.mts +2 -0
  12. package/dist/command/universal_message.mjs +5 -0
  13. package/dist/command/vcsec.cjs +87 -2
  14. package/dist/command/vcsec.d.cts +11 -1
  15. package/dist/command/vcsec.d.mts +11 -1
  16. package/dist/command/vcsec.mjs +86 -3
  17. package/dist/command/vehicle.cjs +27 -0
  18. package/dist/command/vehicle.d.cts +4 -0
  19. package/dist/command/vehicle.d.mts +4 -0
  20. package/dist/command/vehicle.mjs +27 -0
  21. package/dist/dashcam/dashcam_sei.cjs +263 -0
  22. package/dist/dashcam/dashcam_sei.d.cts +60 -0
  23. package/dist/dashcam/dashcam_sei.d.mts +60 -0
  24. package/dist/dashcam/dashcam_sei.mjs +255 -0
  25. package/dist/energy_device/common_api.cjs +604 -11
  26. package/dist/energy_device/common_api.d.cts +60 -3
  27. package/dist/energy_device/common_api.d.mts +60 -3
  28. package/dist/energy_device/common_api.mjs +596 -12
  29. package/dist/energy_device/device.cjs +129 -0
  30. package/dist/energy_device/device.d.cts +13 -1
  31. package/dist/energy_device/device.d.mts +13 -1
  32. package/dist/energy_device/device.mjs +127 -1
  33. package/dist/energy_device/energy_site_net.cjs +747 -0
  34. package/dist/energy_device/energy_site_net.d.cts +84 -1
  35. package/dist/energy_device/energy_site_net.d.mts +84 -1
  36. package/dist/energy_device/energy_site_net.mjs +736 -1
  37. package/dist/energy_device/filestore_api.cjs +575 -0
  38. package/dist/energy_device/filestore_api.d.cts +81 -0
  39. package/dist/energy_device/filestore_api.d.mts +81 -0
  40. package/dist/energy_device/filestore_api.mjs +563 -0
  41. package/dist/energy_device/google/protobuf/duration.cjs +71 -0
  42. package/dist/energy_device/google/protobuf/duration.d.cts +95 -0
  43. package/dist/energy_device/google/protobuf/duration.d.mts +95 -0
  44. package/dist/energy_device/google/protobuf/duration.mjs +69 -0
  45. package/dist/energy_device/graphql_api.cjs +449 -0
  46. package/dist/energy_device/graphql_api.d.cts +78 -0
  47. package/dist/energy_device/graphql_api.d.mts +78 -0
  48. package/dist/energy_device/graphql_api.mjs +434 -0
  49. package/dist/energy_device/intra_site_api.cjs +1698 -0
  50. package/dist/energy_device/intra_site_api.d.cts +227 -0
  51. package/dist/energy_device/intra_site_api.d.mts +227 -0
  52. package/dist/energy_device/intra_site_api.mjs +1644 -0
  53. package/dist/energy_device/local_auth_api.cjs +505 -0
  54. package/dist/energy_device/local_auth_api.d.cts +73 -0
  55. package/dist/energy_device/local_auth_api.d.mts +73 -0
  56. package/dist/energy_device/local_auth_api.mjs +492 -0
  57. package/dist/energy_device/networking.cjs +20 -2
  58. package/dist/energy_device/networking.d.cts +2 -0
  59. package/dist/energy_device/networking.d.mts +2 -0
  60. package/dist/energy_device/networking.mjs +20 -2
  61. package/dist/energy_device/neurio_meter_api.cjs +1442 -0
  62. package/dist/energy_device/neurio_meter_api.d.cts +202 -0
  63. package/dist/energy_device/neurio_meter_api.d.mts +202 -0
  64. package/dist/energy_device/neurio_meter_api.mjs +1401 -0
  65. package/dist/energy_device/pvi_api.cjs +2954 -0
  66. package/dist/energy_device/pvi_api.d.cts +319 -0
  67. package/dist/energy_device/pvi_api.d.mts +319 -0
  68. package/dist/energy_device/pvi_api.mjs +2892 -0
  69. package/dist/energy_device/teg_api.cjs +5184 -147
  70. package/dist/energy_device/teg_api.d.cts +492 -77
  71. package/dist/energy_device/teg_api.d.mts +492 -77
  72. package/dist/energy_device/teg_api.mjs +5064 -148
  73. package/dist/energy_device/transport.cjs +82 -2
  74. package/dist/energy_device/transport.d.cts +16 -5
  75. package/dist/energy_device/transport.d.mts +16 -5
  76. package/dist/energy_device/transport.mjs +82 -2
  77. package/dist/energy_device/update.cjs +33 -6
  78. package/dist/energy_device/update.d.cts +3 -0
  79. package/dist/energy_device/update.d.mts +3 -0
  80. package/dist/energy_device/update.mjs +33 -6
  81. package/dist/energy_device/wall_connector.cjs +6729 -5
  82. package/dist/energy_device/wall_connector.d.cts +696 -2
  83. package/dist/energy_device/wall_connector.d.mts +696 -2
  84. package/dist/energy_device/wall_connector.mjs +6591 -6
  85. package/package.json +1 -1
@@ -1,5 +1,6 @@
1
1
  import { DeviceCertFormat, DeviceSignedPayload, DeviceType, Din, EcuId, EncryptedMessage } from "./device.cjs";
2
2
  import { ErrorResponse } from "./error.cjs";
3
+ import { Duration } from "./google/protobuf/duration.cjs";
3
4
  import { CellularEID, NetworkInterface, NetworkInterfaceIPv4Config, WifiConfig, WifiNetwork, WifiNetworkSecurityType } from "./networking.cjs";
4
5
  import { AcceptedPackage, FirmwareVersion, LocallyAvailablePackage, SystemUpdate } from "./update.cjs";
5
6
  import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
@@ -11,6 +12,15 @@ declare const protobufPackage = "tesla.proto.energy_device.v1";
11
12
  * observations and contributions from the community
12
13
  */
13
14
  interface CommonAPIGetSystemInfoRequest {}
15
+ interface RadioLegalInformation {
16
+ manufacturer: string | undefined;
17
+ model: string | undefined;
18
+ fccId: string | undefined;
19
+ icId: string | undefined;
20
+ }
21
+ interface ComplianceInformation {
22
+ radioLegalInformation: RadioLegalInformation[];
23
+ }
14
24
  interface CommonAPIGetSystemInfoResponse {
15
25
  deviceId: EcuId | undefined;
16
26
  din: Din | undefined;
@@ -50,7 +60,9 @@ interface CommonAPIConfigureWifiWithEncryptedPasswordResponse {
50
60
  wifi: NetworkInterface | undefined;
51
61
  result: number;
52
62
  }
53
- interface CommonAPICheckForUpdateRequest {}
63
+ interface CommonAPICheckForUpdateRequest {
64
+ downloadIfAvailable: boolean;
65
+ }
54
66
  interface CommonAPICheckForUpdateResponse {}
55
67
  interface CommonAPICheckForUpdateUrgencyRequest {}
56
68
  interface CommonAPICheckForUpdateUrgencyResponse {}
@@ -107,6 +119,34 @@ interface CommonAPIPrepareRegistrationPayloadRequest {
107
119
  interface CommonAPIPrepareRegistrationPayloadResponse {
108
120
  signedRegistrationPayload: DeviceSignedPayload | undefined;
109
121
  }
122
+ interface TcpdumpInfo {
123
+ path: string;
124
+ pid: number;
125
+ interface: string;
126
+ expression: string;
127
+ duration: Duration | undefined;
128
+ maxDuration: Duration | undefined;
129
+ size: number;
130
+ maxSize: number;
131
+ }
132
+ interface CommonAPIStartTcpdumpRequest {
133
+ name: string;
134
+ interface: string;
135
+ expression: string;
136
+ maxDuration: Duration | undefined;
137
+ maxSize: number;
138
+ }
139
+ interface CommonAPIStartTcpdumpResponse {}
140
+ interface CommonAPIStopTcpdumpRequest {
141
+ name: string;
142
+ remove: boolean;
143
+ }
144
+ interface CommonAPIStopTcpdumpResponse {}
145
+ interface CommonAPIGetTcpdumpInfoRequest {}
146
+ interface CommonAPIGetTcpdumpInfoResponse {
147
+ list: TcpdumpInfo[];
148
+ diskQuota: number;
149
+ }
110
150
  interface CommonMessages {
111
151
  errorResponse: ErrorResponse | undefined;
112
152
  getSystemInfoRequest?: CommonAPIGetSystemInfoRequest | undefined;
@@ -146,7 +186,10 @@ interface CommonMessages {
146
186
  prepareRegistrationPayloadRequest?: CommonAPIPrepareRegistrationPayloadRequest | undefined;
147
187
  prepareRegistrationPayloadResponse?: CommonAPIPrepareRegistrationPayloadResponse | undefined;
148
188
  performUpdateFromLocallyAvailablePackagesRequest?: CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest | undefined;
189
+ performUpdateFromLocallyAvailablePackagesResponse?: CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse | undefined;
149
190
  /**
191
+ * Tags 40-45 carry request/response payloads whose bodies are types from a
192
+ * separate, not-yet-modeled proto package; left unmodeled here.
150
193
  * CommonAPIRegisterRequest registration_request = 40;
151
194
  * CommonAPIRegisterResponse registration_response = 41;
152
195
  * CommonAPIRetrieveSiteUuidRequest retrieve_site_uuid_request = 42;
@@ -154,9 +197,16 @@ interface CommonMessages {
154
197
  * CommonAPIRetrieveSiteSuggestionRequest retrieve_site_suggestion_request = 44;
155
198
  * CommonAPIRetrieveSiteSuggestionResponse retrieve_site_suggestion_response = 45;
156
199
  */
157
- performUpdateFromLocallyAvailablePackagesResponse?: CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse | undefined;
200
+ startTcpdumpRequest?: CommonAPIStartTcpdumpRequest | undefined;
201
+ startTcpdumpResponse?: CommonAPIStartTcpdumpResponse | undefined;
202
+ stopTcpdumpRequest?: CommonAPIStopTcpdumpRequest | undefined;
203
+ stopTcpdumpResponse?: CommonAPIStopTcpdumpResponse | undefined;
204
+ getTcpdumpInfoRequest?: CommonAPIGetTcpdumpInfoRequest | undefined;
205
+ getTcpdumpInfoResponse?: CommonAPIGetTcpdumpInfoResponse | undefined;
158
206
  }
159
207
  declare const CommonAPIGetSystemInfoRequest: MessageFns<CommonAPIGetSystemInfoRequest>;
208
+ declare const RadioLegalInformation: MessageFns<RadioLegalInformation>;
209
+ declare const ComplianceInformation: MessageFns<ComplianceInformation>;
160
210
  declare const CommonAPIGetSystemInfoResponse: MessageFns<CommonAPIGetSystemInfoResponse>;
161
211
  declare const CommonAPISetLocalSiteConfigRequest: MessageFns<CommonAPISetLocalSiteConfigRequest>;
162
212
  declare const CommonAPISetLocalSiteConfigResponse: MessageFns<CommonAPISetLocalSiteConfigResponse>;
@@ -194,6 +244,13 @@ declare const CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest: Message
194
244
  declare const CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse: MessageFns<CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse>;
195
245
  declare const CommonAPIPrepareRegistrationPayloadRequest: MessageFns<CommonAPIPrepareRegistrationPayloadRequest>;
196
246
  declare const CommonAPIPrepareRegistrationPayloadResponse: MessageFns<CommonAPIPrepareRegistrationPayloadResponse>;
247
+ declare const TcpdumpInfo: MessageFns<TcpdumpInfo>;
248
+ declare const CommonAPIStartTcpdumpRequest: MessageFns<CommonAPIStartTcpdumpRequest>;
249
+ declare const CommonAPIStartTcpdumpResponse: MessageFns<CommonAPIStartTcpdumpResponse>;
250
+ declare const CommonAPIStopTcpdumpRequest: MessageFns<CommonAPIStopTcpdumpRequest>;
251
+ declare const CommonAPIStopTcpdumpResponse: MessageFns<CommonAPIStopTcpdumpResponse>;
252
+ declare const CommonAPIGetTcpdumpInfoRequest: MessageFns<CommonAPIGetTcpdumpInfoRequest>;
253
+ declare const CommonAPIGetTcpdumpInfoResponse: MessageFns<CommonAPIGetTcpdumpInfoResponse>;
197
254
  declare const CommonMessages: MessageFns<CommonMessages>;
198
255
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
199
256
  type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]>; } : Partial<T>;
@@ -208,4 +265,4 @@ interface MessageFns<T> {
208
265
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
209
266
  }
210
267
  //#endregion
211
- export { CommonAPICheckForUpdateRequest, CommonAPICheckForUpdateResponse, CommonAPICheckForUpdateUrgencyRequest, CommonAPICheckForUpdateUrgencyResponse, CommonAPICheckInternetRequest, CommonAPICheckInternetResponse, CommonAPIClearUpdateRequest, CommonAPIClearUpdateResponse, CommonAPIConfigureEthernetRequest, CommonAPIConfigureEthernetResponse, CommonAPIConfigureWifiRequest, CommonAPIConfigureWifiResponse, CommonAPIConfigureWifiWithEncryptedPasswordRequest, CommonAPIConfigureWifiWithEncryptedPasswordResponse, CommonAPIDeviceCertRequest, CommonAPIDeviceCertResponse, CommonAPIFactoryResetRequest, CommonAPIFactoryResetResponse, CommonAPIForgetWifiNetworkRequest, CommonAPIForgetWifiNetworkResponse, CommonAPIGetCellularInfoRequest, CommonAPIGetCellularInfoResponse, CommonAPIGetNetworkingStatusRequest, CommonAPIGetNetworkingStatusResponse, CommonAPIGetSystemInfoRequest, CommonAPIGetSystemInfoResponse, CommonAPINegotiateUpdateWithLocallyAvailablePackagesRequest, CommonAPINegotiateUpdateWithLocallyAvailablePackagesResponse, CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest, CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse, CommonAPIPerformUpdateRequest, CommonAPIPerformUpdateResponse, CommonAPIPrepareRegistrationPayloadRequest, CommonAPIPrepareRegistrationPayloadResponse, CommonAPISetLocalSiteConfigRequest, CommonAPISetLocalSiteConfigResponse, CommonAPIWifiScanRequest, CommonAPIWifiScanResponse, CommonMessages, DeepPartial, Exact, MessageFns, protobufPackage };
268
+ export { CommonAPICheckForUpdateRequest, CommonAPICheckForUpdateResponse, CommonAPICheckForUpdateUrgencyRequest, CommonAPICheckForUpdateUrgencyResponse, CommonAPICheckInternetRequest, CommonAPICheckInternetResponse, CommonAPIClearUpdateRequest, CommonAPIClearUpdateResponse, CommonAPIConfigureEthernetRequest, CommonAPIConfigureEthernetResponse, CommonAPIConfigureWifiRequest, CommonAPIConfigureWifiResponse, CommonAPIConfigureWifiWithEncryptedPasswordRequest, CommonAPIConfigureWifiWithEncryptedPasswordResponse, CommonAPIDeviceCertRequest, CommonAPIDeviceCertResponse, CommonAPIFactoryResetRequest, CommonAPIFactoryResetResponse, CommonAPIForgetWifiNetworkRequest, CommonAPIForgetWifiNetworkResponse, CommonAPIGetCellularInfoRequest, CommonAPIGetCellularInfoResponse, CommonAPIGetNetworkingStatusRequest, CommonAPIGetNetworkingStatusResponse, CommonAPIGetSystemInfoRequest, CommonAPIGetSystemInfoResponse, CommonAPIGetTcpdumpInfoRequest, CommonAPIGetTcpdumpInfoResponse, CommonAPINegotiateUpdateWithLocallyAvailablePackagesRequest, CommonAPINegotiateUpdateWithLocallyAvailablePackagesResponse, CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest, CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse, CommonAPIPerformUpdateRequest, CommonAPIPerformUpdateResponse, CommonAPIPrepareRegistrationPayloadRequest, CommonAPIPrepareRegistrationPayloadResponse, CommonAPISetLocalSiteConfigRequest, CommonAPISetLocalSiteConfigResponse, CommonAPIStartTcpdumpRequest, CommonAPIStartTcpdumpResponse, CommonAPIStopTcpdumpRequest, CommonAPIStopTcpdumpResponse, CommonAPIWifiScanRequest, CommonAPIWifiScanResponse, CommonMessages, ComplianceInformation, DeepPartial, Exact, MessageFns, RadioLegalInformation, TcpdumpInfo, protobufPackage };
@@ -1,5 +1,6 @@
1
1
  import { DeviceCertFormat, DeviceSignedPayload, DeviceType, Din, EcuId, EncryptedMessage } from "./device.mjs";
2
2
  import { ErrorResponse } from "./error.mjs";
3
+ import { Duration } from "./google/protobuf/duration.mjs";
3
4
  import { CellularEID, NetworkInterface, NetworkInterfaceIPv4Config, WifiConfig, WifiNetwork, WifiNetworkSecurityType } from "./networking.mjs";
4
5
  import { AcceptedPackage, FirmwareVersion, LocallyAvailablePackage, SystemUpdate } from "./update.mjs";
5
6
  import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
@@ -11,6 +12,15 @@ declare const protobufPackage = "tesla.proto.energy_device.v1";
11
12
  * observations and contributions from the community
12
13
  */
13
14
  interface CommonAPIGetSystemInfoRequest {}
15
+ interface RadioLegalInformation {
16
+ manufacturer: string | undefined;
17
+ model: string | undefined;
18
+ fccId: string | undefined;
19
+ icId: string | undefined;
20
+ }
21
+ interface ComplianceInformation {
22
+ radioLegalInformation: RadioLegalInformation[];
23
+ }
14
24
  interface CommonAPIGetSystemInfoResponse {
15
25
  deviceId: EcuId | undefined;
16
26
  din: Din | undefined;
@@ -50,7 +60,9 @@ interface CommonAPIConfigureWifiWithEncryptedPasswordResponse {
50
60
  wifi: NetworkInterface | undefined;
51
61
  result: number;
52
62
  }
53
- interface CommonAPICheckForUpdateRequest {}
63
+ interface CommonAPICheckForUpdateRequest {
64
+ downloadIfAvailable: boolean;
65
+ }
54
66
  interface CommonAPICheckForUpdateResponse {}
55
67
  interface CommonAPICheckForUpdateUrgencyRequest {}
56
68
  interface CommonAPICheckForUpdateUrgencyResponse {}
@@ -107,6 +119,34 @@ interface CommonAPIPrepareRegistrationPayloadRequest {
107
119
  interface CommonAPIPrepareRegistrationPayloadResponse {
108
120
  signedRegistrationPayload: DeviceSignedPayload | undefined;
109
121
  }
122
+ interface TcpdumpInfo {
123
+ path: string;
124
+ pid: number;
125
+ interface: string;
126
+ expression: string;
127
+ duration: Duration | undefined;
128
+ maxDuration: Duration | undefined;
129
+ size: number;
130
+ maxSize: number;
131
+ }
132
+ interface CommonAPIStartTcpdumpRequest {
133
+ name: string;
134
+ interface: string;
135
+ expression: string;
136
+ maxDuration: Duration | undefined;
137
+ maxSize: number;
138
+ }
139
+ interface CommonAPIStartTcpdumpResponse {}
140
+ interface CommonAPIStopTcpdumpRequest {
141
+ name: string;
142
+ remove: boolean;
143
+ }
144
+ interface CommonAPIStopTcpdumpResponse {}
145
+ interface CommonAPIGetTcpdumpInfoRequest {}
146
+ interface CommonAPIGetTcpdumpInfoResponse {
147
+ list: TcpdumpInfo[];
148
+ diskQuota: number;
149
+ }
110
150
  interface CommonMessages {
111
151
  errorResponse: ErrorResponse | undefined;
112
152
  getSystemInfoRequest?: CommonAPIGetSystemInfoRequest | undefined;
@@ -146,7 +186,10 @@ interface CommonMessages {
146
186
  prepareRegistrationPayloadRequest?: CommonAPIPrepareRegistrationPayloadRequest | undefined;
147
187
  prepareRegistrationPayloadResponse?: CommonAPIPrepareRegistrationPayloadResponse | undefined;
148
188
  performUpdateFromLocallyAvailablePackagesRequest?: CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest | undefined;
189
+ performUpdateFromLocallyAvailablePackagesResponse?: CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse | undefined;
149
190
  /**
191
+ * Tags 40-45 carry request/response payloads whose bodies are types from a
192
+ * separate, not-yet-modeled proto package; left unmodeled here.
150
193
  * CommonAPIRegisterRequest registration_request = 40;
151
194
  * CommonAPIRegisterResponse registration_response = 41;
152
195
  * CommonAPIRetrieveSiteUuidRequest retrieve_site_uuid_request = 42;
@@ -154,9 +197,16 @@ interface CommonMessages {
154
197
  * CommonAPIRetrieveSiteSuggestionRequest retrieve_site_suggestion_request = 44;
155
198
  * CommonAPIRetrieveSiteSuggestionResponse retrieve_site_suggestion_response = 45;
156
199
  */
157
- performUpdateFromLocallyAvailablePackagesResponse?: CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse | undefined;
200
+ startTcpdumpRequest?: CommonAPIStartTcpdumpRequest | undefined;
201
+ startTcpdumpResponse?: CommonAPIStartTcpdumpResponse | undefined;
202
+ stopTcpdumpRequest?: CommonAPIStopTcpdumpRequest | undefined;
203
+ stopTcpdumpResponse?: CommonAPIStopTcpdumpResponse | undefined;
204
+ getTcpdumpInfoRequest?: CommonAPIGetTcpdumpInfoRequest | undefined;
205
+ getTcpdumpInfoResponse?: CommonAPIGetTcpdumpInfoResponse | undefined;
158
206
  }
159
207
  declare const CommonAPIGetSystemInfoRequest: MessageFns<CommonAPIGetSystemInfoRequest>;
208
+ declare const RadioLegalInformation: MessageFns<RadioLegalInformation>;
209
+ declare const ComplianceInformation: MessageFns<ComplianceInformation>;
160
210
  declare const CommonAPIGetSystemInfoResponse: MessageFns<CommonAPIGetSystemInfoResponse>;
161
211
  declare const CommonAPISetLocalSiteConfigRequest: MessageFns<CommonAPISetLocalSiteConfigRequest>;
162
212
  declare const CommonAPISetLocalSiteConfigResponse: MessageFns<CommonAPISetLocalSiteConfigResponse>;
@@ -194,6 +244,13 @@ declare const CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest: Message
194
244
  declare const CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse: MessageFns<CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse>;
195
245
  declare const CommonAPIPrepareRegistrationPayloadRequest: MessageFns<CommonAPIPrepareRegistrationPayloadRequest>;
196
246
  declare const CommonAPIPrepareRegistrationPayloadResponse: MessageFns<CommonAPIPrepareRegistrationPayloadResponse>;
247
+ declare const TcpdumpInfo: MessageFns<TcpdumpInfo>;
248
+ declare const CommonAPIStartTcpdumpRequest: MessageFns<CommonAPIStartTcpdumpRequest>;
249
+ declare const CommonAPIStartTcpdumpResponse: MessageFns<CommonAPIStartTcpdumpResponse>;
250
+ declare const CommonAPIStopTcpdumpRequest: MessageFns<CommonAPIStopTcpdumpRequest>;
251
+ declare const CommonAPIStopTcpdumpResponse: MessageFns<CommonAPIStopTcpdumpResponse>;
252
+ declare const CommonAPIGetTcpdumpInfoRequest: MessageFns<CommonAPIGetTcpdumpInfoRequest>;
253
+ declare const CommonAPIGetTcpdumpInfoResponse: MessageFns<CommonAPIGetTcpdumpInfoResponse>;
197
254
  declare const CommonMessages: MessageFns<CommonMessages>;
198
255
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
199
256
  type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]>; } : Partial<T>;
@@ -208,4 +265,4 @@ interface MessageFns<T> {
208
265
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
209
266
  }
210
267
  //#endregion
211
- export { CommonAPICheckForUpdateRequest, CommonAPICheckForUpdateResponse, CommonAPICheckForUpdateUrgencyRequest, CommonAPICheckForUpdateUrgencyResponse, CommonAPICheckInternetRequest, CommonAPICheckInternetResponse, CommonAPIClearUpdateRequest, CommonAPIClearUpdateResponse, CommonAPIConfigureEthernetRequest, CommonAPIConfigureEthernetResponse, CommonAPIConfigureWifiRequest, CommonAPIConfigureWifiResponse, CommonAPIConfigureWifiWithEncryptedPasswordRequest, CommonAPIConfigureWifiWithEncryptedPasswordResponse, CommonAPIDeviceCertRequest, CommonAPIDeviceCertResponse, CommonAPIFactoryResetRequest, CommonAPIFactoryResetResponse, CommonAPIForgetWifiNetworkRequest, CommonAPIForgetWifiNetworkResponse, CommonAPIGetCellularInfoRequest, CommonAPIGetCellularInfoResponse, CommonAPIGetNetworkingStatusRequest, CommonAPIGetNetworkingStatusResponse, CommonAPIGetSystemInfoRequest, CommonAPIGetSystemInfoResponse, CommonAPINegotiateUpdateWithLocallyAvailablePackagesRequest, CommonAPINegotiateUpdateWithLocallyAvailablePackagesResponse, CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest, CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse, CommonAPIPerformUpdateRequest, CommonAPIPerformUpdateResponse, CommonAPIPrepareRegistrationPayloadRequest, CommonAPIPrepareRegistrationPayloadResponse, CommonAPISetLocalSiteConfigRequest, CommonAPISetLocalSiteConfigResponse, CommonAPIWifiScanRequest, CommonAPIWifiScanResponse, CommonMessages, DeepPartial, Exact, MessageFns, protobufPackage };
268
+ export { CommonAPICheckForUpdateRequest, CommonAPICheckForUpdateResponse, CommonAPICheckForUpdateUrgencyRequest, CommonAPICheckForUpdateUrgencyResponse, CommonAPICheckInternetRequest, CommonAPICheckInternetResponse, CommonAPIClearUpdateRequest, CommonAPIClearUpdateResponse, CommonAPIConfigureEthernetRequest, CommonAPIConfigureEthernetResponse, CommonAPIConfigureWifiRequest, CommonAPIConfigureWifiResponse, CommonAPIConfigureWifiWithEncryptedPasswordRequest, CommonAPIConfigureWifiWithEncryptedPasswordResponse, CommonAPIDeviceCertRequest, CommonAPIDeviceCertResponse, CommonAPIFactoryResetRequest, CommonAPIFactoryResetResponse, CommonAPIForgetWifiNetworkRequest, CommonAPIForgetWifiNetworkResponse, CommonAPIGetCellularInfoRequest, CommonAPIGetCellularInfoResponse, CommonAPIGetNetworkingStatusRequest, CommonAPIGetNetworkingStatusResponse, CommonAPIGetSystemInfoRequest, CommonAPIGetSystemInfoResponse, CommonAPIGetTcpdumpInfoRequest, CommonAPIGetTcpdumpInfoResponse, CommonAPINegotiateUpdateWithLocallyAvailablePackagesRequest, CommonAPINegotiateUpdateWithLocallyAvailablePackagesResponse, CommonAPIPerformUpdateFromLocallyAvailablePackagesRequest, CommonAPIPerformUpdateFromLocallyAvailablePackagesResponse, CommonAPIPerformUpdateRequest, CommonAPIPerformUpdateResponse, CommonAPIPrepareRegistrationPayloadRequest, CommonAPIPrepareRegistrationPayloadResponse, CommonAPISetLocalSiteConfigRequest, CommonAPISetLocalSiteConfigResponse, CommonAPIStartTcpdumpRequest, CommonAPIStartTcpdumpResponse, CommonAPIStopTcpdumpRequest, CommonAPIStopTcpdumpResponse, CommonAPIWifiScanRequest, CommonAPIWifiScanResponse, CommonMessages, ComplianceInformation, DeepPartial, Exact, MessageFns, RadioLegalInformation, TcpdumpInfo, protobufPackage };