@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.
- package/interfaces/IDownloadView.d.ts +9 -0
- package/interfaces/IDownloadView.js +2 -0
- package/interfaces/IEventRegisterView.d.ts +9 -0
- package/interfaces/IEventRegisterView.js +2 -0
- package/interfaces/IMeeting.d.ts +5 -5
- package/interfaces/IUsageLog.d.ts +1 -0
- package/interfaces/index.d.ts +2 -0
- package/interfaces/index.js +2 -0
- package/package.json +1 -1
|
@@ -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,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
|
+
}
|
package/interfaces/IMeeting.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface IProgramm {
|
|
|
20
20
|
_speaker?: ObjectId;
|
|
21
21
|
headline?: string;
|
|
22
22
|
content?: string;
|
|
23
|
-
|
|
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
|
-
|
|
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
|
-
|
|
83
|
-
|
|
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
|
-
|
|
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;
|
package/interfaces/index.d.ts
CHANGED
|
@@ -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";
|
package/interfaces/index.js
CHANGED
|
@@ -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);
|