generated from slack-samples/bolt-python-custom-step-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
85 lines (85 loc) · 2.08 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
85
{
"_metadata": {
"major_version": 2
},
"display_information": {
"name": "BoltPy Jira Functions"
},
"outgoing_domains": [],
"settings": {
"org_deploy_enabled": true,
"socket_mode_enabled": true,
"event_subscriptions": {
"bot_events": [
"app_home_opened",
"function_executed"
]
},
"function_runtime": "remote"
},
"features": {
"bot_user": {
"display_name": "BoltPy Jira Functions"
},
"app_home": {
"messages_tab_enabled": true,
"home_tab_enabled": true
}
},
"oauth_config": {
"scopes": {
"bot": [
"chat:write"
]
}
},
"functions": {
"create_issue": {
"title": "Create an issue",
"description": "Create a JIRA SERVER issue",
"input_parameters": {
"properties": {
"user_context": {
"type": "slack#/types/user_context",
"title": "Represents a user who interacted with a workflow at runtime.",
"is_required": true
},
"project": {
"type": "string",
"title": "Project",
"description": "Project",
"is_required": true
},
"issuetype": {
"type": "string",
"title": "Issue type",
"description": "Type of issue to create: Bug, Improvement, New Feature, or Epic.",
"is_required": true
},
"summary": {
"type": "string",
"title": "Summary",
"description": "Summary of the bug or issue...",
"is_required": true
},
"description": {
"type": "string",
"title": "Description",
"description": "Description of the bug or issue...",
"is_required": true
}
}
},
"output_parameters": {
"properties": {
"issue_url": {
"type": "string",
"title": "Issue url",
"description": "Url of the issue that was created",
"is_required": true
}
}
}
}
}
}