@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 CHANGED
@@ -43,7 +43,7 @@ The example flow is located in [example/flow.json](https://github.com/netresearc
43
43
 
44
44
  ## Author
45
45
 
46
- 👤 **TheDevMinerTV <tobigames200@gmail.com>**
46
+ 👤 **DevMiner <devminer@devminer.xyz>**
47
47
 
48
48
  - Github: [@TheDevMinerTV](https://github.com/TheDevMinerTV)
49
49
 
@@ -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": "2.1.0",
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": "^3.0.2",
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": "^5.55.0",
38
- "@typescript-eslint/parser": "^5.52.0",
39
- "eslint": "^8.35.0",
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.0.4"
41
+ "typescript": "^5.1.6"
42
42
  },
43
43
  "engines": {
44
44
  "node": ">=12"
package/renovate.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:base"
5
+ ]
6
+ }