This repository was archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathmanifest.json
More file actions
81 lines (81 loc) · 1.97 KB
/
Copy pathmanifest.json
File metadata and controls
81 lines (81 loc) · 1.97 KB
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
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
"manifestVersion": "1.5",
"version": "1.0.0",
"id": "<<YOUR-MICROSOFT-APP-ID>>",
"packageName": "com.microsoft.teams.sample",
"developer": {
"name": "Microsoft",
"websiteUrl": "https://dev.botframework.com",
"privacyUrl": "https://dev.botframework.com",
"termsOfUseUrl": "https://dev.botframework.com"
},
"icons": {
"color": "icon-color.png",
"outline": "icon-outline.png"
},
"name": {
"short": "Config Auth Search",
"full": "Config Auth Search"
},
"description": {
"short": "Config Auth Search",
"full": "Config Auth Search"
},
"accentColor": "#FFFFFF",
"composeExtensions": [
{
"botId": "<<YOUR-MICROSOFT-APP-ID>>",
"canUpdateConfiguration": true,
"commands": [
{
"id": "searchQuery",
"type": "query",
"title": "Search",
"description": "Perform a search",
"initialRun": false,
"fetchTask": false,
"context": [
"commandBox",
"compose"
],
"parameters": [
{
"name": "searchQuery",
"title": "Search",
"description": "Your search query",
"inputType": "text"
}
]
},
{
"id": "SignOutCommand",
"type": "action",
"title": "Sign Out",
"description": "Sign out from authenticated services.",
"initialRun": false,
"fetchTask": true,
"context": [
"commandBox",
"compose"
],
"parameters": [
{
"name": "param",
"title": "param",
"description": ""
}
]
}
]
}
],
"permissions": [
"identity"
],
"validDomains": [
"*.githubusercontent.com",
"*.ngrok.io",
"*.botframework.com"
]
}