@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
65 lines • 7.57 kB
JavaScript
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project
//
// SPDX-License-Identifier: Apache-2.0
export * from './enums/index.js';
export { default as AuthorizeRequestSchema } from './schemas/AuthorizeRequest.json' with { type: 'json' };
export { default as AuthorizeResponseSchema } from './schemas/AuthorizeResponse.json' with { type: 'json' };
export { default as BootNotificationRequestSchema } from './schemas/BootNotificationRequest.json' with { type: 'json' };
export { default as BootNotificationResponseSchema } from './schemas/BootNotificationResponse.json' with { type: 'json' };
export { default as CancelReservationRequestSchema } from './schemas/CancelReservationRequest.json' with { type: 'json' };
export { default as CancelReservationResponseSchema } from './schemas/CancelReservationResponse.json' with { type: 'json' };
export { default as ChangeAvailabilityRequestSchema } from './schemas/ChangeAvailabilityRequest.json' with { type: 'json' };
export { default as ChangeAvailabilityResponseSchema } from './schemas/ChangeAvailabilityResponse.json' with { type: 'json' };
export { default as ChangeConfigurationRequestSchema } from './schemas/ChangeConfigurationRequest.json' with { type: 'json' };
export { default as ChangeConfigurationResponseSchema } from './schemas/ChangeConfigurationResponse.json' with { type: 'json' };
export { default as ClearCacheRequestSchema } from './schemas/ClearCacheRequest.json' with { type: 'json' };
export { default as ClearCacheResponseSchema } from './schemas/ClearCacheResponse.json' with { type: 'json' };
export { default as ClearChargingProfileRequestSchema } from './schemas/ClearChargingProfileRequest.json' with { type: 'json' };
export { default as ClearChargingProfileResponseSchema } from './schemas/ClearChargingProfileResponse.json' with { type: 'json' };
export { default as DataTransferRequestSchema } from './schemas/DataTransferRequest.json' with { type: 'json' };
export { default as DataTransferResponseSchema } from './schemas/DataTransferResponse.json' with { type: 'json' };
export { default as DiagnosticsStatusNotificationRequestSchema } from './schemas/DiagnosticsStatusNotificationRequest.json' with { type: 'json' };
export { default as DiagnosticsStatusNotificationResponseSchema } from './schemas/DiagnosticsStatusNotificationResponse.json' with { type: 'json' };
export { default as FirmwareStatusNotificationRequestSchema } from './schemas/FirmwareStatusNotificationRequest.json' with { type: 'json' };
export { default as FirmwareStatusNotificationResponseSchema } from './schemas/FirmwareStatusNotificationResponse.json' with { type: 'json' };
export { default as GetCompositeScheduleRequestSchema } from './schemas/GetCompositeScheduleRequest.json' with { type: 'json' };
export { default as GetCompositeScheduleResponseSchema } from './schemas/GetCompositeScheduleResponse.json' with { type: 'json' };
export { default as GetConfigurationRequestSchema } from './schemas/GetConfigurationRequest.json' with { type: 'json' };
export { default as GetConfigurationResponseSchema } from './schemas/GetConfigurationResponse.json' with { type: 'json' };
export { default as GetDiagnosticsRequestSchema } from './schemas/GetDiagnosticsRequest.json' with { type: 'json' };
export { default as GetDiagnosticsResponseSchema } from './schemas/GetDiagnosticsResponse.json' with { type: 'json' };
export { default as GetLocalListVersionRequestSchema } from './schemas/GetLocalListVersionRequest.json' with { type: 'json' };
export { default as GetLocalListVersionResponseSchema } from './schemas/GetLocalListVersionResponse.json' with { type: 'json' };
export { default as HeartbeatRequestSchema } from './schemas/HeartbeatRequest.json' with { type: 'json' };
export { default as HeartbeatResponseSchema } from './schemas/HeartbeatResponse.json' with { type: 'json' };
export { default as MeterValuesRequestSchema } from './schemas/MeterValuesRequest.json' with { type: 'json' };
export { default as MeterValuesResponseSchema } from './schemas/MeterValuesResponse.json' with { type: 'json' };
export { default as RemoteStartTransactionRequestSchema } from './schemas/RemoteStartTransactionRequest.json' with { type: 'json' };
export { default as RemoteStartTransactionResponseSchema } from './schemas/RemoteStartTransactionResponse.json' with { type: 'json' };
export { default as RemoteStopTransactionRequestSchema } from './schemas/RemoteStopTransactionRequest.json' with { type: 'json' };
export { default as RemoteStopTransactionResponseSchema } from './schemas/RemoteStopTransactionResponse.json' with { type: 'json' };
export { default as ReserveNowRequestSchema } from './schemas/ReserveNowRequest.json' with { type: 'json' };
export { default as ReserveNowResponseSchema } from './schemas/ReserveNowResponse.json' with { type: 'json' };
export { default as ResetRequestSchema } from './schemas/ResetRequest.json' with { type: 'json' };
export { default as ResetResponseSchema } from './schemas/ResetResponse.json' with { type: 'json' };
export { default as SendLocalListRequestSchema } from './schemas/SendLocalListRequest.json' with { type: 'json' };
export { default as SendLocalListResponseSchema } from './schemas/SendLocalListResponse.json' with { type: 'json' };
export { default as SetChargingProfileRequestSchema } from './schemas/SetChargingProfileRequest.json' with { type: 'json' };
export { default as SetChargingProfileResponseSchema } from './schemas/SetChargingProfileResponse.json' with { type: 'json' };
export { default as SignedFirmwareStatusNotificationRequestSchema } from './schemas/SignedFirmwareStatusNotificationRequest.json' with { type: 'json' };
export { default as SignedFirmwareStatusNotificationResponseSchema } from './schemas/SignedFirmwareStatusNotificationResponse.json' with { type: 'json' };
export { default as SignedUpdateFirmwareRequestSchema } from './schemas/SignedUpdateFirmwareRequest.json' with { type: 'json' };
export { default as SignedUpdateFirmwareResponseSchema } from './schemas/SignedUpdateFirmwareResponse.json' with { type: 'json' };
export { default as StartTransactionRequestSchema } from './schemas/StartTransactionRequest.json' with { type: 'json' };
export { default as StartTransactionResponseSchema } from './schemas/StartTransactionResponse.json' with { type: 'json' };
export { default as StatusNotificationRequestSchema } from './schemas/StatusNotificationRequest.json' with { type: 'json' };
export { default as StatusNotificationResponseSchema } from './schemas/StatusNotificationResponse.json' with { type: 'json' };
export { default as StopTransactionRequestSchema } from './schemas/StopTransactionRequest.json' with { type: 'json' };
export { default as StopTransactionResponseSchema } from './schemas/StopTransactionResponse.json' with { type: 'json' };
export { default as TriggerMessageRequestSchema } from './schemas/TriggerMessageRequest.json' with { type: 'json' };
export { default as TriggerMessageResponseSchema } from './schemas/TriggerMessageResponse.json' with { type: 'json' };
export { default as UnlockConnectorRequestSchema } from './schemas/UnlockConnectorRequest.json' with { type: 'json' };
export { default as UnlockConnectorResponseSchema } from './schemas/UnlockConnectorResponse.json' with { type: 'json' };
export { default as UpdateFirmwareRequestSchema } from './schemas/UpdateFirmwareRequest.json' with { type: 'json' };
export { default as UpdateFirmwareResponseSchema } from './schemas/UpdateFirmwareResponse.json' with { type: 'json' };
//# sourceMappingURL=index.js.map