Skip to content

Commit

Permalink
Charlesji/manifest1.14 (#147)
Browse files Browse the repository at this point in the history
* manifest schema 1.10

* added manifest 1.14

* removed scopesConstraints

* updated description of supportedChannelTypes

* updated description of supportedChannelTypes

Co-authored-by: Charles Chao <v-jicha1@microsoft.com>
  • Loading branch information
charlesji-msft-teams and Charles Chao authored Jul 14, 2022
1 parent 5883951 commit 55144d8
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion 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.13"
"const": "1.14"
},
"version": {
"type": "string",
Expand Down Expand Up @@ -799,6 +799,17 @@
]
}
},
"supportedChannelTypes": {
"type": "array",
"description": "List of 'non-standard' channel types that the app supports. Note: Channels of standard type are supported by default if the app supports team scope.",
"maxItems": 2,
"items": {
"enum": [
"sharedChannels",
"privateChannels"
]
}
},
"defaultBlockUntilAdminAction": {
"type": "boolean",
"description": "A value indicating whether an app is blocked by default until admin allows it",
Expand Down Expand Up @@ -925,6 +936,11 @@
"type": "string",
"description": "The url which indicates A/V filters' video app content.",
"maxLength": 2048
},
"supportsStreaming": {
"type": "boolean",
"description": "A boolean value indicating whether this app can stream the meeting's audio video content to an RTMP endpoint.",
"default": false
}
},
"description": "Specify meeting extension definition.",
Expand Down

0 comments on commit 55144d8

Please sign in to comment.