n8n-nodes-formbricks-new 1.0.5 → 1.0.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 +5 -3
- package/dist/nodes/Formbricks/Formbricks.node.d.ts +2 -1
- package/dist/nodes/Formbricks/Formbricks.node.js +8 -3
- package/dist/nodes/Formbricks/Formbricks.node.js.map +1 -1
- package/dist/nodes/Formbricks/GenericFunctions.d.ts +2 -1
- package/dist/nodes/Formbricks/GenericFunctions.js +21 -2
- package/dist/nodes/Formbricks/GenericFunctions.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ For an unpublished local build, create a tarball from this repository and instal
|
|
|
41
41
|
npm run build
|
|
42
42
|
npm pack
|
|
43
43
|
cd ~/.n8n/nodes
|
|
44
|
-
npm install /path/to/n8n-nodes-formbricks-new-1.0.
|
|
44
|
+
npm install /path/to/n8n-nodes-formbricks-new-1.0.6.tgz
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
Restart n8n after installing the local tarball.
|
|
@@ -70,6 +70,8 @@ This node uses these Formbricks API v2 endpoints:
|
|
|
70
70
|
- `POST /api/v2/management/webhooks` to register the n8n production webhook
|
|
71
71
|
- `DELETE /api/v2/management/webhooks/{id}` to remove the webhook when the workflow is deactivated
|
|
72
72
|
|
|
73
|
+
It also uses `GET /api/v1/management/surveys` to load survey choices in n8n because the current public API v2 documentation does not expose a survey list endpoint.
|
|
74
|
+
|
|
73
75
|
Recommended permissions for the full n8n trigger lifecycle:
|
|
74
76
|
|
|
75
77
|
- **Organization access**: Read
|
|
@@ -100,7 +102,7 @@ It uses the returned `workspaces[]` array. It also supports Formbricks responses
|
|
|
100
102
|
1. Add the **Formbricks** trigger node to an n8n workflow.
|
|
101
103
|
2. Select the workspace that should receive the webhook.
|
|
102
104
|
3. Select one or more events, for example **Response Finished**.
|
|
103
|
-
4. Optionally
|
|
105
|
+
4. Optionally select surveys. Leave **Survey IDs** empty to trigger this node for all surveys in the workspace.
|
|
104
106
|
5. Save and activate the workflow.
|
|
105
107
|
|
|
106
108
|
When the workflow is activated, n8n creates a production webhook URL and the node registers it in Formbricks with:
|
|
@@ -167,7 +169,7 @@ Publishing is optional for local use. It requires an npm account logged in on th
|
|
|
167
169
|
|
|
168
170
|
This package is based on the upstream Formbricks n8n node and was updated to register webhooks through the Formbricks API v2 management webhook endpoints.
|
|
169
171
|
|
|
170
|
-
Formbricks API v2 currently exposes webhook management under `/api/v2/management/webhooks`.
|
|
172
|
+
Formbricks API v2 currently exposes webhook management under `/api/v2/management/webhooks`. Survey choices are loaded through `/api/v1/management/surveys` until an API v2 survey list endpoint is available.
|
|
171
173
|
|
|
172
174
|
## Resources
|
|
173
175
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from "n8n-workflow";
|
|
2
|
-
import { getWorkspaces } from "./GenericFunctions";
|
|
2
|
+
import { getSurveys, getWorkspaces } from "./GenericFunctions";
|
|
3
3
|
export declare class Formbricks implements INodeType {
|
|
4
4
|
description: INodeTypeDescription;
|
|
5
5
|
methods: {
|
|
6
6
|
loadOptions: {
|
|
7
|
+
getSurveys: typeof getSurveys;
|
|
7
8
|
getWorkspaces: typeof getWorkspaces;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
@@ -80,14 +80,19 @@ class Formbricks {
|
|
|
80
80
|
{
|
|
81
81
|
displayName: "Survey IDs",
|
|
82
82
|
name: "surveyIds",
|
|
83
|
-
description:
|
|
84
|
-
type: "
|
|
85
|
-
|
|
83
|
+
description: 'Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
|
84
|
+
type: "multiOptions",
|
|
85
|
+
typeOptions: {
|
|
86
|
+
loadOptionsMethod: "getSurveys",
|
|
87
|
+
},
|
|
88
|
+
options: [],
|
|
89
|
+
default: [],
|
|
86
90
|
},
|
|
87
91
|
],
|
|
88
92
|
};
|
|
89
93
|
this.methods = {
|
|
90
94
|
loadOptions: {
|
|
95
|
+
getSurveys: GenericFunctions_1.getSurveys,
|
|
91
96
|
getWorkspaces: GenericFunctions_1.getWorkspaces,
|
|
92
97
|
},
|
|
93
98
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Formbricks.node.js","sourceRoot":"","sources":["../../../nodes/Formbricks/Formbricks.node.ts"],"names":[],"mappings":";;;AAAA,+CAOsB;AAEtB,
|
|
1
|
+
{"version":3,"file":"Formbricks.node.js","sourceRoot":"","sources":["../../../nodes/Formbricks/Formbricks.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IDataObject, IExecuteFunctions, IHookFunctions, IHttpRequestMethods, ILoadOptionsFunctions, INodePropertyOptions } from "n8n-workflow";
|
|
2
|
-
export declare function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, body: object, query?: IDataObject, option?: IDataObject): Promise<any>;
|
|
2
|
+
export declare function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, body: object, query?: IDataObject, option?: IDataObject, apiVersion?: string): Promise<any>;
|
|
3
3
|
export declare function getWorkspaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
4
|
+
export declare function getSurveys(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.apiRequest = apiRequest;
|
|
4
4
|
exports.getWorkspaces = getWorkspaces;
|
|
5
|
+
exports.getSurveys = getSurveys;
|
|
5
6
|
const n8n_workflow_1 = require("n8n-workflow");
|
|
6
|
-
async function apiRequest(method, resource, body, query = {}, option = {}) {
|
|
7
|
+
async function apiRequest(method, resource, body, query = {}, option = {}, apiVersion = "v2") {
|
|
7
8
|
const credentials = await this.getCredentials("formbricksApi");
|
|
8
9
|
let options = {
|
|
9
|
-
baseURL: `${credentials.host}/api
|
|
10
|
+
baseURL: `${credentials.host}/api/${apiVersion}`,
|
|
10
11
|
method,
|
|
11
12
|
body,
|
|
12
13
|
qs: query,
|
|
@@ -58,4 +59,22 @@ async function getWorkspaces() {
|
|
|
58
59
|
}
|
|
59
60
|
return returnData;
|
|
60
61
|
}
|
|
62
|
+
async function getSurveys() {
|
|
63
|
+
var _a;
|
|
64
|
+
const workspaceId = (_a = this.getCurrentNodeParameter("workspaceId")) === null || _a === void 0 ? void 0 : _a.trim();
|
|
65
|
+
if (!workspaceId) {
|
|
66
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), "Select a Formbricks workspace first");
|
|
67
|
+
}
|
|
68
|
+
const responseData = await apiRequest.call(this, "GET", "/management/surveys", {}, {}, {}, "v1");
|
|
69
|
+
const surveys = responseData.data;
|
|
70
|
+
if (!Array.isArray(surveys)) {
|
|
71
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), "No Formbricks surveys got returned from GET /api/v1/management/surveys");
|
|
72
|
+
}
|
|
73
|
+
return surveys
|
|
74
|
+
.filter((survey) => survey.workspaceId === workspaceId)
|
|
75
|
+
.map((survey) => ({
|
|
76
|
+
name: survey.name || survey.id,
|
|
77
|
+
value: survey.id,
|
|
78
|
+
}));
|
|
79
|
+
}
|
|
61
80
|
//# sourceMappingURL=GenericFunctions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GenericFunctions.js","sourceRoot":"","sources":["../../../nodes/Formbricks/GenericFunctions.ts"],"names":[],"mappings":";;AAgBA,
|
|
1
|
+
{"version":3,"file":"GenericFunctions.js","sourceRoot":"","sources":["../../../nodes/Formbricks/GenericFunctions.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED