@tolinax/ayoune-interfaces 2024.84.0 → 2024.84.1
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/IMeeting.d.ts +17 -19
- package/package.json +1 -1
package/interfaces/IMeeting.d.ts
CHANGED
|
@@ -9,17 +9,15 @@ export interface ILp {
|
|
|
9
9
|
image3?: string;
|
|
10
10
|
image4?: string;
|
|
11
11
|
video?: string;
|
|
12
|
-
imprint?: string;
|
|
13
|
-
privacy?: string;
|
|
14
12
|
showTestimonials?: boolean;
|
|
15
13
|
showSpeakers?: boolean;
|
|
16
14
|
showSponsors?: boolean;
|
|
17
|
-
|
|
15
|
+
_testimonialEvent?: ObjectId;
|
|
18
16
|
}
|
|
19
17
|
export interface IProgramm {
|
|
20
18
|
start?: string;
|
|
21
19
|
end?: string;
|
|
22
|
-
|
|
20
|
+
_speaker?: ObjectId;
|
|
23
21
|
headline?: string;
|
|
24
22
|
content?: string;
|
|
25
23
|
other_participants?: number;
|
|
@@ -27,7 +25,7 @@ export interface IProgramm {
|
|
|
27
25
|
booked?: number;
|
|
28
26
|
}
|
|
29
27
|
export interface IIMeetingSpeakersEntry {
|
|
30
|
-
|
|
28
|
+
_speaker?: ObjectId;
|
|
31
29
|
}
|
|
32
30
|
export interface IIMeetingSponsorsEntry {
|
|
33
31
|
sponsor?: string;
|
|
@@ -37,7 +35,7 @@ export interface IIMeetingFaqEntry {
|
|
|
37
35
|
content?: string;
|
|
38
36
|
}
|
|
39
37
|
export interface IAttendees {
|
|
40
|
-
|
|
38
|
+
_attendee?: ObjectId;
|
|
41
39
|
programm?: any[];
|
|
42
40
|
}
|
|
43
41
|
export interface IAttendeesTookPart extends IAttendees {
|
|
@@ -52,7 +50,7 @@ export interface IAttendeesTookPart extends IAttendees {
|
|
|
52
50
|
export interface IAttendeesNoShows extends IAttendees {
|
|
53
51
|
}
|
|
54
52
|
export interface IIMeetingTicket {
|
|
55
|
-
|
|
53
|
+
_product?: ObjectId;
|
|
56
54
|
name?: string;
|
|
57
55
|
netPrice?: number;
|
|
58
56
|
tax?: number;
|
|
@@ -68,44 +66,44 @@ export interface IMeeting extends IDefaultFields {
|
|
|
68
66
|
_clientID?: ObjectId[];
|
|
69
67
|
_subID?: ObjectId[];
|
|
70
68
|
title?: string;
|
|
69
|
+
slug?: string;
|
|
71
70
|
subtitle?: string;
|
|
72
71
|
type?: string;
|
|
73
72
|
description?: string;
|
|
74
73
|
post_text?: string;
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
_user?: ObjectId;
|
|
75
|
+
meetingLink?: string;
|
|
76
|
+
buyTicketLink?: string;
|
|
77
77
|
start?: Date;
|
|
78
78
|
end?: Date;
|
|
79
79
|
active?: boolean;
|
|
80
80
|
ticketing?: boolean;
|
|
81
|
-
|
|
81
|
+
autoSendTicket?: boolean;
|
|
82
82
|
ticketMail?: string;
|
|
83
83
|
ticketLayout?: string;
|
|
84
|
-
|
|
84
|
+
codeMode?: string;
|
|
85
85
|
useQuota?: boolean;
|
|
86
86
|
quota?: number;
|
|
87
87
|
booked?: number;
|
|
88
88
|
advancedLP?: boolean;
|
|
89
|
-
|
|
89
|
+
gotoWebinar?: boolean;
|
|
90
90
|
webinarKey?: string;
|
|
91
91
|
webinarId?: string;
|
|
92
|
-
mapsapikey?: string;
|
|
93
92
|
css?: string;
|
|
94
93
|
js?: string;
|
|
95
94
|
tracking?: string;
|
|
96
|
-
|
|
97
|
-
|
|
95
|
+
visibleFrom?: Date;
|
|
96
|
+
visibleTo?: Date;
|
|
98
97
|
lp?: ILp;
|
|
99
98
|
programm?: IProgramm[];
|
|
100
99
|
speakers?: IIMeetingSpeakersEntry[];
|
|
101
100
|
sponsors?: IIMeetingSponsorsEntry[];
|
|
102
101
|
faqs?: IIMeetingFaqEntry[];
|
|
103
|
-
|
|
102
|
+
_priceGroup?: ObjectId;
|
|
104
103
|
ticket?: IIMeetingTicket;
|
|
105
104
|
attendees?: IAttendees[];
|
|
106
105
|
attendees_tookPart?: IAttendeesTookPart[];
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
attendees_noShows?: IAttendeesNoShows[];
|
|
107
|
+
_eventLocation?: ObjectId;
|
|
109
108
|
fields?: IFields;
|
|
110
|
-
created?: Date;
|
|
111
109
|
}
|