@@ -657,6 +657,12 @@ export interface VideoCallSessionResponse {
657657 * @memberof VideoCallSessionResponse
658658 */
659659 started_at ?: string ;
660+ /**
661+ *
662+ * @type {string }
663+ * @memberof VideoCallSessionResponse
664+ */
665+ timer_ends_at ?: string ;
660666}
661667/**
662668 *
@@ -688,6 +694,12 @@ export interface VideoCallSettingsRequest {
688694 * @memberof VideoCallSettingsRequest
689695 */
690696 geofencing ?: VideoGeofenceSettingsRequest ;
697+ /**
698+ *
699+ * @type {VideoLimitsSettingsRequest }
700+ * @memberof VideoCallSettingsRequest
701+ */
702+ limits ?: VideoLimitsSettingsRequest ;
691703 /**
692704 *
693705 * @type {VideoRecordSettingsRequest }
@@ -755,6 +767,12 @@ export interface VideoCallSettingsResponse {
755767 * @memberof VideoCallSettingsResponse
756768 */
757769 geofencing : VideoGeofenceSettingsResponse ;
770+ /**
771+ *
772+ * @type {VideoLimitsSettingsResponse }
773+ * @memberof VideoCallSettingsResponse
774+ */
775+ limits : VideoLimitsSettingsResponse ;
758776 /**
759777 *
760778 * @type {VideoRecordSettingsResponse }
@@ -2160,6 +2178,44 @@ export const VideoLayoutSettingsResponseNameEnum = {
21602178} as const ;
21612179export type VideoLayoutSettingsResponseNameEnum = typeof VideoLayoutSettingsResponseNameEnum [ keyof typeof VideoLayoutSettingsResponseNameEnum ] ;
21622180
2181+ /**
2182+ *
2183+ * @export
2184+ * @interface VideoLimitsSettingsRequest
2185+ */
2186+ export interface VideoLimitsSettingsRequest {
2187+ /**
2188+ *
2189+ * @type {number }
2190+ * @memberof VideoLimitsSettingsRequest
2191+ */
2192+ max_duration_seconds ?: number ;
2193+ /**
2194+ *
2195+ * @type {number }
2196+ * @memberof VideoLimitsSettingsRequest
2197+ */
2198+ max_participants ?: number ;
2199+ }
2200+ /**
2201+ *
2202+ * @export
2203+ * @interface VideoLimitsSettingsResponse
2204+ */
2205+ export interface VideoLimitsSettingsResponse {
2206+ /**
2207+ *
2208+ * @type {number }
2209+ * @memberof VideoLimitsSettingsResponse
2210+ */
2211+ max_duration_seconds ?: number ;
2212+ /**
2213+ *
2214+ * @type {number }
2215+ * @memberof VideoLimitsSettingsResponse
2216+ */
2217+ max_participants ?: number ;
2218+ }
21632219/**
21642220 *
21652221 * @export
@@ -2591,6 +2647,7 @@ export interface VideoNullTime {
25912647 */
25922648export const VideoOwnCapability = {
25932649 BLOCK_USERS : 'block-users' ,
2650+ CHANGE_MAX_DURATION : 'change-max-duration' ,
25942651 CREATE_CALL : 'create-call' ,
25952652 CREATE_REACTION : 'create-reaction' ,
25962653 ENABLE_NOISE_CANCELLATION : 'enable-noise-cancellation' ,
@@ -4498,6 +4555,12 @@ export interface VideoUserStats {
44984555 * @memberof VideoUserStats
44994556 */
45004557 info : VideoUserInfoResponse ;
4558+ /**
4559+ *
4560+ * @type {number }
4561+ * @memberof VideoUserStats
4562+ */
4563+ min_event_ts : number ;
45014564 /**
45024565 *
45034566 * @type {number }
0 commit comments