@aldb2b/common 1.0.686 → 1.0.689

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,3 +1,4 @@
1
+ import { EventProfile } from '../entities/models/events';
1
2
  export interface HeaderUser {
2
3
  id: string;
3
4
  email: string;
@@ -13,5 +14,5 @@ export interface HeaderUser {
13
14
  meetingHubEvent?: boolean;
14
15
  moduleType?: string;
15
16
  typeId?: string;
16
- eventIndustries?: string[];
17
+ eventProfile?: EventProfile;
17
18
  }
@@ -0,0 +1,5 @@
1
+ export declare class Events {
2
+ private static _EVENT_PROFILE;
3
+ static get EventProfileKey(): string;
4
+ static eventProfileKey(eventId: any): string;
5
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Events = void 0;
4
+ class Events {
5
+ static get EventProfileKey() {
6
+ return this._EVENT_PROFILE;
7
+ }
8
+ static eventProfileKey(eventId) {
9
+ return this.EventProfileKey + '-' + eventId;
10
+ }
11
+ }
12
+ exports.Events = Events;
13
+ Events._EVENT_PROFILE = 'EventProfile';
14
+ //# sourceMappingURL=events.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"events.js","sourceRoot":"","sources":["../../src/utils/events.ts"],"names":[],"mappings":";;;AAAA,MAAa,MAAM;IAGjB,MAAM,KAAK,eAAe;QACxB,OAAO,IAAI,CAAC,cAAc,CAAA;IAC5B,CAAC;IAED,MAAM,CAAC,eAAe,CAAC,OAAY;QACjC,OAAO,IAAI,CAAC,eAAe,GAAG,GAAG,GAAG,OAAO,CAAA;IAC7C,CAAC;;AATH,wBAUC;AATgB,qBAAc,GAAG,cAAc,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aldb2b/common",
3
- "version": "1.0.686",
3
+ "version": "1.0.689",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",