@omnia/workplace 7.10.0-preview.17 → 7.10.0-preview.19
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/styles/AnnouncementStyles.d.ts +1 -1
- package/internal-do-not-import-from-here/services/AnalyticsStoreService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AnalyticsStore.d.ts +3 -0
- package/package.json +1 -1
@@ -122,6 +122,7 @@ export declare class ResourceManifests {
|
|
122
122
|
static get EnterprisePropertiesStore(): Guid;
|
123
123
|
static get TargetingPropertiesResources(): Guid;
|
124
124
|
static get AdminSystemCore(): Guid;
|
125
|
+
static get SystemLogsResource(): Guid;
|
125
126
|
static get PowerAppCore(): Guid;
|
126
127
|
static get WorkspaceCommon(): Guid;
|
127
128
|
static get PostsFeedBlockCore(): Guid;
|
@@ -130,6 +130,7 @@ class ResourceManifests {
|
|
130
130
|
static get EnterprisePropertiesStore() { return new fx_models_1.Guid("1d9f8679-52c7-4773-9114-8e1c37797fc3"); }
|
131
131
|
static get TargetingPropertiesResources() { return new fx_models_1.Guid("d28747ac-6b44-4c29-a931-835b4dab97d0"); }
|
132
132
|
static get AdminSystemCore() { return new fx_models_1.Guid("183AEC86-8FFD-4F33-91F3-23483C8E35BB"); }
|
133
|
+
static get SystemLogsResource() { return new fx_models_1.Guid("3bbc2907-347c-4610-9d84-6f3696e4b605"); }
|
133
134
|
static get PowerAppCore() { return new fx_models_1.Guid("96784918-b535-47db-955a-677d1b9138ef"); }
|
134
135
|
static get WorkspaceCommon() { return new fx_models_1.Guid("fa639f63-380e-4cc5-8ed1-f8f5b6ea7d5e"); }
|
135
136
|
static get PostsFeedBlockCore() { return new fx_models_1.Guid("9d5d0be1-208d-488f-9005-b181b7d47839"); }
|
@@ -13,7 +13,7 @@ export declare const AnnouncementStyles: {
|
|
13
13
|
annoucementView?: types.NestedCSSProperties;
|
14
14
|
setHighPriorityAnnouncementColor?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
|
15
15
|
setAnnouncementColor?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
|
16
|
-
setStatusWrapperStyle?: (bgColor: string) => types.NestedCSSProperties;
|
16
|
+
setStatusWrapperStyle?: (bgColor: string, textColor: string) => types.NestedCSSProperties;
|
17
17
|
setBlockPadding?: (val: SpacingSettings) => types.NestedCSSProperties;
|
18
18
|
commentCountWrapper?: types.NestedCSSProperties;
|
19
19
|
buttonWithContent?: types.NestedCSSProperties;
|
@@ -4,6 +4,7 @@ export declare class AnalyticsStoreService {
|
|
4
4
|
private httpClient;
|
5
5
|
constructor();
|
6
6
|
getSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
|
7
|
+
getAdminSettings: (businessProfileId?: GuidValue) => Promise<AnalyticsSettings>;
|
7
8
|
getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
|
8
9
|
getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
|
9
10
|
getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
|
@@ -14,6 +14,8 @@ export declare class AnalyticsStore extends Store {
|
|
14
14
|
private ensuredLoadDimensionsPromise;
|
15
15
|
private settings;
|
16
16
|
private ensuredLoadSettingsPromise;
|
17
|
+
private adminSettings;
|
18
|
+
private ensuredLoadAdminSettingsPromise;
|
17
19
|
private tokens;
|
18
20
|
private ensuredLoadTokenPromise;
|
19
21
|
private scopeInfos;
|
@@ -40,6 +42,7 @@ export declare class AnalyticsStore extends Store {
|
|
40
42
|
getters: {
|
41
43
|
dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
|
42
44
|
settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
45
|
+
adminSettings: (businessProfileId?: GuidValue) => AnalyticsSettings;
|
43
46
|
scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
|
44
47
|
widgetCategoryInfo: (businessProfileId?: GuidValue) => WidgetCategoryInfo[];
|
45
48
|
tokens: (businessProfileId?: GuidValue) => string;
|