@omnia/workplace 7.5.36-preview → 7.5.38-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/ManifestIds.d.ts +1 -0
- package/internal-do-not-import-from-here/models/ManifestIds.js +1 -0
- package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts +4 -4
- package/internal-do-not-import-from-here/models/teamcollaborationrollup/TeamCollaborationRollupBlock.d.ts +2 -5
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare class WPRoleDefinition {
|
|
|
16
16
|
static get AnnouncementsBPAdmin(): Guid;
|
|
17
17
|
static get SearchBPAdmin(): Guid;
|
|
18
18
|
static get GlobalSignOffRequestAdmin(): Guid;
|
|
19
|
+
static get AnalyticsBpReader(): Guid;
|
|
19
20
|
}
|
|
20
21
|
export declare class WizardSetupConstant {
|
|
21
22
|
static get LocationPropertyTaxonomy(): Guid;
|
|
@@ -21,6 +21,7 @@ class WPRoleDefinition {
|
|
|
21
21
|
static get AnnouncementsBPAdmin() { return new fx_models_1.Guid("5FA0CED5-F7AB-4C7A-99D9-1F291CB08CC1"); }
|
|
22
22
|
static get SearchBPAdmin() { return new fx_models_1.Guid("affe1bd8-b534-459b-bdd5-f11e5a2d1d73"); }
|
|
23
23
|
static get GlobalSignOffRequestAdmin() { return new fx_models_1.Guid("d20507d0-41c0-43a2-8ffc-13e923362f9d"); }
|
|
24
|
+
static get AnalyticsBpReader() { return new fx_models_1.Guid("ab0d9a26-a89a-4117-bfee-0e3013e456e1"); }
|
|
24
25
|
}
|
|
25
26
|
exports.WPRoleDefinition = WPRoleDefinition;
|
|
26
27
|
class WizardSetupConstant {
|
package/internal-do-not-import-from-here/models/apps/TeamCollaborationAppTemplateProperties.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { AppEnums } from "./Enums";
|
|
2
|
-
import { AppTemplateProperties, GuidValue } from "@omnia/fx-models";
|
|
2
|
+
import { AppTemplateProperties, GuidValue, Identity } from "@omnia/fx-models";
|
|
3
3
|
import { MicrosoftTeamCreationInformation } from ".";
|
|
4
4
|
export interface PermissionIdentities {
|
|
5
|
-
defaultAdministrator?:
|
|
6
|
-
secondAdministrator?:
|
|
7
|
-
visitors?:
|
|
5
|
+
defaultAdministrator?: Identity[];
|
|
6
|
+
secondAdministrator?: Identity[];
|
|
7
|
+
visitors?: Identity[];
|
|
8
8
|
}
|
|
9
9
|
export interface InformationProtectionLabel {
|
|
10
10
|
id: GuidValue;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SpacingSettings, GuidValue, RollupFilter,
|
|
1
|
+
import { SpacingSettings, GuidValue, RollupFilter, RollupSetting, PersonPropFilterValue, BooleanPropFilterValue, TextPropFilterValue, TaxonomyPropFilterValue, TexSearchestPropFilterValue, MultilingualString, MediaPickerImage, FilterEngineSettings, RollupMetricSettings, DatePeriodPropFilterValue } from "@omnia/fx-models";
|
|
2
2
|
import { TeamCollaborationRollupScopeTypes } from ".";
|
|
3
3
|
import { AppEnums } from "../apps";
|
|
4
4
|
export declare const TeamCollaborationConstants: {
|
|
@@ -55,10 +55,7 @@ export interface TeamCollaborationRollupViewSettings {
|
|
|
55
55
|
* */
|
|
56
56
|
export interface UIFilter extends RollupFilter {
|
|
57
57
|
}
|
|
58
|
-
export interface UIDatePeriodsFilterValue extends
|
|
59
|
-
value: RollupEnums.DatePeriods;
|
|
60
|
-
fromDateStr?: string;
|
|
61
|
-
toDateStr?: string;
|
|
58
|
+
export interface UIDatePeriodsFilterValue extends DatePeriodPropFilterValue {
|
|
62
59
|
}
|
|
63
60
|
export interface UIBooleanPropFilterValue extends BooleanPropFilterValue {
|
|
64
61
|
}
|