2026-02-12 21:09:30 +00:00
|
|
|
// Webinar API module - re-exports for backward compatibility
|
|
|
|
|
// This module has been split into the webinar_api subdirectory for better organization
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
pub mod webinar_api {
|
|
|
|
|
pub use super::webinar_api::*;
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
}
|
|
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Re-export all public items for backward compatibility
|
|
|
|
|
pub use webinar_api::{
|
|
|
|
|
// Constants
|
|
|
|
|
MAX_RAISED_HANDS_VISIBLE, MAX_WEBINAR_PARTICIPANTS, QA_QUESTION_MAX_LENGTH,
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Types
|
|
|
|
|
AnswerQuestionRequest, CreatePollRequest, CreateWebinarRequest, FieldType,
|
|
|
|
|
GetTranscriptionRequest, PanelistInvite, PollOption, PollStatus, PollType, PollVote,
|
|
|
|
|
QAQuestion, QuestionStatus, RecordingQuality, RecordingStatus, RegisterRequest,
|
|
|
|
|
RegistrationField, RegistrationStatus, RetentionPoint, RoleChangeRequest,
|
|
|
|
|
StartRecordingRequest, SubmitQuestionRequest, TranscriptionFormat,
|
|
|
|
|
TranscriptionSegment, TranscriptionStatus, TranscriptionWord, Webinar,
|
|
|
|
|
WebinarAnalytics, WebinarEvent, WebinarEventType, WebinarParticipant,
|
|
|
|
|
WebinarPoll, WebinarRecording, WebinarRegistration, WebinarSettings,
|
|
|
|
|
WebinarStatus, WebinarTranscription, ParticipantRole, ParticipantStatus,
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Error
|
|
|
|
|
WebinarError,
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Service
|
|
|
|
|
WebinarService,
|
Add video module, RBAC, security features, billing, contacts, dashboards, learn, social, and multiple new modules
Major additions:
- Video editing engine with AI features (transcription, captions, TTS, scene detection)
- RBAC middleware and organization management
- Security enhancements (MFA, passkey, DLP, encryption, audit)
- Billing and subscription management
- Contacts management
- Dashboards module
- Learn/LMS module
- Social features
- Compliance (SOC2, SOP middleware, vulnerability scanner)
- New migrations for RBAC, learn, and video tables
2026-01-08 13:16:17 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Routes
|
|
|
|
|
webinar_routes,
|
2026-01-13 22:21:25 -03:00
|
|
|
|
2026-02-12 21:09:30 +00:00
|
|
|
// Migrations
|
|
|
|
|
create_webinar_tables_migration,
|
|
|
|
|
};
|