ocpp-messages 0.1.0 → 0.1.1

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 (2) hide show
  1. package/package.json +1 -1
  2. package/v1.6/index.d.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocpp-messages",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript definitions for Open Charge Point Protocol (OCPP)",
5
5
  "main": "",
6
6
  "author": "Roman Morawek, embyt GmbH",
package/v1.6/index.d.ts CHANGED
@@ -126,7 +126,7 @@ export type ChargePointAction =
126
126
  | "StatusNotification"
127
127
  | "StopTransaction";
128
128
 
129
- export type ChargePointRequests =
129
+ export type ChargePointRequest =
130
130
  | AuthorizeRequest
131
131
  | BootNotificationRequest
132
132
  | DataTransferRequest
@@ -138,7 +138,7 @@ export type ChargePointRequests =
138
138
  | StatusNotificationRequest
139
139
  | StopTransactionRequest;
140
140
 
141
- export type ChargePointResponses =
141
+ export type ChargePointResponse =
142
142
  | AuthorizeResponse
143
143
  | BootNotificationResponse
144
144
  | DataTransferResponse
@@ -171,7 +171,7 @@ export type CentralSystemAction =
171
171
  | "UnlockConnector"
172
172
  | "UpdateFirmware";
173
173
 
174
- export type CentralSystemRequests =
174
+ export type CentralSystemRequest =
175
175
  | CancelReservationRequest
176
176
  | ChangeAvailabilityRequest
177
177
  | ChangeConfigurationRequest
@@ -192,7 +192,7 @@ export type CentralSystemRequests =
192
192
  | UpdateFirmwareRequest
193
193
  | SetChargingProfileRequest;
194
194
 
195
- export type CentralSystemResponses =
195
+ export type CentralSystemResponse =
196
196
  | CancelReservationResponse
197
197
  | ChangeAvailabilityResponse
198
198
  | ChangeConfigurationResponse