@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,3 +1,7 @@
1
+ import { Din, UUIDv4Bytes, VIN } from "./device.mjs";
2
+ import { NetworkInterface, WifiConfig } from "./networking.mjs";
3
+ import { AccumulatedEnergy, InstACMeasurement } from "./energy.mjs";
4
+ import { NeurioMeterInterface } from "./neurio_meter_api.mjs";
1
5
  import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
2
6
  //#region src/energy_device/wall_connector.d.ts
3
7
  declare const protobufPackage = "tesla.proto.energy_device.v1";
@@ -164,7 +168,697 @@ declare enum WCOcppStatus {
164
168
  }
165
169
  declare function wCOcppStatusFromJSON(object: any): WCOcppStatus;
166
170
  declare function wCOcppStatusToJSON(object: WCOcppStatus): string;
167
- interface WCMessages {}
171
+ declare enum WCDryContactControlState {
172
+ WC_DRY_CONTACT_CONTROL_STATE_INVALID = 0,
173
+ WC_DRY_CONTACT_CONTROL_STATE_INACTIVE = 1,
174
+ WC_DRY_CONTACT_CONTROL_STATE_ACTIVE = 2,
175
+ UNRECOGNIZED = -1
176
+ }
177
+ declare function wCDryContactControlStateFromJSON(object: any): WCDryContactControlState;
178
+ declare function wCDryContactControlStateToJSON(object: WCDryContactControlState): string;
179
+ declare enum WCDryContactDefaultState {
180
+ WC_DRY_CONTACT_DEFAULT_STATE_INVALID = 0,
181
+ WC_DRY_CONTACT_DEFAULT_STATE_NORMALLY_OPEN = 1,
182
+ WC_DRY_CONTACT_DEFAULT_STATE_NORMALLY_CLOSED = 2,
183
+ UNRECOGNIZED = -1
184
+ }
185
+ declare function wCDryContactDefaultStateFromJSON(object: any): WCDryContactDefaultState;
186
+ declare function wCDryContactDefaultStateToJSON(object: WCDryContactDefaultState): string;
187
+ declare enum WCTimeSource {
188
+ WC_TIME_SOURCE_INVALID = 0,
189
+ WC_TIME_SOURCE_BUILD = 1,
190
+ WC_TIME_SOURCE_SAVED = 2,
191
+ WC_TIME_SOURCE_STALE = 3,
192
+ WC_TIME_SOURCE_SYNCED = 4,
193
+ UNRECOGNIZED = -1
194
+ }
195
+ declare function wCTimeSourceFromJSON(object: any): WCTimeSource;
196
+ declare function wCTimeSourceToJSON(object: WCTimeSource): string;
197
+ declare enum WCOperationalMode {
198
+ WC_OPERATIONAL_MODE_INVALID = 0,
199
+ WC_OPERATIONAL_MODE_COMMERCIAL_PAY_PER_USE = 1,
200
+ WC_OPERATIONAL_MODE_COMMERCIAL_NOT_PAY_PER_USE = 2,
201
+ WC_OPERATIONAL_MODE_NOT_COMMERCIAL = 3,
202
+ WC_OPERATIONAL_MODE_COMMERCIAL_PAY_PER_USE_WITH_ACCESS_CONTROL = 4,
203
+ WC_OPERATIONAL_MODE_COMMERCIAL_WITH_ACCESS_CONTROL = 5,
204
+ UNRECOGNIZED = -1
205
+ }
206
+ declare function wCOperationalModeFromJSON(object: any): WCOperationalMode;
207
+ declare function wCOperationalModeToJSON(object: WCOperationalMode): string;
208
+ declare enum WCOcppSecurityParameterType {
209
+ WC_OCPP_SECURITY_PARAMETER_TYPE_INVALID = 0,
210
+ WC_OCPP_SECURITY_PARAMETER_TYPE_CP_AUTH_KEY = 1,
211
+ WC_OCPP_SECURITY_PARAMETER_TYPE_CS_CA_CERT = 2,
212
+ WC_OCPP_SECURITY_PARAMETER_TYPE_CP_CERT = 3,
213
+ WC_OCPP_SECURITY_PARAMETER_TYPE_ALTERNATE_CS_CA_CERT = 4,
214
+ UNRECOGNIZED = -1
215
+ }
216
+ declare function wCOcppSecurityParameterTypeFromJSON(object: any): WCOcppSecurityParameterType;
217
+ declare function wCOcppSecurityParameterTypeToJSON(object: WCOcppSecurityParameterType): string;
218
+ declare enum WCOcppVersion {
219
+ WC_OCPP_VERSION_INVALID = 0,
220
+ WC_OCPP_VERSION_1_6 = 1,
221
+ WC_OCPP_VERSION_2_0_1 = 2,
222
+ UNRECOGNIZED = -1
223
+ }
224
+ declare function wCOcppVersionFromJSON(object: any): WCOcppVersion;
225
+ declare function wCOcppVersionToJSON(object: WCOcppVersion): string;
226
+ declare enum WCOcppSecurityProfile {
227
+ WC_OCPP_SECURITY_PROFILE_INVALID = 0,
228
+ WC_OCPP_SECURITY_PROFILE_UNSECURED_BASIC_AUTH = 1,
229
+ WC_OCPP_SECURITY_PROFILE_TLS_BASIC_AUTH = 2,
230
+ WC_OCPP_SECURITY_PROFILE_TLS_CLIENT_CERTS = 3,
231
+ UNRECOGNIZED = -1
232
+ }
233
+ declare function wCOcppSecurityProfileFromJSON(object: any): WCOcppSecurityProfile;
234
+ declare function wCOcppSecurityProfileToJSON(object: WCOcppSecurityProfile): string;
235
+ declare enum WCOcppScope {
236
+ WC_OCPP_SCOPE_INVALID = 0,
237
+ WC_OCPP_SCOPE_REIMBURSEMENT = 1,
238
+ WC_OCPP_SCOPE_FULL = 2,
239
+ UNRECOGNIZED = -1
240
+ }
241
+ declare function wCOcppScopeFromJSON(object: any): WCOcppScope;
242
+ declare function wCOcppScopeToJSON(object: WCOcppScope): string;
243
+ declare enum WCSmartChargingReason {
244
+ WC_SMART_CHARGING_REASON_INVALID = 0,
245
+ WC_SMART_CHARGING_REASON_DISABLED_BY_SCHEDULE = 1,
246
+ WC_SMART_CHARGING_REASON_ENABLED_BY_SCHEDULE = 2,
247
+ WC_SMART_CHARGING_REASON_EXPLICITLY_STOPPED = 3,
248
+ WC_SMART_CHARGING_REASON_EXPLICITLY_STARTED = 4,
249
+ WC_SMART_CHARGING_REASON_SMART_CHARGING_ALLOWED = 5,
250
+ WC_SMART_CHARGING_REASON_SMART_CHARGING_DISALLOWED = 6,
251
+ WC_SMART_CHARGING_REASON_SMART_CHARGING_TARGET_POWER = 7,
252
+ WC_SMART_CHARGING_REASON_SMART_CHARGING_LOW_VOLTAGE = 8,
253
+ WC_SMART_CHARGING_REASON_SMART_CHARGING_TARGET_POWER_BELOW_MINIMUM = 9,
254
+ UNRECOGNIZED = -1
255
+ }
256
+ declare function wCSmartChargingReasonFromJSON(object: any): WCSmartChargingReason;
257
+ declare function wCSmartChargingReasonToJSON(object: WCSmartChargingReason): string;
258
+ declare enum WCPowershareSessionState {
259
+ WC_POWERSHARE_SESSION_STATE_INVALID = 0,
260
+ WC_POWERSHARE_SESSION_STATE_NONE = 1,
261
+ WC_POWERSHARE_SESSION_STATE_IN_PROGRESS = 2,
262
+ UNRECOGNIZED = -1
263
+ }
264
+ declare function wCPowershareSessionStateFromJSON(object: any): WCPowershareSessionState;
265
+ declare function wCPowershareSessionStateToJSON(object: WCPowershareSessionState): string;
266
+ declare enum WCChargingCommand {
267
+ WC_CHARGING_COMMAND_INVALID = 0,
268
+ WC_CHARGING_COMMAND_START = 1,
269
+ WC_CHARGING_COMMAND_STOP = 2,
270
+ UNRECOGNIZED = -1
271
+ }
272
+ declare function wCChargingCommandFromJSON(object: any): WCChargingCommand;
273
+ declare function wCChargingCommandToJSON(object: WCChargingCommand): string;
274
+ interface WCFaultStatusLatchedAlert {
275
+ alertId: number;
276
+ alertTimestamp: Date | undefined;
277
+ }
278
+ interface WCVitals {
279
+ uptimeS: number;
280
+ alerts: number[];
281
+ contactorClosed: boolean;
282
+ vehicleConnected: boolean;
283
+ pcbaTempC: number;
284
+ handleTempC: number;
285
+ mcuTempC: number;
286
+ inputThermopileV: number;
287
+ proxV: number;
288
+ pilotHighV: number;
289
+ pilotLowV: number;
290
+ sessionDurationS: number;
291
+ sessionEnergy: AccumulatedEnergy | undefined;
292
+ acMeasurementGrid: InstACMeasurement | undefined;
293
+ acMeasurementVehicle: InstACMeasurement | undefined;
294
+ groundResistanceOhms: number;
295
+ line1EarthVrms: number;
296
+ neutralEarthVrms: number;
297
+ faultStatus: WCFaultStatusState;
298
+ recentFaultStatusLatchedAlerts: WCFaultStatusLatchedAlert[];
299
+ vin: VIN | undefined;
300
+ instantaneousPowerWatts: number | undefined;
301
+ scheduledChargingStatus: WCChargeScheduleChargingStatus;
302
+ instantaneousLineCurrent: number | undefined;
303
+ ocppStatus: WCOcppStatus;
304
+ evseNotReadyReasons: WCEvseNotReadyReason[];
305
+ powershareSessionState: WCPowershareSessionState;
306
+ dryContactControlState: WCDryContactControlState;
307
+ smartChargingReason: WCSmartChargingReason;
308
+ }
309
+ interface WCLifetimeStats {
310
+ uptimeS: number;
311
+ alertCount: number;
312
+ contactorCycles: number;
313
+ contactorCyclesLoaded: number;
314
+ connectorCycles: number;
315
+ thermalFoldbacks: number;
316
+ avgStartupTempC: number;
317
+ chargeStarts: number;
318
+ chargingTimeS: number;
319
+ chargingEnergy: AccumulatedEnergy | undefined;
320
+ }
321
+ interface WCLoadSharingFixedLimitConfig {
322
+ networkLimitAmps: number;
323
+ }
324
+ interface WCLoadSharingConductorLimitConfig {
325
+ conductorLimitAmps: number;
326
+ }
327
+ interface WCLoadSharingSettings {
328
+ fixedLimit: WCLoadSharingFixedLimitConfig | undefined;
329
+ conductorLimit: WCLoadSharingConductorLimitConfig | undefined;
330
+ }
331
+ interface WCLoadSharingLimits {
332
+ maxParticipants: number;
333
+ }
334
+ interface WCLoadSharingNetworkStatus {
335
+ networkChargingInhibitors: WCLoadSharingNetworkChargingInhibitor[];
336
+ }
337
+ interface WCLoadSharingConfig {
338
+ version: number;
339
+ participantDins: Din[];
340
+ fixedLimit: WCLoadSharingFixedLimitConfig | undefined;
341
+ settings: WCLoadSharingSettings | undefined;
342
+ chargingEnabled: boolean;
343
+ }
344
+ interface WCPpuConfig {
345
+ sessionReportingMode: WCPpuSessionReportingMode;
346
+ }
347
+ interface WCOperationalSettingsConfig {
348
+ operationalMode: WCOperationalMode;
349
+ emitIncreasedTelemetry: boolean;
350
+ }
351
+ interface WCMeterInterface {
352
+ neurio: NeurioMeterInterface | undefined;
353
+ }
354
+ interface WCDryContactConfig {
355
+ enabled: boolean;
356
+ defaultState: WCDryContactDefaultState;
357
+ disableCharging: boolean;
358
+ maxCurrentAmps: number;
359
+ germany14a: boolean;
360
+ }
361
+ interface WCTimeZoneTransition {
362
+ timestamp: Date | undefined;
363
+ localTimeUtcOffset: number;
364
+ }
365
+ interface WCTimeZoneInfo {
366
+ transitions: WCTimeZoneTransition[];
367
+ }
368
+ interface WCTimeZone {
369
+ timeZoneId: string;
370
+ timeZoneInfo: WCTimeZoneInfo | undefined;
371
+ }
372
+ interface WCMIDConfig {
373
+ enabled: boolean;
374
+ timeZone: WCTimeZone | undefined;
375
+ }
376
+ interface WCSettings {
377
+ maxOutputCurrentAmps: number;
378
+ gmiMode: WCGroundMonitorMode;
379
+ country: string;
380
+ thirdPartyVehicleMode: WCThirdPartyVehicleMode;
381
+ loadSharingConfig: WCLoadSharingConfig | undefined;
382
+ dryContact: WCDryContactConfig | undefined;
383
+ midConfig: WCMIDConfig | undefined;
384
+ }
385
+ interface WCGenealogy {
386
+ region: number;
387
+ handleType: number;
388
+ hardwareFeatures: number;
389
+ subUsageId: number;
390
+ }
391
+ interface ComplianceCRC32 {
392
+ name: string;
393
+ crc32: number;
394
+ }
395
+ interface WCLoadSharingFollowerState {
396
+ version: number;
397
+ chargeRequest: boolean;
398
+ loadCurrentAmps: number;
399
+ vehicleConnected: boolean;
400
+ alertCount: number;
401
+ contactorClosed: boolean;
402
+ pilotCurrentAmps: number;
403
+ individualPilotCurrentAmps: number;
404
+ }
405
+ interface WCLoadSharingLeaderCommand {
406
+ chargeAllowed: boolean;
407
+ pilotCurrentAmps: number;
408
+ }
409
+ interface WCLoadSharingLeaderState {
410
+ version: number;
411
+ networkCurrentLimitAmps: number;
412
+ fallbackCurrentAmps: number;
413
+ roundRobinIndex: number;
414
+ chargingEnabled: boolean;
415
+ activeUnitCount: number;
416
+ }
417
+ interface WCLoadSharingDeviceEntry {
418
+ din: Din | undefined;
419
+ leaderCommand: WCLoadSharingLeaderCommand | undefined;
420
+ followerState: WCLoadSharingFollowerState | undefined;
421
+ mia: boolean;
422
+ }
423
+ interface WCLoadSharingNetworkState {
424
+ devices: WCLoadSharingDeviceEntry[];
425
+ leaderState: WCLoadSharingLeaderState | undefined;
426
+ settings: WCLoadSharingSettings | undefined;
427
+ status: WCLoadSharingNetworkStatus | undefined;
428
+ limits: WCLoadSharingLimits | undefined;
429
+ }
430
+ interface WCProvisionalOperationalParams {
431
+ limitCurrentMaxAmps: number;
432
+ limitTimeoutS: number;
433
+ inhibitCharging: boolean;
434
+ }
435
+ interface WCAccessControlEntry {
436
+ vin: VIN | undefined;
437
+ name: string;
438
+ model: WCTeslaVehicleModel;
439
+ modelYear: number;
440
+ driveType: WCTeslaVehicleDriveType;
441
+ }
442
+ interface WCChargeScheduleTimePeriod {
443
+ startSeconds: number;
444
+ endSeconds: number;
445
+ }
446
+ interface WCChargeScheduleDayTimePeriods {
447
+ timePeriods: WCChargeScheduleTimePeriod[];
448
+ /** bitmask of WCChargeScheduleDay values */
449
+ dayBitmask: number;
450
+ }
451
+ interface WCChargeSchedule {
452
+ dayTimePeriods: WCChargeScheduleDayTimePeriods[];
453
+ }
454
+ interface WCChargeScheduleDelay {
455
+ maxDelaySeconds: number;
456
+ }
457
+ interface WCChargeScheduleConfig {
458
+ enableSchedule: boolean;
459
+ schedule: WCChargeSchedule | undefined;
460
+ delay: WCChargeScheduleDelay | undefined;
461
+ }
462
+ interface WCChargeScheduleConfigStatus {
463
+ config: WCChargeScheduleConfig | undefined;
464
+ error: WCChargeScheduleConfigError;
465
+ }
466
+ interface WCChargeCommand {
467
+ chargingCommand: WCChargingCommand;
468
+ }
469
+ interface WCOcppSettings {
470
+ connectionUrl: string;
471
+ chargepointId: string;
472
+ version: WCOcppVersion;
473
+ securityProfile: WCOcppSecurityProfile;
474
+ enable: boolean;
475
+ providerName: string;
476
+ scope: WCOcppScope;
477
+ }
478
+ interface WCOcppAuthorizationData {
479
+ idTag: string;
480
+ }
481
+ interface WCOcppAuthorizationList {
482
+ authData: WCOcppAuthorizationData[];
483
+ }
484
+ interface WCVehicleToHomeConfig {
485
+ siteControllerDin: Din | undefined;
486
+ modbusNodeId: number;
487
+ }
488
+ interface WCAPIGetVitalsRequest {}
489
+ interface WCAPIGetVitalsResponse {
490
+ vitals: WCVitals | undefined;
491
+ }
492
+ interface WCAPIGetLifetimeStatsRequest {}
493
+ interface WCAPIGetLifetimeStatsResponse {
494
+ lifetimeStats: WCLifetimeStats | undefined;
495
+ }
496
+ interface WCAPIGetConfigRequest {}
497
+ interface WCAPIGetConfigResponse {
498
+ settings: WCSettings | undefined;
499
+ wifiConfig: WifiConfig | undefined;
500
+ wifi: NetworkInterface | undefined;
501
+ meters: WCMeterInterface[];
502
+ chargeSchedule: WCChargeScheduleConfig | undefined;
503
+ ocppSettings: WCOcppSettings | undefined;
504
+ vehicleToHome: WCVehicleToHomeConfig | undefined;
505
+ timeSource: WCTimeSource;
506
+ }
507
+ interface WCAPIConfigureSettingsRequest {
508
+ settings: WCSettings | undefined;
509
+ }
510
+ interface WCAPIConfigureSettingsResponse {
511
+ settings: WCSettings | undefined;
512
+ }
513
+ interface WCAPIGetSystemInfoRequest {}
514
+ interface WCAPIGetSystemInfoResponse {
515
+ genealogy: WCGenealogy | undefined;
516
+ complianceCrcs: ComplianceCRC32[];
517
+ }
518
+ interface WCAPIGetLoadSharingNetworkStateRequest {}
519
+ interface WCAPIGetLoadSharingNetworkStateResponse {
520
+ networkState: WCLoadSharingNetworkState | undefined;
521
+ }
522
+ interface WCAPIPushLoadSharingFollowerStateRequest {
523
+ followerState: WCLoadSharingFollowerState | undefined;
524
+ }
525
+ interface WCAPIPushLoadSharingFollowerStateResponse {
526
+ leaderState: WCLoadSharingLeaderState | undefined;
527
+ leaderCommand: WCLoadSharingLeaderCommand | undefined;
528
+ }
529
+ interface WCAPIPushLoadSharingLeaderCommandRequest {
530
+ leaderState: WCLoadSharingLeaderState | undefined;
531
+ leaderCommand: WCLoadSharingLeaderCommand | undefined;
532
+ }
533
+ interface WCAPIPushLoadSharingLeaderCommandResponse {
534
+ followerState: WCLoadSharingFollowerState | undefined;
535
+ }
536
+ interface WCAPISetLoadSharingNetworkOperationRequest {
537
+ chargingEnabled: boolean;
538
+ }
539
+ interface WCAPISetLoadSharingNetworkOperationResponse {}
540
+ interface WCAPIConfigureLoadSharingSettingsRequest {
541
+ settings: WCLoadSharingSettings | undefined;
542
+ }
543
+ interface WCAPIConfigureLoadSharingSettingsResponse {
544
+ settings: WCLoadSharingSettings | undefined;
545
+ }
546
+ interface WCAPIPushLoadSharingConfigRequest {
547
+ loadSharingConfig: WCLoadSharingConfig | undefined;
548
+ }
549
+ interface WCAPIPushLoadSharingConfigResponse {}
550
+ interface WCAPIConfigurePpuSettingsRequest {
551
+ ppuConfig: WCPpuConfig | undefined;
552
+ }
553
+ interface WCAPIConfigurePpuSettingsResponse {
554
+ ppuConfig: WCPpuConfig | undefined;
555
+ }
556
+ interface WCAPIGetPpuSettingsRequest {}
557
+ interface WCAPIGetPpuSettingsResponse {
558
+ ppuConfig: WCPpuConfig | undefined;
559
+ }
560
+ interface WCAPIConfigureOperationalSettingsRequest {
561
+ operationalSettingsConfig: WCOperationalSettingsConfig | undefined;
562
+ }
563
+ interface WCAPIConfigureOperationalSettingsResponse {
564
+ operationalSettingsConfig: WCOperationalSettingsConfig | undefined;
565
+ }
566
+ interface WCAPIGetOperationalSettingsRequest {}
567
+ interface WCAPIGetOperationalSettingsResponse {
568
+ operationalSettingsConfig: WCOperationalSettingsConfig | undefined;
569
+ }
570
+ interface WCAPISetProvisionalOperationalParamsRequest {
571
+ provOpParams: WCProvisionalOperationalParams | undefined;
572
+ }
573
+ interface WCAPISetProvisionalOperationalParamsResponse {}
574
+ interface WCAPIGetProvisionalOperationalParamsRequest {}
575
+ interface WCAPIGetProvisionalOperationalParamsResponse {
576
+ provOpParams: WCProvisionalOperationalParams | undefined;
577
+ configuredCurrentLimitAmps: number;
578
+ }
579
+ interface WCAPIGetAccessControlSettingsRequest {}
580
+ interface WCAPIGetAccessControlSettingsResponse {
581
+ entries: WCAccessControlEntry[];
582
+ }
583
+ interface WCAPIConfigureAccessControlSettingsRequest {
584
+ operation: WCConfigureAccessControlOperation;
585
+ vin: VIN | undefined;
586
+ name: string;
587
+ }
588
+ interface WCAPIConfigureAccessControlSettingsResponse {
589
+ entries: WCAccessControlEntry[];
590
+ }
591
+ interface WCAPIGetRecentVehiclesRequest {}
592
+ interface WCAPIGetRecentVehiclesResponse {
593
+ recentVehicles: string[];
594
+ }
595
+ interface WCAPIPushPpuAuthorizationStateRequest {
596
+ authorized: boolean;
597
+ authUuid: UUIDv4Bytes | undefined;
598
+ }
599
+ interface WCAPIPushPpuAuthorizationStateResponse {}
600
+ interface WCAPIConfigureChargeScheduleRequest {
601
+ config: WCChargeScheduleConfig | undefined;
602
+ timeZone: WCTimeZone | undefined;
603
+ }
604
+ interface WCAPIConfigureChargeScheduleResponse {
605
+ error: WCChargeScheduleError;
606
+ }
607
+ interface WCAPIConfigureThirdPartyVehicleModeRequest {
608
+ thirdPartyVehicleMode: WCThirdPartyVehicleMode;
609
+ }
610
+ interface WCAPIConfigureThirdPartyVehicleModeResponse {}
611
+ interface WCAPIPushChargeCommandRequest {
612
+ chargeCommand: WCChargeCommand | undefined;
613
+ }
614
+ interface WCAPIPushChargeCommandResponse {}
615
+ interface WCAPIConfigureHomeSiteControllerRequest {
616
+ din: Din | undefined;
617
+ modbusNodeId: number;
618
+ config: WCVehicleToHomeConfig | undefined;
619
+ }
620
+ interface WCAPIConfigureHomeSiteControllerResponse {
621
+ config: WCVehicleToHomeConfig | undefined;
622
+ }
623
+ interface WCAPIConfigureOcppSettingsRequest {
624
+ settings: WCOcppSettings | undefined;
625
+ }
626
+ interface WCAPIConfigureOcppSettingsResponse {
627
+ settings: WCOcppSettings | undefined;
628
+ status: WCOcppStatus;
629
+ }
630
+ interface WCAPISetOcppSecurityParameterRequest {
631
+ securityParameterType: WCOcppSecurityParameterType;
632
+ securityParameter: Uint8Array;
633
+ }
634
+ interface WCAPISetOcppSecurityParameterResponse {
635
+ status: WCOcppStatus;
636
+ }
637
+ interface WCAPIGetOcppSecurityParameterRequest {
638
+ securityParameterType: WCOcppSecurityParameterType;
639
+ }
640
+ interface WCAPIGetOcppSecurityParameterResponse {
641
+ securityParameterType: WCOcppSecurityParameterType;
642
+ securityParameter: Uint8Array;
643
+ }
644
+ interface WCAPIGetOcppLocalAuthListRequest {}
645
+ interface WCAPIGetOcppLocalAuthListResponse {
646
+ authList: WCOcppAuthorizationList | undefined;
647
+ }
648
+ interface WCAPIConfigureCountryCodeSettingsRequest {
649
+ country: string;
650
+ }
651
+ interface WCAPIConfigureCountryCodeSettingsResponse {}
652
+ interface WCTargetChargePowerParams {
653
+ targetChargePowerW: number;
654
+ maxChargePowerW: number | undefined;
655
+ maxChargeCurrentA: number;
656
+ }
657
+ interface WCSmartChargingCommand {
658
+ ttlSeconds: number;
659
+ chargeDisallowed: boolean;
660
+ targetChargePowerParams: WCTargetChargePowerParams | undefined;
661
+ }
662
+ interface WCAPIPushSmartChargingCommandRequest {
663
+ command: WCSmartChargingCommand | undefined;
664
+ }
665
+ interface WCAPIPushSmartChargingCommandResponse {}
666
+ /**
667
+ * Field 1 (request) is a type from a separate, not-yet-modeled proto
668
+ * package; left unmodeled here.
669
+ */
670
+ interface WCAPIRegisterCommercialRequest {}
671
+ interface WCAPIRegisterCommercialResponse {
672
+ /**
673
+ * Field 2 (response) is a type from a separate, not-yet-modeled proto
674
+ * package; left unmodeled here.
675
+ */
676
+ failure: number;
677
+ }
678
+ interface WCAPIPushPowershareCommandRequest {
679
+ siteVehicleRequest: Uint8Array;
680
+ siteEvseRequest: Uint8Array;
681
+ inverterConfig: Uint8Array;
682
+ ttlSeconds: number;
683
+ }
684
+ interface WCAPIPushPowershareCommandResponse {
685
+ siteVehicleResponse: Uint8Array;
686
+ siteEvseResponse: Uint8Array;
687
+ }
688
+ interface WCMessages {
689
+ getVitalsRequest?: WCAPIGetVitalsRequest | undefined;
690
+ getVitalsResponse?: WCAPIGetVitalsResponse | undefined;
691
+ getLifetimeStatsRequest?: WCAPIGetLifetimeStatsRequest | undefined;
692
+ getLifetimeStatsResponse?: WCAPIGetLifetimeStatsResponse | undefined;
693
+ getConfigRequest?: WCAPIGetConfigRequest | undefined;
694
+ getConfigResponse?: WCAPIGetConfigResponse | undefined;
695
+ configureSettingsRequest?: WCAPIConfigureSettingsRequest | undefined;
696
+ configureSettingsResponse?: WCAPIConfigureSettingsResponse | undefined;
697
+ getSystemInfoRequest?: WCAPIGetSystemInfoRequest | undefined;
698
+ getSystemInfoResponse?: WCAPIGetSystemInfoResponse | undefined;
699
+ getLoadSharingNetworkStateRequest?: WCAPIGetLoadSharingNetworkStateRequest | undefined;
700
+ getLoadSharingNetworkStateResponse?: WCAPIGetLoadSharingNetworkStateResponse | undefined;
701
+ pushLoadSharingFollowerStateRequest?: WCAPIPushLoadSharingFollowerStateRequest | undefined;
702
+ pushLoadSharingFollowerStateResponse?: WCAPIPushLoadSharingFollowerStateResponse | undefined;
703
+ pushLoadSharingLeaderCommandRequest?: WCAPIPushLoadSharingLeaderCommandRequest | undefined;
704
+ pushLoadSharingLeaderCommandResponse?: WCAPIPushLoadSharingLeaderCommandResponse | undefined;
705
+ setLoadSharingNetworkOperationRequest?: WCAPISetLoadSharingNetworkOperationRequest | undefined;
706
+ setLoadSharingNetworkOperationResponse?: WCAPISetLoadSharingNetworkOperationResponse | undefined;
707
+ configureLoadSharingSettingsRequest?: WCAPIConfigureLoadSharingSettingsRequest | undefined;
708
+ configureLoadSharingSettingsResponse?: WCAPIConfigureLoadSharingSettingsResponse | undefined;
709
+ configurePpuSettingsRequest?: WCAPIConfigurePpuSettingsRequest | undefined;
710
+ configurePpuSettingsResponse?: WCAPIConfigurePpuSettingsResponse | undefined;
711
+ getPpuSettingsRequest?: WCAPIGetPpuSettingsRequest | undefined;
712
+ getPpuSettingsResponse?: WCAPIGetPpuSettingsResponse | undefined;
713
+ setProvisionalOperationalParamsRequest?: WCAPISetProvisionalOperationalParamsRequest | undefined;
714
+ setProvisionalOperationalParamsResponse?: WCAPISetProvisionalOperationalParamsResponse | undefined;
715
+ getProvisionalOperationalParamsRequest?: WCAPIGetProvisionalOperationalParamsRequest | undefined;
716
+ getProvisionalOperationalParamsResponse?: WCAPIGetProvisionalOperationalParamsResponse | undefined;
717
+ getAccessControlSettingsRequest?: WCAPIGetAccessControlSettingsRequest | undefined;
718
+ getAccessControlSettingsResponse?: WCAPIGetAccessControlSettingsResponse | undefined;
719
+ configureAccessControlSettingsRequest?: WCAPIConfigureAccessControlSettingsRequest | undefined;
720
+ configureAccessControlSettingsResponse?: WCAPIConfigureAccessControlSettingsResponse | undefined;
721
+ getRecentVehiclesRequest?: WCAPIGetRecentVehiclesRequest | undefined;
722
+ getRecentVehiclesResponse?: WCAPIGetRecentVehiclesResponse | undefined;
723
+ pushPpuAuthorizationStateRequest?: WCAPIPushPpuAuthorizationStateRequest | undefined;
724
+ pushPpuAuthorizationStateResponse?: WCAPIPushPpuAuthorizationStateResponse | undefined;
725
+ configureChargeScheduleRequest?: WCAPIConfigureChargeScheduleRequest | undefined;
726
+ configureChargeScheduleResponse?: WCAPIConfigureChargeScheduleResponse | undefined;
727
+ pushChargeCommandRequest?: WCAPIPushChargeCommandRequest | undefined;
728
+ pushChargeCommandResponse?: WCAPIPushChargeCommandResponse | undefined;
729
+ configureThirdPartyVehicleModeRequest?: WCAPIConfigureThirdPartyVehicleModeRequest | undefined;
730
+ configureThirdPartyVehicleModeResponse?: WCAPIConfigureThirdPartyVehicleModeResponse | undefined;
731
+ configureHomeSiteControllerRequest?: WCAPIConfigureHomeSiteControllerRequest | undefined;
732
+ configureHomeSiteControllerResponse?: WCAPIConfigureHomeSiteControllerResponse | undefined;
733
+ configureOcppSettingsRequest?: WCAPIConfigureOcppSettingsRequest | undefined;
734
+ configureOcppSettingsResponse?: WCAPIConfigureOcppSettingsResponse | undefined;
735
+ setOcppSecurityParameterRequest?: WCAPISetOcppSecurityParameterRequest | undefined;
736
+ setOcppSecurityParameterResponse?: WCAPISetOcppSecurityParameterResponse | undefined;
737
+ getOcppSecurityParameterRequest?: WCAPIGetOcppSecurityParameterRequest | undefined;
738
+ getOcppSecurityParameterResponse?: WCAPIGetOcppSecurityParameterResponse | undefined;
739
+ configureOperationalSettingsRequest?: WCAPIConfigureOperationalSettingsRequest | undefined;
740
+ configureOperationalSettingsResponse?: WCAPIConfigureOperationalSettingsResponse | undefined;
741
+ getOperationalSettingsRequest?: WCAPIGetOperationalSettingsRequest | undefined;
742
+ getOperationalSettingsResponse?: WCAPIGetOperationalSettingsResponse | undefined;
743
+ configureCountryCodeSettingsRequest?: WCAPIConfigureCountryCodeSettingsRequest | undefined;
744
+ configureCountryCodeSettingsResponse?: WCAPIConfigureCountryCodeSettingsResponse | undefined;
745
+ pushLoadSharingConfigRequest?: WCAPIPushLoadSharingConfigRequest | undefined;
746
+ pushLoadSharingConfigResponse?: WCAPIPushLoadSharingConfigResponse | undefined;
747
+ pushSmartChargingCommandRequest?: WCAPIPushSmartChargingCommandRequest | undefined;
748
+ pushSmartChargingCommandResponse?: WCAPIPushSmartChargingCommandResponse | undefined;
749
+ registerCommercialRequest?: WCAPIRegisterCommercialRequest | undefined;
750
+ registerCommercialResponse?: WCAPIRegisterCommercialResponse | undefined;
751
+ getOcppLocalAuthListRequest?: WCAPIGetOcppLocalAuthListRequest | undefined;
752
+ getOcppLocalAuthListResponse?: WCAPIGetOcppLocalAuthListResponse | undefined;
753
+ pushPowershareCommandRequest?: WCAPIPushPowershareCommandRequest | undefined;
754
+ pushPowershareCommandResponse?: WCAPIPushPowershareCommandResponse | undefined;
755
+ }
756
+ declare const WCFaultStatusLatchedAlert: MessageFns<WCFaultStatusLatchedAlert>;
757
+ declare const WCVitals: MessageFns<WCVitals>;
758
+ declare const WCLifetimeStats: MessageFns<WCLifetimeStats>;
759
+ declare const WCLoadSharingFixedLimitConfig: MessageFns<WCLoadSharingFixedLimitConfig>;
760
+ declare const WCLoadSharingConductorLimitConfig: MessageFns<WCLoadSharingConductorLimitConfig>;
761
+ declare const WCLoadSharingSettings: MessageFns<WCLoadSharingSettings>;
762
+ declare const WCLoadSharingLimits: MessageFns<WCLoadSharingLimits>;
763
+ declare const WCLoadSharingNetworkStatus: MessageFns<WCLoadSharingNetworkStatus>;
764
+ declare const WCLoadSharingConfig: MessageFns<WCLoadSharingConfig>;
765
+ declare const WCPpuConfig: MessageFns<WCPpuConfig>;
766
+ declare const WCOperationalSettingsConfig: MessageFns<WCOperationalSettingsConfig>;
767
+ declare const WCMeterInterface: MessageFns<WCMeterInterface>;
768
+ declare const WCDryContactConfig: MessageFns<WCDryContactConfig>;
769
+ declare const WCTimeZoneTransition: MessageFns<WCTimeZoneTransition>;
770
+ declare const WCTimeZoneInfo: MessageFns<WCTimeZoneInfo>;
771
+ declare const WCTimeZone: MessageFns<WCTimeZone>;
772
+ declare const WCMIDConfig: MessageFns<WCMIDConfig>;
773
+ declare const WCSettings: MessageFns<WCSettings>;
774
+ declare const WCGenealogy: MessageFns<WCGenealogy>;
775
+ declare const ComplianceCRC32: MessageFns<ComplianceCRC32>;
776
+ declare const WCLoadSharingFollowerState: MessageFns<WCLoadSharingFollowerState>;
777
+ declare const WCLoadSharingLeaderCommand: MessageFns<WCLoadSharingLeaderCommand>;
778
+ declare const WCLoadSharingLeaderState: MessageFns<WCLoadSharingLeaderState>;
779
+ declare const WCLoadSharingDeviceEntry: MessageFns<WCLoadSharingDeviceEntry>;
780
+ declare const WCLoadSharingNetworkState: MessageFns<WCLoadSharingNetworkState>;
781
+ declare const WCProvisionalOperationalParams: MessageFns<WCProvisionalOperationalParams>;
782
+ declare const WCAccessControlEntry: MessageFns<WCAccessControlEntry>;
783
+ declare const WCChargeScheduleTimePeriod: MessageFns<WCChargeScheduleTimePeriod>;
784
+ declare const WCChargeScheduleDayTimePeriods: MessageFns<WCChargeScheduleDayTimePeriods>;
785
+ declare const WCChargeSchedule: MessageFns<WCChargeSchedule>;
786
+ declare const WCChargeScheduleDelay: MessageFns<WCChargeScheduleDelay>;
787
+ declare const WCChargeScheduleConfig: MessageFns<WCChargeScheduleConfig>;
788
+ declare const WCChargeScheduleConfigStatus: MessageFns<WCChargeScheduleConfigStatus>;
789
+ declare const WCChargeCommand: MessageFns<WCChargeCommand>;
790
+ declare const WCOcppSettings: MessageFns<WCOcppSettings>;
791
+ declare const WCOcppAuthorizationData: MessageFns<WCOcppAuthorizationData>;
792
+ declare const WCOcppAuthorizationList: MessageFns<WCOcppAuthorizationList>;
793
+ declare const WCVehicleToHomeConfig: MessageFns<WCVehicleToHomeConfig>;
794
+ declare const WCAPIGetVitalsRequest: MessageFns<WCAPIGetVitalsRequest>;
795
+ declare const WCAPIGetVitalsResponse: MessageFns<WCAPIGetVitalsResponse>;
796
+ declare const WCAPIGetLifetimeStatsRequest: MessageFns<WCAPIGetLifetimeStatsRequest>;
797
+ declare const WCAPIGetLifetimeStatsResponse: MessageFns<WCAPIGetLifetimeStatsResponse>;
798
+ declare const WCAPIGetConfigRequest: MessageFns<WCAPIGetConfigRequest>;
799
+ declare const WCAPIGetConfigResponse: MessageFns<WCAPIGetConfigResponse>;
800
+ declare const WCAPIConfigureSettingsRequest: MessageFns<WCAPIConfigureSettingsRequest>;
801
+ declare const WCAPIConfigureSettingsResponse: MessageFns<WCAPIConfigureSettingsResponse>;
802
+ declare const WCAPIGetSystemInfoRequest: MessageFns<WCAPIGetSystemInfoRequest>;
803
+ declare const WCAPIGetSystemInfoResponse: MessageFns<WCAPIGetSystemInfoResponse>;
804
+ declare const WCAPIGetLoadSharingNetworkStateRequest: MessageFns<WCAPIGetLoadSharingNetworkStateRequest>;
805
+ declare const WCAPIGetLoadSharingNetworkStateResponse: MessageFns<WCAPIGetLoadSharingNetworkStateResponse>;
806
+ declare const WCAPIPushLoadSharingFollowerStateRequest: MessageFns<WCAPIPushLoadSharingFollowerStateRequest>;
807
+ declare const WCAPIPushLoadSharingFollowerStateResponse: MessageFns<WCAPIPushLoadSharingFollowerStateResponse>;
808
+ declare const WCAPIPushLoadSharingLeaderCommandRequest: MessageFns<WCAPIPushLoadSharingLeaderCommandRequest>;
809
+ declare const WCAPIPushLoadSharingLeaderCommandResponse: MessageFns<WCAPIPushLoadSharingLeaderCommandResponse>;
810
+ declare const WCAPISetLoadSharingNetworkOperationRequest: MessageFns<WCAPISetLoadSharingNetworkOperationRequest>;
811
+ declare const WCAPISetLoadSharingNetworkOperationResponse: MessageFns<WCAPISetLoadSharingNetworkOperationResponse>;
812
+ declare const WCAPIConfigureLoadSharingSettingsRequest: MessageFns<WCAPIConfigureLoadSharingSettingsRequest>;
813
+ declare const WCAPIConfigureLoadSharingSettingsResponse: MessageFns<WCAPIConfigureLoadSharingSettingsResponse>;
814
+ declare const WCAPIPushLoadSharingConfigRequest: MessageFns<WCAPIPushLoadSharingConfigRequest>;
815
+ declare const WCAPIPushLoadSharingConfigResponse: MessageFns<WCAPIPushLoadSharingConfigResponse>;
816
+ declare const WCAPIConfigurePpuSettingsRequest: MessageFns<WCAPIConfigurePpuSettingsRequest>;
817
+ declare const WCAPIConfigurePpuSettingsResponse: MessageFns<WCAPIConfigurePpuSettingsResponse>;
818
+ declare const WCAPIGetPpuSettingsRequest: MessageFns<WCAPIGetPpuSettingsRequest>;
819
+ declare const WCAPIGetPpuSettingsResponse: MessageFns<WCAPIGetPpuSettingsResponse>;
820
+ declare const WCAPIConfigureOperationalSettingsRequest: MessageFns<WCAPIConfigureOperationalSettingsRequest>;
821
+ declare const WCAPIConfigureOperationalSettingsResponse: MessageFns<WCAPIConfigureOperationalSettingsResponse>;
822
+ declare const WCAPIGetOperationalSettingsRequest: MessageFns<WCAPIGetOperationalSettingsRequest>;
823
+ declare const WCAPIGetOperationalSettingsResponse: MessageFns<WCAPIGetOperationalSettingsResponse>;
824
+ declare const WCAPISetProvisionalOperationalParamsRequest: MessageFns<WCAPISetProvisionalOperationalParamsRequest>;
825
+ declare const WCAPISetProvisionalOperationalParamsResponse: MessageFns<WCAPISetProvisionalOperationalParamsResponse>;
826
+ declare const WCAPIGetProvisionalOperationalParamsRequest: MessageFns<WCAPIGetProvisionalOperationalParamsRequest>;
827
+ declare const WCAPIGetProvisionalOperationalParamsResponse: MessageFns<WCAPIGetProvisionalOperationalParamsResponse>;
828
+ declare const WCAPIGetAccessControlSettingsRequest: MessageFns<WCAPIGetAccessControlSettingsRequest>;
829
+ declare const WCAPIGetAccessControlSettingsResponse: MessageFns<WCAPIGetAccessControlSettingsResponse>;
830
+ declare const WCAPIConfigureAccessControlSettingsRequest: MessageFns<WCAPIConfigureAccessControlSettingsRequest>;
831
+ declare const WCAPIConfigureAccessControlSettingsResponse: MessageFns<WCAPIConfigureAccessControlSettingsResponse>;
832
+ declare const WCAPIGetRecentVehiclesRequest: MessageFns<WCAPIGetRecentVehiclesRequest>;
833
+ declare const WCAPIGetRecentVehiclesResponse: MessageFns<WCAPIGetRecentVehiclesResponse>;
834
+ declare const WCAPIPushPpuAuthorizationStateRequest: MessageFns<WCAPIPushPpuAuthorizationStateRequest>;
835
+ declare const WCAPIPushPpuAuthorizationStateResponse: MessageFns<WCAPIPushPpuAuthorizationStateResponse>;
836
+ declare const WCAPIConfigureChargeScheduleRequest: MessageFns<WCAPIConfigureChargeScheduleRequest>;
837
+ declare const WCAPIConfigureChargeScheduleResponse: MessageFns<WCAPIConfigureChargeScheduleResponse>;
838
+ declare const WCAPIConfigureThirdPartyVehicleModeRequest: MessageFns<WCAPIConfigureThirdPartyVehicleModeRequest>;
839
+ declare const WCAPIConfigureThirdPartyVehicleModeResponse: MessageFns<WCAPIConfigureThirdPartyVehicleModeResponse>;
840
+ declare const WCAPIPushChargeCommandRequest: MessageFns<WCAPIPushChargeCommandRequest>;
841
+ declare const WCAPIPushChargeCommandResponse: MessageFns<WCAPIPushChargeCommandResponse>;
842
+ declare const WCAPIConfigureHomeSiteControllerRequest: MessageFns<WCAPIConfigureHomeSiteControllerRequest>;
843
+ declare const WCAPIConfigureHomeSiteControllerResponse: MessageFns<WCAPIConfigureHomeSiteControllerResponse>;
844
+ declare const WCAPIConfigureOcppSettingsRequest: MessageFns<WCAPIConfigureOcppSettingsRequest>;
845
+ declare const WCAPIConfigureOcppSettingsResponse: MessageFns<WCAPIConfigureOcppSettingsResponse>;
846
+ declare const WCAPISetOcppSecurityParameterRequest: MessageFns<WCAPISetOcppSecurityParameterRequest>;
847
+ declare const WCAPISetOcppSecurityParameterResponse: MessageFns<WCAPISetOcppSecurityParameterResponse>;
848
+ declare const WCAPIGetOcppSecurityParameterRequest: MessageFns<WCAPIGetOcppSecurityParameterRequest>;
849
+ declare const WCAPIGetOcppSecurityParameterResponse: MessageFns<WCAPIGetOcppSecurityParameterResponse>;
850
+ declare const WCAPIGetOcppLocalAuthListRequest: MessageFns<WCAPIGetOcppLocalAuthListRequest>;
851
+ declare const WCAPIGetOcppLocalAuthListResponse: MessageFns<WCAPIGetOcppLocalAuthListResponse>;
852
+ declare const WCAPIConfigureCountryCodeSettingsRequest: MessageFns<WCAPIConfigureCountryCodeSettingsRequest>;
853
+ declare const WCAPIConfigureCountryCodeSettingsResponse: MessageFns<WCAPIConfigureCountryCodeSettingsResponse>;
854
+ declare const WCTargetChargePowerParams: MessageFns<WCTargetChargePowerParams>;
855
+ declare const WCSmartChargingCommand: MessageFns<WCSmartChargingCommand>;
856
+ declare const WCAPIPushSmartChargingCommandRequest: MessageFns<WCAPIPushSmartChargingCommandRequest>;
857
+ declare const WCAPIPushSmartChargingCommandResponse: MessageFns<WCAPIPushSmartChargingCommandResponse>;
858
+ declare const WCAPIRegisterCommercialRequest: MessageFns<WCAPIRegisterCommercialRequest>;
859
+ declare const WCAPIRegisterCommercialResponse: MessageFns<WCAPIRegisterCommercialResponse>;
860
+ declare const WCAPIPushPowershareCommandRequest: MessageFns<WCAPIPushPowershareCommandRequest>;
861
+ declare const WCAPIPushPowershareCommandResponse: MessageFns<WCAPIPushPowershareCommandResponse>;
168
862
  declare const WCMessages: MessageFns<WCMessages>;
169
863
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
170
864
  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>;
@@ -179,4 +873,4 @@ interface MessageFns<T> {
179
873
  fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
180
874
  }
181
875
  //#endregion
182
- export { DeepPartial, Exact, MessageFns, WCChargeScheduleChargingStatus, WCChargeScheduleConfigError, WCChargeScheduleDay, WCChargeScheduleError, WCConfigureAccessControlOperation, WCEvseNotReadyReason, WCFaultStatusState, WCGroundMonitorMode, WCLoadSharingNetworkChargingInhibitor, WCMessages, WCOcppStatus, WCPpuSessionReportingMode, WCTeslaVehicleDriveType, WCTeslaVehicleModel, WCThirdPartyVehicleMode, protobufPackage, wCChargeScheduleChargingStatusFromJSON, wCChargeScheduleChargingStatusToJSON, wCChargeScheduleConfigErrorFromJSON, wCChargeScheduleConfigErrorToJSON, wCChargeScheduleDayFromJSON, wCChargeScheduleDayToJSON, wCChargeScheduleErrorFromJSON, wCChargeScheduleErrorToJSON, wCConfigureAccessControlOperationFromJSON, wCConfigureAccessControlOperationToJSON, wCEvseNotReadyReasonFromJSON, wCEvseNotReadyReasonToJSON, wCFaultStatusStateFromJSON, wCFaultStatusStateToJSON, wCGroundMonitorModeFromJSON, wCGroundMonitorModeToJSON, wCLoadSharingNetworkChargingInhibitorFromJSON, wCLoadSharingNetworkChargingInhibitorToJSON, wCOcppStatusFromJSON, wCOcppStatusToJSON, wCPpuSessionReportingModeFromJSON, wCPpuSessionReportingModeToJSON, wCTeslaVehicleDriveTypeFromJSON, wCTeslaVehicleDriveTypeToJSON, wCTeslaVehicleModelFromJSON, wCTeslaVehicleModelToJSON, wCThirdPartyVehicleModeFromJSON, wCThirdPartyVehicleModeToJSON };
876
+ export { ComplianceCRC32, DeepPartial, Exact, MessageFns, WCAPIConfigureAccessControlSettingsRequest, WCAPIConfigureAccessControlSettingsResponse, WCAPIConfigureChargeScheduleRequest, WCAPIConfigureChargeScheduleResponse, WCAPIConfigureCountryCodeSettingsRequest, WCAPIConfigureCountryCodeSettingsResponse, WCAPIConfigureHomeSiteControllerRequest, WCAPIConfigureHomeSiteControllerResponse, WCAPIConfigureLoadSharingSettingsRequest, WCAPIConfigureLoadSharingSettingsResponse, WCAPIConfigureOcppSettingsRequest, WCAPIConfigureOcppSettingsResponse, WCAPIConfigureOperationalSettingsRequest, WCAPIConfigureOperationalSettingsResponse, WCAPIConfigurePpuSettingsRequest, WCAPIConfigurePpuSettingsResponse, WCAPIConfigureSettingsRequest, WCAPIConfigureSettingsResponse, WCAPIConfigureThirdPartyVehicleModeRequest, WCAPIConfigureThirdPartyVehicleModeResponse, WCAPIGetAccessControlSettingsRequest, WCAPIGetAccessControlSettingsResponse, WCAPIGetConfigRequest, WCAPIGetConfigResponse, WCAPIGetLifetimeStatsRequest, WCAPIGetLifetimeStatsResponse, WCAPIGetLoadSharingNetworkStateRequest, WCAPIGetLoadSharingNetworkStateResponse, WCAPIGetOcppLocalAuthListRequest, WCAPIGetOcppLocalAuthListResponse, WCAPIGetOcppSecurityParameterRequest, WCAPIGetOcppSecurityParameterResponse, WCAPIGetOperationalSettingsRequest, WCAPIGetOperationalSettingsResponse, WCAPIGetPpuSettingsRequest, WCAPIGetPpuSettingsResponse, WCAPIGetProvisionalOperationalParamsRequest, WCAPIGetProvisionalOperationalParamsResponse, WCAPIGetRecentVehiclesRequest, WCAPIGetRecentVehiclesResponse, WCAPIGetSystemInfoRequest, WCAPIGetSystemInfoResponse, WCAPIGetVitalsRequest, WCAPIGetVitalsResponse, WCAPIPushChargeCommandRequest, WCAPIPushChargeCommandResponse, WCAPIPushLoadSharingConfigRequest, WCAPIPushLoadSharingConfigResponse, WCAPIPushLoadSharingFollowerStateRequest, WCAPIPushLoadSharingFollowerStateResponse, WCAPIPushLoadSharingLeaderCommandRequest, WCAPIPushLoadSharingLeaderCommandResponse, WCAPIPushPowershareCommandRequest, WCAPIPushPowershareCommandResponse, WCAPIPushPpuAuthorizationStateRequest, WCAPIPushPpuAuthorizationStateResponse, WCAPIPushSmartChargingCommandRequest, WCAPIPushSmartChargingCommandResponse, WCAPIRegisterCommercialRequest, WCAPIRegisterCommercialResponse, WCAPISetLoadSharingNetworkOperationRequest, WCAPISetLoadSharingNetworkOperationResponse, WCAPISetOcppSecurityParameterRequest, WCAPISetOcppSecurityParameterResponse, WCAPISetProvisionalOperationalParamsRequest, WCAPISetProvisionalOperationalParamsResponse, WCAccessControlEntry, WCChargeCommand, WCChargeSchedule, WCChargeScheduleChargingStatus, WCChargeScheduleConfig, WCChargeScheduleConfigError, WCChargeScheduleConfigStatus, WCChargeScheduleDay, WCChargeScheduleDayTimePeriods, WCChargeScheduleDelay, WCChargeScheduleError, WCChargeScheduleTimePeriod, WCChargingCommand, WCConfigureAccessControlOperation, WCDryContactConfig, WCDryContactControlState, WCDryContactDefaultState, WCEvseNotReadyReason, WCFaultStatusLatchedAlert, WCFaultStatusState, WCGenealogy, WCGroundMonitorMode, WCLifetimeStats, WCLoadSharingConductorLimitConfig, WCLoadSharingConfig, WCLoadSharingDeviceEntry, WCLoadSharingFixedLimitConfig, WCLoadSharingFollowerState, WCLoadSharingLeaderCommand, WCLoadSharingLeaderState, WCLoadSharingLimits, WCLoadSharingNetworkChargingInhibitor, WCLoadSharingNetworkState, WCLoadSharingNetworkStatus, WCLoadSharingSettings, WCMIDConfig, WCMessages, WCMeterInterface, WCOcppAuthorizationData, WCOcppAuthorizationList, WCOcppScope, WCOcppSecurityParameterType, WCOcppSecurityProfile, WCOcppSettings, WCOcppStatus, WCOcppVersion, WCOperationalMode, WCOperationalSettingsConfig, WCPowershareSessionState, WCPpuConfig, WCPpuSessionReportingMode, WCProvisionalOperationalParams, WCSettings, WCSmartChargingCommand, WCSmartChargingReason, WCTargetChargePowerParams, WCTeslaVehicleDriveType, WCTeslaVehicleModel, WCThirdPartyVehicleMode, WCTimeSource, WCTimeZone, WCTimeZoneInfo, WCTimeZoneTransition, WCVehicleToHomeConfig, WCVitals, protobufPackage, wCChargeScheduleChargingStatusFromJSON, wCChargeScheduleChargingStatusToJSON, wCChargeScheduleConfigErrorFromJSON, wCChargeScheduleConfigErrorToJSON, wCChargeScheduleDayFromJSON, wCChargeScheduleDayToJSON, wCChargeScheduleErrorFromJSON, wCChargeScheduleErrorToJSON, wCChargingCommandFromJSON, wCChargingCommandToJSON, wCConfigureAccessControlOperationFromJSON, wCConfigureAccessControlOperationToJSON, wCDryContactControlStateFromJSON, wCDryContactControlStateToJSON, wCDryContactDefaultStateFromJSON, wCDryContactDefaultStateToJSON, wCEvseNotReadyReasonFromJSON, wCEvseNotReadyReasonToJSON, wCFaultStatusStateFromJSON, wCFaultStatusStateToJSON, wCGroundMonitorModeFromJSON, wCGroundMonitorModeToJSON, wCLoadSharingNetworkChargingInhibitorFromJSON, wCLoadSharingNetworkChargingInhibitorToJSON, wCOcppScopeFromJSON, wCOcppScopeToJSON, wCOcppSecurityParameterTypeFromJSON, wCOcppSecurityParameterTypeToJSON, wCOcppSecurityProfileFromJSON, wCOcppSecurityProfileToJSON, wCOcppStatusFromJSON, wCOcppStatusToJSON, wCOcppVersionFromJSON, wCOcppVersionToJSON, wCOperationalModeFromJSON, wCOperationalModeToJSON, wCPowershareSessionStateFromJSON, wCPowershareSessionStateToJSON, wCPpuSessionReportingModeFromJSON, wCPpuSessionReportingModeToJSON, wCSmartChargingReasonFromJSON, wCSmartChargingReasonToJSON, wCTeslaVehicleDriveTypeFromJSON, wCTeslaVehicleDriveTypeToJSON, wCTeslaVehicleModelFromJSON, wCTeslaVehicleModelToJSON, wCThirdPartyVehicleModeFromJSON, wCThirdPartyVehicleModeToJSON, wCTimeSourceFromJSON, wCTimeSourceToJSON };