@omnia/workplace 7.8.54-preview → 7.8.56-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.
@@ -1,6 +1,4 @@
1
1
  import { GuidValue } from "@omnia/fx-models";
2
2
  export interface AnalyticsSettingsRequest {
3
- idSite: number;
4
- businessProfileId?: GuidValue;
5
3
  connectedBusinessProfileId: GuidValue;
6
4
  }
@@ -12,15 +12,15 @@ export declare class AnalyticsService {
12
12
  analyticsStore: AnalyticsStore;
13
13
  readonly dsSourcesAllowed: string[];
14
14
  tracker: any;
15
+ private currentIdSite;
16
+ private activatedFeatureIds;
15
17
  settings: BusinessProfileAnalyticsSettings;
16
18
  connectedAnalyticsSettings: AnalyticsSettings;
17
19
  constructor();
18
- private getConnectedAnalyticsSettings;
20
+ private ensureIdSite;
19
21
  private getMappings;
20
22
  registerPageVisit(resetDimensions?: boolean, url?: string): Promise<void>;
21
23
  registerAction(category: string, action: string, name: string, value?: number): Promise<void>;
22
- private shouldCollectInAnalyticsSettings;
23
- private shouldCollect;
24
24
  private getDataSources;
25
25
  private getActiveProperties;
26
26
  private getPropertyValueAndConverterFromSelection;
@@ -7,7 +7,7 @@ export declare class AnalyticsStoreService {
7
7
  getToken: (businessProfileId?: GuidValue) => Promise<AnalyticsToken>;
8
8
  getDimensions: (businessProfileId?: GuidValue) => Promise<AnalyticsDimensions>;
9
9
  getScopesInfo: (businessProfileId?: GuidValue) => Promise<AnalyticsScopeInfo[]>;
10
- getWidgetInformation: () => Promise<WidgetCategoryInfo[]>;
10
+ getWidgetInformation: (businessProfileId?: GuidValue) => Promise<WidgetCategoryInfo[]>;
11
11
  getAnalyticColumns: (idSite: number) => Promise<AnalyticsColumn[]>;
12
12
  getReportStructure: () => Promise<Record<string, string[]>>;
13
13
  addDimension: (name: string, scope: AnalyticsDimensionScopes) => Promise<number>;
@@ -41,7 +41,7 @@ export declare class AnalyticsStore extends Store {
41
41
  dimensions: (businessProfileId?: GuidValue) => AnalyticsDimensions;
42
42
  settings: (businessProfileId?: GuidValue) => AnalyticsSettings;
43
43
  scopeInfos: (businessProfileId?: GuidValue) => AnalyticsScopeInfo[];
44
- widgetCategoryInfo: () => WidgetCategoryInfo[];
44
+ widgetCategoryInfo: (businessProfileId?: GuidValue) => WidgetCategoryInfo[];
45
45
  tokens: (businessProfileId?: GuidValue) => string;
46
46
  analyticsUrl: () => string;
47
47
  sitesWithAtLeastViewAccess: () => MatomoSite[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "7.8.54-preview",
4
+ "version": "7.8.56-preview",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"