Skip to content

Commit

Permalink
feat: session timers (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
myandrienko authored Jun 4, 2024
1 parent 52a1ff4 commit 68d8c0d
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gen/video/apis/ProductvideoApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Stream API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v113.1.0
* The version of the OpenAPI document: v116.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
63 changes: 63 additions & 0 deletions src/gen/video/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,12 @@ export interface VideoCallSessionResponse {
* @memberof VideoCallSessionResponse
*/
started_at?: string;
/**
*
* @type {string}
* @memberof VideoCallSessionResponse
*/
timer_ends_at?: string;
}
/**
*
Expand Down Expand Up @@ -688,6 +694,12 @@ export interface VideoCallSettingsRequest {
* @memberof VideoCallSettingsRequest
*/
geofencing?: VideoGeofenceSettingsRequest;
/**
*
* @type {VideoLimitsSettingsRequest}
* @memberof VideoCallSettingsRequest
*/
limits?: VideoLimitsSettingsRequest;
/**
*
* @type {VideoRecordSettingsRequest}
Expand Down Expand Up @@ -755,6 +767,12 @@ export interface VideoCallSettingsResponse {
* @memberof VideoCallSettingsResponse
*/
geofencing: VideoGeofenceSettingsResponse;
/**
*
* @type {VideoLimitsSettingsResponse}
* @memberof VideoCallSettingsResponse
*/
limits: VideoLimitsSettingsResponse;
/**
*
* @type {VideoRecordSettingsResponse}
Expand Down Expand Up @@ -2160,6 +2178,44 @@ export const VideoLayoutSettingsResponseNameEnum = {
} as const;
export type VideoLayoutSettingsResponseNameEnum = typeof VideoLayoutSettingsResponseNameEnum[keyof typeof VideoLayoutSettingsResponseNameEnum];

/**
*
* @export
* @interface VideoLimitsSettingsRequest
*/
export interface VideoLimitsSettingsRequest {
/**
*
* @type {number}
* @memberof VideoLimitsSettingsRequest
*/
max_duration_seconds?: number;
/**
*
* @type {number}
* @memberof VideoLimitsSettingsRequest
*/
max_participants?: number;
}
/**
*
* @export
* @interface VideoLimitsSettingsResponse
*/
export interface VideoLimitsSettingsResponse {
/**
*
* @type {number}
* @memberof VideoLimitsSettingsResponse
*/
max_duration_seconds?: number;
/**
*
* @type {number}
* @memberof VideoLimitsSettingsResponse
*/
max_participants?: number;
}
/**
*
* @export
Expand Down Expand Up @@ -2591,6 +2647,7 @@ export interface VideoNullTime {
*/
export const VideoOwnCapability = {
BLOCK_USERS: 'block-users',
CHANGE_MAX_DURATION: 'change-max-duration',
CREATE_CALL: 'create-call',
CREATE_REACTION: 'create-reaction',
ENABLE_NOISE_CANCELLATION: 'enable-noise-cancellation',
Expand Down Expand Up @@ -4498,6 +4555,12 @@ export interface VideoUserStats {
* @memberof VideoUserStats
*/
info: VideoUserInfoResponse;
/**
*
* @type {number}
* @memberof VideoUserStats
*/
min_event_ts: number;
/**
*
* @type {number}
Expand Down
2 changes: 1 addition & 1 deletion src/gen/video/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Stream API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v113.1.0
* The version of the OpenAPI document: v116.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down

0 comments on commit 68d8c0d

Please sign in to comment.