export default {
'{src,tests}/**/*.{ts,tsx,cts,mts}': ['prettier --cache --write', 'eslint --cache --fix'],
'**/*.{json,md,yml,yaml}': ['prettier --cache --write'],
- '**/*.{js,jsx,cjs,mjs}': ['prettier --cache --write', 'eslint --cache --fix'],
+ '**/*.{js,jsx,cjs,mjs}': ['prettier --cache --write', 'eslint --cache --fix']
}
"printWidth": 100,
"semi": false,
"singleQuote": true,
- "trailingComma": "es5"
+ "trailingComma": "none"
}
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"auto-changelog": "^2.4.0",
- "c8": "^9.0.0",
+ "c8": "^9.1.0",
"clinic": "^13.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.11",
"glob": "^10.3.10",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
- "prettier": "^3.1.1",
+ "prettier": "^3.2.0",
"release-it": "^17.0.1",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
specifier: ^2.4.0
version: 2.4.0
c8:
- specifier: ^9.0.0
- version: 9.0.0
+ specifier: ^9.1.0
+ version: 9.1.0
clinic:
specifier: ^13.0.0
version: 13.0.0
version: 16.6.2(eslint@8.56.0)
eslint-plugin-prettier:
specifier: ^5.1.3
- version: 5.1.3(eslint@8.56.0)(prettier@3.1.1)
+ version: 5.1.3(eslint@8.56.0)(prettier@3.2.0)
eslint-plugin-tsdoc:
specifier: ^0.2.17
version: 0.2.17
specifier: ^15.2.0
version: 15.2.0
prettier:
- specifier: ^3.1.1
- version: 3.1.1
+ specifier: ^3.2.0
+ version: 3.2.0
release-it:
specifier: ^17.0.1
version: 17.0.1(typescript@5.3.3)
run-applescript: 5.0.0
dev: true
- /c8@9.0.0:
- resolution: {integrity: sha512-nFJhU2Cz6Frh2awk3IW7wwk3wx27/U2v8ojQCHGc1GWTCHS6aMu4lal327/ZnnYj7oSThGF1X3qUP1yzAJBcOQ==}
+ /c8@9.1.0:
+ resolution: {integrity: sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==}
engines: {node: '>=14.14.0'}
hasBin: true
dependencies:
semver: 7.5.4
dev: true
- /eslint-plugin-prettier@5.1.3(eslint@8.56.0)(prettier@3.1.1):
+ /eslint-plugin-prettier@5.1.3(eslint@8.56.0)(prettier@3.2.0):
resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
optional: true
dependencies:
eslint: 8.56.0
- prettier: 3.1.1
+ prettier: 3.2.0
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
dev: true
fast-diff: 1.3.0
dev: true
- /prettier@3.1.1:
- resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==}
+ /prettier@3.2.0:
+ resolution: {integrity: sha512-/vBUecTGaPlRVwyZVROVC58bYIScqaoEJzZmzQXXrZOzqn0TwWz0EnOozOlFO/YAImRnb7XsKpTCd3m1SjS2Ww==}
engines: {node: '>=14'}
hasBin: true
dev: true
)
)
logger.info(
- `${this.logPrefix(
- connectorId
- )} transaction started with id ${this.chargingStation.getConnectorStatus(connectorId)
- ?.transactionId} and will stop in ${formatDurationMilliSeconds(waitTrxEnd)}`
+ `${this.logPrefix(connectorId)} transaction started with id ${
+ this.chargingStation.getConnectorStatus(connectorId)?.transactionId
+ } and will stop in ${formatDurationMilliSeconds(waitTrxEnd)}`
)
await sleep(waitTrxEnd)
await this.stopTransaction(connectorId)
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
++this.connectorsStatus.get(connectorId)!.skippedTransactions
logger.info(
- `${this.logPrefix(connectorId)} skipped consecutively ${this.connectorsStatus.get(
- connectorId
- )?.skippedConsecutiveTransactions}/${this.connectorsStatus.get(connectorId)
- ?.skippedTransactions} transaction(s)`
+ `${this.logPrefix(connectorId)} skipped consecutively ${
+ this.connectorsStatus.get(connectorId)?.skippedConsecutiveTransactions
+ }/${this.connectorsStatus.get(connectorId)?.skippedTransactions} transaction(s)`
)
}
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
let stopResponse: StopTransactionResponse | undefined
if (this.chargingStation.getConnectorStatus(connectorId)?.transactionStarted === true) {
logger.info(
- `${this.logPrefix(
- connectorId
- )} stop transaction with id ${this.chargingStation.getConnectorStatus(connectorId)
- ?.transactionId}`
+ `${this.logPrefix(connectorId)} stop transaction with id ${
+ this.chargingStation.getConnectorStatus(connectorId)?.transactionId
+ }`
)
stopResponse = await this.chargingStation.stopTransactionOnConnector(connectorId, reason)
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
succeeded = 0,
missingChargingStationsConfiguration = 1,
noChargingStationTemplates = 2,
- gracefulShutdownError = 3,
+ gracefulShutdownError = 3
}
export class Bootstrap extends EventEmitter {
}
} else {
logger.error(
- `${this.logPrefix()} Registration failure: maximum retries reached (${registrationRetryCount}) or retry disabled (${this
- .stationInfo?.registrationMaxRetries})`
+ `${this.logPrefix()} Registration failure: maximum retries reached (${registrationRetryCount}) or retry disabled (${
+ this.stationInfo?.registrationMaxRetries
+ })`
)
}
this.autoReconnectRetryCount = 0
for (const connectorId of connectors.keys()) {
if (connectorId > 0 && connectors.get(connectorId)?.transactionStarted === true) {
logger.warn(
- `${logPrefix} Connector id ${connectorId} at initialization has a transaction started with id ${connectors.get(
- connectorId
- )?.transactionId}`
+ `${logPrefix} Connector id ${connectorId} at initialization has a transaction started with id ${
+ connectors.get(connectorId)?.transactionId
+ }`
)
}
if (connectorId === 0) {
enum CacheType {
chargingStationTemplate = 'chargingStationTemplate',
- chargingStationConfiguration = 'chargingStationConfiguration',
+ chargingStationConfiguration = 'chargingStationConfiguration'
}
type CacheValueType = ChargingStationTemplate | ChargingStationConfiguration
await this.chargingStation.ocppRequestService.requestHandler<
StatusNotificationRequest,
StatusNotificationResponse
- >(
- this.chargingStation,
- RequestCommand.STATUS_NOTIFICATION,
- requestPayload,
- requestParams
- )
+ >(this.chargingStation, RequestCommand.STATUS_NOTIFICATION, requestPayload, requestParams)
],
[
BroadcastChannelProcedureName.HEARTBEAT,
)
}
const remoteStartTransactionLogMsg = `
- ${chargingStation.logPrefix()} Transaction remotely STARTED on ${chargingStation.stationInfo
- ?.chargingStationId}#${transactionConnectorId} for idTag '${idTag}'`
+ ${chargingStation.logPrefix()} Transaction remotely STARTED on ${
+ chargingStation.stationInfo?.chargingStationId
+ }#${transactionConnectorId} for idTag '${idTag}'`
await OCPP16ServiceUtils.sendAndSetConnectorStatus(
chargingStation,
transactionConnectorId,
logger.warn(
`${chargingStation.logPrefix()} Starting transaction with id ${
payload.transactionId
- } REJECTED on ${chargingStation.stationInfo
- ?.chargingStationId}#${connectorId} with status '${payload.idTagInfo.status}', idTag '${
+ } REJECTED on ${
+ chargingStation.stationInfo?.chargingStationId
+ }#${connectorId} with status '${payload.idTagInfo.status}', idTag '${
requestPayload.idTag
}'${
OCPP16ServiceUtils.hasReservation(chargingStation, connectorId, requestPayload.idTag)
chargingStation.stopMeterValues(transactionConnectorId)
const logMsg = `${chargingStation.logPrefix()} Transaction with id ${
requestPayload.transactionId
- } STOPPED on ${chargingStation.stationInfo
- ?.chargingStationId}#${transactionConnectorId} with status '${payload.idTagInfo?.status}'`
+ } STOPPED on ${
+ chargingStation.stationInfo?.chargingStationId
+ }#${transactionConnectorId} with status '${payload.idTagInfo?.status}'`
if (
payload.idTagInfo == null ||
payload.idTagInfo.status === OCPP16AuthorizationStatus.ACCEPTED
this.incomingRequestHandler = this.incomingRequestHandler.bind(this) as <
ReqType extends JsonType,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
- ResType extends JsonType,
+ ResType extends JsonType
>(
chargingStation: ChargingStation,
messageId: string,
commandPayload: ReqType
) => Promise<void>
this.validateIncomingRequestPayload = this.validateIncomingRequestPayload.bind(this) as <
- T extends JsonType,
+ T extends JsonType
>(
chargingStation: ChargingStation,
commandName: IncomingRequestCommand,
this.requestHandler = this.requestHandler.bind(this) as <
// eslint-disable-next-line @typescript-eslint/no-unused-vars
ReqType extends JsonType,
- ResType extends JsonType,
+ ResType extends JsonType
>(
chargingStation: ChargingStation,
commandName: RequestCommand,
>()
this.responseHandler = this.responseHandler.bind(this) as <
ReqType extends JsonType,
- ResType extends JsonType,
+ ResType extends JsonType
>(
chargingStation: ChargingStation,
commandName: RequestCommand,
logger.warn(
`${chargingStation.logPrefix()} OCPP ${
chargingStation.stationInfo.ocppVersion
- } connector id ${connectorId} status transition from '${chargingStation.getConnectorStatus(
- connectorId
- )?.status}' to '${status}' is not allowed`
+ } connector id ${connectorId} status transition from '${
+ chargingStation.getConnectorStatus(connectorId)?.status
+ }' to '${status}' is not allowed`
)
}
return transitionAllowed
GET = 'GET',
PUT = 'PUT',
POST = 'POST',
- PATCH = 'PATCH',
+ PATCH = 'PATCH'
}
export class UIHttpServer extends AbstractUIServer {
const [protocol, version, procedureName] = req.url?.split('/').slice(1) as [
Protocol,
ProtocolVersion,
- ProcedureName,
+ ProcedureName
]
const uuid = generateUUID()
this.responseHandlers.set(uuid, res)
export enum IdTagDistribution {
RANDOM = 'random',
ROUND_ROBIN = 'round-robin',
- CONNECTOR_AFFINITY = 'connector-affinity',
+ CONNECTOR_AFFINITY = 'connector-affinity'
}
export interface AutomaticTransactionGeneratorConfiguration {
registered = 'registered',
accepted = 'accepted',
updated = 'updated',
- connectorStatusChanged = 'connectorStatusChanged',
+ connectorStatusChanged = 'connectorStatusChanged'
}
export enum CurrentType {
AC = 'AC',
- DC = 'DC',
+ DC = 'DC'
}
export enum PowerUnits {
WATT = 'W',
- KILO_WATT = 'kW',
+ KILO_WATT = 'kW'
}
export enum AmpereUnits {
MILLI_AMPERE = 'mA',
CENTI_AMPERE = 'cA',
DECI_AMPERE = 'dA',
- AMPERE = 'A',
+ AMPERE = 'A'
}
export enum Voltage {
VOLTAGE_110 = 110,
VOLTAGE_230 = 230,
VOLTAGE_400 = 400,
- VOLTAGE_800 = 800,
+ VOLTAGE_800 = 800
}
export type WsOptions = ClientOptions & ClientRequestArgs
CSMSRootCertificate = 'CSMSRootCertificate',
ManufacturerRootCertificate = 'ManufacturerRootCertificate',
ChargingStationCertificate = 'ChargingStationCertificate',
- V2GCertificate = 'V2GCertificate',
+ V2GCertificate = 'V2GCertificate'
}
export interface ChargingStationTemplate {
}
enum ChargingStationMessageEvents {
- performanceStatistics = 'performanceStatistics',
+ performanceStatistics = 'performanceStatistics'
}
export const ChargingStationWorkerMessageEvents = {
log = 'log',
performanceStorage = 'performanceStorage',
worker = 'worker',
- uiServer = 'uiServer',
+ uiServer = 'uiServer'
}
export enum SupervisionUrlDistribution {
ROUND_ROBIN = 'round-robin',
RANDOM = 'random',
- CHARGING_STATION_AFFINITY = 'charging-station-affinity',
+ CHARGING_STATION_AFFINITY = 'charging-station-affinity'
}
export interface StationTemplateUrl {
export enum ApplicationProtocolVersion {
VERSION_11 = 1.1,
- VERSION_20 = 2.0,
+ VERSION_20 = 2.0
}
export interface UIServerConfiguration {
ChargingStationConfiguration = 'charging station configuration',
ChargingStationTemplate = 'charging station template',
PerformanceRecords = 'performance records',
- JsonSchema = 'json schema',
+ JsonSchema = 'json schema'
}
MONGO_DB = 'mongodb',
MYSQL = 'mysql',
MARIA_DB = 'mariadb',
- SQLITE = 'sqlite',
+ SQLITE = 'sqlite'
}
export enum DBName {
MONGO_DB = 'MongoDB',
MYSQL = 'MySQL',
MARIA_DB = 'MariaDB',
- SQLITE = 'SQLite',
+ SQLITE = 'SQLite'
}
import type { BroadcastChannelResponsePayload } from './WorkerBroadcastChannel.js'
export enum Protocol {
- UI = 'ui',
+ UI = 'ui'
}
export enum ApplicationProtocol {
HTTP = 'http',
- WS = 'ws',
+ WS = 'ws'
}
export enum AuthenticationType {
- BASIC_AUTH = 'basic-auth',
+ BASIC_AUTH = 'basic-auth'
}
export enum ProtocolVersion {
- '0.0.1' = '0.0.1',
+ '0.0.1' = '0.0.1'
}
export type ProtocolRequest = [string, ProcedureName, RequestPayload]
METER_VALUES = 'meterValues',
DATA_TRANSFER = 'dataTransfer',
DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
- FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification',
+ FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification'
}
export interface RequestPayload extends JsonObject {
export enum ResponseStatus {
SUCCESS = 'success',
- FAILURE = 'failure',
+ FAILURE = 'failure'
}
export interface ResponsePayload extends JsonObject {
CLOSE_SERVICE_RESTART = 1012,
CLOSE_TRY_AGAIN_LATER = 1013,
CLOSE_BAD_GATEWAY = 1014,
- CLOSE_TLS_HANDSHAKE = 1015,
+ CLOSE_TLS_HANDSHAKE = 1015
}
export interface WSError extends Error {
export type BroadcastChannelRequest = [
string,
BroadcastChannelProcedureName,
- BroadcastChannelRequestPayload,
+ BroadcastChannelRequestPayload
]
export type BroadcastChannelResponse = [string, BroadcastChannelResponsePayload]
METER_VALUES = 'meterValues',
DATA_TRANSFER = 'dataTransfer',
DIAGNOSTICS_STATUS_NOTIFICATION = 'diagnosticsStatusNotification',
- FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification',
+ FIRMWARE_STATUS_NOTIFICATION = 'firmwareStatusNotification'
}
export interface BroadcastChannelRequestPayload extends RequestPayload {
READER_FAILURE = 'ReaderFailure',
RESET_FAILURE = 'ResetFailure',
UNDER_VOLTAGE = 'UnderVoltage',
- WEAK_SIGNAL = 'WeakSignal',
+ WEAK_SIGNAL = 'WeakSignal'
}
Finishing = 'Finishing',
Reserved = 'Reserved',
Unavailable = 'Unavailable',
- Faulted = 'Faulted',
+ Faulted = 'Faulted'
}
export enum OCPP16ChargingRateUnitType {
WATT = 'W',
- AMPERE = 'A',
+ AMPERE = 'A'
}
export enum OCPP16ChargingProfileKindType {
ABSOLUTE = 'Absolute',
RECURRING = 'Recurring',
- RELATIVE = 'Relative',
+ RELATIVE = 'Relative'
}
export enum OCPP16ChargingProfilePurposeType {
CHARGE_POINT_MAX_PROFILE = 'ChargePointMaxProfile',
TX_DEFAULT_PROFILE = 'TxDefaultProfile',
- TX_PROFILE = 'TxProfile',
+ TX_PROFILE = 'TxProfile'
}
export enum OCPP16RecurrencyKindType {
DAILY = 'Daily',
- WEEKLY = 'Weekly',
+ WEEKLY = 'Weekly'
}
LocalAuthListManagement = 'LocalAuthListManagement',
Reservation = 'Reservation',
SmartCharging = 'SmartCharging',
- RemoteTrigger = 'RemoteTrigger',
+ RemoteTrigger = 'RemoteTrigger'
}
export enum OCPP16StandardParametersKey {
ChargingScheduleAllowedChargingRateUnit = 'ChargingScheduleAllowedChargingRateUnit',
ChargingScheduleMaxPeriods = 'ChargingScheduleMaxPeriods',
ConnectorSwitch3to1PhaseSupported = 'ConnectorSwitch3to1PhaseSupported',
- MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled',
+ MaxChargingProfilesInstalled = 'MaxChargingProfilesInstalled'
}
export enum OCPP16VendorParametersKey {
- ConnectionUrl = 'ConnectionUrl',
+ ConnectionUrl = 'ConnectionUrl'
}
Idle = 'Idle',
Uploaded = 'Uploaded',
UploadFailed = 'UploadFailed',
- Uploading = 'Uploading',
+ Uploading = 'Uploading'
}
TEMP_CELSIUS = 'Celsius',
TEMP_FAHRENHEIT = 'Fahrenheit',
TEMP_KELVIN = 'K',
- PERCENT = 'Percent',
+ PERCENT = 'Percent'
}
export enum OCPP16MeterValueContext {
SAMPLE_PERIODIC = 'Sample.Periodic',
TRANSACTION_BEGIN = 'Transaction.Begin',
TRANSACTION_END = 'Transaction.End',
- TRIGGER = 'Trigger',
+ TRIGGER = 'Trigger'
}
export enum OCPP16MeterValueMeasurand {
FAN_RPM = 'RPM',
STATE_OF_CHARGE = 'SoC',
TEMPERATURE = 'Temperature',
- VOLTAGE = 'Voltage',
+ VOLTAGE = 'Voltage'
}
export enum OCPP16MeterValueLocation {
CABLE = 'Cable',
EV = 'EV',
INLET = 'Inlet',
- OUTLET = 'Outlet',
+ OUTLET = 'Outlet'
}
export enum OCPP16MeterValuePhase {
L3_N = 'L3-N',
L1_L2 = 'L1-L2',
L2_L3 = 'L2-L3',
- L3_L1 = 'L3-L1',
+ L3_L1 = 'L3-L1'
}
enum OCPP16MeterValueFormat {
RAW = 'Raw',
- SIGNED_DATA = 'SignedData',
+ SIGNED_DATA = 'SignedData'
}
export interface OCPP16SampledValue extends JsonObject {
METER_VALUES = 'MeterValues',
DIAGNOSTICS_STATUS_NOTIFICATION = 'DiagnosticsStatusNotification',
FIRMWARE_STATUS_NOTIFICATION = 'FirmwareStatusNotification',
- DATA_TRANSFER = 'DataTransfer',
+ DATA_TRANSFER = 'DataTransfer'
}
export enum OCPP16IncomingRequestCommand {
DATA_TRANSFER = 'DataTransfer',
UPDATE_FIRMWARE = 'UpdateFirmware',
RESERVE_NOW = 'ReserveNow',
- CANCEL_RESERVATION = 'CancelReservation',
+ CANCEL_RESERVATION = 'CancelReservation'
}
export type OCPP16HeartbeatRequest = EmptyObject
enum ResetType {
HARD = 'Hard',
- SOFT = 'Soft',
+ SOFT = 'Soft'
}
export interface ResetRequest extends JsonObject {
export enum OCPP16AvailabilityType {
Inoperative = 'Inoperative',
- Operative = 'Operative',
+ Operative = 'Operative'
}
export interface OCPP16ChangeAvailabilityRequest extends JsonObject {
Idle = 'Idle',
InstallationFailed = 'InstallationFailed',
Installing = 'Installing',
- Installed = 'Installed',
+ Installed = 'Installed'
}
export type OCPP16FirmwareStatusNotificationRequest = {
FirmwareStatusNotification = 'FirmwareStatusNotification',
Heartbeat = 'Heartbeat',
MeterValues = 'MeterValues',
- StatusNotification = 'StatusNotification',
+ StatusNotification = 'StatusNotification'
}
export interface OCPP16TriggerMessageRequest extends JsonObject {
export enum OCPP16UnlockStatus {
UNLOCKED = 'Unlocked',
UNLOCK_FAILED = 'UnlockFailed',
- NOT_SUPPORTED = 'NotSupported',
+ NOT_SUPPORTED = 'NotSupported'
}
export interface UnlockConnectorResponse extends JsonObject {
ACCEPTED = 'Accepted',
REJECTED = 'Rejected',
REBOOT_REQUIRED = 'RebootRequired',
- NOT_SUPPORTED = 'NotSupported',
+ NOT_SUPPORTED = 'NotSupported'
}
export interface ChangeConfigurationResponse extends JsonObject {
export enum OCPP16ChargingProfileStatus {
ACCEPTED = 'Accepted',
REJECTED = 'Rejected',
- NOT_SUPPORTED = 'NotSupported',
+ NOT_SUPPORTED = 'NotSupported'
}
export interface OCPP16GetCompositeScheduleResponse extends JsonObject {
export enum OCPP16AvailabilityStatus {
ACCEPTED = 'Accepted',
REJECTED = 'Rejected',
- SCHEDULED = 'Scheduled',
+ SCHEDULED = 'Scheduled'
}
export interface OCPP16ChangeAvailabilityResponse extends JsonObject {
export enum OCPP16ClearChargingProfileStatus {
ACCEPTED = 'Accepted',
- UNKNOWN = 'Unknown',
+ UNKNOWN = 'Unknown'
}
export interface OCPP16ClearChargingProfileResponse extends JsonObject {
export enum OCPP16TriggerMessageStatus {
ACCEPTED = 'Accepted',
REJECTED = 'Rejected',
- NOT_IMPLEMENTED = 'NotImplemented',
+ NOT_IMPLEMENTED = 'NotImplemented'
}
export interface OCPP16TriggerMessageResponse extends JsonObject {
ACCEPTED = 'Accepted',
REJECTED = 'Rejected',
UNKNOWN_MESSAGE_ID = 'UnknownMessageId',
- UNKNOWN_VENDOR_ID = 'UnknownVendorId',
+ UNKNOWN_VENDOR_ID = 'UnknownVendorId'
}
export interface OCPP16DataTransferResponse extends JsonObject {
OCCUPIED = 'Occupied',
REJECTED = 'Rejected',
UNAVAILABLE = 'Unavailable',
- NOT_SUPPORTED = 'NotSupported',
+ NOT_SUPPORTED = 'NotSupported'
}
export interface OCPP16ReserveNowResponse extends JsonObject {
REMOTE = 'Remote',
SOFT_RESET = 'SoftReset',
UNLOCK_COMMAND = 'UnlockCommand',
- DE_AUTHORIZED = 'DeAuthorized',
+ DE_AUTHORIZED = 'DeAuthorized'
}
export enum OCPP16AuthorizationStatus {
BLOCKED = 'Blocked',
EXPIRED = 'Expired',
INVALID = 'Invalid',
- CONCURRENT_TX = 'ConcurrentTx',
+ CONCURRENT_TX = 'ConcurrentTx'
}
interface IdTagInfo extends JsonObject {
boolean = 'boolean',
OptionList = 'OptionList',
SequenceList = 'SequenceList',
- MemberList = 'MemberList',
+ MemberList = 'MemberList'
}
export enum BootReasonEnumType {
ScheduledReset = 'ScheduledReset',
Triggered = 'Triggered',
Unknown = 'Unknown',
- Watchdog = 'Watchdog',
+ Watchdog = 'Watchdog'
}
export enum OperationalStatusEnumType {
Operative = 'Operative',
- Inoperative = 'Inoperative',
+ Inoperative = 'Inoperative'
}
export enum OCPP20ConnectorStatusEnumType {
Occupied = 'Occupied',
Reserved = 'Reserved',
Unavailable = 'Unavailable',
- Faulted = 'Faulted',
+ Faulted = 'Faulted'
}
export type GenericStatusEnumType = GenericStatus
export enum HashAlgorithmEnumType {
SHA256 = 'SHA256',
SHA384 = 'SHA384',
- SHA512 = 'SHA512',
+ SHA512 = 'SHA512'
}
export enum GetCertificateIdUseEnumType {
MORootCertificate = 'MORootCertificate',
CSMSRootCertificate = 'CSMSRootCertificate',
V2GCertificateChain = 'V2GCertificateChain',
- ManufacturerRootCertificate = 'ManufacturerRootCertificate',
+ ManufacturerRootCertificate = 'ManufacturerRootCertificate'
}
export enum GetCertificateStatusEnumType {
Accepted = 'Accepted',
- Failed = 'Failed',
+ Failed = 'Failed'
}
export enum GetInstalledCertificateStatusEnumType {
Accepted = 'Accepted',
- NotFound = 'NotFound',
+ NotFound = 'NotFound'
}
export enum InstallCertificateStatusEnumType {
Accepted = 'Accepted',
Rejected = 'Rejected',
- Failed = 'Failed',
+ Failed = 'Failed'
}
export enum InstallCertificateUseEnumType {
V2GRootCertificate = 'V2GRootCertificate',
MORootCertificate = 'MORootCertificate',
CSMSRootCertificate = 'CSMSRootCertificate',
- ManufacturerRootCertificate = 'ManufacturerRootCertificate',
+ ManufacturerRootCertificate = 'ManufacturerRootCertificate'
}
export enum DeleteCertificateStatusEnumType {
Accepted = 'Accepted',
Failed = 'Failed',
- NotFound = 'NotFound',
+ NotFound = 'NotFound'
}
export enum CertificateActionEnumType {
Install = 'Install',
- Update = 'Update',
+ Update = 'Update'
}
export enum CertificateSigningUseEnumType {
ChargingStationCertificate = 'ChargingStationCertificate',
- V2GCertificate = 'V2GCertificate',
+ V2GCertificate = 'V2GCertificate'
}
export type CertificateSignedStatusEnumType = GenericStatusEnumType
export enum OCPP20RequestCommand {
BOOT_NOTIFICATION = 'BootNotification',
HEARTBEAT = 'Heartbeat',
- STATUS_NOTIFICATION = 'StatusNotification',
+ STATUS_NOTIFICATION = 'StatusNotification'
}
export enum OCPP20IncomingRequestCommand {
CLEAR_CACHE = 'ClearCache',
REQUEST_START_TRANSACTION = 'RequestStartTransaction',
- REQUEST_STOP_TRANSACTION = 'RequestStopTransaction',
+ REQUEST_STOP_TRANSACTION = 'RequestStopTransaction'
}
type ModemType = {
SecurityCtrlr = 'SecurityCtrlr',
SmartChargingCtrlr = 'SmartChargingCtrlr',
TariffCostCtrlr = 'TariffCostCtrlr',
- TxCtrlr = 'TxCtrlr',
+ TxCtrlr = 'TxCtrlr'
}
export enum OCPP20RequiredVariableName {
TxEndedMeasurands = 'TxEndedMeasurands',
TxStartedMeasurands = 'TxStartedMeasurands',
TxUpdatedMeasurands = 'TxUpdatedMeasurands',
- TxUpdatedInterval = 'TxUpdatedInterval',
+ TxUpdatedInterval = 'TxUpdatedInterval'
}
export enum OCPP20OptionalVariableName {
HeartbeatInterval = 'HeartbeatInterval',
- WebSocketPingInterval = 'WebSocketPingInterval',
+ WebSocketPingInterval = 'WebSocketPingInterval'
}
export enum OCPP20VendorVariableName {
- ConnectionUrl = 'ConnectionUrl',
+ ConnectionUrl = 'ConnectionUrl'
}
enum AttributeEnumType {
Actual = 'Actual',
Target = 'Target',
MinSet = 'MinSet',
- MaxSet = 'MaxSet',
+ MaxSet = 'MaxSet'
}
type ComponentType = {
UnknownComponent = 'UnknownComponent',
UnknownVariable = 'UnknownVariable',
NotSupportedAttributeType = 'NotSupportedAttributeType',
- RebootRequired = 'RebootRequired',
+ RebootRequired = 'RebootRequired'
}
export type OCPP20SetVariableResultType = {
export enum GenericStatus {
Accepted = 'Accepted',
- Rejected = 'Rejected',
+ Rejected = 'Rejected'
}
export interface GenericResponse extends JsonObject {
export enum RegistrationStatusEnumType {
ACCEPTED = 'Accepted',
PENDING = 'Pending',
- REJECTED = 'Rejected',
+ REJECTED = 'Rejected'
}
SRT = 'SRT',
STR = 'STR',
TRS = 'TRS',
- TSR = 'TSR',
+ TSR = 'TSR'
}
export type ConfigurationKeyType = string | StandardParametersKey | VendorParametersKey
// Payload for Action is syntactically correct but at least one of the fields violates data type constraints (e.g. "somestring" = 12)
TYPE_CONSTRAINT_VIOLATION = 'TypeConstraintViolation',
// Any other error not covered by the previous ones
- GENERIC_ERROR = 'GenericError',
+ GENERIC_ERROR = 'GenericError'
}
export enum MessageType {
CALL_MESSAGE = 2, // Caller to Callee
CALL_RESULT_MESSAGE = 3, // Callee to Caller
- CALL_ERROR_MESSAGE = 4, // Callee to Caller
+ CALL_ERROR_MESSAGE = 4 // Callee to Caller
}
export enum OCPPProtocol {
- JSON = 'json',
+ JSON = 'json'
}
export enum OCPPVersion {
VERSION_16 = '1.6',
VERSION_20 = '2.0',
- VERSION_201 = '2.0.1',
+ VERSION_201 = '2.0.1'
}
ResponseCallback,
ErrorCallback,
RequestCommand | IncomingRequestCommand,
- JsonType,
+ JsonType
]
export const MessageTrigger = {
TRANSACTION_STARTED = 'TransactionStarted',
CONNECTOR_STATE_CHANGED = 'ConnectorStateChanged',
RESERVATION_CANCELED = 'ReservationCanceled',
- REPLACE_EXISTING = 'ReplaceExisting',
+ REPLACE_EXISTING = 'ReplaceExisting'
}
export enum AsyncLockType {
configuration = 'configuration',
- performance = 'performance',
+ performance = 'performance'
}
type ResolveType = (value: void | PromiseLike<void>) => void
export const enum OutputFormat {
configuration = 'configuration',
- worker = 'worker',
+ worker = 'worker'
}
export const buildEvsesStatus = (
workerSet = 'workerSet',
/** @experimental */
dynamicPool = 'dynamicPool',
- fixedPool = 'fixedPool',
+ fixedPool = 'fixedPool'
}
export interface SetInfo {
stopped = 'stopped',
error = 'error',
elementStarted = 'elementStarted',
- elementError = 'elementError',
+ elementError = 'elementError'
}
export const WorkerEvents = {
export enum WorkerMessageEvents {
startWorkerElement = 'startWorkerElement',
startWorkerElementError = 'startWorkerElementError',
- startedWorkerElement = 'startedWorkerElement',
+ startedWorkerElement = 'startedWorkerElement'
}
"printWidth": 100,
"semi": false,
"singleQuote": true,
- "trailingComma": "es5"
+ "trailingComma": "none"
}
"dependencies": {
"finalhandler": "^1.2.0",
"serve-static": "^1.15.0",
- "vue": "^3.4.10",
+ "vue": "^3.4.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
- "@vitest/coverage-v8": "^1.1.3",
+ "@vitest/coverage-v8": "^1.2.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.20.0",
"jsdom": "^23.2.0",
- "prettier": "^3.1.1",
+ "prettier": "^3.2.0",
"rimraf": "^5.0.5",
"typescript": "~5.3.3",
"vite": "^5.0.11",
- "vitest": "^1.1.3"
+ "vitest": "^1.2.0"
},
"_id": "webui@0.1.1"
}
specifier: ^1.15.0
version: 1.15.0
vue:
- specifier: ^3.4.10
- version: 3.4.10(typescript@5.3.3)
+ specifier: ^3.4.11
+ version: 3.4.11(typescript@5.3.3)
vue-router:
specifier: ^4.2.5
- version: 4.2.5(vue@3.4.10)
+ version: 4.2.5(vue@3.4.11)
devDependencies:
'@rushstack/eslint-patch':
version: 6.18.1(eslint@8.56.0)(typescript@5.3.3)
'@vitejs/plugin-vue':
specifier: ^5.0.3
- version: 5.0.3(vite@5.0.11)(vue@3.4.10)
+ version: 5.0.3(vite@5.0.11)(vue@3.4.11)
'@vitejs/plugin-vue-jsx':
specifier: ^3.1.0
- version: 3.1.0(vite@5.0.11)(vue@3.4.10)
+ version: 3.1.0(vite@5.0.11)(vue@3.4.11)
'@vitest/coverage-v8':
- specifier: ^1.1.3
- version: 1.1.3(vitest@1.1.3)
+ specifier: ^1.2.0
+ version: 1.2.0(vitest@1.2.0)
'@vue/eslint-config-prettier':
specifier: ^9.0.0
- version: 9.0.0(eslint@8.56.0)(prettier@3.1.1)
+ version: 9.0.0(eslint@8.56.0)(prettier@3.2.0)
'@vue/eslint-config-typescript':
specifier: ^12.0.0
version: 12.0.0(eslint-plugin-vue@9.20.0)(eslint@8.56.0)(typescript@5.3.3)
'@vue/test-utils':
specifier: ^2.4.3
- version: 2.4.3(vue@3.4.10)
+ version: 2.4.3(vue@3.4.11)
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
specifier: ^23.2.0
version: 23.2.0
prettier:
- specifier: ^3.1.1
- version: 3.1.1
+ specifier: ^3.2.0
+ version: 3.2.0
rimraf:
specifier: ^5.0.5
version: 5.0.5
specifier: ^5.0.11
version: 5.0.11(@types/node@20.11.0)
vitest:
- specifier: ^1.1.3
- version: 1.1.3(@types/node@20.11.0)(jsdom@23.2.0)
+ specifier: ^1.2.0
+ version: 1.2.0(@types/node@20.11.0)(jsdom@23.2.0)
packages:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
dev: true
- /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.11)(vue@3.4.10):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.11)(vue@3.4.11):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.7)
vite: 5.0.11(@types/node@20.11.0)
- vue: 3.4.10(typescript@5.3.3)
+ vue: 3.4.11(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue@5.0.3(vite@5.0.11)(vue@3.4.10):
+ /@vitejs/plugin-vue@5.0.3(vite@5.0.11)(vue@3.4.11):
resolution: {integrity: sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vue: ^3.2.25
dependencies:
vite: 5.0.11(@types/node@20.11.0)
- vue: 3.4.10(typescript@5.3.3)
+ vue: 3.4.11(typescript@5.3.3)
dev: true
- /@vitest/coverage-v8@1.1.3(vitest@1.1.3):
- resolution: {integrity: sha512-Uput7t3eIcbSTOTQBzGtS+0kah96bX+szW9qQrLeGe3UmgL2Akn8POnyC2lH7XsnREZOds9aCUTxgXf+4HX5RA==}
+ /@vitest/coverage-v8@1.2.0(vitest@1.2.0):
+ resolution: {integrity: sha512-YvX8ULTUm1+zkvkl14IqXYGxE1h13OXKPoDsxazARKlp4YLrP28hHEBdplaU7ZTN/Yn6zy6Z3JadWNRJwcmyrQ==}
peerDependencies:
vitest: ^1.0.0
dependencies:
std-env: 3.7.0
test-exclude: 6.0.0
v8-to-istanbul: 9.2.0
- vitest: 1.1.3(@types/node@20.11.0)(jsdom@23.2.0)
+ vitest: 1.2.0(@types/node@20.11.0)(jsdom@23.2.0)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitest/expect@1.1.3:
- resolution: {integrity: sha512-MnJqsKc1Ko04lksF9XoRJza0bGGwTtqfbyrsYv5on4rcEkdo+QgUdITenBQBUltKzdxW7K3rWh+nXRULwsdaVg==}
+ /@vitest/expect@1.2.0:
+ resolution: {integrity: sha512-H+2bHzhyvgp32o7Pgj2h9RTHN0pgYaoi26Oo3mE+dCi1PAqV31kIIVfTbqMO3Bvshd5mIrJLc73EwSRrbol9Lw==}
dependencies:
- '@vitest/spy': 1.1.3
- '@vitest/utils': 1.1.3
- chai: 4.4.0
+ '@vitest/spy': 1.2.0
+ '@vitest/utils': 1.2.0
+ chai: 4.4.1
dev: true
- /@vitest/runner@1.1.3:
- resolution: {integrity: sha512-Va2XbWMnhSdDEh/OFxyUltgQuuDRxnarK1hW5QNN4URpQrqq6jtt8cfww/pQQ4i0LjoYxh/3bYWvDFlR9tU73g==}
+ /@vitest/runner@1.2.0:
+ resolution: {integrity: sha512-vaJkDoQaNUTroT70OhM0NPznP7H3WyRwt4LvGwCVYs/llLaqhoSLnlIhUClZpbF5RgAee29KRcNz0FEhYcgxqA==}
dependencies:
- '@vitest/utils': 1.1.3
+ '@vitest/utils': 1.2.0
p-limit: 5.0.0
pathe: 1.1.2
dev: true
- /@vitest/snapshot@1.1.3:
- resolution: {integrity: sha512-U0r8pRXsLAdxSVAyGNcqOU2H3Z4Y2dAAGGelL50O0QRMdi1WWeYHdrH/QWpN1e8juWfVKsb8B+pyJwTC+4Gy9w==}
+ /@vitest/snapshot@1.2.0:
+ resolution: {integrity: sha512-P33EE7TrVgB3HDLllrjK/GG6WSnmUtWohbwcQqmm7TAk9AVHpdgf7M3F3qRHKm6vhr7x3eGIln7VH052Smo6Kw==}
dependencies:
magic-string: 0.30.5
pathe: 1.1.2
pretty-format: 29.7.0
dev: true
- /@vitest/spy@1.1.3:
- resolution: {integrity: sha512-Ec0qWyGS5LhATFQtldvChPTAHv08yHIOZfiNcjwRQbFPHpkih0md9KAbs7TfeIfL7OFKoe7B/6ukBTqByubXkQ==}
+ /@vitest/spy@1.2.0:
+ resolution: {integrity: sha512-MNxSAfxUaCeowqyyGwC293yZgk7cECZU9wGb8N1pYQ0yOn/SIr8t0l9XnGRdQZvNV/ZHBYu6GO/W3tj5K3VN1Q==}
dependencies:
tinyspy: 2.2.0
dev: true
- /@vitest/utils@1.1.3:
- resolution: {integrity: sha512-Dyt3UMcdElTll2H75vhxfpZu03uFpXRCHxWnzcrFjZxT1kTbq8ALUYIeBgGolo1gldVdI0YSlQRacsqxTwNqwg==}
+ /@vitest/utils@1.2.0:
+ resolution: {integrity: sha512-FyD5bpugsXlwVpTcGLDf3wSPYy8g541fQt14qtzo8mJ4LdEpDKZ9mQy2+qdJm2TZRpjY5JLXihXCgIxiRJgi5g==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
- supports-color
dev: true
- /@vue/compiler-core@3.4.10:
- resolution: {integrity: sha512-53vxh7K9qbx+JILnGEhrFRyr7H7e4NdT8RuTNU3m6HhJKFvcAqFTNXpYMHnyuAzzRGdsbsYHBgQC3H6xEXTG6w==}
+ /@vue/compiler-core@3.4.11:
+ resolution: {integrity: sha512-xFD+p14L4J0DkzHMdgLiQBU5g861fuOTzag30GsfPXBpghLZOvmd22lKiBMTRRpQRpp7qxPnBlFMoeiGMM4MBg==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/shared': 3.4.10
+ '@vue/shared': 3.4.11
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
- /@vue/compiler-dom@3.4.10:
- resolution: {integrity: sha512-QAALBJksIFpXGYuo74rtMgnwpVZDvd3kYbUa4gYX9s/5QiqEvZSgbKtOdUGydXcxKPt3ifC+0/bhPVHXN2694A==}
+ /@vue/compiler-dom@3.4.11:
+ resolution: {integrity: sha512-cRVLROlY7D72WK2xS91L126Dd6xHNTWDWPUBRh1Syk7+TahCk8Eown1/fSi+VX9c76sMMqEZROQSbwV0HSJnhg==}
dependencies:
- '@vue/compiler-core': 3.4.10
- '@vue/shared': 3.4.10
+ '@vue/compiler-core': 3.4.11
+ '@vue/shared': 3.4.11
- /@vue/compiler-sfc@3.4.10:
- resolution: {integrity: sha512-sTOssaQySgrMjrhZxmAqdp6n+E51VteIVIDaOR537H2P63DyzMmig21U0XXFxiXmMIfrK91lAInnc+bIAYemGw==}
+ /@vue/compiler-sfc@3.4.11:
+ resolution: {integrity: sha512-1y5xHAD4a/AhK5+dgsZwFg145J6/rl1c8ILC7Gokca+ql51tTpduz/njCHeNmU15XiE7O62LjJFNOtSZ9vxKOQ==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/compiler-core': 3.4.10
- '@vue/compiler-dom': 3.4.10
- '@vue/compiler-ssr': 3.4.10
- '@vue/shared': 3.4.10
+ '@vue/compiler-core': 3.4.11
+ '@vue/compiler-dom': 3.4.11
+ '@vue/compiler-ssr': 3.4.11
+ '@vue/shared': 3.4.11
estree-walker: 2.0.2
magic-string: 0.30.5
postcss: 8.4.33
source-map-js: 1.0.2
- /@vue/compiler-ssr@3.4.10:
- resolution: {integrity: sha512-Y90TL1abretWbUiK5rv+9smS1thCHE5sSuhZgiLh6cxgZ2Pcy3BEvDd3reID0iwNcTdMbTeE6NI3Aq4Mux6hqQ==}
+ /@vue/compiler-ssr@3.4.11:
+ resolution: {integrity: sha512-cP9Z2ArRgciYmNraqE0gQkuYInfdn66+LE4pR+16uyBiQeswcU4kEzGA+mF1MdhqYXuENpyGQsTkZapq4cy9YA==}
dependencies:
- '@vue/compiler-dom': 3.4.10
- '@vue/shared': 3.4.10
+ '@vue/compiler-dom': 3.4.11
+ '@vue/shared': 3.4.11
/@vue/devtools-api@6.5.1:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
dev: false
- /@vue/eslint-config-prettier@9.0.0(eslint@8.56.0)(prettier@3.1.1):
+ /@vue/eslint-config-prettier@9.0.0(eslint@8.56.0)(prettier@3.2.0):
resolution: {integrity: sha512-z1ZIAAUS9pKzo/ANEfd2sO+v2IUalz7cM/cTLOZ7vRFOPk5/xuRKQteOu1DErFLAh/lYGXMVZ0IfYKlyInuDVg==}
peerDependencies:
eslint: '>= 8.0.0'
dependencies:
eslint: 8.56.0
eslint-config-prettier: 9.1.0(eslint@8.56.0)
- eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1)
- prettier: 3.1.1
+ eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.2.0)
+ prettier: 3.2.0
transitivePeerDependencies:
- '@types/eslint'
dev: true
- supports-color
dev: true
- /@vue/reactivity@3.4.10:
- resolution: {integrity: sha512-SmGGpo37LzPcAFTopHNIJRNVOQfma9YgyPkAzx9/TJ01lbCCYigS28hEcY1hjiJ1PRK8iVX62Ov5yzmUgYH/pQ==}
+ /@vue/reactivity@3.4.11:
+ resolution: {integrity: sha512-KscADwKpSynT3S2iJEX8EfPqc9kPFR261sHIQnDh1xhOBf8qd4ait9tEgLt1/uVxyrAgFj/TNGmjDkcsytyA8w==}
dependencies:
- '@vue/shared': 3.4.10
+ '@vue/shared': 3.4.11
- /@vue/runtime-core@3.4.10:
- resolution: {integrity: sha512-Ri2Cz9sFr66AEUewGUK8IXhIUAhshTHVUGuJR8pqMbtjIds+zPa8QPO5UZImGMQ8HTY7eEpKwztCct9V3+Iqug==}
+ /@vue/runtime-core@3.4.11:
+ resolution: {integrity: sha512-wduRf9w1OtSORFs5KVpKEQ1bRwW5D9/E8mB0I4m0f5Wrd53OZridzWWVZaowSKNMXXIF5Y/lYFP9GOM/IL5i2g==}
dependencies:
- '@vue/reactivity': 3.4.10
- '@vue/shared': 3.4.10
+ '@vue/reactivity': 3.4.11
+ '@vue/shared': 3.4.11
- /@vue/runtime-dom@3.4.10:
- resolution: {integrity: sha512-ROsdi5M2niRDmjXJNZ8KKiGwXyG1FO8l9n6sCN0kaJEHbjWkuigu96YAI3fK/AWUZPSXXEcMEBVPC6rL3mmUuA==}
+ /@vue/runtime-dom@3.4.11:
+ resolution: {integrity: sha512-pWlCTzo6Ad3pSBjzgcZ9maPaz+N/SngLOMfkSKIx7rIWJgcHBoFp4GAbhnkR3jxT4BqIvti6EH3aNSC02VtgOg==}
dependencies:
- '@vue/runtime-core': 3.4.10
- '@vue/shared': 3.4.10
+ '@vue/runtime-core': 3.4.11
+ '@vue/shared': 3.4.11
csstype: 3.1.3
- /@vue/server-renderer@3.4.10(vue@3.4.10):
- resolution: {integrity: sha512-WpCBAhesLq44JKWfdFqb+Bi4ACUW0d8x1z90GnE0spccsAlEDMXV5nm+pwXLyW0OdP2iPrO/n/QMJh4B1v9Ciw==}
+ /@vue/server-renderer@3.4.11(vue@3.4.11):
+ resolution: {integrity: sha512-19rLK9N0yNNzQ83ieyoO9ZT/iBt0S8IkxQ4eVmnqPLCbZgSRMm7GRXnjTFvo0n5vTVVeyaYosBzZ2559L/rP+w==}
peerDependencies:
- vue: 3.4.10
+ vue: 3.4.11
dependencies:
- '@vue/compiler-ssr': 3.4.10
- '@vue/shared': 3.4.10
- vue: 3.4.10(typescript@5.3.3)
+ '@vue/compiler-ssr': 3.4.11
+ '@vue/shared': 3.4.11
+ vue: 3.4.11(typescript@5.3.3)
- /@vue/shared@3.4.10:
- resolution: {integrity: sha512-C0mIVhwW1xQLMFyqMJxnhq6fWyE02lCgcE+TDdtGpg6B3H6kh/0YcqS54qYc76UJNlWegf3VgsLqgk6D9hBmzQ==}
+ /@vue/shared@3.4.11:
+ resolution: {integrity: sha512-BtC+vE8kHf/jZoyJnTFd0PmY8NejyUeUkshXm8LriHs8KmQUmcZXIbrifjA3WDmvzg7C8D6gBSvdl49pOfU2lQ==}
- /@vue/test-utils@2.4.3(vue@3.4.10):
+ /@vue/test-utils@2.4.3(vue@3.4.11):
resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
peerDependencies:
'@vue/server-renderer': ^3.0.1
optional: true
dependencies:
js-beautify: 1.14.11
- vue: 3.4.10(typescript@5.3.3)
+ vue: 3.4.11(typescript@5.3.3)
vue-component-type-helpers: 1.8.27
dev: true
resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==}
dev: true
- /chai@4.4.0:
- resolution: {integrity: sha512-x9cHNq1uvkCdU+5xTkNh5WtgD4e4yDFCsp9jVc7N7qVeKeftv3gO/ZrviX5d+3ZfxdYnZXZYujjRInu1RogU6A==}
+ /chai@4.4.1:
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
- supports-color
dev: true
- /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1):
+ /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.2.0):
resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
dependencies:
eslint: 8.56.0
eslint-config-prettier: 9.1.0(eslint@8.56.0)
- prettier: 3.1.1
+ prettier: 3.2.0
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
dev: true
fast-diff: 1.3.0
dev: true
- /prettier@3.1.1:
- resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==}
+ /prettier@3.2.0:
+ resolution: {integrity: sha512-/vBUecTGaPlRVwyZVROVC58bYIScqaoEJzZmzQXXrZOzqn0TwWz0EnOozOlFO/YAImRnb7XsKpTCd3m1SjS2Ww==}
engines: {node: '>=14'}
hasBin: true
dev: true
convert-source-map: 2.0.0
dev: true
- /vite-node@1.1.3(@types/node@20.11.0):
- resolution: {integrity: sha512-BLSO72YAkIUuNrOx+8uznYICJfTEbvBAmWClY3hpath5+h1mbPS5OMn42lrTxXuyCazVyZoDkSRnju78GiVCqA==}
+ /vite-node@1.2.0(@types/node@20.11.0):
+ resolution: {integrity: sha512-ETnQTHeAbbOxl7/pyBck9oAPZZZo+kYnFt1uQDD+hPReOc+wCjXw4r4jHriBRuVDB5isHmPXxrfc1yJnfBERqg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
fsevents: 2.3.3
dev: true
- /vitest@1.1.3(@types/node@20.11.0)(jsdom@23.2.0):
- resolution: {integrity: sha512-2l8om1NOkiA90/Y207PsEvJLYygddsOyr81wLQ20Ra8IlLKbyQncWsGZjnbkyG2KwwuTXLQjEPOJuxGMG8qJBQ==}
+ /vitest@1.2.0(@types/node@20.11.0)(jsdom@23.2.0):
+ resolution: {integrity: sha512-Ixs5m7BjqvLHXcibkzKRQUvD/XLw0E3rvqaCMlrm/0LMsA0309ZqYvTlPzkhh81VlEyVZXFlwWnkhb6/UMtcaQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
optional: true
dependencies:
'@types/node': 20.11.0
- '@vitest/expect': 1.1.3
- '@vitest/runner': 1.1.3
- '@vitest/snapshot': 1.1.3
- '@vitest/spy': 1.1.3
- '@vitest/utils': 1.1.3
+ '@vitest/expect': 1.2.0
+ '@vitest/runner': 1.2.0
+ '@vitest/snapshot': 1.2.0
+ '@vitest/spy': 1.2.0
+ '@vitest/utils': 1.2.0
acorn-walk: 8.3.2
cac: 6.7.14
- chai: 4.4.0
+ chai: 4.4.1
debug: 4.3.4
execa: 8.0.1
jsdom: 23.2.0
tinybench: 2.5.1
tinypool: 0.8.1
vite: 5.0.11(@types/node@20.11.0)
- vite-node: 1.1.3(@types/node@20.11.0)
+ vite-node: 1.2.0(@types/node@20.11.0)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
- supports-color
dev: true
- /vue-router@4.2.5(vue@3.4.10):
+ /vue-router@4.2.5(vue@3.4.11):
resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.5.1
- vue: 3.4.10(typescript@5.3.3)
+ vue: 3.4.11(typescript@5.3.3)
dev: false
- /vue@3.4.10(typescript@5.3.3):
- resolution: {integrity: sha512-c+O8qGqdWPF9joTCzMGeDDedViooh6c8RY3+eW5+6GCAIY8YjChmU06LsUu0PnMZbIk1oKUoJTqKzmghYtFypw==}
+ /vue@3.4.11(typescript@5.3.3):
+ resolution: {integrity: sha512-iaA98z14ZrrVJlclpHX/HCNeacbMOLdX5foYN7/vt4cHFhDkBRzojjbLQZ2UDRAeNV1v4V5I21+QpdCXWlpG5Q==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.10
- '@vue/compiler-sfc': 3.4.10
- '@vue/runtime-dom': 3.4.10
- '@vue/server-renderer': 3.4.10(vue@3.4.10)
- '@vue/shared': 3.4.10
+ '@vue/compiler-dom': 3.4.11
+ '@vue/compiler-sfc': 3.4.11
+ '@vue/runtime-dom': 3.4.11
+ '@vue/server-renderer': 3.4.11(vue@3.4.11)
+ '@vue/shared': 3.4.11
typescript: 5.3.3
/w3c-xmlserializer@5.0.0: