n8n-nodes-clientify 0.2.2 → 0.2.3
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.
|
@@ -133,6 +133,7 @@ class ClientifyMcpTrigger {
|
|
|
133
133
|
const req = this.getRequestObject();
|
|
134
134
|
const event = this.getNodeParameter('event');
|
|
135
135
|
// Get webhook payload from request body
|
|
136
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
136
137
|
const payload = req.body;
|
|
137
138
|
// Validate that we received a payload
|
|
138
139
|
if (!payload || typeof payload !== 'object') {
|
|
@@ -148,6 +149,7 @@ class ClientifyMcpTrigger {
|
|
|
148
149
|
};
|
|
149
150
|
}
|
|
150
151
|
// Extract and flatten data based on event type for easier access in workflows
|
|
152
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
151
153
|
let workflowData = {
|
|
152
154
|
event: payload.event,
|
|
153
155
|
timestamp: payload.timestamp,
|
package/dist/package.json
CHANGED