@icvdeveloper/common-module 2.0.0 → 2.1.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.
Files changed (167) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/module.d.mts +1055 -2
  3. package/dist/module.d.ts +1055 -2
  4. package/dist/module.json +1 -1
  5. package/dist/module.mjs +30 -24
  6. package/dist/runtime/analytics.d.ts +1 -6
  7. package/dist/runtime/assets/css/atcb.css +1 -0
  8. package/dist/runtime/assets/scss/_agenda.css +1 -0
  9. package/dist/runtime/assets/scss/_animations.css +1 -0
  10. package/dist/runtime/assets/scss/_container_variants.css +1 -0
  11. package/dist/runtime/assets/scss/_custom.css +3 -0
  12. package/dist/runtime/assets/scss/_forms.css +1 -0
  13. package/dist/runtime/assets/scss/_header.css +0 -0
  14. package/dist/runtime/assets/scss/_index_production.css +1 -0
  15. package/dist/runtime/assets/scss/_transitions.css +1 -0
  16. package/dist/runtime/assets/scss/_variables.css +1 -0
  17. package/dist/runtime/assets/scss/_variables2.css +0 -0
  18. package/dist/runtime/assets/scss/_webcast.css +1 -0
  19. package/dist/runtime/assets/scss/index.css +1 -0
  20. package/dist/runtime/components/affiliates/AffiliateModal.vue +1 -1
  21. package/dist/runtime/components/affiliates/AffiliatePage.vue +70 -105
  22. package/dist/runtime/components/agenda/AgendaList.vue +18 -14
  23. package/dist/runtime/components/agenda/AgendaTabbed.vue +23 -26
  24. package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +8 -3
  25. package/dist/runtime/components/agenda/components/Calendar.vue +11 -8
  26. package/dist/runtime/components/agenda/components/Favorite.vue +7 -5
  27. package/dist/runtime/components/agenda/components/InfoLink.vue +15 -5
  28. package/dist/runtime/components/agenda/components/PlayIcon.vue +2 -4
  29. package/dist/runtime/components/agenda/components/PresentationLink.vue +16 -9
  30. package/dist/runtime/components/agenda/components/Sponsor.vue +31 -24
  31. package/dist/runtime/components/auth/PasswordReset.vue +20 -5
  32. package/dist/runtime/components/auth/Registration.vue +14 -4
  33. package/dist/runtime/components/auth/Ucc.vue +44 -27
  34. package/dist/runtime/components/chat/ChatConversationList.vue +11 -11
  35. package/dist/runtime/components/chat/ChatCreateConversation.vue +41 -47
  36. package/dist/runtime/components/chat/ChatCreateGroupConversation.vue +6 -11
  37. package/dist/runtime/components/chat/ChatHeader.vue +48 -49
  38. package/dist/runtime/components/chat/ChatShowConversation.vue +1 -2
  39. package/dist/runtime/components/chat/ChatWidget.vue +1 -26
  40. package/dist/runtime/components/chat/ChatWindow.vue +5 -71
  41. package/dist/runtime/components/chat/MessageInput.vue +1 -4
  42. package/dist/runtime/components/chat/SearchInput.vue +1 -1
  43. package/dist/runtime/components/core/Accordion.vue +11 -11
  44. package/dist/runtime/components/core/AttendeeList.vue +8 -22
  45. package/dist/runtime/components/core/CountdownTimer.vue +67 -51
  46. package/dist/runtime/components/core/DynamicHtml.vue.d.ts +5 -5
  47. package/dist/runtime/components/core/Modal.vue +3 -9
  48. package/dist/runtime/components/core/ModalButton.vue +2 -2
  49. package/dist/runtime/components/core/Navbar.vue +30 -18
  50. package/dist/runtime/components/core/Navigation.vue +22 -29
  51. package/dist/runtime/components/core/SvgIcon.vue +4 -1
  52. package/dist/runtime/components/core/VButton.vue +2 -8
  53. package/dist/runtime/components/core/ZoomModal.vue +9 -3
  54. package/dist/runtime/components/events/EventHeader.vue +14 -4
  55. package/dist/runtime/components/events/ListEvents.vue +18 -18
  56. package/dist/runtime/components/forms/Message.vue +1 -1
  57. package/dist/runtime/components/forms/SearchInput.vue +8 -2
  58. package/dist/runtime/components/forms/SelectDropDown.vue +4 -4
  59. package/dist/runtime/components/forms/SupportForm.vue +18 -7
  60. package/dist/runtime/components/forms/SwitchInput.vue +50 -30
  61. package/dist/runtime/components/forms/TextArea.vue +1 -1
  62. package/dist/runtime/components/forms/TextInput.vue +1 -1
  63. package/dist/runtime/components/layouts/Accordion.vue +9 -4
  64. package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +4 -1
  65. package/dist/runtime/components/media/ArchiveVideoPlayer.vue +5 -17
  66. package/dist/runtime/components/media/PlayerAndContentContainer.vue +4 -1
  67. package/dist/runtime/components/media/WebcastVideoPlayer.vue +5 -17
  68. package/dist/runtime/components/media/components/AgendaPanel.vue +7 -6
  69. package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +9 -7
  70. package/dist/runtime/components/media/components/CeCreditNotification.vue +6 -6
  71. package/dist/runtime/components/media/components/ContentArea.vue +8 -4
  72. package/dist/runtime/components/media/components/ContentTabs.vue +38 -26
  73. package/dist/runtime/components/media/components/DocumentsPanel.vue +17 -15
  74. package/dist/runtime/components/media/components/MediaContainer.vue +10 -8
  75. package/dist/runtime/components/media/components/OverviewPanel.vue +5 -2
  76. package/dist/runtime/components/media/components/PresentersPanel.vue +11 -11
  77. package/dist/runtime/components/media/components/SponsorsPanel.vue +10 -9
  78. package/dist/runtime/components/presenters/PresenterListing.vue +3 -5
  79. package/dist/runtime/components/presenters/Presenters.vue +8 -8
  80. package/dist/runtime/components/profile/components/SidebarNavItem.vue +1 -3
  81. package/dist/runtime/components/profile/tabs/ProfileImage.vue +7 -6
  82. package/dist/runtime/components/registration/AlreadyRegisteredModal.vue +10 -7
  83. package/dist/runtime/components/registration/PaymentForm.vue +10 -10
  84. package/dist/runtime/components/registration/RegistrationForm.vue +2 -2
  85. package/dist/runtime/components/registration/RegistrationGroupSelect.vue +11 -7
  86. package/dist/runtime/components/registration/StripePaymentForm.vue +11 -31
  87. package/dist/runtime/components/support/FAQAccordion.vue +8 -7
  88. package/dist/runtime/composables/useAdobeLaunch.d.ts +2 -7
  89. package/dist/runtime/composables/useAdobeLaunch.mjs +2 -2
  90. package/dist/runtime/composables/useAgenda.d.ts +1 -1
  91. package/dist/runtime/composables/useAgenda.mjs +28 -19
  92. package/dist/runtime/composables/useApi.d.ts +1 -1
  93. package/dist/runtime/composables/useAuth.d.ts +1 -1
  94. package/dist/runtime/composables/useClassBinding.d.ts +3 -1
  95. package/dist/runtime/composables/useConferenceHelpers.d.ts +2 -2
  96. package/dist/runtime/composables/useConferenceHelpers.mjs +11 -14
  97. package/dist/runtime/composables/useEventHooks.d.ts +6 -7
  98. package/dist/runtime/composables/useEvents.mjs +7 -9
  99. package/dist/runtime/composables/useLogin.mjs +2 -2
  100. package/dist/runtime/composables/useNavigation.d.ts +1 -1
  101. package/dist/runtime/composables/useNavigation.mjs +4 -2
  102. package/dist/runtime/composables/usePresentation.d.ts +2 -2
  103. package/dist/runtime/composables/usePresentation.mjs +7 -6
  104. package/dist/runtime/composables/usePresenter.d.ts +2 -2
  105. package/dist/runtime/composables/usePresenters.d.ts +2 -2
  106. package/dist/runtime/composables/useScripts.mjs +1 -1
  107. package/dist/runtime/composables/useStream.d.ts +2 -3
  108. package/dist/runtime/composables/useStream.mjs +1 -1
  109. package/dist/runtime/composables/useUcc.d.ts +1 -1
  110. package/dist/runtime/composables/useUcc.mjs +29 -23
  111. package/dist/runtime/enums/chatWindow.mjs +7 -0
  112. package/dist/runtime/models/adobeLaunch.d.ts +6 -0
  113. package/dist/runtime/models/adobeLaunch.mjs +0 -0
  114. package/dist/runtime/models/analytics.d.ts +6 -0
  115. package/dist/runtime/models/analytics.mjs +0 -0
  116. package/dist/runtime/models/attendeeList.d.ts +1 -1
  117. package/dist/runtime/models/conference.d.ts +109 -92
  118. package/dist/runtime/models/conversation.d.ts +10 -10
  119. package/dist/runtime/models/document.d.ts +5 -5
  120. package/dist/runtime/models/globalConfig.d.ts +4 -2
  121. package/dist/runtime/models/group.d.ts +18 -18
  122. package/dist/runtime/models/icons.d.ts +1 -1
  123. package/dist/runtime/models/index.d.ts +20 -0
  124. package/dist/runtime/models/index.mjs +20 -0
  125. package/dist/runtime/models/link.d.ts +4 -4
  126. package/dist/runtime/models/loginParams.d.ts +5 -0
  127. package/dist/runtime/models/loginParams.mjs +0 -0
  128. package/dist/runtime/models/navigationConfig.d.ts +7 -7
  129. package/dist/runtime/models/pagination.d.ts +11 -11
  130. package/dist/runtime/models/portal.d.ts +15 -10
  131. package/dist/runtime/models/templateConfig.d.ts +7 -7
  132. package/dist/runtime/models/ucc.d.ts +22 -0
  133. package/dist/runtime/models/ucc.mjs +0 -0
  134. package/dist/runtime/models/user.d.ts +28 -12
  135. package/dist/runtime/models/vButton.d.ts +7 -0
  136. package/dist/runtime/models/vButton.mjs +0 -0
  137. package/dist/runtime/models/video.d.ts +5 -4
  138. package/dist/runtime/models/virtualPagesConfig.d.ts +11 -123
  139. package/dist/runtime/models/vueEternalLoading.d.ts +11 -0
  140. package/dist/runtime/models/vueEternalLoading.mjs +0 -0
  141. package/dist/runtime/plugin.mjs +12 -9
  142. package/dist/runtime/store/affiliates.d.ts +1 -1
  143. package/dist/runtime/store/attendeeList.d.ts +1 -1
  144. package/dist/runtime/store/auth.d.ts +3 -7
  145. package/dist/runtime/store/conferences.mjs +8 -8
  146. package/dist/runtime/store/conversations.d.ts +26 -3988
  147. package/dist/runtime/store/conversations.mjs +7 -7
  148. package/dist/runtime/store/modalPlayerConfig.d.ts +17 -488
  149. package/dist/runtime/store/modalPlayerConfig.mjs +2 -2
  150. package/dist/runtime/store/navigationConfig.d.ts +1 -1
  151. package/dist/runtime/store/presentations.d.ts +2 -2
  152. package/dist/runtime/store/templateConfigs.d.ts +6 -6
  153. package/dist/runtime/store/templateConfigs.mjs +6 -6
  154. package/dist/runtime/store/user.mjs +0 -1
  155. package/dist/runtime/v3plusCommonPlugin.d.ts +1 -1
  156. package/dist/types.d.mts +3 -2
  157. package/dist/types.d.ts +3 -2
  158. package/package.json +13 -13
  159. package/dist/runtime/components/media/components/JsonApi.vue +0 -33
  160. package/dist/runtime/components/media/components/JsonApi.vue.d.ts +0 -16
  161. package/dist/runtime/components/media/components/WindowContent.vue +0 -118
  162. package/dist/runtime/components/media/components/WindowContent.vue.d.ts +0 -50
  163. package/dist/runtime/components/media/components/WindowSlide.vue +0 -92
  164. package/dist/runtime/components/media/components/WindowSlide.vue.d.ts +0 -36
  165. package/dist/runtime/models/authUser.d.ts +0 -17
  166. /package/dist/runtime/{models/authUser.mjs → assets/scss/_footer.css} +0 -0
  167. /package/dist/runtime/{components/chat/ChatWindow.vue.d.ts → enums/chatWindow.d.ts} +0 -0
package/dist/module.d.mts CHANGED
@@ -1,4 +1,138 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
+ import { AnalyticsInstance } from 'analytics';
3
+ import { VNode } from 'vue';
4
+
5
+ type AdobeLaunchFunctions = {
6
+ /**
7
+ * load script
8
+ */
9
+ loadAdobeLaunch: () => void;
10
+ };
11
+
12
+ type Analytics = {
13
+ readonly _analytics: AnalyticsInstance | null;
14
+ create: (id: string, userId: number) => void;
15
+ click: (event: string, label: string) => void;
16
+ };
17
+
18
+ type Merchant = {
19
+ id: number;
20
+ account_id: string;
21
+ };
22
+ type RegistrationField = {
23
+ id: number;
24
+ registration_form_id: number;
25
+ name: string;
26
+ label: string | null;
27
+ placeholder: string | null;
28
+ type: string;
29
+ order: number;
30
+ value: string | number | null;
31
+ validation: [];
32
+ options: [] | null;
33
+ };
34
+ type RegistrationForm = {
35
+ id: number;
36
+ portal_id: number;
37
+ name: string;
38
+ description: string | null;
39
+ fields?: RegistrationField[];
40
+ };
41
+ type Group = {
42
+ cc_enabled?: boolean;
43
+ ce_enabled: boolean;
44
+ code: string;
45
+ created_at?: string;
46
+ description: string | null;
47
+ enabled: boolean;
48
+ id: number;
49
+ merchant_id?: number | null;
50
+ name: string;
51
+ portal_id: number;
52
+ post_reg_login: boolean;
53
+ price: number;
54
+ promo_code: string | null;
55
+ registration_form_id?: number;
56
+ registration_message: string | null;
57
+ type: string;
58
+ updated_at?: string;
59
+ merchant?: Merchant;
60
+ registration_form?: RegistrationForm;
61
+ };
62
+
63
+ type Document = {
64
+ id: number;
65
+ name: string;
66
+ url: string;
67
+ description: string | null;
68
+ meta: string | null;
69
+ };
70
+
71
+ type Link = {
72
+ id: number;
73
+ name: string;
74
+ url: string;
75
+ description: string | null;
76
+ };
77
+
78
+ type Video = {
79
+ id: number;
80
+ name: string;
81
+ url: string;
82
+ description: string | null;
83
+ meta?: string | null;
84
+ };
85
+
86
+ type Meta = {
87
+ name: string;
88
+ description: string;
89
+ id: number;
90
+ };
91
+ type GlobalElements = {
92
+ [key: string]: {
93
+ class?: string;
94
+ label?: string;
95
+ name?: string;
96
+ note?: string;
97
+ type?: string;
98
+ value?: string;
99
+ variable?: string;
100
+ };
101
+ };
102
+ type MiscElements = {
103
+ [key: string]: {
104
+ class?: string;
105
+ label?: string;
106
+ name?: string;
107
+ note?: string;
108
+ type?: string;
109
+ value?: string;
110
+ variable?: string;
111
+ };
112
+ };
113
+ type PagesElements = {
114
+ [key: string]: {
115
+ class?: string;
116
+ label?: string;
117
+ name?: string;
118
+ note?: string;
119
+ type?: string;
120
+ value?: string;
121
+ variable?: string;
122
+ };
123
+ };
124
+ type SettingElements = {
125
+ label?: string;
126
+ name?: string;
127
+ type?: string;
128
+ value?: string;
129
+ };
130
+ type TemplateConfig = {
131
+ meta?: Meta;
132
+ global?: GlobalElements;
133
+ misc?: MiscElements;
134
+ pages?: Array<PagesElements>;
135
+ };
2
136
 
3
137
  declare enum ConferenceState {
4
138
  LIVE = "live",
@@ -16,6 +150,925 @@ declare enum PresentationType {
16
150
  EMBED = "embed",
17
151
  LINK = "link"
18
152
  }
153
+ type Presenter = {
154
+ biography: string | null;
155
+ client_id: number;
156
+ company: string | null;
157
+ designations: string | null;
158
+ email: string | null;
159
+ facebook_url: string | null;
160
+ first_name: string | null;
161
+ id: number;
162
+ last_name: string | null;
163
+ level?: string | null;
164
+ linkedin_url: string | null;
165
+ order?: number;
166
+ photo: string | null;
167
+ role?: string;
168
+ title: string | null;
169
+ twitter_url: string | null;
170
+ website: string | null;
171
+ youtube_url: string | null;
172
+ presentationId?: number | null;
173
+ conferences?: Array<Conference>;
174
+ presentations?: Array<Presentation>;
175
+ };
176
+ type PresenterWithPivot = Presenter & {
177
+ pivot?: {
178
+ [key: string]: any;
179
+ };
180
+ };
181
+ type Affiliate = {
182
+ biography: string | null;
183
+ booth?: string;
184
+ client_id: number;
185
+ code: string | null;
186
+ contact_address: string | null;
187
+ contact_email: string | null;
188
+ contact_location: string | null;
189
+ contact_name: string | null;
190
+ conact_phone: string | null;
191
+ contact_photo: string | null;
192
+ contact_title: string | null;
193
+ facebook_url: string | null;
194
+ html_header: string | null;
195
+ id: number;
196
+ label?: string;
197
+ level?: number;
198
+ linkedin_url: string | null;
199
+ name: string;
200
+ photo: string | null;
201
+ role?: string;
202
+ twitter_url: string | null;
203
+ user_id: number | null;
204
+ vanity?: boolean;
205
+ video: string | null;
206
+ website: string | null;
207
+ youtube_url: string | null;
208
+ conferences: Array<Conference>;
209
+ documents?: Array<Document>;
210
+ links?: Array<Link>;
211
+ template_config?: TemplateConfig;
212
+ videos?: Array<Video>;
213
+ affiliate_content?: {
214
+ html_vanity_page?: string;
215
+ contact_in_header?: number;
216
+ html_header?: string;
217
+ embed_video?: number;
218
+ custom_box_1?: string;
219
+ custom_box_2?: string;
220
+ };
221
+ };
222
+ type Sponsor = Affiliate;
223
+ type Presentation = {
224
+ access?: boolean;
225
+ captions_url: string | null;
226
+ date: string;
227
+ date_visible?: boolean;
228
+ description: string | null;
229
+ duration: number | null;
230
+ embed_html: string | null;
231
+ external_type: string | null;
232
+ id: number;
233
+ is_live?: boolean;
234
+ name: string;
235
+ photo?: string | boolean;
236
+ portal_id: number;
237
+ type: null | PresentationType;
238
+ video_url: string | null;
239
+ visible: boolean;
240
+ zoom_meeting_id: string | null;
241
+ zoom_meeting_password: string | null;
242
+ zoom_require_password: boolean;
243
+ presenters?: Array<Presenter>;
244
+ sponsors?: Array<Sponsor>;
245
+ tracks?: Array<Track>;
246
+ documents?: Array<Document>;
247
+ };
248
+ type VirtualPresentation = Presentation & {
249
+ track?: {
250
+ channel: number | string;
251
+ };
252
+ access?: boolean;
253
+ };
254
+ type PlayerPresentation = {
255
+ player_type: string;
256
+ data: VirtualPresentation;
257
+ };
258
+ type Track = {
259
+ access: boolean;
260
+ channel: number;
261
+ conference_day_id?: number;
262
+ date: string;
263
+ embed_html?: string | null;
264
+ id: number;
265
+ live_stream_id: number | null;
266
+ name: string;
267
+ groups?: Array<Group>;
268
+ presentations?: Array<Presentation>;
269
+ sponsors?: Array<Sponsor>;
270
+ type?: string;
271
+ };
272
+ type TrackGroup = {
273
+ conference_day_id?: number;
274
+ date: string;
275
+ id: number;
276
+ name: string;
277
+ type?: string;
278
+ tracks: Array<Track>;
279
+ };
280
+ type Day = {
281
+ access: boolean;
282
+ conference_id?: number;
283
+ date: string;
284
+ date_visible: boolean;
285
+ id: number;
286
+ name: string;
287
+ tracks?: Array<Track>;
288
+ track_groups?: Array<TrackGroup>;
289
+ sponsors?: Array<Sponsor>;
290
+ };
291
+ type CeCreditConfig = {
292
+ id: number;
293
+ conference_id: number;
294
+ enabled: boolean;
295
+ format: string;
296
+ text_response_answer: string | null;
297
+ randomize_interval: boolean;
298
+ per_hour: number;
299
+ sequence_array: Array<number>;
300
+ display_for: number;
301
+ prompt_text: string | null;
302
+ button_text: string | null;
303
+ created_at?: string | null;
304
+ updated_at?: string | null;
305
+ };
306
+ type Conference = {
307
+ access?: boolean;
308
+ agenda_enabled?: boolean;
309
+ access_config: number;
310
+ ce_credit_enabled?: boolean;
311
+ description: string | null;
312
+ end_date: string;
313
+ id: number;
314
+ location: string | null;
315
+ name: string;
316
+ presenters?: Array<Presenter>;
317
+ photo: string | null;
318
+ photo_large: string | null;
319
+ portal_id: number;
320
+ start_date: string;
321
+ state: ConferenceState;
322
+ timezone: string;
323
+ days?: Array<Day>;
324
+ groups?: Array<Group>;
325
+ affiliates?: Array<Sponsor>;
326
+ sponsors?: Array<Sponsor>;
327
+ template_config?: TemplateConfig;
328
+ ce_credit_config?: CeCreditConfig;
329
+ };
330
+ type Stream = {
331
+ id: number;
332
+ name: string;
333
+ type: string;
334
+ notes: string | null;
335
+ hls_url: string | null;
336
+ embed_html: string | null;
337
+ created_at?: string | null;
338
+ updated_at?: string | null;
339
+ };
340
+ type PlayerObj = {
341
+ addTrack?: Function;
342
+ autostart: boolean;
343
+ format: string;
344
+ getPosition?: Function;
345
+ loadCustomStream: Function;
346
+ playerDiv: string;
347
+ seek?: Function;
348
+ stop?: Function;
349
+ remove?: Function;
350
+ };
351
+ declare global {
352
+ interface Window {
353
+ ICVDMStreamPlayer: any;
354
+ }
355
+ }
356
+
357
+ type User = {
358
+ company: string | null;
359
+ email: string | null;
360
+ id: number;
361
+ linkedin_url: string | null;
362
+ name: string | null;
363
+ online: boolean;
364
+ profile_image: string | null;
365
+ title: string | null;
366
+ twitter_url: string | null;
367
+ type: string;
368
+ uuid?: string;
369
+ video_chat: boolean | null;
370
+ conferences?: Conference[];
371
+ groups?: Group[];
372
+ group_ids?: number[];
373
+ };
374
+ type UsersResult = {
375
+ page: number;
376
+ lastPage: number | null;
377
+ data: User[];
378
+ };
379
+ type AuthUser = User & {
380
+ uid: string;
381
+ token: string;
382
+ expires_at: string;
383
+ token_type: string;
384
+ };
385
+ type UserSearchParams = {
386
+ value?: string;
387
+ iterate?: boolean;
388
+ };
389
+
390
+ interface Pagination {
391
+ total: number;
392
+ per_page: number;
393
+ current_page: number;
394
+ last_page: number;
395
+ first_page_url: string | null;
396
+ last_page_url: string | null;
397
+ next_page_url: string | null;
398
+ prev_page_url: string | null;
399
+ path: string | null;
400
+ from: number;
401
+ to: number;
402
+ }
403
+ declare const PAGE_LENGTH = 15;
404
+
405
+ type AttendeeList = {
406
+ page?: number | null;
407
+ lastPage?: number | null;
408
+ data: User[];
409
+ };
410
+ interface AttendeeListResult extends Pagination {
411
+ data?: User[] | null;
412
+ }
413
+
414
+ type MessagesRead = User[] | null;
415
+ type Message = {
416
+ id: number;
417
+ user: User | null;
418
+ message: string | null;
419
+ messages_read: MessagesRead;
420
+ created_atmess: string | null;
421
+ };
422
+ type Conversation = {
423
+ id: number;
424
+ users: User[] | null;
425
+ user: User | null;
426
+ messages: Message[] | null;
427
+ last_message: Message | null;
428
+ };
429
+
430
+ type ColorVariable = {
431
+ value: string;
432
+ class: string;
433
+ label: string;
434
+ name: string;
435
+ variable: string;
436
+ };
437
+ type HTMLVariable = {
438
+ label: string;
439
+ name: string;
440
+ type: string;
441
+ value: string;
442
+ };
443
+ type ToggleVariable = {
444
+ class: string;
445
+ label: string;
446
+ name: string;
447
+ type: string;
448
+ value: boolean;
449
+ };
450
+ type SelectVariable = {
451
+ label: string;
452
+ name: string;
453
+ type: string;
454
+ value: string;
455
+ };
456
+ type NumberVariable = {
457
+ label: string;
458
+ name: string;
459
+ note: string;
460
+ type: string;
461
+ value: string;
462
+ };
463
+ type ImageVariable = {
464
+ label: string;
465
+ name: string;
466
+ type: string;
467
+ value: string;
468
+ };
469
+ type TextVariable = {
470
+ label: string;
471
+ name: string;
472
+ type: string;
473
+ value: string;
474
+ };
475
+ type TogglePlusLabelVariable = {
476
+ label: string;
477
+ name: string;
478
+ type: string;
479
+ value: {
480
+ enabled: boolean;
481
+ label: string;
482
+ };
483
+ };
484
+ type DragPlusToggleVariable = {
485
+ label: string;
486
+ name: string;
487
+ type: string;
488
+ value: Array<{
489
+ enabled: boolean;
490
+ label: string;
491
+ name: string;
492
+ order: number;
493
+ }>;
494
+ };
495
+ type FontVariable = {
496
+ label: string;
497
+ name: string;
498
+ type: string;
499
+ value: string;
500
+ variable: string;
501
+ };
502
+ type TextAreaVariable = {
503
+ label: string;
504
+ name: string;
505
+ type: string;
506
+ value: string;
507
+ };
508
+ type HotspotVariable = {
509
+ label: string;
510
+ name: string;
511
+ type: string;
512
+ value: string;
513
+ };
514
+
515
+ type GroupVariable = {
516
+ label: string;
517
+ name: string;
518
+ type: string;
519
+ value: Group;
520
+ };
521
+ interface GlobalConfig {
522
+ accent_color_1: ColorVariable;
523
+ accent_color_2: ColorVariable;
524
+ accent_color_3: ColorVariable;
525
+ affiliate_page_button_alias: TextVariable;
526
+ azure_ad_client_id: NumberVariable;
527
+ azure_ad_message: TextVariable;
528
+ azure_ad_tenant_id: NumberVariable;
529
+ azure_ad_user_password: TextVariable;
530
+ body_color_1: ColorVariable;
531
+ body_color_2: ColorVariable;
532
+ body_color_3: ColorVariable;
533
+ body_color_4: ColorVariable;
534
+ body_color_5: ColorVariable;
535
+ body_color_6: ColorVariable;
536
+ body_font_1: FontVariable;
537
+ body_font_2: FontVariable;
538
+ button_color_1: ColorVariable;
539
+ button_color_2: ColorVariable;
540
+ captions_bg_color: ColorVariable;
541
+ captions_font: FontVariable;
542
+ captions_text_color: ColorVariable;
543
+ conference_photo_headers: ImageVariable;
544
+ custom_scripts: TextAreaVariable;
545
+ custom_css: TextAreaVariable;
546
+ enable_peer5: ToggleVariable;
547
+ enable_text_chat: ToggleVariable;
548
+ enable_video_chat: ToggleVariable;
549
+ external_reg_url: TextVariable;
550
+ global_color_1: ColorVariable;
551
+ global_color_2: ColorVariable;
552
+ global_color_3: ColorVariable;
553
+ global_color_4: ColorVariable;
554
+ global_color_5: ColorVariable;
555
+ global_color_6: ColorVariable;
556
+ header_font_1: FontVariable;
557
+ header_font_2: FontVariable;
558
+ header_titles: ToggleVariable;
559
+ heading_color_1: ColorVariable;
560
+ heading_color_2: ColorVariable;
561
+ heading_color_3: ColorVariable;
562
+ heading_color_4: ColorVariable;
563
+ heading_color_5: ColorVariable;
564
+ heading_color_6: ColorVariable;
565
+ hide_user_profile: ToggleVariable;
566
+ html_footer: HTMLVariable;
567
+ html_header: HTMLVariable;
568
+ link_color: ColorVariable;
569
+ link_hover: ColorVariable;
570
+ login_disabled: ToggleVariable;
571
+ login_disabled_user_email: TextVariable;
572
+ login_disabled_user_password: TextVariable;
573
+ login_process: SelectVariable;
574
+ login_redirect_enabled: ToggleVariable;
575
+ muted_photo_headers: SelectVariable;
576
+ nav_color_1: ColorVariable;
577
+ nav_color_2: ColorVariable;
578
+ nav_color_3: ColorVariable;
579
+ nav_color_4: ColorVariable;
580
+ nav_color_5: ColorVariable;
581
+ paragraph_color_1: ColorVariable;
582
+ paragraph_color_2: ColorVariable;
583
+ presenter_icon_color_style: SelectVariable;
584
+ reg_button_alias: TextVariable;
585
+ reg_button_enabled: ToggleVariable;
586
+ secure_site_access_enabled: ToggleVariable;
587
+ townhall_registration_enabled: ToggleVariable;
588
+ townhall_registration_group: GroupVariable;
589
+ ucc_client_id?: TextVariable;
590
+ ucc_url?: TextVariable;
591
+ view_archive_button_alias: TextVariable;
592
+ view_now_button_alias: TextVariable;
593
+ view_preview_button_alias: TextVariable;
594
+ }
595
+ interface VirtualGlobal extends GlobalConfig {
596
+ site_search?: ToggleVariable;
597
+ allow_favorites?: ToggleVariable;
598
+ }
599
+ type GlobalConfigKey = `${keyof VirtualGlobal & (string | number)}`;
600
+ type GlobalConfigKeyType<T extends keyof VirtualGlobal> = VirtualGlobal[T];
601
+
602
+ type Icon = {
603
+ color: string;
604
+ component: VNode;
605
+ };
606
+ type Icons = {
607
+ bell: Icon;
608
+ caret: Icon;
609
+ chat: Icon;
610
+ check: Icon;
611
+ chevron: Icon;
612
+ chevron2down: Icon;
613
+ chevron2right: Icon;
614
+ circlePlus: Icon;
615
+ circleMinus: Icon;
616
+ close: Icon;
617
+ downarrow: Icon;
618
+ facebook: Icon;
619
+ favoriteFilled: Icon;
620
+ favorite: Icon;
621
+ info: Icon;
622
+ linkedin: Icon;
623
+ minus: Icon;
624
+ newwindow: Icon;
625
+ notification: Icon;
626
+ offline: Icon;
627
+ online: Icon;
628
+ person: Icon;
629
+ playarrow: Icon;
630
+ twitter: Icon;
631
+ video: Icon;
632
+ website: Icon;
633
+ youtube: Icon;
634
+ zoom: Icon;
635
+ };
636
+
637
+ type LoginParams = {
638
+ email: string;
639
+ password: string;
640
+ revoke?: boolean;
641
+ };
642
+
643
+ type NavigationConfig = {
644
+ enabled: boolean;
645
+ label: string | null;
646
+ name: string | null;
647
+ order: number;
648
+ slug: string;
649
+ type: string;
650
+ url?: string | null;
651
+ };
652
+
653
+ type ArchiveContentTabsVariable = {
654
+ label: string;
655
+ name: string;
656
+ type: string;
657
+ value: Array<{
658
+ content: string;
659
+ label: string;
660
+ type: string;
661
+ }>;
662
+ };
663
+ type PlayerContentTabsVariable = {
664
+ label: string;
665
+ name: string;
666
+ type: string;
667
+ value: Array<{
668
+ content: string;
669
+ label: string;
670
+ type: string;
671
+ }>;
672
+ };
673
+ type AgendaPlayerPageConfigs = {
674
+ agenda_grouped_track_color_1: ColorVariable;
675
+ agenda_grouped_track_color_2: ColorVariable;
676
+ agenda_grouped_track_color_3: ColorVariable;
677
+ agenda_grouped_track_color_4: ColorVariable;
678
+ agenda_grouped_track_text_color: ColorVariable;
679
+ agenda_html_header: HTMLVariable;
680
+ agenda_presenter_color: ColorVariable;
681
+ agenda_tab_active_bg_color: ColorVariable;
682
+ agenda_tab_bg_color: ColorVariable;
683
+ agenda_tab_color: ColorVariable;
684
+ agenda_tab_sponsor_bg_color: ColorVariable;
685
+ agenda_track_bg_color: ColorVariable;
686
+ agenda_track_group_bg_color: ColorVariable;
687
+ session_end_times: ToggleVariable;
688
+ session_times: ToggleVariable;
689
+ session_desc_link: SelectVariable;
690
+ session_desc_link_text: TextVariable;
691
+ agendas_full_access: ToggleVariable;
692
+ tab_dates: ToggleVariable;
693
+ use_accordion: ToggleVariable;
694
+ use_presenter_modal: ToggleVariable;
695
+ sponsors: ToggleVariable;
696
+ add_to_google_calendar: ToggleVariable;
697
+ add_to_microsoft_calendar: ToggleVariable;
698
+ group_tracks: SelectVariable;
699
+ use_zoom_icon: ToggleVariable;
700
+ use_play_icon: ToggleVariable;
701
+ live_play_icon: ToggleVariable;
702
+ pre_recorded_play_icon: ToggleVariable;
703
+ zoom_text: TextVariable;
704
+ live_stream_text: TextVariable;
705
+ pre_recorded_text: TextVariable;
706
+ };
707
+ type ArchivePlayerPageConfigs = {
708
+ archive_content_tabs: ArchiveContentTabsVariable;
709
+ featured_sponsor_level: SelectVariable;
710
+ player_position: SelectVariable;
711
+ preview_duration: NumberVariable;
712
+ preview_enabled: ToggleVariable;
713
+ section_header_image: ImageVariable;
714
+ video_only_width: NumberVariable;
715
+ video_slide_width: NumberVariable;
716
+ };
717
+ type ExhibitorPageConfigs = {
718
+ layout_format: SelectVariable;
719
+ section_header_image: ImageVariable;
720
+ };
721
+ type MainPageConfigs = {
722
+ conference_external_reg_url: TextVariable;
723
+ conferece_reg_button_alias: TextVariable;
724
+ conference_reg_button_enabled: ToggleVariable;
725
+ countdown_event_has_begun_text: TextVariable;
726
+ countdown_timer: ToggleVariable;
727
+ countdown_timer_style: TextVariable;
728
+ current_event_block: ToggleVariable;
729
+ custom_block1_alias: TextVariable;
730
+ custom_block2_alias: TextVariable;
731
+ custom_block3_alias: TextVariable;
732
+ exhibitor_level_1: TogglePlusLabelVariable;
733
+ exhibitor_level_2: TogglePlusLabelVariable;
734
+ exhibitor_level_3: TogglePlusLabelVariable;
735
+ exhibitor_level_4: TogglePlusLabelVariable;
736
+ exhibitor_level_5: TogglePlusLabelVariable;
737
+ exhibitor_level_6: TogglePlusLabelVariable;
738
+ exhibitors_block_alias: TextVariable;
739
+ main_body_html: HTMLVariable;
740
+ main_page_components: DragPlusToggleVariable;
741
+ main_presenter_1_conferences: TextVariable;
742
+ main_presenter_2_conferences: TextVariable;
743
+ past_events_alias: TextVariable;
744
+ presenter_1_alias: TextVariable;
745
+ presenter_1_image_style: SelectVariable;
746
+ presenter_1_item_width: NumberVariable;
747
+ presenter_2_alias: TextVariable;
748
+ presenter_2_image_style: SelectVariable;
749
+ presetner_2_item_width: NumberVariable;
750
+ presenter_all_alias: TextVariable;
751
+ presenter_all_image_style: SelectVariable;
752
+ presenter_all_item_width: NumberVariable;
753
+ sponsor_level_1: TogglePlusLabelVariable;
754
+ sponsor_level_2: TogglePlusLabelVariable;
755
+ sponsor_level_3: TogglePlusLabelVariable;
756
+ sponsor_level_4: TogglePlusLabelVariable;
757
+ sponsor_level_5: TogglePlusLabelVariable;
758
+ sponsor_level_6: TogglePlusLabelVariable;
759
+ sponsor_block_alias: TextVariable;
760
+ upcoming_events_alias: TextVariable;
761
+ use_event_text: ToggleVariable;
762
+ use_event_text_date: ToggleVariable;
763
+ use_event_text_tz: ToggleVariable;
764
+ };
765
+ type PresenterPageConfigs = {
766
+ layout_format: SelectVariable;
767
+ presenter_1_alias: TogglePlusLabelVariable;
768
+ presenter_2_alias: TogglePlusLabelVariable;
769
+ presenter_3_alias: TogglePlusLabelVariable;
770
+ presenter_4_alias: TogglePlusLabelVariable;
771
+ presenter_5_alias: TogglePlusLabelVariable;
772
+ presenter_6_alias: TogglePlusLabelVariable;
773
+ presenter_7_alias: TogglePlusLabelVariable;
774
+ presenter_8_alias: TogglePlusLabelVariable;
775
+ presenter_9_alias: TogglePlusLabelVariable;
776
+ presenter_10_alias: TogglePlusLabelVariable;
777
+ presenter_11_alias: TogglePlusLabelVariable;
778
+ presenter_image_width: NumberVariable;
779
+ presenter_name_color: ColorVariable;
780
+ presenters_presenter_1_conferences: TextVariable;
781
+ presenters_presenter_2_conferences: TextVariable;
782
+ section_header_image: ImageVariable;
783
+ sort_by_level: ToggleVariable;
784
+ title: ColorVariable;
785
+ };
786
+ type RegistrationPageConfigs = {
787
+ registration_html: HTMLVariable;
788
+ };
789
+ type SponsorsPageConfigs = {
790
+ layout_format: SelectVariable;
791
+ section_header_image: ImageVariable;
792
+ };
793
+ type SupportPageConfigs = {
794
+ live_support_url: TextVariable;
795
+ section_header_image: ImageVariable;
796
+ support_faq: ToggleVariable;
797
+ support_form: ToggleVariable;
798
+ support_html: ToggleVariable;
799
+ };
800
+ type WebcastPageConfigs = {
801
+ chatroom_id: TextVariable;
802
+ featured_sponsor_level: SelectVariable;
803
+ player_position: SelectVariable;
804
+ section_header_image: ImageVariable;
805
+ session_title_visible: ToggleVariable;
806
+ video_only_width: NumberVariable;
807
+ video_slide_width: NumberVariable;
808
+ webcast_content_tabs: PlayerContentTabsVariable;
809
+ };
810
+ interface Pages {
811
+ agenda: AgendaPlayerPageConfigs;
812
+ archive_player: ArchivePlayerPageConfigs;
813
+ exhibitors: ExhibitorPageConfigs;
814
+ main: MainPageConfigs;
815
+ presenters: PresenterPageConfigs;
816
+ registration: RegistrationPageConfigs;
817
+ sponsors: SponsorsPageConfigs;
818
+ support: SupportPageConfigs;
819
+ webcast: WebcastPageConfigs;
820
+ }
821
+ type NestedKeyOf<ObjectType extends object> = {
822
+ [Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends AgendaPlayerPageConfigs | ArchivePlayerPageConfigs | ExhibitorPageConfigs | MainPageConfigs | PresenterPageConfigs | RegistrationPageConfigs | SponsorsPageConfigs | SupportPageConfigs | WebcastPageConfigs ? "" | `${Key}.${NestedKeyOf<ObjectType[Key]>}` : `${Key}`;
823
+ }[keyof ObjectType & (string | number)];
824
+
825
+ type Portal = {
826
+ adobe_launch_url: string | null;
827
+ client_id: number;
828
+ description: string | null;
829
+ disclaimer_id?: number | null;
830
+ domain: string;
831
+ favicon: string | null;
832
+ ga_id: string | null;
833
+ ga_measurement_id: number | null;
834
+ gtm_id: string | null;
835
+ id: number;
836
+ name: string;
837
+ social_title: string | null;
838
+ social_description: string | null;
839
+ social_photo: string | null;
840
+ template_id: number | null;
841
+ };
842
+
843
+ type ContentData = {
844
+ contentObj?: {};
845
+ contentArray?: [];
846
+ contentString?: string;
847
+ contentType?: string;
848
+ modalSize?: number;
849
+ };
850
+
851
+ type VirtualMainPageConfigs = MainPageConfigs & {
852
+ background: ImageVariable;
853
+ Row01_spot_01: HotspotVariable;
854
+ Row01_spot_02: HotspotVariable;
855
+ Row01_spot_03: HotspotVariable;
856
+ Row01_spot_0234: HotspotVariable;
857
+ Row01_spot_04: HotspotVariable;
858
+ Row01_spot_05: HotspotVariable;
859
+ Row02_spot_06: HotspotVariable;
860
+ Row02_spot_06a: HotspotVariable;
861
+ Row02_spot_07: HotspotVariable;
862
+ Row02_spot_08: HotspotVariable;
863
+ Row02_spot_09: HotspotVariable;
864
+ Row02_spot_10: HotspotVariable;
865
+ Row02_spot_10a: HotspotVariable;
866
+ Row02_spot_11: HotspotVariable;
867
+ Row03_spot_12: HotspotVariable;
868
+ Row03_spot_13: HotspotVariable;
869
+ Row03_spot_14: HotspotVariable;
870
+ Row03_spot_15: HotspotVariable;
871
+ Row03_spot_16: HotspotVariable;
872
+ Row04_spot_17: HotspotVariable;
873
+ Row04_spot_18: HotspotVariable;
874
+ Row04_spot_19: HotspotVariable;
875
+ SideNav_R_1: HotspotVariable;
876
+ SideNav_R_2: HotspotVariable;
877
+ SideNav_R_3: HotspotVariable;
878
+ SideNav_R_4: HotspotVariable;
879
+ SideNav_R_5: HotspotVariable;
880
+ SideNav_L_1: HotspotVariable;
881
+ SideNav_L_2: HotspotVariable;
882
+ SideNav_L_3: HotspotVariable;
883
+ SideNav_L_4: HotspotVariable;
884
+ SideNav_L_5: HotspotVariable;
885
+ };
886
+ type AttendeesConfigs = VirtualMainPageConfigs;
887
+ type MeetingsConfigs = VirtualMainPageConfigs;
888
+ type PresentersConfigs = VirtualMainPageConfigs;
889
+ type SpotlightConfigs = VirtualMainPageConfigs;
890
+ type Spotlight1Configs = VirtualMainPageConfigs;
891
+ type Spotlight2Configs = VirtualMainPageConfigs;
892
+ type EntryWayConfigs = {
893
+ background: ImageVariable;
894
+ Row01_spot01: HotspotVariable;
895
+ Row02_spot02: HotspotVariable;
896
+ Row02_spot03: HotspotVariable;
897
+ Row03_spot04: HotspotVariable;
898
+ Row04_spot05: HotspotVariable;
899
+ Row04_spot06: HotspotVariable;
900
+ Row04_spot07: HotspotVariable;
901
+ };
902
+ type ExhibitHallConfigs = {
903
+ background: ImageVariable;
904
+ modular_layout: ToggleVariable;
905
+ Row01_spot01: HotspotVariable;
906
+ Row01_spot02: HotspotVariable;
907
+ Row01_spot03: HotspotVariable;
908
+ Row01_spot04: HotspotVariable;
909
+ Row01_spot05: HotspotVariable;
910
+ Row01_spot06: HotspotVariable;
911
+ Row01_spot07: HotspotVariable;
912
+ Row02_spot08: HotspotVariable;
913
+ Row02_spot09: HotspotVariable;
914
+ Row02_spot10: HotspotVariable;
915
+ Row02_spot11: HotspotVariable;
916
+ Row02_spot12: HotspotVariable;
917
+ Row02_spot13: HotspotVariable;
918
+ Row03_spot14: HotspotVariable;
919
+ Row03_spot15: HotspotVariable;
920
+ Row03_spot16: HotspotVariable;
921
+ Row04_spot17: HotspotVariable;
922
+ Row04_spot18: HotspotVariable;
923
+ hotspot_border_color: ColorVariable;
924
+ modular_row_1: HotspotVariable;
925
+ modular_row_2: HotspotVariable;
926
+ modular_row_3: HotspotVariable;
927
+ modular_row_4: HotspotVariable;
928
+ modular_row_5: HotspotVariable;
929
+ modular_row_6: HotspotVariable;
930
+ modular_row_7: HotspotVariable;
931
+ modular_row_8: HotspotVariable;
932
+ modular_row_9: HotspotVariable;
933
+ modular_row_10: HotspotVariable;
934
+ };
935
+ type AffiliateBoothSmallConfigs = {
936
+ background: ImageVariable;
937
+ custom_js: HTMLVariable;
938
+ Spot_01_Top_Banner_1: HotspotVariable;
939
+ Spot_02_Top_Banner_2: HotspotVariable;
940
+ Spot_03_Monitor_screen: HotspotVariable;
941
+ Spot_04_Shelf_Left_Top: HotspotVariable;
942
+ Spot_05_Shelf_Left_Middle: HotspotVariable;
943
+ Spot_06_Shelf_Left_Bottom: HotspotVariable;
944
+ Spot_07_Shelf_Right_Top: HotspotVariable;
945
+ Spot_08_Shelf_Right_Middle: HotspotVariable;
946
+ Spot_09_Shelf_Right_Bottom: HotspotVariable;
947
+ Spot_10_Floor_Banner_left: HotspotVariable;
948
+ Spot_11_Counter_Left: HotspotVariable;
949
+ Spot_12_Counter_Right: HotspotVariable;
950
+ Spot_13_Counter_Left_and_Right: HotspotVariable;
951
+ Spot_14_Floor_Banner_Right: HotspotVariable;
952
+ Blue_Stool_Left: ToggleVariable;
953
+ Blue_Stool_Right: ToggleVariable;
954
+ Plant_Right: ToggleVariable;
955
+ Plant_Left: ToggleVariable;
956
+ Booth_Rep_4_Right_Facing: ToggleVariable;
957
+ Booth_Rep_4_Left_Facing: ToggleVariable;
958
+ Booth_Rep_3_Right_Facing: ToggleVariable;
959
+ Booth_Rep_3_Left_Facing: ToggleVariable;
960
+ Booth_Rep_2_Right_Facing: ToggleVariable;
961
+ Booth_Rep_2_Left_Facing: ToggleVariable;
962
+ Booth_Rep_1_Right_Facing: ToggleVariable;
963
+ Booth_Rep_1_Left_Facing: ToggleVariable;
964
+ };
965
+ type AffiliateBoothMedConfigs = {
966
+ background: ImageVariable;
967
+ custom_js: HTMLVariable;
968
+ Row01_spot01: HotspotVariable;
969
+ Row01_spot02: HotspotVariable;
970
+ Row02_spot03: HotspotVariable;
971
+ Row02_spot04: HotspotVariable;
972
+ Row02_spot05: HotspotVariable;
973
+ Row03_spot06: HotspotVariable;
974
+ Row03_spot07: HotspotVariable;
975
+ Row03_spot08: HotspotVariable;
976
+ Row03_spot09: HotspotVariable;
977
+ Row03_spot10: HotspotVariable;
978
+ Row03_spot11: HotspotVariable;
979
+ Row04_spot12: HotspotVariable;
980
+ Row04_spot13: HotspotVariable;
981
+ Row04_spot14: HotspotVariable;
982
+ Row04_spot15: HotspotVariable;
983
+ Row04_spot16: HotspotVariable;
984
+ Row04_spot17: HotspotVariable;
985
+ Row04_spot18: HotspotVariable;
986
+ Row04_spot19: HotspotVariable;
987
+ acc_booth_rep: ToggleVariable;
988
+ acc_booth_seat: ToggleVariable;
989
+ };
990
+ type AffiliateBoothLgConfigs = {
991
+ background: ImageVariable;
992
+ custom_js: HTMLVariable;
993
+ Row01_spot01: HotspotVariable;
994
+ Row02_spot02: HotspotVariable;
995
+ Row02_spot03: HotspotVariable;
996
+ Row02_spot04: HotspotVariable;
997
+ Row03_spot05: HotspotVariable;
998
+ Row03_spot06: HotspotVariable;
999
+ Row03_spot07: HotspotVariable;
1000
+ Row03_spot08: HotspotVariable;
1001
+ Row03_spot09: HotspotVariable;
1002
+ Row03_spot10: HotspotVariable;
1003
+ Row03_spot11: HotspotVariable;
1004
+ Row03_spot12: HotspotVariable;
1005
+ Row03_spot13: HotspotVariable;
1006
+ Row03_spot14: HotspotVariable;
1007
+ Row03_spot15: HotspotVariable;
1008
+ Row04_spot16: HotspotVariable;
1009
+ Row04_spot17: HotspotVariable;
1010
+ Row04_spot18: HotspotVariable;
1011
+ Arch_left: ToggleVariable;
1012
+ Arch_right: ToggleVariable;
1013
+ };
1014
+ type AuditoriumConfigs = {
1015
+ background: ImageVariable;
1016
+ Row01_spot01: HotspotVariable;
1017
+ Row01_spot02: HotspotVariable;
1018
+ Row01_spot03: HotspotVariable;
1019
+ Row01_spot04: HotspotVariable;
1020
+ Row01_spot05: HotspotVariable;
1021
+ Row02_spot06: HotspotVariable;
1022
+ Row02_spot07: HotspotVariable;
1023
+ Row02_spot08: HotspotVariable;
1024
+ Row02_spot09: HotspotVariable;
1025
+ };
1026
+ type NetworkingConfigs = {
1027
+ background: ImageVariable;
1028
+ Row01_spot01: HotspotVariable;
1029
+ Row01_spot02: HotspotVariable;
1030
+ Row02_spot03: HotspotVariable;
1031
+ Row03_spot04: HotspotVariable;
1032
+ Row03_spot05: HotspotVariable;
1033
+ Row03_spot06: HotspotVariable;
1034
+ Row04_spot07: HotspotVariable;
1035
+ Row04_spot08: HotspotVariable;
1036
+ };
1037
+ type ResourcesConfigs = {
1038
+ background: ImageVariable;
1039
+ Row01_spot01: HotspotVariable;
1040
+ Row01_spot02: HotspotVariable;
1041
+ Row02_spot03: HotspotVariable;
1042
+ Row03_spot04: HotspotVariable;
1043
+ Row03_spot05: HotspotVariable;
1044
+ Row03_spot06: HotspotVariable;
1045
+ Row04_spot07: HotspotVariable;
1046
+ Row04_spot08: HotspotVariable;
1047
+ };
1048
+ interface VirtualPages {
1049
+ agenda: AgendaPlayerPageConfigs;
1050
+ archive_player: ArchivePlayerPageConfigs;
1051
+ attendees: AttendeesConfigs;
1052
+ auditorium: AuditoriumConfigs;
1053
+ exhibitors: ExhibitorPageConfigs;
1054
+ entryway: EntryWayConfigs;
1055
+ exhibit_hall: ExhibitHallConfigs;
1056
+ main: MainPageConfigs;
1057
+ meetings: MeetingsConfigs;
1058
+ networking: NetworkingConfigs;
1059
+ presenters: PresenterPageConfigs;
1060
+ registration: RegistrationPageConfigs;
1061
+ resources: ResourcesConfigs;
1062
+ sponsors: SponsorsPageConfigs;
1063
+ spotlight: SpotlightConfigs;
1064
+ spotlight_1: SpotlightConfigs;
1065
+ spotlight_2: SpotlightConfigs;
1066
+ support: SupportPageConfigs;
1067
+ webcast: WebcastPageConfigs;
1068
+ }
1069
+ type VirtualNestedKeyOf<ObjectType extends object> = {
1070
+ [Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends AgendaPlayerPageConfigs | ArchivePlayerPageConfigs | ExhibitorPageConfigs | MainPageConfigs | EntryWayConfigs | ExhibitHallConfigs | AffiliateBoothSmallConfigs | AffiliateBoothMedConfigs | AffiliateBoothLgConfigs | AuditoriumConfigs | NetworkingConfigs | ResourcesConfigs | AttendeesConfigs | MeetingsConfigs | PresentersConfigs | SpotlightConfigs | Spotlight1Configs | Spotlight2Configs | PresenterPageConfigs | RegistrationPageConfigs | SponsorsPageConfigs | SupportPageConfigs | WebcastPageConfigs ? "" | `${Key}.${VirtualNestedKeyOf<ObjectType[Key]>}` : `${Key}`;
1071
+ }[keyof ObjectType & (string | number)];
19
1072
 
20
1073
  interface ModuleOptions {
21
1074
  portalHash?: null | string;
@@ -23,6 +1076,6 @@ interface ModuleOptions {
23
1076
  tailwindConfigPath?: null | string;
24
1077
  compileCss?: boolean;
25
1078
  }
26
- declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
1079
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
27
1080
 
28
- export { ConferenceState, type ModuleOptions, PresentationType, _default as default };
1081
+ export { type AdobeLaunchFunctions, type Affiliate, type AffiliateBoothLgConfigs, type AffiliateBoothMedConfigs, type AffiliateBoothSmallConfigs, type AgendaPlayerPageConfigs, type Analytics, type ArchiveContentTabsVariable, type ArchivePlayerPageConfigs, type AttendeeList, type AttendeeListResult, type AttendeesConfigs, type AuditoriumConfigs, type AuthUser, type CeCreditConfig, type Conference, ConferenceState, type ContentData, type Conversation, type Day, type Document, type EntryWayConfigs, type ExhibitHallConfigs, type ExhibitorPageConfigs, type GlobalConfig, type GlobalConfigKey, type GlobalConfigKeyType, type GlobalElements, type Group, type GroupVariable, type Icon, type Icons, type Link, type LoginParams, type MainPageConfigs, type MeetingsConfigs, type Merchant, type Message, type MessagesRead, type Meta, type MiscElements, type ModuleOptions, type NavigationConfig, type NestedKeyOf, type NetworkingConfigs, PAGE_LENGTH, type Pages, type PagesElements, type Pagination, type PlayerContentTabsVariable, type PlayerObj, type PlayerPresentation, type Portal, type Presentation, PresentationType, type Presenter, type PresenterPageConfigs, type PresenterWithPivot, type PresentersConfigs, type RegistrationField, type RegistrationForm, type RegistrationPageConfigs, type ResourcesConfigs, type SettingElements, type Sponsor, type SponsorsPageConfigs, type Spotlight1Configs, type Spotlight2Configs, type SpotlightConfigs, type Stream, type SupportPageConfigs, type TemplateConfig, type Track, type TrackGroup, type User, type UserSearchParams, type UsersResult, type Video, type VirtualGlobal, type VirtualMainPageConfigs, type VirtualNestedKeyOf, type VirtualPages, type VirtualPresentation, type WebcastPageConfigs, _default as default };