We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the ocpp-eliftech package at https://www.npmjs.com/package/ocpp-eliftech seems not export the consts defined in each command.
for example in the command StatusNotification, the consts like these are not accessible from codebase that is using this package.
export const STATUS_SUSPENDEDEV = 'SuspendedEV'; export const STATUS_FINISHING = 'Finishing'; export const STATUS_RESERVED = 'Reserved'; export const STATUS_UNAVAILABLE = 'Unavailable'; export const STATUS_FAULTED = 'Faulted';
The text was updated successfully, but these errors were encountered:
Have a look at the example code where they show how to access these:
import * as BootNotificationConst from 'ocpp-eliftech/dist/commands/BootNotification.js'; ... return { status: BootNotificationConst.STATUS_ACCEPTED, };
Sorry, something went wrong.
No branches or pull requests
the ocpp-eliftech package at https://www.npmjs.com/package/ocpp-eliftech seems not export the consts defined in each command.
for example in the command StatusNotification, the consts like these are not accessible from codebase that is using this package.
export const STATUS_SUSPENDEDEV = 'SuspendedEV';
export const STATUS_FINISHING = 'Finishing';
export const STATUS_RESERVED = 'Reserved';
export const STATUS_UNAVAILABLE = 'Unavailable';
export const STATUS_FAULTED = 'Faulted';
The text was updated successfully, but these errors were encountered: