n8n-nodes-elearning-magic 0.1.5 → 0.1.6

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
@@ -11,7 +11,7 @@ Restart n8n after install.
11
11
 
12
12
  ## Configure
13
13
  1) Add the **eLearning Magic** trigger node.
14
- 2) Webhook Path auto-fills with a workflow-based value; you can leave it or change it. After you save/activate, the node shows copyable Test/Production URLs (like the n8n Webhook node).
14
+ 2) Webhook path is generated per workflow; after you save/activate, the node shows copyable Test/Production URLs (like the n8n Webhook node).
15
15
  3) Create an **eLearning Magic Signing Secret** credential with your secret (signature is required).
16
16
  4) Copy the webhook URL from the node and paste it into the eLearning Magic app when creating a connection (use the same secret).
17
17
  5) Activate the workflow. Incoming events appear with the JSON body plus headers/query and a signature status flag.
@@ -42,19 +42,11 @@ class ElearningMagicTrigger {
42
42
  name: 'default',
43
43
  httpMethod: 'POST',
44
44
  responseMode: 'onReceived',
45
- path: '={{$parameter["path"]}}',
45
+ path: '={{$workflow.id}}-elearning-magic',
46
46
  restartWebhook: true,
47
47
  },
48
48
  ],
49
- properties: [
50
- {
51
- displayName: 'Webhook Path',
52
- name: 'path',
53
- type: 'string',
54
- default: '={{$workflow.id}}-elearning-magic',
55
- description: 'Unique path segment; defaults to a workflow-scoped value. Copy the Test/Production URLs after saving.',
56
- },
57
- ],
49
+ properties: [],
58
50
  };
59
51
  }
60
52
  async webhook() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-elearning-magic",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "n8n community node for receiving signed payloads from the eLearning Magic SCORM wrapper",
5
5
  "keywords": [
6
6
  "n8n-community-node",