@entur-partner/micro-frontend 2.4.10-alpha.4 → 2.4.10-alpha.5

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/dist/User.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { Permission } from '@entur-partner/permission-client-node';
2
- import { Consents } from './Consents';
3
2
  export interface User {
4
3
  sub: string;
5
4
  name: string;
@@ -17,8 +16,4 @@ export interface User {
17
16
  * Legacy permissions for Entur Partner.
18
17
  */
19
18
  enturPartnerPermissions: string[];
20
- /**
21
- * Consents given by the user for various services like PostHog and Sentry.
22
- */
23
- consents: Consents;
24
19
  }
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export { User } from './User';
2
- export { Consents } from './Consents';
3
2
  export { MicroFrontendPayload, MenuItem, NavigationFunction } from './Payload';
4
3
  export { MountEvent, UnmountEvent, createMountEvent, createUnmountEvent, MOUNT_EVENT_TYPE, UNMOUNT_EVENT_TYPE, RouteChangeEvent, ROUTE_CHANGE_EVENT_TYPE, RouteAction, } from './events';
5
4
  export { registerMicroFrontend } from './registerMicroFrontend';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur-partner/micro-frontend",
3
- "version": "2.4.10-alpha.4",
3
+ "version": "2.4.10-alpha.5",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/micro-frontend.esm.js",
@@ -44,5 +44,5 @@
44
44
  "reportFile": "jest-sonar-report.xml",
45
45
  "indent": 4
46
46
  },
47
- "gitHead": "e83359725f82c01038cd5a6a989f79f404b521c3"
47
+ "gitHead": "e419f7e16a22dae09ece0d036a3e81509b9852fd"
48
48
  }
@@ -1,11 +0,0 @@
1
- export interface Consents {
2
- Usercentrics: {
3
- consentGiven: boolean;
4
- };
5
- PostHog: {
6
- consentGiven: boolean;
7
- };
8
- Sentry: {
9
- consentGiven: boolean;
10
- };
11
- }