"dev": true
},
"@types/node": {
- "version": "14.14.41",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.41.tgz",
- "integrity": "sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g==",
+ "version": "14.14.43",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.43.tgz",
+ "integrity": "sha512-3pwDJjp1PWacPTpH0LcfhgjvurQvrZFBrC6xxjaUEZ7ifUtT32jtjPxEMMblpqd2Mvx+k8haqQJLQxolyGN/cQ==",
"dev": true
},
"@types/offscreencanvas": {
"dev": true
},
"@types/ws": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.1.tgz",
- "integrity": "sha512-ISCK1iFnR+jYv7+jLNX0wDqesZ/5RAeY3wUx6QaphmocphU61h+b+PHjS18TF4WIPTu/MMzxIq2PHr32o2TS5Q==",
+ "version": "7.4.2",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.2.tgz",
+ "integrity": "sha512-PbeN0Eydl7LQl4OIav29YmkO2LxbVuz3nZD/kb19lOS+wLgIkRbWMNmU/QQR7ABpOJ7D7xDOU8co7iohObewrw==",
"dev": true,
"requires": {
"@types/node": "*"
"dev": true
},
"comment-parser": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.1.2.tgz",
- "integrity": "sha512-AOdq0i8ghZudnYv8RUnHrhTgafUGs61Rdz9jemU5x2lnZwAWyOq7vySo626K59e1fVKH1xSRorJwPVRLSWOoAQ==",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.1.5.tgz",
+ "integrity": "sha512-RePCE4leIhBlmrqiYTvaqEeGYg7qpSl4etaIabKtdOQVi+mSTIBBklGUwIr79GXYnl3LpMwmDw4KeR2stNc6FA==",
"dev": true
},
"commist": {
}
},
"eslint-plugin-jsdoc": {
- "version": "32.3.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.1.tgz",
- "integrity": "sha512-Xcbc8Cr79QveH+MndVwtZ3uafDdXyrsIkS8lP71Fhn5Qi1Lr8TU2QZNkMYIJSvmuLqDB5Jj/VVULMCvaBZBkvg==",
+ "version": "32.3.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.3.tgz",
+ "integrity": "sha512-WxXohbMYlZvCt3r7MepwT++nTLsO4CPegWcm5toM4IGq3MBmYkG+Uf5yDa+n1MwPXLg+KbJqAsI19hmkVD7MPg==",
"dev": true,
"requires": {
- "comment-parser": "1.1.2",
+ "comment-parser": "1.1.5",
"debug": "^4.3.1",
"jsdoctypeparser": "^9.0.0",
- "lodash": "^4.17.20",
+ "lodash": "^4.17.21",
"regextras": "^0.7.1",
- "semver": "^7.3.4",
+ "semver": "^7.3.5",
"spdx-expression-parse": "^3.0.1"
},
"dependencies": {
"utf-8-validate": "^5.0.4"
},
"devDependencies": {
- "@types/node": "^14.14.41",
+ "@types/node": "^14.14.43",
"@types/uuid": "^8.3.0",
- "@types/ws": "^7.4.1",
+ "@types/ws": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"clinic": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
- "eslint-plugin-jsdoc": "^32.3.1",
+ "eslint-plugin-jsdoc": "^32.3.3",
"mbt": "^1.1.1",
"npm-check": "^5.9.2",
"rollup": "^2.45.2",
// Send BootNotification
let registrationRetryCount = 0;
do {
- this.bootNotificationResponse = await this.ocppRequestService.sendBootNotification(this.bootNotificationRequest.chargePointModel, this.bootNotificationRequest.chargePointVendor, this.bootNotificationRequest.chargeBoxSerialNumber, this.bootNotificationRequest.firmwareVersion);
+ this.bootNotificationResponse = await this.ocppRequestService.sendBootNotification(this.bootNotificationRequest.chargePointModel,
+ this.bootNotificationRequest.chargePointVendor, this.bootNotificationRequest.chargeBoxSerialNumber, this.bootNotificationRequest.firmwareVersion);
if (!this.isRegistered()) {
registrationRetryCount++;
await Utils.sleep(this.bootNotificationResponse?.interval ? this.bootNotificationResponse.interval * 1000 : Constants.OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL);