@tolinax/ayoune-interfaces 2024.84.2 → 2024.85.0

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.
@@ -0,0 +1,9 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
3
+ import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
4
+ export interface IDownloadView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
5
+ _customerID: ObjectId;
6
+ _download: ObjectId;
7
+ _clientID: ObjectId[];
8
+ _subID: ObjectId[];
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
3
+ import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
4
+ export interface IEventRegisterView extends IaYOUneTrackingParams, IGeoIPLocationTracking, IDefaultFields {
5
+ _customerID: ObjectId;
6
+ _event: ObjectId;
7
+ _clientID: ObjectId[];
8
+ _subID: ObjectId[];
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -20,7 +20,7 @@ export interface IProgramm {
20
20
  _speaker?: ObjectId;
21
21
  headline?: string;
22
22
  content?: string;
23
- other_participants?: number;
23
+ otherParticipants?: number;
24
24
  quota?: number;
25
25
  booked?: number;
26
26
  }
@@ -67,7 +67,7 @@ export interface IMeeting extends IDefaultFields {
67
67
  _subID?: ObjectId[];
68
68
  title?: string;
69
69
  slug?: string;
70
- subtitle?: string;
70
+ subTitle?: string;
71
71
  type?: string;
72
72
  description?: string;
73
73
  postText?: string;
@@ -79,8 +79,8 @@ export interface IMeeting extends IDefaultFields {
79
79
  active?: boolean;
80
80
  ticketing?: boolean;
81
81
  autoSendTicket?: boolean;
82
- ticketMail?: string;
83
- ticketLayout?: string;
82
+ _ticketMail?: ObjectId;
83
+ _ticketLayout?: ObjectId;
84
84
  codeMode?: string;
85
85
  useQuota?: boolean;
86
86
  quota?: number;
@@ -91,7 +91,7 @@ export interface IMeeting extends IDefaultFields {
91
91
  webinarId?: string;
92
92
  css?: string;
93
93
  js?: string;
94
- tracking?: string;
94
+ _tracking?: ObjectId;
95
95
  visibleFrom?: Date;
96
96
  visibleTo?: Date;
97
97
  lp?: ILp;
@@ -3,6 +3,7 @@ import { IGeoIPLocationTracking } from "./IGeoIPLocationTracking";
3
3
  import { IaYOUneTrackingParams } from "./IaYOUneTrackingParams";
4
4
  export interface IUsageLog extends IGeoIPLocationTracking, IaYOUneTrackingParams, IDefaultFields {
5
5
  _customerID?: ObjectId;
6
+ _consumerID?: ObjectId;
6
7
  _clientID?: ObjectId[];
7
8
  _subID?: ObjectId[];
8
9
  _userID?: ObjectId;
@@ -236,6 +236,7 @@ export * from "./IDomain";
236
236
  export * from "./IDownload";
237
237
  export * from "./IDownloadList";
238
238
  export * from "./IDownloadLog";
239
+ export * from "./IDownloadView";
239
240
  export * from "./IDraft";
240
241
  export * from "./IDynamicContent";
241
242
  export * from "./IDynamicContentSnippet";
@@ -372,6 +373,7 @@ export * from "./IIndustryKPI";
372
373
  export * from "./IMarketResearch";
373
374
  export * from "./IMaterial";
374
375
  export * from "./IMeeting";
376
+ export * from "./IEventRegisterView";
375
377
  export * from "./IMeetingLocation";
376
378
  export * from "./IMeetingMinute";
377
379
  export * from "./IMeetingSpeaker";
@@ -252,6 +252,7 @@ __exportStar(require("./IDomain"), exports);
252
252
  __exportStar(require("./IDownload"), exports);
253
253
  __exportStar(require("./IDownloadList"), exports);
254
254
  __exportStar(require("./IDownloadLog"), exports);
255
+ __exportStar(require("./IDownloadView"), exports);
255
256
  __exportStar(require("./IDraft"), exports);
256
257
  __exportStar(require("./IDynamicContent"), exports);
257
258
  __exportStar(require("./IDynamicContentSnippet"), exports);
@@ -388,6 +389,7 @@ __exportStar(require("./IIndustryKPI"), exports);
388
389
  __exportStar(require("./IMarketResearch"), exports);
389
390
  __exportStar(require("./IMaterial"), exports);
390
391
  __exportStar(require("./IMeeting"), exports);
392
+ __exportStar(require("./IEventRegisterView"), exports);
391
393
  __exportStar(require("./IMeetingLocation"), exports);
392
394
  __exportStar(require("./IMeetingMinute"), exports);
393
395
  __exportStar(require("./IMeetingSpeaker"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.84.2",
3
+ "version": "2024.85.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",