-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
58 lines (57 loc) · 1.64 KB
/
plugin.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "DittoFeed",
"url": "https://github.com/venturenox/posthog-dittofeed-app/",
"description": "Send event data to DittoFeed",
"main": "index.js",
"config": [
{
"key": "dataPlaneUrl",
"hint": "Provide DittoFeed API URL.",
"name": "DittoFeed API URL",
"type": "string",
"default": "http://localhost:3000/api/public/apps/identify",
"required": true
},
{
"key": "writeKey",
"hint": "Provide API key for your DittoFeed account found on the settings page.",
"name": "DittoFeed API Key",
"type": "string",
"default": "",
"required": true,
"secret": true
},
{
"key": "phEmail",
"hint": "Provide attribute name for email.",
"name": "Email attribute name",
"type": "string",
"default": "",
"required": false
},
{
"key": "phPhoneNumber",
"hint": "Provide attribute name for phone number.",
"name": "Phone number attribute name",
"type": "string",
"default": "",
"required": false
},
{
"key": "phDeviceToken",
"hint": "Provide attribute name for firebase device token.",
"name": "Device Token attribute name",
"type": "string",
"default": "",
"required": false
},
{
"key": "phCustom",
"hint": "Provide attribute name for your custom field.",
"name": "Custom attribute name",
"type": "string",
"default": "",
"required": false
}
]
}