@netresearch/node-red-contrib-magento-eqp 2.1.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/magento-eqp-config.js +1 -2
- package/package.json +6 -6
- package/renovate.json +6 -0
package/README.md
CHANGED
|
@@ -30,9 +30,8 @@ var RedNode = /** @class */ (function (_super) {
|
|
|
30
30
|
var MagentoEQPConfig = /** @class */ (function (_super) {
|
|
31
31
|
__extends(MagentoEQPConfig, _super);
|
|
32
32
|
function MagentoEQPConfig(config, RED) {
|
|
33
|
-
var _this = this;
|
|
34
33
|
var _a, _b;
|
|
35
|
-
_this = _super.call(this, RED) || this;
|
|
34
|
+
var _this = _super.call(this, RED) || this;
|
|
36
35
|
_this.createNode(config);
|
|
37
36
|
if (!(_this.credentials.appId && _this.credentials.appSecret)) {
|
|
38
37
|
throw new Error('App ID or secret missing');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netresearch/node-red-contrib-magento-eqp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Node-RED module for parsing callbacks from the Magento Marketplace EQP API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"prepack": "yarn build"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@netresearch/node-magento-eqp": "^
|
|
30
|
+
"@netresearch/node-magento-eqp": "^4.0.1",
|
|
31
31
|
"axios": "^1.4.0",
|
|
32
32
|
"node-red-contrib-typescript-node": "^0.1.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^12.20.55",
|
|
36
36
|
"@types/node-red": "0.20.3",
|
|
37
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
38
|
-
"@typescript-eslint/parser": "^
|
|
39
|
-
"eslint": "^8.
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
38
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
39
|
+
"eslint": "^8.45.0",
|
|
40
40
|
"eslint-plugin-html": "^7.1.0",
|
|
41
|
-
"typescript": "^5.
|
|
41
|
+
"typescript": "^5.1.6"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=12"
|