-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
84 lines (84 loc) · 2.6 KB
/
manifest.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"display_information": {
"name": "DemoMate",
"description": "A Snowflake Demo Setup Helper",
"background_color": "#0a31a6",
"long_description": "A bot that could help setting up demo resources such as DB/Tables/Stages etc., A useful bot to setup Snowflake resources. \r\n\r\nhttps://docs.snowflake.com/en/developer-guide/snowflake-python-api/snowflake-python-overview"
},
"features": {
"app_home": {
"home_tab_enabled": false,
"messages_tab_enabled": true,
"messages_tab_read_only_enabled": false
},
"bot_user": {
"display_name": "DemoMate",
"always_online": true
},
"slash_commands": [
{
"command": "/setup",
"description": "Setup Demo Database and related resources",
"usage_hint": "database schema",
"should_escape": false
},
{
"command": "/cortalyst",
"description": "Interacts with Snowflake Cortex Analyst",
"usage_hint": "question",
"should_escape": false
},
{
"command": "/cleanup",
"description": "Clean up demo setup. Drop the database used with a demo",
"usage_hint": "database",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"user": [
"chat:write"
],
"bot": [
"app_mentions:read",
"channels:history",
"channels:read",
"chat:write",
"chat:write.customize",
"commands",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write",
"mpim:history",
"mpim:read",
"reactions:read",
"reactions:write",
"team:read",
"users:read",
"files:read",
"files:write"
]
}
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"message.im",
"message.channels",
"message.groups",
"message.mpim"
]
},
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}