@omnia/workplace 6.10.54-preview → 6.10.57-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.
- package/internal-do-not-import-from-here/models/apps/MSTeamsProperties.d.ts +1 -0
- package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts +2 -0
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlock.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ export interface MicrosoftTeamCreationInformation extends MicrosoftTeamGeneralPr
|
|
|
14
14
|
discoverySettings?: DiscoverySettings;
|
|
15
15
|
installedApps?: InstalledApp[];
|
|
16
16
|
msTeamTemplateId?: string;
|
|
17
|
+
templateSetupType: AppEnums.TemplateSetupTypes;
|
|
17
18
|
}
|
|
18
19
|
export interface MicrosoftTeamCloningProperties extends MicrosoftTeamGeneralProperties {
|
|
19
20
|
partsToClone: string;
|
package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AppEnums } from './Enums';
|
|
2
2
|
import { AppTemplateProperties, GuidValue } from '@omnia/fx-models';
|
|
3
|
+
import { MicrosoftTeamCreationInformation } from '.';
|
|
3
4
|
export interface PermissionIdentities {
|
|
4
5
|
defaultAdministrator?: string[];
|
|
5
6
|
secondAdministrator?: string[];
|
|
@@ -26,4 +27,5 @@ export interface TeamCollaborationAppTemplateProperties extends AppTemplatePrope
|
|
|
26
27
|
defaultResourceUrlType?: AppEnums.ResourceUrlType;
|
|
27
28
|
sensitivityLabelId?: GuidValue;
|
|
28
29
|
userCanSelectTimeZone?: boolean;
|
|
30
|
+
msTeam?: MicrosoftTeamCreationInformation;
|
|
29
31
|
}
|
|
@@ -71,6 +71,7 @@ export interface UITaxonomyPropFilterValue extends TaxonomyPropFilterValue {
|
|
|
71
71
|
}
|
|
72
72
|
export interface UISearchboxFilterValue extends TexSearchestPropFilterValue {
|
|
73
73
|
properties: Array<string>;
|
|
74
|
+
/** Default search text value from settings */
|
|
74
75
|
searchValue: string;
|
|
75
76
|
}
|
|
76
77
|
export interface TeamCollaborationRollupQuery extends RollupSetting {
|