@icvdeveloper/common-module 1.4.14 → 2.1.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/CHANGELOG.md +4 -0
- package/dist/module.d.mts +1051 -2
- package/dist/module.d.ts +1051 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +29 -15
- package/dist/runtime/@types/components.d.ts +22 -0
- package/dist/runtime/@types/configVariables.d.ts +6 -0
- package/dist/runtime/analytics.d.ts +1 -6
- package/dist/runtime/assets/scss/_agenda.css +1 -0
- package/dist/runtime/assets/scss/_animations.css +1 -0
- package/dist/runtime/assets/scss/_container_variants.css +1 -0
- package/dist/runtime/assets/scss/_custom.css +3 -0
- package/dist/runtime/assets/scss/_forms.css +1 -0
- package/dist/runtime/assets/scss/_header.css +0 -0
- package/dist/runtime/assets/scss/_index_production.css +1 -0
- package/dist/runtime/assets/scss/_transitions.css +1 -0
- package/dist/runtime/assets/scss/_variables.css +1 -0
- package/dist/runtime/assets/scss/_variables2.css +0 -0
- package/dist/runtime/assets/scss/_webcast.css +1 -0
- package/dist/runtime/assets/scss/index.css +1 -705
- package/dist/runtime/assets/svg/icon-minus.svg +6 -0
- package/dist/runtime/assets/svg/icon-video.svg +6 -0
- package/dist/runtime/components/affiliates/AffiliateModal.vue +66 -0
- package/dist/runtime/components/affiliates/AffiliatePage.vue +329 -159
- package/dist/runtime/components/agenda/AgendaList.vue +18 -14
- package/dist/runtime/components/agenda/AgendaTabbed.vue +60 -54
- package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +8 -3
- package/dist/runtime/components/agenda/components/Calendar.vue +23 -18
- package/dist/runtime/components/agenda/components/Favorite.vue +46 -0
- package/dist/runtime/components/agenda/components/InfoLink.vue +15 -5
- package/dist/runtime/components/agenda/components/PlayIcon.vue +3 -5
- package/dist/runtime/components/agenda/components/PresentationLink.vue +37 -19
- package/dist/runtime/components/agenda/components/Sponsor.vue +31 -24
- package/dist/runtime/components/auth/PasswordReset.vue +20 -5
- package/dist/runtime/components/auth/Registration.vue +14 -4
- package/dist/runtime/components/auth/Ucc.vue +44 -27
- package/dist/runtime/components/chat/ChatConversationList.vue +108 -0
- package/dist/runtime/components/chat/ChatCreateConversation.vue +199 -0
- package/dist/runtime/components/chat/ChatCreateGroupConversation.vue +154 -0
- package/dist/runtime/components/chat/ChatHeader.vue +97 -0
- package/dist/runtime/components/chat/ChatMessage.vue +40 -0
- package/dist/runtime/components/chat/ChatShowConversation.vue +76 -0
- package/dist/runtime/components/chat/ChatWidget.vue +40 -0
- package/dist/runtime/components/chat/ChatWindow.vue +154 -0
- package/dist/runtime/components/chat/ChatWindow.vue.d.ts +6 -0
- package/dist/runtime/components/chat/MessageInput.vue +27 -0
- package/dist/runtime/components/chat/SearchInput.vue +32 -0
- package/dist/runtime/components/core/Accordion.vue +12 -12
- package/dist/runtime/components/core/AttendeeList.vue +31 -36
- package/dist/runtime/components/core/CountdownTimer.vue +68 -52
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +6 -9
- package/dist/runtime/components/core/Modal.vue +24 -22
- package/dist/runtime/components/core/ModalButton.vue +43 -0
- package/dist/runtime/components/core/Navbar.vue +33 -21
- package/dist/runtime/components/core/Navigation.vue +286 -0
- package/dist/runtime/components/core/SvgIcon.vue +34 -1
- package/dist/runtime/components/core/VButton.vue +35 -0
- package/dist/runtime/components/core/ZoomModal.vue +9 -3
- package/dist/runtime/components/events/EventHeader.vue +14 -4
- package/dist/runtime/components/events/ListEvents.vue +21 -22
- package/dist/runtime/components/forms/CheckboxGroup.vue +46 -0
- package/dist/runtime/components/forms/ErrorField.vue +11 -2
- package/dist/runtime/components/forms/Message.vue +1 -1
- package/dist/runtime/components/forms/RadioGroup.vue +50 -0
- package/dist/runtime/components/forms/SearchInput.vue +8 -2
- package/dist/runtime/components/forms/SelectDropDown.vue +47 -0
- package/dist/runtime/components/forms/SupportForm.vue +22 -11
- package/dist/runtime/components/forms/SwitchInput.vue +50 -30
- package/dist/runtime/components/forms/TextArea.vue +1 -1
- package/dist/runtime/components/forms/TextInput.vue +1 -1
- package/dist/runtime/components/layouts/Accordion.vue +11 -6
- package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +24 -5
- package/dist/runtime/components/media/ArchiveVideoPlayer.vue +19 -23
- package/dist/runtime/components/media/PlayerAndContentContainer.vue +4 -1
- package/dist/runtime/components/media/WebcastVideoPlayer.vue +6 -18
- package/dist/runtime/components/media/components/AgendaPanel.vue +7 -6
- package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +17 -15
- package/dist/runtime/components/media/components/CeCreditNotification.vue +8 -8
- package/dist/runtime/components/media/components/ContentArea.vue +59 -18
- package/dist/runtime/components/media/components/ContentTabs.vue +40 -28
- package/dist/runtime/components/media/components/DocumentsPanel.vue +19 -17
- package/dist/runtime/components/media/components/MediaContainer.vue +11 -13
- package/dist/runtime/components/media/components/OverviewPanel.vue +5 -2
- package/dist/runtime/components/media/components/PresentersPanel.vue +74 -55
- package/dist/runtime/components/media/components/SessionReporting.vue +5 -4
- package/dist/runtime/components/media/components/SponsorsPanel.vue +13 -12
- package/dist/runtime/components/presenters/PresenterListing.vue +33 -25
- package/dist/runtime/components/presenters/PresenterModal.vue +26 -21
- package/dist/runtime/components/presenters/Presenters.vue +139 -0
- package/dist/runtime/components/profile/Profile.vue +10 -6
- package/dist/runtime/components/profile/components/Sidebar.vue +1 -1
- package/dist/runtime/components/profile/components/SidebarNavItem.vue +2 -4
- package/dist/runtime/components/profile/tabs/Favorites.vue +5 -4
- package/dist/runtime/components/profile/tabs/GeneralInformation.vue +26 -16
- package/dist/runtime/components/profile/tabs/ProfileImage.vue +7 -6
- package/dist/runtime/components/registration/AlreadyRegisteredModal.vue +102 -0
- package/dist/runtime/components/registration/PaymentForm.vue +136 -0
- package/dist/runtime/components/registration/RegistrationForm.vue +417 -0
- package/dist/runtime/components/registration/RegistrationGroupSelect.vue +146 -0
- package/dist/runtime/components/registration/StripePaymentForm.vue +121 -0
- package/dist/runtime/components/support/FAQAccordion.vue +8 -7
- package/dist/runtime/composables/useAdobeLaunch.d.ts +2 -7
- package/dist/runtime/composables/useAdobeLaunch.mjs +2 -2
- package/dist/runtime/composables/useAgenda.d.ts +13 -1
- package/dist/runtime/composables/useAgenda.mjs +125 -25
- package/dist/runtime/composables/useApi.d.ts +1 -1
- package/dist/runtime/composables/useAuth.d.ts +1 -1
- package/dist/runtime/composables/useAuth.mjs +1 -1
- package/dist/runtime/composables/useClassBinding.d.ts +3 -1
- package/dist/runtime/composables/useConferenceHelpers.d.ts +7 -3
- package/dist/runtime/composables/useConferenceHelpers.mjs +26 -15
- package/dist/runtime/composables/useEventHooks.d.ts +29 -0
- package/dist/runtime/composables/useEventHooks.mjs +21 -0
- package/dist/runtime/composables/useEvents.d.ts +17 -1
- package/dist/runtime/composables/useEvents.mjs +35 -9
- package/dist/runtime/composables/useLogin.mjs +9 -5
- package/dist/runtime/composables/useNavigation.d.ts +1 -1
- package/dist/runtime/composables/useNavigation.mjs +4 -2
- package/dist/runtime/composables/usePresentation.d.ts +2 -2
- package/dist/runtime/composables/usePresentation.mjs +8 -7
- package/dist/runtime/composables/usePresenter.d.ts +2 -2
- package/dist/runtime/composables/usePresenters.d.ts +2 -2
- package/dist/runtime/composables/usePusher.d.ts +4 -0
- package/dist/runtime/composables/usePusher.mjs +38 -26
- package/dist/runtime/composables/useScripts.mjs +1 -1
- package/dist/runtime/composables/useStream.d.ts +2 -3
- package/dist/runtime/composables/useStream.mjs +8 -2
- package/dist/runtime/composables/useUcc.d.ts +1 -1
- package/dist/runtime/composables/useUcc.mjs +29 -23
- package/dist/runtime/enums/general.d.ts +4 -1
- package/dist/runtime/enums/general.mjs +4 -1
- package/dist/runtime/models/adobeLaunch.d.ts +6 -0
- package/dist/runtime/models/adobeLaunch.mjs +0 -0
- package/dist/runtime/models/analytics.d.ts +6 -0
- package/dist/runtime/models/analytics.mjs +0 -0
- package/dist/runtime/models/attendeeList.d.ts +1 -1
- package/dist/runtime/models/conference.d.ts +122 -91
- package/dist/runtime/models/conversation.d.ts +11 -13
- package/dist/runtime/models/document.d.ts +5 -5
- package/dist/runtime/models/globalConfig.d.ts +9 -3
- package/dist/runtime/models/group.d.ts +38 -8
- package/dist/runtime/models/icons.d.ts +8 -1
- package/dist/runtime/models/index.d.ts +20 -0
- package/dist/runtime/models/index.mjs +20 -0
- package/dist/runtime/models/link.d.ts +4 -4
- package/dist/runtime/models/loginParams.d.ts +5 -0
- package/dist/runtime/models/loginParams.mjs +0 -0
- package/dist/runtime/models/navigationConfig.d.ts +7 -7
- package/dist/runtime/models/pagination.d.ts +11 -11
- package/dist/runtime/models/portal.d.ts +15 -10
- package/dist/runtime/models/templateConfig.d.ts +13 -7
- package/dist/runtime/models/ucc.d.ts +22 -0
- package/dist/runtime/models/ucc.mjs +0 -0
- package/dist/runtime/models/user.d.ts +25 -12
- package/dist/runtime/models/vButton.d.ts +7 -0
- package/dist/runtime/models/vButton.mjs +0 -0
- package/dist/runtime/models/video.d.ts +5 -4
- package/dist/runtime/models/virtualPagesConfig.d.ts +223 -0
- package/dist/runtime/models/virtualPagesConfig.mjs +0 -0
- package/dist/runtime/plugin.mjs +18 -9
- package/dist/runtime/store/affiliates.d.ts +4 -1
- package/dist/runtime/store/affiliates.mjs +38 -0
- package/dist/runtime/store/attendeeList.d.ts +1 -1
- package/dist/runtime/store/auth.d.ts +3 -7
- package/dist/runtime/store/auth.mjs +6 -0
- package/dist/runtime/store/conferences.d.ts +3 -1
- package/dist/runtime/store/conferences.mjs +14 -9
- package/dist/runtime/store/conversations.d.ts +78 -10
- package/dist/runtime/store/conversations.mjs +255 -22
- package/dist/runtime/store/modalPlayerConfig.d.ts +27 -0
- package/dist/runtime/store/modalPlayerConfig.mjs +58 -0
- package/dist/runtime/store/navigationConfig.d.ts +1 -1
- package/dist/runtime/store/presentations.d.ts +2 -2
- package/dist/runtime/store/templateConfigs.d.ts +7 -6
- package/dist/runtime/store/templateConfigs.mjs +7 -6
- package/dist/runtime/store/user.mjs +0 -1
- package/dist/runtime/v3plusCommonPlugin.d.ts +1 -1
- package/dist/types.d.mts +3 -2
- package/dist/types.d.ts +3 -2
- package/package.json +12 -9
- package/dist/runtime/components/media/components/JsonApi.vue +0 -33
- package/dist/runtime/components/media/components/JsonApi.vue.d.ts +0 -16
- package/dist/runtime/components/media/components/PresentersPanel.vue.d.ts +0 -32
- package/dist/runtime/components/media/components/WindowContent.vue +0 -118
- package/dist/runtime/components/media/components/WindowContent.vue.d.ts +0 -50
- package/dist/runtime/components/media/components/WindowSlide.vue +0 -92
- package/dist/runtime/components/media/components/WindowSlide.vue.d.ts +0 -36
- package/dist/runtime/models/authUser.d.ts +0 -16
- /package/dist/runtime/{models/authUser.mjs → assets/scss/_footer.css} +0 -0
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Document } from "./document";
|
|
2
|
+
import type { Group } from "./group";
|
|
2
3
|
import type { Link } from "./link";
|
|
3
4
|
import type { Video } from "./video";
|
|
5
|
+
import type { TemplateConfig } from "./templateConfig";
|
|
4
6
|
export declare enum ConferenceState {
|
|
5
7
|
LIVE = "live",
|
|
6
8
|
MIXED = "mixed",
|
|
@@ -18,50 +20,64 @@ export declare enum PresentationType {
|
|
|
18
20
|
LINK = "link"
|
|
19
21
|
}
|
|
20
22
|
export type Presenter = {
|
|
21
|
-
biography
|
|
22
|
-
client_id
|
|
23
|
-
company
|
|
24
|
-
designations
|
|
25
|
-
email
|
|
26
|
-
facebook_url
|
|
27
|
-
first_name
|
|
28
|
-
id
|
|
29
|
-
last_name
|
|
23
|
+
biography: string | null;
|
|
24
|
+
client_id: number;
|
|
25
|
+
company: string | null;
|
|
26
|
+
designations: string | null;
|
|
27
|
+
email: string | null;
|
|
28
|
+
facebook_url: string | null;
|
|
29
|
+
first_name: string | null;
|
|
30
|
+
id: number;
|
|
31
|
+
last_name: string | null;
|
|
30
32
|
level?: string | null;
|
|
31
|
-
linkedin_url
|
|
33
|
+
linkedin_url: string | null;
|
|
32
34
|
order?: number;
|
|
33
|
-
photo
|
|
35
|
+
photo: string | null;
|
|
34
36
|
role?: string;
|
|
35
|
-
title
|
|
36
|
-
twitter_url
|
|
37
|
-
website
|
|
38
|
-
youtube_url
|
|
37
|
+
title: string | null;
|
|
38
|
+
twitter_url: string | null;
|
|
39
|
+
website: string | null;
|
|
40
|
+
youtube_url: string | null;
|
|
39
41
|
presentationId?: number | null;
|
|
42
|
+
conferences?: Array<Conference>;
|
|
43
|
+
presentations?: Array<Presentation>;
|
|
40
44
|
};
|
|
41
|
-
export type
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
enabled?: boolean;
|
|
46
|
-
id?: number;
|
|
47
|
-
name?: string;
|
|
48
|
-
portal_id?: number;
|
|
49
|
-
post_reg_login?: boolean;
|
|
50
|
-
price?: number;
|
|
51
|
-
registration_message?: string | null;
|
|
45
|
+
export type PresenterWithPivot = Presenter & {
|
|
46
|
+
pivot?: {
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
};
|
|
52
49
|
};
|
|
53
50
|
export type Affiliate = {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
51
|
+
biography: string | null;
|
|
52
|
+
booth?: string;
|
|
53
|
+
client_id: number;
|
|
54
|
+
code: string | null;
|
|
55
|
+
contact_address: string | null;
|
|
56
|
+
contact_email: string | null;
|
|
57
|
+
contact_location: string | null;
|
|
58
|
+
contact_name: string | null;
|
|
59
|
+
conact_phone: string | null;
|
|
60
|
+
contact_photo: string | null;
|
|
61
|
+
contact_title: string | null;
|
|
62
|
+
facebook_url: string | null;
|
|
63
|
+
html_header: string | null;
|
|
64
|
+
id: number;
|
|
57
65
|
label?: string;
|
|
58
|
-
photo?: string;
|
|
59
|
-
vanity?: boolean;
|
|
60
|
-
website?: string;
|
|
61
66
|
level?: number;
|
|
67
|
+
linkedin_url: string | null;
|
|
68
|
+
name: string;
|
|
69
|
+
photo: string | null;
|
|
62
70
|
role?: string;
|
|
71
|
+
twitter_url: string | null;
|
|
72
|
+
user_id: number | null;
|
|
73
|
+
vanity?: boolean;
|
|
74
|
+
video: string | null;
|
|
75
|
+
website: string | null;
|
|
76
|
+
youtube_url: string | null;
|
|
77
|
+
conferences: Array<Conference>;
|
|
63
78
|
documents?: Array<Document>;
|
|
64
79
|
links?: Array<Link>;
|
|
80
|
+
template_config?: TemplateConfig;
|
|
65
81
|
videos?: Array<Video>;
|
|
66
82
|
affiliate_content?: {
|
|
67
83
|
html_vanity_page?: string;
|
|
@@ -72,64 +88,71 @@ export type Affiliate = {
|
|
|
72
88
|
custom_box_2?: string;
|
|
73
89
|
};
|
|
74
90
|
};
|
|
75
|
-
export type Sponsor =
|
|
76
|
-
id?: number;
|
|
77
|
-
name?: string;
|
|
78
|
-
label?: string;
|
|
79
|
-
photo?: string;
|
|
80
|
-
vanity?: boolean;
|
|
81
|
-
website?: string;
|
|
82
|
-
level?: number;
|
|
83
|
-
role?: string;
|
|
84
|
-
};
|
|
91
|
+
export type Sponsor = Affiliate;
|
|
85
92
|
export type Presentation = {
|
|
86
|
-
|
|
87
|
-
|
|
93
|
+
access?: boolean;
|
|
94
|
+
captions_url: string | null;
|
|
95
|
+
date: string;
|
|
88
96
|
date_visible?: boolean;
|
|
89
|
-
description
|
|
90
|
-
duration
|
|
91
|
-
embed_html
|
|
92
|
-
external_type
|
|
93
|
-
id
|
|
97
|
+
description: string | null;
|
|
98
|
+
duration: number | null;
|
|
99
|
+
embed_html: string | null;
|
|
100
|
+
external_type: string | null;
|
|
101
|
+
id: number;
|
|
94
102
|
is_live?: boolean;
|
|
95
|
-
name
|
|
96
|
-
portal_id?: number;
|
|
97
|
-
type?: PresentationType;
|
|
98
|
-
video_url?: string | null;
|
|
103
|
+
name: string;
|
|
99
104
|
photo?: string | boolean;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
105
|
+
portal_id: number;
|
|
106
|
+
type: null | PresentationType;
|
|
107
|
+
video_url: string | null;
|
|
108
|
+
visible: boolean;
|
|
109
|
+
zoom_meeting_id: string | null;
|
|
110
|
+
zoom_meeting_password: string | null;
|
|
111
|
+
zoom_require_password: boolean;
|
|
104
112
|
presenters?: Array<Presenter>;
|
|
105
113
|
sponsors?: Array<Sponsor>;
|
|
106
114
|
tracks?: Array<Track>;
|
|
107
115
|
documents?: Array<Document>;
|
|
108
116
|
};
|
|
109
|
-
export type
|
|
117
|
+
export type VirtualPresentation = Presentation & {
|
|
118
|
+
track?: {
|
|
119
|
+
channel: number | string;
|
|
120
|
+
};
|
|
110
121
|
access?: boolean;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
122
|
+
};
|
|
123
|
+
export type PlayerPresentation = {
|
|
124
|
+
player_type: string;
|
|
125
|
+
data: VirtualPresentation;
|
|
126
|
+
};
|
|
127
|
+
export type Track = {
|
|
128
|
+
access: boolean;
|
|
129
|
+
channel: number;
|
|
130
|
+
conference_day_id?: number;
|
|
131
|
+
date: string;
|
|
132
|
+
embed_html?: string | null;
|
|
133
|
+
id: number;
|
|
134
|
+
live_stream_id: number | null;
|
|
135
|
+
name: string;
|
|
136
|
+
groups?: Array<Group>;
|
|
116
137
|
presentations?: Array<Presentation>;
|
|
117
138
|
sponsors?: Array<Sponsor>;
|
|
118
139
|
type?: string;
|
|
119
140
|
};
|
|
120
141
|
export type TrackGroup = {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
142
|
+
conference_day_id?: number;
|
|
143
|
+
date: string;
|
|
144
|
+
id: number;
|
|
145
|
+
name: string;
|
|
125
146
|
type?: string;
|
|
147
|
+
tracks: Array<Track>;
|
|
126
148
|
};
|
|
127
149
|
export type Day = {
|
|
128
|
-
access
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
150
|
+
access: boolean;
|
|
151
|
+
conference_id?: number;
|
|
152
|
+
date: string;
|
|
153
|
+
date_visible: boolean;
|
|
154
|
+
id: number;
|
|
155
|
+
name: string;
|
|
133
156
|
tracks?: Array<Track>;
|
|
134
157
|
track_groups?: Array<TrackGroup>;
|
|
135
158
|
sponsors?: Array<Sponsor>;
|
|
@@ -146,48 +169,56 @@ export type CeCreditConfig = {
|
|
|
146
169
|
display_for: number;
|
|
147
170
|
prompt_text: string | null;
|
|
148
171
|
button_text: string | null;
|
|
172
|
+
created_at?: string | null;
|
|
173
|
+
updated_at?: string | null;
|
|
149
174
|
};
|
|
150
175
|
export type Conference = {
|
|
151
176
|
access?: boolean;
|
|
152
177
|
agenda_enabled?: boolean;
|
|
178
|
+
access_config: number;
|
|
153
179
|
ce_credit_enabled?: boolean;
|
|
154
|
-
description
|
|
155
|
-
end_date
|
|
156
|
-
id
|
|
157
|
-
location
|
|
158
|
-
name
|
|
180
|
+
description: string | null;
|
|
181
|
+
end_date: string;
|
|
182
|
+
id: number;
|
|
183
|
+
location: string | null;
|
|
184
|
+
name: string;
|
|
159
185
|
presenters?: Array<Presenter>;
|
|
160
|
-
photo
|
|
161
|
-
photo_large
|
|
162
|
-
portal_id
|
|
163
|
-
start_date
|
|
164
|
-
state
|
|
165
|
-
timezone
|
|
186
|
+
photo: string | null;
|
|
187
|
+
photo_large: string | null;
|
|
188
|
+
portal_id: number;
|
|
189
|
+
start_date: string;
|
|
190
|
+
state: ConferenceState;
|
|
191
|
+
timezone: string;
|
|
166
192
|
days?: Array<Day>;
|
|
167
193
|
groups?: Array<Group>;
|
|
168
194
|
affiliates?: Array<Sponsor>;
|
|
169
195
|
sponsors?: Array<Sponsor>;
|
|
170
|
-
template_config?:
|
|
196
|
+
template_config?: TemplateConfig;
|
|
171
197
|
ce_credit_config?: CeCreditConfig;
|
|
172
198
|
};
|
|
173
199
|
export type Stream = {
|
|
174
200
|
id: number;
|
|
175
201
|
name: string;
|
|
176
202
|
type: string;
|
|
177
|
-
notes
|
|
178
|
-
hls_url
|
|
179
|
-
embed_html
|
|
180
|
-
created_at
|
|
203
|
+
notes: string | null;
|
|
204
|
+
hls_url: string | null;
|
|
205
|
+
embed_html: string | null;
|
|
206
|
+
created_at?: string | null;
|
|
181
207
|
updated_at?: string | null;
|
|
182
208
|
};
|
|
183
209
|
export type PlayerObj = {
|
|
210
|
+
addTrack?: Function;
|
|
184
211
|
autostart: boolean;
|
|
185
212
|
format: string;
|
|
186
|
-
playerDiv: string;
|
|
187
|
-
addTrack?: Function;
|
|
188
|
-
loadCustomStream?: Function;
|
|
189
213
|
getPosition?: Function;
|
|
214
|
+
loadCustomStream: Function;
|
|
215
|
+
playerDiv: string;
|
|
190
216
|
seek?: Function;
|
|
191
217
|
stop?: Function;
|
|
192
218
|
remove?: Function;
|
|
193
219
|
};
|
|
220
|
+
declare global {
|
|
221
|
+
interface Window {
|
|
222
|
+
ICVDMStreamPlayer: any;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
import type { User } from "./user";
|
|
2
|
-
export type MessagesRead =
|
|
3
|
-
user?: User | null;
|
|
4
|
-
};
|
|
2
|
+
export type MessagesRead = User[] | null;
|
|
5
3
|
export type Message = {
|
|
6
|
-
id
|
|
7
|
-
user
|
|
8
|
-
message
|
|
9
|
-
messages_read
|
|
10
|
-
|
|
4
|
+
id: number;
|
|
5
|
+
user: User | null;
|
|
6
|
+
message: string | null;
|
|
7
|
+
messages_read: MessagesRead;
|
|
8
|
+
created_atmess: string | null;
|
|
11
9
|
};
|
|
12
10
|
export type Conversation = {
|
|
13
|
-
id
|
|
14
|
-
users
|
|
15
|
-
user
|
|
16
|
-
messages
|
|
17
|
-
last_message
|
|
11
|
+
id: number;
|
|
12
|
+
users: User[] | null;
|
|
13
|
+
user: User | null;
|
|
14
|
+
messages: Message[] | null;
|
|
15
|
+
last_message: Message | null;
|
|
18
16
|
};
|
|
@@ -6,7 +6,7 @@ export type GroupVariable = {
|
|
|
6
6
|
type: string;
|
|
7
7
|
value: Group;
|
|
8
8
|
};
|
|
9
|
-
export interface
|
|
9
|
+
export interface GlobalConfig {
|
|
10
10
|
accent_color_1: ColorVariable;
|
|
11
11
|
accent_color_2: ColorVariable;
|
|
12
12
|
accent_color_3: ColorVariable;
|
|
@@ -74,9 +74,15 @@ export interface Global {
|
|
|
74
74
|
secure_site_access_enabled: ToggleVariable;
|
|
75
75
|
townhall_registration_enabled: ToggleVariable;
|
|
76
76
|
townhall_registration_group: GroupVariable;
|
|
77
|
+
ucc_client_id?: TextVariable;
|
|
78
|
+
ucc_url?: TextVariable;
|
|
77
79
|
view_archive_button_alias: TextVariable;
|
|
78
80
|
view_now_button_alias: TextVariable;
|
|
79
81
|
view_preview_button_alias: TextVariable;
|
|
80
82
|
}
|
|
81
|
-
export
|
|
82
|
-
|
|
83
|
+
export interface VirtualGlobal extends GlobalConfig {
|
|
84
|
+
site_search?: ToggleVariable;
|
|
85
|
+
allow_favorites?: ToggleVariable;
|
|
86
|
+
}
|
|
87
|
+
export type GlobalConfigKey = `${keyof VirtualGlobal & (string | number)}`;
|
|
88
|
+
export type GlobalConfigKeyType<T extends keyof VirtualGlobal> = VirtualGlobal[T];
|
|
@@ -1,14 +1,44 @@
|
|
|
1
|
+
export type Merchant = {
|
|
2
|
+
id: number;
|
|
3
|
+
account_id: string;
|
|
4
|
+
};
|
|
5
|
+
export type RegistrationField = {
|
|
6
|
+
id: number;
|
|
7
|
+
registration_form_id: number;
|
|
8
|
+
name: string;
|
|
9
|
+
label: string | null;
|
|
10
|
+
placeholder: string | null;
|
|
11
|
+
type: string;
|
|
12
|
+
order: number;
|
|
13
|
+
value: string | number | null;
|
|
14
|
+
validation: [];
|
|
15
|
+
options: [] | null;
|
|
16
|
+
};
|
|
17
|
+
export type RegistrationForm = {
|
|
18
|
+
id: number;
|
|
19
|
+
portal_id: number;
|
|
20
|
+
name: string;
|
|
21
|
+
description: string | null;
|
|
22
|
+
fields?: RegistrationField[];
|
|
23
|
+
};
|
|
1
24
|
export type Group = {
|
|
2
25
|
cc_enabled?: boolean;
|
|
3
|
-
|
|
26
|
+
ce_enabled: boolean;
|
|
27
|
+
code: string;
|
|
4
28
|
created_at?: string;
|
|
5
|
-
description
|
|
6
|
-
enabled
|
|
7
|
-
id
|
|
8
|
-
merchant_id?:
|
|
9
|
-
name
|
|
10
|
-
portal_id
|
|
11
|
-
|
|
29
|
+
description: string | null;
|
|
30
|
+
enabled: boolean;
|
|
31
|
+
id: number;
|
|
32
|
+
merchant_id?: number | null;
|
|
33
|
+
name: string;
|
|
34
|
+
portal_id: number;
|
|
35
|
+
post_reg_login: boolean;
|
|
36
|
+
price: number;
|
|
37
|
+
promo_code: string | null;
|
|
12
38
|
registration_form_id?: number;
|
|
39
|
+
registration_message: string | null;
|
|
40
|
+
type: string;
|
|
13
41
|
updated_at?: string;
|
|
42
|
+
merchant?: Merchant;
|
|
43
|
+
registration_form?: RegistrationForm;
|
|
14
44
|
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { VNode } from "vue";
|
|
1
|
+
import type { VNode } from "vue";
|
|
2
2
|
export type Icon = {
|
|
3
3
|
color: string;
|
|
4
4
|
component: VNode;
|
|
5
5
|
};
|
|
6
6
|
export type Icons = {
|
|
7
|
+
bell: Icon;
|
|
7
8
|
caret: Icon;
|
|
9
|
+
chat: Icon;
|
|
8
10
|
check: Icon;
|
|
9
11
|
chevron: Icon;
|
|
10
12
|
chevron2down: Icon;
|
|
@@ -14,14 +16,19 @@ export type Icons = {
|
|
|
14
16
|
close: Icon;
|
|
15
17
|
downarrow: Icon;
|
|
16
18
|
facebook: Icon;
|
|
19
|
+
favoriteFilled: Icon;
|
|
20
|
+
favorite: Icon;
|
|
17
21
|
info: Icon;
|
|
18
22
|
linkedin: Icon;
|
|
23
|
+
minus: Icon;
|
|
19
24
|
newwindow: Icon;
|
|
25
|
+
notification: Icon;
|
|
20
26
|
offline: Icon;
|
|
21
27
|
online: Icon;
|
|
22
28
|
person: Icon;
|
|
23
29
|
playarrow: Icon;
|
|
24
30
|
twitter: Icon;
|
|
31
|
+
video: Icon;
|
|
25
32
|
website: Icon;
|
|
26
33
|
youtube: Icon;
|
|
27
34
|
zoom: Icon;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from './adobeLaunch';
|
|
2
|
+
export * from './analytics';
|
|
3
|
+
export * from './attendeeList';
|
|
4
|
+
export * from './conference';
|
|
5
|
+
export * from './conversation';
|
|
6
|
+
export * from './document';
|
|
7
|
+
export * from './globalConfig';
|
|
8
|
+
export * from './group';
|
|
9
|
+
export * from './icons';
|
|
10
|
+
export * from './link';
|
|
11
|
+
export * from './loginParams';
|
|
12
|
+
export * from './navigationConfig';
|
|
13
|
+
export * from './pagesConfig';
|
|
14
|
+
export * from './pagination';
|
|
15
|
+
export * from './portal';
|
|
16
|
+
export * from './templateConfig';
|
|
17
|
+
export * from './user';
|
|
18
|
+
export * from './vButton';
|
|
19
|
+
export * from './video';
|
|
20
|
+
export * from './virtualPagesConfig';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from "./adobeLaunch.mjs";
|
|
2
|
+
export * from "./analytics.mjs";
|
|
3
|
+
export * from "./attendeeList.mjs";
|
|
4
|
+
export * from "./conference.mjs";
|
|
5
|
+
export * from "./conversation.mjs";
|
|
6
|
+
export * from "./document.mjs";
|
|
7
|
+
export * from "./globalConfig.mjs";
|
|
8
|
+
export * from "./group.mjs";
|
|
9
|
+
export * from "./icons.mjs";
|
|
10
|
+
export * from "./link.mjs";
|
|
11
|
+
export * from "./loginParams.mjs";
|
|
12
|
+
export * from "./navigationConfig.mjs";
|
|
13
|
+
export * from "./pagesConfig.mjs";
|
|
14
|
+
export * from "./pagination.mjs";
|
|
15
|
+
export * from "./portal.mjs";
|
|
16
|
+
export * from "./templateConfig.mjs";
|
|
17
|
+
export * from "./user.mjs";
|
|
18
|
+
export * from "./vButton.mjs";
|
|
19
|
+
export * from "./video.mjs";
|
|
20
|
+
export * from "./virtualPagesConfig.mjs";
|
|
File without changes
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export type NavigationConfig = {
|
|
2
|
-
enabled
|
|
3
|
-
label
|
|
4
|
-
name
|
|
5
|
-
order
|
|
6
|
-
slug
|
|
7
|
-
type
|
|
8
|
-
url?: string;
|
|
2
|
+
enabled: boolean;
|
|
3
|
+
label: string | null;
|
|
4
|
+
name: string | null;
|
|
5
|
+
order: number;
|
|
6
|
+
slug: string;
|
|
7
|
+
type: string;
|
|
8
|
+
url?: string | null;
|
|
9
9
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export interface Pagination {
|
|
2
|
-
total
|
|
3
|
-
per_page
|
|
4
|
-
current_page
|
|
5
|
-
last_page
|
|
6
|
-
first_page_url
|
|
7
|
-
last_page_url
|
|
8
|
-
next_page_url
|
|
9
|
-
prev_page_url
|
|
10
|
-
path
|
|
11
|
-
from
|
|
12
|
-
to
|
|
2
|
+
total: number;
|
|
3
|
+
per_page: number;
|
|
4
|
+
current_page: number;
|
|
5
|
+
last_page: number;
|
|
6
|
+
first_page_url: string | null;
|
|
7
|
+
last_page_url: string | null;
|
|
8
|
+
next_page_url: string | null;
|
|
9
|
+
prev_page_url: string | null;
|
|
10
|
+
path: string | null;
|
|
11
|
+
from: number;
|
|
12
|
+
to: number;
|
|
13
13
|
}
|
|
14
14
|
export declare const PAGE_LENGTH = 15;
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
export type Portal = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
description
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
adobe_launch_url: string | null;
|
|
3
|
+
client_id: number;
|
|
4
|
+
description: string | null;
|
|
5
|
+
disclaimer_id?: number | null;
|
|
6
|
+
domain: string;
|
|
7
|
+
favicon: string | null;
|
|
8
|
+
ga_id: string | null;
|
|
9
|
+
ga_measurement_id: number | null;
|
|
10
|
+
gtm_id: string | null;
|
|
11
|
+
id: number;
|
|
12
|
+
name: string;
|
|
13
|
+
social_title: string | null;
|
|
14
|
+
social_description: string | null;
|
|
15
|
+
social_photo: string | null;
|
|
16
|
+
template_id: number | null;
|
|
12
17
|
};
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type Meta = {
|
|
2
|
+
name: string;
|
|
3
|
+
description: string;
|
|
4
|
+
id: number;
|
|
5
|
+
};
|
|
6
|
+
export type GlobalElements = {
|
|
2
7
|
[key: string]: {
|
|
3
8
|
class?: string;
|
|
4
9
|
label?: string;
|
|
@@ -9,7 +14,7 @@ export type Global = {
|
|
|
9
14
|
variable?: string;
|
|
10
15
|
};
|
|
11
16
|
};
|
|
12
|
-
export type
|
|
17
|
+
export type MiscElements = {
|
|
13
18
|
[key: string]: {
|
|
14
19
|
class?: string;
|
|
15
20
|
label?: string;
|
|
@@ -20,7 +25,7 @@ export type Misc = {
|
|
|
20
25
|
variable?: string;
|
|
21
26
|
};
|
|
22
27
|
};
|
|
23
|
-
export type
|
|
28
|
+
export type PagesElements = {
|
|
24
29
|
[key: string]: {
|
|
25
30
|
class?: string;
|
|
26
31
|
label?: string;
|
|
@@ -31,14 +36,15 @@ export type Pages = {
|
|
|
31
36
|
variable?: string;
|
|
32
37
|
};
|
|
33
38
|
};
|
|
34
|
-
export type
|
|
39
|
+
export type SettingElements = {
|
|
35
40
|
label?: string;
|
|
36
41
|
name?: string;
|
|
37
42
|
type?: string;
|
|
38
43
|
value?: string;
|
|
39
44
|
};
|
|
40
45
|
export type TemplateConfig = {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
46
|
+
meta?: Meta;
|
|
47
|
+
global?: GlobalElements;
|
|
48
|
+
misc?: MiscElements;
|
|
49
|
+
pages?: Array<PagesElements>;
|
|
44
50
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { Conference } from "./conference";
|
|
2
|
+
export type UccMixin = {
|
|
3
|
+
clientId: string;
|
|
4
|
+
conference: Partial<Conference> & {
|
|
5
|
+
brandCode: string;
|
|
6
|
+
};
|
|
7
|
+
webcastUrl: string;
|
|
8
|
+
loginV3: any;
|
|
9
|
+
postAuthRedirect: any;
|
|
10
|
+
uccShowEventSignUp: any;
|
|
11
|
+
handleUCCCallback: any;
|
|
12
|
+
};
|
|
13
|
+
export type MmsWidgets = {
|
|
14
|
+
showEventsSignUp: any;
|
|
15
|
+
init: any;
|
|
16
|
+
};
|
|
17
|
+
declare global {
|
|
18
|
+
interface Window {
|
|
19
|
+
uccMixin: UccMixin;
|
|
20
|
+
mmsWidgets: MmsWidgets;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
File without changes
|