-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
64 lines (64 loc) · 1.68 KB
/
config.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
58
59
60
61
62
63
64
{
"name": "kaholo-plugin-template",
"viewName": "Kaholo Template Plugin",
"type": "executer",
"main": "app.js",
"execProgram": "node",
"exposeRoute": false,
"imgUrl": "logo.png",
"version": "2.0.0",
"description": "This plugin is only a generic template.",
"category": [
"Basic Tools"
],
"keywords": [
"template",
"plugin",
"kaholo",
"hello"
],
"settings": [
{
"name": "helloName",
"viewName": "Default Hello Name",
"type": "string",
"description": "The person to whom to say hello by default",
"learnUrl": "https://docs.apify.com/api/v2#/introduction/authentication"
}
],
"methods": [
{
"name": "hello",
"viewName": "Say hello",
"params": [
{
"name": "helloName",
"viewName": "Hello Name",
"type": "string",
"required": false,
"placeholder": "World",
"default": "World",
"description": "The person to whom to say hello",
"learnUrl": "https://en.wikipedia.org/wiki/%22Hello,_World!%22_program"
},
{
"name": "secret",
"viewName": "Secret",
"type": "vault",
"required": false,
"description": "A secret we might also say.",
"learnUrl": "https://en.wikipedia.org/wiki/%22Hello,_World!%22_program"
},
{
"name": "saySecret",
"viewName": "Say secret",
"type": "boolean",
"required": false,
"default": false,
"description": "If checked we'll also say the secret.",
"learnUrl": "https://en.wikipedia.org/wiki/%22Hello,_World!%22_program"
}
]
}
]
}