@omnia/workplace 6.10.41-preview → 6.10.44-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,19 +28,7 @@ export declare module AppEnums {
|
|
|
28
28
|
Strict = "Strict"
|
|
29
29
|
}
|
|
30
30
|
enum InstalledTeamApps {
|
|
31
|
-
|
|
32
|
-
Planner = "com.microsoft.teamspace.tab.planner",
|
|
33
|
-
MicrosoftStream = "com.microsoftstream.embed.skypeteamstab",
|
|
34
|
-
MicrosoftForms = "81fef3a6-72aa-4648-a763-de824aeafb7d",
|
|
35
|
-
Word = "com.microsoft.teamspace.tab.file.staticviewer.word",
|
|
36
|
-
Excel = "com.microsoft.teamspace.tab.file.staticviewer.excel",
|
|
37
|
-
PowerPoint = "com.microsoft.teamspace.tab.file.staticviewer.powerpoint",
|
|
38
|
-
PDF = "com.microsoft.teamspace.tab.file.staticviewer.pdf",
|
|
39
|
-
Wiki = "com.microsoft.teamspace.tab.wiki",
|
|
40
|
-
DocumentLibrary = "com.microsoft.teamspace.tab.files.sharepoint",
|
|
41
|
-
OneNote = "0d820ecd-def2-4297-adad-78056cde7c78",
|
|
42
|
-
PowerBI = "com.microsoft.teamspace.tab.powerbi",
|
|
43
|
-
SharePoint = "2a527703-1f6f-4559-a332-d8a7d288cd88"
|
|
31
|
+
Planner = "com.microsoft.teamspace.tab.planner"
|
|
44
32
|
}
|
|
45
33
|
enum TeamAppsType {
|
|
46
34
|
App = 1,
|
|
@@ -35,19 +35,7 @@ export var AppEnums;
|
|
|
35
35
|
})(GiphyContentRatingType = AppEnums.GiphyContentRatingType || (AppEnums.GiphyContentRatingType = {}));
|
|
36
36
|
var InstalledTeamApps;
|
|
37
37
|
(function (InstalledTeamApps) {
|
|
38
|
-
InstalledTeamApps["Website"] = "com.microsoft.teamspace.tab.web";
|
|
39
38
|
InstalledTeamApps["Planner"] = "com.microsoft.teamspace.tab.planner";
|
|
40
|
-
InstalledTeamApps["MicrosoftStream"] = "com.microsoftstream.embed.skypeteamstab";
|
|
41
|
-
InstalledTeamApps["MicrosoftForms"] = "81fef3a6-72aa-4648-a763-de824aeafb7d";
|
|
42
|
-
InstalledTeamApps["Word"] = "com.microsoft.teamspace.tab.file.staticviewer.word";
|
|
43
|
-
InstalledTeamApps["Excel"] = "com.microsoft.teamspace.tab.file.staticviewer.excel";
|
|
44
|
-
InstalledTeamApps["PowerPoint"] = "com.microsoft.teamspace.tab.file.staticviewer.powerpoint";
|
|
45
|
-
InstalledTeamApps["PDF"] = "com.microsoft.teamspace.tab.file.staticviewer.pdf";
|
|
46
|
-
InstalledTeamApps["Wiki"] = "com.microsoft.teamspace.tab.wiki";
|
|
47
|
-
InstalledTeamApps["DocumentLibrary"] = "com.microsoft.teamspace.tab.files.sharepoint";
|
|
48
|
-
InstalledTeamApps["OneNote"] = "0d820ecd-def2-4297-adad-78056cde7c78";
|
|
49
|
-
InstalledTeamApps["PowerBI"] = "com.microsoft.teamspace.tab.powerbi";
|
|
50
|
-
InstalledTeamApps["SharePoint"] = "2a527703-1f6f-4559-a332-d8a7d288cd88";
|
|
51
39
|
})(InstalledTeamApps = AppEnums.InstalledTeamApps || (AppEnums.InstalledTeamApps = {}));
|
|
52
40
|
var TeamAppsType;
|
|
53
41
|
(function (TeamAppsType) {
|
|
@@ -52,6 +52,7 @@ export interface TeamsAppConfig {
|
|
|
52
52
|
entityId?: string;
|
|
53
53
|
contentUrl?: string;
|
|
54
54
|
websiteUrl?: string;
|
|
55
|
+
createPlannerBoard?: boolean;
|
|
55
56
|
}
|
|
56
57
|
export interface MemberSettings {
|
|
57
58
|
allowCreateUpdateChannels?: boolean;
|
|
@@ -82,6 +83,7 @@ export interface DiscoverySettings {
|
|
|
82
83
|
showInTeamsSearchAndSuggestions?: boolean;
|
|
83
84
|
}
|
|
84
85
|
export interface InstalledApp {
|
|
86
|
+
title?: string;
|
|
85
87
|
'teamsApp@odata.bind'?: string;
|
|
86
88
|
teamAppType?: AppEnums.TeamAppsType;
|
|
87
89
|
configuration?: TeamsAppConfig;
|