diff --git a/json2esm.js b/json2esm.js index 5015f1c..c8704d9 100644 --- a/json2esm.js +++ b/json2esm.js @@ -59,7 +59,7 @@ const output_dir_abspath = resolve(process.cwd(), output_dir_path); } const output_file_abspath = join(output_dir_abspath, `${schema_name}.ts`); - const output_file_data = `export const ${schema_name} = ${JSON.stringify(schema, null, 2)};`; + const output_file_data = `export const ${schema_name}: any = ${JSON.stringify(schema, null, 2)};`; await writeFile(output_file_abspath, output_file_data, 'utf8'); diff --git a/json2types.js b/json2types.js index 3aa7504..964aa3a 100644 --- a/json2types.js +++ b/json2types.js @@ -49,7 +49,7 @@ const output_dir_abspath = resolve(process.cwd(), output_dir_path); const output_file_data = await compile(input_schema, {}); - const output_file_abspath = join(output_dir_abspath, `${schema_name}.d.ts`); + const output_file_abspath = join(output_dir_abspath, `${schema_name}.ts`); await writeFile(output_file_abspath, output_file_data, 'utf8'); diff --git a/src/ocpp16/schemas/AuthorizeRequest.ts b/src/ocpp16/schemas/AuthorizeRequest.ts index cfb4ef7..a952cde 100644 --- a/src/ocpp16/schemas/AuthorizeRequest.ts +++ b/src/ocpp16/schemas/AuthorizeRequest.ts @@ -1,4 +1,4 @@ -export const AuthorizeRequest = { +export const AuthorizeRequest: any = { "title": "AuthorizeRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/AuthorizeResponse.ts b/src/ocpp16/schemas/AuthorizeResponse.ts index bd53f53..8504ba1 100644 --- a/src/ocpp16/schemas/AuthorizeResponse.ts +++ b/src/ocpp16/schemas/AuthorizeResponse.ts @@ -1,4 +1,4 @@ -export const AuthorizeResponse = { +export const AuthorizeResponse: any = { "title": "AuthorizeResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/BootNotificationRequest.ts b/src/ocpp16/schemas/BootNotificationRequest.ts index a92ea91..43c9383 100644 --- a/src/ocpp16/schemas/BootNotificationRequest.ts +++ b/src/ocpp16/schemas/BootNotificationRequest.ts @@ -1,4 +1,4 @@ -export const BootNotificationRequest = { +export const BootNotificationRequest: any = { "title": "BootNotificationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/BootNotificationResponse.ts b/src/ocpp16/schemas/BootNotificationResponse.ts index 659581a..e2011be 100644 --- a/src/ocpp16/schemas/BootNotificationResponse.ts +++ b/src/ocpp16/schemas/BootNotificationResponse.ts @@ -1,4 +1,4 @@ -export const BootNotificationResponse = { +export const BootNotificationResponse: any = { "title": "BootNotificationResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/CancelReservationRequest.ts b/src/ocpp16/schemas/CancelReservationRequest.ts index 84c1ab2..1fb42f6 100644 --- a/src/ocpp16/schemas/CancelReservationRequest.ts +++ b/src/ocpp16/schemas/CancelReservationRequest.ts @@ -1,4 +1,4 @@ -export const CancelReservationRequest = { +export const CancelReservationRequest: any = { "title": "CancelReservationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/CancelReservationResponse.ts b/src/ocpp16/schemas/CancelReservationResponse.ts index e164d07..4af90a6 100644 --- a/src/ocpp16/schemas/CancelReservationResponse.ts +++ b/src/ocpp16/schemas/CancelReservationResponse.ts @@ -1,4 +1,4 @@ -export const CancelReservationResponse = { +export const CancelReservationResponse: any = { "title": "CancelReservationResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ChangeAvailabilityRequest.ts b/src/ocpp16/schemas/ChangeAvailabilityRequest.ts index 0a4d7cb..ff75c58 100644 --- a/src/ocpp16/schemas/ChangeAvailabilityRequest.ts +++ b/src/ocpp16/schemas/ChangeAvailabilityRequest.ts @@ -1,4 +1,4 @@ -export const ChangeAvailabilityRequest = { +export const ChangeAvailabilityRequest: any = { "title": "ChangeAvailabilityRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ChangeAvailabilityResponse.ts b/src/ocpp16/schemas/ChangeAvailabilityResponse.ts index 959e760..ebf97ed 100644 --- a/src/ocpp16/schemas/ChangeAvailabilityResponse.ts +++ b/src/ocpp16/schemas/ChangeAvailabilityResponse.ts @@ -1,4 +1,4 @@ -export const ChangeAvailabilityResponse = { +export const ChangeAvailabilityResponse: any = { "title": "ChangeAvailabilityResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ChangeConfigurationRequest.ts b/src/ocpp16/schemas/ChangeConfigurationRequest.ts index 286b178..758a925 100644 --- a/src/ocpp16/schemas/ChangeConfigurationRequest.ts +++ b/src/ocpp16/schemas/ChangeConfigurationRequest.ts @@ -1,4 +1,4 @@ -export const ChangeConfigurationRequest = { +export const ChangeConfigurationRequest: any = { "title": "ChangeConfigurationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ChangeConfigurationResponse.ts b/src/ocpp16/schemas/ChangeConfigurationResponse.ts index 539f22a..795ae70 100644 --- a/src/ocpp16/schemas/ChangeConfigurationResponse.ts +++ b/src/ocpp16/schemas/ChangeConfigurationResponse.ts @@ -1,4 +1,4 @@ -export const ChangeConfigurationResponse = { +export const ChangeConfigurationResponse: any = { "title": "ChangeConfigurationResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ClearCacheRequest.ts b/src/ocpp16/schemas/ClearCacheRequest.ts index 909c633..d462c7c 100644 --- a/src/ocpp16/schemas/ClearCacheRequest.ts +++ b/src/ocpp16/schemas/ClearCacheRequest.ts @@ -1,4 +1,4 @@ -export const ClearCacheRequest = { +export const ClearCacheRequest: any = { "title": "ClearCacheRequest", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/ClearCacheResponse.ts b/src/ocpp16/schemas/ClearCacheResponse.ts index ea7d281..0b780aa 100644 --- a/src/ocpp16/schemas/ClearCacheResponse.ts +++ b/src/ocpp16/schemas/ClearCacheResponse.ts @@ -1,4 +1,4 @@ -export const ClearCacheResponse = { +export const ClearCacheResponse: any = { "title": "ClearCacheResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ClearChargingProfileRequest.ts b/src/ocpp16/schemas/ClearChargingProfileRequest.ts index 1698915..0fae195 100644 --- a/src/ocpp16/schemas/ClearChargingProfileRequest.ts +++ b/src/ocpp16/schemas/ClearChargingProfileRequest.ts @@ -1,4 +1,4 @@ -export const ClearChargingProfileRequest = { +export const ClearChargingProfileRequest: any = { "title": "ClearChargingProfileRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ClearChargingProfileResponse.ts b/src/ocpp16/schemas/ClearChargingProfileResponse.ts index 184d646..549d9b1 100644 --- a/src/ocpp16/schemas/ClearChargingProfileResponse.ts +++ b/src/ocpp16/schemas/ClearChargingProfileResponse.ts @@ -1,4 +1,4 @@ -export const ClearChargingProfileResponse = { +export const ClearChargingProfileResponse: any = { "title": "ClearChargingProfileResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/DataTransferRequest.ts b/src/ocpp16/schemas/DataTransferRequest.ts index aa40188..ff69eb5 100644 --- a/src/ocpp16/schemas/DataTransferRequest.ts +++ b/src/ocpp16/schemas/DataTransferRequest.ts @@ -1,4 +1,4 @@ -export const DataTransferRequest = { +export const DataTransferRequest: any = { "title": "DataTransferRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/DataTransferResponse.ts b/src/ocpp16/schemas/DataTransferResponse.ts index ae34453..e44511c 100644 --- a/src/ocpp16/schemas/DataTransferResponse.ts +++ b/src/ocpp16/schemas/DataTransferResponse.ts @@ -1,4 +1,4 @@ -export const DataTransferResponse = { +export const DataTransferResponse: any = { "title": "DataTransferResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/DiagnosticsStatusNotificationRequest.ts b/src/ocpp16/schemas/DiagnosticsStatusNotificationRequest.ts index e5bdf4d..d7a1f58 100644 --- a/src/ocpp16/schemas/DiagnosticsStatusNotificationRequest.ts +++ b/src/ocpp16/schemas/DiagnosticsStatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const DiagnosticsStatusNotificationRequest = { +export const DiagnosticsStatusNotificationRequest: any = { "title": "DiagnosticsStatusNotificationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/DiagnosticsStatusNotificationResponse.ts b/src/ocpp16/schemas/DiagnosticsStatusNotificationResponse.ts index b2e88d0..2f31cf7 100644 --- a/src/ocpp16/schemas/DiagnosticsStatusNotificationResponse.ts +++ b/src/ocpp16/schemas/DiagnosticsStatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const DiagnosticsStatusNotificationResponse = { +export const DiagnosticsStatusNotificationResponse: any = { "title": "DiagnosticsStatusNotificationResponse", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/FirmwareStatusNotificationRequest.ts b/src/ocpp16/schemas/FirmwareStatusNotificationRequest.ts index 65f35fa..d037a3c 100644 --- a/src/ocpp16/schemas/FirmwareStatusNotificationRequest.ts +++ b/src/ocpp16/schemas/FirmwareStatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const FirmwareStatusNotificationRequest = { +export const FirmwareStatusNotificationRequest: any = { "title": "FirmwareStatusNotificationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/FirmwareStatusNotificationResponse.ts b/src/ocpp16/schemas/FirmwareStatusNotificationResponse.ts index 7c01b16..20bb4ac 100644 --- a/src/ocpp16/schemas/FirmwareStatusNotificationResponse.ts +++ b/src/ocpp16/schemas/FirmwareStatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const FirmwareStatusNotificationResponse = { +export const FirmwareStatusNotificationResponse: any = { "title": "FirmwareStatusNotificationResponse", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/GetCompositeScheduleRequest.ts b/src/ocpp16/schemas/GetCompositeScheduleRequest.ts index e906ebb..6d769fc 100644 --- a/src/ocpp16/schemas/GetCompositeScheduleRequest.ts +++ b/src/ocpp16/schemas/GetCompositeScheduleRequest.ts @@ -1,4 +1,4 @@ -export const GetCompositeScheduleRequest = { +export const GetCompositeScheduleRequest: any = { "title": "GetCompositeScheduleRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetCompositeScheduleResponse.ts b/src/ocpp16/schemas/GetCompositeScheduleResponse.ts index 504013b..8a7d168 100644 --- a/src/ocpp16/schemas/GetCompositeScheduleResponse.ts +++ b/src/ocpp16/schemas/GetCompositeScheduleResponse.ts @@ -1,4 +1,4 @@ -export const GetCompositeScheduleResponse = { +export const GetCompositeScheduleResponse: any = { "title": "GetCompositeScheduleResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetConfigurationRequest.ts b/src/ocpp16/schemas/GetConfigurationRequest.ts index 46fc717..a1d6f7a 100644 --- a/src/ocpp16/schemas/GetConfigurationRequest.ts +++ b/src/ocpp16/schemas/GetConfigurationRequest.ts @@ -1,4 +1,4 @@ -export const GetConfigurationRequest = { +export const GetConfigurationRequest: any = { "title": "GetConfigurationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetConfigurationResponse.ts b/src/ocpp16/schemas/GetConfigurationResponse.ts index 831b9f9..8161f17 100644 --- a/src/ocpp16/schemas/GetConfigurationResponse.ts +++ b/src/ocpp16/schemas/GetConfigurationResponse.ts @@ -1,4 +1,4 @@ -export const GetConfigurationResponse = { +export const GetConfigurationResponse: any = { "title": "GetConfigurationResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetDiagnosticsRequest.ts b/src/ocpp16/schemas/GetDiagnosticsRequest.ts index ac59aaf..fbc4939 100644 --- a/src/ocpp16/schemas/GetDiagnosticsRequest.ts +++ b/src/ocpp16/schemas/GetDiagnosticsRequest.ts @@ -1,4 +1,4 @@ -export const GetDiagnosticsRequest = { +export const GetDiagnosticsRequest: any = { "title": "GetDiagnosticsRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetDiagnosticsResponse.ts b/src/ocpp16/schemas/GetDiagnosticsResponse.ts index ea7879e..a787a9f 100644 --- a/src/ocpp16/schemas/GetDiagnosticsResponse.ts +++ b/src/ocpp16/schemas/GetDiagnosticsResponse.ts @@ -1,4 +1,4 @@ -export const GetDiagnosticsResponse = { +export const GetDiagnosticsResponse: any = { "title": "GetDiagnosticsResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/GetLocalListVersionRequest.ts b/src/ocpp16/schemas/GetLocalListVersionRequest.ts index 40b6191..b72d8bb 100644 --- a/src/ocpp16/schemas/GetLocalListVersionRequest.ts +++ b/src/ocpp16/schemas/GetLocalListVersionRequest.ts @@ -1,4 +1,4 @@ -export const GetLocalListVersionRequest = { +export const GetLocalListVersionRequest: any = { "title": "GetLocalListVersionRequest", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/GetLocalListVersionResponse.ts b/src/ocpp16/schemas/GetLocalListVersionResponse.ts index be93c04..1f4f93b 100644 --- a/src/ocpp16/schemas/GetLocalListVersionResponse.ts +++ b/src/ocpp16/schemas/GetLocalListVersionResponse.ts @@ -1,4 +1,4 @@ -export const GetLocalListVersionResponse = { +export const GetLocalListVersionResponse: any = { "title": "GetLocalListVersionResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/HeartbeatRequest.ts b/src/ocpp16/schemas/HeartbeatRequest.ts index ab99f71..cb7f3cb 100644 --- a/src/ocpp16/schemas/HeartbeatRequest.ts +++ b/src/ocpp16/schemas/HeartbeatRequest.ts @@ -1,4 +1,4 @@ -export const HeartbeatRequest = { +export const HeartbeatRequest: any = { "title": "HeartbeatRequest", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/HeartbeatResponse.ts b/src/ocpp16/schemas/HeartbeatResponse.ts index 1f69c4d..c27fdc4 100644 --- a/src/ocpp16/schemas/HeartbeatResponse.ts +++ b/src/ocpp16/schemas/HeartbeatResponse.ts @@ -1,4 +1,4 @@ -export const HeartbeatResponse = { +export const HeartbeatResponse: any = { "title": "HeartbeatResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/MeterValuesRequest.ts b/src/ocpp16/schemas/MeterValuesRequest.ts index 41b5aa5..113e8b9 100644 --- a/src/ocpp16/schemas/MeterValuesRequest.ts +++ b/src/ocpp16/schemas/MeterValuesRequest.ts @@ -1,4 +1,4 @@ -export const MeterValuesRequest = { +export const MeterValuesRequest: any = { "title": "MeterValuesRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/MeterValuesResponse.ts b/src/ocpp16/schemas/MeterValuesResponse.ts index 171ada5..1a83cba 100644 --- a/src/ocpp16/schemas/MeterValuesResponse.ts +++ b/src/ocpp16/schemas/MeterValuesResponse.ts @@ -1,4 +1,4 @@ -export const MeterValuesResponse = { +export const MeterValuesResponse: any = { "title": "MeterValuesResponse", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/RemoteStartTransactionRequest.ts b/src/ocpp16/schemas/RemoteStartTransactionRequest.ts index 2dd4a85..b964146 100644 --- a/src/ocpp16/schemas/RemoteStartTransactionRequest.ts +++ b/src/ocpp16/schemas/RemoteStartTransactionRequest.ts @@ -1,4 +1,4 @@ -export const RemoteStartTransactionRequest = { +export const RemoteStartTransactionRequest: any = { "title": "RemoteStartTransactionRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/RemoteStartTransactionResponse.ts b/src/ocpp16/schemas/RemoteStartTransactionResponse.ts index 0743434..257abec 100644 --- a/src/ocpp16/schemas/RemoteStartTransactionResponse.ts +++ b/src/ocpp16/schemas/RemoteStartTransactionResponse.ts @@ -1,4 +1,4 @@ -export const RemoteStartTransactionResponse = { +export const RemoteStartTransactionResponse: any = { "title": "RemoteStartTransactionResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/RemoteStopTransactionRequest.ts b/src/ocpp16/schemas/RemoteStopTransactionRequest.ts index b1bcc76..e8ca48f 100644 --- a/src/ocpp16/schemas/RemoteStopTransactionRequest.ts +++ b/src/ocpp16/schemas/RemoteStopTransactionRequest.ts @@ -1,4 +1,4 @@ -export const RemoteStopTransactionRequest = { +export const RemoteStopTransactionRequest: any = { "title": "RemoteStopTransactionRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/RemoteStopTransactionResponse.ts b/src/ocpp16/schemas/RemoteStopTransactionResponse.ts index 023ac97..1abe314 100644 --- a/src/ocpp16/schemas/RemoteStopTransactionResponse.ts +++ b/src/ocpp16/schemas/RemoteStopTransactionResponse.ts @@ -1,4 +1,4 @@ -export const RemoteStopTransactionResponse = { +export const RemoteStopTransactionResponse: any = { "title": "RemoteStopTransactionResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ReserveNowRequest.ts b/src/ocpp16/schemas/ReserveNowRequest.ts index 39f7fb5..9d1d777 100644 --- a/src/ocpp16/schemas/ReserveNowRequest.ts +++ b/src/ocpp16/schemas/ReserveNowRequest.ts @@ -1,4 +1,4 @@ -export const ReserveNowRequest = { +export const ReserveNowRequest: any = { "title": "ReserveNowRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ReserveNowResponse.ts b/src/ocpp16/schemas/ReserveNowResponse.ts index 8d9edec..f427572 100644 --- a/src/ocpp16/schemas/ReserveNowResponse.ts +++ b/src/ocpp16/schemas/ReserveNowResponse.ts @@ -1,4 +1,4 @@ -export const ReserveNowResponse = { +export const ReserveNowResponse: any = { "title": "ReserveNowResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ResetRequest.ts b/src/ocpp16/schemas/ResetRequest.ts index d122aca..070dbc5 100644 --- a/src/ocpp16/schemas/ResetRequest.ts +++ b/src/ocpp16/schemas/ResetRequest.ts @@ -1,4 +1,4 @@ -export const ResetRequest = { +export const ResetRequest: any = { "title": "ResetRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/ResetResponse.ts b/src/ocpp16/schemas/ResetResponse.ts index 42305ab..b06b353 100644 --- a/src/ocpp16/schemas/ResetResponse.ts +++ b/src/ocpp16/schemas/ResetResponse.ts @@ -1,4 +1,4 @@ -export const ResetResponse = { +export const ResetResponse: any = { "title": "ResetResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/SendLocalListRequest.ts b/src/ocpp16/schemas/SendLocalListRequest.ts index 977bfe1..e258225 100644 --- a/src/ocpp16/schemas/SendLocalListRequest.ts +++ b/src/ocpp16/schemas/SendLocalListRequest.ts @@ -1,4 +1,4 @@ -export const SendLocalListRequest = { +export const SendLocalListRequest: any = { "title": "SendLocalListRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/SendLocalListResponse.ts b/src/ocpp16/schemas/SendLocalListResponse.ts index cec1a91..5ec212c 100644 --- a/src/ocpp16/schemas/SendLocalListResponse.ts +++ b/src/ocpp16/schemas/SendLocalListResponse.ts @@ -1,4 +1,4 @@ -export const SendLocalListResponse = { +export const SendLocalListResponse: any = { "title": "SendLocalListResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/SetChargingProfileRequest.ts b/src/ocpp16/schemas/SetChargingProfileRequest.ts index faeaf48..202f22d 100644 --- a/src/ocpp16/schemas/SetChargingProfileRequest.ts +++ b/src/ocpp16/schemas/SetChargingProfileRequest.ts @@ -1,4 +1,4 @@ -export const SetChargingProfileRequest = { +export const SetChargingProfileRequest: any = { "title": "SetChargingProfileRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/SetChargingProfileResponse.ts b/src/ocpp16/schemas/SetChargingProfileResponse.ts index 9f1282d..7620dcc 100644 --- a/src/ocpp16/schemas/SetChargingProfileResponse.ts +++ b/src/ocpp16/schemas/SetChargingProfileResponse.ts @@ -1,4 +1,4 @@ -export const SetChargingProfileResponse = { +export const SetChargingProfileResponse: any = { "title": "SetChargingProfileResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/StartTransactionRequest.ts b/src/ocpp16/schemas/StartTransactionRequest.ts index 0ae695b..b4c077b 100644 --- a/src/ocpp16/schemas/StartTransactionRequest.ts +++ b/src/ocpp16/schemas/StartTransactionRequest.ts @@ -1,4 +1,4 @@ -export const StartTransactionRequest = { +export const StartTransactionRequest: any = { "title": "StartTransactionRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/StartTransactionResponse.ts b/src/ocpp16/schemas/StartTransactionResponse.ts index b304ece..57c0dd9 100644 --- a/src/ocpp16/schemas/StartTransactionResponse.ts +++ b/src/ocpp16/schemas/StartTransactionResponse.ts @@ -1,4 +1,4 @@ -export const StartTransactionResponse = { +export const StartTransactionResponse: any = { "title": "StartTransactionResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/StatusNotificationRequest.ts b/src/ocpp16/schemas/StatusNotificationRequest.ts index 31e5cc7..083de34 100644 --- a/src/ocpp16/schemas/StatusNotificationRequest.ts +++ b/src/ocpp16/schemas/StatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const StatusNotificationRequest = { +export const StatusNotificationRequest: any = { "title": "StatusNotificationRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/StatusNotificationResponse.ts b/src/ocpp16/schemas/StatusNotificationResponse.ts index e3c3094..3e51760 100644 --- a/src/ocpp16/schemas/StatusNotificationResponse.ts +++ b/src/ocpp16/schemas/StatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const StatusNotificationResponse = { +export const StatusNotificationResponse: any = { "title": "StatusNotificationResponse", "type": "object", "properties": {}, diff --git a/src/ocpp16/schemas/StopTransactionRequest.ts b/src/ocpp16/schemas/StopTransactionRequest.ts index f2dab0d..5a1dcf2 100644 --- a/src/ocpp16/schemas/StopTransactionRequest.ts +++ b/src/ocpp16/schemas/StopTransactionRequest.ts @@ -1,4 +1,4 @@ -export const StopTransactionRequest = { +export const StopTransactionRequest: any = { "title": "StopTransactionRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/StopTransactionResponse.ts b/src/ocpp16/schemas/StopTransactionResponse.ts index e688b69..7ba5ae3 100644 --- a/src/ocpp16/schemas/StopTransactionResponse.ts +++ b/src/ocpp16/schemas/StopTransactionResponse.ts @@ -1,4 +1,4 @@ -export const StopTransactionResponse = { +export const StopTransactionResponse: any = { "title": "StopTransactionResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/TriggerMessageRequest.ts b/src/ocpp16/schemas/TriggerMessageRequest.ts index d202071..8f42560 100644 --- a/src/ocpp16/schemas/TriggerMessageRequest.ts +++ b/src/ocpp16/schemas/TriggerMessageRequest.ts @@ -1,4 +1,4 @@ -export const TriggerMessageRequest = { +export const TriggerMessageRequest: any = { "title": "TriggerMessageRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/TriggerMessageResponse.ts b/src/ocpp16/schemas/TriggerMessageResponse.ts index ca8772d..3412660 100644 --- a/src/ocpp16/schemas/TriggerMessageResponse.ts +++ b/src/ocpp16/schemas/TriggerMessageResponse.ts @@ -1,4 +1,4 @@ -export const TriggerMessageResponse = { +export const TriggerMessageResponse: any = { "title": "TriggerMessageResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/UnlockConnectorRequest.ts b/src/ocpp16/schemas/UnlockConnectorRequest.ts index 94addbc..7cf9449 100644 --- a/src/ocpp16/schemas/UnlockConnectorRequest.ts +++ b/src/ocpp16/schemas/UnlockConnectorRequest.ts @@ -1,4 +1,4 @@ -export const UnlockConnectorRequest = { +export const UnlockConnectorRequest: any = { "title": "UnlockConnectorRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/UnlockConnectorResponse.ts b/src/ocpp16/schemas/UnlockConnectorResponse.ts index 1277c26..0443714 100644 --- a/src/ocpp16/schemas/UnlockConnectorResponse.ts +++ b/src/ocpp16/schemas/UnlockConnectorResponse.ts @@ -1,4 +1,4 @@ -export const UnlockConnectorResponse = { +export const UnlockConnectorResponse: any = { "title": "UnlockConnectorResponse", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/UpdateFirmwareRequest.ts b/src/ocpp16/schemas/UpdateFirmwareRequest.ts index bc96b9d..968a1ae 100644 --- a/src/ocpp16/schemas/UpdateFirmwareRequest.ts +++ b/src/ocpp16/schemas/UpdateFirmwareRequest.ts @@ -1,4 +1,4 @@ -export const UpdateFirmwareRequest = { +export const UpdateFirmwareRequest: any = { "title": "UpdateFirmwareRequest", "type": "object", "properties": { diff --git a/src/ocpp16/schemas/UpdateFirmwareResponse.ts b/src/ocpp16/schemas/UpdateFirmwareResponse.ts index ff6230f..ae528b1 100644 --- a/src/ocpp16/schemas/UpdateFirmwareResponse.ts +++ b/src/ocpp16/schemas/UpdateFirmwareResponse.ts @@ -1,4 +1,4 @@ -export const UpdateFirmwareResponse = { +export const UpdateFirmwareResponse: any = { "title": "UpdateFirmwareResponse", "type": "object", "properties": {}, diff --git a/src/ocpp16/types/AuthorizeRequest.d.ts b/src/ocpp16/types/AuthorizeRequest.ts similarity index 100% rename from src/ocpp16/types/AuthorizeRequest.d.ts rename to src/ocpp16/types/AuthorizeRequest.ts diff --git a/src/ocpp16/types/AuthorizeResponse.d.ts b/src/ocpp16/types/AuthorizeResponse.ts similarity index 100% rename from src/ocpp16/types/AuthorizeResponse.d.ts rename to src/ocpp16/types/AuthorizeResponse.ts diff --git a/src/ocpp16/types/BootNotificationRequest.d.ts b/src/ocpp16/types/BootNotificationRequest.ts similarity index 100% rename from src/ocpp16/types/BootNotificationRequest.d.ts rename to src/ocpp16/types/BootNotificationRequest.ts diff --git a/src/ocpp16/types/BootNotificationResponse.d.ts b/src/ocpp16/types/BootNotificationResponse.ts similarity index 100% rename from src/ocpp16/types/BootNotificationResponse.d.ts rename to src/ocpp16/types/BootNotificationResponse.ts diff --git a/src/ocpp16/types/CancelReservationRequest.d.ts b/src/ocpp16/types/CancelReservationRequest.ts similarity index 100% rename from src/ocpp16/types/CancelReservationRequest.d.ts rename to src/ocpp16/types/CancelReservationRequest.ts diff --git a/src/ocpp16/types/CancelReservationResponse.d.ts b/src/ocpp16/types/CancelReservationResponse.ts similarity index 100% rename from src/ocpp16/types/CancelReservationResponse.d.ts rename to src/ocpp16/types/CancelReservationResponse.ts diff --git a/src/ocpp16/types/ChangeAvailabilityRequest.d.ts b/src/ocpp16/types/ChangeAvailabilityRequest.ts similarity index 100% rename from src/ocpp16/types/ChangeAvailabilityRequest.d.ts rename to src/ocpp16/types/ChangeAvailabilityRequest.ts diff --git a/src/ocpp16/types/ChangeAvailabilityResponse.d.ts b/src/ocpp16/types/ChangeAvailabilityResponse.ts similarity index 100% rename from src/ocpp16/types/ChangeAvailabilityResponse.d.ts rename to src/ocpp16/types/ChangeAvailabilityResponse.ts diff --git a/src/ocpp16/types/ChangeConfigurationRequest.d.ts b/src/ocpp16/types/ChangeConfigurationRequest.ts similarity index 100% rename from src/ocpp16/types/ChangeConfigurationRequest.d.ts rename to src/ocpp16/types/ChangeConfigurationRequest.ts diff --git a/src/ocpp16/types/ChangeConfigurationResponse.d.ts b/src/ocpp16/types/ChangeConfigurationResponse.ts similarity index 100% rename from src/ocpp16/types/ChangeConfigurationResponse.d.ts rename to src/ocpp16/types/ChangeConfigurationResponse.ts diff --git a/src/ocpp16/types/ClearCacheRequest.d.ts b/src/ocpp16/types/ClearCacheRequest.ts similarity index 100% rename from src/ocpp16/types/ClearCacheRequest.d.ts rename to src/ocpp16/types/ClearCacheRequest.ts diff --git a/src/ocpp16/types/ClearCacheResponse.d.ts b/src/ocpp16/types/ClearCacheResponse.ts similarity index 100% rename from src/ocpp16/types/ClearCacheResponse.d.ts rename to src/ocpp16/types/ClearCacheResponse.ts diff --git a/src/ocpp16/types/ClearChargingProfileRequest.d.ts b/src/ocpp16/types/ClearChargingProfileRequest.ts similarity index 100% rename from src/ocpp16/types/ClearChargingProfileRequest.d.ts rename to src/ocpp16/types/ClearChargingProfileRequest.ts diff --git a/src/ocpp16/types/ClearChargingProfileResponse.d.ts b/src/ocpp16/types/ClearChargingProfileResponse.ts similarity index 100% rename from src/ocpp16/types/ClearChargingProfileResponse.d.ts rename to src/ocpp16/types/ClearChargingProfileResponse.ts diff --git a/src/ocpp16/types/DataTransferRequest.d.ts b/src/ocpp16/types/DataTransferRequest.ts similarity index 100% rename from src/ocpp16/types/DataTransferRequest.d.ts rename to src/ocpp16/types/DataTransferRequest.ts diff --git a/src/ocpp16/types/DataTransferResponse.d.ts b/src/ocpp16/types/DataTransferResponse.ts similarity index 100% rename from src/ocpp16/types/DataTransferResponse.d.ts rename to src/ocpp16/types/DataTransferResponse.ts diff --git a/src/ocpp16/types/DiagnosticsStatusNotificationRequest.d.ts b/src/ocpp16/types/DiagnosticsStatusNotificationRequest.ts similarity index 100% rename from src/ocpp16/types/DiagnosticsStatusNotificationRequest.d.ts rename to src/ocpp16/types/DiagnosticsStatusNotificationRequest.ts diff --git a/src/ocpp16/types/DiagnosticsStatusNotificationResponse.d.ts b/src/ocpp16/types/DiagnosticsStatusNotificationResponse.ts similarity index 100% rename from src/ocpp16/types/DiagnosticsStatusNotificationResponse.d.ts rename to src/ocpp16/types/DiagnosticsStatusNotificationResponse.ts diff --git a/src/ocpp16/types/FirmwareStatusNotificationRequest.d.ts b/src/ocpp16/types/FirmwareStatusNotificationRequest.ts similarity index 100% rename from src/ocpp16/types/FirmwareStatusNotificationRequest.d.ts rename to src/ocpp16/types/FirmwareStatusNotificationRequest.ts diff --git a/src/ocpp16/types/FirmwareStatusNotificationResponse.d.ts b/src/ocpp16/types/FirmwareStatusNotificationResponse.ts similarity index 100% rename from src/ocpp16/types/FirmwareStatusNotificationResponse.d.ts rename to src/ocpp16/types/FirmwareStatusNotificationResponse.ts diff --git a/src/ocpp16/types/GetCompositeScheduleRequest.d.ts b/src/ocpp16/types/GetCompositeScheduleRequest.ts similarity index 100% rename from src/ocpp16/types/GetCompositeScheduleRequest.d.ts rename to src/ocpp16/types/GetCompositeScheduleRequest.ts diff --git a/src/ocpp16/types/GetCompositeScheduleResponse.d.ts b/src/ocpp16/types/GetCompositeScheduleResponse.ts similarity index 100% rename from src/ocpp16/types/GetCompositeScheduleResponse.d.ts rename to src/ocpp16/types/GetCompositeScheduleResponse.ts diff --git a/src/ocpp16/types/GetConfigurationRequest.d.ts b/src/ocpp16/types/GetConfigurationRequest.ts similarity index 100% rename from src/ocpp16/types/GetConfigurationRequest.d.ts rename to src/ocpp16/types/GetConfigurationRequest.ts diff --git a/src/ocpp16/types/GetConfigurationResponse.d.ts b/src/ocpp16/types/GetConfigurationResponse.ts similarity index 100% rename from src/ocpp16/types/GetConfigurationResponse.d.ts rename to src/ocpp16/types/GetConfigurationResponse.ts diff --git a/src/ocpp16/types/GetDiagnosticsRequest.d.ts b/src/ocpp16/types/GetDiagnosticsRequest.ts similarity index 100% rename from src/ocpp16/types/GetDiagnosticsRequest.d.ts rename to src/ocpp16/types/GetDiagnosticsRequest.ts diff --git a/src/ocpp16/types/GetDiagnosticsResponse.d.ts b/src/ocpp16/types/GetDiagnosticsResponse.ts similarity index 100% rename from src/ocpp16/types/GetDiagnosticsResponse.d.ts rename to src/ocpp16/types/GetDiagnosticsResponse.ts diff --git a/src/ocpp16/types/GetLocalListVersionRequest.d.ts b/src/ocpp16/types/GetLocalListVersionRequest.ts similarity index 100% rename from src/ocpp16/types/GetLocalListVersionRequest.d.ts rename to src/ocpp16/types/GetLocalListVersionRequest.ts diff --git a/src/ocpp16/types/GetLocalListVersionResponse.d.ts b/src/ocpp16/types/GetLocalListVersionResponse.ts similarity index 100% rename from src/ocpp16/types/GetLocalListVersionResponse.d.ts rename to src/ocpp16/types/GetLocalListVersionResponse.ts diff --git a/src/ocpp16/types/HeartbeatRequest.d.ts b/src/ocpp16/types/HeartbeatRequest.ts similarity index 100% rename from src/ocpp16/types/HeartbeatRequest.d.ts rename to src/ocpp16/types/HeartbeatRequest.ts diff --git a/src/ocpp16/types/HeartbeatResponse.d.ts b/src/ocpp16/types/HeartbeatResponse.ts similarity index 100% rename from src/ocpp16/types/HeartbeatResponse.d.ts rename to src/ocpp16/types/HeartbeatResponse.ts diff --git a/src/ocpp16/types/MeterValuesRequest.d.ts b/src/ocpp16/types/MeterValuesRequest.ts similarity index 100% rename from src/ocpp16/types/MeterValuesRequest.d.ts rename to src/ocpp16/types/MeterValuesRequest.ts diff --git a/src/ocpp16/types/MeterValuesResponse.d.ts b/src/ocpp16/types/MeterValuesResponse.ts similarity index 100% rename from src/ocpp16/types/MeterValuesResponse.d.ts rename to src/ocpp16/types/MeterValuesResponse.ts diff --git a/src/ocpp16/types/RemoteStartTransactionRequest.d.ts b/src/ocpp16/types/RemoteStartTransactionRequest.ts similarity index 100% rename from src/ocpp16/types/RemoteStartTransactionRequest.d.ts rename to src/ocpp16/types/RemoteStartTransactionRequest.ts diff --git a/src/ocpp16/types/RemoteStartTransactionResponse.d.ts b/src/ocpp16/types/RemoteStartTransactionResponse.ts similarity index 100% rename from src/ocpp16/types/RemoteStartTransactionResponse.d.ts rename to src/ocpp16/types/RemoteStartTransactionResponse.ts diff --git a/src/ocpp16/types/RemoteStopTransactionRequest.d.ts b/src/ocpp16/types/RemoteStopTransactionRequest.ts similarity index 100% rename from src/ocpp16/types/RemoteStopTransactionRequest.d.ts rename to src/ocpp16/types/RemoteStopTransactionRequest.ts diff --git a/src/ocpp16/types/RemoteStopTransactionResponse.d.ts b/src/ocpp16/types/RemoteStopTransactionResponse.ts similarity index 100% rename from src/ocpp16/types/RemoteStopTransactionResponse.d.ts rename to src/ocpp16/types/RemoteStopTransactionResponse.ts diff --git a/src/ocpp16/types/ReserveNowRequest.d.ts b/src/ocpp16/types/ReserveNowRequest.ts similarity index 100% rename from src/ocpp16/types/ReserveNowRequest.d.ts rename to src/ocpp16/types/ReserveNowRequest.ts diff --git a/src/ocpp16/types/ReserveNowResponse.d.ts b/src/ocpp16/types/ReserveNowResponse.ts similarity index 100% rename from src/ocpp16/types/ReserveNowResponse.d.ts rename to src/ocpp16/types/ReserveNowResponse.ts diff --git a/src/ocpp16/types/ResetRequest.d.ts b/src/ocpp16/types/ResetRequest.ts similarity index 100% rename from src/ocpp16/types/ResetRequest.d.ts rename to src/ocpp16/types/ResetRequest.ts diff --git a/src/ocpp16/types/ResetResponse.d.ts b/src/ocpp16/types/ResetResponse.ts similarity index 100% rename from src/ocpp16/types/ResetResponse.d.ts rename to src/ocpp16/types/ResetResponse.ts diff --git a/src/ocpp16/types/SendLocalListRequest.d.ts b/src/ocpp16/types/SendLocalListRequest.ts similarity index 100% rename from src/ocpp16/types/SendLocalListRequest.d.ts rename to src/ocpp16/types/SendLocalListRequest.ts diff --git a/src/ocpp16/types/SendLocalListResponse.d.ts b/src/ocpp16/types/SendLocalListResponse.ts similarity index 100% rename from src/ocpp16/types/SendLocalListResponse.d.ts rename to src/ocpp16/types/SendLocalListResponse.ts diff --git a/src/ocpp16/types/SetChargingProfileRequest.d.ts b/src/ocpp16/types/SetChargingProfileRequest.ts similarity index 100% rename from src/ocpp16/types/SetChargingProfileRequest.d.ts rename to src/ocpp16/types/SetChargingProfileRequest.ts diff --git a/src/ocpp16/types/SetChargingProfileResponse.d.ts b/src/ocpp16/types/SetChargingProfileResponse.ts similarity index 100% rename from src/ocpp16/types/SetChargingProfileResponse.d.ts rename to src/ocpp16/types/SetChargingProfileResponse.ts diff --git a/src/ocpp16/types/StartTransactionRequest.d.ts b/src/ocpp16/types/StartTransactionRequest.ts similarity index 100% rename from src/ocpp16/types/StartTransactionRequest.d.ts rename to src/ocpp16/types/StartTransactionRequest.ts diff --git a/src/ocpp16/types/StartTransactionResponse.d.ts b/src/ocpp16/types/StartTransactionResponse.ts similarity index 100% rename from src/ocpp16/types/StartTransactionResponse.d.ts rename to src/ocpp16/types/StartTransactionResponse.ts diff --git a/src/ocpp16/types/StatusNotificationRequest.d.ts b/src/ocpp16/types/StatusNotificationRequest.ts similarity index 100% rename from src/ocpp16/types/StatusNotificationRequest.d.ts rename to src/ocpp16/types/StatusNotificationRequest.ts diff --git a/src/ocpp16/types/StatusNotificationResponse.d.ts b/src/ocpp16/types/StatusNotificationResponse.ts similarity index 100% rename from src/ocpp16/types/StatusNotificationResponse.d.ts rename to src/ocpp16/types/StatusNotificationResponse.ts diff --git a/src/ocpp16/types/StopTransactionRequest.d.ts b/src/ocpp16/types/StopTransactionRequest.ts similarity index 100% rename from src/ocpp16/types/StopTransactionRequest.d.ts rename to src/ocpp16/types/StopTransactionRequest.ts diff --git a/src/ocpp16/types/StopTransactionResponse.d.ts b/src/ocpp16/types/StopTransactionResponse.ts similarity index 100% rename from src/ocpp16/types/StopTransactionResponse.d.ts rename to src/ocpp16/types/StopTransactionResponse.ts diff --git a/src/ocpp16/types/TriggerMessageRequest.d.ts b/src/ocpp16/types/TriggerMessageRequest.ts similarity index 100% rename from src/ocpp16/types/TriggerMessageRequest.d.ts rename to src/ocpp16/types/TriggerMessageRequest.ts diff --git a/src/ocpp16/types/TriggerMessageResponse.d.ts b/src/ocpp16/types/TriggerMessageResponse.ts similarity index 100% rename from src/ocpp16/types/TriggerMessageResponse.d.ts rename to src/ocpp16/types/TriggerMessageResponse.ts diff --git a/src/ocpp16/types/UnlockConnectorRequest.d.ts b/src/ocpp16/types/UnlockConnectorRequest.ts similarity index 100% rename from src/ocpp16/types/UnlockConnectorRequest.d.ts rename to src/ocpp16/types/UnlockConnectorRequest.ts diff --git a/src/ocpp16/types/UnlockConnectorResponse.d.ts b/src/ocpp16/types/UnlockConnectorResponse.ts similarity index 100% rename from src/ocpp16/types/UnlockConnectorResponse.d.ts rename to src/ocpp16/types/UnlockConnectorResponse.ts diff --git a/src/ocpp16/types/UpdateFirmwareRequest.d.ts b/src/ocpp16/types/UpdateFirmwareRequest.ts similarity index 100% rename from src/ocpp16/types/UpdateFirmwareRequest.d.ts rename to src/ocpp16/types/UpdateFirmwareRequest.ts diff --git a/src/ocpp16/types/UpdateFirmwareResponse.d.ts b/src/ocpp16/types/UpdateFirmwareResponse.ts similarity index 100% rename from src/ocpp16/types/UpdateFirmwareResponse.d.ts rename to src/ocpp16/types/UpdateFirmwareResponse.ts diff --git a/src/ocpp20/schemas/AuthorizeRequest.ts b/src/ocpp20/schemas/AuthorizeRequest.ts index c231562..1a66329 100644 --- a/src/ocpp20/schemas/AuthorizeRequest.ts +++ b/src/ocpp20/schemas/AuthorizeRequest.ts @@ -1,4 +1,4 @@ -export const AuthorizeRequest = { +export const AuthorizeRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/AuthorizeResponse.ts b/src/ocpp20/schemas/AuthorizeResponse.ts index fab1398..6e6d282 100644 --- a/src/ocpp20/schemas/AuthorizeResponse.ts +++ b/src/ocpp20/schemas/AuthorizeResponse.ts @@ -1,4 +1,4 @@ -export const AuthorizeResponse = { +export const AuthorizeResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/BootNotificationRequest.ts b/src/ocpp20/schemas/BootNotificationRequest.ts index f6d9370..b8698f7 100644 --- a/src/ocpp20/schemas/BootNotificationRequest.ts +++ b/src/ocpp20/schemas/BootNotificationRequest.ts @@ -1,4 +1,4 @@ -export const BootNotificationRequest = { +export const BootNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/BootNotificationResponse.ts b/src/ocpp20/schemas/BootNotificationResponse.ts index 8cb8acc..4822014 100644 --- a/src/ocpp20/schemas/BootNotificationResponse.ts +++ b/src/ocpp20/schemas/BootNotificationResponse.ts @@ -1,4 +1,4 @@ -export const BootNotificationResponse = { +export const BootNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CancelReservationRequest.ts b/src/ocpp20/schemas/CancelReservationRequest.ts index 2fda927..2d8bb12 100644 --- a/src/ocpp20/schemas/CancelReservationRequest.ts +++ b/src/ocpp20/schemas/CancelReservationRequest.ts @@ -1,4 +1,4 @@ -export const CancelReservationRequest = { +export const CancelReservationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CancelReservationResponse.ts b/src/ocpp20/schemas/CancelReservationResponse.ts index 0085425..c843c6d 100644 --- a/src/ocpp20/schemas/CancelReservationResponse.ts +++ b/src/ocpp20/schemas/CancelReservationResponse.ts @@ -1,4 +1,4 @@ -export const CancelReservationResponse = { +export const CancelReservationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CertificateSignedRequest.ts b/src/ocpp20/schemas/CertificateSignedRequest.ts index 52bd001..cf9d60a 100644 --- a/src/ocpp20/schemas/CertificateSignedRequest.ts +++ b/src/ocpp20/schemas/CertificateSignedRequest.ts @@ -1,4 +1,4 @@ -export const CertificateSignedRequest = { +export const CertificateSignedRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CertificateSignedResponse.ts b/src/ocpp20/schemas/CertificateSignedResponse.ts index 75c847e..c13e750 100644 --- a/src/ocpp20/schemas/CertificateSignedResponse.ts +++ b/src/ocpp20/schemas/CertificateSignedResponse.ts @@ -1,4 +1,4 @@ -export const CertificateSignedResponse = { +export const CertificateSignedResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ChangeAvailabilityRequest.ts b/src/ocpp20/schemas/ChangeAvailabilityRequest.ts index fb908c5..82cefe9 100644 --- a/src/ocpp20/schemas/ChangeAvailabilityRequest.ts +++ b/src/ocpp20/schemas/ChangeAvailabilityRequest.ts @@ -1,4 +1,4 @@ -export const ChangeAvailabilityRequest = { +export const ChangeAvailabilityRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ChangeAvailabilityResponse.ts b/src/ocpp20/schemas/ChangeAvailabilityResponse.ts index bd4e3b4..be79d67 100644 --- a/src/ocpp20/schemas/ChangeAvailabilityResponse.ts +++ b/src/ocpp20/schemas/ChangeAvailabilityResponse.ts @@ -1,4 +1,4 @@ -export const ChangeAvailabilityResponse = { +export const ChangeAvailabilityResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearCacheRequest.ts b/src/ocpp20/schemas/ClearCacheRequest.ts index 887db0b..eabac51 100644 --- a/src/ocpp20/schemas/ClearCacheRequest.ts +++ b/src/ocpp20/schemas/ClearCacheRequest.ts @@ -1,4 +1,4 @@ -export const ClearCacheRequest = { +export const ClearCacheRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearCacheResponse.ts b/src/ocpp20/schemas/ClearCacheResponse.ts index bf8769f..d2b3426 100644 --- a/src/ocpp20/schemas/ClearCacheResponse.ts +++ b/src/ocpp20/schemas/ClearCacheResponse.ts @@ -1,4 +1,4 @@ -export const ClearCacheResponse = { +export const ClearCacheResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearChargingProfileRequest.ts b/src/ocpp20/schemas/ClearChargingProfileRequest.ts index f511b96..43f17f9 100644 --- a/src/ocpp20/schemas/ClearChargingProfileRequest.ts +++ b/src/ocpp20/schemas/ClearChargingProfileRequest.ts @@ -1,4 +1,4 @@ -export const ClearChargingProfileRequest = { +export const ClearChargingProfileRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearChargingProfileResponse.ts b/src/ocpp20/schemas/ClearChargingProfileResponse.ts index 0fd01bf..ed75b9d 100644 --- a/src/ocpp20/schemas/ClearChargingProfileResponse.ts +++ b/src/ocpp20/schemas/ClearChargingProfileResponse.ts @@ -1,4 +1,4 @@ -export const ClearChargingProfileResponse = { +export const ClearChargingProfileResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearDisplayMessageRequest.ts b/src/ocpp20/schemas/ClearDisplayMessageRequest.ts index cf3e2e6..ca3d2ad 100644 --- a/src/ocpp20/schemas/ClearDisplayMessageRequest.ts +++ b/src/ocpp20/schemas/ClearDisplayMessageRequest.ts @@ -1,4 +1,4 @@ -export const ClearDisplayMessageRequest = { +export const ClearDisplayMessageRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearDisplayMessageResponse.ts b/src/ocpp20/schemas/ClearDisplayMessageResponse.ts index c0d84a1..cdf9b77 100644 --- a/src/ocpp20/schemas/ClearDisplayMessageResponse.ts +++ b/src/ocpp20/schemas/ClearDisplayMessageResponse.ts @@ -1,4 +1,4 @@ -export const ClearDisplayMessageResponse = { +export const ClearDisplayMessageResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearVariableMonitoringRequest.ts b/src/ocpp20/schemas/ClearVariableMonitoringRequest.ts index bf42e08..bb0fe46 100644 --- a/src/ocpp20/schemas/ClearVariableMonitoringRequest.ts +++ b/src/ocpp20/schemas/ClearVariableMonitoringRequest.ts @@ -1,4 +1,4 @@ -export const ClearVariableMonitoringRequest = { +export const ClearVariableMonitoringRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearVariableMonitoringResponse.ts b/src/ocpp20/schemas/ClearVariableMonitoringResponse.ts index 2664bf4..159252c 100644 --- a/src/ocpp20/schemas/ClearVariableMonitoringResponse.ts +++ b/src/ocpp20/schemas/ClearVariableMonitoringResponse.ts @@ -1,4 +1,4 @@ -export const ClearVariableMonitoringResponse = { +export const ClearVariableMonitoringResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearedChargingLimitRequest.ts b/src/ocpp20/schemas/ClearedChargingLimitRequest.ts index dda7659..28ec125 100644 --- a/src/ocpp20/schemas/ClearedChargingLimitRequest.ts +++ b/src/ocpp20/schemas/ClearedChargingLimitRequest.ts @@ -1,4 +1,4 @@ -export const ClearedChargingLimitRequest = { +export const ClearedChargingLimitRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ClearedChargingLimitResponse.ts b/src/ocpp20/schemas/ClearedChargingLimitResponse.ts index d920c88..126bb36 100644 --- a/src/ocpp20/schemas/ClearedChargingLimitResponse.ts +++ b/src/ocpp20/schemas/ClearedChargingLimitResponse.ts @@ -1,4 +1,4 @@ -export const ClearedChargingLimitResponse = { +export const ClearedChargingLimitResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CostUpdatedRequest.ts b/src/ocpp20/schemas/CostUpdatedRequest.ts index a5c1886..70c9385 100644 --- a/src/ocpp20/schemas/CostUpdatedRequest.ts +++ b/src/ocpp20/schemas/CostUpdatedRequest.ts @@ -1,4 +1,4 @@ -export const CostUpdatedRequest = { +export const CostUpdatedRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CostUpdatedResponse.ts b/src/ocpp20/schemas/CostUpdatedResponse.ts index e10eada..f47cd14 100644 --- a/src/ocpp20/schemas/CostUpdatedResponse.ts +++ b/src/ocpp20/schemas/CostUpdatedResponse.ts @@ -1,4 +1,4 @@ -export const CostUpdatedResponse = { +export const CostUpdatedResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CustomerInformationRequest.ts b/src/ocpp20/schemas/CustomerInformationRequest.ts index 55d28ab..9f1646c 100644 --- a/src/ocpp20/schemas/CustomerInformationRequest.ts +++ b/src/ocpp20/schemas/CustomerInformationRequest.ts @@ -1,4 +1,4 @@ -export const CustomerInformationRequest = { +export const CustomerInformationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/CustomerInformationResponse.ts b/src/ocpp20/schemas/CustomerInformationResponse.ts index 82eb4e0..d2e7378 100644 --- a/src/ocpp20/schemas/CustomerInformationResponse.ts +++ b/src/ocpp20/schemas/CustomerInformationResponse.ts @@ -1,4 +1,4 @@ -export const CustomerInformationResponse = { +export const CustomerInformationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/DataTransferRequest.ts b/src/ocpp20/schemas/DataTransferRequest.ts index f967622..6b9ee34 100644 --- a/src/ocpp20/schemas/DataTransferRequest.ts +++ b/src/ocpp20/schemas/DataTransferRequest.ts @@ -1,4 +1,4 @@ -export const DataTransferRequest = { +export const DataTransferRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/DataTransferResponse.ts b/src/ocpp20/schemas/DataTransferResponse.ts index 0451366..58ba146 100644 --- a/src/ocpp20/schemas/DataTransferResponse.ts +++ b/src/ocpp20/schemas/DataTransferResponse.ts @@ -1,4 +1,4 @@ -export const DataTransferResponse = { +export const DataTransferResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/DeleteCertificateRequest.ts b/src/ocpp20/schemas/DeleteCertificateRequest.ts index dae60a0..5a5be4a 100644 --- a/src/ocpp20/schemas/DeleteCertificateRequest.ts +++ b/src/ocpp20/schemas/DeleteCertificateRequest.ts @@ -1,4 +1,4 @@ -export const DeleteCertificateRequest = { +export const DeleteCertificateRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/DeleteCertificateResponse.ts b/src/ocpp20/schemas/DeleteCertificateResponse.ts index 78ad327..305d336 100644 --- a/src/ocpp20/schemas/DeleteCertificateResponse.ts +++ b/src/ocpp20/schemas/DeleteCertificateResponse.ts @@ -1,4 +1,4 @@ -export const DeleteCertificateResponse = { +export const DeleteCertificateResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/FirmwareStatusNotificationRequest.ts b/src/ocpp20/schemas/FirmwareStatusNotificationRequest.ts index cabdc37..6af0522 100644 --- a/src/ocpp20/schemas/FirmwareStatusNotificationRequest.ts +++ b/src/ocpp20/schemas/FirmwareStatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const FirmwareStatusNotificationRequest = { +export const FirmwareStatusNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/FirmwareStatusNotificationResponse.ts b/src/ocpp20/schemas/FirmwareStatusNotificationResponse.ts index c2c72f6..9769ff2 100644 --- a/src/ocpp20/schemas/FirmwareStatusNotificationResponse.ts +++ b/src/ocpp20/schemas/FirmwareStatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const FirmwareStatusNotificationResponse = { +export const FirmwareStatusNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/Get15118EVCertificateRequest.ts b/src/ocpp20/schemas/Get15118EVCertificateRequest.ts index d4f019a..45c755b 100644 --- a/src/ocpp20/schemas/Get15118EVCertificateRequest.ts +++ b/src/ocpp20/schemas/Get15118EVCertificateRequest.ts @@ -1,4 +1,4 @@ -export const Get15118EVCertificateRequest = { +export const Get15118EVCertificateRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/Get15118EVCertificateResponse.ts b/src/ocpp20/schemas/Get15118EVCertificateResponse.ts index 9a4d3df..dc07a0b 100644 --- a/src/ocpp20/schemas/Get15118EVCertificateResponse.ts +++ b/src/ocpp20/schemas/Get15118EVCertificateResponse.ts @@ -1,4 +1,4 @@ -export const Get15118EVCertificateResponse = { +export const Get15118EVCertificateResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetBaseReportRequest.ts b/src/ocpp20/schemas/GetBaseReportRequest.ts index 948d391..3521acc 100644 --- a/src/ocpp20/schemas/GetBaseReportRequest.ts +++ b/src/ocpp20/schemas/GetBaseReportRequest.ts @@ -1,4 +1,4 @@ -export const GetBaseReportRequest = { +export const GetBaseReportRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetBaseReportResponse.ts b/src/ocpp20/schemas/GetBaseReportResponse.ts index d44ade4..5be5612 100644 --- a/src/ocpp20/schemas/GetBaseReportResponse.ts +++ b/src/ocpp20/schemas/GetBaseReportResponse.ts @@ -1,4 +1,4 @@ -export const GetBaseReportResponse = { +export const GetBaseReportResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetCertificateStatusRequest.ts b/src/ocpp20/schemas/GetCertificateStatusRequest.ts index d3a3e6e..a0c4e0a 100644 --- a/src/ocpp20/schemas/GetCertificateStatusRequest.ts +++ b/src/ocpp20/schemas/GetCertificateStatusRequest.ts @@ -1,4 +1,4 @@ -export const GetCertificateStatusRequest = { +export const GetCertificateStatusRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetCertificateStatusResponse.ts b/src/ocpp20/schemas/GetCertificateStatusResponse.ts index 8957939..a9a98a9 100644 --- a/src/ocpp20/schemas/GetCertificateStatusResponse.ts +++ b/src/ocpp20/schemas/GetCertificateStatusResponse.ts @@ -1,4 +1,4 @@ -export const GetCertificateStatusResponse = { +export const GetCertificateStatusResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetChargingProfilesRequest.ts b/src/ocpp20/schemas/GetChargingProfilesRequest.ts index f540b62..d770be6 100644 --- a/src/ocpp20/schemas/GetChargingProfilesRequest.ts +++ b/src/ocpp20/schemas/GetChargingProfilesRequest.ts @@ -1,4 +1,4 @@ -export const GetChargingProfilesRequest = { +export const GetChargingProfilesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetChargingProfilesResponse.ts b/src/ocpp20/schemas/GetChargingProfilesResponse.ts index a5e8f70..6c40849 100644 --- a/src/ocpp20/schemas/GetChargingProfilesResponse.ts +++ b/src/ocpp20/schemas/GetChargingProfilesResponse.ts @@ -1,4 +1,4 @@ -export const GetChargingProfilesResponse = { +export const GetChargingProfilesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetCompositeScheduleRequest.ts b/src/ocpp20/schemas/GetCompositeScheduleRequest.ts index 9f60cd6..6d5aa40 100644 --- a/src/ocpp20/schemas/GetCompositeScheduleRequest.ts +++ b/src/ocpp20/schemas/GetCompositeScheduleRequest.ts @@ -1,4 +1,4 @@ -export const GetCompositeScheduleRequest = { +export const GetCompositeScheduleRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetCompositeScheduleResponse.ts b/src/ocpp20/schemas/GetCompositeScheduleResponse.ts index e69a258..b248950 100644 --- a/src/ocpp20/schemas/GetCompositeScheduleResponse.ts +++ b/src/ocpp20/schemas/GetCompositeScheduleResponse.ts @@ -1,4 +1,4 @@ -export const GetCompositeScheduleResponse = { +export const GetCompositeScheduleResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetDisplayMessagesRequest.ts b/src/ocpp20/schemas/GetDisplayMessagesRequest.ts index f72f17b..4f0970d 100644 --- a/src/ocpp20/schemas/GetDisplayMessagesRequest.ts +++ b/src/ocpp20/schemas/GetDisplayMessagesRequest.ts @@ -1,4 +1,4 @@ -export const GetDisplayMessagesRequest = { +export const GetDisplayMessagesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetDisplayMessagesResponse.ts b/src/ocpp20/schemas/GetDisplayMessagesResponse.ts index 348cdd4..96afc0a 100644 --- a/src/ocpp20/schemas/GetDisplayMessagesResponse.ts +++ b/src/ocpp20/schemas/GetDisplayMessagesResponse.ts @@ -1,4 +1,4 @@ -export const GetDisplayMessagesResponse = { +export const GetDisplayMessagesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetInstalledCertificateIdsRequest.ts b/src/ocpp20/schemas/GetInstalledCertificateIdsRequest.ts index 1339c2d..72736f1 100644 --- a/src/ocpp20/schemas/GetInstalledCertificateIdsRequest.ts +++ b/src/ocpp20/schemas/GetInstalledCertificateIdsRequest.ts @@ -1,4 +1,4 @@ -export const GetInstalledCertificateIdsRequest = { +export const GetInstalledCertificateIdsRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetInstalledCertificateIdsResponse.ts b/src/ocpp20/schemas/GetInstalledCertificateIdsResponse.ts index 8d1641b..e075b71 100644 --- a/src/ocpp20/schemas/GetInstalledCertificateIdsResponse.ts +++ b/src/ocpp20/schemas/GetInstalledCertificateIdsResponse.ts @@ -1,4 +1,4 @@ -export const GetInstalledCertificateIdsResponse = { +export const GetInstalledCertificateIdsResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetLocalListVersionRequest.ts b/src/ocpp20/schemas/GetLocalListVersionRequest.ts index b560c7b..8e98204 100644 --- a/src/ocpp20/schemas/GetLocalListVersionRequest.ts +++ b/src/ocpp20/schemas/GetLocalListVersionRequest.ts @@ -1,4 +1,4 @@ -export const GetLocalListVersionRequest = { +export const GetLocalListVersionRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetLocalListVersionResponse.ts b/src/ocpp20/schemas/GetLocalListVersionResponse.ts index d34a666..16c8a9e 100644 --- a/src/ocpp20/schemas/GetLocalListVersionResponse.ts +++ b/src/ocpp20/schemas/GetLocalListVersionResponse.ts @@ -1,4 +1,4 @@ -export const GetLocalListVersionResponse = { +export const GetLocalListVersionResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetLogRequest.ts b/src/ocpp20/schemas/GetLogRequest.ts index 14b492e..639899e 100644 --- a/src/ocpp20/schemas/GetLogRequest.ts +++ b/src/ocpp20/schemas/GetLogRequest.ts @@ -1,4 +1,4 @@ -export const GetLogRequest = { +export const GetLogRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetLogResponse.ts b/src/ocpp20/schemas/GetLogResponse.ts index dab7d57..b8fee7a 100644 --- a/src/ocpp20/schemas/GetLogResponse.ts +++ b/src/ocpp20/schemas/GetLogResponse.ts @@ -1,4 +1,4 @@ -export const GetLogResponse = { +export const GetLogResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetMonitoringReportRequest.ts b/src/ocpp20/schemas/GetMonitoringReportRequest.ts index a22ebc5..cf7566d 100644 --- a/src/ocpp20/schemas/GetMonitoringReportRequest.ts +++ b/src/ocpp20/schemas/GetMonitoringReportRequest.ts @@ -1,4 +1,4 @@ -export const GetMonitoringReportRequest = { +export const GetMonitoringReportRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetMonitoringReportResponse.ts b/src/ocpp20/schemas/GetMonitoringReportResponse.ts index c80ab91..6af3629 100644 --- a/src/ocpp20/schemas/GetMonitoringReportResponse.ts +++ b/src/ocpp20/schemas/GetMonitoringReportResponse.ts @@ -1,4 +1,4 @@ -export const GetMonitoringReportResponse = { +export const GetMonitoringReportResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetReportRequest.ts b/src/ocpp20/schemas/GetReportRequest.ts index c13baef..ef95527 100644 --- a/src/ocpp20/schemas/GetReportRequest.ts +++ b/src/ocpp20/schemas/GetReportRequest.ts @@ -1,4 +1,4 @@ -export const GetReportRequest = { +export const GetReportRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetReportResponse.ts b/src/ocpp20/schemas/GetReportResponse.ts index 89ace9b..7aeaf1b 100644 --- a/src/ocpp20/schemas/GetReportResponse.ts +++ b/src/ocpp20/schemas/GetReportResponse.ts @@ -1,4 +1,4 @@ -export const GetReportResponse = { +export const GetReportResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetTransactionStatusRequest.ts b/src/ocpp20/schemas/GetTransactionStatusRequest.ts index dfb4c79..b512085 100644 --- a/src/ocpp20/schemas/GetTransactionStatusRequest.ts +++ b/src/ocpp20/schemas/GetTransactionStatusRequest.ts @@ -1,4 +1,4 @@ -export const GetTransactionStatusRequest = { +export const GetTransactionStatusRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetTransactionStatusResponse.ts b/src/ocpp20/schemas/GetTransactionStatusResponse.ts index 60ec462..c4dd4e3 100644 --- a/src/ocpp20/schemas/GetTransactionStatusResponse.ts +++ b/src/ocpp20/schemas/GetTransactionStatusResponse.ts @@ -1,4 +1,4 @@ -export const GetTransactionStatusResponse = { +export const GetTransactionStatusResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetVariablesRequest.ts b/src/ocpp20/schemas/GetVariablesRequest.ts index ebed5e2..e07e37a 100644 --- a/src/ocpp20/schemas/GetVariablesRequest.ts +++ b/src/ocpp20/schemas/GetVariablesRequest.ts @@ -1,4 +1,4 @@ -export const GetVariablesRequest = { +export const GetVariablesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/GetVariablesResponse.ts b/src/ocpp20/schemas/GetVariablesResponse.ts index 4aa9e82..2c85580 100644 --- a/src/ocpp20/schemas/GetVariablesResponse.ts +++ b/src/ocpp20/schemas/GetVariablesResponse.ts @@ -1,4 +1,4 @@ -export const GetVariablesResponse = { +export const GetVariablesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/HeartbeatRequest.ts b/src/ocpp20/schemas/HeartbeatRequest.ts index f944613..128de54 100644 --- a/src/ocpp20/schemas/HeartbeatRequest.ts +++ b/src/ocpp20/schemas/HeartbeatRequest.ts @@ -1,4 +1,4 @@ -export const HeartbeatRequest = { +export const HeartbeatRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/HeartbeatResponse.ts b/src/ocpp20/schemas/HeartbeatResponse.ts index 84a8418..632a674 100644 --- a/src/ocpp20/schemas/HeartbeatResponse.ts +++ b/src/ocpp20/schemas/HeartbeatResponse.ts @@ -1,4 +1,4 @@ -export const HeartbeatResponse = { +export const HeartbeatResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/InstallCertificateRequest.ts b/src/ocpp20/schemas/InstallCertificateRequest.ts index c82ba48..37fe03f 100644 --- a/src/ocpp20/schemas/InstallCertificateRequest.ts +++ b/src/ocpp20/schemas/InstallCertificateRequest.ts @@ -1,4 +1,4 @@ -export const InstallCertificateRequest = { +export const InstallCertificateRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/InstallCertificateResponse.ts b/src/ocpp20/schemas/InstallCertificateResponse.ts index cf17bda..3f3752a 100644 --- a/src/ocpp20/schemas/InstallCertificateResponse.ts +++ b/src/ocpp20/schemas/InstallCertificateResponse.ts @@ -1,4 +1,4 @@ -export const InstallCertificateResponse = { +export const InstallCertificateResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/LogStatusNotificationRequest.ts b/src/ocpp20/schemas/LogStatusNotificationRequest.ts index 554b6e4..cada83c 100644 --- a/src/ocpp20/schemas/LogStatusNotificationRequest.ts +++ b/src/ocpp20/schemas/LogStatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const LogStatusNotificationRequest = { +export const LogStatusNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/LogStatusNotificationResponse.ts b/src/ocpp20/schemas/LogStatusNotificationResponse.ts index d987509..94ad1f4 100644 --- a/src/ocpp20/schemas/LogStatusNotificationResponse.ts +++ b/src/ocpp20/schemas/LogStatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const LogStatusNotificationResponse = { +export const LogStatusNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/MeterValuesRequest.ts b/src/ocpp20/schemas/MeterValuesRequest.ts index 8ed274d..11c9dc1 100644 --- a/src/ocpp20/schemas/MeterValuesRequest.ts +++ b/src/ocpp20/schemas/MeterValuesRequest.ts @@ -1,4 +1,4 @@ -export const MeterValuesRequest = { +export const MeterValuesRequest: any = { "description": "Request_ Body\r\nurn:x-enexis:ecdm:uid:2:234744\r\n", "definitions": { "CustomDataType": { diff --git a/src/ocpp20/schemas/MeterValuesResponse.ts b/src/ocpp20/schemas/MeterValuesResponse.ts index d17baff..20aa43d 100644 --- a/src/ocpp20/schemas/MeterValuesResponse.ts +++ b/src/ocpp20/schemas/MeterValuesResponse.ts @@ -1,4 +1,4 @@ -export const MeterValuesResponse = { +export const MeterValuesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyChargingLimitRequest.ts b/src/ocpp20/schemas/NotifyChargingLimitRequest.ts index e2a38d2..146cd25 100644 --- a/src/ocpp20/schemas/NotifyChargingLimitRequest.ts +++ b/src/ocpp20/schemas/NotifyChargingLimitRequest.ts @@ -1,4 +1,4 @@ -export const NotifyChargingLimitRequest = { +export const NotifyChargingLimitRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyChargingLimitResponse.ts b/src/ocpp20/schemas/NotifyChargingLimitResponse.ts index fcf85a9..5a6b2e0 100644 --- a/src/ocpp20/schemas/NotifyChargingLimitResponse.ts +++ b/src/ocpp20/schemas/NotifyChargingLimitResponse.ts @@ -1,4 +1,4 @@ -export const NotifyChargingLimitResponse = { +export const NotifyChargingLimitResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyCustomerInformationRequest.ts b/src/ocpp20/schemas/NotifyCustomerInformationRequest.ts index ea02d5a..d944b9c 100644 --- a/src/ocpp20/schemas/NotifyCustomerInformationRequest.ts +++ b/src/ocpp20/schemas/NotifyCustomerInformationRequest.ts @@ -1,4 +1,4 @@ -export const NotifyCustomerInformationRequest = { +export const NotifyCustomerInformationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyCustomerInformationResponse.ts b/src/ocpp20/schemas/NotifyCustomerInformationResponse.ts index f64b3ec..27ac32f 100644 --- a/src/ocpp20/schemas/NotifyCustomerInformationResponse.ts +++ b/src/ocpp20/schemas/NotifyCustomerInformationResponse.ts @@ -1,4 +1,4 @@ -export const NotifyCustomerInformationResponse = { +export const NotifyCustomerInformationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyDisplayMessagesRequest.ts b/src/ocpp20/schemas/NotifyDisplayMessagesRequest.ts index e18faed..e19a1bb 100644 --- a/src/ocpp20/schemas/NotifyDisplayMessagesRequest.ts +++ b/src/ocpp20/schemas/NotifyDisplayMessagesRequest.ts @@ -1,4 +1,4 @@ -export const NotifyDisplayMessagesRequest = { +export const NotifyDisplayMessagesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyDisplayMessagesResponse.ts b/src/ocpp20/schemas/NotifyDisplayMessagesResponse.ts index 4dd9c40..74e9335 100644 --- a/src/ocpp20/schemas/NotifyDisplayMessagesResponse.ts +++ b/src/ocpp20/schemas/NotifyDisplayMessagesResponse.ts @@ -1,4 +1,4 @@ -export const NotifyDisplayMessagesResponse = { +export const NotifyDisplayMessagesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEVChargingNeedsRequest.ts b/src/ocpp20/schemas/NotifyEVChargingNeedsRequest.ts index 98ec9fc..221296e 100644 --- a/src/ocpp20/schemas/NotifyEVChargingNeedsRequest.ts +++ b/src/ocpp20/schemas/NotifyEVChargingNeedsRequest.ts @@ -1,4 +1,4 @@ -export const NotifyEVChargingNeedsRequest = { +export const NotifyEVChargingNeedsRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEVChargingNeedsResponse.ts b/src/ocpp20/schemas/NotifyEVChargingNeedsResponse.ts index 8363496..da0952c 100644 --- a/src/ocpp20/schemas/NotifyEVChargingNeedsResponse.ts +++ b/src/ocpp20/schemas/NotifyEVChargingNeedsResponse.ts @@ -1,4 +1,4 @@ -export const NotifyEVChargingNeedsResponse = { +export const NotifyEVChargingNeedsResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEVChargingScheduleRequest.ts b/src/ocpp20/schemas/NotifyEVChargingScheduleRequest.ts index cec8c3b..ecbe976 100644 --- a/src/ocpp20/schemas/NotifyEVChargingScheduleRequest.ts +++ b/src/ocpp20/schemas/NotifyEVChargingScheduleRequest.ts @@ -1,4 +1,4 @@ -export const NotifyEVChargingScheduleRequest = { +export const NotifyEVChargingScheduleRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEVChargingScheduleResponse.ts b/src/ocpp20/schemas/NotifyEVChargingScheduleResponse.ts index 54a9e6b..bb75ff2 100644 --- a/src/ocpp20/schemas/NotifyEVChargingScheduleResponse.ts +++ b/src/ocpp20/schemas/NotifyEVChargingScheduleResponse.ts @@ -1,4 +1,4 @@ -export const NotifyEVChargingScheduleResponse = { +export const NotifyEVChargingScheduleResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEventRequest.ts b/src/ocpp20/schemas/NotifyEventRequest.ts index 186c82e..80cda79 100644 --- a/src/ocpp20/schemas/NotifyEventRequest.ts +++ b/src/ocpp20/schemas/NotifyEventRequest.ts @@ -1,4 +1,4 @@ -export const NotifyEventRequest = { +export const NotifyEventRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyEventResponse.ts b/src/ocpp20/schemas/NotifyEventResponse.ts index 5d92db7..9ae50ab 100644 --- a/src/ocpp20/schemas/NotifyEventResponse.ts +++ b/src/ocpp20/schemas/NotifyEventResponse.ts @@ -1,4 +1,4 @@ -export const NotifyEventResponse = { +export const NotifyEventResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyMonitoringReportRequest.ts b/src/ocpp20/schemas/NotifyMonitoringReportRequest.ts index d17c237..2b3ef8f 100644 --- a/src/ocpp20/schemas/NotifyMonitoringReportRequest.ts +++ b/src/ocpp20/schemas/NotifyMonitoringReportRequest.ts @@ -1,4 +1,4 @@ -export const NotifyMonitoringReportRequest = { +export const NotifyMonitoringReportRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyMonitoringReportResponse.ts b/src/ocpp20/schemas/NotifyMonitoringReportResponse.ts index e7ec524..826d326 100644 --- a/src/ocpp20/schemas/NotifyMonitoringReportResponse.ts +++ b/src/ocpp20/schemas/NotifyMonitoringReportResponse.ts @@ -1,4 +1,4 @@ -export const NotifyMonitoringReportResponse = { +export const NotifyMonitoringReportResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyReportRequest.ts b/src/ocpp20/schemas/NotifyReportRequest.ts index a65fad1..cef15ce 100644 --- a/src/ocpp20/schemas/NotifyReportRequest.ts +++ b/src/ocpp20/schemas/NotifyReportRequest.ts @@ -1,4 +1,4 @@ -export const NotifyReportRequest = { +export const NotifyReportRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/NotifyReportResponse.ts b/src/ocpp20/schemas/NotifyReportResponse.ts index 507e5ac..71ea405 100644 --- a/src/ocpp20/schemas/NotifyReportResponse.ts +++ b/src/ocpp20/schemas/NotifyReportResponse.ts @@ -1,4 +1,4 @@ -export const NotifyReportResponse = { +export const NotifyReportResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/PublishFirmwareRequest.ts b/src/ocpp20/schemas/PublishFirmwareRequest.ts index ec5e8ab..a1cfde2 100644 --- a/src/ocpp20/schemas/PublishFirmwareRequest.ts +++ b/src/ocpp20/schemas/PublishFirmwareRequest.ts @@ -1,4 +1,4 @@ -export const PublishFirmwareRequest = { +export const PublishFirmwareRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/PublishFirmwareResponse.ts b/src/ocpp20/schemas/PublishFirmwareResponse.ts index cfdadf8..729b5e4 100644 --- a/src/ocpp20/schemas/PublishFirmwareResponse.ts +++ b/src/ocpp20/schemas/PublishFirmwareResponse.ts @@ -1,4 +1,4 @@ -export const PublishFirmwareResponse = { +export const PublishFirmwareResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/PublishFirmwareStatusNotificationRequest.ts b/src/ocpp20/schemas/PublishFirmwareStatusNotificationRequest.ts index 317c8f4..120c2a2 100644 --- a/src/ocpp20/schemas/PublishFirmwareStatusNotificationRequest.ts +++ b/src/ocpp20/schemas/PublishFirmwareStatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const PublishFirmwareStatusNotificationRequest = { +export const PublishFirmwareStatusNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/PublishFirmwareStatusNotificationResponse.ts b/src/ocpp20/schemas/PublishFirmwareStatusNotificationResponse.ts index 6261380..688c238 100644 --- a/src/ocpp20/schemas/PublishFirmwareStatusNotificationResponse.ts +++ b/src/ocpp20/schemas/PublishFirmwareStatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const PublishFirmwareStatusNotificationResponse = { +export const PublishFirmwareStatusNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReportChargingProfilesRequest.ts b/src/ocpp20/schemas/ReportChargingProfilesRequest.ts index 920e63a..820c2ef 100644 --- a/src/ocpp20/schemas/ReportChargingProfilesRequest.ts +++ b/src/ocpp20/schemas/ReportChargingProfilesRequest.ts @@ -1,4 +1,4 @@ -export const ReportChargingProfilesRequest = { +export const ReportChargingProfilesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReportChargingProfilesResponse.ts b/src/ocpp20/schemas/ReportChargingProfilesResponse.ts index 734eb9e..fa4c44e 100644 --- a/src/ocpp20/schemas/ReportChargingProfilesResponse.ts +++ b/src/ocpp20/schemas/ReportChargingProfilesResponse.ts @@ -1,4 +1,4 @@ -export const ReportChargingProfilesResponse = { +export const ReportChargingProfilesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/RequestStartTransactionRequest.ts b/src/ocpp20/schemas/RequestStartTransactionRequest.ts index f5d10eb..89cac8f 100644 --- a/src/ocpp20/schemas/RequestStartTransactionRequest.ts +++ b/src/ocpp20/schemas/RequestStartTransactionRequest.ts @@ -1,4 +1,4 @@ -export const RequestStartTransactionRequest = { +export const RequestStartTransactionRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/RequestStartTransactionResponse.ts b/src/ocpp20/schemas/RequestStartTransactionResponse.ts index ee3c13c..029aa78 100644 --- a/src/ocpp20/schemas/RequestStartTransactionResponse.ts +++ b/src/ocpp20/schemas/RequestStartTransactionResponse.ts @@ -1,4 +1,4 @@ -export const RequestStartTransactionResponse = { +export const RequestStartTransactionResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/RequestStopTransactionRequest.ts b/src/ocpp20/schemas/RequestStopTransactionRequest.ts index b70dfcd..3644173 100644 --- a/src/ocpp20/schemas/RequestStopTransactionRequest.ts +++ b/src/ocpp20/schemas/RequestStopTransactionRequest.ts @@ -1,4 +1,4 @@ -export const RequestStopTransactionRequest = { +export const RequestStopTransactionRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/RequestStopTransactionResponse.ts b/src/ocpp20/schemas/RequestStopTransactionResponse.ts index e15be28..288974c 100644 --- a/src/ocpp20/schemas/RequestStopTransactionResponse.ts +++ b/src/ocpp20/schemas/RequestStopTransactionResponse.ts @@ -1,4 +1,4 @@ -export const RequestStopTransactionResponse = { +export const RequestStopTransactionResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReservationStatusUpdateRequest.ts b/src/ocpp20/schemas/ReservationStatusUpdateRequest.ts index e6e0f02..cd58a7a 100644 --- a/src/ocpp20/schemas/ReservationStatusUpdateRequest.ts +++ b/src/ocpp20/schemas/ReservationStatusUpdateRequest.ts @@ -1,4 +1,4 @@ -export const ReservationStatusUpdateRequest = { +export const ReservationStatusUpdateRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReservationStatusUpdateResponse.ts b/src/ocpp20/schemas/ReservationStatusUpdateResponse.ts index 4d18f7d..546b55e 100644 --- a/src/ocpp20/schemas/ReservationStatusUpdateResponse.ts +++ b/src/ocpp20/schemas/ReservationStatusUpdateResponse.ts @@ -1,4 +1,4 @@ -export const ReservationStatusUpdateResponse = { +export const ReservationStatusUpdateResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReserveNowRequest.ts b/src/ocpp20/schemas/ReserveNowRequest.ts index c13d169..0d2fea4 100644 --- a/src/ocpp20/schemas/ReserveNowRequest.ts +++ b/src/ocpp20/schemas/ReserveNowRequest.ts @@ -1,4 +1,4 @@ -export const ReserveNowRequest = { +export const ReserveNowRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ReserveNowResponse.ts b/src/ocpp20/schemas/ReserveNowResponse.ts index 2106cc1..1ea230b 100644 --- a/src/ocpp20/schemas/ReserveNowResponse.ts +++ b/src/ocpp20/schemas/ReserveNowResponse.ts @@ -1,4 +1,4 @@ -export const ReserveNowResponse = { +export const ReserveNowResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ResetRequest.ts b/src/ocpp20/schemas/ResetRequest.ts index f7d097f..57713db 100644 --- a/src/ocpp20/schemas/ResetRequest.ts +++ b/src/ocpp20/schemas/ResetRequest.ts @@ -1,4 +1,4 @@ -export const ResetRequest = { +export const ResetRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/ResetResponse.ts b/src/ocpp20/schemas/ResetResponse.ts index 472b543..7b84787 100644 --- a/src/ocpp20/schemas/ResetResponse.ts +++ b/src/ocpp20/schemas/ResetResponse.ts @@ -1,4 +1,4 @@ -export const ResetResponse = { +export const ResetResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SecurityEventNotificationRequest.ts b/src/ocpp20/schemas/SecurityEventNotificationRequest.ts index 44af120..99e6ea1 100644 --- a/src/ocpp20/schemas/SecurityEventNotificationRequest.ts +++ b/src/ocpp20/schemas/SecurityEventNotificationRequest.ts @@ -1,4 +1,4 @@ -export const SecurityEventNotificationRequest = { +export const SecurityEventNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SecurityEventNotificationResponse.ts b/src/ocpp20/schemas/SecurityEventNotificationResponse.ts index 1398c94..eb4e06e 100644 --- a/src/ocpp20/schemas/SecurityEventNotificationResponse.ts +++ b/src/ocpp20/schemas/SecurityEventNotificationResponse.ts @@ -1,4 +1,4 @@ -export const SecurityEventNotificationResponse = { +export const SecurityEventNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SendLocalListRequest.ts b/src/ocpp20/schemas/SendLocalListRequest.ts index 0d3330b..901edca 100644 --- a/src/ocpp20/schemas/SendLocalListRequest.ts +++ b/src/ocpp20/schemas/SendLocalListRequest.ts @@ -1,4 +1,4 @@ -export const SendLocalListRequest = { +export const SendLocalListRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SendLocalListResponse.ts b/src/ocpp20/schemas/SendLocalListResponse.ts index 21d010b..2526b2e 100644 --- a/src/ocpp20/schemas/SendLocalListResponse.ts +++ b/src/ocpp20/schemas/SendLocalListResponse.ts @@ -1,4 +1,4 @@ -export const SendLocalListResponse = { +export const SendLocalListResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetChargingProfileRequest.ts b/src/ocpp20/schemas/SetChargingProfileRequest.ts index c4029f8..b3eb0bf 100644 --- a/src/ocpp20/schemas/SetChargingProfileRequest.ts +++ b/src/ocpp20/schemas/SetChargingProfileRequest.ts @@ -1,4 +1,4 @@ -export const SetChargingProfileRequest = { +export const SetChargingProfileRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetChargingProfileResponse.ts b/src/ocpp20/schemas/SetChargingProfileResponse.ts index ff52de0..87729c7 100644 --- a/src/ocpp20/schemas/SetChargingProfileResponse.ts +++ b/src/ocpp20/schemas/SetChargingProfileResponse.ts @@ -1,4 +1,4 @@ -export const SetChargingProfileResponse = { +export const SetChargingProfileResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetDisplayMessageRequest.ts b/src/ocpp20/schemas/SetDisplayMessageRequest.ts index 04be8a4..bd0a846 100644 --- a/src/ocpp20/schemas/SetDisplayMessageRequest.ts +++ b/src/ocpp20/schemas/SetDisplayMessageRequest.ts @@ -1,4 +1,4 @@ -export const SetDisplayMessageRequest = { +export const SetDisplayMessageRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetDisplayMessageResponse.ts b/src/ocpp20/schemas/SetDisplayMessageResponse.ts index 7f93d07..e5961ae 100644 --- a/src/ocpp20/schemas/SetDisplayMessageResponse.ts +++ b/src/ocpp20/schemas/SetDisplayMessageResponse.ts @@ -1,4 +1,4 @@ -export const SetDisplayMessageResponse = { +export const SetDisplayMessageResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetMonitoringBaseRequest.ts b/src/ocpp20/schemas/SetMonitoringBaseRequest.ts index 8ea4b73..fa3634e 100644 --- a/src/ocpp20/schemas/SetMonitoringBaseRequest.ts +++ b/src/ocpp20/schemas/SetMonitoringBaseRequest.ts @@ -1,4 +1,4 @@ -export const SetMonitoringBaseRequest = { +export const SetMonitoringBaseRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetMonitoringBaseResponse.ts b/src/ocpp20/schemas/SetMonitoringBaseResponse.ts index fb96dee..6a2bf19 100644 --- a/src/ocpp20/schemas/SetMonitoringBaseResponse.ts +++ b/src/ocpp20/schemas/SetMonitoringBaseResponse.ts @@ -1,4 +1,4 @@ -export const SetMonitoringBaseResponse = { +export const SetMonitoringBaseResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetMonitoringLevelRequest.ts b/src/ocpp20/schemas/SetMonitoringLevelRequest.ts index 8dabd73..b252ab9 100644 --- a/src/ocpp20/schemas/SetMonitoringLevelRequest.ts +++ b/src/ocpp20/schemas/SetMonitoringLevelRequest.ts @@ -1,4 +1,4 @@ -export const SetMonitoringLevelRequest = { +export const SetMonitoringLevelRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetMonitoringLevelResponse.ts b/src/ocpp20/schemas/SetMonitoringLevelResponse.ts index af34ed3..7e117b1 100644 --- a/src/ocpp20/schemas/SetMonitoringLevelResponse.ts +++ b/src/ocpp20/schemas/SetMonitoringLevelResponse.ts @@ -1,4 +1,4 @@ -export const SetMonitoringLevelResponse = { +export const SetMonitoringLevelResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetNetworkProfileRequest.ts b/src/ocpp20/schemas/SetNetworkProfileRequest.ts index 993e90d..4ac4b6b 100644 --- a/src/ocpp20/schemas/SetNetworkProfileRequest.ts +++ b/src/ocpp20/schemas/SetNetworkProfileRequest.ts @@ -1,4 +1,4 @@ -export const SetNetworkProfileRequest = { +export const SetNetworkProfileRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetNetworkProfileResponse.ts b/src/ocpp20/schemas/SetNetworkProfileResponse.ts index d07ec6e..cf8730b 100644 --- a/src/ocpp20/schemas/SetNetworkProfileResponse.ts +++ b/src/ocpp20/schemas/SetNetworkProfileResponse.ts @@ -1,4 +1,4 @@ -export const SetNetworkProfileResponse = { +export const SetNetworkProfileResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetVariableMonitoringRequest.ts b/src/ocpp20/schemas/SetVariableMonitoringRequest.ts index ab2a1f7..3f2df84 100644 --- a/src/ocpp20/schemas/SetVariableMonitoringRequest.ts +++ b/src/ocpp20/schemas/SetVariableMonitoringRequest.ts @@ -1,4 +1,4 @@ -export const SetVariableMonitoringRequest = { +export const SetVariableMonitoringRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetVariableMonitoringResponse.ts b/src/ocpp20/schemas/SetVariableMonitoringResponse.ts index 136df8e..ed4477d 100644 --- a/src/ocpp20/schemas/SetVariableMonitoringResponse.ts +++ b/src/ocpp20/schemas/SetVariableMonitoringResponse.ts @@ -1,4 +1,4 @@ -export const SetVariableMonitoringResponse = { +export const SetVariableMonitoringResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetVariablesRequest.ts b/src/ocpp20/schemas/SetVariablesRequest.ts index 8a317c6..bb01e58 100644 --- a/src/ocpp20/schemas/SetVariablesRequest.ts +++ b/src/ocpp20/schemas/SetVariablesRequest.ts @@ -1,4 +1,4 @@ -export const SetVariablesRequest = { +export const SetVariablesRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SetVariablesResponse.ts b/src/ocpp20/schemas/SetVariablesResponse.ts index 4441c8b..512add4 100644 --- a/src/ocpp20/schemas/SetVariablesResponse.ts +++ b/src/ocpp20/schemas/SetVariablesResponse.ts @@ -1,4 +1,4 @@ -export const SetVariablesResponse = { +export const SetVariablesResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SignCertificateRequest.ts b/src/ocpp20/schemas/SignCertificateRequest.ts index edf0bf6..e1ec08c 100644 --- a/src/ocpp20/schemas/SignCertificateRequest.ts +++ b/src/ocpp20/schemas/SignCertificateRequest.ts @@ -1,4 +1,4 @@ -export const SignCertificateRequest = { +export const SignCertificateRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/SignCertificateResponse.ts b/src/ocpp20/schemas/SignCertificateResponse.ts index 2323b95..5403fbd 100644 --- a/src/ocpp20/schemas/SignCertificateResponse.ts +++ b/src/ocpp20/schemas/SignCertificateResponse.ts @@ -1,4 +1,4 @@ -export const SignCertificateResponse = { +export const SignCertificateResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/StatusNotificationRequest.ts b/src/ocpp20/schemas/StatusNotificationRequest.ts index 05a0741..845a6c3 100644 --- a/src/ocpp20/schemas/StatusNotificationRequest.ts +++ b/src/ocpp20/schemas/StatusNotificationRequest.ts @@ -1,4 +1,4 @@ -export const StatusNotificationRequest = { +export const StatusNotificationRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/StatusNotificationResponse.ts b/src/ocpp20/schemas/StatusNotificationResponse.ts index a5f78b5..6af6314 100644 --- a/src/ocpp20/schemas/StatusNotificationResponse.ts +++ b/src/ocpp20/schemas/StatusNotificationResponse.ts @@ -1,4 +1,4 @@ -export const StatusNotificationResponse = { +export const StatusNotificationResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/TransactionEventRequest.ts b/src/ocpp20/schemas/TransactionEventRequest.ts index 28a2eec..71b8041 100644 --- a/src/ocpp20/schemas/TransactionEventRequest.ts +++ b/src/ocpp20/schemas/TransactionEventRequest.ts @@ -1,4 +1,4 @@ -export const TransactionEventRequest = { +export const TransactionEventRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/TransactionEventResponse.ts b/src/ocpp20/schemas/TransactionEventResponse.ts index cc11329..a2f90eb 100644 --- a/src/ocpp20/schemas/TransactionEventResponse.ts +++ b/src/ocpp20/schemas/TransactionEventResponse.ts @@ -1,4 +1,4 @@ -export const TransactionEventResponse = { +export const TransactionEventResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/TriggerMessageRequest.ts b/src/ocpp20/schemas/TriggerMessageRequest.ts index ddc9887..fed3cb2 100644 --- a/src/ocpp20/schemas/TriggerMessageRequest.ts +++ b/src/ocpp20/schemas/TriggerMessageRequest.ts @@ -1,4 +1,4 @@ -export const TriggerMessageRequest = { +export const TriggerMessageRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/TriggerMessageResponse.ts b/src/ocpp20/schemas/TriggerMessageResponse.ts index 16c8393..abc4c70 100644 --- a/src/ocpp20/schemas/TriggerMessageResponse.ts +++ b/src/ocpp20/schemas/TriggerMessageResponse.ts @@ -1,4 +1,4 @@ -export const TriggerMessageResponse = { +export const TriggerMessageResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UnlockConnectorRequest.ts b/src/ocpp20/schemas/UnlockConnectorRequest.ts index ab7209f..39844e4 100644 --- a/src/ocpp20/schemas/UnlockConnectorRequest.ts +++ b/src/ocpp20/schemas/UnlockConnectorRequest.ts @@ -1,4 +1,4 @@ -export const UnlockConnectorRequest = { +export const UnlockConnectorRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UnlockConnectorResponse.ts b/src/ocpp20/schemas/UnlockConnectorResponse.ts index da7e8db..54eebf3 100644 --- a/src/ocpp20/schemas/UnlockConnectorResponse.ts +++ b/src/ocpp20/schemas/UnlockConnectorResponse.ts @@ -1,4 +1,4 @@ -export const UnlockConnectorResponse = { +export const UnlockConnectorResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UnpublishFirmwareRequest.ts b/src/ocpp20/schemas/UnpublishFirmwareRequest.ts index c5cf080..9c4ea43 100644 --- a/src/ocpp20/schemas/UnpublishFirmwareRequest.ts +++ b/src/ocpp20/schemas/UnpublishFirmwareRequest.ts @@ -1,4 +1,4 @@ -export const UnpublishFirmwareRequest = { +export const UnpublishFirmwareRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UnpublishFirmwareResponse.ts b/src/ocpp20/schemas/UnpublishFirmwareResponse.ts index 2ac967b..2e036f4 100644 --- a/src/ocpp20/schemas/UnpublishFirmwareResponse.ts +++ b/src/ocpp20/schemas/UnpublishFirmwareResponse.ts @@ -1,4 +1,4 @@ -export const UnpublishFirmwareResponse = { +export const UnpublishFirmwareResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UpdateFirmwareRequest.ts b/src/ocpp20/schemas/UpdateFirmwareRequest.ts index 7e4123e..bad06b9 100644 --- a/src/ocpp20/schemas/UpdateFirmwareRequest.ts +++ b/src/ocpp20/schemas/UpdateFirmwareRequest.ts @@ -1,4 +1,4 @@ -export const UpdateFirmwareRequest = { +export const UpdateFirmwareRequest: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/schemas/UpdateFirmwareResponse.ts b/src/ocpp20/schemas/UpdateFirmwareResponse.ts index b0b9256..3770d00 100644 --- a/src/ocpp20/schemas/UpdateFirmwareResponse.ts +++ b/src/ocpp20/schemas/UpdateFirmwareResponse.ts @@ -1,4 +1,4 @@ -export const UpdateFirmwareResponse = { +export const UpdateFirmwareResponse: any = { "definitions": { "CustomDataType": { "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", diff --git a/src/ocpp20/types/AuthorizeRequest.d.ts b/src/ocpp20/types/AuthorizeRequest.ts similarity index 100% rename from src/ocpp20/types/AuthorizeRequest.d.ts rename to src/ocpp20/types/AuthorizeRequest.ts diff --git a/src/ocpp20/types/AuthorizeResponse.d.ts b/src/ocpp20/types/AuthorizeResponse.ts similarity index 100% rename from src/ocpp20/types/AuthorizeResponse.d.ts rename to src/ocpp20/types/AuthorizeResponse.ts diff --git a/src/ocpp20/types/BootNotificationRequest.d.ts b/src/ocpp20/types/BootNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/BootNotificationRequest.d.ts rename to src/ocpp20/types/BootNotificationRequest.ts diff --git a/src/ocpp20/types/BootNotificationResponse.d.ts b/src/ocpp20/types/BootNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/BootNotificationResponse.d.ts rename to src/ocpp20/types/BootNotificationResponse.ts diff --git a/src/ocpp20/types/CancelReservationRequest.d.ts b/src/ocpp20/types/CancelReservationRequest.ts similarity index 100% rename from src/ocpp20/types/CancelReservationRequest.d.ts rename to src/ocpp20/types/CancelReservationRequest.ts diff --git a/src/ocpp20/types/CancelReservationResponse.d.ts b/src/ocpp20/types/CancelReservationResponse.ts similarity index 100% rename from src/ocpp20/types/CancelReservationResponse.d.ts rename to src/ocpp20/types/CancelReservationResponse.ts diff --git a/src/ocpp20/types/CertificateSignedRequest.d.ts b/src/ocpp20/types/CertificateSignedRequest.ts similarity index 100% rename from src/ocpp20/types/CertificateSignedRequest.d.ts rename to src/ocpp20/types/CertificateSignedRequest.ts diff --git a/src/ocpp20/types/CertificateSignedResponse.d.ts b/src/ocpp20/types/CertificateSignedResponse.ts similarity index 100% rename from src/ocpp20/types/CertificateSignedResponse.d.ts rename to src/ocpp20/types/CertificateSignedResponse.ts diff --git a/src/ocpp20/types/ChangeAvailabilityRequest.d.ts b/src/ocpp20/types/ChangeAvailabilityRequest.ts similarity index 100% rename from src/ocpp20/types/ChangeAvailabilityRequest.d.ts rename to src/ocpp20/types/ChangeAvailabilityRequest.ts diff --git a/src/ocpp20/types/ChangeAvailabilityResponse.d.ts b/src/ocpp20/types/ChangeAvailabilityResponse.ts similarity index 100% rename from src/ocpp20/types/ChangeAvailabilityResponse.d.ts rename to src/ocpp20/types/ChangeAvailabilityResponse.ts diff --git a/src/ocpp20/types/ClearCacheRequest.d.ts b/src/ocpp20/types/ClearCacheRequest.ts similarity index 100% rename from src/ocpp20/types/ClearCacheRequest.d.ts rename to src/ocpp20/types/ClearCacheRequest.ts diff --git a/src/ocpp20/types/ClearCacheResponse.d.ts b/src/ocpp20/types/ClearCacheResponse.ts similarity index 100% rename from src/ocpp20/types/ClearCacheResponse.d.ts rename to src/ocpp20/types/ClearCacheResponse.ts diff --git a/src/ocpp20/types/ClearChargingProfileRequest.d.ts b/src/ocpp20/types/ClearChargingProfileRequest.ts similarity index 100% rename from src/ocpp20/types/ClearChargingProfileRequest.d.ts rename to src/ocpp20/types/ClearChargingProfileRequest.ts diff --git a/src/ocpp20/types/ClearChargingProfileResponse.d.ts b/src/ocpp20/types/ClearChargingProfileResponse.ts similarity index 100% rename from src/ocpp20/types/ClearChargingProfileResponse.d.ts rename to src/ocpp20/types/ClearChargingProfileResponse.ts diff --git a/src/ocpp20/types/ClearDisplayMessageRequest.d.ts b/src/ocpp20/types/ClearDisplayMessageRequest.ts similarity index 100% rename from src/ocpp20/types/ClearDisplayMessageRequest.d.ts rename to src/ocpp20/types/ClearDisplayMessageRequest.ts diff --git a/src/ocpp20/types/ClearDisplayMessageResponse.d.ts b/src/ocpp20/types/ClearDisplayMessageResponse.ts similarity index 100% rename from src/ocpp20/types/ClearDisplayMessageResponse.d.ts rename to src/ocpp20/types/ClearDisplayMessageResponse.ts diff --git a/src/ocpp20/types/ClearVariableMonitoringRequest.d.ts b/src/ocpp20/types/ClearVariableMonitoringRequest.ts similarity index 100% rename from src/ocpp20/types/ClearVariableMonitoringRequest.d.ts rename to src/ocpp20/types/ClearVariableMonitoringRequest.ts diff --git a/src/ocpp20/types/ClearVariableMonitoringResponse.d.ts b/src/ocpp20/types/ClearVariableMonitoringResponse.ts similarity index 100% rename from src/ocpp20/types/ClearVariableMonitoringResponse.d.ts rename to src/ocpp20/types/ClearVariableMonitoringResponse.ts diff --git a/src/ocpp20/types/ClearedChargingLimitRequest.d.ts b/src/ocpp20/types/ClearedChargingLimitRequest.ts similarity index 100% rename from src/ocpp20/types/ClearedChargingLimitRequest.d.ts rename to src/ocpp20/types/ClearedChargingLimitRequest.ts diff --git a/src/ocpp20/types/ClearedChargingLimitResponse.d.ts b/src/ocpp20/types/ClearedChargingLimitResponse.ts similarity index 100% rename from src/ocpp20/types/ClearedChargingLimitResponse.d.ts rename to src/ocpp20/types/ClearedChargingLimitResponse.ts diff --git a/src/ocpp20/types/CostUpdatedRequest.d.ts b/src/ocpp20/types/CostUpdatedRequest.ts similarity index 100% rename from src/ocpp20/types/CostUpdatedRequest.d.ts rename to src/ocpp20/types/CostUpdatedRequest.ts diff --git a/src/ocpp20/types/CostUpdatedResponse.d.ts b/src/ocpp20/types/CostUpdatedResponse.ts similarity index 100% rename from src/ocpp20/types/CostUpdatedResponse.d.ts rename to src/ocpp20/types/CostUpdatedResponse.ts diff --git a/src/ocpp20/types/CustomerInformationRequest.d.ts b/src/ocpp20/types/CustomerInformationRequest.ts similarity index 100% rename from src/ocpp20/types/CustomerInformationRequest.d.ts rename to src/ocpp20/types/CustomerInformationRequest.ts diff --git a/src/ocpp20/types/CustomerInformationResponse.d.ts b/src/ocpp20/types/CustomerInformationResponse.ts similarity index 100% rename from src/ocpp20/types/CustomerInformationResponse.d.ts rename to src/ocpp20/types/CustomerInformationResponse.ts diff --git a/src/ocpp20/types/DataTransferRequest.d.ts b/src/ocpp20/types/DataTransferRequest.ts similarity index 100% rename from src/ocpp20/types/DataTransferRequest.d.ts rename to src/ocpp20/types/DataTransferRequest.ts diff --git a/src/ocpp20/types/DataTransferResponse.d.ts b/src/ocpp20/types/DataTransferResponse.ts similarity index 100% rename from src/ocpp20/types/DataTransferResponse.d.ts rename to src/ocpp20/types/DataTransferResponse.ts diff --git a/src/ocpp20/types/DeleteCertificateRequest.d.ts b/src/ocpp20/types/DeleteCertificateRequest.ts similarity index 100% rename from src/ocpp20/types/DeleteCertificateRequest.d.ts rename to src/ocpp20/types/DeleteCertificateRequest.ts diff --git a/src/ocpp20/types/DeleteCertificateResponse.d.ts b/src/ocpp20/types/DeleteCertificateResponse.ts similarity index 100% rename from src/ocpp20/types/DeleteCertificateResponse.d.ts rename to src/ocpp20/types/DeleteCertificateResponse.ts diff --git a/src/ocpp20/types/FirmwareStatusNotificationRequest.d.ts b/src/ocpp20/types/FirmwareStatusNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/FirmwareStatusNotificationRequest.d.ts rename to src/ocpp20/types/FirmwareStatusNotificationRequest.ts diff --git a/src/ocpp20/types/FirmwareStatusNotificationResponse.d.ts b/src/ocpp20/types/FirmwareStatusNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/FirmwareStatusNotificationResponse.d.ts rename to src/ocpp20/types/FirmwareStatusNotificationResponse.ts diff --git a/src/ocpp20/types/Get15118EVCertificateRequest.d.ts b/src/ocpp20/types/Get15118EVCertificateRequest.ts similarity index 100% rename from src/ocpp20/types/Get15118EVCertificateRequest.d.ts rename to src/ocpp20/types/Get15118EVCertificateRequest.ts diff --git a/src/ocpp20/types/Get15118EVCertificateResponse.d.ts b/src/ocpp20/types/Get15118EVCertificateResponse.ts similarity index 100% rename from src/ocpp20/types/Get15118EVCertificateResponse.d.ts rename to src/ocpp20/types/Get15118EVCertificateResponse.ts diff --git a/src/ocpp20/types/GetBaseReportRequest.d.ts b/src/ocpp20/types/GetBaseReportRequest.ts similarity index 100% rename from src/ocpp20/types/GetBaseReportRequest.d.ts rename to src/ocpp20/types/GetBaseReportRequest.ts diff --git a/src/ocpp20/types/GetBaseReportResponse.d.ts b/src/ocpp20/types/GetBaseReportResponse.ts similarity index 100% rename from src/ocpp20/types/GetBaseReportResponse.d.ts rename to src/ocpp20/types/GetBaseReportResponse.ts diff --git a/src/ocpp20/types/GetCertificateStatusRequest.d.ts b/src/ocpp20/types/GetCertificateStatusRequest.ts similarity index 100% rename from src/ocpp20/types/GetCertificateStatusRequest.d.ts rename to src/ocpp20/types/GetCertificateStatusRequest.ts diff --git a/src/ocpp20/types/GetCertificateStatusResponse.d.ts b/src/ocpp20/types/GetCertificateStatusResponse.ts similarity index 100% rename from src/ocpp20/types/GetCertificateStatusResponse.d.ts rename to src/ocpp20/types/GetCertificateStatusResponse.ts diff --git a/src/ocpp20/types/GetChargingProfilesRequest.d.ts b/src/ocpp20/types/GetChargingProfilesRequest.ts similarity index 100% rename from src/ocpp20/types/GetChargingProfilesRequest.d.ts rename to src/ocpp20/types/GetChargingProfilesRequest.ts diff --git a/src/ocpp20/types/GetChargingProfilesResponse.d.ts b/src/ocpp20/types/GetChargingProfilesResponse.ts similarity index 100% rename from src/ocpp20/types/GetChargingProfilesResponse.d.ts rename to src/ocpp20/types/GetChargingProfilesResponse.ts diff --git a/src/ocpp20/types/GetCompositeScheduleRequest.d.ts b/src/ocpp20/types/GetCompositeScheduleRequest.ts similarity index 100% rename from src/ocpp20/types/GetCompositeScheduleRequest.d.ts rename to src/ocpp20/types/GetCompositeScheduleRequest.ts diff --git a/src/ocpp20/types/GetCompositeScheduleResponse.d.ts b/src/ocpp20/types/GetCompositeScheduleResponse.ts similarity index 100% rename from src/ocpp20/types/GetCompositeScheduleResponse.d.ts rename to src/ocpp20/types/GetCompositeScheduleResponse.ts diff --git a/src/ocpp20/types/GetDisplayMessagesRequest.d.ts b/src/ocpp20/types/GetDisplayMessagesRequest.ts similarity index 100% rename from src/ocpp20/types/GetDisplayMessagesRequest.d.ts rename to src/ocpp20/types/GetDisplayMessagesRequest.ts diff --git a/src/ocpp20/types/GetDisplayMessagesResponse.d.ts b/src/ocpp20/types/GetDisplayMessagesResponse.ts similarity index 100% rename from src/ocpp20/types/GetDisplayMessagesResponse.d.ts rename to src/ocpp20/types/GetDisplayMessagesResponse.ts diff --git a/src/ocpp20/types/GetInstalledCertificateIdsRequest.d.ts b/src/ocpp20/types/GetInstalledCertificateIdsRequest.ts similarity index 100% rename from src/ocpp20/types/GetInstalledCertificateIdsRequest.d.ts rename to src/ocpp20/types/GetInstalledCertificateIdsRequest.ts diff --git a/src/ocpp20/types/GetInstalledCertificateIdsResponse.d.ts b/src/ocpp20/types/GetInstalledCertificateIdsResponse.ts similarity index 100% rename from src/ocpp20/types/GetInstalledCertificateIdsResponse.d.ts rename to src/ocpp20/types/GetInstalledCertificateIdsResponse.ts diff --git a/src/ocpp20/types/GetLocalListVersionRequest.d.ts b/src/ocpp20/types/GetLocalListVersionRequest.ts similarity index 100% rename from src/ocpp20/types/GetLocalListVersionRequest.d.ts rename to src/ocpp20/types/GetLocalListVersionRequest.ts diff --git a/src/ocpp20/types/GetLocalListVersionResponse.d.ts b/src/ocpp20/types/GetLocalListVersionResponse.ts similarity index 100% rename from src/ocpp20/types/GetLocalListVersionResponse.d.ts rename to src/ocpp20/types/GetLocalListVersionResponse.ts diff --git a/src/ocpp20/types/GetLogRequest.d.ts b/src/ocpp20/types/GetLogRequest.ts similarity index 100% rename from src/ocpp20/types/GetLogRequest.d.ts rename to src/ocpp20/types/GetLogRequest.ts diff --git a/src/ocpp20/types/GetLogResponse.d.ts b/src/ocpp20/types/GetLogResponse.ts similarity index 100% rename from src/ocpp20/types/GetLogResponse.d.ts rename to src/ocpp20/types/GetLogResponse.ts diff --git a/src/ocpp20/types/GetMonitoringReportRequest.d.ts b/src/ocpp20/types/GetMonitoringReportRequest.ts similarity index 100% rename from src/ocpp20/types/GetMonitoringReportRequest.d.ts rename to src/ocpp20/types/GetMonitoringReportRequest.ts diff --git a/src/ocpp20/types/GetMonitoringReportResponse.d.ts b/src/ocpp20/types/GetMonitoringReportResponse.ts similarity index 100% rename from src/ocpp20/types/GetMonitoringReportResponse.d.ts rename to src/ocpp20/types/GetMonitoringReportResponse.ts diff --git a/src/ocpp20/types/GetReportRequest.d.ts b/src/ocpp20/types/GetReportRequest.ts similarity index 100% rename from src/ocpp20/types/GetReportRequest.d.ts rename to src/ocpp20/types/GetReportRequest.ts diff --git a/src/ocpp20/types/GetReportResponse.d.ts b/src/ocpp20/types/GetReportResponse.ts similarity index 100% rename from src/ocpp20/types/GetReportResponse.d.ts rename to src/ocpp20/types/GetReportResponse.ts diff --git a/src/ocpp20/types/GetTransactionStatusRequest.d.ts b/src/ocpp20/types/GetTransactionStatusRequest.ts similarity index 100% rename from src/ocpp20/types/GetTransactionStatusRequest.d.ts rename to src/ocpp20/types/GetTransactionStatusRequest.ts diff --git a/src/ocpp20/types/GetTransactionStatusResponse.d.ts b/src/ocpp20/types/GetTransactionStatusResponse.ts similarity index 100% rename from src/ocpp20/types/GetTransactionStatusResponse.d.ts rename to src/ocpp20/types/GetTransactionStatusResponse.ts diff --git a/src/ocpp20/types/GetVariablesRequest.d.ts b/src/ocpp20/types/GetVariablesRequest.ts similarity index 100% rename from src/ocpp20/types/GetVariablesRequest.d.ts rename to src/ocpp20/types/GetVariablesRequest.ts diff --git a/src/ocpp20/types/GetVariablesResponse.d.ts b/src/ocpp20/types/GetVariablesResponse.ts similarity index 100% rename from src/ocpp20/types/GetVariablesResponse.d.ts rename to src/ocpp20/types/GetVariablesResponse.ts diff --git a/src/ocpp20/types/HeartbeatRequest.d.ts b/src/ocpp20/types/HeartbeatRequest.ts similarity index 100% rename from src/ocpp20/types/HeartbeatRequest.d.ts rename to src/ocpp20/types/HeartbeatRequest.ts diff --git a/src/ocpp20/types/HeartbeatResponse.d.ts b/src/ocpp20/types/HeartbeatResponse.ts similarity index 100% rename from src/ocpp20/types/HeartbeatResponse.d.ts rename to src/ocpp20/types/HeartbeatResponse.ts diff --git a/src/ocpp20/types/InstallCertificateRequest.d.ts b/src/ocpp20/types/InstallCertificateRequest.ts similarity index 100% rename from src/ocpp20/types/InstallCertificateRequest.d.ts rename to src/ocpp20/types/InstallCertificateRequest.ts diff --git a/src/ocpp20/types/InstallCertificateResponse.d.ts b/src/ocpp20/types/InstallCertificateResponse.ts similarity index 100% rename from src/ocpp20/types/InstallCertificateResponse.d.ts rename to src/ocpp20/types/InstallCertificateResponse.ts diff --git a/src/ocpp20/types/LogStatusNotificationRequest.d.ts b/src/ocpp20/types/LogStatusNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/LogStatusNotificationRequest.d.ts rename to src/ocpp20/types/LogStatusNotificationRequest.ts diff --git a/src/ocpp20/types/LogStatusNotificationResponse.d.ts b/src/ocpp20/types/LogStatusNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/LogStatusNotificationResponse.d.ts rename to src/ocpp20/types/LogStatusNotificationResponse.ts diff --git a/src/ocpp20/types/MeterValuesRequest.d.ts b/src/ocpp20/types/MeterValuesRequest.ts similarity index 100% rename from src/ocpp20/types/MeterValuesRequest.d.ts rename to src/ocpp20/types/MeterValuesRequest.ts diff --git a/src/ocpp20/types/MeterValuesResponse.d.ts b/src/ocpp20/types/MeterValuesResponse.ts similarity index 100% rename from src/ocpp20/types/MeterValuesResponse.d.ts rename to src/ocpp20/types/MeterValuesResponse.ts diff --git a/src/ocpp20/types/NotifyChargingLimitRequest.d.ts b/src/ocpp20/types/NotifyChargingLimitRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyChargingLimitRequest.d.ts rename to src/ocpp20/types/NotifyChargingLimitRequest.ts diff --git a/src/ocpp20/types/NotifyChargingLimitResponse.d.ts b/src/ocpp20/types/NotifyChargingLimitResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyChargingLimitResponse.d.ts rename to src/ocpp20/types/NotifyChargingLimitResponse.ts diff --git a/src/ocpp20/types/NotifyCustomerInformationRequest.d.ts b/src/ocpp20/types/NotifyCustomerInformationRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyCustomerInformationRequest.d.ts rename to src/ocpp20/types/NotifyCustomerInformationRequest.ts diff --git a/src/ocpp20/types/NotifyCustomerInformationResponse.d.ts b/src/ocpp20/types/NotifyCustomerInformationResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyCustomerInformationResponse.d.ts rename to src/ocpp20/types/NotifyCustomerInformationResponse.ts diff --git a/src/ocpp20/types/NotifyDisplayMessagesRequest.d.ts b/src/ocpp20/types/NotifyDisplayMessagesRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyDisplayMessagesRequest.d.ts rename to src/ocpp20/types/NotifyDisplayMessagesRequest.ts diff --git a/src/ocpp20/types/NotifyDisplayMessagesResponse.d.ts b/src/ocpp20/types/NotifyDisplayMessagesResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyDisplayMessagesResponse.d.ts rename to src/ocpp20/types/NotifyDisplayMessagesResponse.ts diff --git a/src/ocpp20/types/NotifyEVChargingNeedsRequest.d.ts b/src/ocpp20/types/NotifyEVChargingNeedsRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyEVChargingNeedsRequest.d.ts rename to src/ocpp20/types/NotifyEVChargingNeedsRequest.ts diff --git a/src/ocpp20/types/NotifyEVChargingNeedsResponse.d.ts b/src/ocpp20/types/NotifyEVChargingNeedsResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyEVChargingNeedsResponse.d.ts rename to src/ocpp20/types/NotifyEVChargingNeedsResponse.ts diff --git a/src/ocpp20/types/NotifyEVChargingScheduleRequest.d.ts b/src/ocpp20/types/NotifyEVChargingScheduleRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyEVChargingScheduleRequest.d.ts rename to src/ocpp20/types/NotifyEVChargingScheduleRequest.ts diff --git a/src/ocpp20/types/NotifyEVChargingScheduleResponse.d.ts b/src/ocpp20/types/NotifyEVChargingScheduleResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyEVChargingScheduleResponse.d.ts rename to src/ocpp20/types/NotifyEVChargingScheduleResponse.ts diff --git a/src/ocpp20/types/NotifyEventRequest.d.ts b/src/ocpp20/types/NotifyEventRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyEventRequest.d.ts rename to src/ocpp20/types/NotifyEventRequest.ts diff --git a/src/ocpp20/types/NotifyEventResponse.d.ts b/src/ocpp20/types/NotifyEventResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyEventResponse.d.ts rename to src/ocpp20/types/NotifyEventResponse.ts diff --git a/src/ocpp20/types/NotifyMonitoringReportRequest.d.ts b/src/ocpp20/types/NotifyMonitoringReportRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyMonitoringReportRequest.d.ts rename to src/ocpp20/types/NotifyMonitoringReportRequest.ts diff --git a/src/ocpp20/types/NotifyMonitoringReportResponse.d.ts b/src/ocpp20/types/NotifyMonitoringReportResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyMonitoringReportResponse.d.ts rename to src/ocpp20/types/NotifyMonitoringReportResponse.ts diff --git a/src/ocpp20/types/NotifyReportRequest.d.ts b/src/ocpp20/types/NotifyReportRequest.ts similarity index 100% rename from src/ocpp20/types/NotifyReportRequest.d.ts rename to src/ocpp20/types/NotifyReportRequest.ts diff --git a/src/ocpp20/types/NotifyReportResponse.d.ts b/src/ocpp20/types/NotifyReportResponse.ts similarity index 100% rename from src/ocpp20/types/NotifyReportResponse.d.ts rename to src/ocpp20/types/NotifyReportResponse.ts diff --git a/src/ocpp20/types/PublishFirmwareRequest.d.ts b/src/ocpp20/types/PublishFirmwareRequest.ts similarity index 100% rename from src/ocpp20/types/PublishFirmwareRequest.d.ts rename to src/ocpp20/types/PublishFirmwareRequest.ts diff --git a/src/ocpp20/types/PublishFirmwareResponse.d.ts b/src/ocpp20/types/PublishFirmwareResponse.ts similarity index 100% rename from src/ocpp20/types/PublishFirmwareResponse.d.ts rename to src/ocpp20/types/PublishFirmwareResponse.ts diff --git a/src/ocpp20/types/PublishFirmwareStatusNotificationRequest.d.ts b/src/ocpp20/types/PublishFirmwareStatusNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/PublishFirmwareStatusNotificationRequest.d.ts rename to src/ocpp20/types/PublishFirmwareStatusNotificationRequest.ts diff --git a/src/ocpp20/types/PublishFirmwareStatusNotificationResponse.d.ts b/src/ocpp20/types/PublishFirmwareStatusNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/PublishFirmwareStatusNotificationResponse.d.ts rename to src/ocpp20/types/PublishFirmwareStatusNotificationResponse.ts diff --git a/src/ocpp20/types/ReportChargingProfilesRequest.d.ts b/src/ocpp20/types/ReportChargingProfilesRequest.ts similarity index 100% rename from src/ocpp20/types/ReportChargingProfilesRequest.d.ts rename to src/ocpp20/types/ReportChargingProfilesRequest.ts diff --git a/src/ocpp20/types/ReportChargingProfilesResponse.d.ts b/src/ocpp20/types/ReportChargingProfilesResponse.ts similarity index 100% rename from src/ocpp20/types/ReportChargingProfilesResponse.d.ts rename to src/ocpp20/types/ReportChargingProfilesResponse.ts diff --git a/src/ocpp20/types/RequestStartTransactionRequest.d.ts b/src/ocpp20/types/RequestStartTransactionRequest.ts similarity index 100% rename from src/ocpp20/types/RequestStartTransactionRequest.d.ts rename to src/ocpp20/types/RequestStartTransactionRequest.ts diff --git a/src/ocpp20/types/RequestStartTransactionResponse.d.ts b/src/ocpp20/types/RequestStartTransactionResponse.ts similarity index 100% rename from src/ocpp20/types/RequestStartTransactionResponse.d.ts rename to src/ocpp20/types/RequestStartTransactionResponse.ts diff --git a/src/ocpp20/types/RequestStopTransactionRequest.d.ts b/src/ocpp20/types/RequestStopTransactionRequest.ts similarity index 100% rename from src/ocpp20/types/RequestStopTransactionRequest.d.ts rename to src/ocpp20/types/RequestStopTransactionRequest.ts diff --git a/src/ocpp20/types/RequestStopTransactionResponse.d.ts b/src/ocpp20/types/RequestStopTransactionResponse.ts similarity index 100% rename from src/ocpp20/types/RequestStopTransactionResponse.d.ts rename to src/ocpp20/types/RequestStopTransactionResponse.ts diff --git a/src/ocpp20/types/ReservationStatusUpdateRequest.d.ts b/src/ocpp20/types/ReservationStatusUpdateRequest.ts similarity index 100% rename from src/ocpp20/types/ReservationStatusUpdateRequest.d.ts rename to src/ocpp20/types/ReservationStatusUpdateRequest.ts diff --git a/src/ocpp20/types/ReservationStatusUpdateResponse.d.ts b/src/ocpp20/types/ReservationStatusUpdateResponse.ts similarity index 100% rename from src/ocpp20/types/ReservationStatusUpdateResponse.d.ts rename to src/ocpp20/types/ReservationStatusUpdateResponse.ts diff --git a/src/ocpp20/types/ReserveNowRequest.d.ts b/src/ocpp20/types/ReserveNowRequest.ts similarity index 100% rename from src/ocpp20/types/ReserveNowRequest.d.ts rename to src/ocpp20/types/ReserveNowRequest.ts diff --git a/src/ocpp20/types/ReserveNowResponse.d.ts b/src/ocpp20/types/ReserveNowResponse.ts similarity index 100% rename from src/ocpp20/types/ReserveNowResponse.d.ts rename to src/ocpp20/types/ReserveNowResponse.ts diff --git a/src/ocpp20/types/ResetRequest.d.ts b/src/ocpp20/types/ResetRequest.ts similarity index 100% rename from src/ocpp20/types/ResetRequest.d.ts rename to src/ocpp20/types/ResetRequest.ts diff --git a/src/ocpp20/types/ResetResponse.d.ts b/src/ocpp20/types/ResetResponse.ts similarity index 100% rename from src/ocpp20/types/ResetResponse.d.ts rename to src/ocpp20/types/ResetResponse.ts diff --git a/src/ocpp20/types/SecurityEventNotificationRequest.d.ts b/src/ocpp20/types/SecurityEventNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/SecurityEventNotificationRequest.d.ts rename to src/ocpp20/types/SecurityEventNotificationRequest.ts diff --git a/src/ocpp20/types/SecurityEventNotificationResponse.d.ts b/src/ocpp20/types/SecurityEventNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/SecurityEventNotificationResponse.d.ts rename to src/ocpp20/types/SecurityEventNotificationResponse.ts diff --git a/src/ocpp20/types/SendLocalListRequest.d.ts b/src/ocpp20/types/SendLocalListRequest.ts similarity index 100% rename from src/ocpp20/types/SendLocalListRequest.d.ts rename to src/ocpp20/types/SendLocalListRequest.ts diff --git a/src/ocpp20/types/SendLocalListResponse.d.ts b/src/ocpp20/types/SendLocalListResponse.ts similarity index 100% rename from src/ocpp20/types/SendLocalListResponse.d.ts rename to src/ocpp20/types/SendLocalListResponse.ts diff --git a/src/ocpp20/types/SetChargingProfileRequest.d.ts b/src/ocpp20/types/SetChargingProfileRequest.ts similarity index 100% rename from src/ocpp20/types/SetChargingProfileRequest.d.ts rename to src/ocpp20/types/SetChargingProfileRequest.ts diff --git a/src/ocpp20/types/SetChargingProfileResponse.d.ts b/src/ocpp20/types/SetChargingProfileResponse.ts similarity index 100% rename from src/ocpp20/types/SetChargingProfileResponse.d.ts rename to src/ocpp20/types/SetChargingProfileResponse.ts diff --git a/src/ocpp20/types/SetDisplayMessageRequest.d.ts b/src/ocpp20/types/SetDisplayMessageRequest.ts similarity index 100% rename from src/ocpp20/types/SetDisplayMessageRequest.d.ts rename to src/ocpp20/types/SetDisplayMessageRequest.ts diff --git a/src/ocpp20/types/SetDisplayMessageResponse.d.ts b/src/ocpp20/types/SetDisplayMessageResponse.ts similarity index 100% rename from src/ocpp20/types/SetDisplayMessageResponse.d.ts rename to src/ocpp20/types/SetDisplayMessageResponse.ts diff --git a/src/ocpp20/types/SetMonitoringBaseRequest.d.ts b/src/ocpp20/types/SetMonitoringBaseRequest.ts similarity index 100% rename from src/ocpp20/types/SetMonitoringBaseRequest.d.ts rename to src/ocpp20/types/SetMonitoringBaseRequest.ts diff --git a/src/ocpp20/types/SetMonitoringBaseResponse.d.ts b/src/ocpp20/types/SetMonitoringBaseResponse.ts similarity index 100% rename from src/ocpp20/types/SetMonitoringBaseResponse.d.ts rename to src/ocpp20/types/SetMonitoringBaseResponse.ts diff --git a/src/ocpp20/types/SetMonitoringLevelRequest.d.ts b/src/ocpp20/types/SetMonitoringLevelRequest.ts similarity index 100% rename from src/ocpp20/types/SetMonitoringLevelRequest.d.ts rename to src/ocpp20/types/SetMonitoringLevelRequest.ts diff --git a/src/ocpp20/types/SetMonitoringLevelResponse.d.ts b/src/ocpp20/types/SetMonitoringLevelResponse.ts similarity index 100% rename from src/ocpp20/types/SetMonitoringLevelResponse.d.ts rename to src/ocpp20/types/SetMonitoringLevelResponse.ts diff --git a/src/ocpp20/types/SetNetworkProfileRequest.d.ts b/src/ocpp20/types/SetNetworkProfileRequest.ts similarity index 100% rename from src/ocpp20/types/SetNetworkProfileRequest.d.ts rename to src/ocpp20/types/SetNetworkProfileRequest.ts diff --git a/src/ocpp20/types/SetNetworkProfileResponse.d.ts b/src/ocpp20/types/SetNetworkProfileResponse.ts similarity index 100% rename from src/ocpp20/types/SetNetworkProfileResponse.d.ts rename to src/ocpp20/types/SetNetworkProfileResponse.ts diff --git a/src/ocpp20/types/SetVariableMonitoringRequest.d.ts b/src/ocpp20/types/SetVariableMonitoringRequest.ts similarity index 100% rename from src/ocpp20/types/SetVariableMonitoringRequest.d.ts rename to src/ocpp20/types/SetVariableMonitoringRequest.ts diff --git a/src/ocpp20/types/SetVariableMonitoringResponse.d.ts b/src/ocpp20/types/SetVariableMonitoringResponse.ts similarity index 100% rename from src/ocpp20/types/SetVariableMonitoringResponse.d.ts rename to src/ocpp20/types/SetVariableMonitoringResponse.ts diff --git a/src/ocpp20/types/SetVariablesRequest.d.ts b/src/ocpp20/types/SetVariablesRequest.ts similarity index 100% rename from src/ocpp20/types/SetVariablesRequest.d.ts rename to src/ocpp20/types/SetVariablesRequest.ts diff --git a/src/ocpp20/types/SetVariablesResponse.d.ts b/src/ocpp20/types/SetVariablesResponse.ts similarity index 100% rename from src/ocpp20/types/SetVariablesResponse.d.ts rename to src/ocpp20/types/SetVariablesResponse.ts diff --git a/src/ocpp20/types/SignCertificateRequest.d.ts b/src/ocpp20/types/SignCertificateRequest.ts similarity index 100% rename from src/ocpp20/types/SignCertificateRequest.d.ts rename to src/ocpp20/types/SignCertificateRequest.ts diff --git a/src/ocpp20/types/SignCertificateResponse.d.ts b/src/ocpp20/types/SignCertificateResponse.ts similarity index 100% rename from src/ocpp20/types/SignCertificateResponse.d.ts rename to src/ocpp20/types/SignCertificateResponse.ts diff --git a/src/ocpp20/types/StatusNotificationRequest.d.ts b/src/ocpp20/types/StatusNotificationRequest.ts similarity index 100% rename from src/ocpp20/types/StatusNotificationRequest.d.ts rename to src/ocpp20/types/StatusNotificationRequest.ts diff --git a/src/ocpp20/types/StatusNotificationResponse.d.ts b/src/ocpp20/types/StatusNotificationResponse.ts similarity index 100% rename from src/ocpp20/types/StatusNotificationResponse.d.ts rename to src/ocpp20/types/StatusNotificationResponse.ts diff --git a/src/ocpp20/types/TransactionEventRequest.d.ts b/src/ocpp20/types/TransactionEventRequest.ts similarity index 100% rename from src/ocpp20/types/TransactionEventRequest.d.ts rename to src/ocpp20/types/TransactionEventRequest.ts diff --git a/src/ocpp20/types/TransactionEventResponse.d.ts b/src/ocpp20/types/TransactionEventResponse.ts similarity index 100% rename from src/ocpp20/types/TransactionEventResponse.d.ts rename to src/ocpp20/types/TransactionEventResponse.ts diff --git a/src/ocpp20/types/TriggerMessageRequest.d.ts b/src/ocpp20/types/TriggerMessageRequest.ts similarity index 100% rename from src/ocpp20/types/TriggerMessageRequest.d.ts rename to src/ocpp20/types/TriggerMessageRequest.ts diff --git a/src/ocpp20/types/TriggerMessageResponse.d.ts b/src/ocpp20/types/TriggerMessageResponse.ts similarity index 100% rename from src/ocpp20/types/TriggerMessageResponse.d.ts rename to src/ocpp20/types/TriggerMessageResponse.ts diff --git a/src/ocpp20/types/UnlockConnectorRequest.d.ts b/src/ocpp20/types/UnlockConnectorRequest.ts similarity index 100% rename from src/ocpp20/types/UnlockConnectorRequest.d.ts rename to src/ocpp20/types/UnlockConnectorRequest.ts diff --git a/src/ocpp20/types/UnlockConnectorResponse.d.ts b/src/ocpp20/types/UnlockConnectorResponse.ts similarity index 100% rename from src/ocpp20/types/UnlockConnectorResponse.d.ts rename to src/ocpp20/types/UnlockConnectorResponse.ts diff --git a/src/ocpp20/types/UnpublishFirmwareRequest.d.ts b/src/ocpp20/types/UnpublishFirmwareRequest.ts similarity index 100% rename from src/ocpp20/types/UnpublishFirmwareRequest.d.ts rename to src/ocpp20/types/UnpublishFirmwareRequest.ts diff --git a/src/ocpp20/types/UnpublishFirmwareResponse.d.ts b/src/ocpp20/types/UnpublishFirmwareResponse.ts similarity index 100% rename from src/ocpp20/types/UnpublishFirmwareResponse.d.ts rename to src/ocpp20/types/UnpublishFirmwareResponse.ts diff --git a/src/ocpp20/types/UpdateFirmwareRequest.d.ts b/src/ocpp20/types/UpdateFirmwareRequest.ts similarity index 100% rename from src/ocpp20/types/UpdateFirmwareRequest.d.ts rename to src/ocpp20/types/UpdateFirmwareRequest.ts diff --git a/src/ocpp20/types/UpdateFirmwareResponse.d.ts b/src/ocpp20/types/UpdateFirmwareResponse.ts similarity index 100% rename from src/ocpp20/types/UpdateFirmwareResponse.d.ts rename to src/ocpp20/types/UpdateFirmwareResponse.ts