This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
plugin.json
50 lines (50 loc) · 1.61 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
{
"name": "Migrator 3000 (Beta)",
"url": "https://github.com/PostHog/posthog-plugin-migrator3000",
"description": "Migrate your PostHog events to a new instance.",
"main": "index.ts",
"config": [
{
"key": "host",
"hint": "E.g. posthog.yourcompany.com",
"name": "Host",
"type": "string",
"required": true
},
{
"key": "projectApiKey",
"hint": "Grab it from e.g. https://posthog.yourcompany.com/project/settings",
"name": "Project API Key",
"type": "string",
"required": true
},
{
"key": "startDate",
"hint": "Use format YYYY-MM-DD e.g. 2021-10-26 = 26th October 2021. Not specifying a value will export all events.",
"name": "Date to start exporting events from",
"type": "string",
"required": false
},
{
"key": "debug",
"hint": "Turn this on to get additional logging from the plugin",
"name": "DEBUG",
"type": "choice",
"choices": ["ON", "OFF"],
"default": "OFF",
"required": false
},
{
"key": "posthogVersion",
"hint": "The PostHog version this instance is on. Format: x.y.z. Select 'Latest' when using this in PostHog Cloud.",
"name": "PostHog version",
"type": "choice",
"choices": ["1.29.0", "1.30.0", "1.30.0+", "Latest"],
"default": "Latest",
"required": false
}
],
"publicJobs": {
"[ADVANCED] Force restart": {}
}
}