Skip to content

Commit

Permalink
added manifest 1.16 (#167)
Browse files Browse the repository at this point in the history
* added manifest 1.16

* update
  • Loading branch information
charlesji-msft-teams authored Jul 13, 2023
1 parent db9620d commit 4f0207e
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"manifestVersion": {
"type": "string",
"description": "The version of the schema this manifest is using. This schema version supports extending Teams apps to other parts of the Microsoft 365 ecosystem. More info at https://aka.ms/extendteamsapps.",
"const": "1.15"
"const": "1.16"
},
"version": {
"type": "string",
Expand Down Expand Up @@ -275,22 +275,29 @@
"scopes": {
"type": "array",
"description": "Specifies whether the tab offers an experience in the context of a channel in a team, or an experience scoped to an individual user alone. These options are non-exclusive. Currently static tabs are only supported in the 'personal' scope.",
"maxItems": 2,
"maxItems": 3,
"items": {
"enum": [
"team",
"personal"
"personal",
"groupChat"
]
}
},
"context": {
"type": "array",
"description": "The set of contextItem scopes that a tab belong to",
"maxItems": 2,
"maxItems": 8,
"items": {
"enum": [
"personalTab",
"channelTab"
"channelTab",
"privateChatTab",
"meetingChatTab",
"meetingDetailsTab",
"meetingSidePanel",
"meetingStage",
"teamLevelApp"
]
}
}
Expand Down Expand Up @@ -916,6 +923,11 @@
"type": "boolean",
"description": "A boolean value indicating whether this app can stream the meeting's audio video content to an RTMP endpoint.",
"default": false
},
"supportsAnonymousGuestUsers": {
"type": "boolean",
"description": "A value that indicates whether an app supports access for anonymous users.",
"default": false
}
},
"description": "Specify meeting extension definition.",
Expand Down

0 comments on commit 4f0207e

Please sign in to comment.