-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
37 lines (37 loc) · 1.21 KB
/
plugin.json
File metadata and controls
37 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Engage",
"url": "https://github.com/engage-so/posthog-plugin",
"description": "Send user and event data to Engage for personalized engagement.",
"main": "index.js",
"config": [
{
"key": "publicKey",
"name": "Public key",
"type": "string",
"default": "",
"hint": "Get your public key from your Engage dashboard (Settings -> Account)",
"required": true,
"secret": true
},
{
"key": "secret",
"name":"Private key",
"type": "string",
"default": "",
"hint": "Get your private key from your Engage dashboard (Settings -> Account)",
"required": true,
"secret": true
},
{
"key": "filter",
"name":"Event filter",
"type": "choice",
"default": "Send events for all users",
"hint": "Sending events for only identified users ensures user and event data for anonymous users are not sent to Engage. However, note that if they are later identified, you will miss the leading events before identification.",
"choices": [
"Send events for all users",
"Only send events for identified users"
]
}
]
}